1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
4 */
5
6/dts-v1/;
7
8#include "rv1108.dtsi"
9
10/ {
11	model = "Elgin RV1108 R1 board";
12	compatible = "elgin,rv1108-elgin", "rockchip,rv1108";
13
14	memory@60000000 {
15		device_type = "memory";
16		reg = <0x60000000 0x08000000>;
17	};
18
19	chosen {
20		stdout-path = "serial2:1500000n8";
21	};
22};
23
24&emmc {
25	pinctrl-names = "default";
26	pinctrl-0 = <&emmc_clk &emmc_cmd &emmc_bus8>;
27	bus-width = <8>;
28	cap-mmc-highspeed;
29	disable-wp;
30	non-removable;
31	status = "okay";
32};
33
34&u2phy {
35	status = "okay";
36
37	u2phy_otg: otg-port {
38		status = "okay";
39	};
40};
41
42&uart2 {
43	pinctrl-names = "default";
44	pinctrl-0 = <&uart2m0_xfer_pullup>;
45	status = "okay";
46};
47
48&usb20_otg {
49	status = "okay";
50};
51
52&pinctrl {
53	uart2m0 {
54		uart2m0_xfer_pullup: uart2m0-xfer-pullup {
55			rockchip,pins = <2 RK_PD2 RK_FUNC_1 &pcfg_pull_up_drv_8ma>,
56					<2 RK_PD1 RK_FUNC_1 &pcfg_pull_up_drv_8ma>;
57		};
58	};
59};
60