]>
Commit | Line | Data |
---|---|---|
f652e6af AJ |
1 | /* |
2 | * Functions to help device tree manipulation using libfdt. | |
3 | * It also provides functions to read entries from device tree proc | |
4 | * interface. | |
5 | * | |
6 | * Copyright 2008 IBM Corporation. | |
7 | * Authors: Jerone Young <[email protected]> | |
8 | * Hollis Blanchard <[email protected]> | |
9 | * | |
10 | * This work is licensed under the GNU GPL license version 2 or later. | |
11 | * | |
12 | */ | |
13 | ||
14 | #include <stdio.h> | |
15 | #include <sys/types.h> | |
16 | #include <sys/stat.h> | |
17 | #include <fcntl.h> | |
18 | #include <unistd.h> | |
19 | #include <stdlib.h> | |
20 | ||
21 | #include "config.h" | |
22 | #include "qemu-common.h" | |
db013f81 | 23 | #include "qemu/error-report.h" |
9c17d615 | 24 | #include "sysemu/device_tree.h" |
2ff3de68 | 25 | #include "sysemu/sysemu.h" |
39b7f20e | 26 | #include "hw/loader.h" |
6cabe7fa | 27 | #include "hw/boards.h" |
1de7afc9 | 28 | #include "qemu/config-file.h" |
f652e6af AJ |
29 | |
30 | #include <libfdt.h> | |
31 | ||
ce36252c AG |
32 | #define FDT_MAX_SIZE 0x10000 |
33 | ||
34 | void *create_device_tree(int *sizep) | |
35 | { | |
36 | void *fdt; | |
37 | int ret; | |
38 | ||
39 | *sizep = FDT_MAX_SIZE; | |
40 | fdt = g_malloc0(FDT_MAX_SIZE); | |
41 | ret = fdt_create(fdt, FDT_MAX_SIZE); | |
42 | if (ret < 0) { | |
43 | goto fail; | |
44 | } | |
ef6de70e PM |
45 | ret = fdt_finish_reservemap(fdt); |
46 | if (ret < 0) { | |
47 | goto fail; | |
48 | } | |
ce36252c AG |
49 | ret = fdt_begin_node(fdt, ""); |
50 | if (ret < 0) { | |
51 | goto fail; | |
52 | } | |
53 | ret = fdt_end_node(fdt); | |
54 | if (ret < 0) { | |
55 | goto fail; | |
56 | } | |
57 | ret = fdt_finish(fdt); | |
58 | if (ret < 0) { | |
59 | goto fail; | |
60 | } | |
61 | ret = fdt_open_into(fdt, fdt, *sizep); | |
62 | if (ret) { | |
508e221f | 63 | error_report("Unable to copy device tree in memory"); |
ce36252c AG |
64 | exit(1); |
65 | } | |
66 | ||
67 | return fdt; | |
68 | fail: | |
508e221f | 69 | error_report("%s Couldn't create dt: %s", __func__, fdt_strerror(ret)); |
ce36252c AG |
70 | exit(1); |
71 | } | |
72 | ||
7ec632b4 | 73 | void *load_device_tree(const char *filename_path, int *sizep) |
f652e6af | 74 | { |
7ec632b4 | 75 | int dt_size; |
f652e6af | 76 | int dt_file_load_size; |
f652e6af | 77 | int ret; |
7ec632b4 | 78 | void *fdt = NULL; |
f652e6af | 79 | |
7ec632b4 PB |
80 | *sizep = 0; |
81 | dt_size = get_image_size(filename_path); | |
82 | if (dt_size < 0) { | |
db013f81 LL |
83 | error_report("Unable to get size of device tree file '%s'", |
84 | filename_path); | |
f652e6af AJ |
85 | goto fail; |
86 | } | |
87 | ||
7ec632b4 | 88 | /* Expand to 2x size to give enough room for manipulation. */ |
ded57c5f | 89 | dt_size += 10000; |
7ec632b4 | 90 | dt_size *= 2; |
f652e6af | 91 | /* First allocate space in qemu for device tree */ |
7267c094 | 92 | fdt = g_malloc0(dt_size); |
f652e6af | 93 | |
7ec632b4 PB |
94 | dt_file_load_size = load_image(filename_path, fdt); |
95 | if (dt_file_load_size < 0) { | |
db013f81 LL |
96 | error_report("Unable to open device tree file '%s'", |
97 | filename_path); | |
7ec632b4 PB |
98 | goto fail; |
99 | } | |
f652e6af | 100 | |
7ec632b4 | 101 | ret = fdt_open_into(fdt, fdt, dt_size); |
f652e6af | 102 | if (ret) { |
db013f81 | 103 | error_report("Unable to copy device tree in memory"); |
f652e6af AJ |
104 | goto fail; |
105 | } | |
106 | ||
107 | /* Check sanity of device tree */ | |
108 | if (fdt_check_header(fdt)) { | |
db013f81 LL |
109 | error_report("Device tree file loaded into memory is invalid: %s", |
110 | filename_path); | |
f652e6af AJ |
111 | goto fail; |
112 | } | |
7ec632b4 | 113 | *sizep = dt_size; |
f652e6af AJ |
114 | return fdt; |
115 | ||
116 | fail: | |
7267c094 | 117 | g_free(fdt); |
f652e6af AJ |
118 | return NULL; |
119 | } | |
120 | ||
ccbcfedd | 121 | static int findnode_nofail(void *fdt, const char *node_path) |
f652e6af AJ |
122 | { |
123 | int offset; | |
124 | ||
125 | offset = fdt_path_offset(fdt, node_path); | |
ccbcfedd | 126 | if (offset < 0) { |
508e221f LL |
127 | error_report("%s Couldn't find node %s: %s", __func__, node_path, |
128 | fdt_strerror(offset)); | |
ccbcfedd AG |
129 | exit(1); |
130 | } | |
131 | ||
132 | return offset; | |
133 | } | |
134 | ||
5a4348d1 | 135 | int qemu_fdt_setprop(void *fdt, const char *node_path, |
be5907f2 | 136 | const char *property, const void *val, int size) |
ccbcfedd AG |
137 | { |
138 | int r; | |
139 | ||
be5907f2 | 140 | r = fdt_setprop(fdt, findnode_nofail(fdt, node_path), property, val, size); |
ccbcfedd | 141 | if (r < 0) { |
508e221f LL |
142 | error_report("%s: Couldn't set %s/%s: %s", __func__, node_path, |
143 | property, fdt_strerror(r)); | |
ccbcfedd AG |
144 | exit(1); |
145 | } | |
f652e6af | 146 | |
ccbcfedd | 147 | return r; |
f652e6af AJ |
148 | } |
149 | ||
5a4348d1 PC |
150 | int qemu_fdt_setprop_cell(void *fdt, const char *node_path, |
151 | const char *property, uint32_t val) | |
f652e6af | 152 | { |
ccbcfedd | 153 | int r; |
f652e6af | 154 | |
ccbcfedd AG |
155 | r = fdt_setprop_cell(fdt, findnode_nofail(fdt, node_path), property, val); |
156 | if (r < 0) { | |
508e221f LL |
157 | error_report("%s: Couldn't set %s/%s = %#08x: %s", __func__, |
158 | node_path, property, val, fdt_strerror(r)); | |
ccbcfedd AG |
159 | exit(1); |
160 | } | |
f652e6af | 161 | |
ccbcfedd | 162 | return r; |
f652e6af AJ |
163 | } |
164 | ||
5a4348d1 PC |
165 | int qemu_fdt_setprop_u64(void *fdt, const char *node_path, |
166 | const char *property, uint64_t val) | |
bb28eb37 AG |
167 | { |
168 | val = cpu_to_be64(val); | |
5a4348d1 | 169 | return qemu_fdt_setprop(fdt, node_path, property, &val, sizeof(val)); |
bb28eb37 AG |
170 | } |
171 | ||
5a4348d1 PC |
172 | int qemu_fdt_setprop_string(void *fdt, const char *node_path, |
173 | const char *property, const char *string) | |
f652e6af | 174 | { |
ccbcfedd | 175 | int r; |
f652e6af | 176 | |
ccbcfedd AG |
177 | r = fdt_setprop_string(fdt, findnode_nofail(fdt, node_path), property, string); |
178 | if (r < 0) { | |
508e221f LL |
179 | error_report("%s: Couldn't set %s/%s = %s: %s", __func__, |
180 | node_path, property, string, fdt_strerror(r)); | |
ccbcfedd AG |
181 | exit(1); |
182 | } | |
f652e6af | 183 | |
ccbcfedd | 184 | return r; |
f652e6af | 185 | } |
d69a8e63 | 186 | |
5a4348d1 PC |
187 | const void *qemu_fdt_getprop(void *fdt, const char *node_path, |
188 | const char *property, int *lenp) | |
f0aa713f PM |
189 | { |
190 | int len; | |
191 | const void *r; | |
192 | if (!lenp) { | |
193 | lenp = &len; | |
194 | } | |
195 | r = fdt_getprop(fdt, findnode_nofail(fdt, node_path), property, lenp); | |
196 | if (!r) { | |
508e221f LL |
197 | error_report("%s: Couldn't get %s/%s: %s", __func__, |
198 | node_path, property, fdt_strerror(*lenp)); | |
f0aa713f PM |
199 | exit(1); |
200 | } | |
201 | return r; | |
202 | } | |
203 | ||
5a4348d1 PC |
204 | uint32_t qemu_fdt_getprop_cell(void *fdt, const char *node_path, |
205 | const char *property) | |
f0aa713f PM |
206 | { |
207 | int len; | |
5a4348d1 | 208 | const uint32_t *p = qemu_fdt_getprop(fdt, node_path, property, &len); |
f0aa713f | 209 | if (len != 4) { |
508e221f LL |
210 | error_report("%s: %s/%s not 4 bytes long (not a cell?)", |
211 | __func__, node_path, property); | |
f0aa713f PM |
212 | exit(1); |
213 | } | |
214 | return be32_to_cpu(*p); | |
215 | } | |
216 | ||
5a4348d1 | 217 | uint32_t qemu_fdt_get_phandle(void *fdt, const char *path) |
7d5fd108 AG |
218 | { |
219 | uint32_t r; | |
220 | ||
221 | r = fdt_get_phandle(fdt, findnode_nofail(fdt, path)); | |
909a196d | 222 | if (r == 0) { |
508e221f LL |
223 | error_report("%s: Couldn't get phandle for %s: %s", __func__, |
224 | path, fdt_strerror(r)); | |
7d5fd108 AG |
225 | exit(1); |
226 | } | |
227 | ||
228 | return r; | |
229 | } | |
230 | ||
5a4348d1 PC |
231 | int qemu_fdt_setprop_phandle(void *fdt, const char *node_path, |
232 | const char *property, | |
233 | const char *target_node_path) | |
8535ab12 | 234 | { |
5a4348d1 PC |
235 | uint32_t phandle = qemu_fdt_get_phandle(fdt, target_node_path); |
236 | return qemu_fdt_setprop_cell(fdt, node_path, property, phandle); | |
8535ab12 AG |
237 | } |
238 | ||
5a4348d1 | 239 | uint32_t qemu_fdt_alloc_phandle(void *fdt) |
3601b572 | 240 | { |
4b1b1c89 AG |
241 | static int phandle = 0x0; |
242 | ||
243 | /* | |
244 | * We need to find out if the user gave us special instruction at | |
245 | * which phandle id to start allocting phandles. | |
246 | */ | |
247 | if (!phandle) { | |
6cabe7fa | 248 | phandle = machine_phandle_start(current_machine); |
4b1b1c89 AG |
249 | } |
250 | ||
251 | if (!phandle) { | |
252 | /* | |
253 | * None or invalid phandle given on the command line, so fall back to | |
254 | * default starting point. | |
255 | */ | |
256 | phandle = 0x8000; | |
257 | } | |
3601b572 AG |
258 | |
259 | return phandle++; | |
260 | } | |
261 | ||
5a4348d1 | 262 | int qemu_fdt_nop_node(void *fdt, const char *node_path) |
d69a8e63 | 263 | { |
ccbcfedd | 264 | int r; |
d69a8e63 | 265 | |
ccbcfedd AG |
266 | r = fdt_nop_node(fdt, findnode_nofail(fdt, node_path)); |
267 | if (r < 0) { | |
508e221f LL |
268 | error_report("%s: Couldn't nop node %s: %s", __func__, node_path, |
269 | fdt_strerror(r)); | |
ccbcfedd AG |
270 | exit(1); |
271 | } | |
d69a8e63 | 272 | |
ccbcfedd | 273 | return r; |
d69a8e63 | 274 | } |
80ad7816 | 275 | |
5a4348d1 | 276 | int qemu_fdt_add_subnode(void *fdt, const char *name) |
80ad7816 | 277 | { |
80ad7816 AG |
278 | char *dupname = g_strdup(name); |
279 | char *basename = strrchr(dupname, '/'); | |
280 | int retval; | |
c640d088 | 281 | int parent = 0; |
80ad7816 AG |
282 | |
283 | if (!basename) { | |
bff39b63 | 284 | g_free(dupname); |
80ad7816 AG |
285 | return -1; |
286 | } | |
287 | ||
288 | basename[0] = '\0'; | |
289 | basename++; | |
290 | ||
c640d088 AG |
291 | if (dupname[0]) { |
292 | parent = findnode_nofail(fdt, dupname); | |
293 | } | |
294 | ||
295 | retval = fdt_add_subnode(fdt, parent, basename); | |
ccbcfedd | 296 | if (retval < 0) { |
508e221f LL |
297 | error_report("FDT: Failed to create subnode %s: %s", name, |
298 | fdt_strerror(retval)); | |
ccbcfedd | 299 | exit(1); |
80ad7816 AG |
300 | } |
301 | ||
80ad7816 AG |
302 | g_free(dupname); |
303 | return retval; | |
304 | } | |
71193433 | 305 | |
5a4348d1 | 306 | void qemu_fdt_dumpdtb(void *fdt, int size) |
71193433 | 307 | { |
2ff3de68 | 308 | const char *dumpdtb = qemu_opt_get(qemu_get_machine_opts(), "dumpdtb"); |
71193433 | 309 | |
2ff3de68 MA |
310 | if (dumpdtb) { |
311 | /* Dump the dtb to a file and quit */ | |
312 | exit(g_file_set_contents(dumpdtb, fdt, size, NULL) ? 0 : 1); | |
313 | } | |
71193433 | 314 | } |
97c38f8c | 315 | |
5a4348d1 PC |
316 | int qemu_fdt_setprop_sized_cells_from_array(void *fdt, |
317 | const char *node_path, | |
318 | const char *property, | |
319 | int numvalues, | |
320 | uint64_t *values) | |
97c38f8c PM |
321 | { |
322 | uint32_t *propcells; | |
323 | uint64_t value; | |
324 | int cellnum, vnum, ncells; | |
325 | uint32_t hival; | |
2bf9febc | 326 | int ret; |
97c38f8c PM |
327 | |
328 | propcells = g_new0(uint32_t, numvalues * 2); | |
329 | ||
330 | cellnum = 0; | |
331 | for (vnum = 0; vnum < numvalues; vnum++) { | |
332 | ncells = values[vnum * 2]; | |
333 | if (ncells != 1 && ncells != 2) { | |
2bf9febc SF |
334 | ret = -1; |
335 | goto out; | |
97c38f8c PM |
336 | } |
337 | value = values[vnum * 2 + 1]; | |
338 | hival = cpu_to_be32(value >> 32); | |
339 | if (ncells > 1) { | |
340 | propcells[cellnum++] = hival; | |
341 | } else if (hival != 0) { | |
2bf9febc SF |
342 | ret = -1; |
343 | goto out; | |
97c38f8c PM |
344 | } |
345 | propcells[cellnum++] = cpu_to_be32(value); | |
346 | } | |
347 | ||
2bf9febc SF |
348 | ret = qemu_fdt_setprop(fdt, node_path, property, propcells, |
349 | cellnum * sizeof(uint32_t)); | |
350 | out: | |
351 | g_free(propcells); | |
352 | return ret; | |
97c38f8c | 353 | } |