blob: 46d148eab2c83b0916b453039ab62264b56a0cb5 [file] [log] [blame]
Michael Kurzb1a8de72017-01-22 16:04:23 +01001/*
2 * Copyright 2016 - Michael Kurz <michi.kurz@gmail.com>
Vikas Manochafd198ee2017-04-10 15:02:53 -07003 * Copyright 2016 - Vikas MANOCHA <vikas.manocha@st.com>
Michael Kurzb1a8de72017-01-22 16:04:23 +01004 *
5 * Based on:
6 * stm32f429.dtsi from Linux
7 * Copyright 2015 - Maxime Coquelin <mcoquelin.stm32@gmail.com>
8 *
9 * This file is dual-licensed: you can use it either under the terms
10 * of the GPL or the X11 license, at your option. Note that this dual
11 * licensing only applies to this file, and not this project as a
12 * whole.
13 *
14 * a) This file is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
18 *
19 * This file is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * Or, alternatively,
25 *
26 * b) Permission is hereby granted, free of charge, to any person
27 * obtaining a copy of this software and associated documentation
28 * files (the "Software"), to deal in the Software without
29 * restriction, including without limitation the rights to use,
30 * copy, modify, merge, publish, distribute, sublicense, and/or
31 * sell copies of the Software, and to permit persons to whom the
32 * Software is furnished to do so, subject to the following
33 * conditions:
34 *
35 * The above copyright notice and this permission notice shall be
36 * included in all copies or substantial portions of the Software.
37 *
38 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
40 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
42 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
43 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
44 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
45 * OTHER DEALINGS IN THE SOFTWARE.
46 */
47
48#include "armv7-m.dtsi"
49#include <dt-bindings/pinctrl/stm32f746-pinfunc.h>
Patrice Chotardfa87abb2017-07-18 09:29:02 +020050#include <dt-bindings/clock/stm32fx-clock.h>
51#include <dt-bindings/mfd/stm32f7-rcc.h>
Michael Kurzb1a8de72017-01-22 16:04:23 +010052
53/ {
Vikas Manocha84bfdc12017-02-12 10:25:47 -080054 clocks {
55 clk_hse: clk-hse {
56 #clock-cells = <0>;
57 compatible = "fixed-clock";
58 clock-frequency = <0>;
59 };
60};
61
Michael Kurzb1a8de72017-01-22 16:04:23 +010062 soc {
Vikas Manocha84bfdc12017-02-12 10:25:47 -080063 u-boot,dm-pre-reloc;
Michael Kurzb1a8de72017-01-22 16:04:23 +010064 mac: ethernet@40028000 {
65 compatible = "st,stm32-dwmac";
66 reg = <0x40028000 0x8000>;
67 reg-names = "stmmaceth";
Patrice Chotard1e130552018-01-18 14:10:03 +010068 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(ETHMAC)>,
69 <&rcc 0 STM32F7_AHB1_CLOCK(ETHMACTX)>,
70 <&rcc 0 STM32F7_AHB1_CLOCK(ETHMACRX)>;
Michael Kurzb1a8de72017-01-22 16:04:23 +010071 interrupts = <61>, <62>;
72 interrupt-names = "macirq", "eth_wake_irq";
73 snps,pbl = <8>;
74 snps,mixed-burst;
75 dma-ranges;
76 status = "disabled";
77 };
78
Vikas Manochafd198ee2017-04-10 15:02:53 -070079 fmc: fmc@A0000000 {
80 compatible = "st,stm32-fmc";
81 reg = <0xA0000000 0x1000>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +020082 clocks = <&rcc 0 STM32F7_AHB3_CLOCK(FMC)>;
Vikas Manochafd198ee2017-04-10 15:02:53 -070083 u-boot,dm-pre-reloc;
84 };
85
Michael Kurzb1a8de72017-01-22 16:04:23 +010086 qspi: quadspi@A0001000 {
87 compatible = "st,stm32-qspi";
88 #address-cells = <1>;
89 #size-cells = <0>;
90 reg = <0xA0001000 0x1000>, <0x90000000 0x10000000>;
91 reg-names = "QuadSPI", "QuadSPI-memory";
92 interrupts = <92>;
93 spi-max-frequency = <108000000>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +020094 clocks = <&rcc 0 STM32F7_AHB3_CLOCK(QSPI)>;
Michael Kurzb1a8de72017-01-22 16:04:23 +010095 status = "disabled";
96 };
Vikas Manocha84bfdc12017-02-12 10:25:47 -080097 usart1: serial@40011000 {
Patrice Chotard1113ad42017-06-08 09:26:54 +020098 compatible = "st,stm32f7-usart", "st,stm32f7-uart";
Vikas Manocha84bfdc12017-02-12 10:25:47 -080099 reg = <0x40011000 0x400>;
100 interrupts = <37>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200101 clocks = <&rcc 0 STM32F7_APB2_CLOCK(USART1)>;
Vikas Manocha84bfdc12017-02-12 10:25:47 -0800102 status = "disabled";
103 u-boot,dm-pre-reloc;
104 };
Patrice Chotardd3651aa2017-11-15 13:14:43 +0100105
106 pwrcfg: power-config@58024800 {
107 compatible = "syscon";
108 reg = <0x40007000 0x400>;
109 };
110
Vikas Manocha84bfdc12017-02-12 10:25:47 -0800111 rcc: rcc@40023810 {
112 #reset-cells = <1>;
113 #clock-cells = <2>;
Patrice Chotard15559032017-11-15 13:14:46 +0100114 compatible = "st,stm32f746-rcc", "st,stm32-rcc";
Vikas Manocha84bfdc12017-02-12 10:25:47 -0800115 reg = <0x40023800 0x400>;
116 clocks = <&clk_hse>;
Patrice Chotardd3651aa2017-11-15 13:14:43 +0100117 st,syscfg = <&pwrcfg>;
Vikas Manocha84bfdc12017-02-12 10:25:47 -0800118 u-boot,dm-pre-reloc;
119 };
120
Vikas Manochada4e17f2017-02-12 10:25:50 -0800121 pinctrl: pin-controller {
122 #address-cells = <1>;
123 #size-cells = <1>;
124 compatible = "st,stm32f746-pinctrl";
125 ranges = <0 0x40020000 0x3000>;
126 u-boot,dm-pre-reloc;
127 pins-are-numbered;
Vikas Manochae34e19f2017-02-12 10:25:51 -0800128
Vikas Manochad33a6a22017-04-10 15:02:58 -0700129 gpioa: gpio@40020000 {
130 gpio-controller;
131 #gpio-cells = <2>;
132 compatible = "st,stm32-gpio";
133 reg = <0x0 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200134 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOA)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700135 st,bank-name = "GPIOA";
136 u-boot,dm-pre-reloc;
137 };
138
139 gpiob: gpio@40020400 {
140 gpio-controller;
141 #gpio-cells = <2>;
142 compatible = "st,stm32-gpio";
143 reg = <0x400 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200144 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOB)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700145 st,bank-name = "GPIOB";
146 u-boot,dm-pre-reloc;
147 };
148
149
150 gpioc: gpio@40020800 {
151 gpio-controller;
152 #gpio-cells = <2>;
153 compatible = "st,stm32-gpio";
154 reg = <0x800 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200155 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOC)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700156 st,bank-name = "GPIOC";
157 u-boot,dm-pre-reloc;
158 };
159
160 gpiod: gpio@40020c00 {
161 gpio-controller;
162 #gpio-cells = <2>;
163 compatible = "st,stm32-gpio";
164 reg = <0xc00 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200165 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOD)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700166 st,bank-name = "GPIOD";
167 u-boot,dm-pre-reloc;
168 };
169
170 gpioe: gpio@40021000 {
171 gpio-controller;
172 #gpio-cells = <2>;
173 compatible = "st,stm32-gpio";
174 reg = <0x1000 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200175 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOE)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700176 st,bank-name = "GPIOE";
177 u-boot,dm-pre-reloc;
178 };
179
180 gpiof: gpio@40021400 {
181 gpio-controller;
182 #gpio-cells = <2>;
183 compatible = "st,stm32-gpio";
184 reg = <0x1400 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200185 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOF)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700186 st,bank-name = "GPIOF";
187 u-boot,dm-pre-reloc;
188 };
189
190 gpiog: gpio@40021800 {
191 gpio-controller;
192 #gpio-cells = <2>;
193 compatible = "st,stm32-gpio";
194 reg = <0x1800 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200195 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOG)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700196 st,bank-name = "GPIOG";
197 u-boot,dm-pre-reloc;
198 };
199
200 gpioh: gpio@40021c00 {
201 gpio-controller;
202 #gpio-cells = <2>;
203 compatible = "st,stm32-gpio";
204 reg = <0x1c00 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200205 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOH)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700206 st,bank-name = "GPIOH";
207 u-boot,dm-pre-reloc;
208 };
209
210 gpioi: gpio@40022000 {
211 gpio-controller;
212 #gpio-cells = <2>;
213 compatible = "st,stm32-gpio";
214 reg = <0x2000 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200215 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOI)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700216 st,bank-name = "GPIOI";
217 u-boot,dm-pre-reloc;
218 };
219
220 gpioj: gpio@40022400 {
221 gpio-controller;
222 #gpio-cells = <2>;
223 compatible = "st,stm32-gpio";
224 reg = <0x2400 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200225 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOJ)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700226 st,bank-name = "GPIOJ";
227 u-boot,dm-pre-reloc;
228 };
229
230 gpiok: gpio@40022800 {
231 gpio-controller;
232 #gpio-cells = <2>;
233 compatible = "st,stm32-gpio";
234 reg = <0x2800 0x400>;
Patrice Chotardfa87abb2017-07-18 09:29:02 +0200235 clocks = <&rcc 0 STM32F7_AHB1_CLOCK(GPIOK)>;
Vikas Manochad33a6a22017-04-10 15:02:58 -0700236 st,bank-name = "GPIOK";
237 u-boot,dm-pre-reloc;
238 };
239
Patrice Chotard77729bd2017-12-12 10:14:59 +0100240 sdio_pins: sdio_pins@0 {
241 pins {
242 pinmux = <STM32F746_PC8_FUNC_SDMMC1_D0>,
243 <STM32F746_PC9_FUNC_SDMMC1_D1>,
244 <STM32F746_PC10_FUNC_SDMMC1_D2>,
245 <STM32F746_PC11_FUNC_SDMMC1_D3>,
246 <STM32F746_PC12_FUNC_SDMMC1_CK>,
247 <STM32F746_PD2_FUNC_SDMMC1_CMD>;
248 drive-push-pull;
249 slew-rate = <2>;
250 };
251 };
252
253 sdio_pins_od: sdio_pins_od@0 {
254 pins1 {
255 pinmux = <STM32F746_PC8_FUNC_SDMMC1_D0>,
256 <STM32F746_PC9_FUNC_SDMMC1_D1>,
257 <STM32F746_PC10_FUNC_SDMMC1_D2>,
258 <STM32F746_PC11_FUNC_SDMMC1_D3>,
259 <STM32F746_PC12_FUNC_SDMMC1_CK>;
260 drive-push-pull;
261 slew-rate = <2>;
262 };
263
264 pins2 {
265 pinmux = <STM32F746_PD2_FUNC_SDMMC1_CMD>;
266 drive-open-drain;
267 slew-rate = <2>;
268 };
269 };
270
271 sdio_pins_b: sdio_pins_b@0 {
272 pins {
273 pinmux = <STM32F769_PG9_FUNC_SDMMC2_D0>,
274 <STM32F769_PG10_FUNC_SDMMC2_D1>,
275 <STM32F769_PB3_FUNC_SDMMC2_D2>,
276 <STM32F769_PB4_FUNC_SDMMC2_D3>,
277 <STM32F769_PD6_FUNC_SDMMC2_CLK>,
278 <STM32F769_PD7_FUNC_SDMMC2_CMD>;
279 drive-push-pull;
280 slew-rate = <2>;
281 };
282 };
283
284 sdio_pins_od_b: sdio_pins_od_b@0 {
285 pins1 {
286 pinmux = <STM32F769_PG9_FUNC_SDMMC2_D0>,
287 <STM32F769_PG10_FUNC_SDMMC2_D1>,
288 <STM32F769_PB3_FUNC_SDMMC2_D2>,
289 <STM32F769_PB4_FUNC_SDMMC2_D3>,
290 <STM32F769_PD6_FUNC_SDMMC2_CLK>;
291 drive-push-pull;
292 slew-rate = <2>;
293 };
294
295 pins2 {
296 pinmux = <STM32F769_PD7_FUNC_SDMMC2_CMD>;
297 drive-open-drain;
298 slew-rate = <2>;
299 };
300 };
301
302 };
303 sdio: sdio@40012c00 {
304 compatible = "st,stm32f4xx-sdio";
305 reg = <0x40012c00 0x400>;
306 clocks = <&rcc 0 171>;
307 interrupts = <49>;
308 status = "disabled";
309 pinctrl-0 = <&sdio_pins>;
310 pinctrl-1 = <&sdio_pins_od>;
311 pinctrl-names = "default", "opendrain";
312 max-frequency = <48000000>;
313 };
314
315 sdio2: sdio2@40011c00 {
316 compatible = "st,stm32f4xx-sdio";
317 reg = <0x40011c00 0x400>;
318 clocks = <&rcc 0 167>;
319 interrupts = <103>;
320 status = "disabled";
321 pinctrl-0 = <&sdio_pins_b>;
322 pinctrl-1 = <&sdio_pins_od_b>;
323 pinctrl-names = "default", "opendrain";
324 max-frequency = <48000000>;
Vikas Manochada4e17f2017-02-12 10:25:50 -0800325 };
Michael Kurzb1a8de72017-01-22 16:04:23 +0100326 };
327};
328
329&systick {
330 status = "okay";
331};