diff options
author | Wolfgang Denk <wd@denx.de> | 2011-07-25 15:15:44 +0200 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-07-29 08:53:38 -0500 |
commit | 28415b62d1fe0b12e5a48743285ed52502d75004 (patch) | |
tree | 796d4b362f0625fe4f629c9d777c171b6157fd60 /board/stx | |
parent | 0a9fe8ee7e5c4d1d677fab71514d4f4a9be2f6be (diff) |
85xx: enable FDT support for STX SSA board
We also have to shift TEXT_BASE to accomodate for the additional
code size.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/stx')
-rw-r--r-- | board/stx/stxssa/stxssa.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/stx/stxssa/stxssa.c b/board/stx/stxssa/stxssa.c index 83ffcd2b924..3077eb3581a 100644 --- a/board/stx/stxssa/stxssa.c +++ b/board/stx/stxssa/stxssa.c @@ -34,6 +34,7 @@ #include <asm/processor.h> #include <asm/mmu.h> #include <asm/immap_85xx.h> +#include <asm/fsl_pci.h> #include <asm/fsl_ddr_sdram.h> #include <ioports.h> #include <asm/io.h> @@ -247,6 +248,13 @@ reset_phy(void) #endif } +#ifdef CONFIG_OF_BOARD_SETUP +void ft_board_setup(void *blob, bd_t *bd) +{ + ft_cpu_setup (blob, bd); +} +#endif /* CONFIG_OF_BOARD_SETUP */ + int board_early_init_f(void) { |