arm64: dts: rockchip: Add SDMMC/SDIO controllers for RK3528
authorYao Zi <ziyao@disroot.org>
Thu, 8 May 2025 23:48:29 +0000 (23:48 +0000)
committerHeiko Stuebner <heiko@sntech.de>
Fri, 9 May 2025 19:38:59 +0000 (21:38 +0200)
RK3528 features two SDIO controllers and one SD/MMC controller, describe
them in devicetree. Since their sample and drive clocks are located in
the VO and VPU GRFs, corresponding syscons are added to make these
clocks available.

Signed-off-by: Yao Zi <ziyao@disroot.org>
Reviewed-by: Jonas Karlman <jonas@kwiboo.se>
Link: https://lore.kernel.org/r/20250508234829.27111-3-ziyao@disroot.org
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
arch/arm64/boot/dts/rockchip/rk3528.dtsi

index 923cff6bb10327b7f147af0306b4891000d25fac..193b84b5e912314a895f284c332413f06d34ccfa 100644 (file)
                        reg = <0x0 0xff280400 0x0 0x20>;
                };
 
+               vpu_grf: syscon@ff340000 {
+                       compatible = "rockchip,rk3528-vpu-grf", "syscon";
+                       reg = <0x0 0xff340000 0x0 0x8000>;
+               };
+
+               vo_grf: syscon@ff360000 {
+                       compatible = "rockchip,rk3528-vo-grf", "syscon";
+                       reg = <0x0 0xff360000 0x0 0x10000>;
+               };
+
                cru: clock-controller@ff4a0000 {
                        compatible = "rockchip,rk3528-cru";
                        reg = <0x0 0xff4a0000 0x0 0x30000>;
                        status = "disabled";
                };
 
+               sdio0: mmc@ffc10000 {
+                       compatible = "rockchip,rk3528-dw-mshc",
+                                    "rockchip,rk3288-dw-mshc";
+                       reg = <0x0 0xffc10000 0x0 0x4000>;
+                       clocks = <&cru HCLK_SDIO0>,
+                                <&cru CCLK_SRC_SDIO0>,
+                                <&cru SCLK_SDIO0_DRV>,
+                                <&cru SCLK_SDIO0_SAMPLE>;
+                       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
+                       fifo-depth = <0x100>;
+                       interrupts = <GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>;
+                       max-frequency = <200000000>;
+                       pinctrl-names = "default";
+                       pinctrl-0 = <&sdio0_bus4>, <&sdio0_clk>, <&sdio0_cmd>;
+                       resets = <&cru SRST_H_SDIO0>;
+                       reset-names = "reset";
+                       status = "disabled";
+               };
+
+               sdio1: mmc@ffc20000 {
+                       compatible = "rockchip,rk3528-dw-mshc",
+                                    "rockchip,rk3288-dw-mshc";
+                       reg = <0x0 0xffc20000 0x0 0x4000>;
+                       clocks = <&cru HCLK_SDIO1>,
+                                <&cru CCLK_SRC_SDIO1>,
+                                <&cru SCLK_SDIO1_DRV>,
+                                <&cru SCLK_SDIO1_SAMPLE>;
+                       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
+                       fifo-depth = <0x100>;
+                       interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
+                       max-frequency = <200000000>;
+                       pinctrl-names = "default";
+                       pinctrl-0 = <&sdio1_bus4>, <&sdio1_clk>, <&sdio1_cmd>;
+                       resets = <&cru SRST_H_SDIO1>;
+                       reset-names = "reset";
+                       status = "disabled";
+               };
+
+               sdmmc: mmc@ffc30000 {
+                       compatible = "rockchip,rk3528-dw-mshc",
+                                    "rockchip,rk3288-dw-mshc";
+                       reg = <0x0 0xffc30000 0x0 0x4000>;
+                       clocks = <&cru HCLK_SDMMC0>,
+                                <&cru CCLK_SRC_SDMMC0>,
+                                <&cru SCLK_SDMMC_DRV>,
+                                <&cru SCLK_SDMMC_SAMPLE>;
+                       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
+                       fifo-depth = <0x100>;
+                       interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
+                       max-frequency = <150000000>;
+                       pinctrl-names = "default";
+                       pinctrl-0 = <&sdmmc_bus4>, <&sdmmc_clk>, <&sdmmc_cmd>,
+                                   <&sdmmc_det>;
+                       resets = <&cru SRST_H_SDMMC0>;
+                       reset-names = "reset";
+                       rockchip,default-sample-phase = <90>;
+                       status = "disabled";
+               };
+
                dmac: dma-controller@ffd60000 {
                        compatible = "arm,pl330", "arm,primecell";
                        reg = <0x0 0xffd60000 0x0 0x4000>;