]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/of_fdt.h
net: rtnetlink: validate IFLA_MTU attribute in rtnl_create_link()
[mirror_ubuntu-bionic-kernel.git] / include / linux / of_fdt.h
CommitLineData
d8678b58
GL
1/*
2 * Definitions for working with the Flattened Device Tree data format
3 *
4 * Copyright 2009 Benjamin Herrenschmidt, IBM Corp
5 * benh@kernel.crashing.org
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
10 */
11
12#ifndef _LINUX_OF_FDT_H
13#define _LINUX_OF_FDT_H
14
8482f568
GL
15#include <linux/types.h>
16#include <linux/init.h>
d503187b 17#include <linux/errno.h>
8482f568 18
d8678b58
GL
19/* Definitions used by the flattened device tree */
20#define OF_DT_HEADER 0xd00dfeed /* marker */
d8678b58 21
d45d94f6 22#ifndef __ASSEMBLY__
d45d94f6 23
cf32eb89 24#if defined(CONFIG_OF_FLATTREE)
9706a36e 25
a0817487
GL
26struct device_node;
27
9706a36e 28/* For scanning an arbitrary device-tree at any time */
c972de14
RH
29extern char *of_fdt_get_string(const void *blob, u32 offset);
30extern void *of_fdt_get_property(const void *blob,
9706a36e
SN
31 unsigned long node,
32 const char *name,
9d0c4dfe 33 int *size);
cc783786
KC
34extern bool of_fdt_is_big_endian(const void *blob,
35 unsigned long node);
c972de14 36extern int of_fdt_match(const void *blob, unsigned long node,
7b482c83 37 const char *const *compat);
83262418
GS
38extern void *of_fdt_unflatten_tree(const unsigned long *blob,
39 struct device_node *dad,
40 struct device_node **mynodes);
9706a36e 41
e169cfbe 42/* TBD: Temporary export of fdt globals - remove when code fully merged */
f00abd94
GL
43extern int __initdata dt_root_addr_cells;
44extern int __initdata dt_root_size_cells;
1daa0c4c 45extern void *initial_boot_params;
e169cfbe 46
ccf3356e
RH
47extern char __dtb_start[];
48extern char __dtb_end[];
49
8482f568 50/* For scanning the flat device-tree at boot time */
31a6a87d
GL
51extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
52 int depth, void *data),
53 void *data);
ea47dd19
NP
54extern int of_scan_flat_dt_subnodes(unsigned long node,
55 int (*it)(unsigned long node,
56 const char *uname,
57 void *data),
58 void *data);
9c609868
SZ
59extern int of_get_flat_dt_subnode_by_name(unsigned long node,
60 const char *uname);
9d0c4dfe
RH
61extern const void *of_get_flat_dt_prop(unsigned long node, const char *name,
62 int *size);
31a6a87d 63extern int of_flat_dt_is_compatible(unsigned long node, const char *name);
7b482c83 64extern int of_flat_dt_match(unsigned long node, const char *const *matches);
31a6a87d 65extern unsigned long of_get_flat_dt_root(void);
c0556d3f 66extern int of_get_flat_dt_size(void);
ea47dd19 67extern uint32_t of_get_flat_dt_phandle(unsigned long node);
32c97689 68
86e03221
GL
69extern int early_init_dt_scan_chosen(unsigned long node, const char *uname,
70 int depth, void *data);
51975db0
GL
71extern int early_init_dt_scan_memory(unsigned long node, const char *uname,
72 int depth, void *data);
d503187b 73extern int early_init_dt_scan_chosen_stdout(void);
e8d9d1f5 74extern void early_init_fdt_scan_reserved_mem(void);
24bbd929 75extern void early_init_fdt_reserve_self(void);
51975db0 76extern void early_init_dt_add_memory_arch(u64 base, u64 size);
41a9ada3 77extern int early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size);
e8d9d1f5
MS
78extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size,
79 bool no_map);
fe55c184 80extern void * early_init_dt_alloc_memory_arch(u64 size, u64 align);
9d0c4dfe 81extern u64 dt_mem_next_cell(int s, const __be32 **cellp);
8482f568 82
f00abd94
GL
83/* Early flat tree scan hooks */
84extern int early_init_dt_scan_root(unsigned long node, const char *uname,
85 int depth, void *data);
86
0288ffcb 87extern bool early_init_dt_scan(void *params);
4972a74b
LA
88extern bool early_init_dt_verify(void *params);
89extern void early_init_dt_scan_nodes(void);
0288ffcb 90
6a903a25
RH
91extern const char *of_flat_dt_get_machine_name(void);
92extern const void *of_flat_dt_match_machine(const void *default_match,
93 const void * (*get_next_compat)(const char * const**));
94
82b2928c 95/* Other Prototypes */
82b2928c 96extern void unflatten_device_tree(void);
a8bf7527 97extern void unflatten_and_copy_device_tree(void);
82b2928c 98extern void early_init_devtree(void *);
b27652dd 99extern void early_get_first_memblock_info(void *, phys_addr_t *);
c90fe9c0 100extern u64 of_flat_dt_translate_address(unsigned long node);
704033ce 101extern void of_fdt_limit_memory(int limit);
8bfe9b5c 102#else /* CONFIG_OF_FLATTREE */
d503187b 103static inline int early_init_dt_scan_chosen_stdout(void) { return -ENODEV; }
e8d9d1f5 104static inline void early_init_fdt_scan_reserved_mem(void) {}
24bbd929 105static inline void early_init_fdt_reserve_self(void) {}
6a903a25 106static inline const char *of_flat_dt_get_machine_name(void) { return NULL; }
8bfe9b5c 107static inline void unflatten_device_tree(void) {}
a8bf7527 108static inline void unflatten_and_copy_device_tree(void) {}
cf32eb89 109#endif /* CONFIG_OF_FLATTREE */
82b2928c 110
d45d94f6 111#endif /* __ASSEMBLY__ */
d8678b58 112#endif /* _LINUX_OF_FDT_H */