diff options
author | Aneesh Bansal <aneesh.bansal@freescale.com> | 2014-03-18 23:41:14 +0530 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2014-04-22 17:58:47 -0700 |
commit | 2d8db6d3158a8f2da99bde8c8aea3272292b4ae7 (patch) | |
tree | 979e10c953440fa5053a44dc0a79ab896e76325b /arch | |
parent | ca4819df839dbe1b92f82766c1e7180c0496815a (diff) | |
download | u-boot-2d8db6d3158a8f2da99bde8c8aea3272292b4ae7.zip u-boot-2d8db6d3158a8f2da99bde8c8aea3272292b4ae7.tar.gz u-boot-2d8db6d3158a8f2da99bde8c8aea3272292b4ae7.tar.bz2 |
powerpc/mpc85xx: SECURE BOOT- Add secure boot target for T1040QDS and T1040RDB
Secure Boot Target is added for T1040QDS and T1040RDB
Changes:
For Secure boot, CPC is configured as SRAM and used as house
keeping area which needs to be disabled.
So CONFIG_SYS_CPC_REINIT_F is defined for CONFIG_T1040QDS and
CONFIG_T1040RDB
Signed-off-by: Gaurav Rana <gaurav.rana@freescale.com>
Signed-off-by: Aneesh Bansal <aneesh.bansal@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/include/asm/fsl_secure_boot.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/fsl_secure_boot.h b/arch/powerpc/include/asm/fsl_secure_boot.h index 43a719f..29bef91 100644 --- a/arch/powerpc/include/asm/fsl_secure_boot.h +++ b/arch/powerpc/include/asm/fsl_secure_boot.h @@ -19,7 +19,9 @@ #if defined(CONFIG_B4860QDS) || \ defined(CONFIG_T4240QDS) || \ - defined(CONFIG_T2080QDS) + defined(CONFIG_T2080QDS) || \ + defined(CONFIG_T1040QDS) || \ + defined(CONFIG_T1040RDB) #define CONFIG_SYS_CPC_REINIT_F #undef CONFIG_SYS_INIT_L3_ADDR #define CONFIG_SYS_INIT_L3_ADDR 0xbff00000 |