Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 Icenowy Zheng <icenowy@aosc.xyz> |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 3 | * Copyright (C) 2021 Tobias Schramm <t.schramm@manjaro.org> |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 4 | * |
| 5 | * This file is dual-licensed: you can use it either under the terms |
| 6 | * of the GPL or the X11 license, at your option. Note that this dual |
| 7 | * licensing only applies to this file, and not this project as a |
| 8 | * whole. |
| 9 | * |
| 10 | * a) This file is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of the |
| 13 | * License, or (at your option) any later version. |
| 14 | * |
| 15 | * This file is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * Or, alternatively, |
| 21 | * |
| 22 | * b) Permission is hereby granted, free of charge, to any person |
| 23 | * obtaining a copy of this software and associated documentation |
| 24 | * files (the "Software"), to deal in the Software without |
| 25 | * restriction, including without limitation the rights to use, |
| 26 | * copy, modify, merge, publish, distribute, sublicense, and/or |
| 27 | * sell copies of the Software, and to permit persons to whom the |
| 28 | * Software is furnished to do so, subject to the following |
| 29 | * conditions: |
| 30 | * |
| 31 | * The above copyright notice and this permission notice shall be |
| 32 | * included in all copies or substantial portions of the Software. |
| 33 | * |
| 34 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 35 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| 36 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 37 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 38 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 39 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 40 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 41 | * OTHER DEALINGS IN THE SOFTWARE. |
| 42 | */ |
| 43 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 44 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 45 | #include <dt-bindings/clock/sun8i-v3s-ccu.h> |
| 46 | #include <dt-bindings/reset/sun8i-v3s-ccu.h> |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 47 | #include <dt-bindings/clock/sun8i-de2.h> |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 48 | |
| 49 | / { |
| 50 | #address-cells = <1>; |
| 51 | #size-cells = <1>; |
| 52 | interrupt-parent = <&gic>; |
| 53 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 54 | chosen { |
| 55 | #address-cells = <1>; |
| 56 | #size-cells = <1>; |
| 57 | ranges; |
| 58 | |
| 59 | framebuffer-lcd { |
| 60 | compatible = "allwinner,simple-framebuffer", |
| 61 | "simple-framebuffer"; |
| 62 | allwinner,pipeline = "mixer0-lcd0"; |
| 63 | clocks = <&display_clocks CLK_MIXER0>, |
| 64 | <&ccu CLK_TCON0>; |
| 65 | status = "disabled"; |
| 66 | }; |
| 67 | }; |
| 68 | |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 69 | cpus { |
| 70 | #address-cells = <1>; |
| 71 | #size-cells = <0>; |
| 72 | |
| 73 | cpu@0 { |
| 74 | compatible = "arm,cortex-a7"; |
| 75 | device_type = "cpu"; |
| 76 | reg = <0>; |
| 77 | clocks = <&ccu CLK_CPU>; |
| 78 | }; |
| 79 | }; |
| 80 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 81 | de: display-engine { |
| 82 | compatible = "allwinner,sun8i-v3s-display-engine"; |
| 83 | allwinner,pipelines = <&mixer0>; |
| 84 | status = "disabled"; |
| 85 | }; |
| 86 | |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 87 | timer { |
| 88 | compatible = "arm,armv7-timer"; |
| 89 | interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
| 90 | <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
| 91 | <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
| 92 | <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; |
| 93 | }; |
| 94 | |
| 95 | clocks { |
| 96 | #address-cells = <1>; |
| 97 | #size-cells = <1>; |
| 98 | ranges; |
| 99 | |
| 100 | osc24M: osc24M_clk { |
| 101 | #clock-cells = <0>; |
| 102 | compatible = "fixed-clock"; |
| 103 | clock-frequency = <24000000>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 104 | clock-accuracy = <50000>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 105 | clock-output-names = "osc24M"; |
| 106 | }; |
| 107 | |
| 108 | osc32k: osc32k_clk { |
| 109 | #clock-cells = <0>; |
| 110 | compatible = "fixed-clock"; |
| 111 | clock-frequency = <32768>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 112 | clock-accuracy = <50000>; |
| 113 | clock-output-names = "ext-osc32k"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 114 | }; |
| 115 | }; |
| 116 | |
| 117 | soc { |
| 118 | compatible = "simple-bus"; |
| 119 | #address-cells = <1>; |
| 120 | #size-cells = <1>; |
| 121 | ranges; |
| 122 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 123 | display_clocks: clock@1000000 { |
| 124 | compatible = "allwinner,sun8i-v3s-de2-clk"; |
| 125 | reg = <0x01000000 0x10000>; |
| 126 | clocks = <&ccu CLK_BUS_DE>, |
| 127 | <&ccu CLK_DE>; |
| 128 | clock-names = "bus", |
| 129 | "mod"; |
| 130 | resets = <&ccu RST_BUS_DE>; |
| 131 | #clock-cells = <1>; |
| 132 | #reset-cells = <1>; |
| 133 | }; |
| 134 | |
| 135 | mixer0: mixer@1100000 { |
| 136 | compatible = "allwinner,sun8i-v3s-de2-mixer"; |
| 137 | reg = <0x01100000 0x100000>; |
| 138 | clocks = <&display_clocks 0>, |
| 139 | <&display_clocks 6>; |
| 140 | clock-names = "bus", |
| 141 | "mod"; |
| 142 | resets = <&display_clocks 0>; |
| 143 | |
| 144 | ports { |
| 145 | #address-cells = <1>; |
| 146 | #size-cells = <0>; |
| 147 | |
| 148 | mixer0_out: port@1 { |
| 149 | reg = <1>; |
| 150 | |
| 151 | mixer0_out_tcon0: endpoint { |
| 152 | remote-endpoint = <&tcon0_in_mixer0>; |
| 153 | }; |
| 154 | }; |
| 155 | }; |
| 156 | }; |
| 157 | |
| 158 | syscon: system-control@1c00000 { |
| 159 | compatible = "allwinner,sun8i-v3s-system-control", |
| 160 | "allwinner,sun8i-h3-system-control"; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 161 | reg = <0x01c00000 0xd0>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 162 | #address-cells = <1>; |
| 163 | #size-cells = <1>; |
| 164 | ranges; |
| 165 | }; |
| 166 | |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 167 | nmi_intc: interrupt-controller@1c000d0 { |
| 168 | compatible = "allwinner,sun8i-v3s-nmi", |
| 169 | "allwinner,sun9i-a80-nmi"; |
| 170 | interrupt-controller; |
| 171 | #interrupt-cells = <2>; |
| 172 | reg = <0x01c000d0 0x0c>; |
| 173 | interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; |
| 174 | }; |
| 175 | |
| 176 | dma: dma-controller@1c02000 { |
| 177 | compatible = "allwinner,sun8i-v3s-dma"; |
| 178 | reg = <0x01c02000 0x1000>; |
| 179 | interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>; |
| 180 | clocks = <&ccu CLK_BUS_DMA>; |
| 181 | resets = <&ccu RST_BUS_DMA>; |
| 182 | #dma-cells = <1>; |
| 183 | }; |
| 184 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 185 | tcon0: lcd-controller@1c0c000 { |
| 186 | compatible = "allwinner,sun8i-v3s-tcon"; |
| 187 | reg = <0x01c0c000 0x1000>; |
| 188 | interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; |
| 189 | clocks = <&ccu CLK_BUS_TCON0>, |
| 190 | <&ccu CLK_TCON0>; |
| 191 | clock-names = "ahb", |
| 192 | "tcon-ch0"; |
| 193 | clock-output-names = "tcon-pixel-clock"; |
| 194 | #clock-cells = <0>; |
| 195 | resets = <&ccu RST_BUS_TCON0>; |
| 196 | reset-names = "lcd"; |
| 197 | status = "disabled"; |
| 198 | |
| 199 | ports { |
| 200 | #address-cells = <1>; |
| 201 | #size-cells = <0>; |
| 202 | |
| 203 | tcon0_in: port@0 { |
| 204 | reg = <0>; |
| 205 | |
| 206 | tcon0_in_mixer0: endpoint { |
| 207 | remote-endpoint = <&mixer0_out_tcon0>; |
| 208 | }; |
| 209 | }; |
| 210 | |
| 211 | tcon0_out: port@1 { |
| 212 | #address-cells = <1>; |
| 213 | #size-cells = <0>; |
| 214 | reg = <1>; |
| 215 | }; |
| 216 | }; |
| 217 | }; |
| 218 | |
| 219 | |
| 220 | mmc0: mmc@1c0f000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 221 | compatible = "allwinner,sun7i-a20-mmc"; |
| 222 | reg = <0x01c0f000 0x1000>; |
| 223 | clocks = <&ccu CLK_BUS_MMC0>, |
| 224 | <&ccu CLK_MMC0>, |
| 225 | <&ccu CLK_MMC0_OUTPUT>, |
| 226 | <&ccu CLK_MMC0_SAMPLE>; |
| 227 | clock-names = "ahb", |
| 228 | "mmc", |
| 229 | "output", |
| 230 | "sample"; |
| 231 | resets = <&ccu RST_BUS_MMC0>; |
| 232 | reset-names = "ahb"; |
| 233 | interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 234 | pinctrl-names = "default"; |
| 235 | pinctrl-0 = <&mmc0_pins>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 236 | status = "disabled"; |
| 237 | #address-cells = <1>; |
| 238 | #size-cells = <0>; |
| 239 | }; |
| 240 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 241 | mmc1: mmc@1c10000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 242 | compatible = "allwinner,sun7i-a20-mmc"; |
| 243 | reg = <0x01c10000 0x1000>; |
| 244 | clocks = <&ccu CLK_BUS_MMC1>, |
| 245 | <&ccu CLK_MMC1>, |
| 246 | <&ccu CLK_MMC1_OUTPUT>, |
| 247 | <&ccu CLK_MMC1_SAMPLE>; |
| 248 | clock-names = "ahb", |
| 249 | "mmc", |
| 250 | "output", |
| 251 | "sample"; |
| 252 | resets = <&ccu RST_BUS_MMC1>; |
| 253 | reset-names = "ahb"; |
| 254 | interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 255 | pinctrl-names = "default"; |
| 256 | pinctrl-0 = <&mmc1_pins>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 257 | status = "disabled"; |
| 258 | #address-cells = <1>; |
| 259 | #size-cells = <0>; |
| 260 | }; |
| 261 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 262 | mmc2: mmc@1c11000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 263 | compatible = "allwinner,sun7i-a20-mmc"; |
| 264 | reg = <0x01c11000 0x1000>; |
| 265 | clocks = <&ccu CLK_BUS_MMC2>, |
| 266 | <&ccu CLK_MMC2>, |
| 267 | <&ccu CLK_MMC2_OUTPUT>, |
| 268 | <&ccu CLK_MMC2_SAMPLE>; |
| 269 | clock-names = "ahb", |
| 270 | "mmc", |
| 271 | "output", |
| 272 | "sample"; |
| 273 | resets = <&ccu RST_BUS_MMC2>; |
| 274 | reset-names = "ahb"; |
| 275 | interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>; |
| 276 | status = "disabled"; |
| 277 | #address-cells = <1>; |
| 278 | #size-cells = <0>; |
| 279 | }; |
| 280 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 281 | crypto@1c15000 { |
| 282 | compatible = "allwinner,sun8i-v3s-crypto", |
| 283 | "allwinner,sun8i-a33-crypto"; |
| 284 | reg = <0x01c15000 0x1000>; |
| 285 | interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>; |
| 286 | clocks = <&ccu CLK_BUS_CE>, <&ccu CLK_CE>; |
| 287 | clock-names = "ahb", "mod"; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 288 | dmas = <&dma 16>, <&dma 16>; |
| 289 | dma-names = "rx", "tx"; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 290 | resets = <&ccu RST_BUS_CE>; |
| 291 | reset-names = "ahb"; |
| 292 | }; |
| 293 | |
| 294 | usb_otg: usb@1c19000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 295 | compatible = "allwinner,sun8i-h3-musb"; |
| 296 | reg = <0x01c19000 0x0400>; |
| 297 | clocks = <&ccu CLK_BUS_OTG>; |
| 298 | resets = <&ccu RST_BUS_OTG>; |
| 299 | interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; |
| 300 | interrupt-names = "mc"; |
| 301 | phys = <&usbphy 0>; |
| 302 | phy-names = "usb"; |
| 303 | extcon = <&usbphy 0>; |
| 304 | status = "disabled"; |
| 305 | }; |
| 306 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 307 | usbphy: phy@1c19400 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 308 | compatible = "allwinner,sun8i-v3s-usb-phy"; |
| 309 | reg = <0x01c19400 0x2c>, |
| 310 | <0x01c1a800 0x4>; |
| 311 | reg-names = "phy_ctrl", |
| 312 | "pmu0"; |
| 313 | clocks = <&ccu CLK_USB_PHY0>; |
| 314 | clock-names = "usb0_phy"; |
| 315 | resets = <&ccu RST_USB_PHY0>; |
| 316 | reset-names = "usb0_reset"; |
| 317 | status = "disabled"; |
| 318 | #phy-cells = <1>; |
| 319 | }; |
| 320 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 321 | ccu: clock@1c20000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 322 | compatible = "allwinner,sun8i-v3s-ccu"; |
| 323 | reg = <0x01c20000 0x400>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 324 | clocks = <&osc24M>, <&rtc 0>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 325 | clock-names = "hosc", "losc"; |
| 326 | #clock-cells = <1>; |
| 327 | #reset-cells = <1>; |
| 328 | }; |
| 329 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 330 | rtc: rtc@1c20400 { |
| 331 | #clock-cells = <1>; |
| 332 | compatible = "allwinner,sun8i-v3-rtc"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 333 | reg = <0x01c20400 0x54>; |
| 334 | interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>, |
| 335 | <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 336 | clocks = <&osc32k>; |
| 337 | clock-output-names = "osc32k", "osc32k-out"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 338 | }; |
| 339 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 340 | pio: pinctrl@1c20800 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 341 | compatible = "allwinner,sun8i-v3s-pinctrl"; |
| 342 | reg = <0x01c20800 0x400>; |
| 343 | interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>, |
| 344 | <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 345 | clocks = <&ccu CLK_BUS_PIO>, <&osc24M>, <&rtc 0>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 346 | clock-names = "apb", "hosc", "losc"; |
| 347 | gpio-controller; |
| 348 | #gpio-cells = <3>; |
| 349 | interrupt-controller; |
| 350 | #interrupt-cells = <3>; |
| 351 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 352 | /omit-if-no-ref/ |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 353 | csi0_mclk_pin: csi0-mclk-pin { |
| 354 | pins = "PE20"; |
| 355 | function = "csi_mipi"; |
| 356 | }; |
| 357 | |
| 358 | /omit-if-no-ref/ |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 359 | csi1_8bit_pins: csi1-8bit-pins { |
| 360 | pins = "PE0", "PE2", "PE3", "PE8", "PE9", |
| 361 | "PE10", "PE11", "PE12", "PE13", "PE14", |
| 362 | "PE15"; |
| 363 | function = "csi"; |
| 364 | }; |
| 365 | |
| 366 | /omit-if-no-ref/ |
| 367 | csi1_mclk_pin: csi1-mclk-pin { |
| 368 | pins = "PE1"; |
| 369 | function = "csi"; |
| 370 | }; |
| 371 | |
| 372 | i2c0_pins: i2c0-pins { |
| 373 | pins = "PB6", "PB7"; |
| 374 | function = "i2c0"; |
| 375 | }; |
| 376 | |
| 377 | /omit-if-no-ref/ |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 378 | i2c1_pb_pins: i2c1-pb-pins { |
| 379 | pins = "PB8", "PB9"; |
| 380 | function = "i2c1"; |
| 381 | }; |
| 382 | |
| 383 | /omit-if-no-ref/ |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 384 | i2c1_pe_pins: i2c1-pe-pins { |
| 385 | pins = "PE21", "PE22"; |
| 386 | function = "i2c1"; |
| 387 | }; |
| 388 | |
| 389 | uart0_pb_pins: uart0-pb-pins { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 390 | pins = "PB8", "PB9"; |
| 391 | function = "uart0"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 392 | }; |
| 393 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 394 | uart2_pins: uart2-pins { |
| 395 | pins = "PB0", "PB1"; |
| 396 | function = "uart2"; |
| 397 | }; |
| 398 | |
| 399 | mmc0_pins: mmc0-pins { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 400 | pins = "PF0", "PF1", "PF2", "PF3", |
| 401 | "PF4", "PF5"; |
| 402 | function = "mmc0"; |
| 403 | drive-strength = <30>; |
| 404 | bias-pull-up; |
| 405 | }; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 406 | |
| 407 | mmc1_pins: mmc1-pins { |
| 408 | pins = "PG0", "PG1", "PG2", "PG3", |
| 409 | "PG4", "PG5"; |
| 410 | function = "mmc1"; |
| 411 | drive-strength = <30>; |
| 412 | bias-pull-up; |
| 413 | }; |
| 414 | |
| 415 | spi0_pins: spi0-pins { |
| 416 | pins = "PC0", "PC1", "PC2", "PC3"; |
| 417 | function = "spi0"; |
| 418 | }; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 419 | }; |
| 420 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 421 | timer@1c20c00 { |
| 422 | compatible = "allwinner,sun8i-v3s-timer"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 423 | reg = <0x01c20c00 0xa0>; |
| 424 | interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>, |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 425 | <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>, |
| 426 | <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 427 | clocks = <&osc24M>; |
| 428 | }; |
| 429 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 430 | wdt0: watchdog@1c20ca0 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 431 | compatible = "allwinner,sun6i-a31-wdt"; |
| 432 | reg = <0x01c20ca0 0x20>; |
| 433 | interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 434 | clocks = <&osc24M>; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 435 | }; |
| 436 | |
| 437 | pwm: pwm@1c21400 { |
| 438 | compatible = "allwinner,sun8i-v3s-pwm", |
| 439 | "allwinner,sun7i-a20-pwm"; |
| 440 | reg = <0x01c21400 0xc>; |
| 441 | clocks = <&osc24M>; |
| 442 | #pwm-cells = <3>; |
| 443 | status = "disabled"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 444 | }; |
| 445 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 446 | lradc: lradc@1c22800 { |
| 447 | compatible = "allwinner,sun4i-a10-lradc-keys"; |
| 448 | reg = <0x01c22800 0x400>; |
| 449 | interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>; |
| 450 | status = "disabled"; |
| 451 | }; |
| 452 | |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 453 | codec: codec@1c22c00 { |
| 454 | #sound-dai-cells = <0>; |
| 455 | compatible = "allwinner,sun8i-v3s-codec"; |
| 456 | reg = <0x01c22c00 0x400>; |
| 457 | interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; |
| 458 | clocks = <&ccu CLK_BUS_CODEC>, <&ccu CLK_AC_DIG>; |
| 459 | clock-names = "apb", "codec"; |
| 460 | resets = <&ccu RST_BUS_CODEC>; |
| 461 | dmas = <&dma 15>, <&dma 15>; |
| 462 | dma-names = "rx", "tx"; |
| 463 | allwinner,codec-analog-controls = <&codec_analog>; |
| 464 | status = "disabled"; |
| 465 | }; |
| 466 | |
| 467 | codec_analog: codec-analog@1c23000 { |
| 468 | compatible = "allwinner,sun8i-v3s-codec-analog"; |
| 469 | reg = <0x01c23000 0x4>; |
| 470 | }; |
| 471 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 472 | uart0: serial@1c28000 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 473 | compatible = "snps,dw-apb-uart"; |
| 474 | reg = <0x01c28000 0x400>; |
| 475 | interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>; |
| 476 | reg-shift = <2>; |
| 477 | reg-io-width = <4>; |
| 478 | clocks = <&ccu CLK_BUS_UART0>; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 479 | dmas = <&dma 6>, <&dma 6>; |
| 480 | dma-names = "rx", "tx"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 481 | resets = <&ccu RST_BUS_UART0>; |
| 482 | status = "disabled"; |
| 483 | }; |
| 484 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 485 | uart1: serial@1c28400 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 486 | compatible = "snps,dw-apb-uart"; |
| 487 | reg = <0x01c28400 0x400>; |
| 488 | interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>; |
| 489 | reg-shift = <2>; |
| 490 | reg-io-width = <4>; |
| 491 | clocks = <&ccu CLK_BUS_UART1>; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 492 | dmas = <&dma 7>, <&dma 7>; |
| 493 | dma-names = "rx", "tx"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 494 | resets = <&ccu RST_BUS_UART1>; |
| 495 | status = "disabled"; |
| 496 | }; |
| 497 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 498 | uart2: serial@1c28800 { |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 499 | compatible = "snps,dw-apb-uart"; |
| 500 | reg = <0x01c28800 0x400>; |
| 501 | interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; |
| 502 | reg-shift = <2>; |
| 503 | reg-io-width = <4>; |
| 504 | clocks = <&ccu CLK_BUS_UART2>; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 505 | dmas = <&dma 8>, <&dma 8>; |
| 506 | dma-names = "rx", "tx"; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 507 | resets = <&ccu RST_BUS_UART2>; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 508 | pinctrl-0 = <&uart2_pins>; |
| 509 | pinctrl-names = "default"; |
| 510 | status = "disabled"; |
| 511 | }; |
| 512 | |
| 513 | i2c0: i2c@1c2ac00 { |
| 514 | compatible = "allwinner,sun6i-a31-i2c"; |
| 515 | reg = <0x01c2ac00 0x400>; |
| 516 | interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; |
| 517 | clocks = <&ccu CLK_BUS_I2C0>; |
| 518 | resets = <&ccu RST_BUS_I2C0>; |
| 519 | pinctrl-names = "default"; |
| 520 | pinctrl-0 = <&i2c0_pins>; |
| 521 | status = "disabled"; |
| 522 | #address-cells = <1>; |
| 523 | #size-cells = <0>; |
| 524 | }; |
| 525 | |
| 526 | i2c1: i2c@1c2b000 { |
| 527 | compatible = "allwinner,sun6i-a31-i2c"; |
| 528 | reg = <0x01c2b000 0x400>; |
| 529 | interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; |
| 530 | clocks = <&ccu CLK_BUS_I2C1>; |
| 531 | resets = <&ccu RST_BUS_I2C1>; |
| 532 | status = "disabled"; |
| 533 | #address-cells = <1>; |
| 534 | #size-cells = <0>; |
| 535 | }; |
| 536 | |
| 537 | emac: ethernet@1c30000 { |
| 538 | compatible = "allwinner,sun8i-v3s-emac"; |
| 539 | syscon = <&syscon>; |
| 540 | reg = <0x01c30000 0x10000>; |
| 541 | interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; |
| 542 | interrupt-names = "macirq"; |
| 543 | resets = <&ccu RST_BUS_EMAC>; |
| 544 | reset-names = "stmmaceth"; |
| 545 | clocks = <&ccu CLK_BUS_EMAC>; |
| 546 | clock-names = "stmmaceth"; |
| 547 | phy-handle = <&int_mii_phy>; |
| 548 | phy-mode = "mii"; |
| 549 | status = "disabled"; |
| 550 | |
| 551 | mdio: mdio { |
| 552 | #address-cells = <1>; |
| 553 | #size-cells = <0>; |
| 554 | compatible = "snps,dwmac-mdio"; |
| 555 | }; |
| 556 | |
| 557 | mdio_mux: mdio-mux { |
| 558 | compatible = "allwinner,sun8i-h3-mdio-mux"; |
| 559 | #address-cells = <1>; |
| 560 | #size-cells = <0>; |
| 561 | |
| 562 | mdio-parent-bus = <&mdio>; |
| 563 | /* Only one MDIO is usable at the time */ |
| 564 | internal_mdio: mdio@1 { |
| 565 | compatible = "allwinner,sun8i-h3-mdio-internal"; |
| 566 | reg = <1>; |
| 567 | #address-cells = <1>; |
| 568 | #size-cells = <0>; |
| 569 | |
| 570 | int_mii_phy: ethernet-phy@1 { |
| 571 | compatible = "ethernet-phy-ieee802.3-c22"; |
| 572 | reg = <1>; |
| 573 | clocks = <&ccu CLK_BUS_EPHY>; |
| 574 | resets = <&ccu RST_BUS_EPHY>; |
| 575 | }; |
| 576 | }; |
| 577 | }; |
| 578 | }; |
| 579 | |
| 580 | spi0: spi@1c68000 { |
| 581 | compatible = "allwinner,sun8i-h3-spi"; |
| 582 | reg = <0x01c68000 0x1000>; |
| 583 | interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; |
| 584 | clocks = <&ccu CLK_BUS_SPI0>, <&ccu CLK_SPI0>; |
| 585 | clock-names = "ahb", "mod"; |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 586 | dmas = <&dma 23>, <&dma 23>; |
| 587 | dma-names = "rx", "tx"; |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 588 | pinctrl-names = "default"; |
| 589 | pinctrl-0 = <&spi0_pins>; |
| 590 | resets = <&ccu RST_BUS_SPI0>; |
| 591 | status = "disabled"; |
| 592 | #address-cells = <1>; |
| 593 | #size-cells = <0>; |
| 594 | }; |
| 595 | |
Samuel Holland | aec4a19 | 2022-04-27 15:31:28 -0500 | [diff] [blame] | 596 | gic: interrupt-controller@1c81000 { |
| 597 | compatible = "arm,gic-400"; |
| 598 | reg = <0x01c81000 0x1000>, |
| 599 | <0x01c82000 0x2000>, |
| 600 | <0x01c84000 0x2000>, |
| 601 | <0x01c86000 0x2000>; |
| 602 | interrupt-controller; |
| 603 | #interrupt-cells = <3>; |
| 604 | interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; |
| 605 | }; |
| 606 | |
Icenowy Zheng | f591092 | 2020-10-26 22:19:35 +0800 | [diff] [blame] | 607 | csi1: camera@1cb4000 { |
| 608 | compatible = "allwinner,sun8i-v3s-csi"; |
| 609 | reg = <0x01cb4000 0x3000>; |
| 610 | interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; |
| 611 | clocks = <&ccu CLK_BUS_CSI>, |
| 612 | <&ccu CLK_CSI1_SCLK>, |
| 613 | <&ccu CLK_DRAM_CSI>; |
| 614 | clock-names = "bus", "mod", "ram"; |
| 615 | resets = <&ccu RST_BUS_CSI>; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 616 | status = "disabled"; |
| 617 | }; |
Icenowy Zheng | ce375a8 | 2017-04-08 15:30:13 +0800 | [diff] [blame] | 618 | }; |
| 619 | }; |