提交 2408b3f2 编写于 作者: P Paul Gortmaker 提交者: Kim Phillips

sbc8349: migrate board to libfdt

This adds libfdt support code for the Wind River sbc8349 board.

Parallel of commit 3fde9e8b for
the other Freescale 83xx boards.
Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
上级 27a256a9
...@@ -37,6 +37,8 @@ ...@@ -37,6 +37,8 @@
#endif #endif
#if defined(CONFIG_OF_FLAT_TREE) #if defined(CONFIG_OF_FLAT_TREE)
#include <ft_build.h> #include <ft_build.h>
#elif defined(CONFIG_OF_LIBFDT)
#include <libfdt.h>
#endif #endif
int fixed_sdram(void); int fixed_sdram(void);
...@@ -234,22 +236,22 @@ void sdram_init(void) ...@@ -234,22 +236,22 @@ void sdram_init(void)
} }
#endif #endif
#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP) #if defined(CONFIG_OF_BOARD_SETUP)
void void ft_board_setup(void *blob, bd_t *bd)
ft_board_setup(void *blob, bd_t *bd)
{ {
#if defined(CONFIG_OF_FLAT_TREE)
u32 *p; u32 *p;
int len; int len;
#ifdef CONFIG_PCI
ft_pci_setup(blob, bd);
#endif
ft_cpu_setup(blob, bd);
p = ft_get_prop(blob, "/memory/reg", &len); p = ft_get_prop(blob, "/memory/reg", &len);
if (p != NULL) { if (p != NULL) {
*p++ = cpu_to_be32(bd->bi_memstart); *p++ = cpu_to_be32(bd->bi_memstart);
*p = cpu_to_be32(bd->bi_memsize); *p = cpu_to_be32(bd->bi_memsize);
} }
#endif
ft_cpu_setup(blob, bd);
#ifdef CONFIG_PCI
ft_pci_setup(blob, bd);
#endif
} }
#endif #endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册