Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'v5.13-rockchip-dts32' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip into arm/dt

MMC aliases fixups and some property/compatible cleanups.

* tag 'v5.13-rockchip-dts32' of git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip:
ARM: dts: rockchip: move rv1108 mmcx aliases to board dts files
ARM: dts: rockchip: move rk322x mmcx aliases to board dts files
ARM: dts: rockchip: remove clock-names property from watchdog node in rv1108.dtsi
ARM: dts: rockchip: add new watchdog compatible to rk322x.dtsi
ARM: dts: rockchip: add new watchdog compatible to rv1108.dtsi

Link: https://lore.kernel.org/r/4638723.31r3eYUQgx@phil
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

+24 -9
+4
arch/arm/boot/dts/rk3228-evb.dts
··· 8 8 model = "Rockchip RK3228 Evaluation board"; 9 9 compatible = "rockchip,rk3228-evb", "rockchip,rk3228"; 10 10 11 + aliases { 12 + mmc0 = &emmc; 13 + }; 14 + 11 15 memory@60000000 { 12 16 device_type = "memory"; 13 17 reg = <0x60000000 0x40000000>;
+4
arch/arm/boot/dts/rk3229-evb.dts
··· 9 9 model = "Rockchip RK3229 Evaluation board"; 10 10 compatible = "rockchip,rk3229-evb", "rockchip,rk3229"; 11 11 12 + aliases { 13 + mmc0 = &emmc; 14 + }; 15 + 12 16 memory@60000000 { 13 17 device_type = "memory"; 14 18 reg = <0x60000000 0x40000000>;
+6
arch/arm/boot/dts/rk3229-xms6.dts
··· 9 9 model = "Mecer Xtreme Mini S6"; 10 10 compatible = "mecer,xms6", "rockchip,rk3229"; 11 11 12 + aliases { 13 + mmc0 = &sdmmc; 14 + mmc1 = &sdio; 15 + mmc2 = &emmc; 16 + }; 17 + 12 18 memory@60000000 { 13 19 device_type = "memory"; 14 20 reg = <0x60000000 0x40000000>;
+1 -4
arch/arm/boot/dts/rk322x.dtsi
··· 14 14 interrupt-parent = <&gic>; 15 15 16 16 aliases { 17 - mmc0 = &sdmmc; 18 - mmc1 = &sdio; 19 - mmc2 = &emmc; 20 17 serial0 = &uart0; 21 18 serial1 = &uart1; 22 19 serial2 = &uart2; ··· 367 370 }; 368 371 369 372 wdt: watchdog@110a0000 { 370 - compatible = "snps,dw-wdt"; 373 + compatible = "rockchip,rk3228-wdt", "snps,dw-wdt"; 371 374 reg = <0x110a0000 0x100>; 372 375 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; 373 376 clocks = <&cru PCLK_CPU>;
+4
arch/arm/boot/dts/rv1108-elgin-r1.dts
··· 12 12 model = "Elgin RV1108 R1 board"; 13 13 compatible = "elgin,rv1108-r1", "rockchip,rv1108"; 14 14 15 + aliases { 16 + mmc0 = &emmc; 17 + }; 18 + 15 19 memory@60000000 { 16 20 device_type = "memory"; 17 21 reg = <0x60000000 0x08000000>;
+4
arch/arm/boot/dts/rv1108-evb.dts
··· 8 8 model = "Rockchip RV1108 Evaluation board"; 9 9 compatible = "rockchip,rv1108-evb", "rockchip,rv1108"; 10 10 11 + aliases { 12 + mmc0 = &sdmmc; 13 + }; 14 + 11 15 memory@60000000 { 12 16 device_type = "memory"; 13 17 reg = <0x60000000 0x08000000>;
+1 -5
arch/arm/boot/dts/rv1108.dtsi
··· 19 19 i2c1 = &i2c1; 20 20 i2c2 = &i2c2; 21 21 i2c3 = &i2c3; 22 - mmc0 = &emmc; 23 - mmc1 = &sdio; 24 - mmc2 = &sdmmc; 25 22 serial0 = &uart0; 26 23 serial1 = &uart1; 27 24 serial2 = &uart2; ··· 300 303 }; 301 304 302 305 watchdog: watchdog@10360000 { 303 - compatible = "snps,dw-wdt"; 306 + compatible = "rockchip,rv1108-wdt", "snps,dw-wdt"; 304 307 reg = <0x10360000 0x100>; 305 308 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 306 309 clocks = <&cru PCLK_WDT>; 307 - clock-names = "pclk_wdt"; 308 310 status = "disabled"; 309 311 }; 310 312