diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2020-02-26 08:33:39 +0000 |
---|---|---|
committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2020-02-26 08:33:39 +0000 |
commit | cf92be2939fcfcc47ff7a7d493963da3ce213c99 (patch) | |
tree | 5908b73157051bd589bafbcb0e9baa6715d996f2 /plat/imx/imx8m | |
parent | 896d684de648b38b6d79f337c213606021f73bb0 (diff) | |
parent | 97600cb586af32ddbe164aca61a0c6a61e115bbe (diff) | |
download | platform_external_arm-trusted-firmware-cf92be2939fcfcc47ff7a7d493963da3ce213c99.tar.gz platform_external_arm-trusted-firmware-cf92be2939fcfcc47ff7a7d493963da3ce213c99.tar.bz2 platform_external_arm-trusted-firmware-cf92be2939fcfcc47ff7a7d493963da3ce213c99.zip |
Merge "plat: imx8m: Fix the rdc memory region slot's offset" into integration
Diffstat (limited to 'plat/imx/imx8m')
-rw-r--r-- | plat/imx/imx8m/include/imx_rdc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plat/imx/imx8m/include/imx_rdc.h b/plat/imx/imx8m/include/imx_rdc.h index 6be8550da..e25b0e6d4 100644 --- a/plat/imx/imx8m/include/imx_rdc.h +++ b/plat/imx/imx8m/include/imx_rdc.h @@ -13,9 +13,9 @@ #define MDAn(x) (IMX_RDC_BASE + 0x200 + (x) * 4) #define PDAPn(x) (IMX_RDC_BASE + 0x400 + (x) * 4) -#define MRSAn(x) (IMX_RDC_BASE + 0x800 + (x) * 4) -#define MREAn(x) (IMX_RDC_BASE + 0x804 + (x) * 4) -#define MRCn(x) (IMX_RDC_BASE + 0x808 + (x) * 4) +#define MRSAn(x) (IMX_RDC_BASE + 0x800 + (x) * 0x10) +#define MREAn(x) (IMX_RDC_BASE + 0x804 + (x) * 0x10) +#define MRCn(x) (IMX_RDC_BASE + 0x808 + (x) * 0x10) #define LCK BIT(31) #define SREQ BIT(30) |