of_fdt.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. #ifndef _LINUX_OF_FDT_H
  12. #define _LINUX_OF_FDT_H
  13. #include <linux/types.h>
  14. #include <linux/init.h>
  15. /* Definitions used by the flattened device tree */
  16. #define OF_DT_HEADER 0xd00dfeed /* marker */
  17. #ifndef __ASSEMBLY__
  18. #if defined(CONFIG_OF_FLATTREE)
  19. struct device_node;
  20. /* For scanning an arbitrary device-tree at any time */
  21. extern char *of_fdt_get_string(const void *blob, u32 offset);
  22. extern void *of_fdt_get_property(const void *blob,
  23. unsigned long node,
  24. const char *name,
  25. int *size);
  26. extern int of_fdt_is_compatible(const void *blob,
  27. unsigned long node,
  28. const char *compat);
  29. extern int of_fdt_match(const void *blob, unsigned long node,
  30. const char *const *compat);
  31. extern void of_fdt_unflatten_tree(unsigned long *blob,
  32. struct device_node **mynodes);
  33. /* TBD: Temporary export of fdt globals - remove when code fully merged */
  34. extern int __initdata dt_root_addr_cells;
  35. extern int __initdata dt_root_size_cells;
  36. extern void *initial_boot_params;
  37. extern char __dtb_start[];
  38. extern char __dtb_end[];
  39. /* For scanning the flat device-tree at boot time */
  40. extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
  41. int depth, void *data),
  42. void *data);
  43. extern const void *of_get_flat_dt_prop(unsigned long node, const char *name,
  44. int *size);
  45. extern int of_flat_dt_is_compatible(unsigned long node, const char *name);
  46. extern int of_flat_dt_match(unsigned long node, const char *const *matches);
  47. extern unsigned long of_get_flat_dt_root(void);
  48. extern int of_get_flat_dt_size(void);
  49. /*
  50. * early_init_dt_scan_chosen - scan the device tree for ramdisk and bootargs
  51. *
  52. * The boot arguments will be placed into the memory pointed to by @data.
  53. * That memory should be COMMAND_LINE_SIZE big and initialized to be a valid
  54. * (possibly empty) string. Logic for what will be in @data after this
  55. * function finishes:
  56. *
  57. * - CONFIG_CMDLINE_FORCE=true
  58. * CONFIG_CMDLINE
  59. * - CONFIG_CMDLINE_EXTEND=true, @data is non-empty string
  60. * @data + dt bootargs (even if dt bootargs are empty)
  61. * - CONFIG_CMDLINE_EXTEND=true, @data is empty string
  62. * CONFIG_CMDLINE + dt bootargs (even if dt bootargs are empty)
  63. * - CMDLINE_FROM_BOOTLOADER=true, dt bootargs=non-empty:
  64. * dt bootargs
  65. * - CMDLINE_FROM_BOOTLOADER=true, dt bootargs=empty, @data is non-empty string
  66. * @data is left unchanged
  67. * - CMDLINE_FROM_BOOTLOADER=true, dt bootargs=empty, @data is empty string
  68. * CONFIG_CMDLINE (or "" if that's not defined)
  69. */
  70. extern int early_init_dt_scan_chosen(unsigned long node, const char *uname,
  71. int depth, void *data);
  72. extern int early_init_dt_scan_memory(unsigned long node, const char *uname,
  73. int depth, void *data);
  74. extern void early_init_fdt_scan_reserved_mem(void);
  75. extern void early_init_dt_add_memory_arch(u64 base, u64 size);
  76. extern int early_init_dt_reserve_memory_arch(phys_addr_t base, phys_addr_t size,
  77. bool no_map);
  78. extern void * early_init_dt_alloc_memory_arch(u64 size, u64 align);
  79. extern u64 dt_mem_next_cell(int s, const __be32 **cellp);
  80. /* Early flat tree scan hooks */
  81. extern int early_init_dt_scan_root(unsigned long node, const char *uname,
  82. int depth, void *data);
  83. extern bool early_init_dt_scan(void *params);
  84. extern bool early_init_dt_verify(void *params);
  85. extern void early_init_dt_scan_nodes(void);
  86. extern const char *of_flat_dt_get_machine_name(void);
  87. extern const void *of_flat_dt_match_machine(const void *default_match,
  88. const void * (*get_next_compat)(const char * const**));
  89. /* Other Prototypes */
  90. extern void unflatten_device_tree(void);
  91. extern void unflatten_and_copy_device_tree(void);
  92. extern void early_init_devtree(void *);
  93. extern void early_get_first_memblock_info(void *, phys_addr_t *);
  94. extern u64 fdt_translate_address(const void *blob, int node_offset);
  95. extern void of_fdt_limit_memory(int limit);
  96. #else /* CONFIG_OF_FLATTREE */
  97. static inline void early_init_fdt_scan_reserved_mem(void) {}
  98. static inline const char *of_flat_dt_get_machine_name(void) { return NULL; }
  99. static inline void unflatten_device_tree(void) {}
  100. static inline void unflatten_and_copy_device_tree(void) {}
  101. #endif /* CONFIG_OF_FLATTREE */
  102. #endif /* __ASSEMBLY__ */
  103. #endif /* _LINUX_OF_FDT_H */