Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Device Tree Source for J721E SoC Family |
| 4 | * |
Lokesh Vutla | 62eada1 | 2021-02-01 11:26:40 +0530 | [diff] [blame] | 5 | * Copyright (C) 2016-2019 Texas Instruments Incorporated - https://www.ti.com/ |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <dt-bindings/interrupt-controller/irq.h> |
| 9 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 10 | #include <dt-bindings/soc/ti,sci_pm_domain.h> |
| 11 | |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 12 | #include "k3-pinctrl.h" |
| 13 | |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 14 | / { |
| 15 | model = "Texas Instruments K3 J721E SoC"; |
| 16 | compatible = "ti,j721e"; |
| 17 | interrupt-parent = <&gic500>; |
| 18 | #address-cells = <2>; |
| 19 | #size-cells = <2>; |
| 20 | |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 21 | chosen { }; |
| 22 | |
| 23 | cpus { |
| 24 | #address-cells = <1>; |
| 25 | #size-cells = <0>; |
| 26 | cpu-map { |
| 27 | cluster0: cluster0 { |
| 28 | core0 { |
| 29 | cpu = <&cpu0>; |
| 30 | }; |
| 31 | |
| 32 | core1 { |
| 33 | cpu = <&cpu1>; |
| 34 | }; |
| 35 | }; |
| 36 | |
| 37 | }; |
| 38 | |
| 39 | cpu0: cpu@0 { |
| 40 | compatible = "arm,cortex-a72"; |
| 41 | reg = <0x000>; |
| 42 | device_type = "cpu"; |
| 43 | enable-method = "psci"; |
| 44 | i-cache-size = <0xC000>; |
| 45 | i-cache-line-size = <64>; |
| 46 | i-cache-sets = <256>; |
| 47 | d-cache-size = <0x8000>; |
| 48 | d-cache-line-size = <64>; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 49 | d-cache-sets = <256>; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 50 | next-level-cache = <&L2_0>; |
| 51 | }; |
| 52 | |
| 53 | cpu1: cpu@1 { |
| 54 | compatible = "arm,cortex-a72"; |
| 55 | reg = <0x001>; |
| 56 | device_type = "cpu"; |
| 57 | enable-method = "psci"; |
| 58 | i-cache-size = <0xC000>; |
| 59 | i-cache-line-size = <64>; |
| 60 | i-cache-sets = <256>; |
| 61 | d-cache-size = <0x8000>; |
| 62 | d-cache-line-size = <64>; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 63 | d-cache-sets = <256>; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 64 | next-level-cache = <&L2_0>; |
| 65 | }; |
| 66 | }; |
| 67 | |
| 68 | L2_0: l2-cache0 { |
| 69 | compatible = "cache"; |
| 70 | cache-level = <2>; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 71 | cache-unified; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 72 | cache-size = <0x100000>; |
| 73 | cache-line-size = <64>; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 74 | cache-sets = <1024>; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 75 | next-level-cache = <&msmc_l3>; |
| 76 | }; |
| 77 | |
| 78 | msmc_l3: l3-cache0 { |
| 79 | compatible = "cache"; |
| 80 | cache-level = <3>; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 81 | cache-unified; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | firmware { |
| 85 | optee { |
| 86 | compatible = "linaro,optee-tz"; |
| 87 | method = "smc"; |
| 88 | }; |
| 89 | |
| 90 | psci: psci { |
| 91 | compatible = "arm,psci-1.0"; |
| 92 | method = "smc"; |
| 93 | }; |
| 94 | }; |
| 95 | |
| 96 | a72_timer0: timer-cl0-cpu0 { |
| 97 | compatible = "arm,armv8-timer"; |
| 98 | interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>, /* cntpsirq */ |
| 99 | <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>, /* cntpnsirq */ |
| 100 | <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>, /* cntvirq */ |
| 101 | <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>; /* cnthpirq */ |
| 102 | }; |
| 103 | |
| 104 | pmu: pmu { |
Tom Rini | f827645 | 2021-09-10 17:37:43 -0400 | [diff] [blame] | 105 | compatible = "arm,cortex-a72-pmu"; |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 106 | /* Recommendation from GIC500 TRM Table A.3 */ |
| 107 | interrupts = <GIC_PPI 7 IRQ_TYPE_LEVEL_HIGH>; |
| 108 | }; |
| 109 | |
Suman Anna | f65e291 | 2020-07-24 17:51:40 -0500 | [diff] [blame] | 110 | cbass_main: bus@100000 { |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 111 | compatible = "simple-bus"; |
| 112 | #address-cells = <2>; |
| 113 | #size-cells = <2>; |
| 114 | ranges = <0x00 0x00100000 0x00 0x00100000 0x00 0x00020000>, /* ctrl mmr */ |
| 115 | <0x00 0x00600000 0x00 0x00600000 0x00 0x00031100>, /* GPIO */ |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 116 | <0x00 0x00700000 0x00 0x00700000 0x00 0x00001000>, /* ESM */ |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 117 | <0x00 0x00900000 0x00 0x00900000 0x00 0x00012000>, /* serdes */ |
Lokesh Vutla | 62eada1 | 2021-02-01 11:26:40 +0530 | [diff] [blame] | 118 | <0x00 0x00a40000 0x00 0x00a40000 0x00 0x00000800>, /* timesync router */ |
| 119 | <0x00 0x06000000 0x00 0x06000000 0x00 0x00400000>, /* USBSS0 */ |
| 120 | <0x00 0x06400000 0x00 0x06400000 0x00 0x00400000>, /* USBSS1 */ |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 121 | <0x00 0x01000000 0x00 0x01000000 0x00 0x0af02400>, /* Most peripherals */ |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 122 | <0x00 0x0c000000 0x00 0x0c000000 0x00 0x0d000000>, /* CPSW9G */ |
Lokesh Vutla | 62eada1 | 2021-02-01 11:26:40 +0530 | [diff] [blame] | 123 | <0x00 0x30000000 0x00 0x30000000 0x00 0x0c400000>, /* MAIN NAVSS */ |
| 124 | <0x00 0x0d000000 0x00 0x0d000000 0x00 0x01800000>, /* PCIe Core*/ |
| 125 | <0x00 0x0e000000 0x00 0x0e000000 0x00 0x01800000>, /* PCIe Core*/ |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 126 | <0x00 0x10000000 0x00 0x10000000 0x00 0x10000000>, /* PCIe DAT */ |
| 127 | <0x00 0x64800000 0x00 0x64800000 0x00 0x00800000>, /* C71 */ |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 128 | <0x00 0x6f000000 0x00 0x6f000000 0x00 0x00310000>, /* A72 PERIPHBASE */ |
Lokesh Vutla | 62eada1 | 2021-02-01 11:26:40 +0530 | [diff] [blame] | 129 | <0x44 0x00000000 0x44 0x00000000 0x00 0x08000000>, /* PCIe2 DAT */ |
| 130 | <0x44 0x10000000 0x44 0x10000000 0x00 0x08000000>, /* PCIe3 DAT */ |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 131 | <0x4d 0x80800000 0x4d 0x80800000 0x00 0x00800000>, /* C66_0 */ |
| 132 | <0x4d 0x81800000 0x4d 0x81800000 0x00 0x00800000>, /* C66_1 */ |
| 133 | <0x4e 0x20000000 0x4e 0x20000000 0x00 0x00080000>, /* GPU */ |
Lokesh Vutla | 62eada1 | 2021-02-01 11:26:40 +0530 | [diff] [blame] | 134 | <0x00 0x70000000 0x00 0x70000000 0x00 0x00800000>, /* MSMC RAM */ |
| 135 | |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 136 | /* MCUSS_WKUP Range */ |
| 137 | <0x00 0x28380000 0x00 0x28380000 0x00 0x03880000>, |
| 138 | <0x00 0x40200000 0x00 0x40200000 0x00 0x00998400>, |
| 139 | <0x00 0x40f00000 0x00 0x40f00000 0x00 0x00020000>, |
| 140 | <0x00 0x41000000 0x00 0x41000000 0x00 0x00020000>, |
| 141 | <0x00 0x41400000 0x00 0x41400000 0x00 0x00020000>, |
| 142 | <0x00 0x41c00000 0x00 0x41c00000 0x00 0x00100000>, |
| 143 | <0x00 0x42040000 0x00 0x42040000 0x00 0x03ac2400>, |
| 144 | <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, |
| 145 | <0x00 0x46000000 0x00 0x46000000 0x00 0x00200000>, |
| 146 | <0x00 0x47000000 0x00 0x47000000 0x00 0x00068400>, |
| 147 | <0x00 0x50000000 0x00 0x50000000 0x00 0x10000000>, |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 148 | <0x05 0x00000000 0x05 0x00000000 0x01 0x00000000>, |
| 149 | <0x07 0x00000000 0x07 0x00000000 0x01 0x00000000>; |
| 150 | |
Suman Anna | f65e291 | 2020-07-24 17:51:40 -0500 | [diff] [blame] | 151 | cbass_mcu_wakeup: bus@28380000 { |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 152 | compatible = "simple-bus"; |
| 153 | #address-cells = <2>; |
| 154 | #size-cells = <2>; |
| 155 | ranges = <0x00 0x28380000 0x00 0x28380000 0x00 0x03880000>, /* MCU NAVSS*/ |
| 156 | <0x00 0x40200000 0x00 0x40200000 0x00 0x00998400>, /* First peripheral window */ |
| 157 | <0x00 0x40f00000 0x00 0x40f00000 0x00 0x00020000>, /* CTRL_MMR0 */ |
| 158 | <0x00 0x41000000 0x00 0x41000000 0x00 0x00020000>, /* MCU R5F Core0 */ |
| 159 | <0x00 0x41400000 0x00 0x41400000 0x00 0x00020000>, /* MCU R5F Core1 */ |
| 160 | <0x00 0x41c00000 0x00 0x41c00000 0x00 0x00100000>, /* MCU SRAM */ |
| 161 | <0x00 0x42040000 0x00 0x42040000 0x00 0x03ac2400>, /* WKUP peripheral window */ |
| 162 | <0x00 0x45100000 0x00 0x45100000 0x00 0x00c24000>, /* MMRs, remaining NAVSS */ |
| 163 | <0x00 0x46000000 0x00 0x46000000 0x00 0x00200000>, /* CPSW */ |
| 164 | <0x00 0x47000000 0x00 0x47000000 0x00 0x00068400>, /* OSPI register space */ |
| 165 | <0x00 0x50000000 0x00 0x50000000 0x00 0x10000000>, /* FSS OSPI0/1 data region 0 */ |
| 166 | <0x05 0x00000000 0x05 0x00000000 0x01 0x00000000>, /* FSS OSPI0 data region 3 */ |
| 167 | <0x07 0x00000000 0x07 0x00000000 0x01 0x00000000>; /* FSS OSPI1 data region 3*/ |
| 168 | }; |
| 169 | }; |
Neha Malcom Francis | cf5bc69 | 2023-09-27 18:39:56 +0530 | [diff] [blame] | 170 | |
| 171 | #include "k3-j721e-thermal.dtsi" |
Lokesh Vutla | 5839b1c | 2019-06-13 10:29:53 +0530 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | /* Now include the peripherals for each bus segments */ |
| 175 | #include "k3-j721e-main.dtsi" |
| 176 | #include "k3-j721e-mcu-wakeup.dtsi" |