diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-11-12 10:26:16 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-01-05 13:49:08 -0600 |
commit | 94e9411b9dda182dd63d53ba6ea640c98b35db5f (patch) | |
tree | 99d2deb390f336c121fa536cf29db987f9983989 /cpu/mpc85xx/cpu_init.c | |
parent | ee53650dad2fede057e93fdf6f8cd72b29ef7cd0 (diff) | |
download | u-boot-imx-94e9411b9dda182dd63d53ba6ea640c98b35db5f.zip u-boot-imx-94e9411b9dda182dd63d53ba6ea640c98b35db5f.tar.gz u-boot-imx-94e9411b9dda182dd63d53ba6ea640c98b35db5f.tar.bz2 |
ppc/85xx: Add tracking of TLB CAM usage
We need to track which TLB CAM entries are used to allow us to
"dynamically" allocate entries later in the code. For example the SPD
DDR code today hard codes which TLB entries it uses. We can now make
that pick entries that are free.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/cpu_init.c')
-rw-r--r-- | cpu/mpc85xx/cpu_init.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/mpc85xx/cpu_init.c b/cpu/mpc85xx/cpu_init.c index 16ce82c..e0126d3 100644 --- a/cpu/mpc85xx/cpu_init.c +++ b/cpu/mpc85xx/cpu_init.c @@ -246,6 +246,7 @@ void cpu_init_f (void) #ifdef CONFIG_FSL_CORENET corenet_tb_init(); #endif + init_used_tlb_cams(); } |