diff options
author | Wolfgang Denk <wd@denx.de> | 2008-10-27 22:31:32 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-27 22:31:32 +0100 |
commit | f8030519bbe20b836f3939742b959cbadfaad51b (patch) | |
tree | ae23fde6c7c196fca5fb62d6e30103974179d961 /include/fdt_support.h | |
parent | 5deb8022c3749faac30e9ad9694691e2442b5c93 (diff) | |
parent | c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
Diffstat (limited to 'include/fdt_support.h')
-rw-r--r-- | include/fdt_support.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/fdt_support.h b/include/fdt_support.h index ceaadc2bef7..6062df97642 100644 --- a/include/fdt_support.h +++ b/include/fdt_support.h @@ -28,6 +28,8 @@ #include <fdt.h> +u32 fdt_getprop_u32_default(void *fdt, const char *path, const char *prop, + const u32 dflt); int fdt_chosen(void *fdt, int force); int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end, int force); void do_fixup_by_path(void *fdt, const char *path, const char *prop, @@ -63,6 +65,11 @@ void fdt_fixup_crypto_node(void *blob, int sec_rev); static inline void fdt_fixup_crypto_node(void *blob, int sec_rev) {} #endif +#ifdef CONFIG_PCI +#include <pci.h> +int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose); +#endif + #ifdef CONFIG_OF_BOARD_SETUP void ft_board_setup(void *blob, bd_t *bd); void ft_cpu_setup(void *blob, bd_t *bd); |