diff options
author | Masahisa Kojima <masahisa.kojima@linaro.org> | 2019-03-07 11:23:42 +0900 |
---|---|---|
committer | Masahisa Kojima <masahisa.kojima@linaro.org> | 2019-03-13 09:54:35 +0900 |
commit | cf6c30e08ba54a22a0ce8abd6eac8b1d1ccad324 (patch) | |
tree | 995d0cefd9541013d5a7703fffaab61b8d32c2e7 /plat | |
parent | b67d20297fd67d29931283c6a01e4aab7898d570 (diff) | |
download | platform_external_arm-trusted-firmware-cf6c30e08ba54a22a0ce8abd6eac8b1d1ccad324.tar.gz platform_external_arm-trusted-firmware-cf6c30e08ba54a22a0ce8abd6eac8b1d1ccad324.tar.bz2 platform_external_arm-trusted-firmware-cf6c30e08ba54a22a0ce8abd6eac8b1d1ccad324.zip |
plat/arm: mhu: make mhu driver generic
MHU doorbell driver requires arm platform specific
macro "PLAT_CSS_MHU_BASE".
Rename it to "PLAT_MHUV2_BASE", so that platforms other than arm
can use generic MHU doorbell driver.
Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org>
Diffstat (limited to 'plat')
-rw-r--r-- | plat/arm/board/juno/include/platform_def.h | 1 | ||||
-rw-r--r-- | plat/arm/board/n1sdp/include/platform_def.h | 1 | ||||
-rw-r--r-- | plat/arm/board/rde1edge/include/platform_def.h | 1 | ||||
-rw-r--r-- | plat/arm/board/rdn1edge/include/platform_def.h | 1 | ||||
-rw-r--r-- | plat/arm/board/sgi575/include/platform_def.h | 1 | ||||
-rw-r--r-- | plat/arm/css/sgm/include/sgm_base_platform_def.h | 1 | ||||
-rw-r--r-- | plat/socionext/synquacer/include/platform_def.h | 2 |
7 files changed, 7 insertions, 1 deletions
diff --git a/plat/arm/board/juno/include/platform_def.h b/plat/arm/board/juno/include/platform_def.h index ddbc9b7f5..e096e33e3 100644 --- a/plat/arm/board/juno/include/platform_def.h +++ b/plat/arm/board/juno/include/platform_def.h @@ -222,6 +222,7 @@ /* MHU related constants */ #define PLAT_CSS_MHU_BASE UL(0x2b1f0000) +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE /* * Base address of the first memory region used for communication between AP diff --git a/plat/arm/board/n1sdp/include/platform_def.h b/plat/arm/board/n1sdp/include/platform_def.h index 83b9f52d2..03bd3803a 100644 --- a/plat/arm/board/n1sdp/include/platform_def.h +++ b/plat/arm/board/n1sdp/include/platform_def.h @@ -61,6 +61,7 @@ #define PLAT_ARM_NSTIMER_FRAME_ID 0 #define PLAT_CSS_MHU_BASE 0x45000000 +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE #define PLAT_MAX_PWR_LVL 1 #define PLAT_ARM_G1S_IRQS ARM_G1S_IRQS, \ diff --git a/plat/arm/board/rde1edge/include/platform_def.h b/plat/arm/board/rde1edge/include/platform_def.h index 954a1cd48..3b3ade0cb 100644 --- a/plat/arm/board/rde1edge/include/platform_def.h +++ b/plat/arm/board/rde1edge/include/platform_def.h @@ -16,6 +16,7 @@ #define CSS_SGI_MAX_PE_PER_CPU 2 #define PLAT_CSS_MHU_BASE UL(0x45400000) +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE /* Base address of DMC-620 instances */ #define RDE1EDGE_DMC620_BASE0 UL(0x4e000000) diff --git a/plat/arm/board/rdn1edge/include/platform_def.h b/plat/arm/board/rdn1edge/include/platform_def.h index 2ca0dd4ec..8480c08fe 100644 --- a/plat/arm/board/rdn1edge/include/platform_def.h +++ b/plat/arm/board/rdn1edge/include/platform_def.h @@ -16,6 +16,7 @@ #define CSS_SGI_MAX_PE_PER_CPU 1 #define PLAT_CSS_MHU_BASE UL(0x45400000) +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE /* Base address of DMC-620 instances */ #define RDN1EDGE_DMC620_BASE0 UL(0x4e000000) diff --git a/plat/arm/board/sgi575/include/platform_def.h b/plat/arm/board/sgi575/include/platform_def.h index 6aea522f0..ec51c9e07 100644 --- a/plat/arm/board/sgi575/include/platform_def.h +++ b/plat/arm/board/sgi575/include/platform_def.h @@ -16,6 +16,7 @@ #define CSS_SGI_MAX_PE_PER_CPU 1 #define PLAT_CSS_MHU_BASE UL(0x45000000) +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE /* Base address of DMC-620 instances */ #define SGI575_DMC620_BASE0 UL(0x4e000000) diff --git a/plat/arm/css/sgm/include/sgm_base_platform_def.h b/plat/arm/css/sgm/include/sgm_base_platform_def.h index 4647e742f..85818446e 100644 --- a/plat/arm/css/sgm/include/sgm_base_platform_def.h +++ b/plat/arm/css/sgm/include/sgm_base_platform_def.h @@ -86,6 +86,7 @@ /* MHU related constants */ #define PLAT_CSS_MHU_BASE 0x2b1f0000 +#define PLAT_MHUV2_BASE PLAT_CSS_MHU_BASE #define PLAT_ARM_TRUSTED_ROM_BASE 0x00000000 #define PLAT_ARM_TRUSTED_ROM_SIZE 0x00080000 diff --git a/plat/socionext/synquacer/include/platform_def.h b/plat/socionext/synquacer/include/platform_def.h index 263b215f2..7e54b39d8 100644 --- a/plat/socionext/synquacer/include/platform_def.h +++ b/plat/socionext/synquacer/include/platform_def.h @@ -80,7 +80,7 @@ #define DRAMINFO_BASE 0x2E00FFC0 #define PLAT_SQ_MHU_BASE 0x45000000 -#define PLAT_CSS_MHU_BASE PLAT_SQ_MHU_BASE +#define PLAT_MHUV2_BASE 0xFFFFFFFF /* MHUV2 is not supported */ #define PLAT_SQ_SCP_COM_SHARED_MEM_BASE 0x45400000 #define SCPI_CMD_GET_DRAMINFO 0x1 |