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

TOMOYO Linux Cross Reference
Linux/arch/arm/boot/dts/qcom/qcom-ipq4018-jalapeno.dts

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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-or-later OR MIT
  2 // Copyright (c) 2018, Robert Marko <robimarko@gmail.com>
  3 
  4 #include "qcom-ipq4019.dtsi"
  5 #include <dt-bindings/gpio/gpio.h>
  6 #include <dt-bindings/input/input.h>
  7 
  8 / {
  9         model = "8devices Jalapeno";
 10         compatible = "8dev,jalapeno", "qcom,ipq4018";
 11 };
 12 
 13 &tlmm {
 14         mdio_pins: mdio-state {
 15                 mdio-pins {
 16                         pins = "gpio53";
 17                         function = "mdio";
 18                         bias-pull-up;
 19                 };
 20 
 21                 mdc-pins {
 22                         pins = "gpio52";
 23                         function = "mdc";
 24                         bias-pull-up;
 25                 };
 26         };
 27 
 28         serial_pins: serial-state{
 29                 pins = "gpio60", "gpio61";
 30                 function = "blsp_uart0";
 31                 bias-disable;
 32         };
 33 
 34         spi_0_pins: spi-0-state {
 35                 spi0-pins {
 36                         function = "blsp_spi0";
 37                         pins = "gpio55", "gpio56", "gpio57";
 38                         drive-strength = <2>;
 39                         bias-disable;
 40                 };
 41 
 42                 spi0-cs-pins {
 43                         function = "gpio";
 44                         pins = "gpio54", "gpio59";
 45                         drive-strength = <2>;
 46                         bias-disable;
 47                         output-high;
 48                 };
 49         };
 50 };
 51 
 52 &watchdog {
 53         status = "okay";
 54 };
 55 
 56 &prng {
 57         status = "okay";
 58 };
 59 
 60 &blsp_dma {
 61         status = "okay";
 62 };
 63 
 64 &blsp1_spi1 {
 65         status = "okay";
 66 
 67         pinctrl-0 = <&spi_0_pins>;
 68         pinctrl-names = "default";
 69         cs-gpios = <&tlmm 54 GPIO_ACTIVE_HIGH>, <&tlmm 59 GPIO_ACTIVE_HIGH>;
 70 
 71         flash@0 {
 72                 status = "okay";
 73 
 74                 compatible = "jedec,spi-nor";
 75                 reg = <0>;
 76                 spi-max-frequency = <24000000>;
 77 
 78                 partitions {
 79                         compatible = "fixed-partitions";
 80                         #address-cells = <1>;
 81                         #size-cells = <1>;
 82 
 83                         partition@0 {
 84                                 label = "SBL1";
 85                                 reg = <0x00000000 0x00040000>;
 86                                 read-only;
 87                         };
 88 
 89                         partition@40000 {
 90                                 label = "MIBIB";
 91                                 reg = <0x00040000 0x00020000>;
 92                                 read-only;
 93                         };
 94 
 95                         partition@60000 {
 96                                 label = "QSEE";
 97                                 reg = <0x00060000 0x00060000>;
 98                                 read-only;
 99                         };
100 
101                         partition@c0000 {
102                                 label = "CDT";
103                                 reg = <0x000c0000 0x00010000>;
104                                 read-only;
105                         };
106 
107                         partition@d0000 {
108                                 label = "DDRPARAMS";
109                                 reg = <0x000d0000 0x00010000>;
110                                 read-only;
111                         };
112 
113                         partition@e0000 {
114                                 label = "u-boot-env";
115                                 reg = <0x000e0000 0x00010000>;
116                         };
117 
118                         partition@f0000 {
119                                 label = "u-boot";
120                                 reg = <0x000f0000 0x00080000>;
121                                 read-only;
122                         };
123 
124                         partition@170000 {
125                                 label = "ART";
126                                 reg = <0x00170000 0x00010000>;
127                                 read-only;
128                         };
129                 };
130         };
131 
132         spi-nand@1 {
133                 status = "okay";
134 
135                 compatible = "spi-nand";
136                 reg = <1>;
137                 spi-max-frequency = <24000000>;
138 
139                 partitions {
140                         compatible = "fixed-partitions";
141                         #address-cells = <1>;
142                         #size-cells = <1>;
143 
144                         partition@0 {
145                                 label = "ubi1";
146                                 reg = <0x00000000 0x04000000>;
147                         };
148 
149                         partition@4000000 {
150                                 label = "ubi2";
151                                 reg = <0x04000000 0x04000000>;
152                         };
153                 };
154         };
155 };
156 
157 &blsp1_uart1 {
158         status = "okay";
159 
160         pinctrl-0 = <&serial_pins>;
161         pinctrl-names = "default";
162 };
163 
164 &cryptobam {
165         status = "okay";
166 };
167 
168 &crypto {
169         status = "okay";
170 };
171 
172 &mdio {
173         status = "okay";
174 
175         pinctrl-0 = <&mdio_pins>;
176         pinctrl-names = "default";
177 };
178 
179 &wifi0 {
180         status = "okay";
181 
182         qcom,ath10k-calibration-variant = "8devices-Jalapeno";
183 };
184 
185 &wifi1 {
186         status = "okay";
187 
188         qcom,ath10k-calibration-variant = "8devices-Jalapeno";
189 };
190 
191 &usb3_ss_phy {
192         status = "okay";
193 };
194 
195 &usb3_hs_phy {
196         status = "okay";
197 };
198 
199 &usb3 {
200         status = "okay";
201 };
202 
203 &usb2_hs_phy {
204         status = "okay";
205 };
206 
207 &usb2 {
208         status = "okay";
209 };

~ [ 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