mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-30 13:03:01 +00:00

Add properties as per new bindings in zynqmp remoteproc node to represent TCM address and size. This patch also adds alternative remoteproc node to represent remoteproc cluster in split mode. By default lockstep mode is enabled and users should disable it before using split mode dts. Both device-tree nodes can't be used simultaneously one of them must be disabled. For zcu102-1.0 and zcu102-1.1 board remoteproc split mode dts node is enabled and lockstep mode dts is disabled. Signed-off-by: Tanmay Shah <tanmay.shah@amd.com> Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org> Link: https://lore.kernel.org/r/20240412183708.4036007-4-tanmay.shah@amd.com Signed-off-by: Michal Simek <michal.simek@amd.com>
45 lines
683 B
Plaintext
45 lines
683 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* dts file for Xilinx ZynqMP ZCU102 Rev1.0
|
|
*
|
|
* (C) Copyright 2016 - 2018, Xilinx, Inc.
|
|
*
|
|
* Michal Simek <michal.simek@amd.com>
|
|
*/
|
|
|
|
#include "zynqmp-zcu102-revB.dts"
|
|
|
|
/ {
|
|
model = "ZynqMP ZCU102 Rev1.0";
|
|
compatible = "xlnx,zynqmp-zcu102-rev1.0", "xlnx,zynqmp-zcu102", "xlnx,zynqmp";
|
|
};
|
|
|
|
&rproc_split {
|
|
status = "okay";
|
|
};
|
|
|
|
&rproc_lockstep {
|
|
status = "disabled";
|
|
};
|
|
|
|
&eeprom {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
board_sn: board-sn@0 {
|
|
reg = <0x0 0x14>;
|
|
};
|
|
|
|
eth_mac: eth-mac@20 {
|
|
reg = <0x20 0x6>;
|
|
};
|
|
|
|
board_name: board-name@d0 {
|
|
reg = <0xd0 0x6>;
|
|
};
|
|
|
|
board_revision: board-revision@e0 {
|
|
reg = <0xe0 0x3>;
|
|
};
|
|
};
|