From a3db5ff4acdd2f2ef1c910e995ddb6989fd7b1ba Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 2 Apr 2012 11:05:29 +0200 Subject: bsp/gen83xx: Support for MPC830X --- c/src/lib/libbsp/powerpc/gen83xx/startup/cpuinit.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/c/src/lib/libbsp/powerpc/gen83xx/startup/cpuinit.c b/c/src/lib/libbsp/powerpc/gen83xx/startup/cpuinit.c index 873c76da33..4c7ced0259 100644 --- a/c/src/lib/libbsp/powerpc/gen83xx/startup/cpuinit.c +++ b/c/src/lib/libbsp/powerpc/gen83xx/startup/cpuinit.c @@ -251,7 +251,11 @@ void cpu_init( void) #else /* HAS_UBOOT */ (uint32_t) IMMRBAR, #endif /* HAS_UBOOT */ - 1024 * 1024, + #if MPC83XX_CHIP_TYPE / 10 == 830 + 2 * 1024 * 1024, + #else + 1024 * 1024, + #endif false, true, false, -- cgit v1.2.3