Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Common base for NXP LPC18xx and LPC43xx devices. |
| 3 | * |
| 4 | * Copyright 2015 Joachim Eastwood <manabian@gmail.com> |
| 5 | * |
| 6 | * This code is released using a dual license strategy: BSD/GPL |
| 7 | * You can choose the licence that better fits your requirements. |
| 8 | * |
| 9 | * Released under the terms of 3-clause BSD License |
| 10 | * Released under the terms of GNU General Public License Version 2.0 |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include "armv7-m.dtsi" |
| 15 | |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 16 | #include "dt-bindings/clock/lpc18xx-cgu.h" |
| 17 | #include "dt-bindings/clock/lpc18xx-ccu.h" |
| 18 | |
Joachim Eastwood | 7836dce | 2015-04-27 23:59:30 +0200 | [diff] [blame] | 19 | #define LPC_PIN(port, pin) (0x##port * 32 + pin) |
| 20 | #define LPC_GPIO(port, pin) (port * 32 + pin) |
| 21 | |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 22 | / { |
| 23 | cpus { |
| 24 | #address-cells = <1>; |
| 25 | #size-cells = <0>; |
| 26 | |
| 27 | cpu@0 { |
| 28 | compatible = "arm,cortex-m3"; |
| 29 | device_type = "cpu"; |
| 30 | reg = <0x0>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 31 | clocks = <&ccu1 CLK_CPU_CORE>; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 32 | }; |
| 33 | }; |
| 34 | |
| 35 | clocks { |
| 36 | xtal: xtal { |
| 37 | compatible = "fixed-clock"; |
| 38 | #clock-cells = <0>; |
| 39 | clock-frequency = <12000000>; |
| 40 | }; |
| 41 | |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 42 | xtal32: xtal32 { |
| 43 | compatible = "fixed-clock"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 44 | #clock-cells = <0>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 45 | clock-frequency = <32768>; |
| 46 | }; |
| 47 | |
| 48 | enet_rx_clk: enet_rx_clk { |
| 49 | compatible = "fixed-clock"; |
| 50 | #clock-cells = <0>; |
| 51 | clock-frequency = <0>; |
| 52 | clock-output-names = "enet_rx_clk"; |
| 53 | }; |
| 54 | |
| 55 | enet_tx_clk: enet_tx_clk { |
| 56 | compatible = "fixed-clock"; |
| 57 | #clock-cells = <0>; |
| 58 | clock-frequency = <0>; |
| 59 | clock-output-names = "enet_tx_clk"; |
| 60 | }; |
| 61 | |
| 62 | gp_clkin: gp_clkin { |
| 63 | compatible = "fixed-clock"; |
| 64 | #clock-cells = <0>; |
| 65 | clock-frequency = <0>; |
| 66 | clock-output-names = "gp_clkin"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 67 | }; |
| 68 | }; |
| 69 | |
| 70 | soc { |
Joachim Eastwood | 4f85dd1 | 2015-04-02 06:16:33 +0200 | [diff] [blame^] | 71 | spifi: flash-controller@40003000 { |
| 72 | compatible = "nxp,lpc1773-spifi"; |
| 73 | reg = <0x40003000 0x1000>, <0x14000000 0x4000000>; |
| 74 | reg-names = "spifi", "flash"; |
| 75 | interrupts = <30>; |
| 76 | clocks = <&ccu1 CLK_SPIFI>, <&ccu1 CLK_CPU_SPIFI>; |
| 77 | clock-names = "spifi", "reg"; |
| 78 | resets = <&rgu 53>; |
| 79 | status = "disabled"; |
| 80 | }; |
| 81 | |
Joachim Eastwood | cd07154f | 2015-04-02 05:27:33 +0200 | [diff] [blame] | 82 | mmcsd: mmcsd@40004000 { |
| 83 | compatible = "snps,dw-mshc"; |
| 84 | reg = <0x40004000 0x1000>; |
| 85 | interrupts = <6>; |
| 86 | num-slots = <1>; |
| 87 | clocks = <&ccu2 CLK_SDIO>, <&ccu1 CLK_CPU_SDIO>; |
| 88 | clock-names = "ciu", "biu"; |
| 89 | status = "disabled"; |
| 90 | }; |
| 91 | |
Joachim Eastwood | b06cdb7 | 2015-06-20 14:45:12 +0200 | [diff] [blame] | 92 | usb0: ehci@40006100 { |
| 93 | compatible = "nxp,lpc1850-ehci", "generic-ehci"; |
| 94 | reg = <0x40006100 0x100>; |
| 95 | interrupts = <8>; |
| 96 | clocks = <&ccu1 CLK_CPU_USB0>; |
Joachim Eastwood | 6d6d6b5 | 2015-07-31 00:24:19 +0200 | [diff] [blame] | 97 | phys = <&usb0_otg_phy>; |
| 98 | phy-names = "usb"; |
Joachim Eastwood | b06cdb7 | 2015-06-20 14:45:12 +0200 | [diff] [blame] | 99 | has-transaction-translator; |
| 100 | status = "disabled"; |
| 101 | }; |
| 102 | |
| 103 | usb1: ehci@40007100 { |
| 104 | compatible = "nxp,lpc1850-ehci", "generic-ehci"; |
| 105 | reg = <0x40007100 0x100>; |
| 106 | interrupts = <9>; |
| 107 | clocks = <&ccu1 CLK_CPU_USB1>; |
| 108 | status = "disabled"; |
| 109 | }; |
| 110 | |
Joachim Eastwood | 5001638 | 2015-07-31 00:24:21 +0200 | [diff] [blame] | 111 | emc: memory-controller@40005000 { |
| 112 | compatible = "arm,pl172", "arm,primecell"; |
| 113 | reg = <0x40005000 0x1000>; |
| 114 | clocks = <&ccu1 CLK_CPU_EMCDIV>, <&ccu1 CLK_CPU_EMC>; |
| 115 | clock-names = "mpmcclk", "apb_pclk"; |
| 116 | #address-cells = <2>; |
| 117 | #size-cells = <1>; |
| 118 | ranges = <0 0 0x1c000000 0x1000000 |
| 119 | 1 0 0x1d000000 0x1000000 |
| 120 | 2 0 0x1e000000 0x1000000 |
| 121 | 3 0 0x1f000000 0x1000000>; |
| 122 | status = "disabled"; |
| 123 | }; |
| 124 | |
Joachim Eastwood | 9cf6267 | 2015-07-31 00:24:20 +0200 | [diff] [blame] | 125 | lcdc: lcd-controller@40008000 { |
| 126 | compatible = "arm,pl111", "arm,primecell"; |
| 127 | reg = <0x40008000 0x1000>; |
| 128 | interrupts = <7>; |
| 129 | interrupt-names = "combined"; |
| 130 | clocks = <&cgu BASE_LCD_CLK>, <&ccu1 CLK_CPU_LCD>; |
| 131 | clock-names = "clcdclk", "apb_pclk"; |
| 132 | status = "disabled"; |
| 133 | }; |
| 134 | |
Joachim Eastwood | fe96858 | 2015-04-02 05:29:28 +0200 | [diff] [blame] | 135 | mac: ethernet@40010000 { |
| 136 | compatible = "nxp,lpc1850-dwmac", "snps,dwmac-3.611", "snps,dwmac"; |
| 137 | reg = <0x40010000 0x2000>; |
| 138 | interrupts = <5>; |
| 139 | interrupt-names = "macirq"; |
| 140 | clocks = <&ccu1 CLK_CPU_ETHERNET>; |
| 141 | clock-names = "stmmaceth"; |
| 142 | status = "disabled"; |
| 143 | }; |
| 144 | |
Joachim Eastwood | 16df2b8 | 2015-04-02 05:31:49 +0200 | [diff] [blame] | 145 | creg: syscon@40043000 { |
| 146 | compatible = "nxp,lpc1850-creg", "syscon", "simple-mfd"; |
| 147 | reg = <0x40043000 0x1000>; |
| 148 | clocks = <&ccu1 CLK_CPU_CREG>; |
Joachim Eastwood | 6d6d6b5 | 2015-07-31 00:24:19 +0200 | [diff] [blame] | 149 | |
| 150 | usb0_otg_phy: phy@004 { |
| 151 | compatible = "nxp,lpc1850-usb-otg-phy"; |
| 152 | clocks = <&ccu1 CLK_USB0>; |
| 153 | #phy-cells = <0>; |
| 154 | }; |
Joachim Eastwood | 16df2b8 | 2015-04-02 05:31:49 +0200 | [diff] [blame] | 155 | }; |
| 156 | |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 157 | cgu: clock-controller@40050000 { |
| 158 | compatible = "nxp,lpc1850-cgu"; |
| 159 | reg = <0x40050000 0x1000>; |
| 160 | #clock-cells = <1>; |
| 161 | clocks = <&xtal>, <&xtal32>, <&enet_rx_clk>, <&enet_tx_clk>, <&gp_clkin>; |
| 162 | }; |
| 163 | |
| 164 | ccu1: clock-controller@40051000 { |
| 165 | compatible = "nxp,lpc1850-ccu"; |
| 166 | reg = <0x40051000 0x1000>; |
| 167 | #clock-cells = <1>; |
| 168 | clocks = <&cgu BASE_APB3_CLK>, <&cgu BASE_APB1_CLK>, |
| 169 | <&cgu BASE_SPIFI_CLK>, <&cgu BASE_CPU_CLK>, |
| 170 | <&cgu BASE_PERIPH_CLK>, <&cgu BASE_USB0_CLK>, |
| 171 | <&cgu BASE_USB1_CLK>, <&cgu BASE_SPI_CLK>; |
| 172 | clock-names = "base_apb3_clk", "base_apb1_clk", |
| 173 | "base_spifi_clk", "base_cpu_clk", |
| 174 | "base_periph_clk", "base_usb0_clk", |
| 175 | "base_usb1_clk", "base_spi_clk"; |
| 176 | }; |
| 177 | |
| 178 | ccu2: clock-controller@40052000 { |
| 179 | compatible = "nxp,lpc1850-ccu"; |
| 180 | reg = <0x40052000 0x1000>; |
| 181 | #clock-cells = <1>; |
| 182 | clocks = <&cgu BASE_AUDIO_CLK>, <&cgu BASE_UART3_CLK>, |
| 183 | <&cgu BASE_UART2_CLK>, <&cgu BASE_UART1_CLK>, |
| 184 | <&cgu BASE_UART0_CLK>, <&cgu BASE_SSP1_CLK>, |
| 185 | <&cgu BASE_SSP0_CLK>, <&cgu BASE_SDIO_CLK>; |
| 186 | clock-names = "base_audio_clk", "base_uart3_clk", |
| 187 | "base_uart2_clk", "base_uart1_clk", |
| 188 | "base_uart0_clk", "base_ssp1_clk", |
| 189 | "base_ssp0_clk", "base_sdio_clk"; |
| 190 | }; |
| 191 | |
Joachim Eastwood | 0745c70 | 2015-09-27 22:28:38 +0200 | [diff] [blame] | 192 | rgu: reset-controller@40053000 { |
| 193 | compatible = "nxp,lpc1850-rgu"; |
| 194 | reg = <0x40053000 0x1000>; |
| 195 | clocks = <&cgu BASE_SAFE_CLK>, <&ccu1 CLK_CPU_BUS>; |
| 196 | clock-names = "delay", "reg"; |
| 197 | #reset-cells = <1>; |
| 198 | }; |
| 199 | |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 200 | uart0: serial@40081000 { |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 201 | compatible = "nxp,lpc1850-uart", "ns16550a"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 202 | reg = <0x40081000 0x1000>; |
| 203 | reg-shift = <2>; |
| 204 | interrupts = <24>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 205 | clocks = <&ccu2 CLK_APB0_UART0>, <&ccu1 CLK_CPU_UART0>; |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 206 | clock-names = "uartclk", "reg"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 207 | status = "disabled"; |
| 208 | }; |
| 209 | |
| 210 | uart1: serial@40082000 { |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 211 | compatible = "nxp,lpc1850-uart", "ns16550a"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 212 | reg = <0x40082000 0x1000>; |
| 213 | reg-shift = <2>; |
| 214 | interrupts = <25>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 215 | clocks = <&ccu2 CLK_APB0_UART1>, <&ccu1 CLK_CPU_UART1>; |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 216 | clock-names = "uartclk", "reg"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 217 | status = "disabled"; |
| 218 | }; |
| 219 | |
Joachim Eastwood | 5d2ea79 | 2015-04-01 14:41:06 +0200 | [diff] [blame] | 220 | ssp0: spi@40083000 { |
| 221 | compatible = "arm,pl022", "arm,primecell"; |
| 222 | reg = <0x40083000 0x1000>; |
| 223 | interrupts = <22>; |
| 224 | clocks = <&ccu2 CLK_APB0_SSP0>, <&ccu1 CLK_CPU_SSP0>; |
| 225 | clock-names = "sspclk", "apb_pclk"; |
| 226 | #address-cells = <1>; |
| 227 | #size-cells = <0>; |
| 228 | status = "disabled"; |
| 229 | }; |
| 230 | |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 231 | timer0: timer@40084000 { |
| 232 | compatible = "nxp,lpc3220-timer"; |
| 233 | reg = <0x40084000 0x1000>; |
| 234 | interrupts = <12>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 235 | clocks = <&ccu1 CLK_CPU_TIMER0>; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 236 | clock-names = "timerclk"; |
| 237 | }; |
| 238 | |
| 239 | timer1: timer@40085000 { |
| 240 | compatible = "nxp,lpc3220-timer"; |
| 241 | reg = <0x40085000 0x1000>; |
| 242 | interrupts = <13>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 243 | clocks = <&ccu1 CLK_CPU_TIMER1>; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 244 | clock-names = "timerclk"; |
| 245 | }; |
| 246 | |
Joachim Eastwood | d881f5e | 2015-04-02 05:40:13 +0200 | [diff] [blame] | 247 | pinctrl: pinctrl@40086000 { |
| 248 | compatible = "nxp,lpc1850-scu"; |
| 249 | reg = <0x40086000 0x1000>; |
| 250 | clocks = <&ccu1 CLK_CPU_SCU>; |
| 251 | }; |
| 252 | |
Joachim Eastwood | 7e6c837 | 2015-04-02 05:21:43 +0200 | [diff] [blame] | 253 | can1: can@400a4000 { |
| 254 | compatible = "bosch,c_can"; |
| 255 | reg = <0x400a4000 0x1000>; |
| 256 | interrupts = <43>; |
| 257 | clocks = <&ccu1 CLK_APB1_CAN1>; |
| 258 | status = "disabled"; |
| 259 | }; |
| 260 | |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 261 | uart2: serial@400c1000 { |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 262 | compatible = "nxp,lpc1850-uart", "ns16550a"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 263 | reg = <0x400c1000 0x1000>; |
| 264 | reg-shift = <2>; |
| 265 | interrupts = <26>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 266 | clocks = <&ccu2 CLK_APB2_UART2>, <&ccu1 CLK_CPU_UART2>; |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 267 | clock-names = "uartclk", "reg"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 268 | status = "disabled"; |
| 269 | }; |
| 270 | |
| 271 | uart3: serial@400c2000 { |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 272 | compatible = "nxp,lpc1850-uart", "ns16550a"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 273 | reg = <0x400c2000 0x1000>; |
| 274 | reg-shift = <2>; |
| 275 | interrupts = <27>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 276 | clocks = <&ccu2 CLK_APB2_UART3>, <&ccu1 CLK_CPU_UART3>; |
Joachim Eastwood | f2b1c50 | 2015-05-15 19:43:45 +0200 | [diff] [blame] | 277 | clock-names = "uartclk", "reg"; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 278 | status = "disabled"; |
| 279 | }; |
| 280 | |
| 281 | timer2: timer@400c3000 { |
| 282 | compatible = "nxp,lpc3220-timer"; |
| 283 | reg = <0x400c3000 0x1000>; |
| 284 | interrupts = <14>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 285 | clocks = <&ccu1 CLK_CPU_TIMER2>; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 286 | clock-names = "timerclk"; |
| 287 | }; |
| 288 | |
| 289 | timer3: timer@400c4000 { |
| 290 | compatible = "nxp,lpc3220-timer"; |
| 291 | reg = <0x400c4000 0x1000>; |
| 292 | interrupts = <15>; |
Joachim Eastwood | ba2db53 | 2015-04-01 14:42:00 +0200 | [diff] [blame] | 293 | clocks = <&ccu1 CLK_CPU_TIMER3>; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 294 | clock-names = "timerclk"; |
| 295 | }; |
Joachim Eastwood | 7836dce | 2015-04-27 23:59:30 +0200 | [diff] [blame] | 296 | |
Joachim Eastwood | 5d2ea79 | 2015-04-01 14:41:06 +0200 | [diff] [blame] | 297 | ssp1: spi@400c5000 { |
| 298 | compatible = "arm,pl022", "arm,primecell"; |
| 299 | reg = <0x400c5000 0x1000>; |
| 300 | interrupts = <23>; |
| 301 | clocks = <&ccu2 CLK_APB2_SSP1>, <&ccu1 CLK_CPU_SSP1>; |
| 302 | clock-names = "sspclk", "apb_pclk"; |
| 303 | #address-cells = <1>; |
| 304 | #size-cells = <0>; |
| 305 | status = "disabled"; |
| 306 | }; |
| 307 | |
Joachim Eastwood | 7e6c837 | 2015-04-02 05:21:43 +0200 | [diff] [blame] | 308 | can0: can@400e2000 { |
| 309 | compatible = "bosch,c_can"; |
| 310 | reg = <0x400e2000 0x1000>; |
| 311 | interrupts = <51>; |
| 312 | clocks = <&ccu1 CLK_APB3_CAN0>; |
| 313 | status = "disabled"; |
| 314 | }; |
| 315 | |
Joachim Eastwood | 7836dce | 2015-04-27 23:59:30 +0200 | [diff] [blame] | 316 | gpio: gpio@400f4000 { |
| 317 | compatible = "nxp,lpc1850-gpio"; |
| 318 | reg = <0x400f4000 0x4000>; |
| 319 | clocks = <&ccu1 CLK_CPU_GPIO>; |
| 320 | gpio-controller; |
| 321 | #gpio-cells = <2>; |
| 322 | gpio-ranges = <&pinctrl LPC_GPIO(0,0) LPC_PIN(0,0) 2>, |
| 323 | <&pinctrl LPC_GPIO(0,4) LPC_PIN(1,0) 1>, |
| 324 | <&pinctrl LPC_GPIO(0,8) LPC_PIN(1,1) 4>, |
| 325 | <&pinctrl LPC_GPIO(1,8) LPC_PIN(1,5) 2>, |
| 326 | <&pinctrl LPC_GPIO(1,0) LPC_PIN(1,7) 8>, |
| 327 | <&pinctrl LPC_GPIO(0,2) LPC_PIN(1,15) 2>, |
| 328 | <&pinctrl LPC_GPIO(0,12) LPC_PIN(1,17) 2>, |
| 329 | <&pinctrl LPC_GPIO(0,15) LPC_PIN(1,20) 1>, |
| 330 | <&pinctrl LPC_GPIO(5,0) LPC_PIN(2,0) 7>, |
| 331 | <&pinctrl LPC_GPIO(0,7) LPC_PIN(2,7) 1>, |
| 332 | <&pinctrl LPC_GPIO(5,7) LPC_PIN(2,8) 1>, |
| 333 | <&pinctrl LPC_GPIO(1,10) LPC_PIN(2,9) 1>, |
| 334 | <&pinctrl LPC_GPIO(0,14) LPC_PIN(2,10) 1>, |
| 335 | <&pinctrl LPC_GPIO(1,11) LPC_PIN(2,11) 3>, |
| 336 | <&pinctrl LPC_GPIO(5,8) LPC_PIN(3,1) 2>, |
| 337 | <&pinctrl LPC_GPIO(1,14) LPC_PIN(3,4) 2>, |
| 338 | <&pinctrl LPC_GPIO(0,6) LPC_PIN(3,6) 1>, |
| 339 | <&pinctrl LPC_GPIO(5,10) LPC_PIN(3,7) 2>, |
| 340 | <&pinctrl LPC_GPIO(2,0) LPC_PIN(4,0) 7>, |
| 341 | <&pinctrl LPC_GPIO(5,12) LPC_PIN(4,8) 3>, |
| 342 | <&pinctrl LPC_GPIO(2,9) LPC_PIN(5,0) 7>, |
| 343 | <&pinctrl LPC_GPIO(2,7) LPC_PIN(5,7) 1>, |
| 344 | <&pinctrl LPC_GPIO(3,0) LPC_PIN(6,1) 5>, |
| 345 | <&pinctrl LPC_GPIO(0,5) LPC_PIN(6,6) 1>, |
| 346 | <&pinctrl LPC_GPIO(5,15) LPC_PIN(6,7) 2>, |
| 347 | <&pinctrl LPC_GPIO(3,5) LPC_PIN(6,9) 3>, |
| 348 | <&pinctrl LPC_GPIO(2,8) LPC_PIN(6,12) 1>, |
| 349 | <&pinctrl LPC_GPIO(3,8) LPC_PIN(7,0) 8>, |
| 350 | <&pinctrl LPC_GPIO(4,0) LPC_PIN(8,0) 8>, |
| 351 | <&pinctrl LPC_GPIO(4,12) LPC_PIN(9,0) 4>, |
| 352 | <&pinctrl LPC_GPIO(5,17) LPC_PIN(9,4) 2>, |
| 353 | <&pinctrl LPC_GPIO(4,11) LPC_PIN(9,6) 1>, |
| 354 | <&pinctrl LPC_GPIO(4,8) LPC_PIN(a,1) 3>, |
| 355 | <&pinctrl LPC_GPIO(5,19) LPC_PIN(a,4) 1>, |
| 356 | <&pinctrl LPC_GPIO(5,20) LPC_PIN(b,0) 7>, |
| 357 | <&pinctrl LPC_GPIO(6,0) LPC_PIN(c,1) 14>, |
| 358 | <&pinctrl LPC_GPIO(6,14) LPC_PIN(d,0) 17>, |
| 359 | <&pinctrl LPC_GPIO(7,0) LPC_PIN(e,0) 16>, |
| 360 | <&pinctrl LPC_GPIO(7,16) LPC_PIN(f,1) 3>, |
| 361 | <&pinctrl LPC_GPIO(7,19) LPC_PIN(f,5) 7>; |
| 362 | }; |
Joachim Eastwood | 804a5dd | 2015-05-12 00:00:50 +0200 | [diff] [blame] | 363 | }; |
| 364 | }; |