mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

Prasanth Babu Mantena <p-mantena@ti.com> says: This series fixes OSPI boot for J722S. It contains fixes for DMSC communication, R5 regmap for ospi and dma specific overrides for ospi. Test log: https://gist.github.com/PrasanthBabuMantena/ad469dd09ab7263f85f87dadda46c86d Link: https://lore.kernel.org/r/20241218131341.2073823-1-p-mantena@ti.com
104 lines
2.2 KiB
Text
104 lines
2.2 KiB
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* J722S EVM dts file for R5 SPL
|
|
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
|
|
*/
|
|
|
|
#include "k3-j722s-evm.dts"
|
|
#include "k3-j722s-evm-u-boot.dtsi"
|
|
|
|
#include "k3-j722s-ddr-lp4-50-4000.dtsi"
|
|
#include "k3-am62a-ddr.dtsi"
|
|
|
|
/ {
|
|
aliases {
|
|
remoteproc0 = &sysctrler;
|
|
remoteproc1 = &a53_0;
|
|
serial0 = &wkup_uart0;
|
|
serial2 = &main_uart0;
|
|
};
|
|
|
|
a53_0: a53@0 {
|
|
compatible = "ti,am654-rproc";
|
|
reg = <0x00 0x00a90000 0x00 0x10>;
|
|
power-domains = <&k3_pds 61 TI_SCI_PD_EXCLUSIVE>,
|
|
<&k3_pds 135 TI_SCI_PD_EXCLUSIVE>,
|
|
<&k3_pds 166 TI_SCI_PD_EXCLUSIVE>;
|
|
resets = <&k3_reset 135 0>;
|
|
clocks = <&k3_clks 61 0>, <&k3_clks 135 0>;
|
|
clock-names = "gtc", "core";
|
|
assigned-clocks = <&k3_clks 61 0>, <&k3_clks 135 0>;
|
|
assigned-clock-parents = <&k3_clks 61 2>;
|
|
assigned-clock-rates = <200000000>, <1400000000>;
|
|
ti,sci = <&dmsc>;
|
|
ti,sci-proc-id = <32>;
|
|
ti,sci-host-id = <10>;
|
|
bootph-all;
|
|
};
|
|
|
|
dm_tifs: dm-tifs {
|
|
compatible = "ti,j721e-dm-sci";
|
|
ti,host-id = <36>;
|
|
ti,secure-host;
|
|
mbox-names = "rx", "tx";
|
|
mboxes= <&secure_proxy_main 28>,
|
|
<&secure_proxy_main 29>;
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
&dmsc {
|
|
mboxes= <&secure_proxy_main 0>,
|
|
<&secure_proxy_main 1>,
|
|
<&secure_proxy_main 0>;
|
|
mbox-names = "rx", "tx", "notify";
|
|
ti,host-id = <35>;
|
|
ti,secure-host;
|
|
};
|
|
|
|
&cbass_main {
|
|
sa3_secproxy: secproxy@44880000 {
|
|
compatible = "ti,am654-secure-proxy";
|
|
#mbox-cells = <1>;
|
|
reg = <0x00 0x44880000 0x00 0x20000>,
|
|
<0x00 0x44860000 0x00 0x20000>,
|
|
<0x00 0x43600000 0x00 0x10000>;
|
|
reg-names = "rt", "scfg", "target_data";
|
|
bootph-all;
|
|
};
|
|
|
|
sysctrler: sysctrler {
|
|
compatible = "ti,am654-system-controller";
|
|
mboxes= <&secure_proxy_main 1>,
|
|
<&secure_proxy_main 0>,
|
|
<&sa3_secproxy 0>;
|
|
mbox-names = "tx", "rx", "boot_notify";
|
|
bootph-all;
|
|
};
|
|
};
|
|
|
|
&main_timer0 {
|
|
/delete-property/ clocks;
|
|
/delete-property/ clocks-names;
|
|
/delete-property/ assigned-clocks;
|
|
/delete-property/ assigned-clock-parents;
|
|
clock-frequency = <25000000>;
|
|
};
|
|
|
|
/* WKUP UART0 is used for DM firmware logs */
|
|
&wkup_uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&ospi0 {
|
|
reg = <0x00 0x0fc40000 0x00 0x100>,
|
|
<0x00 0x60000000 0x00 0x08000000>;
|
|
};
|
|
|
|
&main_bcdma {
|
|
ti,sci = <&dm_tifs>;
|
|
};
|
|
|
|
&main_pktdma {
|
|
ti,sci = <&dm_tifs>;
|
|
};
|