mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 23:35:10 +00:00
feat(tc): add devicetree node for AP/RSE MHU
These dts nodes are used by u-boot MHU/RSE driver to faciliate communication with RSE over MHU. FPGA doesn't seem to have the MHU instances which are used to communicate with RSE so keep rse mhu disabled for fpga. Signed-off-by: Yu Shihai <yu.shihai@arm.com> Signed-off-by: Jackson Cooper-Driver <jackson.cooper-driver@arm.com> Signed-off-by: Jagdish Gediya <jagdish.gediya@arm.com> Signed-off-by: Icen Zeyada <Icen.Zeyada2@arm.com> Change-Id: Ib10b3da09626e5beb6d6cd87b1618a143234a5d0
This commit is contained in:
parent
ae952c1e51
commit
06fa4c4df2
3 changed files with 40 additions and 0 deletions
|
@ -52,6 +52,31 @@
|
|||
};
|
||||
};
|
||||
|
||||
rse_mbox_db_rx: mhu@RSE_MHU_RX_ADDR {
|
||||
compatible = MHU_RX_COMPAT;
|
||||
reg = <0x0 ADDRESSIFY(RSE_MHU_RX_ADDR) 0x0 MHU_OFFSET>;
|
||||
clocks = <&soc_refclk>;
|
||||
clock-names = "apb_pclk";
|
||||
#mbox-cells = <MHU_MBOX_CELLS>;
|
||||
interrupts = <GIC_SPI 313 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
interrupt-names = MHU_RX_INT_NAME;
|
||||
#if TARGET_FLAVOUR_FPGA
|
||||
status = "disabled";
|
||||
#endif
|
||||
};
|
||||
|
||||
rse_mbox_db_tx: mhu@RSE_MHU_TX_ADDR {
|
||||
compatible = MHU_TX_COMPAT;
|
||||
reg = <0x0 ADDRESSIFY(RSE_MHU_TX_ADDR) 0x0 MHU_OFFSET>;
|
||||
clocks = <&soc_refclk>;
|
||||
clock-names = "apb_pclk";
|
||||
#mbox-cells = <MHU_MBOX_CELLS>;
|
||||
interrupt-names = MHU_TX_INT_NAME;
|
||||
#if TARGET_FLAVOUR_FPGA
|
||||
status = "disabled";
|
||||
#endif
|
||||
};
|
||||
|
||||
gic: interrupt-controller@GIC_CTRL_ADDR {
|
||||
ppi-partitions {
|
||||
ppi_partition_little: interrupt-partition-0 {
|
||||
|
@ -80,5 +105,14 @@
|
|||
mboxes = <&mbox_db_tx 0 0 0 &mbox_db_rx 0 0 0 &mbox_db_rx 0 0 1>;
|
||||
shmem = <&cpu_scp_scmi_a2p &cpu_scp_scmi_p2a>;
|
||||
};
|
||||
|
||||
rse {
|
||||
compatible = "arm,rse";
|
||||
mbox-names = "tx", "rx";
|
||||
mboxes = <&rse_mbox_db_tx 0 0 0>, <&rse_mbox_db_rx 0 0 0>;
|
||||
#if TARGET_FLAVOUR_FPGA
|
||||
status = "disabled";
|
||||
#endif
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
#define MHU_TX_ADDR 46040000 /* hex */
|
||||
#define MHU_RX_ADDR 46140000 /* hex */
|
||||
|
||||
#define RSE_MHU_TX_ADDR 49010000 /* hex */
|
||||
#define RSE_MHU_RX_ADDR 49110000 /* hex */
|
||||
|
||||
#define LIT_CPU_PMU_COMPATIBLE "arm,cortex-a520-pmu"
|
||||
#define MID_CPU_PMU_COMPATIBLE "arm,cortex-a725-pmu"
|
||||
#define BIG_CPU_PMU_COMPATIBLE "arm,cortex-x925-pmu"
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
#define MID_CPU_PMU_COMPATIBLE "arm,armv8-pmuv3"
|
||||
#define BIG_CPU_PMU_COMPATIBLE "arm,armv8-pmuv3"
|
||||
|
||||
#define RSE_MHU_TX_ADDR 49020000 /* hex */
|
||||
#define RSE_MHU_RX_ADDR 49030000 /* hex */
|
||||
|
||||
#define ETHERNET_ADDR 64000000
|
||||
#define ETHERNET_INT 799
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue