blob: bbbd9e51d692c21e4d0fe4382fdf5b83082a7461 [file] [log] [blame]
Bryan Brattlof6bdfa692022-11-03 19:13:52 -05001// SPDX-License-Identifier: GPL-2.0
2/*
3 * AM62A7 SK dts file for R5 SPL
4 * Copyright (C) 2022 Texas Instruments Incorporated - https://www.ti.com/
5 */
6
7#include "k3-am62a7-sk.dts"
8#include "k3-am62a-ddr-1866mhz-32bit.dtsi"
9#include "k3-am62a-ddr.dtsi"
Neha Malcom Francis6d6228a2023-07-22 00:14:40 +053010#include "k3-am62a-sk-binman.dtsi"
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050011
12#include "k3-am62a7-sk-u-boot.dtsi"
13
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";
Devarsh Thakkar88519852023-02-06 17:04:51 +053029 /* 4G RAM */
30 reg = <0x00000000 0x80000000 0x00000000 0x80000000>,
31 <0x00000008 0x80000000 0x00000000 0x80000000>;
Simon Glass8c103c32023-02-13 08:56:33 -070032 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050033 };
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 Chawdhry9a367352023-04-14 09:47:58 +053051 <&k3_pds 135 TI_SCI_PD_EXCLUSIVE>,
52 <&k3_pds 166 TI_SCI_PD_EXCLUSIVE>;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050053 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;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050062 };
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;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050072 };
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
84&cbass_main {
85 sa3_secproxy: secproxy@44880000 {
86 compatible = "ti,am654-secure-proxy";
87 #mbox-cells = <1>;
88 reg = <0x00 0x44880000 0x00 0x20000>,
89 <0x0 0x44860000 0x0 0x20000>,
90 <0x0 0x43600000 0x0 0x10000>;
91 reg-names = "rt", "scfg", "target_data";
Simon Glass8c103c32023-02-13 08:56:33 -070092 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -050093 };
94
95 sysctrler: sysctrler {
96 compatible = "ti,am654-system-controller";
97 mboxes= <&secure_proxy_main 1>,
98 <&secure_proxy_main 0>,
99 <&sa3_secproxy 0>;
100 mbox-names = "tx", "rx", "boot_notify";
Simon Glass8c103c32023-02-13 08:56:33 -0700101 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500102 };
103};
104
105&mcu_pmx0 {
106 status = "okay";
Simon Glass8c103c32023-02-13 08:56:33 -0700107 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500108
109 wkup_uart0_pins_default: wkup-uart0-pins-default {
110 pinctrl-single,pins = <
111 AM62X_MCU_IOPAD(0x02c, PIN_INPUT, 0) /* (C6) WKUP_UART0_CTSn */
112 AM62X_MCU_IOPAD(0x030, PIN_OUTPUT, 0) /* (A4) WKUP_UART0_RTSn */
113 AM62X_MCU_IOPAD(0x024, PIN_INPUT, 0) /* (B4) WKUP_UART0_RXD */
114 AM62X_MCU_IOPAD(0x028, PIN_OUTPUT, 0) /* (C5) WKUP_UART0_TXD */
115 >;
Simon Glass8c103c32023-02-13 08:56:33 -0700116 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500117 };
118};
119
120&main_pmx0 {
Simon Glass8c103c32023-02-13 08:56:33 -0700121 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500122 main_uart1_pins_default: main-uart1-pins-default {
123 pinctrl-single,pins = <
124 AM62X_IOPAD(0x194, PIN_INPUT, 2) /* (B19) MCASP0_AXR3.UART1_CTSn */
125 AM62X_IOPAD(0x198, PIN_OUTPUT, 2) /* (A19) MCASP0_AXR2.UART1_RTSn */
126 AM62X_IOPAD(0x1ac, PIN_INPUT, 2) /* (E19) MCASP0_AFSR.UART1_RXD */
127 AM62X_IOPAD(0x1b0, PIN_OUTPUT, 2) /* (A20) MCASP0_ACLKR.UART1_TXD */
128 >;
Simon Glass8c103c32023-02-13 08:56:33 -0700129 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500130 };
131};
132
133/* WKUP UART0 is used for DM firmware logs */
134&wkup_uart0 {
135 pinctrl-names = "default";
136 pinctrl-0 = <&wkup_uart0_pins_default>;
137 status = "okay";
Simon Glass8c103c32023-02-13 08:56:33 -0700138 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500139};
140
141/* Main UART1 is used for TIFS firmware logs */
142&main_uart1 {
143 pinctrl-names = "default";
144 pinctrl-0 = <&main_uart1_pins_default>;
145 status = "okay";
Simon Glass8c103c32023-02-13 08:56:33 -0700146 bootph-pre-ram;
Bryan Brattlof6bdfa692022-11-03 19:13:52 -0500147};