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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | // SPDX-License-Identifier: GPL-2.0 or MIT /* * Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com> * Copyright (c) 2022, Linaro Limited. All rights reserved. * */ #include <dt-bindings/interrupt-controller/arm-gic.h> / { interrupt-parent = <&gic>; #address-cells = <1>; #size-cells = <1>; aliases { serial0 = &uart0; serial1 = &uart1; }; chosen { stdout-path = "serial0:115200n8"; }; cpus: cpus { #address-cells = <1>; #size-cells = <0>; cpu: cpu@0 { device_type = "cpu"; compatible = "arm,cortex-a35"; reg = <0>; next-level-cache = <&L2_0>; }; }; memory@88200000 { device_type = "memory"; reg = <0x88200000 0x77e00000>; }; nvmxip: nvmxip-qspi@08000000 { compatible = "nvmxip,qspi"; reg = <0x08000000 0x2000000>; lba_shift = <9>; lba = <65536>; }; gic: interrupt-controller@1c000000 { compatible = "arm,gic-400"; #interrupt-cells = <3>; #address-cells = <0>; interrupt-controller; reg = <0x1c010000 0x1000>, <0x1c02f000 0x2000>, <0x1c04f000 0x1000>, <0x1c06f000 0x2000>; interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>; }; L2_0: l2-cache0 { compatible = "cache"; cache-level = <2>; cache-size = <0x80000>; cache-line-size = <64>; cache-sets = <1024>; }; refclk100mhz: refclk100mhz { compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <100000000>; clock-output-names = "apb_pclk"; }; smbclk: refclk24mhzx2 { /* Reference 24MHz clock x 2 */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <48000000>; clock-output-names = "smclk"; }; timer { compatible = "arm,armv8-timer"; interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>, <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>; }; uartclk: uartclk { /* UART clock - 50MHz */ compatible = "fixed-clock"; #clock-cells = <0>; clock-frequency = <50000000>; clock-output-names = "uartclk"; }; psci { compatible = "arm,psci-1.0", "arm,psci-0.2"; method = "smc"; }; fwu-mdata { compatible = "u-boot,fwu-mdata-gpt"; fwu-mdata-store = <&nvmxip>; }; soc { compatible = "simple-bus"; #address-cells = <1>; #size-cells = <1>; interrupt-parent = <&gic>; ranges; timer@1a220000 { compatible = "arm,armv7-timer-mem"; reg = <0x1a220000 0x1000>; #address-cells = <1>; #size-cells = <1>; clock-frequency = <50000000>; ranges; frame@1a230000 { frame-number = <0>; interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; reg = <0x1a230000 0x1000>; }; }; uart0: serial@1a510000 { compatible = "arm,pl011", "arm,primecell"; reg = <0x1a510000 0x1000>; interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>; clocks = <&uartclk>, <&refclk100mhz>; clock-names = "uartclk", "apb_pclk"; }; uart1: serial@1a520000 { compatible = "arm,pl011", "arm,primecell"; reg = <0x1a520000 0x1000>; interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; clocks = <&uartclk>, <&refclk100mhz>; clock-names = "uartclk", "apb_pclk"; }; mhu_hse1: mailbox@1b820000 { compatible = "arm,mhuv2-tx", "arm,primecell"; reg = <0x1b820000 0x1000>; clocks = <&refclk100mhz>; clock-names = "apb_pclk"; interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>; #mbox-cells = <2>; arm,mhuv2-protocols = <0 0>; secure-status = "okay"; /* secure-world-only */ status = "disabled"; }; mhu_seh1: mailbox@1b830000 { compatible = "arm,mhuv2-rx", "arm,primecell"; reg = <0x1b830000 0x1000>; clocks = <&refclk100mhz>; clock-names = "apb_pclk"; interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; #mbox-cells = <2>; arm,mhuv2-protocols = <0 0>; secure-status = "okay"; /* secure-world-only */ status = "disabled"; }; }; }; |