[U-Boot] [PATCH] ppc/8xxx: relocate cpu pointer in global data

Now that we have a pointer to the cpu struct we need to relocate it once we get into ram.
Signed-off-by: Kumar Gala galak@kernel.crashing.org --- lib_ppc/board.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 9faf7f2..6e6483b 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -686,6 +686,10 @@ void board_init_r (gd_t *id, ulong dest_addr) gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE; #endif
+#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) + gd->cpu += gd->reloc_off; +#endif + #ifdef CONFIG_SERIAL_MULTI serial_initialize(); #endif

On Sep 1, 2009, at 9:09 PM, Kumar Gala wrote:
Now that we have a pointer to the cpu struct we need to relocate it once we get into ram.
Signed-off-by: Kumar Gala galak@kernel.crashing.org
lib_ppc/board.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
applied to 85xx.
- k
participants (1)
-
Kumar Gala