diff options
author | Ruchika Gupta <ruchika.gupta@freescale.com> | 2013-03-25 07:40:25 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2013-05-24 16:54:14 -0500 |
commit | 39bdaff4f4dd75b578c9e1fe372e8d56e7d51526 (patch) | |
tree | c49c9945150af331e0e19a55ed04ba1e0a1f1bdf /arch/powerpc/cpu/mpc85xx | |
parent | 6eaeba23ddc5ccde5c97ef919ffcbf44ecad73dd (diff) | |
download | blackbird-obmc-uboot-39bdaff4f4dd75b578c9e1fe372e8d56e7d51526.tar.gz blackbird-obmc-uboot-39bdaff4f4dd75b578c9e1fe372e8d56e7d51526.zip |
SECURE BOOT - Removed deletion of TLB entries code
Boot ROM code creates TLB entries for 3.5G space before entering
the u-boot. Earlier we were deleting these entries after early
initialization of CPU. In recent past, code has been added
to invalidate all these entries before relocation of u-boot code.
So this code to delete TLB entries after CPU initialization
is no longer required.
Signed-off-by: Ruchika Gupta <ruchika.gupta@freescale.com>
Acked-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init_early.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init_early.c b/arch/powerpc/cpu/mpc85xx/cpu_init_early.c index dacfdd15ea..234fde4846 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init_early.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init_early.c @@ -180,12 +180,5 @@ void cpu_init_early_f(void) invalidate_tlb(1); -#if defined(CONFIG_SECURE_BOOT) - /* Disable the TLBs created by ISBC */ - for (i = CONFIG_SYS_ISBC_START_TLB; - i < CONFIG_SYS_ISBC_START_TLB + CONFIG_SYS_ISBC_NUM_TLBS; i++) - disable_tlb(i); -#endif - init_tlbs(); } |