]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - board/kup/kup4k/kup4k.c
8xx, kup4k/kup4x: add FDT support
[people/ms/u-boot.git] / board / kup / kup4k / kup4k.c
index 7eb36abc29caee56d0ec77e5a625a5ff6ba42c32..267821c48f5c9fe393f1d4c6fbd8cfc15b6e885f 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <common.h>
 #include <command.h>
+#include <libfdt.h>
 #include <mpc8xx.h>
 #include <hwconfig.h>
 #include <i2c.h>
@@ -291,3 +292,13 @@ static unsigned char swapbyte(unsigned char c)
        }
        return result;
 }
+
+/*
+ * Device Tree Support
+ */
+#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
+void ft_board_setup(void *blob, bd_t *bd)
+{
+       ft_cpu_setup(blob, bd);
+}
+#endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */