blob: 3ec5bad7350330459bbd4553c94dc5fc692317be [file] [log] [blame]
Nishanth Menon3e48d372022-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"
Neha Malcom Francisce46f512023-07-22 00:14:38 +053012#include "k3-am625-sk-binman.dtsi"
Nishanth Menon3e48d372022-05-25 13:38:48 +053013
14/ {
15 aliases {
16 remoteproc0 = &sysctrler;
17 remoteproc1 = &a53_0;
18 serial0 = &wkup_uart0;
19 serial3 = &main_uart1;
20 };
21
22 chosen {
23 stdout-path = "serial2:115200n8";
24 tick-timer = &timer1;
25 };
26
27 memory@80000000 {
28 device_type = "memory";
29 /* 2G RAM */
30 reg = <0x00000000 0x80000000 0x00000000 0x80000000>;
31
Simon Glass8c103c32023-02-13 08:56:33 -070032 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +053033 };
34
35 reserved-memory {
36 #address-cells = <2>;
37 #size-cells = <2>;
38 ranges;
39
40 secure_ddr: optee@9e800000 {
41 reg = <0x00 0x9e800000 0x00 0x01800000>; /* for OP-TEE */
42 alignment = <0x1000>;
43 no-map;
44 };
45 };
46
47 a53_0: a53@0 {
48 compatible = "ti,am654-rproc";
49 reg = <0x00 0x00a90000 0x00 0x10>;
50 power-domains = <&k3_pds 61 TI_SCI_PD_EXCLUSIVE>,
Manorit Chawdhry53f02be2023-04-14 09:47:59 +053051 <&k3_pds 135 TI_SCI_PD_EXCLUSIVE>,
52 <&k3_pds 166 TI_SCI_PD_EXCLUSIVE>;
Nishanth Menon3e48d372022-05-25 13:38:48 +053053 resets = <&k3_reset 135 0>;
54 clocks = <&k3_clks 61 0>;
55 assigned-clocks = <&k3_clks 61 0>, <&k3_clks 135 0>;
56 assigned-clock-parents = <&k3_clks 61 2>;
57 assigned-clock-rates = <200000000>, <1200000000>;
58 ti,sci = <&dmsc>;
59 ti,sci-proc-id = <32>;
60 ti,sci-host-id = <10>;
Simon Glass8c103c32023-02-13 08:56:33 -070061 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +053062 };
63
64 dm_tifs: dm-tifs {
65 compatible = "ti,j721e-dm-sci";
66 ti,host-id = <36>;
67 ti,secure-host;
68 mbox-names = "rx", "tx";
69 mboxes= <&secure_proxy_main 22>,
70 <&secure_proxy_main 23>;
Simon Glass8c103c32023-02-13 08:56:33 -070071 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +053072 };
73};
74
75&dmsc {
76 mboxes= <&secure_proxy_main 0>,
77 <&secure_proxy_main 1>,
78 <&secure_proxy_main 0>;
79 mbox-names = "rx", "tx", "notify";
80 ti,host-id = <35>;
81 ti,secure-host;
82};
83
Julien Panis3128c892022-07-01 14:30:10 +020084&cbass_mcu {
85 mcu_esm: esm@4100000 {
86 compatible = "ti,j721e-esm";
87 reg = <0x0 0x4100000 0x0 0x1000>;
88 ti,esm-pins = <0>, <1>, <2>, <85>;
Simon Glass8c103c32023-02-13 08:56:33 -070089 bootph-pre-ram;
Julien Panis3128c892022-07-01 14:30:10 +020090 };
91};
92
Nishanth Menon3e48d372022-05-25 13:38:48 +053093&cbass_main {
94 sa3_secproxy: secproxy@44880000 {
Simon Glass8c103c32023-02-13 08:56:33 -070095 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +053096 compatible = "ti,am654-secure-proxy";
97 #mbox-cells = <1>;
98 reg-names = "rt", "scfg", "target_data";
99 reg = <0x00 0x44880000 0x00 0x20000>,
100 <0x0 0x44860000 0x0 0x20000>,
101 <0x0 0x43600000 0x0 0x10000>;
102 };
103
104 sysctrler: sysctrler {
105 compatible = "ti,am654-system-controller";
106 mboxes= <&secure_proxy_main 1>, <&secure_proxy_main 0>, <&sa3_secproxy 0>;
107 mbox-names = "tx", "rx", "boot_notify";
Simon Glass8c103c32023-02-13 08:56:33 -0700108 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530109 };
Julien Panis3128c892022-07-01 14:30:10 +0200110
111 main_esm: esm@420000 {
112 compatible = "ti,j721e-esm";
113 reg = <0x0 0x420000 0x0 0x1000>;
114 ti,esm-pins = <160>, <161>, <162>, <163>, <177>, <178>;
Simon Glass8c103c32023-02-13 08:56:33 -0700115 bootph-pre-ram;
Julien Panis3128c892022-07-01 14:30:10 +0200116 };
Nishanth Menon3e48d372022-05-25 13:38:48 +0530117};
118
119&mcu_pmx0 {
Simon Glass8c103c32023-02-13 08:56:33 -0700120 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530121 wkup_uart0_pins_default: wkup-uart0-pins-default {
122 pinctrl-single,pins = <
123 AM62X_MCU_IOPAD(0x02c, PIN_INPUT, 0) /* (C6) WKUP_UART0_CTSn */
124 AM62X_MCU_IOPAD(0x030, PIN_OUTPUT, 0) /* (A4) WKUP_UART0_RTSn */
125 AM62X_MCU_IOPAD(0x024, PIN_INPUT, 0) /* (B4) WKUP_UART0_RXD */
126 AM62X_MCU_IOPAD(0x028, PIN_OUTPUT, 0) /* (C5) WKUP_UART0_TXD */
127 >;
Simon Glass8c103c32023-02-13 08:56:33 -0700128 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530129 };
130};
131
132&main_pmx0 {
Simon Glass8c103c32023-02-13 08:56:33 -0700133 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530134 main_uart1_pins_default: main-uart1-pins-default {
135 pinctrl-single,pins = <
136 AM62X_IOPAD(0x194, PIN_INPUT, 2) /* (B19) MCASP0_AXR3.UART1_CTSn */
137 AM62X_IOPAD(0x198, PIN_OUTPUT, 2) /* (A19) MCASP0_AXR2.UART1_RTSn */
138 AM62X_IOPAD(0x1ac, PIN_INPUT, 2) /* (E19) MCASP0_AFSR.UART1_RXD */
139 AM62X_IOPAD(0x1b0, PIN_OUTPUT, 2) /* (A20) MCASP0_ACLKR.UART1_TXD */
140 >;
Simon Glass8c103c32023-02-13 08:56:33 -0700141 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530142 };
143};
144
145/* WKUP UART0 is used for DM firmware logs */
146&wkup_uart0 {
147 pinctrl-names = "default";
148 pinctrl-0 = <&wkup_uart0_pins_default>;
149 status = "okay";
Simon Glass8c103c32023-02-13 08:56:33 -0700150 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530151};
152
153/* Main UART1 is used for TIFS firmware logs */
154&main_uart1 {
155 pinctrl-names = "default";
156 pinctrl-0 = <&main_uart1_pins_default>;
157 status = "okay";
Simon Glass8c103c32023-02-13 08:56:33 -0700158 bootph-pre-ram;
Nishanth Menon3e48d372022-05-25 13:38:48 +0530159};
Dhruva Gole8994ac32022-10-27 20:23:10 +0530160
161&ospi0 {
162 reg = <0x00 0x0fc40000 0x00 0x100>,
163 <0x00 0x60000000 0x00 0x08000000>;
164};