]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b5220bc6 SG |
2 | /* |
3 | * Copyright (c) 2011 The Chromium OS Authors. | |
b5220bc6 SG |
4 | */ |
5 | ||
29a23f9d | 6 | #ifndef USE_HOSTCC |
b5220bc6 | 7 | #include <common.h> |
035d6402 | 8 | #include <boot_fit.h> |
4e4bf944 | 9 | #include <display_options.h> |
fcc0a877 | 10 | #include <dm.h> |
db41d65a | 11 | #include <hang.h> |
9b4a205f | 12 | #include <init.h> |
f7ae49fc | 13 | #include <log.h> |
336d4615 | 14 | #include <malloc.h> |
90526e9f | 15 | #include <net.h> |
9eef56db | 16 | #include <env.h> |
5c33c9fd | 17 | #include <errno.h> |
b5220bc6 | 18 | #include <fdtdec.h> |
035d6402 | 19 | #include <fdt_support.h> |
0c670fc1 | 20 | #include <gzip.h> |
f980c999 | 21 | #include <mapmem.h> |
b08c8c48 | 22 | #include <linux/libfdt.h> |
035d6402 | 23 | #include <serial.h> |
401d1c4f | 24 | #include <asm/global_data.h> |
b45122fd | 25 | #include <asm/sections.h> |
ee88ba71 SG |
26 | #include <dm/ofnode.h> |
27 | #include <dm/of_extra.h> | |
5c33c9fd | 28 | #include <linux/ctype.h> |
2f57c951 | 29 | #include <linux/lzo.h> |
c2f0950c | 30 | #include <linux/ioport.h> |
b5220bc6 SG |
31 | |
32 | DECLARE_GLOBAL_DATA_PTR; | |
33 | ||
34 | /* | |
35 | * Here are the type we know about. One day we might allow drivers to | |
36 | * register. For now we just put them here. The COMPAT macro allows us to | |
37 | * turn this into a sparse list later, and keeps the ID with the name. | |
01a227df SG |
38 | * |
39 | * NOTE: This list is basically a TODO list for things that need to be | |
40 | * converted to driver model. So don't add new things here unless there is a | |
41 | * good reason why driver-model conversion is infeasible. Examples include | |
42 | * things which are used before driver model is available. | |
b5220bc6 SG |
43 | */ |
44 | #define COMPAT(id, name) name | |
45 | static const char * const compat_names[COMPAT_COUNT] = { | |
f88fe2de | 46 | COMPAT(UNKNOWN, "<none>"), |
0e35ad05 JZ |
47 | COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), |
48 | COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), | |
312693c3 | 49 | COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), |
79c7a90f | 50 | COMPAT(NVIDIA_TEGRA124_XUSB_PADCTL, "nvidia,tegra124-xusb-padctl"), |
7aaa5a60 | 51 | COMPAT(NVIDIA_TEGRA210_XUSB_PADCTL, "nvidia,tegra210-xusb-padctl"), |
6abd1620 | 52 | COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), |
108b85be | 53 | COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"), |
618766c0 | 54 | COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), |
de461c52 | 55 | COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"), |
7d3ca0f8 | 56 | COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"), |
51e4e3e5 | 57 | COMPAT(GENERIC_SPI_FLASH, "jedec,spi-nor"), |
45c480c9 | 58 | COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"), |
77f9b1fb | 59 | COMPAT(INTEL_MICROCODE, "intel,microcode"), |
c89ada01 | 60 | COMPAT(INTEL_QRK_MRC, "intel,quark-mrc"), |
6ab00db2 | 61 | COMPAT(ALTERA_SOCFPGA_DWMAC, "altr,socfpga-stmmac"), |
129adf5b | 62 | COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), |
ef4b01b2 | 63 | COMPAT(ALTERA_SOCFPGA_DWC2USB, "snps,dwc2"), |
39ea0ee9 SG |
64 | COMPAT(INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), |
65 | COMPAT(INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), | |
66 | COMPAT(INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), | |
4ccae81c | 67 | COMPAT(COMPAT_SUNXI_NAND, "allwinner,sun4i-a10-nand"), |
e11b5e8d LFT |
68 | COMPAT(ALTERA_SOCFPGA_CLK, "altr,clk-mgr"), |
69 | COMPAT(ALTERA_SOCFPGA_PINCTRL_SINGLE, "pinctrl-single"), | |
70 | COMPAT(ALTERA_SOCFPGA_H2F_BRG, "altr,socfpga-hps2fpga-bridge"), | |
71 | COMPAT(ALTERA_SOCFPGA_LWH2F_BRG, "altr,socfpga-lwhps2fpga-bridge"), | |
72 | COMPAT(ALTERA_SOCFPGA_F2H_BRG, "altr,socfpga-fpga2hps-bridge"), | |
73 | COMPAT(ALTERA_SOCFPGA_F2SDR0, "altr,socfpga-fpga2sdram0-bridge"), | |
74 | COMPAT(ALTERA_SOCFPGA_F2SDR1, "altr,socfpga-fpga2sdram1-bridge"), | |
75 | COMPAT(ALTERA_SOCFPGA_F2SDR2, "altr,socfpga-fpga2sdram2-bridge"), | |
eb57c0be TFC |
76 | COMPAT(ALTERA_SOCFPGA_FPGA0, "altr,socfpga-a10-fpga-mgr"), |
77 | COMPAT(ALTERA_SOCFPGA_NOC, "altr,socfpga-a10-noc"), | |
19c8fc77 | 78 | COMPAT(ALTERA_SOCFPGA_CLK_INIT, "altr,socfpga-a10-clk-init") |
b5220bc6 SG |
79 | }; |
80 | ||
ff66e7bb SG |
81 | static const char *const fdt_src_name[] = { |
82 | [FDTSRC_SEPARATE] = "separate", | |
83 | [FDTSRC_FIT] = "fit", | |
84 | [FDTSRC_BOARD] = "board", | |
85 | [FDTSRC_EMBED] = "embed", | |
86 | [FDTSRC_ENV] = "env", | |
87 | }; | |
88 | ||
89 | const char *fdtdec_get_srcname(void) | |
90 | { | |
91 | return fdt_src_name[gd->fdt_src]; | |
92 | } | |
93 | ||
a53f4a29 SG |
94 | const char *fdtdec_get_compatible(enum fdt_compat_id id) |
95 | { | |
96 | /* We allow reading of the 'unknown' ID for testing purposes */ | |
97 | assert(id >= 0 && id < COMPAT_COUNT); | |
98 | return compat_names[id]; | |
99 | } | |
100 | ||
02464e38 | 101 | fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node, |
2e38662d MS |
102 | const char *prop_name, int index, int na, |
103 | int ns, fdt_size_t *sizep, | |
104 | bool translate) | |
b5220bc6 | 105 | { |
02464e38 SW |
106 | const fdt32_t *prop, *prop_end; |
107 | const fdt32_t *prop_addr, *prop_size, *prop_after_size; | |
236efe36 | 108 | int len; |
02464e38 | 109 | fdt_addr_t addr; |
b5220bc6 | 110 | |
1cb2323b | 111 | debug("%s: %s: ", __func__, prop_name); |
02464e38 | 112 | |
02464e38 SW |
113 | prop = fdt_getprop(blob, node, prop_name, &len); |
114 | if (!prop) { | |
115 | debug("(not found)\n"); | |
116 | return FDT_ADDR_T_NONE; | |
117 | } | |
118 | prop_end = prop + (len / sizeof(*prop)); | |
119 | ||
120 | prop_addr = prop + (index * (na + ns)); | |
121 | prop_size = prop_addr + na; | |
122 | prop_after_size = prop_size + ns; | |
123 | if (prop_after_size > prop_end) { | |
124 | debug("(not enough data: expected >= %d cells, got %d cells)\n", | |
125 | (u32)(prop_after_size - prop), ((u32)(prop_end - prop))); | |
126 | return FDT_ADDR_T_NONE; | |
127 | } | |
128 | ||
5efa1bfb | 129 | #if CONFIG_IS_ENABLED(OF_TRANSLATE) |
6e06acb7 SW |
130 | if (translate) |
131 | addr = fdt_translate_address(blob, node, prop_addr); | |
132 | else | |
133 | #endif | |
134 | addr = fdtdec_get_number(prop_addr, na); | |
02464e38 SW |
135 | |
136 | if (sizep) { | |
137 | *sizep = fdtdec_get_number(prop_size, ns); | |
fd30d2c6 SG |
138 | debug("addr=%08llx, size=%llx\n", (unsigned long long)addr, |
139 | (unsigned long long)*sizep); | |
02464e38 | 140 | } else { |
fd30d2c6 | 141 | debug("addr=%08llx\n", (unsigned long long)addr); |
02464e38 SW |
142 | } |
143 | ||
144 | return addr; | |
145 | } | |
146 | ||
147 | fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent, | |
2e38662d MS |
148 | int node, const char *prop_name, |
149 | int index, fdt_size_t *sizep, | |
150 | bool translate) | |
02464e38 SW |
151 | { |
152 | int na, ns; | |
153 | ||
154 | debug("%s: ", __func__); | |
155 | ||
156 | na = fdt_address_cells(blob, parent); | |
157 | if (na < 1) { | |
158 | debug("(bad #address-cells)\n"); | |
159 | return FDT_ADDR_T_NONE; | |
160 | } | |
161 | ||
162 | ns = fdt_size_cells(blob, parent); | |
ff0a6358 | 163 | if (ns < 0) { |
02464e38 SW |
164 | debug("(bad #size-cells)\n"); |
165 | return FDT_ADDR_T_NONE; | |
166 | } | |
167 | ||
168 | debug("na=%d, ns=%d, ", na, ns); | |
169 | ||
170 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, index, na, | |
6e06acb7 | 171 | ns, sizep, translate); |
02464e38 SW |
172 | } |
173 | ||
174 | fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node, | |
2e38662d MS |
175 | const char *prop_name, int index, |
176 | fdt_size_t *sizep, | |
177 | bool translate) | |
02464e38 SW |
178 | { |
179 | int parent; | |
180 | ||
181 | debug("%s: ", __func__); | |
182 | ||
183 | parent = fdt_parent_offset(blob, node); | |
184 | if (parent < 0) { | |
185 | debug("(no parent found)\n"); | |
186 | return FDT_ADDR_T_NONE; | |
5b344360 | 187 | } |
02464e38 SW |
188 | |
189 | return fdtdec_get_addr_size_auto_parent(blob, parent, node, prop_name, | |
6e06acb7 | 190 | index, sizep, translate); |
02464e38 SW |
191 | } |
192 | ||
193 | fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, | |
2e38662d | 194 | const char *prop_name, fdt_size_t *sizep) |
02464e38 | 195 | { |
d93b9a07 SW |
196 | int ns = sizep ? (sizeof(fdt_size_t) / sizeof(fdt32_t)) : 0; |
197 | ||
02464e38 SW |
198 | return fdtdec_get_addr_size_fixed(blob, node, prop_name, 0, |
199 | sizeof(fdt_addr_t) / sizeof(fdt32_t), | |
6e06acb7 | 200 | ns, sizep, false); |
b5220bc6 SG |
201 | } |
202 | ||
2e38662d | 203 | fdt_addr_t fdtdec_get_addr(const void *blob, int node, const char *prop_name) |
4397a2a8 SG |
204 | { |
205 | return fdtdec_get_addr_size(blob, node, prop_name, NULL); | |
206 | } | |
207 | ||
a62e84d7 BM |
208 | int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device) |
209 | { | |
210 | const char *list, *end; | |
211 | int len; | |
212 | ||
213 | list = fdt_getprop(blob, node, "compatible", &len); | |
214 | if (!list) | |
215 | return -ENOENT; | |
216 | ||
217 | end = list + len; | |
218 | while (list < end) { | |
a62e84d7 BM |
219 | len = strlen(list); |
220 | if (len >= strlen("pciVVVV,DDDD")) { | |
b79221a7 | 221 | char *s = strstr(list, "pci"); |
a62e84d7 BM |
222 | |
223 | /* | |
224 | * check if the string is something like pciVVVV,DDDD.RR | |
225 | * or just pciVVVV,DDDD | |
226 | */ | |
227 | if (s && s[7] == ',' && | |
228 | (s[12] == '.' || s[12] == 0)) { | |
229 | s += 3; | |
230 | *vendor = simple_strtol(s, NULL, 16); | |
231 | ||
232 | s += 5; | |
233 | *device = simple_strtol(s, NULL, 16); | |
234 | ||
235 | return 0; | |
236 | } | |
a62e84d7 | 237 | } |
bc6351eb | 238 | list += (len + 1); |
a62e84d7 BM |
239 | } |
240 | ||
241 | return -ENOENT; | |
242 | } | |
243 | ||
194fca91 | 244 | int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr, |
fcc0a877 | 245 | u32 *bar) |
a62e84d7 | 246 | { |
a62e84d7 | 247 | int barnum; |
a62e84d7 BM |
248 | |
249 | /* extract the bar number from fdt_pci_addr */ | |
250 | barnum = addr->phys_hi & 0xff; | |
b79221a7 | 251 | if (barnum < PCI_BASE_ADDRESS_0 || barnum > PCI_CARDBUS_CIS) |
a62e84d7 BM |
252 | return -EINVAL; |
253 | ||
254 | barnum = (barnum - PCI_BASE_ADDRESS_0) / 4; | |
b717f2f2 | 255 | |
fcc0a877 | 256 | *bar = dm_pci_read_bar32(dev, barnum); |
a62e84d7 BM |
257 | |
258 | return 0; | |
259 | } | |
1db7ee46 SG |
260 | |
261 | int fdtdec_get_pci_bus_range(const void *blob, int node, | |
262 | struct fdt_resource *res) | |
263 | { | |
264 | const u32 *values; | |
265 | int len; | |
266 | ||
267 | values = fdt_getprop(blob, node, "bus-range", &len); | |
268 | if (!values || len < sizeof(*values) * 2) | |
269 | return -EINVAL; | |
270 | ||
271 | res->start = fdt32_to_cpu(*values++); | |
272 | res->end = fdt32_to_cpu(*values); | |
273 | ||
274 | return 0; | |
275 | } | |
a62e84d7 | 276 | |
aadef0a1 | 277 | uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, |
2e38662d | 278 | uint64_t default_val) |
aadef0a1 | 279 | { |
d60ae4c5 | 280 | const unaligned_fdt64_t *cell64; |
aadef0a1 CLC |
281 | int length; |
282 | ||
283 | cell64 = fdt_getprop(blob, node, prop_name, &length); | |
284 | if (!cell64 || length < sizeof(*cell64)) | |
285 | return default_val; | |
286 | ||
287 | return fdt64_to_cpu(*cell64); | |
288 | } | |
289 | ||
f88fe2de | 290 | int fdtdec_get_is_enabled(const void *blob, int node) |
b5220bc6 SG |
291 | { |
292 | const char *cell; | |
293 | ||
f88fe2de SG |
294 | /* |
295 | * It should say "okay", so only allow that. Some fdts use "ok" but | |
296 | * this is a bug. Please fix your device tree source file. See here | |
297 | * for discussion: | |
298 | * | |
299 | * http://www.mail-archive.com/[email protected]/msg71598.html | |
300 | */ | |
b5220bc6 SG |
301 | cell = fdt_getprop(blob, node, "status", NULL); |
302 | if (cell) | |
b79221a7 | 303 | return strcmp(cell, "okay") == 0; |
f88fe2de | 304 | return 1; |
b5220bc6 SG |
305 | } |
306 | ||
7cde397b | 307 | enum fdt_compat_id fdtdec_lookup(const void *blob, int node) |
b5220bc6 SG |
308 | { |
309 | enum fdt_compat_id id; | |
310 | ||
311 | /* Search our drivers */ | |
312 | for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) | |
b79221a7 MS |
313 | if (fdt_node_check_compatible(blob, node, |
314 | compat_names[id]) == 0) | |
b5220bc6 SG |
315 | return id; |
316 | return COMPAT_UNKNOWN; | |
317 | } | |
318 | ||
2e38662d | 319 | int fdtdec_next_compatible(const void *blob, int node, enum fdt_compat_id id) |
b5220bc6 SG |
320 | { |
321 | return fdt_node_offset_by_compatible(blob, node, compat_names[id]); | |
322 | } | |
323 | ||
3ddecfc7 | 324 | int fdtdec_next_compatible_subnode(const void *blob, int node, |
2e38662d | 325 | enum fdt_compat_id id, int *depthp) |
3ddecfc7 SG |
326 | { |
327 | do { | |
328 | node = fdt_next_node(blob, node, depthp); | |
329 | } while (*depthp > 1); | |
330 | ||
331 | /* If this is a direct subnode, and compatible, return it */ | |
332 | if (*depthp == 1 && 0 == fdt_node_check_compatible( | |
333 | blob, node, compat_names[id])) | |
334 | return node; | |
335 | ||
336 | return -FDT_ERR_NOTFOUND; | |
337 | } | |
338 | ||
2e38662d MS |
339 | int fdtdec_next_alias(const void *blob, const char *name, enum fdt_compat_id id, |
340 | int *upto) | |
b5220bc6 SG |
341 | { |
342 | #define MAX_STR_LEN 20 | |
343 | char str[MAX_STR_LEN + 20]; | |
344 | int node, err; | |
345 | ||
346 | /* snprintf() is not available */ | |
347 | assert(strlen(name) < MAX_STR_LEN); | |
348 | sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); | |
00878476 | 349 | node = fdt_path_offset(blob, str); |
b5220bc6 SG |
350 | if (node < 0) |
351 | return node; | |
352 | err = fdt_node_check_compatible(blob, node, compat_names[id]); | |
353 | if (err < 0) | |
354 | return err; | |
f88fe2de SG |
355 | if (err) |
356 | return -FDT_ERR_NOTFOUND; | |
357 | (*upto)++; | |
358 | return node; | |
b5220bc6 SG |
359 | } |
360 | ||
a53f4a29 | 361 | int fdtdec_find_aliases_for_id(const void *blob, const char *name, |
2e38662d MS |
362 | enum fdt_compat_id id, int *node_list, |
363 | int maxcount) | |
c6782270 SG |
364 | { |
365 | memset(node_list, '\0', sizeof(*node_list) * maxcount); | |
366 | ||
367 | return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); | |
368 | } | |
369 | ||
370 | /* TODO: Can we tighten this code up a little? */ | |
371 | int fdtdec_add_aliases_for_id(const void *blob, const char *name, | |
2e38662d MS |
372 | enum fdt_compat_id id, int *node_list, |
373 | int maxcount) | |
a53f4a29 SG |
374 | { |
375 | int name_len = strlen(name); | |
376 | int nodes[maxcount]; | |
377 | int num_found = 0; | |
378 | int offset, node; | |
379 | int alias_node; | |
380 | int count; | |
381 | int i, j; | |
382 | ||
383 | /* find the alias node if present */ | |
384 | alias_node = fdt_path_offset(blob, "/aliases"); | |
385 | ||
386 | /* | |
387 | * start with nothing, and we can assume that the root node can't | |
388 | * match | |
389 | */ | |
390 | memset(nodes, '\0', sizeof(nodes)); | |
391 | ||
392 | /* First find all the compatible nodes */ | |
393 | for (node = count = 0; node >= 0 && count < maxcount;) { | |
394 | node = fdtdec_next_compatible(blob, node, id); | |
395 | if (node >= 0) | |
396 | nodes[count++] = node; | |
397 | } | |
398 | if (node >= 0) | |
399 | debug("%s: warning: maxcount exceeded with alias '%s'\n", | |
2e38662d | 400 | __func__, name); |
a53f4a29 SG |
401 | |
402 | /* Now find all the aliases */ | |
a53f4a29 SG |
403 | for (offset = fdt_first_property_offset(blob, alias_node); |
404 | offset > 0; | |
405 | offset = fdt_next_property_offset(blob, offset)) { | |
406 | const struct fdt_property *prop; | |
407 | const char *path; | |
408 | int number; | |
409 | int found; | |
410 | ||
411 | node = 0; | |
412 | prop = fdt_get_property_by_offset(blob, offset, NULL); | |
413 | path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); | |
414 | if (prop->len && 0 == strncmp(path, name, name_len)) | |
415 | node = fdt_path_offset(blob, prop->data); | |
416 | if (node <= 0) | |
417 | continue; | |
418 | ||
419 | /* Get the alias number */ | |
0b1284eb | 420 | number = dectoul(path + name_len, NULL); |
a53f4a29 SG |
421 | if (number < 0 || number >= maxcount) { |
422 | debug("%s: warning: alias '%s' is out of range\n", | |
2e38662d | 423 | __func__, path); |
a53f4a29 SG |
424 | continue; |
425 | } | |
426 | ||
427 | /* Make sure the node we found is actually in our list! */ | |
428 | found = -1; | |
429 | for (j = 0; j < count; j++) | |
430 | if (nodes[j] == node) { | |
431 | found = j; | |
432 | break; | |
433 | } | |
434 | ||
435 | if (found == -1) { | |
436 | debug("%s: warning: alias '%s' points to a node " | |
437 | "'%s' that is missing or is not compatible " | |
438 | " with '%s'\n", __func__, path, | |
439 | fdt_get_name(blob, node, NULL), | |
440 | compat_names[id]); | |
441 | continue; | |
442 | } | |
443 | ||
444 | /* | |
445 | * Add this node to our list in the right place, and mark | |
446 | * it as done. | |
447 | */ | |
448 | if (fdtdec_get_is_enabled(blob, node)) { | |
c6782270 SG |
449 | if (node_list[number]) { |
450 | debug("%s: warning: alias '%s' requires that " | |
451 | "a node be placed in the list in a " | |
452 | "position which is already filled by " | |
453 | "node '%s'\n", __func__, path, | |
454 | fdt_get_name(blob, node, NULL)); | |
455 | continue; | |
456 | } | |
a53f4a29 SG |
457 | node_list[number] = node; |
458 | if (number >= num_found) | |
459 | num_found = number + 1; | |
460 | } | |
c6782270 | 461 | nodes[found] = 0; |
a53f4a29 SG |
462 | } |
463 | ||
464 | /* Add any nodes not mentioned by an alias */ | |
465 | for (i = j = 0; i < maxcount; i++) { | |
466 | if (!node_list[i]) { | |
467 | for (; j < maxcount; j++) | |
468 | if (nodes[j] && | |
2e38662d | 469 | fdtdec_get_is_enabled(blob, nodes[j])) |
a53f4a29 SG |
470 | break; |
471 | ||
472 | /* Have we run out of nodes to add? */ | |
473 | if (j == maxcount) | |
474 | break; | |
475 | ||
476 | assert(!node_list[i]); | |
477 | node_list[i] = nodes[j++]; | |
478 | if (i >= num_found) | |
479 | num_found = i + 1; | |
480 | } | |
481 | } | |
482 | ||
483 | return num_found; | |
484 | } | |
485 | ||
5c33c9fd SG |
486 | int fdtdec_get_alias_seq(const void *blob, const char *base, int offset, |
487 | int *seqp) | |
488 | { | |
489 | int base_len = strlen(base); | |
490 | const char *find_name; | |
491 | int find_namelen; | |
492 | int prop_offset; | |
493 | int aliases; | |
494 | ||
495 | find_name = fdt_get_name(blob, offset, &find_namelen); | |
496 | debug("Looking for '%s' at %d, name %s\n", base, offset, find_name); | |
497 | ||
498 | aliases = fdt_path_offset(blob, "/aliases"); | |
499 | for (prop_offset = fdt_first_property_offset(blob, aliases); | |
500 | prop_offset > 0; | |
501 | prop_offset = fdt_next_property_offset(blob, prop_offset)) { | |
502 | const char *prop; | |
503 | const char *name; | |
504 | const char *slash; | |
c4af6732 | 505 | int len, val; |
5c33c9fd SG |
506 | |
507 | prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); | |
508 | debug(" - %s, %s\n", name, prop); | |
509 | if (len < find_namelen || *prop != '/' || prop[len - 1] || | |
510 | strncmp(name, base, base_len)) | |
511 | continue; | |
512 | ||
513 | slash = strrchr(prop, '/'); | |
514 | if (strcmp(slash + 1, find_name)) | |
515 | continue; | |
c589132a AG |
516 | |
517 | /* | |
518 | * Adding an extra check to distinguish DT nodes with | |
519 | * same name | |
520 | */ | |
26f981f2 RV |
521 | if (offset != fdt_path_offset(blob, prop)) |
522 | continue; | |
c589132a | 523 | |
c4af6732 SG |
524 | val = trailing_strtol(name); |
525 | if (val != -1) { | |
526 | *seqp = val; | |
527 | debug("Found seq %d\n", *seqp); | |
528 | return 0; | |
5c33c9fd SG |
529 | } |
530 | } | |
531 | ||
532 | debug("Not found\n"); | |
533 | return -ENOENT; | |
534 | } | |
535 | ||
003c9dc8 MS |
536 | int fdtdec_get_alias_highest_id(const void *blob, const char *base) |
537 | { | |
538 | int base_len = strlen(base); | |
539 | int prop_offset; | |
540 | int aliases; | |
541 | int max = -1; | |
542 | ||
543 | debug("Looking for highest alias id for '%s'\n", base); | |
544 | ||
545 | aliases = fdt_path_offset(blob, "/aliases"); | |
546 | for (prop_offset = fdt_first_property_offset(blob, aliases); | |
547 | prop_offset > 0; | |
548 | prop_offset = fdt_next_property_offset(blob, prop_offset)) { | |
549 | const char *prop; | |
550 | const char *name; | |
551 | int len, val; | |
552 | ||
553 | prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len); | |
554 | debug(" - %s, %s\n", name, prop); | |
555 | if (*prop != '/' || prop[len - 1] || | |
556 | strncmp(name, base, base_len)) | |
557 | continue; | |
558 | ||
559 | val = trailing_strtol(name); | |
560 | if (val > max) { | |
561 | debug("Found seq %d\n", val); | |
562 | max = val; | |
563 | } | |
564 | } | |
565 | ||
566 | return max; | |
567 | } | |
568 | ||
3bc37a50 | 569 | const char *fdtdec_get_chosen_prop(const void *blob, const char *name) |
aac07d49 | 570 | { |
aac07d49 | 571 | int chosen_node; |
aac07d49 SG |
572 | |
573 | if (!blob) | |
3bc37a50 | 574 | return NULL; |
aac07d49 | 575 | chosen_node = fdt_path_offset(blob, "/chosen"); |
3bc37a50 SG |
576 | return fdt_getprop(blob, chosen_node, name, NULL); |
577 | } | |
578 | ||
579 | int fdtdec_get_chosen_node(const void *blob, const char *name) | |
580 | { | |
581 | const char *prop; | |
582 | ||
583 | prop = fdtdec_get_chosen_prop(blob, name); | |
aac07d49 SG |
584 | if (!prop) |
585 | return -FDT_ERR_NOTFOUND; | |
586 | return fdt_path_offset(blob, prop); | |
587 | } | |
588 | ||
b5220bc6 SG |
589 | /* |
590 | * This function is a little odd in that it accesses global data. At some | |
591 | * point if the architecture board.c files merge this will make more sense. | |
592 | * Even now, it is common code. | |
593 | */ | |
c662d0b7 | 594 | static int fdtdec_prepare_fdt(void) |
b5220bc6 | 595 | { |
c309c2da SG |
596 | if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || |
597 | fdt_check_header(gd->fdt_blob)) { | |
66312374 SG |
598 | #ifdef CONFIG_SPL_BUILD |
599 | puts("Missing DTB\n"); | |
600 | #else | |
e1d23f56 SG |
601 | printf("No valid device tree binary found at %p\n", |
602 | gd->fdt_blob); | |
cb5f97f7 SG |
603 | # ifdef DEBUG |
604 | if (gd->fdt_blob) { | |
605 | printf("fdt_blob=%p\n", gd->fdt_blob); | |
606 | print_buffer((ulong)gd->fdt_blob, gd->fdt_blob, 4, | |
607 | 32, 0); | |
608 | } | |
609 | # endif | |
66312374 | 610 | #endif |
9a263e55 SG |
611 | return -1; |
612 | } | |
b5220bc6 SG |
613 | return 0; |
614 | } | |
d17da655 | 615 | |
c662d0b7 SG |
616 | int fdtdec_check_fdt(void) |
617 | { | |
618 | /* | |
619 | * We must have an FDT, but we cannot panic() yet since the console | |
620 | * is not ready. So for now, just assert(). Boards which need an early | |
621 | * FDT (prior to console ready) will need to make their own | |
622 | * arrangements and do their own checks. | |
623 | */ | |
624 | assert(!fdtdec_prepare_fdt()); | |
625 | return 0; | |
626 | } | |
627 | ||
d17da655 SG |
628 | int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) |
629 | { | |
630 | const u32 *phandle; | |
631 | int lookup; | |
632 | ||
1cb2323b | 633 | debug("%s: %s\n", __func__, prop_name); |
d17da655 SG |
634 | phandle = fdt_getprop(blob, node, prop_name, NULL); |
635 | if (!phandle) | |
636 | return -FDT_ERR_NOTFOUND; | |
637 | ||
638 | lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); | |
639 | return lookup; | |
640 | } | |
641 | ||
642 | /** | |
643 | * Look up a property in a node and check that it has a minimum length. | |
644 | * | |
645 | * @param blob FDT blob | |
646 | * @param node node to examine | |
647 | * @param prop_name name of property to find | |
648 | * @param min_len minimum property length in bytes | |
649 | * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not | |
650 | found, or -FDT_ERR_BADLAYOUT if not enough data | |
185f812c | 651 | * Return: pointer to cell, which is only valid if err == 0 |
d17da655 SG |
652 | */ |
653 | static const void *get_prop_check_min_len(const void *blob, int node, | |
2e38662d MS |
654 | const char *prop_name, int min_len, |
655 | int *err) | |
d17da655 SG |
656 | { |
657 | const void *cell; | |
658 | int len; | |
659 | ||
660 | debug("%s: %s\n", __func__, prop_name); | |
661 | cell = fdt_getprop(blob, node, prop_name, &len); | |
662 | if (!cell) | |
663 | *err = -FDT_ERR_NOTFOUND; | |
664 | else if (len < min_len) | |
665 | *err = -FDT_ERR_BADLAYOUT; | |
666 | else | |
667 | *err = 0; | |
668 | return cell; | |
669 | } | |
670 | ||
671 | int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, | |
2e38662d | 672 | u32 *array, int count) |
d17da655 SG |
673 | { |
674 | const u32 *cell; | |
b79221a7 | 675 | int err = 0; |
d17da655 SG |
676 | |
677 | debug("%s: %s\n", __func__, prop_name); | |
678 | cell = get_prop_check_min_len(blob, node, prop_name, | |
679 | sizeof(u32) * count, &err); | |
680 | if (!err) { | |
b79221a7 MS |
681 | int i; |
682 | ||
d17da655 SG |
683 | for (i = 0; i < count; i++) |
684 | array[i] = fdt32_to_cpu(cell[i]); | |
685 | } | |
686 | return err; | |
687 | } | |
688 | ||
a9f04d49 SG |
689 | int fdtdec_get_int_array_count(const void *blob, int node, |
690 | const char *prop_name, u32 *array, int count) | |
691 | { | |
692 | const u32 *cell; | |
693 | int len, elems; | |
694 | int i; | |
695 | ||
696 | debug("%s: %s\n", __func__, prop_name); | |
697 | cell = fdt_getprop(blob, node, prop_name, &len); | |
698 | if (!cell) | |
699 | return -FDT_ERR_NOTFOUND; | |
700 | elems = len / sizeof(u32); | |
701 | if (count > elems) | |
702 | count = elems; | |
703 | for (i = 0; i < count; i++) | |
704 | array[i] = fdt32_to_cpu(cell[i]); | |
705 | ||
706 | return count; | |
707 | } | |
708 | ||
96875e7d SG |
709 | const u32 *fdtdec_locate_array(const void *blob, int node, |
710 | const char *prop_name, int count) | |
711 | { | |
712 | const u32 *cell; | |
713 | int err; | |
714 | ||
715 | cell = get_prop_check_min_len(blob, node, prop_name, | |
716 | sizeof(u32) * count, &err); | |
717 | return err ? NULL : cell; | |
718 | } | |
719 | ||
d17da655 SG |
720 | int fdtdec_get_bool(const void *blob, int node, const char *prop_name) |
721 | { | |
722 | const s32 *cell; | |
723 | int len; | |
724 | ||
725 | debug("%s: %s\n", __func__, prop_name); | |
726 | cell = fdt_getprop(blob, node, prop_name, &len); | |
727 | return cell != NULL; | |
728 | } | |
ed3ee5cd | 729 | |
57068a7a SG |
730 | int fdtdec_parse_phandle_with_args(const void *blob, int src_node, |
731 | const char *list_name, | |
732 | const char *cells_name, | |
733 | int cell_count, int index, | |
734 | struct fdtdec_phandle_args *out_args) | |
735 | { | |
736 | const __be32 *list, *list_end; | |
737 | int rc = 0, size, cur_index = 0; | |
738 | uint32_t count = 0; | |
739 | int node = -1; | |
740 | int phandle; | |
741 | ||
742 | /* Retrieve the phandle list property */ | |
743 | list = fdt_getprop(blob, src_node, list_name, &size); | |
744 | if (!list) | |
745 | return -ENOENT; | |
746 | list_end = list + size / sizeof(*list); | |
747 | ||
748 | /* Loop over the phandles until all the requested entry is found */ | |
749 | while (list < list_end) { | |
750 | rc = -EINVAL; | |
751 | count = 0; | |
752 | ||
753 | /* | |
754 | * If phandle is 0, then it is an empty entry with no | |
755 | * arguments. Skip forward to the next entry. | |
756 | */ | |
757 | phandle = be32_to_cpup(list++); | |
758 | if (phandle) { | |
759 | /* | |
760 | * Find the provider node and parse the #*-cells | |
761 | * property to determine the argument length. | |
762 | * | |
763 | * This is not needed if the cell count is hard-coded | |
764 | * (i.e. cells_name not set, but cell_count is set), | |
765 | * except when we're going to return the found node | |
766 | * below. | |
767 | */ | |
768 | if (cells_name || cur_index == index) { | |
769 | node = fdt_node_offset_by_phandle(blob, | |
770 | phandle); | |
cba487c7 | 771 | if (node < 0) { |
57068a7a SG |
772 | debug("%s: could not find phandle\n", |
773 | fdt_get_name(blob, src_node, | |
774 | NULL)); | |
775 | goto err; | |
776 | } | |
777 | } | |
778 | ||
779 | if (cells_name) { | |
780 | count = fdtdec_get_int(blob, node, cells_name, | |
781 | -1); | |
782 | if (count == -1) { | |
783 | debug("%s: could not get %s for %s\n", | |
784 | fdt_get_name(blob, src_node, | |
785 | NULL), | |
786 | cells_name, | |
787 | fdt_get_name(blob, node, | |
788 | NULL)); | |
789 | goto err; | |
790 | } | |
791 | } else { | |
792 | count = cell_count; | |
793 | } | |
794 | ||
795 | /* | |
796 | * Make sure that the arguments actually fit in the | |
797 | * remaining property data length | |
798 | */ | |
799 | if (list + count > list_end) { | |
800 | debug("%s: arguments longer than property\n", | |
801 | fdt_get_name(blob, src_node, NULL)); | |
802 | goto err; | |
803 | } | |
804 | } | |
805 | ||
806 | /* | |
807 | * All of the error cases above bail out of the loop, so at | |
808 | * this point, the parsing is successful. If the requested | |
809 | * index matches, then fill the out_args structure and return, | |
810 | * or return -ENOENT for an empty entry. | |
811 | */ | |
812 | rc = -ENOENT; | |
813 | if (cur_index == index) { | |
814 | if (!phandle) | |
815 | goto err; | |
816 | ||
817 | if (out_args) { | |
818 | int i; | |
819 | ||
820 | if (count > MAX_PHANDLE_ARGS) { | |
821 | debug("%s: too many arguments %d\n", | |
822 | fdt_get_name(blob, src_node, | |
823 | NULL), count); | |
824 | count = MAX_PHANDLE_ARGS; | |
825 | } | |
826 | out_args->node = node; | |
827 | out_args->args_count = count; | |
828 | for (i = 0; i < count; i++) { | |
829 | out_args->args[i] = | |
830 | be32_to_cpup(list++); | |
831 | } | |
832 | } | |
833 | ||
834 | /* Found it! return success */ | |
835 | return 0; | |
836 | } | |
837 | ||
838 | node = -1; | |
839 | list += count; | |
840 | cur_index++; | |
841 | } | |
842 | ||
843 | /* | |
844 | * Result will be one of: | |
845 | * -ENOENT : index is for empty phandle | |
846 | * -EINVAL : parsing error on data | |
847 | * [1..n] : Number of phandle (count mode; when index = -1) | |
848 | */ | |
849 | rc = index < 0 ? cur_index : -ENOENT; | |
850 | err: | |
851 | return rc; | |
852 | } | |
853 | ||
bed4d892 | 854 | int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, |
2e38662d | 855 | u8 *array, int count) |
bed4d892 AS |
856 | { |
857 | const u8 *cell; | |
858 | int err; | |
859 | ||
860 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); | |
861 | if (!err) | |
862 | memcpy(array, cell, count); | |
863 | return err; | |
864 | } | |
865 | ||
866 | const u8 *fdtdec_locate_byte_array(const void *blob, int node, | |
2e38662d | 867 | const char *prop_name, int count) |
bed4d892 AS |
868 | { |
869 | const u8 *cell; | |
870 | int err; | |
871 | ||
872 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); | |
873 | if (err) | |
874 | return NULL; | |
875 | return cell; | |
876 | } | |
09258f1e | 877 | |
5f7bfdd6 | 878 | u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells) |
56f42242 TR |
879 | { |
880 | u64 number = 0; | |
881 | ||
882 | while (cells--) | |
883 | number = (number << 32) | fdt32_to_cpu(*ptr++); | |
884 | ||
885 | return number; | |
886 | } | |
887 | ||
888 | int fdt_get_resource(const void *fdt, int node, const char *property, | |
889 | unsigned int index, struct fdt_resource *res) | |
890 | { | |
891 | const fdt32_t *ptr, *end; | |
892 | int na, ns, len, parent; | |
893 | unsigned int i = 0; | |
894 | ||
895 | parent = fdt_parent_offset(fdt, node); | |
896 | if (parent < 0) | |
897 | return parent; | |
898 | ||
899 | na = fdt_address_cells(fdt, parent); | |
900 | ns = fdt_size_cells(fdt, parent); | |
901 | ||
902 | ptr = fdt_getprop(fdt, node, property, &len); | |
903 | if (!ptr) | |
904 | return len; | |
905 | ||
906 | end = ptr + len / sizeof(*ptr); | |
907 | ||
908 | while (ptr + na + ns <= end) { | |
909 | if (i == index) { | |
feb7ac45 PD |
910 | if (CONFIG_IS_ENABLED(OF_TRANSLATE)) |
911 | res->start = fdt_translate_address(fdt, node, ptr); | |
912 | else | |
913 | res->start = fdtdec_get_number(ptr, na); | |
914 | ||
b79221a7 | 915 | res->end = res->start; |
56f42242 TR |
916 | res->end += fdtdec_get_number(&ptr[na], ns) - 1; |
917 | return 0; | |
918 | } | |
919 | ||
920 | ptr += na + ns; | |
921 | i++; | |
922 | } | |
923 | ||
924 | return -FDT_ERR_NOTFOUND; | |
925 | } | |
926 | ||
927 | int fdt_get_named_resource(const void *fdt, int node, const char *property, | |
928 | const char *prop_names, const char *name, | |
929 | struct fdt_resource *res) | |
930 | { | |
931 | int index; | |
932 | ||
b02e4044 | 933 | index = fdt_stringlist_search(fdt, node, prop_names, name); |
56f42242 TR |
934 | if (index < 0) |
935 | return index; | |
936 | ||
937 | return fdt_get_resource(fdt, node, property, index, res); | |
938 | } | |
9f85eee7 | 939 | |
12e67114 SG |
940 | static int decode_timing_property(const void *blob, int node, const char *name, |
941 | struct timing_entry *result) | |
942 | { | |
943 | int length, ret = 0; | |
944 | const u32 *prop; | |
945 | ||
946 | prop = fdt_getprop(blob, node, name, &length); | |
947 | if (!prop) { | |
948 | debug("%s: could not find property %s\n", | |
949 | fdt_get_name(blob, node, NULL), name); | |
950 | return length; | |
951 | } | |
952 | ||
953 | if (length == sizeof(u32)) { | |
954 | result->typ = fdtdec_get_int(blob, node, name, 0); | |
955 | result->min = result->typ; | |
956 | result->max = result->typ; | |
957 | } else { | |
958 | ret = fdtdec_get_int_array(blob, node, name, &result->min, 3); | |
959 | } | |
960 | ||
961 | return ret; | |
962 | } | |
963 | ||
964 | int fdtdec_decode_display_timing(const void *blob, int parent, int index, | |
965 | struct display_timing *dt) | |
966 | { | |
967 | int i, node, timings_node; | |
968 | u32 val = 0; | |
969 | int ret = 0; | |
970 | ||
971 | timings_node = fdt_subnode_offset(blob, parent, "display-timings"); | |
972 | if (timings_node < 0) | |
973 | return timings_node; | |
974 | ||
975 | for (i = 0, node = fdt_first_subnode(blob, timings_node); | |
976 | node > 0 && i != index; | |
977 | node = fdt_next_subnode(blob, node)) | |
978 | i++; | |
979 | ||
980 | if (node < 0) | |
981 | return node; | |
982 | ||
983 | memset(dt, 0, sizeof(*dt)); | |
984 | ||
985 | ret |= decode_timing_property(blob, node, "hback-porch", | |
986 | &dt->hback_porch); | |
987 | ret |= decode_timing_property(blob, node, "hfront-porch", | |
988 | &dt->hfront_porch); | |
989 | ret |= decode_timing_property(blob, node, "hactive", &dt->hactive); | |
990 | ret |= decode_timing_property(blob, node, "hsync-len", &dt->hsync_len); | |
991 | ret |= decode_timing_property(blob, node, "vback-porch", | |
992 | &dt->vback_porch); | |
993 | ret |= decode_timing_property(blob, node, "vfront-porch", | |
994 | &dt->vfront_porch); | |
995 | ret |= decode_timing_property(blob, node, "vactive", &dt->vactive); | |
996 | ret |= decode_timing_property(blob, node, "vsync-len", &dt->vsync_len); | |
997 | ret |= decode_timing_property(blob, node, "clock-frequency", | |
998 | &dt->pixelclock); | |
999 | ||
1000 | dt->flags = 0; | |
1001 | val = fdtdec_get_int(blob, node, "vsync-active", -1); | |
1002 | if (val != -1) { | |
1003 | dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : | |
1004 | DISPLAY_FLAGS_VSYNC_LOW; | |
1005 | } | |
1006 | val = fdtdec_get_int(blob, node, "hsync-active", -1); | |
1007 | if (val != -1) { | |
1008 | dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : | |
1009 | DISPLAY_FLAGS_HSYNC_LOW; | |
1010 | } | |
1011 | val = fdtdec_get_int(blob, node, "de-active", -1); | |
1012 | if (val != -1) { | |
1013 | dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : | |
1014 | DISPLAY_FLAGS_DE_LOW; | |
1015 | } | |
1016 | val = fdtdec_get_int(blob, node, "pixelclk-active", -1); | |
1017 | if (val != -1) { | |
1018 | dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : | |
1019 | DISPLAY_FLAGS_PIXDATA_NEGEDGE; | |
1020 | } | |
1021 | ||
1022 | if (fdtdec_get_bool(blob, node, "interlaced")) | |
1023 | dt->flags |= DISPLAY_FLAGS_INTERLACED; | |
1024 | if (fdtdec_get_bool(blob, node, "doublescan")) | |
1025 | dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; | |
1026 | if (fdtdec_get_bool(blob, node, "doubleclk")) | |
1027 | dt->flags |= DISPLAY_FLAGS_DOUBLECLK; | |
1028 | ||
04b9dd10 | 1029 | return ret; |
12e67114 SG |
1030 | } |
1031 | ||
50c7b723 | 1032 | int fdtdec_setup_mem_size_base(void) |
623f6019 | 1033 | { |
c2f0950c MS |
1034 | int ret; |
1035 | ofnode mem; | |
1036 | struct resource res; | |
623f6019 | 1037 | |
c2f0950c MS |
1038 | mem = ofnode_path("/memory"); |
1039 | if (!ofnode_valid(mem)) { | |
623f6019 NR |
1040 | debug("%s: Missing /memory node\n", __func__); |
1041 | return -EINVAL; | |
1042 | } | |
1043 | ||
c2f0950c | 1044 | ret = ofnode_read_resource(mem, 0, &res); |
623f6019 NR |
1045 | if (ret != 0) { |
1046 | debug("%s: Unable to decode first memory bank\n", __func__); | |
1047 | return -EINVAL; | |
1048 | } | |
1049 | ||
1050 | gd->ram_size = (phys_size_t)(res.end - res.start + 1); | |
1473b12a | 1051 | gd->ram_base = (unsigned long)res.start; |
c69380f8 SG |
1052 | debug("%s: Initial DRAM size %llx\n", __func__, |
1053 | (unsigned long long)gd->ram_size); | |
623f6019 NR |
1054 | |
1055 | return 0; | |
1056 | } | |
1057 | ||
c2f0950c | 1058 | ofnode get_next_memory_node(ofnode mem) |
452bc121 | 1059 | { |
452bc121 | 1060 | do { |
c2f0950c | 1061 | mem = ofnode_by_prop_value(mem, "device_type", "memory", 7); |
89090661 | 1062 | } while (!ofnode_is_enabled(mem)); |
452bc121 JW |
1063 | |
1064 | return mem; | |
1065 | } | |
1066 | ||
62897c43 | 1067 | int fdtdec_setup_memory_banksize(void) |
623f6019 | 1068 | { |
c2f0950c MS |
1069 | int bank, ret, reg = 0; |
1070 | struct resource res; | |
1071 | ofnode mem = ofnode_null(); | |
623f6019 | 1072 | |
c2f0950c MS |
1073 | mem = get_next_memory_node(mem); |
1074 | if (!ofnode_valid(mem)) { | |
658954cb MS |
1075 | debug("%s: Missing /memory node\n", __func__); |
1076 | return -EINVAL; | |
1077 | } | |
623f6019 NR |
1078 | |
1079 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { | |
c2f0950c MS |
1080 | ret = ofnode_read_resource(mem, reg++, &res); |
1081 | if (ret < 0) { | |
942ee093 | 1082 | reg = 0; |
c2f0950c | 1083 | mem = get_next_memory_node(mem); |
81d0cef3 | 1084 | if (!ofnode_valid(mem)) |
658954cb MS |
1085 | break; |
1086 | ||
c2f0950c MS |
1087 | ret = ofnode_read_resource(mem, reg++, &res); |
1088 | if (ret < 0) | |
658954cb MS |
1089 | break; |
1090 | } | |
c2f0950c MS |
1091 | |
1092 | if (ret != 0) | |
658954cb | 1093 | return -EINVAL; |
623f6019 NR |
1094 | |
1095 | gd->bd->bi_dram[bank].start = (phys_addr_t)res.start; | |
1096 | gd->bd->bi_dram[bank].size = | |
1097 | (phys_size_t)(res.end - res.start + 1); | |
1098 | ||
1099 | debug("%s: DRAM Bank #%d: start = 0x%llx, size = 0x%llx\n", | |
1100 | __func__, bank, | |
1101 | (unsigned long long)gd->bd->bi_dram[bank].start, | |
1102 | (unsigned long long)gd->bd->bi_dram[bank].size); | |
1103 | } | |
1104 | ||
1105 | return 0; | |
1106 | } | |
7fce7396 MS |
1107 | |
1108 | int fdtdec_setup_mem_size_base_lowest(void) | |
1109 | { | |
c2f0950c MS |
1110 | int bank, ret, reg = 0; |
1111 | struct resource res; | |
7fce7396 MS |
1112 | unsigned long base; |
1113 | phys_size_t size; | |
c2f0950c | 1114 | ofnode mem = ofnode_null(); |
7fce7396 MS |
1115 | |
1116 | gd->ram_base = (unsigned long)~0; | |
1117 | ||
c2f0950c MS |
1118 | mem = get_next_memory_node(mem); |
1119 | if (!ofnode_valid(mem)) { | |
7fce7396 MS |
1120 | debug("%s: Missing /memory node\n", __func__); |
1121 | return -EINVAL; | |
1122 | } | |
1123 | ||
1124 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { | |
c2f0950c MS |
1125 | ret = ofnode_read_resource(mem, reg++, &res); |
1126 | if (ret < 0) { | |
7fce7396 | 1127 | reg = 0; |
c2f0950c | 1128 | mem = get_next_memory_node(mem); |
81d0cef3 | 1129 | if (!ofnode_valid(mem)) |
7fce7396 MS |
1130 | break; |
1131 | ||
c2f0950c MS |
1132 | ret = ofnode_read_resource(mem, reg++, &res); |
1133 | if (ret < 0) | |
7fce7396 MS |
1134 | break; |
1135 | } | |
c2f0950c | 1136 | |
7fce7396 MS |
1137 | if (ret != 0) |
1138 | return -EINVAL; | |
1139 | ||
1140 | base = (unsigned long)res.start; | |
1141 | size = (phys_size_t)(res.end - res.start + 1); | |
1142 | ||
1143 | if (gd->ram_base > base && size) { | |
1144 | gd->ram_base = base; | |
1145 | gd->ram_size = size; | |
1146 | debug("%s: Initial DRAM base %lx size %lx\n", | |
1147 | __func__, base, (unsigned long)size); | |
1148 | } | |
1149 | } | |
1150 | ||
1151 | return 0; | |
1152 | } | |
623f6019 | 1153 | |
2f57c951 JJH |
1154 | static int uncompress_blob(const void *src, ulong sz_src, void **dstp) |
1155 | { | |
b4b6daf3 SG |
1156 | #if CONFIG_IS_ENABLED(MULTI_DTB_FIT_GZIP) ||\ |
1157 | CONFIG_IS_ENABLED(MULTI_DTB_FIT_LZO) | |
95f4bbd5 | 1158 | size_t sz_out = CONFIG_VAL(MULTI_DTB_FIT_UNCOMPRESS_SZ); |
1fd30354 | 1159 | bool gzip = 0, lzo = 0; |
2f57c951 JJH |
1160 | ulong sz_in = sz_src; |
1161 | void *dst; | |
1162 | int rc; | |
1163 | ||
1164 | if (CONFIG_IS_ENABLED(GZIP)) | |
1fd30354 MV |
1165 | if (gzip_parse_header(src, sz_in) >= 0) |
1166 | gzip = 1; | |
2f57c951 | 1167 | if (CONFIG_IS_ENABLED(LZO)) |
1fd30354 MV |
1168 | if (!gzip && lzop_is_valid_header(src)) |
1169 | lzo = 1; | |
1170 | ||
1171 | if (!gzip && !lzo) | |
1172 | return -EBADMSG; | |
1173 | ||
2f57c951 JJH |
1174 | |
1175 | if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) { | |
1176 | dst = malloc(sz_out); | |
1177 | if (!dst) { | |
1178 | puts("uncompress_blob: Unable to allocate memory\n"); | |
1179 | return -ENOMEM; | |
1180 | } | |
1181 | } else { | |
b4b6daf3 | 1182 | # if CONFIG_IS_ENABLED(MULTI_DTB_FIT_USER_DEFINED_AREA) |
2f57c951 | 1183 | dst = (void *)CONFIG_VAL(MULTI_DTB_FIT_USER_DEF_ADDR); |
b4b6daf3 | 1184 | # else |
2f57c951 | 1185 | return -ENOTSUPP; |
b4b6daf3 | 1186 | # endif |
2f57c951 JJH |
1187 | } |
1188 | ||
1fd30354 | 1189 | if (CONFIG_IS_ENABLED(GZIP) && gzip) |
2f57c951 | 1190 | rc = gunzip(dst, sz_out, (u8 *)src, &sz_in); |
1fd30354 | 1191 | else if (CONFIG_IS_ENABLED(LZO) && lzo) |
2f57c951 | 1192 | rc = lzop_decompress(src, sz_in, dst, &sz_out); |
1fd30354 MV |
1193 | else |
1194 | hang(); | |
2f57c951 JJH |
1195 | |
1196 | if (rc < 0) { | |
1197 | /* not a valid compressed blob */ | |
1198 | puts("uncompress_blob: Unable to uncompress\n"); | |
1199 | if (CONFIG_IS_ENABLED(MULTI_DTB_FIT_DYN_ALLOC)) | |
1200 | free(dst); | |
1201 | return -EBADMSG; | |
1202 | } | |
1203 | *dstp = dst; | |
b4b6daf3 SG |
1204 | #else |
1205 | *dstp = (void *)src; | |
410d9b64 | 1206 | *dstp = (void *)src; |
b4b6daf3 | 1207 | #endif |
410d9b64 | 1208 | return 0; |
2f57c951 | 1209 | } |
2f57c951 | 1210 | |
98550343 SG |
1211 | /** |
1212 | * fdt_find_separate() - Find a devicetree at the end of the image | |
1213 | * | |
185f812c | 1214 | * Return: pointer to FDT blob |
3b595da4 | 1215 | */ |
98550343 | 1216 | static void *fdt_find_separate(void) |
3b595da4 RC |
1217 | { |
1218 | void *fdt_blob = NULL; | |
e7fb7896 | 1219 | |
423cf0ac SG |
1220 | if (IS_ENABLED(CONFIG_SANDBOX)) |
1221 | return NULL; | |
1222 | ||
3b595da4 RC |
1223 | #ifdef CONFIG_SPL_BUILD |
1224 | /* FDT is at end of BSS unless it is in a different memory region */ | |
0de71bb5 | 1225 | if (IS_ENABLED(CONFIG_SPL_SEPARATE_BSS)) |
3b595da4 RC |
1226 | fdt_blob = (ulong *)&_image_binary_end; |
1227 | else | |
1228 | fdt_blob = (ulong *)&__bss_end; | |
1229 | #else | |
1230 | /* FDT is at end of image */ | |
1231 | fdt_blob = (ulong *)&_end; | |
1232 | #endif | |
e7fb7896 | 1233 | |
3b595da4 RC |
1234 | return fdt_blob; |
1235 | } | |
3b595da4 | 1236 | |
ebf30e84 TR |
1237 | int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size) |
1238 | { | |
1239 | const char *path; | |
1240 | int offset, err; | |
1241 | ||
1242 | if (!is_valid_ethaddr(mac)) | |
1243 | return -EINVAL; | |
1244 | ||
1245 | path = fdt_get_alias(fdt, "ethernet"); | |
1246 | if (!path) | |
1247 | return 0; | |
1248 | ||
1249 | debug("ethernet alias found: %s\n", path); | |
1250 | ||
1251 | offset = fdt_path_offset(fdt, path); | |
1252 | if (offset < 0) { | |
1253 | debug("ethernet alias points to absent node %s\n", path); | |
1254 | return -ENOENT; | |
1255 | } | |
1256 | ||
1257 | err = fdt_setprop_inplace(fdt, offset, "local-mac-address", mac, size); | |
1258 | if (err < 0) | |
1259 | return err; | |
1260 | ||
1261 | debug("MAC address: %pM\n", mac); | |
1262 | ||
1263 | return 0; | |
1264 | } | |
1265 | ||
c9222a08 TR |
1266 | static int fdtdec_init_reserved_memory(void *blob) |
1267 | { | |
1268 | int na, ns, node, err; | |
1269 | fdt32_t value; | |
1270 | ||
1271 | /* inherit #address-cells and #size-cells from the root node */ | |
1272 | na = fdt_address_cells(blob, 0); | |
1273 | ns = fdt_size_cells(blob, 0); | |
1274 | ||
1275 | node = fdt_add_subnode(blob, 0, "reserved-memory"); | |
1276 | if (node < 0) | |
1277 | return node; | |
1278 | ||
1279 | err = fdt_setprop(blob, node, "ranges", NULL, 0); | |
1280 | if (err < 0) | |
1281 | return err; | |
1282 | ||
1283 | value = cpu_to_fdt32(ns); | |
1284 | ||
1285 | err = fdt_setprop(blob, node, "#size-cells", &value, sizeof(value)); | |
1286 | if (err < 0) | |
1287 | return err; | |
1288 | ||
1289 | value = cpu_to_fdt32(na); | |
1290 | ||
1291 | err = fdt_setprop(blob, node, "#address-cells", &value, sizeof(value)); | |
1292 | if (err < 0) | |
1293 | return err; | |
1294 | ||
1295 | return node; | |
1296 | } | |
1297 | ||
1298 | int fdtdec_add_reserved_memory(void *blob, const char *basename, | |
1299 | const struct fdt_memory *carveout, | |
46cb0678 | 1300 | const char **compatibles, unsigned int count, |
b9aad375 | 1301 | uint32_t *phandlep, unsigned long flags) |
c9222a08 TR |
1302 | { |
1303 | fdt32_t cells[4] = {}, *ptr = cells; | |
1304 | uint32_t upper, lower, phandle; | |
1305 | int parent, node, na, ns, err; | |
3bf2f153 | 1306 | fdt_size_t size; |
c9222a08 TR |
1307 | char name[64]; |
1308 | ||
1309 | /* create an empty /reserved-memory node if one doesn't exist */ | |
1310 | parent = fdt_path_offset(blob, "/reserved-memory"); | |
1311 | if (parent < 0) { | |
1312 | parent = fdtdec_init_reserved_memory(blob); | |
1313 | if (parent < 0) | |
1314 | return parent; | |
1315 | } | |
1316 | ||
1317 | /* only 1 or 2 #address-cells and #size-cells are supported */ | |
1318 | na = fdt_address_cells(blob, parent); | |
1319 | if (na < 1 || na > 2) | |
1320 | return -FDT_ERR_BADNCELLS; | |
1321 | ||
1322 | ns = fdt_size_cells(blob, parent); | |
1323 | if (ns < 1 || ns > 2) | |
1324 | return -FDT_ERR_BADNCELLS; | |
1325 | ||
1326 | /* find a matching node and return the phandle to that */ | |
1327 | fdt_for_each_subnode(node, blob, parent) { | |
1328 | const char *name = fdt_get_name(blob, node, NULL); | |
a9ad113d BM |
1329 | fdt_addr_t addr; |
1330 | fdt_size_t size; | |
c9222a08 | 1331 | |
f6704c79 BM |
1332 | addr = fdtdec_get_addr_size_fixed(blob, node, "reg", 0, na, ns, |
1333 | &size, false); | |
c9222a08 TR |
1334 | if (addr == FDT_ADDR_T_NONE) { |
1335 | debug("failed to read address/size for %s\n", name); | |
1336 | continue; | |
1337 | } | |
1338 | ||
f614753c AP |
1339 | if (addr == carveout->start && (addr + size - 1) == |
1340 | carveout->end) { | |
086336a2 HS |
1341 | if (phandlep) |
1342 | *phandlep = fdt_get_phandle(blob, node); | |
c9222a08 TR |
1343 | return 0; |
1344 | } | |
1345 | } | |
1346 | ||
1347 | /* | |
1348 | * Unpack the start address and generate the name of the new node | |
1349 | * base on the basename and the unit-address. | |
1350 | */ | |
3bf2f153 TR |
1351 | upper = upper_32_bits(carveout->start); |
1352 | lower = lower_32_bits(carveout->start); | |
c9222a08 TR |
1353 | |
1354 | if (na > 1 && upper > 0) | |
1355 | snprintf(name, sizeof(name), "%s@%x,%x", basename, upper, | |
1356 | lower); | |
1357 | else { | |
1358 | if (upper > 0) { | |
1359 | debug("address %08x:%08x exceeds addressable space\n", | |
1360 | upper, lower); | |
1361 | return -FDT_ERR_BADVALUE; | |
1362 | } | |
1363 | ||
1364 | snprintf(name, sizeof(name), "%s@%x", basename, lower); | |
1365 | } | |
1366 | ||
1367 | node = fdt_add_subnode(blob, parent, name); | |
1368 | if (node < 0) | |
1369 | return node; | |
1370 | ||
b9aad375 TR |
1371 | if (flags & FDTDEC_RESERVED_MEMORY_NO_MAP) { |
1372 | err = fdt_setprop(blob, node, "no-map", NULL, 0); | |
1373 | if (err < 0) | |
1374 | return err; | |
1375 | } | |
1376 | ||
357d2ceb HS |
1377 | if (phandlep) { |
1378 | err = fdt_generate_phandle(blob, &phandle); | |
1379 | if (err < 0) | |
1380 | return err; | |
1381 | ||
1382 | err = fdtdec_set_phandle(blob, node, phandle); | |
1383 | if (err < 0) | |
1384 | return err; | |
1385 | } | |
c9222a08 TR |
1386 | |
1387 | /* store one or two address cells */ | |
1388 | if (na > 1) | |
1389 | *ptr++ = cpu_to_fdt32(upper); | |
1390 | ||
1391 | *ptr++ = cpu_to_fdt32(lower); | |
1392 | ||
1393 | /* store one or two size cells */ | |
3bf2f153 TR |
1394 | size = carveout->end - carveout->start + 1; |
1395 | upper = upper_32_bits(size); | |
1396 | lower = lower_32_bits(size); | |
c9222a08 TR |
1397 | |
1398 | if (ns > 1) | |
1399 | *ptr++ = cpu_to_fdt32(upper); | |
1400 | ||
1401 | *ptr++ = cpu_to_fdt32(lower); | |
1402 | ||
1403 | err = fdt_setprop(blob, node, "reg", cells, (na + ns) * sizeof(*cells)); | |
1404 | if (err < 0) | |
1405 | return err; | |
1406 | ||
46cb0678 TR |
1407 | if (compatibles && count > 0) { |
1408 | size_t length = 0, len = 0; | |
1409 | unsigned int i; | |
1410 | char *buffer; | |
1411 | ||
1412 | for (i = 0; i < count; i++) | |
1413 | length += strlen(compatibles[i]) + 1; | |
1414 | ||
1415 | buffer = malloc(length); | |
1416 | if (!buffer) | |
1417 | return -FDT_ERR_INTERNAL; | |
1418 | ||
1419 | for (i = 0; i < count; i++) | |
1420 | len += strlcpy(buffer + len, compatibles[i], | |
1421 | length - len) + 1; | |
1422 | ||
1423 | err = fdt_setprop(blob, node, "compatible", buffer, length); | |
1424 | free(buffer); | |
1425 | if (err < 0) | |
1426 | return err; | |
1427 | } | |
1428 | ||
c9222a08 TR |
1429 | /* return the phandle for the new node for the caller to use */ |
1430 | if (phandlep) | |
1431 | *phandlep = phandle; | |
1432 | ||
1433 | return 0; | |
1434 | } | |
1435 | ||
4bf88ba7 TR |
1436 | int fdtdec_get_carveout(const void *blob, const char *node, |
1437 | const char *prop_name, unsigned int index, | |
46cb0678 | 1438 | struct fdt_memory *carveout, const char **name, |
b9aad375 TR |
1439 | const char ***compatiblesp, unsigned int *countp, |
1440 | unsigned long *flags) | |
16523ac7 TR |
1441 | { |
1442 | const fdt32_t *prop; | |
1443 | uint32_t phandle; | |
1444 | int offset, len; | |
1445 | fdt_size_t size; | |
1446 | ||
1447 | offset = fdt_path_offset(blob, node); | |
1448 | if (offset < 0) | |
1449 | return offset; | |
1450 | ||
4bf88ba7 | 1451 | prop = fdt_getprop(blob, offset, prop_name, &len); |
16523ac7 | 1452 | if (!prop) { |
4bf88ba7 | 1453 | debug("failed to get %s for %s\n", prop_name, node); |
16523ac7 TR |
1454 | return -FDT_ERR_NOTFOUND; |
1455 | } | |
1456 | ||
1457 | if ((len % sizeof(phandle)) != 0) { | |
1458 | debug("invalid phandle property\n"); | |
1459 | return -FDT_ERR_BADPHANDLE; | |
1460 | } | |
1461 | ||
1462 | if (len < (sizeof(phandle) * (index + 1))) { | |
1463 | debug("invalid phandle index\n"); | |
d5598cfa | 1464 | return -FDT_ERR_NOTFOUND; |
16523ac7 TR |
1465 | } |
1466 | ||
1467 | phandle = fdt32_to_cpu(prop[index]); | |
1468 | ||
1469 | offset = fdt_node_offset_by_phandle(blob, phandle); | |
1470 | if (offset < 0) { | |
1471 | debug("failed to find node for phandle %u\n", phandle); | |
1472 | return offset; | |
1473 | } | |
1474 | ||
4bf88ba7 TR |
1475 | if (name) |
1476 | *name = fdt_get_name(blob, offset, NULL); | |
1477 | ||
46cb0678 TR |
1478 | if (compatiblesp) { |
1479 | const char **compatibles = NULL; | |
1480 | const char *start, *end, *ptr; | |
1481 | unsigned int count = 0; | |
1482 | ||
1483 | prop = fdt_getprop(blob, offset, "compatible", &len); | |
1484 | if (!prop) | |
1485 | goto skip_compat; | |
1486 | ||
1487 | start = ptr = (const char *)prop; | |
1488 | end = start + len; | |
1489 | ||
1490 | while (ptr < end) { | |
1491 | ptr = strchrnul(ptr, '\0'); | |
1492 | count++; | |
1493 | ptr++; | |
1494 | } | |
1495 | ||
1496 | compatibles = malloc(sizeof(ptr) * count); | |
1497 | if (!compatibles) | |
1498 | return -FDT_ERR_INTERNAL; | |
1499 | ||
1500 | ptr = start; | |
1501 | count = 0; | |
1502 | ||
1503 | while (ptr < end) { | |
1504 | compatibles[count] = ptr; | |
1505 | ptr = strchrnul(ptr, '\0'); | |
1506 | count++; | |
1507 | ptr++; | |
1508 | } | |
1509 | ||
1510 | skip_compat: | |
1511 | *compatiblesp = compatibles; | |
1512 | ||
1513 | if (countp) | |
1514 | *countp = count; | |
1515 | } | |
1516 | ||
16523ac7 TR |
1517 | carveout->start = fdtdec_get_addr_size_auto_noparent(blob, offset, |
1518 | "reg", 0, &size, | |
1519 | true); | |
1520 | if (carveout->start == FDT_ADDR_T_NONE) { | |
1521 | debug("failed to read address/size from \"reg\" property\n"); | |
1522 | return -FDT_ERR_NOTFOUND; | |
1523 | } | |
1524 | ||
1525 | carveout->end = carveout->start + size - 1; | |
1526 | ||
b9aad375 TR |
1527 | if (flags) { |
1528 | *flags = 0; | |
1529 | ||
1530 | if (fdtdec_get_bool(blob, offset, "no-map")) | |
1531 | *flags |= FDTDEC_RESERVED_MEMORY_NO_MAP; | |
1532 | } | |
1533 | ||
16523ac7 TR |
1534 | return 0; |
1535 | } | |
1536 | ||
1537 | int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name, | |
90194876 TR |
1538 | unsigned int index, const struct fdt_memory *carveout, |
1539 | const char *name, const char **compatibles, | |
b9aad375 | 1540 | unsigned int count, unsigned long flags) |
16523ac7 TR |
1541 | { |
1542 | uint32_t phandle; | |
b9200b19 | 1543 | int err, offset, len; |
16523ac7 | 1544 | fdt32_t value; |
b9200b19 | 1545 | void *prop; |
16523ac7 | 1546 | |
46cb0678 | 1547 | err = fdtdec_add_reserved_memory(blob, name, carveout, compatibles, |
b9aad375 | 1548 | count, &phandle, flags); |
16523ac7 TR |
1549 | if (err < 0) { |
1550 | debug("failed to add reserved memory: %d\n", err); | |
1551 | return err; | |
1552 | } | |
1553 | ||
1554 | offset = fdt_path_offset(blob, node); | |
1555 | if (offset < 0) { | |
1556 | debug("failed to find offset for node %s: %d\n", node, offset); | |
1557 | return offset; | |
1558 | } | |
1559 | ||
1560 | value = cpu_to_fdt32(phandle); | |
1561 | ||
b9200b19 LT |
1562 | if (!fdt_getprop(blob, offset, prop_name, &len)) { |
1563 | if (len == -FDT_ERR_NOTFOUND) | |
1564 | len = 0; | |
1565 | else | |
1566 | return len; | |
1567 | } | |
1568 | ||
1569 | if ((index + 1) * sizeof(value) > len) { | |
1570 | err = fdt_setprop_placeholder(blob, offset, prop_name, | |
1571 | (index + 1) * sizeof(value), | |
1572 | &prop); | |
1573 | if (err < 0) { | |
1574 | debug("failed to resize reserved memory property: %s\n", | |
1575 | fdt_strerror(err)); | |
1576 | return err; | |
1577 | } | |
1578 | } | |
1579 | ||
1580 | err = fdt_setprop_inplace_namelen_partial(blob, offset, prop_name, | |
1581 | strlen(prop_name), | |
1582 | index * sizeof(value), | |
1583 | &value, sizeof(value)); | |
16523ac7 | 1584 | if (err < 0) { |
b9200b19 LT |
1585 | debug("failed to update %s property for node %s: %s\n", |
1586 | prop_name, node, fdt_strerror(err)); | |
16523ac7 TR |
1587 | return err; |
1588 | } | |
1589 | ||
1590 | return 0; | |
1591 | } | |
1592 | ||
275b4832 | 1593 | /* TODO([email protected]): This function should not be weak */ |
0e2afc83 MV |
1594 | __weak int fdtdec_board_setup(const void *fdt_blob) |
1595 | { | |
1596 | return 0; | |
1597 | } | |
1598 | ||
3f51f78c SG |
1599 | /** |
1600 | * setup_multi_dtb_fit() - locate the correct dtb from a FIT | |
1601 | * | |
1602 | * This supports the CONFIG_MULTI_DTB_FIT feature, looking for the dtb in a | |
1603 | * supplied FIT | |
1604 | * | |
1605 | * It accepts the current value of gd->fdt_blob, which points to the FIT, then | |
1606 | * updates that gd->fdt_blob, to point to the chosen dtb so that U-Boot uses the | |
1607 | * correct one | |
1608 | */ | |
1609 | static void setup_multi_dtb_fit(void) | |
1610 | { | |
3f51f78c SG |
1611 | void *blob; |
1612 | ||
1613 | /* | |
1614 | * Try and uncompress the blob. | |
1615 | * Unfortunately there is no way to know how big the input blob really | |
1616 | * is. So let us set the maximum input size arbitrarily high. 16MB | |
1617 | * ought to be more than enough for packed DTBs. | |
1618 | */ | |
1619 | if (uncompress_blob(gd->fdt_blob, 0x1000000, &blob) == 0) | |
1620 | gd->fdt_blob = blob; | |
1621 | ||
1622 | /* | |
1623 | * Check if blob is a FIT images containings DTBs. | |
1624 | * If so, pick the most relevant | |
1625 | */ | |
1626 | blob = locate_dtb_in_fit(gd->fdt_blob); | |
1627 | if (blob) { | |
b4b6daf3 | 1628 | gd_set_multi_dtb_fit(gd->fdt_blob); |
3f51f78c | 1629 | gd->fdt_blob = blob; |
39605c6e | 1630 | gd->fdt_src = FDTSRC_FIT; |
3f51f78c | 1631 | } |
3f51f78c SG |
1632 | } |
1633 | ||
0879361f | 1634 | int fdtdec_setup(void) |
b45122fd | 1635 | { |
0e2afc83 | 1636 | int ret; |
ba83d859 SG |
1637 | |
1638 | /* The devicetree is typically appended to U-Boot */ | |
39605c6e | 1639 | if (IS_ENABLED(CONFIG_OF_SEPARATE)) { |
98550343 | 1640 | gd->fdt_blob = fdt_find_separate(); |
39605c6e SG |
1641 | gd->fdt_src = FDTSRC_SEPARATE; |
1642 | } else { /* embed dtb in ELF file for testing / development */ | |
98550343 | 1643 | gd->fdt_blob = dtb_dt_embedded(); |
39605c6e SG |
1644 | gd->fdt_src = FDTSRC_EMBED; |
1645 | } | |
98550343 SG |
1646 | |
1647 | /* Allow the board to override the fdt address. */ | |
1648 | if (IS_ENABLED(CONFIG_OF_BOARD)) { | |
ba83d859 SG |
1649 | gd->fdt_blob = board_fdt_blob_setup(&ret); |
1650 | if (ret) | |
1651 | return ret; | |
39605c6e | 1652 | gd->fdt_src = FDTSRC_BOARD; |
ba83d859 SG |
1653 | } |
1654 | ||
39605c6e | 1655 | /* Allow the early environment to override the fdt address */ |
931511d0 | 1656 | if (!IS_ENABLED(CONFIG_SPL_BUILD)) { |
39605c6e SG |
1657 | ulong addr; |
1658 | ||
1659 | addr = env_get_hex("fdtcontroladdr", 0); | |
1660 | if (addr) { | |
1661 | gd->fdt_blob = map_sysmem(addr, 0); | |
1662 | gd->fdt_src = FDTSRC_ENV; | |
1663 | } | |
931511d0 | 1664 | } |
2f57c951 | 1665 | |
3f51f78c SG |
1666 | if (CONFIG_IS_ENABLED(MULTI_DTB_FIT)) |
1667 | setup_multi_dtb_fit(); | |
2f57c951 | 1668 | |
0e2afc83 MV |
1669 | ret = fdtdec_prepare_fdt(); |
1670 | if (!ret) | |
1671 | ret = fdtdec_board_setup(gd->fdt_blob); | |
ee88ba71 SG |
1672 | oftree_reset(); |
1673 | ||
0e2afc83 | 1674 | return ret; |
b45122fd SG |
1675 | } |
1676 | ||
f1d2bc90 JJH |
1677 | int fdtdec_resetup(int *rescan) |
1678 | { | |
1679 | void *fdt_blob; | |
1680 | ||
1681 | /* | |
1682 | * If the current DTB is part of a compressed FIT image, | |
1683 | * try to locate the best match from the uncompressed | |
1684 | * FIT image stillpresent there. Save the time and space | |
1685 | * required to uncompress it again. | |
1686 | */ | |
b4b6daf3 SG |
1687 | if (gd_multi_dtb_fit()) { |
1688 | fdt_blob = locate_dtb_in_fit(gd_multi_dtb_fit()); | |
f1d2bc90 JJH |
1689 | |
1690 | if (fdt_blob == gd->fdt_blob) { | |
1691 | /* | |
1692 | * The best match did not change. no need to tear down | |
1693 | * the DM and rescan the fdt. | |
1694 | */ | |
1695 | *rescan = 0; | |
1696 | return 0; | |
1697 | } | |
1698 | ||
1699 | *rescan = 1; | |
1700 | gd->fdt_blob = fdt_blob; | |
1701 | return fdtdec_prepare_fdt(); | |
1702 | } | |
1703 | ||
1704 | /* | |
1705 | * If multi_dtb_fit is NULL, it means that blob appended to u-boot is | |
1706 | * not a FIT image containings DTB, but a single DTB. There is no need | |
1707 | * to teard down DM and rescan the DT in this case. | |
1708 | */ | |
1709 | *rescan = 0; | |
1710 | return 0; | |
1711 | } | |
f1d2bc90 | 1712 | |
90c08fa0 | 1713 | int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id, |
b75d8dc5 MY |
1714 | phys_addr_t *basep, phys_size_t *sizep, |
1715 | struct bd_info *bd) | |
90c08fa0 MP |
1716 | { |
1717 | int addr_cells, size_cells; | |
1718 | const u32 *cell, *end; | |
1719 | u64 total_size, size, addr; | |
1720 | int node, child; | |
1721 | bool auto_size; | |
1722 | int bank; | |
1723 | int len; | |
1724 | ||
1725 | debug("%s: board_id=%d\n", __func__, board_id); | |
1726 | if (!area) | |
1727 | area = "/memory"; | |
1728 | node = fdt_path_offset(blob, area); | |
1729 | if (node < 0) { | |
1730 | debug("No %s node found\n", area); | |
1731 | return -ENOENT; | |
1732 | } | |
1733 | ||
1734 | cell = fdt_getprop(blob, node, "reg", &len); | |
1735 | if (!cell) { | |
1736 | debug("No reg property found\n"); | |
1737 | return -ENOENT; | |
1738 | } | |
1739 | ||
1740 | addr_cells = fdt_address_cells(blob, node); | |
1741 | size_cells = fdt_size_cells(blob, node); | |
1742 | ||
1743 | /* Check the board id and mask */ | |
1744 | for (child = fdt_first_subnode(blob, node); | |
1745 | child >= 0; | |
1746 | child = fdt_next_subnode(blob, child)) { | |
1747 | int match_mask, match_value; | |
1748 | ||
1749 | match_mask = fdtdec_get_int(blob, child, "match-mask", -1); | |
1750 | match_value = fdtdec_get_int(blob, child, "match-value", -1); | |
1751 | ||
1752 | if (match_value >= 0 && | |
1753 | ((board_id & match_mask) == match_value)) { | |
1754 | /* Found matching mask */ | |
1755 | debug("Found matching mask %d\n", match_mask); | |
1756 | node = child; | |
1757 | cell = fdt_getprop(blob, node, "reg", &len); | |
1758 | if (!cell) { | |
1759 | debug("No memory-banks property found\n"); | |
1760 | return -EINVAL; | |
1761 | } | |
1762 | break; | |
1763 | } | |
1764 | } | |
1765 | /* Note: if no matching subnode was found we use the parent node */ | |
1766 | ||
1767 | if (bd) { | |
1768 | memset(bd->bi_dram, '\0', sizeof(bd->bi_dram[0]) * | |
1769 | CONFIG_NR_DRAM_BANKS); | |
1770 | } | |
1771 | ||
1772 | auto_size = fdtdec_get_bool(blob, node, "auto-size"); | |
1773 | ||
1774 | total_size = 0; | |
1775 | end = cell + len / 4 - addr_cells - size_cells; | |
1776 | debug("cell at %p, end %p\n", cell, end); | |
1777 | for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) { | |
1778 | if (cell > end) | |
1779 | break; | |
1780 | addr = 0; | |
1781 | if (addr_cells == 2) | |
1782 | addr += (u64)fdt32_to_cpu(*cell++) << 32UL; | |
1783 | addr += fdt32_to_cpu(*cell++); | |
1784 | if (bd) | |
1785 | bd->bi_dram[bank].start = addr; | |
1786 | if (basep && !bank) | |
1787 | *basep = (phys_addr_t)addr; | |
1788 | ||
1789 | size = 0; | |
1790 | if (size_cells == 2) | |
1791 | size += (u64)fdt32_to_cpu(*cell++) << 32UL; | |
1792 | size += fdt32_to_cpu(*cell++); | |
1793 | ||
1794 | if (auto_size) { | |
1795 | u64 new_size; | |
1796 | ||
dee37fc9 | 1797 | debug("Auto-sizing %llx, size %llx: ", addr, size); |
90c08fa0 MP |
1798 | new_size = get_ram_size((long *)(uintptr_t)addr, size); |
1799 | if (new_size == size) { | |
1800 | debug("OK\n"); | |
1801 | } else { | |
dee37fc9 | 1802 | debug("sized to %llx\n", new_size); |
90c08fa0 MP |
1803 | size = new_size; |
1804 | } | |
1805 | } | |
1806 | ||
1807 | if (bd) | |
1808 | bd->bi_dram[bank].size = size; | |
1809 | total_size += size; | |
1810 | } | |
1811 | ||
dee37fc9 | 1812 | debug("Memory size %llu\n", total_size); |
90c08fa0 MP |
1813 | if (sizep) |
1814 | *sizep = (phys_size_t)total_size; | |
1815 | ||
1816 | return 0; | |
1817 | } | |
90c08fa0 | 1818 | |
b45122fd | 1819 | #endif /* !USE_HOSTCC */ |