Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | // SPDX-License-Identifier: GPL-2.0+ #include <dt-bindings/memory/stm32-sdram.h> /{ soc { bootph-all; fmc: fmc@A0000000 { compatible = "st,stm32-fmc"; reg = <0xa0000000 0x1000>; clocks = <&rcc 0 STM32F7_AHB3_CLOCK(FMC)>; pinctrl-0 = <&fmc_pins>; pinctrl-names = "default"; status = "okay"; bootph-all; }; mac: ethernet@40028000 { compatible = "st,stm32-dwmac"; reg = <0x40028000 0x8000>; reg-names = "stmmaceth"; clocks = <&rcc 0 STM32F7_AHB1_CLOCK(ETHMAC)>, <&rcc 0 STM32F7_AHB1_CLOCK(ETHMACTX)>, <&rcc 0 STM32F7_AHB1_CLOCK(ETHMACRX)>; interrupts = <61>, <62>; interrupt-names = "macirq", "eth_wake_irq"; snps,pbl = <8>; snps,mixed-burst; pinctrl-0 = <ðernet_mii>; phy-mode = "rmii"; phy-handle = <&phy0>; status = "okay"; mdio0 { #address-cells = <1>; #size-cells = <0>; compatible = "snps,dwmac-mdio"; phy0: ethernet-phy@0 { reg = <0>; }; }; }; qspi: spi@A0001000 { compatible = "st,stm32f469-qspi"; #address-cells = <1>; #size-cells = <0>; reg = <0xa0001000 0x1000>, <0x90000000 0x10000000>; reg-names = "qspi", "qspi_mm"; interrupts = <92>; spi-max-frequency = <108000000>; clocks = <&rcc 0 STM32F7_AHB3_CLOCK(QSPI)>; resets = <&rcc STM32F7_AHB3_RESET(QSPI)>; pinctrl-0 = <&qspi_pins>; status = "okay"; }; }; }; &clk_hse { bootph-all; }; &gpioa { bootph-all; }; &gpiob { bootph-all; }; &gpioc { bootph-all; }; &gpiod { bootph-all; }; &gpioe { bootph-all; }; &gpiof { bootph-all; }; &gpiog { bootph-all; }; &gpioh { bootph-all; }; &gpioi { bootph-all; }; &pinctrl { bootph-all; fmc_pins: fmc@0 { bootph-all; pins { bootph-all; }; }; }; &pwrcfg { bootph-all; }; &rcc { bootph-all; }; &timers5 { bootph-all; }; &usart1 { bootph-all; clocks = <&rcc 0 STM32F7_APB2_CLOCK(USART1)>; }; |