blob: 78df7cec3f90c06a08e8959ee85bcb54a6c4ce28 [file] [log] [blame]
Nishanth Menonc5ac2c72022-05-25 13:38:48 +05301// SPDX-License-Identifier: GPL-2.0
2/*
3 * AM625 SK dts file for R5 SPL
4 * Copyright (C) 2021-2022 Texas Instruments Incorporated - https://www.ti.com/
5 */
6
7#include "k3-am625-sk.dts"
8#include "k3-am62x-sk-ddr4-1600MTs.dtsi"
9#include "k3-am62-ddr.dtsi"
10
11#include "k3-am625-sk-u-boot.dtsi"
12
13/ {
14 aliases {
15 remoteproc0 = &sysctrler;
16 remoteproc1 = &a53_0;
17 serial0 = &wkup_uart0;
18 serial3 = &main_uart1;
19 };
20
21 chosen {
22 stdout-path = "serial2:115200n8";
23 tick-timer = &timer1;
24 };
25
26 memory@80000000 {
27 device_type = "memory";
28 /* 2G RAM */
29 reg = <0x00000000 0x80000000 0x00000000 0x80000000>;
30
Simon Glassd3a98cb2023-02-13 08:56:33 -070031 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053032 };
33
34 reserved-memory {
35 #address-cells = <2>;
36 #size-cells = <2>;
37 ranges;
38
39 secure_ddr: optee@9e800000 {
40 reg = <0x00 0x9e800000 0x00 0x01800000>; /* for OP-TEE */
41 alignment = <0x1000>;
42 no-map;
43 };
44 };
45
46 a53_0: a53@0 {
47 compatible = "ti,am654-rproc";
48 reg = <0x00 0x00a90000 0x00 0x10>;
49 power-domains = <&k3_pds 61 TI_SCI_PD_EXCLUSIVE>,
Manorit Chawdhryf023d772023-04-14 09:47:59 +053050 <&k3_pds 135 TI_SCI_PD_EXCLUSIVE>,
51 <&k3_pds 166 TI_SCI_PD_EXCLUSIVE>;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053052 resets = <&k3_reset 135 0>;
53 clocks = <&k3_clks 61 0>;
54 assigned-clocks = <&k3_clks 61 0>, <&k3_clks 135 0>;
55 assigned-clock-parents = <&k3_clks 61 2>;
56 assigned-clock-rates = <200000000>, <1200000000>;
57 ti,sci = <&dmsc>;
58 ti,sci-proc-id = <32>;
59 ti,sci-host-id = <10>;
Simon Glassd3a98cb2023-02-13 08:56:33 -070060 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053061 };
62
63 dm_tifs: dm-tifs {
64 compatible = "ti,j721e-dm-sci";
65 ti,host-id = <36>;
66 ti,secure-host;
67 mbox-names = "rx", "tx";
68 mboxes= <&secure_proxy_main 22>,
69 <&secure_proxy_main 23>;
Simon Glassd3a98cb2023-02-13 08:56:33 -070070 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053071 };
72};
73
74&dmsc {
75 mboxes= <&secure_proxy_main 0>,
76 <&secure_proxy_main 1>,
77 <&secure_proxy_main 0>;
78 mbox-names = "rx", "tx", "notify";
79 ti,host-id = <35>;
80 ti,secure-host;
81};
82
Julien Panisb9f6fb32022-07-01 14:30:10 +020083&cbass_mcu {
84 mcu_esm: esm@4100000 {
85 compatible = "ti,j721e-esm";
86 reg = <0x0 0x4100000 0x0 0x1000>;
87 ti,esm-pins = <0>, <1>, <2>, <85>;
Simon Glassd3a98cb2023-02-13 08:56:33 -070088 bootph-pre-ram;
Julien Panisb9f6fb32022-07-01 14:30:10 +020089 };
90};
91
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053092&cbass_main {
93 sa3_secproxy: secproxy@44880000 {
Simon Glassd3a98cb2023-02-13 08:56:33 -070094 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +053095 compatible = "ti,am654-secure-proxy";
96 #mbox-cells = <1>;
97 reg-names = "rt", "scfg", "target_data";
98 reg = <0x00 0x44880000 0x00 0x20000>,
99 <0x0 0x44860000 0x0 0x20000>,
100 <0x0 0x43600000 0x0 0x10000>;
101 };
102
103 sysctrler: sysctrler {
104 compatible = "ti,am654-system-controller";
105 mboxes= <&secure_proxy_main 1>, <&secure_proxy_main 0>, <&sa3_secproxy 0>;
106 mbox-names = "tx", "rx", "boot_notify";
Simon Glassd3a98cb2023-02-13 08:56:33 -0700107 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530108 };
Julien Panisb9f6fb32022-07-01 14:30:10 +0200109
110 main_esm: esm@420000 {
111 compatible = "ti,j721e-esm";
112 reg = <0x0 0x420000 0x0 0x1000>;
113 ti,esm-pins = <160>, <161>, <162>, <163>, <177>, <178>;
Simon Glassd3a98cb2023-02-13 08:56:33 -0700114 bootph-pre-ram;
Julien Panisb9f6fb32022-07-01 14:30:10 +0200115 };
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530116};
117
118&mcu_pmx0 {
Simon Glassd3a98cb2023-02-13 08:56:33 -0700119 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530120 wkup_uart0_pins_default: wkup-uart0-pins-default {
121 pinctrl-single,pins = <
122 AM62X_MCU_IOPAD(0x02c, PIN_INPUT, 0) /* (C6) WKUP_UART0_CTSn */
123 AM62X_MCU_IOPAD(0x030, PIN_OUTPUT, 0) /* (A4) WKUP_UART0_RTSn */
124 AM62X_MCU_IOPAD(0x024, PIN_INPUT, 0) /* (B4) WKUP_UART0_RXD */
125 AM62X_MCU_IOPAD(0x028, PIN_OUTPUT, 0) /* (C5) WKUP_UART0_TXD */
126 >;
Simon Glassd3a98cb2023-02-13 08:56:33 -0700127 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530128 };
129};
130
131&main_pmx0 {
Simon Glassd3a98cb2023-02-13 08:56:33 -0700132 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530133 main_uart1_pins_default: main-uart1-pins-default {
134 pinctrl-single,pins = <
135 AM62X_IOPAD(0x194, PIN_INPUT, 2) /* (B19) MCASP0_AXR3.UART1_CTSn */
136 AM62X_IOPAD(0x198, PIN_OUTPUT, 2) /* (A19) MCASP0_AXR2.UART1_RTSn */
137 AM62X_IOPAD(0x1ac, PIN_INPUT, 2) /* (E19) MCASP0_AFSR.UART1_RXD */
138 AM62X_IOPAD(0x1b0, PIN_OUTPUT, 2) /* (A20) MCASP0_ACLKR.UART1_TXD */
139 >;
Simon Glassd3a98cb2023-02-13 08:56:33 -0700140 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530141 };
142};
143
144/* WKUP UART0 is used for DM firmware logs */
145&wkup_uart0 {
146 pinctrl-names = "default";
147 pinctrl-0 = <&wkup_uart0_pins_default>;
148 status = "okay";
Simon Glassd3a98cb2023-02-13 08:56:33 -0700149 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530150};
151
152/* Main UART1 is used for TIFS firmware logs */
153&main_uart1 {
154 pinctrl-names = "default";
155 pinctrl-0 = <&main_uart1_pins_default>;
156 status = "okay";
Simon Glassd3a98cb2023-02-13 08:56:33 -0700157 bootph-pre-ram;
Nishanth Menonc5ac2c72022-05-25 13:38:48 +0530158};
Dhruva Gole0f33ef22022-10-27 20:23:10 +0530159
160&ospi0 {
161 reg = <0x00 0x0fc40000 0x00 0x100>,
162 <0x00 0x60000000 0x00 0x08000000>;
163};