diff options
author | Ye.Li <B37916@freescale.com> | 2015-01-14 17:18:12 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-02-10 12:48:49 +0100 |
commit | e8cdeefc222ff32a80282dd571be0426156cd9d9 (patch) | |
tree | 3508487854218c7e19f23c49fbba6c5d4eedb7e3 /arch/arm/include/asm | |
parent | 9598f8c30cb3535b96c8b33638f016d67691e076 (diff) | |
download | u-boot-imx-e8cdeefc222ff32a80282dd571be0426156cd9d9.zip u-boot-imx-e8cdeefc222ff32a80282dd571be0426156cd9d9.tar.gz u-boot-imx-e8cdeefc222ff32a80282dd571be0426156cd9d9.tar.bz2 |
imx: mx6: Fixed AIPS3 base address issue
Should use AIPS3 configuration address 0x0227C000 to set AIPS3,
not the AIPS3 base address.
Additional, replace AIPS1_BASE_ADDR to AIPS3_ARB_BASE_ADDR to align with
AIPS1 and AIPS2, and resolve the AIPS3_ARB_BASE_ADDR undefine problem.
Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-mx6/imx-regs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/include/asm/arch-mx6/imx-regs.h b/arch/arm/include/asm/arch-mx6/imx-regs.h index 22f371d..ae88b6e 100644 --- a/arch/arm/include/asm/arch-mx6/imx-regs.h +++ b/arch/arm/include/asm/arch-mx6/imx-regs.h @@ -88,8 +88,8 @@ #define AIPS2_ARB_BASE_ADDR 0x02100000 #define AIPS2_ARB_END_ADDR 0x021FFFFF #ifdef CONFIG_MX6SX -#define AIPS3_BASE_ADDR 0x02200000 -#define AIPS3_END_ADDR 0x022FFFFF +#define AIPS3_ARB_BASE_ADDR 0x02200000 +#define AIPS3_ARB_END_ADDR 0x022FFFFF #define WEIM_ARB_BASE_ADDR 0x50000000 #define WEIM_ARB_END_ADDR 0x57FFFFFF #define QSPI0_AMBA_BASE 0x60000000 |