1a1d32814SChristopher Obbard// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2a1d32814SChristopher Obbard 3a1d32814SChristopher Obbard/dts-v1/; 4a1d32814SChristopher Obbard 5a1d32814SChristopher Obbard#include "rk3588.dtsi" 6a1d32814SChristopher Obbard 7a1d32814SChristopher Obbard/ { 8a1d32814SChristopher Obbard model = "Radxa ROCK 5 Model B"; 9a1d32814SChristopher Obbard compatible = "radxa,rock-5b", "rockchip,rk3588"; 10a1d32814SChristopher Obbard 11a1d32814SChristopher Obbard aliases { 12*6fb13f88SChristopher Obbard mmc0 = &sdhci; 13a1d32814SChristopher Obbard serial2 = &uart2; 14a1d32814SChristopher Obbard }; 15a1d32814SChristopher Obbard 16a1d32814SChristopher Obbard chosen { 17a1d32814SChristopher Obbard stdout-path = "serial2:1500000n8"; 18a1d32814SChristopher Obbard }; 19a1d32814SChristopher Obbard 20a1d32814SChristopher Obbard vcc5v0_sys: vcc5v0-sys-regulator { 21a1d32814SChristopher Obbard compatible = "regulator-fixed"; 22a1d32814SChristopher Obbard regulator-name = "vcc5v0_sys"; 23a1d32814SChristopher Obbard regulator-always-on; 24a1d32814SChristopher Obbard regulator-boot-on; 25a1d32814SChristopher Obbard regulator-min-microvolt = <5000000>; 26a1d32814SChristopher Obbard regulator-max-microvolt = <5000000>; 27a1d32814SChristopher Obbard }; 28a1d32814SChristopher Obbard}; 29a1d32814SChristopher Obbard 30a1d32814SChristopher Obbard&sdhci { 31a1d32814SChristopher Obbard bus-width = <8>; 32a1d32814SChristopher Obbard no-sdio; 33a1d32814SChristopher Obbard no-sd; 34a1d32814SChristopher Obbard non-removable; 35a1d32814SChristopher Obbard max-frequency = <200000000>; 36a1d32814SChristopher Obbard mmc-hs400-1_8v; 37a1d32814SChristopher Obbard mmc-hs400-enhanced-strobe; 38a1d32814SChristopher Obbard status = "okay"; 39a1d32814SChristopher Obbard}; 40a1d32814SChristopher Obbard 41a1d32814SChristopher Obbard&uart2 { 42a1d32814SChristopher Obbard pinctrl-0 = <&uart2m0_xfer>; 43a1d32814SChristopher Obbard status = "okay"; 44a1d32814SChristopher Obbard}; 45