r8a7795-h3ulcb.dts 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Device Tree Source for the H3ULCB board
 *
 * Copyright (C) 2016 Renesas Electronics Corp.
 * Copyright (C) 2016 Cogent Embedded, Inc.
 *
 * This file is licensed under the terms of the GNU General Public License
 * version 2.  This program is licensed "as is" without any warranty of any
 * kind, whether express or implied.
 */

/dts-v1/;
#include "r8a7795.dtsi"
#include <dt-bindings/gpio/gpio.h>
15
#include <dt-bindings/input/input.h>
16 17 18 19 20 21 22

/ {
	model = "Renesas H3ULCB board based on r8a7795";
	compatible = "renesas,h3ulcb", "renesas,r8a7795";

	aliases {
		serial0 = &scif2;
23
		ethernet0 = &avb;
24 25 26 27 28 29 30 31 32 33 34
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	memory@48000000 {
		device_type = "memory";
		/* first 128MB is reserved for secure area. */
		reg = <0x0 0x48000000 0x0 0x38000000>;
	};
35 36 37 38 39 40 41 42 43 44 45 46

	keyboard {
		compatible = "gpio-keys";

		key-1 {
			linux,code = <KEY_1>;
			label = "SW3";
			wakeup-source;
			debounce-interval = <20>;
			gpios = <&gpio6 11 GPIO_ACTIVE_LOW>;
		};
	};
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

	vcc_sdhi0: regulator-vcc-sdhi0 {
		compatible = "regulator-fixed";

		regulator-name = "SDHI0 Vcc";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;

		gpio = <&gpio5 2 GPIO_ACTIVE_HIGH>;
		enable-active-high;
	};

	vccq_sdhi0: regulator-vccq-sdhi0 {
		compatible = "regulator-gpio";

		regulator-name = "SDHI0 VccQ";
		regulator-min-microvolt = <1800000>;
		regulator-max-microvolt = <3300000>;

		gpios = <&gpio5 1 GPIO_ACTIVE_HIGH>;
		gpios-states = <1>;
		states = <3300000 1
			  1800000 0>;
	};
71 72 73 74 75 76
};

&extal_clk {
	clock-frequency = <16666666>;
};

77 78 79 80
&extalr_clk {
	clock-frequency = <32768>;
};

81
&pfc {
82 83 84
	pinctrl-0 = <&scif_clk_pins>;
	pinctrl-names = "default";

85 86 87 88
	scif2_pins: scif2 {
		groups = "scif2_data_a";
		function = "scif2";
	};
89 90 91 92 93

	scif_clk_pins: scif_clk {
		groups = "scif_clk_a";
		function = "scif_clk";
	};
94

95 96 97 98 99
	i2c2_pins: i2c2 {
		groups = "i2c2_a";
		function = "i2c2";
	};

100 101 102 103
	avb_pins: avb {
		groups = "avb_mdc";
		function = "avb";
	};
104

105 106 107 108 109 110 111 112 113 114 115 116
	sdhi0_pins_3v3: sd0_3v3 {
		groups = "sdhi0_data4", "sdhi0_ctrl";
		function = "sdhi0";
		power-source = <3300>;
	};

	sdhi0_pins_1v8: sd0_1v8 {
		groups = "sdhi0_data4", "sdhi0_ctrl";
		function = "sdhi0";
		power-source = <1800>;
	};

117 118 119 120
	usb1_pins: usb1 {
		groups = "usb1";
		function = "usb1";
	};
121 122 123 124 125 126 127 128
};

&scif2 {
	pinctrl-0 = <&scif2_pins>;
	pinctrl-names = "default";

	status = "okay";
};
129 130 131 132 133

&scif_clk {
	clock-frequency = <14745600>;
	status = "okay";
};
134

135 136 137 138 139 140 141
&i2c2 {
	pinctrl-0 = <&i2c2_pins>;
	pinctrl-names = "default";

	status = "okay";
};

142 143 144 145 146 147 148 149 150 151 152 153 154
&sdhi0 {
	pinctrl-0 = <&sdhi0_pins_3v3>;
	pinctrl-1 = <&sdhi0_pins_1v8>;
	pinctrl-names = "default", "state_uhs";

	vmmc-supply = <&vcc_sdhi0>;
	vqmmc-supply = <&vccq_sdhi0>;
	cd-gpios = <&gpio3 12 GPIO_ACTIVE_LOW>;
	bus-width = <4>;
	sd-uhs-sdr50;
	status = "okay";
};

155 156 157 158 159
&wdt0 {
	timeout-sec = <60>;
	status = "okay";
};

160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
&avb {
	pinctrl-0 = <&avb_pins>;
	pinctrl-names = "default";
	renesas,no-ether-link;
	phy-handle = <&phy0>;
	status = "okay";

	phy0: ethernet-phy@0 {
		rxc-skew-ps = <900>;
		rxdv-skew-ps = <0>;
		rxd0-skew-ps = <0>;
		rxd1-skew-ps = <0>;
		rxd2-skew-ps = <0>;
		rxd3-skew-ps = <0>;
		txc-skew-ps = <900>;
		txen-skew-ps = <0>;
		txd0-skew-ps = <0>;
		txd1-skew-ps = <0>;
		txd2-skew-ps = <0>;
		txd3-skew-ps = <0>;
		reg = <0>;
		interrupt-parent = <&gpio2>;
		interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
	};
};
185 186 187 188 189 190 191

&usb2_phy1 {
	pinctrl-0 = <&usb1_pins>;
	pinctrl-names = "default";

	status = "okay";
};
192 193 194 195 196 197 198 199

&ehci1 {
	status = "okay";
};

&ohci1 {
	status = "okay";
};