Rob Herring | af6074f | 2017-12-27 12:55:14 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Grant Likely | d8678b5 | 2009-10-15 10:57:53 -0600 | [diff] [blame] | 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 |
Grant Likely | d8678b5 | 2009-10-15 10:57:53 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _LINUX_OF_FDT_H |
| 10 | #define _LINUX_OF_FDT_H |
| 11 | |
Grant Likely | 8482f56 | 2009-10-15 10:58:04 -0600 | [diff] [blame] | 12 | #include <linux/types.h> |
| 13 | #include <linux/init.h> |
Leif Lindholm | d503187 | 2016-09-27 23:54:12 +0300 | [diff] [blame] | 14 | #include <linux/errno.h> |
Grant Likely | 8482f56 | 2009-10-15 10:58:04 -0600 | [diff] [blame] | 15 | |
Grant Likely | d8678b5 | 2009-10-15 10:57:53 -0600 | [diff] [blame] | 16 | /* Definitions used by the flattened device tree */ |
| 17 | #define OF_DT_HEADER 0xd00dfeed /* marker */ |
Grant Likely | d8678b5 | 2009-10-15 10:57:53 -0600 | [diff] [blame] | 18 | |
Grant Likely | d45d94f | 2009-10-15 10:57:55 -0600 | [diff] [blame] | 19 | #ifndef __ASSEMBLY__ |
Grant Likely | d45d94f | 2009-10-15 10:57:55 -0600 | [diff] [blame] | 20 | |
Grant Likely | cf32eb8 | 2010-04-13 16:12:25 -0700 | [diff] [blame] | 21 | #if defined(CONFIG_OF_FLATTREE) |
Stephen Neuendorffer | 9706a36 | 2010-11-18 15:54:59 -0800 | [diff] [blame] | 22 | |
Grant Likely | a081748 | 2011-01-08 21:42:42 -0700 | [diff] [blame] | 23 | struct device_node; |
| 24 | |
Stephen Neuendorffer | 9706a36 | 2010-11-18 15:54:59 -0800 | [diff] [blame] | 25 | /* For scanning an arbitrary device-tree at any time */ |
Gavin Shan | 8326241 | 2016-05-03 23:22:51 +1000 | [diff] [blame] | 26 | extern void *of_fdt_unflatten_tree(const unsigned long *blob, |
| 27 | struct device_node *dad, |
| 28 | struct device_node **mynodes); |
Stephen Neuendorffer | 9706a36 | 2010-11-18 15:54:59 -0800 | [diff] [blame] | 29 | |
Grant Likely | e169cfb | 2009-11-23 14:53:09 -0700 | [diff] [blame] | 30 | /* TBD: Temporary export of fdt globals - remove when code fully merged */ |
Grant Likely | f00abd9 | 2009-11-24 03:27:10 -0700 | [diff] [blame] | 31 | extern int __initdata dt_root_addr_cells; |
| 32 | extern int __initdata dt_root_size_cells; |
Rob Herring | 1daa0c4 | 2014-03-31 15:25:04 -0500 | [diff] [blame] | 33 | extern void *initial_boot_params; |
Grant Likely | e169cfb | 2009-11-23 14:53:09 -0700 | [diff] [blame] | 34 | |
Rob Herring | ccf3356 | 2014-04-03 13:38:32 -0500 | [diff] [blame] | 35 | extern char __dtb_start[]; |
| 36 | extern char __dtb_end[]; |
| 37 | |
Geert Uytterhoeven | f347c36 | 2018-01-04 10:08:36 +0100 | [diff] [blame] | 38 | /* Other Prototypes */ |
| 39 | extern u64 of_flat_dt_translate_address(unsigned long node); |
| 40 | extern void of_fdt_limit_memory(int limit); |
| 41 | #endif /* CONFIG_OF_FLATTREE */ |
| 42 | |
| 43 | #ifdef CONFIG_OF_EARLY_FLATTREE |
Grant Likely | 8482f56 | 2009-10-15 10:58:04 -0600 | [diff] [blame] | 44 | /* For scanning the flat device-tree at boot time */ |
Grant Likely | 31a6a87 | 2009-11-23 19:49:38 -0700 | [diff] [blame] | 45 | extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname, |
| 46 | int depth, void *data), |
| 47 | void *data); |
Nicholas Piggin | ea47dd1 | 2017-04-19 05:12:18 +1000 | [diff] [blame] | 48 | extern 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); |
Shannon Zhao | 9c60986 | 2016-04-07 20:03:33 +0800 | [diff] [blame] | 53 | extern int of_get_flat_dt_subnode_by_name(unsigned long node, |
| 54 | const char *uname); |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 55 | extern const void *of_get_flat_dt_prop(unsigned long node, const char *name, |
| 56 | int *size); |
Grant Likely | 31a6a87 | 2009-11-23 19:49:38 -0700 | [diff] [blame] | 57 | extern int of_flat_dt_is_compatible(unsigned long node, const char *name); |
| 58 | extern unsigned long of_get_flat_dt_root(void); |
Nicholas Piggin | ea47dd1 | 2017-04-19 05:12:18 +1000 | [diff] [blame] | 59 | extern uint32_t of_get_flat_dt_phandle(unsigned long node); |
Grant Likely | 32c9768 | 2010-10-20 11:45:14 -0600 | [diff] [blame] | 60 | |
Grant Likely | 86e0322 | 2009-12-10 23:42:21 -0700 | [diff] [blame] | 61 | extern int early_init_dt_scan_chosen(unsigned long node, const char *uname, |
| 62 | int depth, void *data); |
Grant Likely | 51975db | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 63 | extern int early_init_dt_scan_memory(unsigned long node, const char *uname, |
| 64 | int depth, void *data); |
Leif Lindholm | d503187 | 2016-09-27 23:54:12 +0300 | [diff] [blame] | 65 | extern int early_init_dt_scan_chosen_stdout(void); |
Marek Szyprowski | e8d9d1f | 2014-02-28 14:42:47 +0100 | [diff] [blame] | 66 | extern void early_init_fdt_scan_reserved_mem(void); |
Ard Biesheuvel | 24bbd92 | 2015-06-01 13:40:31 +0200 | [diff] [blame] | 67 | extern void early_init_fdt_reserve_self(void); |
Yi Wang | 89f579c | 2018-11-22 10:04:09 +0800 | [diff] [blame] | 68 | extern void __init early_init_dt_scan_chosen_arch(unsigned long node); |
Grant Likely | 51975db | 2010-02-01 21:34:14 -0700 | [diff] [blame] | 69 | extern void early_init_dt_add_memory_arch(u64 base, u64 size); |
Reza Arbab | 41a9ada | 2016-12-12 16:43:02 -0800 | [diff] [blame] | 70 | extern int early_init_dt_mark_hotplug_memory_arch(u64 base, u64 size); |
Marek Szyprowski | e8d9d1f | 2014-02-28 14:42:47 +0100 | [diff] [blame] | 71 | extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size, |
| 72 | bool no_map); |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 73 | extern u64 dt_mem_next_cell(int s, const __be32 **cellp); |
Grant Likely | 8482f56 | 2009-10-15 10:58:04 -0600 | [diff] [blame] | 74 | |
Grant Likely | f00abd9 | 2009-11-24 03:27:10 -0700 | [diff] [blame] | 75 | /* Early flat tree scan hooks */ |
| 76 | extern int early_init_dt_scan_root(unsigned long node, const char *uname, |
| 77 | int depth, void *data); |
| 78 | |
Rob Herring | 0288ffcb | 2013-08-26 09:47:40 -0500 | [diff] [blame] | 79 | extern bool early_init_dt_scan(void *params); |
Laura Abbott | 4972a74 | 2014-07-15 10:03:34 -0700 | [diff] [blame] | 80 | extern bool early_init_dt_verify(void *params); |
| 81 | extern void early_init_dt_scan_nodes(void); |
Rob Herring | 0288ffcb | 2013-08-26 09:47:40 -0500 | [diff] [blame] | 82 | |
Rob Herring | 6a903a2 | 2013-08-27 21:41:56 -0500 | [diff] [blame] | 83 | extern const char *of_flat_dt_get_machine_name(void); |
| 84 | extern const void *of_flat_dt_match_machine(const void *default_match, |
| 85 | const void * (*get_next_compat)(const char * const**)); |
| 86 | |
Grant Likely | 82b2928 | 2009-10-15 10:58:07 -0600 | [diff] [blame] | 87 | /* Other Prototypes */ |
Grant Likely | 82b2928 | 2009-10-15 10:58:07 -0600 | [diff] [blame] | 88 | extern void unflatten_device_tree(void); |
Rob Herring | a8bf752 | 2013-08-26 11:22:45 -0500 | [diff] [blame] | 89 | extern void unflatten_and_copy_device_tree(void); |
Grant Likely | 82b2928 | 2009-10-15 10:58:07 -0600 | [diff] [blame] | 90 | extern void early_init_devtree(void *); |
Kevin Hao | b27652d | 2013-12-24 15:12:08 +0800 | [diff] [blame] | 91 | extern void early_get_first_memblock_info(void *, phys_addr_t *); |
Geert Uytterhoeven | f347c36 | 2018-01-04 10:08:36 +0100 | [diff] [blame] | 92 | #else /* CONFIG_OF_EARLY_FLATTREE */ |
Leif Lindholm | d503187 | 2016-09-27 23:54:12 +0300 | [diff] [blame] | 93 | static inline int early_init_dt_scan_chosen_stdout(void) { return -ENODEV; } |
Marek Szyprowski | e8d9d1f | 2014-02-28 14:42:47 +0100 | [diff] [blame] | 94 | static inline void early_init_fdt_scan_reserved_mem(void) {} |
Ard Biesheuvel | 24bbd92 | 2015-06-01 13:40:31 +0200 | [diff] [blame] | 95 | static inline void early_init_fdt_reserve_self(void) {} |
Rob Herring | 6a903a2 | 2013-08-27 21:41:56 -0500 | [diff] [blame] | 96 | static inline const char *of_flat_dt_get_machine_name(void) { return NULL; } |
Grant Likely | 8bfe9b5 | 2010-04-13 16:12:26 -0700 | [diff] [blame] | 97 | static inline void unflatten_device_tree(void) {} |
Rob Herring | a8bf752 | 2013-08-26 11:22:45 -0500 | [diff] [blame] | 98 | static inline void unflatten_and_copy_device_tree(void) {} |
Geert Uytterhoeven | f347c36 | 2018-01-04 10:08:36 +0100 | [diff] [blame] | 99 | #endif /* CONFIG_OF_EARLY_FLATTREE */ |
Grant Likely | 82b2928 | 2009-10-15 10:58:07 -0600 | [diff] [blame] | 100 | |
Grant Likely | d45d94f | 2009-10-15 10:57:55 -0600 | [diff] [blame] | 101 | #endif /* __ASSEMBLY__ */ |
Grant Likely | d8678b5 | 2009-10-15 10:57:53 -0600 | [diff] [blame] | 102 | #endif /* _LINUX_OF_FDT_H */ |