|
@@ -46,6 +46,10 @@
|
|
#ifdef CONFIG_PCI
|
|
#ifdef CONFIG_PCI
|
|
#include <pci.h>
|
|
#include <pci.h>
|
|
#endif
|
|
#endif
|
|
|
|
+#ifdef CONFIG_OF_LIBFDT
|
|
|
|
+#include <libfdt.h>
|
|
|
|
+#include <fdt_support.h>
|
|
|
|
+#endif
|
|
|
|
|
|
/*
|
|
/*
|
|
* I/O Port configuration table
|
|
* I/O Port configuration table
|
|
@@ -544,3 +548,26 @@ void pci_init_board(void)
|
|
pci_mpc8250_init(&hose);
|
|
pci_mpc8250_init(&hose);
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
+
|
|
|
|
+#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
|
|
|
|
+void ft_blob_update(void *blob, bd_t *bd)
|
|
|
|
+{
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
|
|
|
|
+
|
|
|
|
+ if (ret < 0) {
|
|
|
|
+ printf("ft_blob_update(): cannot set /memory/reg "
|
|
|
|
+ "property err:%s\n", fdt_strerror(ret));
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void ft_board_setup(void *blob, bd_t *bd)
|
|
|
|
+{
|
|
|
|
+ ft_cpu_setup(blob, bd);
|
|
|
|
+#ifdef CONFIG_PCI
|
|
|
|
+ ft_pci_setup(blob, bd);
|
|
|
|
+#endif
|
|
|
|
+ ft_blob_update(blob, bd);
|
|
|
|
+}
|
|
|
|
+#endif
|