]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/of_fdt.h
nfs: don't atempt blocking locks on nfs reexports
[mirror_ubuntu-jammy-kernel.git] / include / linux / of_fdt.h
CommitLineData
af6074fc 1/* SPDX-License-Identifier: GPL-2.0 */
d8678b58
GL
2/*
3 * Definitions for working with the Flattened Device Tree data format
4 *
5 * Copyright 2009 Benjamin Herrenschmidt, IBM Corp
6 * benh@kernel.crashing.org
d8678b58
GL
7 */
8
9#ifndef _LINUX_OF_FDT_H
10#define _LINUX_OF_FDT_H
11
8482f568
GL
12#include <linux/types.h>
13#include <linux/init.h>
d503187b 14#include <linux/errno.h>
8482f568 15
d8678b58
GL
16/* Definitions used by the flattened device tree */
17#define OF_DT_HEADER 0xd00dfeed /* marker */
d8678b58 18
d45d94f6 19#ifndef __ASSEMBLY__
d45d94f6 20
cf32eb89 21#if defined(CONFIG_OF_FLATTREE)
9706a36e 22
a0817487
GL
23struct device_node;
24
9706a36e 25/* For scanning an arbitrary device-tree at any time */
83262418
GS
26extern void *of_fdt_unflatten_tree(const unsigned long *blob,
27 struct device_node *dad,
28 struct device_node **mynodes);
9706a36e 29
e169cfbe 30/* TBD: Temporary export of fdt globals - remove when code fully merged */
f00abd94
GL
31extern int __initdata dt_root_addr_cells;
32extern int __initdata dt_root_size_cells;
1daa0c4c 33extern void *initial_boot_params;
e169cfbe 34
ccf3356e
RH
35extern char __dtb_start[];
36extern char __dtb_end[];
37
f347c367
GU
38/* Other Prototypes */
39extern u64 of_flat_dt_translate_address(unsigned long node);
40extern void of_fdt_limit_memory(int limit);
41#endif /* CONFIG_OF_FLATTREE */
42
43#ifdef CONFIG_OF_EARLY_FLATTREE
8482f568 44/* For scanning the flat device-tree at boot time */
31a6a87d
GL
45extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
46 int depth, void *data),
47 void *data);
ea47dd19
NP
48extern int of_scan_flat_dt_subnodes(unsigned long node,
49 int (*it)(unsigned long node,
50 const char *uname,
51 void *data),
52 void *data);
9c609868
SZ
53extern int of_get_flat_dt_subnode_by_name(unsigned long node,
54 const char *uname);
9d0c4dfe
RH
55extern const void *of_get_flat_dt_prop(unsigned long node, const char *name,
56 int *size);
31a6a87d
GL
57extern int of_flat_dt_is_compatible(unsigned long node, const char *name);
58extern unsigned long of_get_flat_dt_root(void);
ea47dd19 59extern uint32_t of_get_flat_dt_phandle(unsigned long node);
32c97689 60
86e03221
GL
61extern int early_init_dt_scan_chosen(unsigned long node, const char *uname,
62 int depth, void *data);
51975db0
GL
63extern int early_init_dt_scan_memory(unsigned long node, const char *uname,
64 int depth, void *data);
d503187b 65extern int early_init_dt_scan_chosen_stdout(void);
e8d9d1f5 66extern void early_init_fdt_scan_reserved_mem(void);
24bbd929 67extern void early_init_fdt_reserve_self(void);
89f579ce 68extern void __init early_init_dt_scan_chosen_arch(unsigned long node);
51975db0 69extern void early_init_dt_add_memory_arch(u64 base, u64 size);
41a9ada3 70extern int early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size);
e8d9d1f5
MS
71extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size,
72 bool no_map);
9d0c4dfe 73extern u64 dt_mem_next_cell(int s, const __be32 **cellp);
8482f568 74
f00abd94
GL
75/* Early flat tree scan hooks */
76extern int early_init_dt_scan_root(unsigned long node, const char *uname,
77 int depth, void *data);
78
0288ffcb 79extern bool early_init_dt_scan(void *params);
4972a74b
LA
80extern bool early_init_dt_verify(void *params);
81extern void early_init_dt_scan_nodes(void);
0288ffcb 82
6a903a25
RH
83extern const char *of_flat_dt_get_machine_name(void);
84extern const void *of_flat_dt_match_machine(const void *default_match,
85 const void * (*get_next_compat)(const char * const**));
86
82b2928c 87/* Other Prototypes */
82b2928c 88extern void unflatten_device_tree(void);
a8bf7527 89extern void unflatten_and_copy_device_tree(void);
82b2928c 90extern void early_init_devtree(void *);
b27652dd 91extern void early_get_first_memblock_info(void *, phys_addr_t *);
f347c367 92#else /* CONFIG_OF_EARLY_FLATTREE */
d503187b 93static inline int early_init_dt_scan_chosen_stdout(void) { return -ENODEV; }
e8d9d1f5 94static inline void early_init_fdt_scan_reserved_mem(void) {}
24bbd929 95static inline void early_init_fdt_reserve_self(void) {}
6a903a25 96static inline const char *of_flat_dt_get_machine_name(void) { return NULL; }
8bfe9b5c 97static inline void unflatten_device_tree(void) {}
a8bf7527 98static inline void unflatten_and_copy_device_tree(void) {}
f347c367 99#endif /* CONFIG_OF_EARLY_FLATTREE */
82b2928c 100
d45d94f6 101#endif /* __ASSEMBLY__ */
d8678b58 102#endif /* _LINUX_OF_FDT_H */