diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-11-18 21:40:38 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-11-18 21:40:38 +0100 | 
| commit | e0b0ec843085f96f4fe0738424835ee90e58bc00 (patch) | |
| tree | 1136f04350b8fb4dcce0d94e69024e64ad0b5605 /cpu/mpc86xx/cpu_init.c | |
| parent | edf3fe7d39a1ee07353128af5221422ce9ccfad6 (diff) | |
| parent | 3f510db522d160179dff3ddcce9b18f6241c2c24 (diff) | |
| download | olio-uboot-2014.01-e0b0ec843085f96f4fe0738424835ee90e58bc00.tar.xz olio-uboot-2014.01-e0b0ec843085f96f4fe0738424835ee90e58bc00.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-mpc86xx
Diffstat (limited to 'cpu/mpc86xx/cpu_init.c')
| -rw-r--r-- | cpu/mpc86xx/cpu_init.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/cpu/mpc86xx/cpu_init.c b/cpu/mpc86xx/cpu_init.c index 4ab88f0b0..a7e6036db 100644 --- a/cpu/mpc86xx/cpu_init.c +++ b/cpu/mpc86xx/cpu_init.c @@ -31,6 +31,9 @@  #include <mpc86xx.h>  #include <asm/mmu.h>  #include <asm/fsl_law.h> +#include "mp.h" + +void setup_bats(void);  DECLARE_GLOBAL_DATA_PTR; @@ -56,6 +59,8 @@ void cpu_init_f(void)  	init_laws();  #endif +	setup_bats(); +  	/* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary  	 * addresses - these have to be modified later when FLASH size  	 * has been determined @@ -121,6 +126,9 @@ void cpu_init_f(void)   */  int cpu_init_r(void)  { +#if (CONFIG_NUM_CPUS > 1) +	setup_mp(); +#endif  	return 0;  } |