fdt_sw.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. /*
  2. * libfdt - Flat Device Tree manipulation
  3. * Copyright (C) 2006 David Gibson, IBM Corporation.
  4. *
  5. * libfdt is dual licensed: you can use it either under the terms of
  6. * the GPL, or the BSD license, at your option.
  7. *
  8. * a) This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of the
  11. * License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public
  19. * License along with this library; if not, write to the Free
  20. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
  21. * MA 02110-1301 USA
  22. *
  23. * Alternatively,
  24. *
  25. * b) Redistribution and use in source and binary forms, with or
  26. * without modification, are permitted provided that the following
  27. * conditions are met:
  28. *
  29. * 1. Redistributions of source code must retain the above
  30. * copyright notice, this list of conditions and the following
  31. * disclaimer.
  32. * 2. Redistributions in binary form must reproduce the above
  33. * copyright notice, this list of conditions and the following
  34. * disclaimer in the documentation and/or other materials
  35. * provided with the distribution.
  36. *
  37. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  38. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  39. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  40. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  41. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  42. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  43. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  44. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  45. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  46. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  47. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  48. * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  49. * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  50. */
  51. #include "libfdt_env.h"
  52. #include <fdt.h>
  53. #include <libfdt.h>
  54. #include "libfdt_internal.h"
  55. static int check_header_sw(void *fdt)
  56. {
  57. if (fdt_magic(fdt) != SW_MAGIC)
  58. return -FDT_ERR_BADMAGIC;
  59. return 0;
  60. }
  61. static void *grab_space(void *fdt, int len)
  62. {
  63. int offset = fdt_size_dt_struct(fdt);
  64. int spaceleft;
  65. spaceleft = fdt_totalsize(fdt) - fdt_off_dt_struct(fdt)
  66. - fdt_size_dt_strings(fdt);
  67. if ((offset + len < offset) || (offset + len > spaceleft))
  68. return NULL;
  69. fdt_set_size_dt_struct(fdt, offset + len);
  70. return fdt_offset_ptr_w(fdt, offset, len);
  71. }
  72. int fdt_create(void *buf, int bufsize)
  73. {
  74. void *fdt = buf;
  75. if (bufsize < sizeof(struct fdt_header))
  76. return -FDT_ERR_NOSPACE;
  77. memset(buf, 0, bufsize);
  78. fdt_set_magic(fdt, SW_MAGIC);
  79. fdt_set_version(fdt, FDT_LAST_SUPPORTED_VERSION);
  80. fdt_set_last_comp_version(fdt, FDT_FIRST_SUPPORTED_VERSION);
  81. fdt_set_totalsize(fdt, bufsize);
  82. fdt_set_off_mem_rsvmap(fdt, ALIGN(sizeof(struct fdt_header),
  83. sizeof(struct fdt_reserve_entry)));
  84. fdt_set_off_dt_struct(fdt, fdt_off_mem_rsvmap(fdt));
  85. fdt_set_off_dt_strings(fdt, bufsize);
  86. return 0;
  87. }
  88. int fdt_add_reservemap_entry(void *fdt, uint64_t addr, uint64_t size)
  89. {
  90. struct fdt_reserve_entry *re;
  91. int err = check_header_sw(fdt);
  92. int offset;
  93. if (err)
  94. return err;
  95. if (fdt_size_dt_struct(fdt))
  96. return -FDT_ERR_BADSTATE;
  97. offset = fdt_off_dt_struct(fdt);
  98. if ((offset + sizeof(*re)) > fdt_totalsize(fdt))
  99. return -FDT_ERR_NOSPACE;
  100. re = (struct fdt_reserve_entry *)(fdt + offset);
  101. re->address = cpu_to_fdt64(addr);
  102. re->size = cpu_to_fdt64(size);
  103. fdt_set_off_dt_struct(fdt, offset + sizeof(*re));
  104. return 0;
  105. }
  106. int fdt_finish_reservemap(void *fdt)
  107. {
  108. return fdt_add_reservemap_entry(fdt, 0, 0);
  109. }
  110. int fdt_begin_node(void *fdt, const char *name)
  111. {
  112. struct fdt_node_header *nh;
  113. int err = check_header_sw(fdt);
  114. int namelen = strlen(name) + 1;
  115. if (err)
  116. return err;
  117. nh = grab_space(fdt, sizeof(*nh) + ALIGN(namelen, FDT_TAGSIZE));
  118. if (! nh)
  119. return -FDT_ERR_NOSPACE;
  120. nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
  121. memcpy(nh->name, name, namelen);
  122. return 0;
  123. }
  124. int fdt_end_node(void *fdt)
  125. {
  126. uint32_t *en;
  127. int err = check_header_sw(fdt);
  128. if (err)
  129. return err;
  130. en = grab_space(fdt, FDT_TAGSIZE);
  131. if (! en)
  132. return -FDT_ERR_NOSPACE;
  133. *en = cpu_to_fdt32(FDT_END_NODE);
  134. return 0;
  135. }
  136. static int find_add_string(void *fdt, const char *s)
  137. {
  138. char *strtab = (char *)fdt + fdt_totalsize(fdt);
  139. const char *p;
  140. int strtabsize = fdt_size_dt_strings(fdt);
  141. int len = strlen(s) + 1;
  142. int struct_top, offset;
  143. p = _fdt_find_string(strtab - strtabsize, strtabsize, s);
  144. if (p)
  145. return p - strtab;
  146. /* Add it */
  147. offset = -strtabsize - len;
  148. struct_top = fdt_off_dt_struct(fdt) + fdt_size_dt_struct(fdt);
  149. if (fdt_totalsize(fdt) + offset < struct_top)
  150. return 0; /* no more room :( */
  151. memcpy(strtab + offset, s, len);
  152. fdt_set_size_dt_strings(fdt, strtabsize + len);
  153. return offset;
  154. }
  155. int fdt_property(void *fdt, const char *name, const void *val, int len)
  156. {
  157. struct fdt_property *prop;
  158. int err = check_header_sw(fdt);
  159. int nameoff;
  160. if (err)
  161. return err;
  162. nameoff = find_add_string(fdt, name);
  163. if (nameoff == 0)
  164. return -FDT_ERR_NOSPACE;
  165. prop = grab_space(fdt, sizeof(*prop) + ALIGN(len, FDT_TAGSIZE));
  166. if (! prop)
  167. return -FDT_ERR_NOSPACE;
  168. prop->tag = cpu_to_fdt32(FDT_PROP);
  169. prop->nameoff = cpu_to_fdt32(nameoff);
  170. prop->len = cpu_to_fdt32(len);
  171. memcpy(prop->data, val, len);
  172. return 0;
  173. }
  174. int fdt_finish(void *fdt)
  175. {
  176. int err = check_header_sw(fdt);
  177. char *p = (char *)fdt;
  178. uint32_t *end;
  179. int oldstroffset, newstroffset;
  180. uint32_t tag;
  181. int offset, nextoffset;
  182. if (err)
  183. return err;
  184. /* Add terminator */
  185. end = grab_space(fdt, sizeof(*end));
  186. if (! end)
  187. return -FDT_ERR_NOSPACE;
  188. *end = cpu_to_fdt32(FDT_END);
  189. /* Relocate the string table */
  190. oldstroffset = fdt_totalsize(fdt) - fdt_size_dt_strings(fdt);
  191. newstroffset = fdt_off_dt_struct(fdt) + fdt_size_dt_struct(fdt);
  192. memmove(p + newstroffset, p + oldstroffset, fdt_size_dt_strings(fdt));
  193. fdt_set_off_dt_strings(fdt, newstroffset);
  194. /* Walk the structure, correcting string offsets */
  195. offset = 0;
  196. while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
  197. if (tag == FDT_PROP) {
  198. struct fdt_property *prop =
  199. fdt_offset_ptr_w(fdt, offset, sizeof(*prop));
  200. int nameoff;
  201. if (! prop)
  202. return -FDT_ERR_BADSTRUCTURE;
  203. nameoff = fdt32_to_cpu(prop->nameoff);
  204. nameoff += fdt_size_dt_strings(fdt);
  205. prop->nameoff = cpu_to_fdt32(nameoff);
  206. }
  207. offset = nextoffset;
  208. }
  209. /* Finally, adjust the header */
  210. fdt_set_totalsize(fdt, newstroffset + fdt_size_dt_strings(fdt));
  211. fdt_set_magic(fdt, FDT_MAGIC);
  212. return 0;
  213. }