1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 3 /dts-v1/; 4 5 #include "rk3036.dtsi" 6 7 / { 8 model = "Rockchip RK3036 Evaluation board"; 9 compatible = "rockchip,rk3036-evb", "rockchip,rk3036"; 10 11 memory@60000000 { 12 device_type = "memory"; 13 reg = <0x60000000 0x40000000>; 14 }; 15 }; 16 17 &emac { 18 phy = <&phy0>; 19 phy-reset-duration = <10>; /* millisecond */ 20 phy-reset-gpios = <&gpio2 RK_PC6 GPIO_ACTIVE_LOW>; /* PHY_RST */ 21 pinctrl-names = "default"; 22 pinctrl-0 = <&emac_xfer>, <&emac_mdio>; 23 status = "okay"; 24 25 mdio { 26 #address-cells = <1>; 27 #size-cells = <0>; 28 29 phy0: ethernet-phy@0 { 30 reg = <0>; 31 }; 32 }; 33 }; 34 35 &i2c1 { 36 status = "okay"; 37 38 hym8563: rtc@51 { 39 compatible = "haoyu,hym8563"; 40 reg = <0x51>; 41 #clock-cells = <0>; 42 clock-output-names = "xin32k"; 43 }; 44 }; 45 46 &uart2 { 47 status = "okay"; 48 };
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.