~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm64/boot/dts/renesas/rzg2lc-smarc-som.dtsi

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 /*
  3  * Device Tree Source for the RZ/G2LC SMARC SOM common parts
  4  *
  5  * Copyright (C) 2021 Renesas Electronics Corp.
  6  */
  7 
  8 #include <dt-bindings/gpio/gpio.h>
  9 #include <dt-bindings/interrupt-controller/irqc-rzg2l.h>
 10 #include <dt-bindings/pinctrl/rzg2l-pinctrl.h>
 11 
 12 / {
 13         aliases {
 14                 ethernet0 = &eth0;
 15         };
 16 
 17         chosen {
 18                 bootargs = "ignore_loglevel rw root=/dev/nfs ip=on";
 19         };
 20 
 21         memory@48000000 {
 22                 device_type = "memory";
 23                 /* first 128MB is reserved for secure area. */
 24                 reg = <0x0 0x48000000 0x0 0x38000000>;
 25         };
 26 
 27         reg_1p8v: regulator-1p8v {
 28                 compatible = "regulator-fixed";
 29                 regulator-name = "fixed-1.8V";
 30                 regulator-min-microvolt = <1800000>;
 31                 regulator-max-microvolt = <1800000>;
 32                 regulator-boot-on;
 33                 regulator-always-on;
 34         };
 35 
 36         reg_3p3v: regulator-3p3v {
 37                 compatible = "regulator-fixed";
 38                 regulator-name = "fixed-3.3V";
 39                 regulator-min-microvolt = <3300000>;
 40                 regulator-max-microvolt = <3300000>;
 41                 regulator-boot-on;
 42                 regulator-always-on;
 43         };
 44 
 45         reg_1p1v: regulator-vdd-core {
 46                 compatible = "regulator-fixed";
 47                 regulator-name = "fixed-1.1V";
 48                 regulator-min-microvolt = <1100000>;
 49                 regulator-max-microvolt = <1100000>;
 50                 regulator-boot-on;
 51                 regulator-always-on;
 52         };
 53 
 54         vccq_sdhi0: regulator-vccq-sdhi0 {
 55                 compatible = "regulator-gpio";
 56 
 57                 regulator-name = "SDHI0 VccQ";
 58                 regulator-min-microvolt = <1800000>;
 59                 regulator-max-microvolt = <3300000>;
 60                 states = <3300000 1>, <1800000 0>;
 61                 regulator-boot-on;
 62                 gpios = <&pinctrl RZG2L_GPIO(39, 0) GPIO_ACTIVE_HIGH>;
 63                 regulator-always-on;
 64         };
 65 
 66         /* 32.768kHz crystal */
 67         x2: x2-clock {
 68                 compatible = "fixed-clock";
 69                 #clock-cells = <0>;
 70                 clock-frequency = <32768>;
 71         };
 72 };
 73 
 74 &eth0 {
 75         pinctrl-0 = <&eth0_pins>;
 76         pinctrl-names = "default";
 77         phy-handle = <&phy0>;
 78         phy-mode = "rgmii-id";
 79         status = "okay";
 80 
 81         phy0: ethernet-phy@7 {
 82                 compatible = "ethernet-phy-id0022.1640",
 83                              "ethernet-phy-ieee802.3-c22";
 84                 reg = <7>;
 85                 interrupt-parent = <&irqc>;
 86                 interrupts = <RZG2L_IRQ0 IRQ_TYPE_LEVEL_LOW>;
 87                 rxc-skew-psec = <2400>;
 88                 txc-skew-psec = <2400>;
 89                 rxdv-skew-psec = <0>;
 90                 txen-skew-psec = <0>;
 91                 rxd0-skew-psec = <0>;
 92                 rxd1-skew-psec = <0>;
 93                 rxd2-skew-psec = <0>;
 94                 rxd3-skew-psec = <0>;
 95                 txd0-skew-psec = <0>;
 96                 txd1-skew-psec = <0>;
 97                 txd2-skew-psec = <0>;
 98                 txd3-skew-psec = <0>;
 99         };
100 };
101 
102 &extal_clk {
103         clock-frequency = <24000000>;
104 };
105 
106 &gpu {
107         mali-supply = <&reg_1p1v>;
108 };
109 
110 &i2c2 {
111         raa215300: pmic@12 {
112                 compatible = "renesas,raa215300";
113                 reg = <0x12>, <0x6f>;
114                 reg-names = "main", "rtc";
115 
116                 clocks = <&x2>;
117                 clock-names = "xin";
118         };
119 };
120 
121 &ostm1 {
122         status = "okay";
123 };
124 
125 &ostm2 {
126         status = "okay";
127 };
128 
129 &pinctrl {
130         eth0_pins: eth0 {
131                 pinmux = <RZG2L_PORT_PINMUX(28, 1, 1)>, /* ET0_LINKSTA */
132                          <RZG2L_PORT_PINMUX(27, 1, 1)>, /* ET0_MDC */
133                          <RZG2L_PORT_PINMUX(28, 0, 1)>, /* ET0_MDIO */
134                          <RZG2L_PORT_PINMUX(20, 0, 1)>, /* ET0_TXC */
135                          <RZG2L_PORT_PINMUX(20, 1, 1)>, /* ET0_TX_CTL */
136                          <RZG2L_PORT_PINMUX(20, 2, 1)>, /* ET0_TXD0 */
137                          <RZG2L_PORT_PINMUX(21, 0, 1)>, /* ET0_TXD1 */
138                          <RZG2L_PORT_PINMUX(21, 1, 1)>, /* ET0_TXD2 */
139                          <RZG2L_PORT_PINMUX(22, 0, 1)>, /* ET0_TXD3 */
140                          <RZG2L_PORT_PINMUX(24, 0, 1)>, /* ET0_RXC */
141                          <RZG2L_PORT_PINMUX(24, 1, 1)>, /* ET0_RX_CTL */
142                          <RZG2L_PORT_PINMUX(25, 0, 1)>, /* ET0_RXD0 */
143                          <RZG2L_PORT_PINMUX(25, 1, 1)>, /* ET0_RXD1 */
144                          <RZG2L_PORT_PINMUX(26, 0, 1)>, /* ET0_RXD2 */
145                          <RZG2L_PORT_PINMUX(26, 1, 1)>, /* ET0_RXD3 */
146                          <RZG2L_PORT_PINMUX(0, 0, 1)>;  /* IRQ0 */
147         };
148 
149         gpio-sd0-pwr-en-hog {
150                 gpio-hog;
151                 gpios = <RZG2L_GPIO(18, 1) GPIO_ACTIVE_HIGH>;
152                 output-high;
153                 line-name = "gpio_sd0_pwr_en";
154         };
155 
156         qspi0_pins: qspi0 {
157                 qspi0-data {
158                         pins = "QSPI0_IO0", "QSPI0_IO1", "QSPI0_IO2", "QSPI0_IO3";
159                         power-source = <1800>;
160                 };
161 
162                 qspi0-ctrl {
163                         pins = "QSPI0_SPCLK", "QSPI0_SSL", "QSPI_RESET#";
164                         power-source = <1800>;
165                 };
166         };
167 
168         /*
169          * SD0 device selection is XOR between GPIO_SD0_DEV_SEL and SW1[2]
170          * The below switch logic can be used to select the device between
171          * eMMC and microSD, after setting GPIO_SD0_DEV_SEL to high in DT.
172          * SW1[2] should be at OFF position to enable 64 GB eMMC
173          * SW1[2] should be at position ON to enable uSD card CN3
174          */
175         gpio-sd0-dev-sel-hog {
176                 gpio-hog;
177                 gpios = <RZG2L_GPIO(40, 2) GPIO_ACTIVE_HIGH>;
178                 output-high;
179                 line-name = "gpio_sd0_dev_sel";
180         };
181 
182         sdhi0_emmc_pins: sd0emmc {
183                 sd0_emmc_data {
184                         pins = "SD0_DATA0", "SD0_DATA1", "SD0_DATA2", "SD0_DATA3",
185                                "SD0_DATA4", "SD0_DATA5", "SD0_DATA6", "SD0_DATA7";
186                         power-source = <1800>;
187                 };
188 
189                 sd0_emmc_ctrl {
190                         pins = "SD0_CLK", "SD0_CMD";
191                         power-source = <1800>;
192                 };
193 
194                 sd0_emmc_rst {
195                         pins = "SD0_RST#";
196                         power-source = <1800>;
197                 };
198         };
199 
200         sdhi0_pins: sd0 {
201                 sd0_data {
202                         pins = "SD0_DATA0", "SD0_DATA1", "SD0_DATA2", "SD0_DATA3";
203                         power-source = <3300>;
204                 };
205 
206                 sd0_ctrl {
207                         pins = "SD0_CLK", "SD0_CMD";
208                         power-source = <3300>;
209                 };
210 
211                 sd0_mux {
212                         pinmux = <RZG2L_PORT_PINMUX(18, 0, 1)>; /* SD0_CD */
213                 };
214         };
215 
216         sdhi0_pins_uhs: sd0_uhs {
217                 sd0_data_uhs {
218                         pins = "SD0_DATA0", "SD0_DATA1", "SD0_DATA2", "SD0_DATA3";
219                         power-source = <1800>;
220                 };
221 
222                 sd0_ctrl_uhs {
223                         pins = "SD0_CLK", "SD0_CMD";
224                         power-source = <1800>;
225                 };
226 
227                 sd0_mux_uhs {
228                         pinmux = <RZG2L_PORT_PINMUX(18, 0, 1)>; /* SD0_CD */
229                 };
230         };
231 };
232 
233 &sbc {
234         pinctrl-0 = <&qspi0_pins>;
235         pinctrl-names = "default";
236         status = "okay";
237 
238         flash@0 {
239                 compatible = "micron,mt25qu512a", "jedec,spi-nor";
240                 reg = <0>;
241                 m25p,fast-read;
242                 spi-max-frequency = <50000000>;
243                 spi-rx-bus-width = <4>;
244                 spi-tx-bus-width = <4>;
245 
246                 partitions {
247                         compatible = "fixed-partitions";
248                         #address-cells = <1>;
249                         #size-cells = <1>;
250 
251                         boot@0 {
252                                 reg = <0x00000000 0x2000000>;
253                                 read-only;
254                         };
255                         user@2000000 {
256                                 reg = <0x2000000 0x2000000>;
257                         };
258                 };
259         };
260 };
261 
262 #if (!SW_SD0_DEV_SEL)
263 &sdhi0 {
264         pinctrl-0 = <&sdhi0_pins>;
265         pinctrl-1 = <&sdhi0_pins_uhs>;
266         pinctrl-names = "default", "state_uhs";
267 
268         vmmc-supply = <&reg_3p3v>;
269         vqmmc-supply = <&vccq_sdhi0>;
270         bus-width = <4>;
271         sd-uhs-sdr50;
272         sd-uhs-sdr104;
273         status = "okay";
274 };
275 #endif
276 
277 #if SW_SD0_DEV_SEL
278 &sdhi0 {
279         pinctrl-0 = <&sdhi0_emmc_pins>;
280         pinctrl-1 = <&sdhi0_emmc_pins>;
281         pinctrl-names = "default", "state_uhs";
282 
283         vmmc-supply = <&reg_3p3v>;
284         vqmmc-supply = <&reg_1p8v>;
285         bus-width = <8>;
286         mmc-hs200-1_8v;
287         non-removable;
288         fixed-emmc-driver-type = <1>;
289         status = "okay";
290 };
291 #endif
292 
293 &wdt0 {
294         status = "okay";
295         timeout-sec = <60>;
296 };
297 
298 &wdt1 {
299         status = "okay";
300         timeout-sec = <60>;
301 };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php