]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
FDT memory and pci node fixes for MPC8260ADS
authorMatvejchikov Ilya <matvejchikov@gmail.com>
Sun, 6 Jul 2008 09:57:00 +0000 (13:57 +0400)
committerWolfgang Denk <wd@denx.de>
Wed, 9 Jul 2008 21:57:59 +0000 (23:57 +0200)
Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
board/freescale/mpc8260ads/mpc8260ads.c
cpu/mpc8260/pci.c
include/configs/MPC8260ADS.h

index 6f683f031bd8dfd3ffed1cadfc1f137a24750ad2..8ab7d356c4f54e34e0d31c3f40f3536df593fd40 100644 (file)
 #ifdef CONFIG_PCI
 #include <pci.h>
 #endif
+#ifdef CONFIG_OF_LIBFDT
+#include <libfdt.h>
+#include <fdt_support.h>
+#endif
 
 /*
  * I/O Port configuration table
@@ -544,3 +548,26 @@ void pci_init_board(void)
        pci_mpc8250_init(&hose);
 }
 #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
index 75c6ab298566a7eef530940300081bcc9d963bca..940f5c0a100f19ca12a2d7b22a72986ba7542046 100644 (file)
 #include <mpc8260.h>
 #include <asm/m8260_pci.h>
 #include <asm/io.h>
+#ifdef CONFIG_OF_LIBFDT
+#include <libfdt.h>
+#include <fdt_support.h>
+#endif
 
 #if defined CONFIG_MPC8266ADS || defined CONFIG_MPC8272 || defined CONFIG_PM826
 DECLARE_GLOBAL_DATA_PTR;
@@ -449,4 +453,12 @@ void pci_mpc8250_init (struct pci_controller *hose)
        immap->im_pci.pci_emr |= cpu_to_le32 (PCI_ERROR_PCI_NO_RSP);
 }
 
+#if defined(CONFIG_OF_LIBFDT)
+void ft_pci_setup(void *blob, bd_t *bd)
+{
+       do_fixup_by_prop_u32(blob, "device_type", "pci", 4,
+               "clock-frequency", bd->pci_clk, 1);
+}
+#endif
+
 #endif /* CONFIG_PCI */
index 23508f9f5ae13e6826843bb25423fda5fe5a6b36..59d0bdbeb2e419f6d9cd79c4dcf071cc6a4a6603 100644 (file)
 
 #define CONFIG_BAUDRATE                115200
 
+#define CONFIG_OF_LIBFDT       1
+#define CONFIG_OF_BOARD_SETUP  1
+#if defined(CONFIG_OF_LIBFDT)
+#define OF_CPU                 "cpu@0"
+#define OF_TBCLK               (bd->bi_busfreq / 4)
+#endif
+
 /*
  * BOOTP options
  */