2007-04-06 14:19:43 -04:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007
|
|
|
|
* Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
|
|
|
|
*
|
2013-07-08 09:37:19 +02:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-04-06 14:19:43 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FDT_SUPPORT_H
|
|
|
|
#define __FDT_SUPPORT_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_OF_LIBFDT
|
|
|
|
|
2013-02-07 19:49:54 -05:00
|
|
|
#include <libfdt.h>
|
2007-04-06 14:19:43 -04:00
|
|
|
|
2014-04-11 17:09:40 +02:00
|
|
|
u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
|
|
|
|
const char *prop, const u32 dflt);
|
2011-11-08 01:09:44 -08:00
|
|
|
u32 fdt_getprop_u32_default(const void *fdt, const char *path,
|
|
|
|
const char *prop, const u32 dflt);
|
2014-04-18 17:41:00 +09:00
|
|
|
int fdt_chosen(void *fdt);
|
2014-04-18 17:40:59 +09:00
|
|
|
int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end);
|
2007-11-03 19:46:28 -05:00
|
|
|
void do_fixup_by_path(void *fdt, const char *path, const char *prop,
|
|
|
|
const void *val, int len, int create);
|
|
|
|
void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,
|
|
|
|
u32 val, int create);
|
2011-08-31 10:36:32 +08:00
|
|
|
|
|
|
|
static inline void do_fixup_by_path_string(void *fdt, const char *path,
|
|
|
|
const char *prop, const char *status)
|
|
|
|
{
|
|
|
|
do_fixup_by_path(fdt, path, prop, status, strlen(status) + 1, 1);
|
|
|
|
}
|
|
|
|
|
2007-11-21 13:30:15 -06:00
|
|
|
void do_fixup_by_prop(void *fdt,
|
|
|
|
const char *pname, const void *pval, int plen,
|
|
|
|
const char *prop, const void *val, int len,
|
|
|
|
int create);
|
|
|
|
void do_fixup_by_prop_u32(void *fdt,
|
|
|
|
const char *pname, const void *pval, int plen,
|
|
|
|
const char *prop, u32 val, int create);
|
|
|
|
void do_fixup_by_compat(void *fdt, const char *compat,
|
|
|
|
const char *prop, const void *val, int len, int create);
|
|
|
|
void do_fixup_by_compat_u32(void *fdt, const char *compat,
|
|
|
|
const char *prop, u32 val, int create);
|
2007-11-26 14:57:45 -06:00
|
|
|
int fdt_fixup_memory(void *blob, u64 start, u64 size);
|
2010-10-13 13:57:33 -06:00
|
|
|
int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks);
|
2008-08-19 15:41:18 -05:00
|
|
|
void fdt_fixup_ethernet(void *fdt);
|
2007-12-28 11:56:30 +01:00
|
|
|
int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
|
|
|
|
const void *val, int len, int create);
|
2008-01-07 13:31:19 -06:00
|
|
|
void fdt_fixup_qe_firmware(void *fdt);
|
2007-04-06 14:19:43 -04:00
|
|
|
|
2012-02-10 00:36:43 +00:00
|
|
|
#if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
|
2008-03-14 23:20:18 +03:00
|
|
|
void fdt_fixup_dr_usb(void *blob, bd_t *bd);
|
|
|
|
#else
|
|
|
|
static inline void fdt_fixup_dr_usb(void *blob, bd_t *bd) {}
|
2012-02-10 00:36:43 +00:00
|
|
|
#endif /* defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB) */
|
2008-03-14 23:20:18 +03:00
|
|
|
|
2010-06-01 12:24:27 -05:00
|
|
|
#if defined(CONFIG_SYS_FSL_SEC_COMPAT)
|
2008-06-16 15:55:53 -05:00
|
|
|
void fdt_fixup_crypto_node(void *blob, int sec_rev);
|
|
|
|
#else
|
|
|
|
static inline void fdt_fixup_crypto_node(void *blob, int sec_rev) {}
|
|
|
|
#endif
|
|
|
|
|
2008-10-22 23:33:56 -05:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
#include <pci.h>
|
|
|
|
int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose);
|
|
|
|
#endif
|
|
|
|
|
2007-07-10 20:40:39 -04:00
|
|
|
void ft_board_setup(void *blob, bd_t *bd);
|
2014-04-04 13:16:47 -04:00
|
|
|
/*
|
|
|
|
* The keystone2 SOC requires all 32 bit aliased addresses to be converted
|
|
|
|
* to their 36 physical format. This has to happen after all fdt nodes
|
|
|
|
* are added or modified by the image_setup_libfdt(). The ft_board_setup_ex()
|
|
|
|
* called at the end of the image_setup_libfdt() is to do that convertion.
|
|
|
|
*/
|
|
|
|
void ft_board_setup_ex(void *blob, bd_t *bd);
|
2007-07-10 20:40:39 -04:00
|
|
|
void ft_cpu_setup(void *blob, bd_t *bd);
|
|
|
|
void ft_pci_setup(void *blob, bd_t *bd);
|
|
|
|
|
2008-08-15 08:24:39 -05:00
|
|
|
void set_working_fdt_addr(void *addr);
|
2014-07-30 03:59:02 -06:00
|
|
|
int fdt_shrink_to_minimum(void *blob);
|
2011-05-03 13:35:10 -05:00
|
|
|
int fdt_increase_size(void *fdt, int add_len);
|
2008-08-15 08:24:39 -05:00
|
|
|
|
2010-09-16 14:01:53 +02:00
|
|
|
int fdt_fixup_nor_flash_size(void *blob);
|
2009-10-21 11:59:52 +02:00
|
|
|
|
2010-03-16 17:10:05 +01:00
|
|
|
void fdt_fixup_mtdparts(void *fdt, void *node_info, int node_info_size);
|
2010-03-30 10:19:26 -05:00
|
|
|
void fdt_del_node_and_alias(void *blob, const char *alias);
|
2013-01-16 14:00:11 +00:00
|
|
|
u64 fdt_translate_address(void *blob, int node_offset, const __be32 *in_addr);
|
2010-07-04 12:48:21 -05:00
|
|
|
int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
|
|
|
|
phys_addr_t compat_off);
|
2010-07-09 16:18:58 -05:00
|
|
|
int fdt_alloc_phandle(void *blob);
|
2011-08-01 00:23:23 -05:00
|
|
|
int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle);
|
2011-09-20 18:24:34 -05:00
|
|
|
unsigned int fdt_create_phandle(void *fdt, int nodeoffset);
|
2010-08-18 11:25:20 +02:00
|
|
|
int fdt_add_edid(void *blob, const char *compat, unsigned char *buf);
|
2010-03-16 17:10:05 +01:00
|
|
|
|
2011-05-03 13:24:07 -05:00
|
|
|
int fdt_verify_alias_address(void *fdt, int anode, const char *alias,
|
|
|
|
u64 addr);
|
|
|
|
u64 fdt_get_base_address(void *fdt, int node);
|
2014-04-11 17:09:41 +02:00
|
|
|
int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
|
|
|
|
uint64_t *addr, uint64_t *len);
|
2011-05-03 13:24:07 -05:00
|
|
|
|
2011-10-14 16:26:05 +08:00
|
|
|
enum fdt_status {
|
|
|
|
FDT_STATUS_OKAY,
|
|
|
|
FDT_STATUS_DISABLED,
|
|
|
|
FDT_STATUS_FAIL,
|
|
|
|
FDT_STATUS_FAIL_ERROR_CODE,
|
|
|
|
};
|
|
|
|
int fdt_set_node_status(void *fdt, int nodeoffset,
|
|
|
|
enum fdt_status status, unsigned int error_code);
|
|
|
|
static inline int fdt_status_okay(void *fdt, int nodeoffset)
|
|
|
|
{
|
|
|
|
return fdt_set_node_status(fdt, nodeoffset, FDT_STATUS_OKAY, 0);
|
|
|
|
}
|
|
|
|
static inline int fdt_status_disabled(void *fdt, int nodeoffset)
|
|
|
|
{
|
|
|
|
return fdt_set_node_status(fdt, nodeoffset, FDT_STATUS_DISABLED, 0);
|
|
|
|
}
|
2014-06-23 15:15:55 -07:00
|
|
|
static inline int fdt_status_fail(void *fdt, int nodeoffset)
|
|
|
|
{
|
|
|
|
return fdt_set_node_status(fdt, nodeoffset, FDT_STATUS_FAIL, 0);
|
|
|
|
}
|
2011-10-14 16:26:05 +08:00
|
|
|
|
2014-06-23 15:15:55 -07:00
|
|
|
int fdt_set_status_by_alias(void *fdt, const char *alias,
|
2011-10-14 16:26:05 +08:00
|
|
|
enum fdt_status status, unsigned int error_code);
|
2014-06-23 15:15:55 -07:00
|
|
|
static inline int fdt_status_okay_by_alias(void *fdt, const char *alias)
|
2011-10-14 16:26:05 +08:00
|
|
|
{
|
|
|
|
return fdt_set_status_by_alias(fdt, alias, FDT_STATUS_OKAY, 0);
|
|
|
|
}
|
2014-06-23 15:15:55 -07:00
|
|
|
static inline int fdt_status_disabled_by_alias(void *fdt, const char *alias)
|
2011-10-14 16:26:05 +08:00
|
|
|
{
|
|
|
|
return fdt_set_status_by_alias(fdt, alias, FDT_STATUS_DISABLED, 0);
|
|
|
|
}
|
2014-06-23 15:15:55 -07:00
|
|
|
static inline int fdt_status_fail_by_alias(void *fdt, const char *alias)
|
|
|
|
{
|
|
|
|
return fdt_set_status_by_alias(fdt, alias, FDT_STATUS_FAIL, 0);
|
|
|
|
}
|
2011-10-14 16:26:05 +08:00
|
|
|
|
2007-04-06 14:19:43 -04:00
|
|
|
#endif /* ifdef CONFIG_OF_LIBFDT */
|
2014-03-03 12:19:30 +01:00
|
|
|
|
|
|
|
#ifdef USE_HOSTCC
|
|
|
|
int fdtdec_get_int(const void *blob, int node, const char *prop_name,
|
|
|
|
int default_val);
|
|
|
|
#endif
|
2007-04-06 14:19:43 -04:00
|
|
|
#endif /* ifndef __FDT_SUPPORT_H */
|