1/* 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7/dts-v1/; 8#include "rk3328.dtsi" 9 10/ { 11 model = "Rockchip RK3328 EVB"; 12 compatible = "rockchip,rk3328-evb", "rockchip,rk3328"; 13 14 chosen { 15 stdout-path = &uart2; 16 }; 17}; 18 19&uart2 { 20 status = "okay"; 21}; 22 23&sdmmc { 24 bus-width = <4>; 25 cap-mmc-highspeed; 26 cap-sd-highspeed; 27 card-detect-delay = <200>; 28 disable-wp; 29 num-slots = <1>; 30 pinctrl-names = "default"; 31 pinctrl-0 = <&sdmmc0_clk>, <&sdmmc0_cmd>, <&sdmmc0_dectn>, <&sdmmc0_bus4>; 32 status = "okay"; 33}; 34 35&emmc { 36 bus-width = <8>; 37 cap-mmc-highspeed; 38 supports-emmc; 39 disable-wp; 40 non-removable; 41 num-slots = <1>; 42 pinctrl-names = "default"; 43 pinctrl-0 = <&emmc_clk &emmc_cmd &emmc_bus8>; 44 status = "okay"; 45}; 46 47&usb_host0_ehci { 48 status = "okay"; 49}; 50 51&usb_host0_ohci { 52 status = "okay"; 53}; 54 55&usb_host0_xhci { 56 rockchip,vbus-gpio = <&gpio0 0 GPIO_ACTIVE_HIGH>; 57 status = "okay"; 58}; 59