blob: 9d86dba32944ccdca97d35cfa02305f1de2508c3 [file] [log] [blame]
Simon Glassb5220bc2011-10-24 19:15:32 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glassb5220bc2011-10-24 19:15:32 +00004 */
5
Heiko Schocher29a23f92014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glassb5220bc2011-10-24 19:15:32 +00007#include <common.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -06008#include <errno.h>
Simon Glassb5220bc2011-10-24 19:15:32 +00009#include <serial.h>
10#include <libfdt.h>
11#include <fdtdec.h>
Simon Glass5c33c9f2014-07-23 06:55:09 -060012#include <linux/ctype.h>
Simon Glassb5220bc2011-10-24 19:15:32 +000013
Michal Simeke46431e2012-07-11 02:26:38 +000014#include <asm/gpio.h>
Simon Glassed3ee5c2012-02-27 10:52:36 +000015
Simon Glassb5220bc2011-10-24 19:15:32 +000016DECLARE_GLOBAL_DATA_PTR;
17
18/*
19 * Here are the type we know about. One day we might allow drivers to
20 * register. For now we just put them here. The COMPAT macro allows us to
21 * turn this into a sparse list later, and keeps the ID with the name.
22 */
23#define COMPAT(id, name) name
24static const char * const compat_names[COMPAT_COUNT] = {
Simon Glassf88fe2d2012-02-27 10:52:34 +000025 COMPAT(UNKNOWN, "<none>"),
Simon Glass87f938c2012-02-27 10:52:49 +000026 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Jim Lin7e44d932013-06-21 19:05:47 +080027 COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"),
28 COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"),
Tom Warrene32624e2013-02-08 07:25:30 +000029 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
Yen Lin96a78ac2012-03-06 19:00:23 +000030 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
31 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang0e35ad02012-04-02 13:18:52 +000032 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
33 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer6642a682012-04-17 09:01:35 +000034 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin312693c2012-07-29 20:53:29 +000035 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glasse1ae0d12012-10-17 13:24:49 +000036 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni87540de2012-10-17 13:24:50 +000037 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Stephen Warrena73ca472014-01-24 12:46:06 -070038 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
Tom Warrenf4e4e0b2013-03-04 14:07:18 -070039 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warrenc9aa8312013-02-21 12:31:30 +000040 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martin8f1b46b2013-01-29 13:51:24 +000041 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinb19f5742013-01-29 13:51:28 +000042 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Allen Martinc3bb3c82013-03-16 18:58:09 +000043 COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"),
Hatim RVcc9fe332012-12-11 00:52:46 +000044 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
45 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shindec34253d2012-12-26 20:03:10 +000046 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde72dbff12012-12-26 20:03:16 +000047 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
48 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinde5d506592012-12-26 20:03:20 +000049 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Hung-ying Tyan88364382013-05-15 18:27:28 +080050 COMPAT(GOOGLE_CROS_EC, "google,cros-ec"),
Hung-ying Tyan713cb682013-05-15 18:27:32 +080051 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000052 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053053 COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"),
Rajeshwari Shinde6abd1622013-01-07 23:35:05 +000054 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautam108b85b2013-09-14 14:02:48 +053055 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswat618766c2013-02-25 01:13:01 +000056 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Ajay Kumard7377b52013-02-21 23:53:00 +000057 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Piotr Wilczekde461c52014-03-07 14:59:39 +010058 COMPAT(SAMSUNG_EXYNOS_MIPI_DSI, "samsung,exynos-mipi-dsi"),
Ajay Kumar1e4706a2013-02-21 23:53:05 +000059 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Jaehoon Chung7d3ca0f2014-05-16 13:59:51 +090060 COMPAT(SAMSUNG_EXYNOS_DWMMC, "samsung,exynos-dwmmc"),
Piotr Wilczek3577fe82014-03-07 14:59:41 +010061 COMPAT(SAMSUNG_EXYNOS_MMC, "samsung,exynos-mmc"),
Rajeshwari Shindeee1e3c22013-06-24 16:47:20 +053062 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
Rajeshwari Shindecd577e22013-01-08 21:03:38 +000063 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glassbb8215f2013-03-11 06:08:08 +000064 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde7772bb72013-02-14 19:46:15 +000065 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Rong Changf6267992013-04-12 10:44:57 +000066 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
Vincent Palatinec34fa52013-04-12 11:04:36 +000067 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"),
naveen krishna chatradhiecbd7e12013-04-29 15:58:52 -070068 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Simon Glassdf93d902014-02-27 13:26:12 -070069 COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"),
Simon Glass7d95f2a2014-02-27 13:26:19 -070070 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
Tom Wai-Hong Tamac1058f2014-05-20 06:01:36 -060071 COMPAT(TI_TPS65090, "ti,tps65090"),
Simon Glassa9cf6da2014-05-20 06:01:42 -060072 COMPAT(COMPAT_NXP_PTN3460, "nxp,ptn3460"),
Ajay Kumar45c480c2014-09-05 16:53:33 +053073 COMPAT(SAMSUNG_EXYNOS_SYSMMU, "samsung,sysmmu-v3.3"),
Vadim Bendebury9e8f6642014-09-05 16:53:34 +053074 COMPAT(PARADE_PS8625, "parade,ps8625"),
Simon Glassca42d3f2014-10-10 07:30:14 -060075 COMPAT(COMPAT_INTEL_LPC, "intel,lpc"),
Simon Glass77f9b1f2014-11-12 22:42:21 -070076 COMPAT(INTEL_MICROCODE, "intel,microcode"),
Simon Glass65dd74a2014-11-12 22:42:28 -070077 COMPAT(MEMORY_SPD, "memory-spd"),
Simon Glass3ac83932014-11-14 18:18:38 -070078 COMPAT(INTEL_PANTHERPOINT_AHCI, "intel,pantherpoint-ahci"),
Simon Glassbb80be32014-11-24 21:18:16 -070079 COMPAT(INTEL_MODEL_206AX, "intel,model-206ax"),
Simon Glasseffcf062014-11-14 20:56:36 -070080 COMPAT(INTEL_GMA, "intel,gma"),
Simon Glassb5220bc2011-10-24 19:15:32 +000081};
82
Simon Glassa53f4a22012-01-17 08:20:50 +000083const char *fdtdec_get_compatible(enum fdt_compat_id id)
84{
85 /* We allow reading of the 'unknown' ID for testing purposes */
86 assert(id >= 0 && id < COMPAT_COUNT);
87 return compat_names[id];
88}
89
Simon Glass4397a2a2013-03-19 04:58:51 +000090fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
91 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +000092{
93 const fdt_addr_t *cell;
94 int len;
95
Simon Glass1cb23232012-07-12 05:25:01 +000096 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000097 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass4397a2a2013-03-19 04:58:51 +000098 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
99 len == sizeof(fdt_addr_t) * 2)) {
Simon Glass1cb23232012-07-12 05:25:01 +0000100 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glass4397a2a2013-03-19 04:58:51 +0000101 if (sizep) {
102 const fdt_size_t *size;
Simon Glass1cb23232012-07-12 05:25:01 +0000103
Simon Glass4397a2a2013-03-19 04:58:51 +0000104 size = (fdt_size_t *)((char *)cell +
105 sizeof(fdt_addr_t));
106 *sizep = fdt_size_to_cpu(*size);
Simon Glass370b6c52013-11-10 10:26:54 -0700107 debug("addr=%08lx, size=%08x\n",
108 (ulong)addr, *sizep);
Simon Glass4397a2a2013-03-19 04:58:51 +0000109 } else {
Simon Glass370b6c52013-11-10 10:26:54 -0700110 debug("%08lx\n", (ulong)addr);
Simon Glass4397a2a2013-03-19 04:58:51 +0000111 }
Simon Glass1cb23232012-07-12 05:25:01 +0000112 return addr;
113 }
114 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000115 return FDT_ADDR_T_NONE;
116}
117
Simon Glass4397a2a2013-03-19 04:58:51 +0000118fdt_addr_t fdtdec_get_addr(const void *blob, int node,
119 const char *prop_name)
120{
121 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
122}
123
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000124uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
125 uint64_t default_val)
126{
127 const uint64_t *cell64;
128 int length;
129
130 cell64 = fdt_getprop(blob, node, prop_name, &length);
131 if (!cell64 || length < sizeof(*cell64))
132 return default_val;
133
134 return fdt64_to_cpu(*cell64);
135}
136
Simon Glassf88fe2d2012-02-27 10:52:34 +0000137int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000138{
139 const char *cell;
140
Simon Glassf88fe2d2012-02-27 10:52:34 +0000141 /*
142 * It should say "okay", so only allow that. Some fdts use "ok" but
143 * this is a bug. Please fix your device tree source file. See here
144 * for discussion:
145 *
146 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
147 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000148 cell = fdt_getprop(blob, node, "status", NULL);
149 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000150 return 0 == strcmp(cell, "okay");
151 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000152}
153
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500154enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000155{
156 enum fdt_compat_id id;
157
158 /* Search our drivers */
159 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
160 if (0 == fdt_node_check_compatible(blob, node,
161 compat_names[id]))
162 return id;
163 return COMPAT_UNKNOWN;
164}
165
166int fdtdec_next_compatible(const void *blob, int node,
167 enum fdt_compat_id id)
168{
169 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
170}
171
Simon Glass3ddecfc2012-04-02 13:18:42 +0000172int fdtdec_next_compatible_subnode(const void *blob, int node,
173 enum fdt_compat_id id, int *depthp)
174{
175 do {
176 node = fdt_next_node(blob, node, depthp);
177 } while (*depthp > 1);
178
179 /* If this is a direct subnode, and compatible, return it */
180 if (*depthp == 1 && 0 == fdt_node_check_compatible(
181 blob, node, compat_names[id]))
182 return node;
183
184 return -FDT_ERR_NOTFOUND;
185}
186
Simon Glassb5220bc2011-10-24 19:15:32 +0000187int fdtdec_next_alias(const void *blob, const char *name,
188 enum fdt_compat_id id, int *upto)
189{
190#define MAX_STR_LEN 20
191 char str[MAX_STR_LEN + 20];
192 int node, err;
193
194 /* snprintf() is not available */
195 assert(strlen(name) < MAX_STR_LEN);
196 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000197 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000198 if (node < 0)
199 return node;
200 err = fdt_node_check_compatible(blob, node, compat_names[id]);
201 if (err < 0)
202 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000203 if (err)
204 return -FDT_ERR_NOTFOUND;
205 (*upto)++;
206 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000207}
208
Simon Glassa53f4a22012-01-17 08:20:50 +0000209int fdtdec_find_aliases_for_id(const void *blob, const char *name,
210 enum fdt_compat_id id, int *node_list, int maxcount)
211{
Simon Glassc6782272012-02-03 15:13:53 +0000212 memset(node_list, '\0', sizeof(*node_list) * maxcount);
213
214 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
215}
216
217/* TODO: Can we tighten this code up a little? */
218int fdtdec_add_aliases_for_id(const void *blob, const char *name,
219 enum fdt_compat_id id, int *node_list, int maxcount)
220{
Simon Glassa53f4a22012-01-17 08:20:50 +0000221 int name_len = strlen(name);
222 int nodes[maxcount];
223 int num_found = 0;
224 int offset, node;
225 int alias_node;
226 int count;
227 int i, j;
228
229 /* find the alias node if present */
230 alias_node = fdt_path_offset(blob, "/aliases");
231
232 /*
233 * start with nothing, and we can assume that the root node can't
234 * match
235 */
236 memset(nodes, '\0', sizeof(nodes));
237
238 /* First find all the compatible nodes */
239 for (node = count = 0; node >= 0 && count < maxcount;) {
240 node = fdtdec_next_compatible(blob, node, id);
241 if (node >= 0)
242 nodes[count++] = node;
243 }
244 if (node >= 0)
245 debug("%s: warning: maxcount exceeded with alias '%s'\n",
246 __func__, name);
247
248 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000249 for (offset = fdt_first_property_offset(blob, alias_node);
250 offset > 0;
251 offset = fdt_next_property_offset(blob, offset)) {
252 const struct fdt_property *prop;
253 const char *path;
254 int number;
255 int found;
256
257 node = 0;
258 prop = fdt_get_property_by_offset(blob, offset, NULL);
259 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
260 if (prop->len && 0 == strncmp(path, name, name_len))
261 node = fdt_path_offset(blob, prop->data);
262 if (node <= 0)
263 continue;
264
265 /* Get the alias number */
266 number = simple_strtoul(path + name_len, NULL, 10);
267 if (number < 0 || number >= maxcount) {
268 debug("%s: warning: alias '%s' is out of range\n",
269 __func__, path);
270 continue;
271 }
272
273 /* Make sure the node we found is actually in our list! */
274 found = -1;
275 for (j = 0; j < count; j++)
276 if (nodes[j] == node) {
277 found = j;
278 break;
279 }
280
281 if (found == -1) {
282 debug("%s: warning: alias '%s' points to a node "
283 "'%s' that is missing or is not compatible "
284 " with '%s'\n", __func__, path,
285 fdt_get_name(blob, node, NULL),
286 compat_names[id]);
287 continue;
288 }
289
290 /*
291 * Add this node to our list in the right place, and mark
292 * it as done.
293 */
294 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000295 if (node_list[number]) {
296 debug("%s: warning: alias '%s' requires that "
297 "a node be placed in the list in a "
298 "position which is already filled by "
299 "node '%s'\n", __func__, path,
300 fdt_get_name(blob, node, NULL));
301 continue;
302 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000303 node_list[number] = node;
304 if (number >= num_found)
305 num_found = number + 1;
306 }
Simon Glassc6782272012-02-03 15:13:53 +0000307 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000308 }
309
310 /* Add any nodes not mentioned by an alias */
311 for (i = j = 0; i < maxcount; i++) {
312 if (!node_list[i]) {
313 for (; j < maxcount; j++)
314 if (nodes[j] &&
315 fdtdec_get_is_enabled(blob, nodes[j]))
316 break;
317
318 /* Have we run out of nodes to add? */
319 if (j == maxcount)
320 break;
321
322 assert(!node_list[i]);
323 node_list[i] = nodes[j++];
324 if (i >= num_found)
325 num_found = i + 1;
326 }
327 }
328
329 return num_found;
330}
331
Simon Glass5c33c9f2014-07-23 06:55:09 -0600332int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
333 int *seqp)
334{
335 int base_len = strlen(base);
336 const char *find_name;
337 int find_namelen;
338 int prop_offset;
339 int aliases;
340
341 find_name = fdt_get_name(blob, offset, &find_namelen);
342 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
343
344 aliases = fdt_path_offset(blob, "/aliases");
345 for (prop_offset = fdt_first_property_offset(blob, aliases);
346 prop_offset > 0;
347 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
348 const char *prop;
349 const char *name;
350 const char *slash;
351 const char *p;
352 int len;
353
354 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
355 debug(" - %s, %s\n", name, prop);
356 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
357 strncmp(name, base, base_len))
358 continue;
359
360 slash = strrchr(prop, '/');
361 if (strcmp(slash + 1, find_name))
362 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700363 for (p = name + strlen(name) - 1; p > name; p--) {
364 if (!isdigit(*p)) {
365 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600366 debug("Found seq %d\n", *seqp);
367 return 0;
368 }
369 }
370 }
371
372 debug("Not found\n");
373 return -ENOENT;
374}
375
Simon Glassaac07d42014-09-04 16:27:24 -0600376int fdtdec_get_chosen_node(const void *blob, const char *name)
377{
378 const char *prop;
379 int chosen_node;
380 int len;
381
382 if (!blob)
383 return -FDT_ERR_NOTFOUND;
384 chosen_node = fdt_path_offset(blob, "/chosen");
385 prop = fdt_getprop(blob, chosen_node, name, &len);
386 if (!prop)
387 return -FDT_ERR_NOTFOUND;
388 return fdt_path_offset(blob, prop);
389}
390
Simon Glass9a263e52012-03-28 10:08:24 +0000391int fdtdec_check_fdt(void)
392{
393 /*
394 * We must have an FDT, but we cannot panic() yet since the console
395 * is not ready. So for now, just assert(). Boards which need an early
396 * FDT (prior to console ready) will need to make their own
397 * arrangements and do their own checks.
398 */
399 assert(!fdtdec_prepare_fdt());
400 return 0;
401}
402
Simon Glassb5220bc2011-10-24 19:15:32 +0000403/*
404 * This function is a little odd in that it accesses global data. At some
405 * point if the architecture board.c files merge this will make more sense.
406 * Even now, it is common code.
407 */
Simon Glass9a263e52012-03-28 10:08:24 +0000408int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000409{
Simon Glassc309c2d2013-04-20 08:42:46 +0000410 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
411 fdt_check_header(gd->fdt_blob)) {
Simon Glass9a263e52012-03-28 10:08:24 +0000412 printf("No valid FDT found - please append one to U-Boot "
413 "binary, use u-boot-dtb.bin or define "
Simon Glassa733b062013-04-26 02:53:43 +0000414 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass9a263e52012-03-28 10:08:24 +0000415 return -1;
416 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000417 return 0;
418}
Simon Glassd17da652012-02-27 10:52:35 +0000419
420int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
421{
422 const u32 *phandle;
423 int lookup;
424
Simon Glass1cb23232012-07-12 05:25:01 +0000425 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000426 phandle = fdt_getprop(blob, node, prop_name, NULL);
427 if (!phandle)
428 return -FDT_ERR_NOTFOUND;
429
430 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
431 return lookup;
432}
433
434/**
435 * Look up a property in a node and check that it has a minimum length.
436 *
437 * @param blob FDT blob
438 * @param node node to examine
439 * @param prop_name name of property to find
440 * @param min_len minimum property length in bytes
441 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
442 found, or -FDT_ERR_BADLAYOUT if not enough data
443 * @return pointer to cell, which is only valid if err == 0
444 */
445static const void *get_prop_check_min_len(const void *blob, int node,
446 const char *prop_name, int min_len, int *err)
447{
448 const void *cell;
449 int len;
450
451 debug("%s: %s\n", __func__, prop_name);
452 cell = fdt_getprop(blob, node, prop_name, &len);
453 if (!cell)
454 *err = -FDT_ERR_NOTFOUND;
455 else if (len < min_len)
456 *err = -FDT_ERR_BADLAYOUT;
457 else
458 *err = 0;
459 return cell;
460}
461
462int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
463 u32 *array, int count)
464{
465 const u32 *cell;
466 int i, err = 0;
467
468 debug("%s: %s\n", __func__, prop_name);
469 cell = get_prop_check_min_len(blob, node, prop_name,
470 sizeof(u32) * count, &err);
471 if (!err) {
472 for (i = 0; i < count; i++)
473 array[i] = fdt32_to_cpu(cell[i]);
474 }
475 return err;
476}
477
Simon Glassa9f04d42014-11-10 18:00:19 -0700478int fdtdec_get_int_array_count(const void *blob, int node,
479 const char *prop_name, u32 *array, int count)
480{
481 const u32 *cell;
482 int len, elems;
483 int i;
484
485 debug("%s: %s\n", __func__, prop_name);
486 cell = fdt_getprop(blob, node, prop_name, &len);
487 if (!cell)
488 return -FDT_ERR_NOTFOUND;
489 elems = len / sizeof(u32);
490 if (count > elems)
491 count = elems;
492 for (i = 0; i < count; i++)
493 array[i] = fdt32_to_cpu(cell[i]);
494
495 return count;
496}
497
Simon Glass96875e72012-04-02 13:18:41 +0000498const u32 *fdtdec_locate_array(const void *blob, int node,
499 const char *prop_name, int count)
500{
501 const u32 *cell;
502 int err;
503
504 cell = get_prop_check_min_len(blob, node, prop_name,
505 sizeof(u32) * count, &err);
506 return err ? NULL : cell;
507}
508
Simon Glassd17da652012-02-27 10:52:35 +0000509int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
510{
511 const s32 *cell;
512 int len;
513
514 debug("%s: %s\n", __func__, prop_name);
515 cell = fdt_getprop(blob, node, prop_name, &len);
516 return cell != NULL;
517}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000518
519/**
520 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
521 * terminating item.
522 *
523 * @param blob FDT blob to use
524 * @param node Node to look at
525 * @param prop_name Node property name
526 * @param gpio Array of gpio elements to fill from FDT. This will be
527 * untouched if either 0 or an error is returned
528 * @param max_count Maximum number of elements allowed
529 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
530 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
531 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000532int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
533 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000534{
535 const struct fdt_property *prop;
536 const u32 *cell;
537 const char *name;
538 int len, i;
539
540 debug("%s: %s\n", __func__, prop_name);
541 assert(max_count > 0);
542 prop = fdt_get_property(blob, node, prop_name, &len);
543 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000544 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000545 return -FDT_ERR_NOTFOUND;
546 }
547
548 /* We will use the name to tag the GPIO */
549 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
550 cell = (u32 *)prop->data;
551 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
552 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000553 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000554 "property '%s'\n", __func__, prop_name);
555 return -FDT_ERR_BADLAYOUT;
556 }
557
558 /* Read out the GPIO data from the cells */
559 for (i = 0; i < len; i++, cell += 3) {
560 gpio[i].gpio = fdt32_to_cpu(cell[1]);
561 gpio[i].flags = fdt32_to_cpu(cell[2]);
562 gpio[i].name = name;
563 }
564
565 return len;
566}
567
568int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
569 struct fdt_gpio_state *gpio)
570{
571 int err;
572
573 debug("%s: %s\n", __func__, prop_name);
574 gpio->gpio = FDT_GPIO_NONE;
575 gpio->name = NULL;
576 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
577 return err == 1 ? 0 : err;
578}
579
Sean Paul202ff752012-10-25 16:31:06 +0000580int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
581{
582 int val;
583
584 if (!fdt_gpio_isvalid(gpio))
585 return -1;
586
587 val = gpio_get_value(gpio->gpio);
588 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
589}
590
591int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
592{
593 if (!fdt_gpio_isvalid(gpio))
594 return -1;
595
596 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
597 return gpio_set_value(gpio->gpio, val);
598}
599
Simon Glassed3ee5c2012-02-27 10:52:36 +0000600int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
601{
602 /*
603 * Return success if there is no GPIO defined. This is used for
604 * optional GPIOs)
605 */
606 if (!fdt_gpio_isvalid(gpio))
607 return 0;
608
609 if (gpio_request(gpio->gpio, gpio->name))
610 return -1;
611 return 0;
612}
Anton Staffbed4d892012-04-17 09:01:28 +0000613
614int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
615 u8 *array, int count)
616{
617 const u8 *cell;
618 int err;
619
620 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
621 if (!err)
622 memcpy(array, cell, count);
623 return err;
624}
625
626const u8 *fdtdec_locate_byte_array(const void *blob, int node,
627 const char *prop_name, int count)
628{
629 const u8 *cell;
630 int err;
631
632 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
633 if (err)
634 return NULL;
635 return cell;
636}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000637
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000638int fdtdec_get_config_int(const void *blob, const char *prop_name,
639 int default_val)
640{
641 int config_node;
642
643 debug("%s: %s\n", __func__, prop_name);
644 config_node = fdt_path_offset(blob, "/config");
645 if (config_node < 0)
646 return default_val;
647 return fdtdec_get_int(blob, config_node, prop_name, default_val);
648}
Simon Glass332ab0d2012-10-25 16:30:59 +0000649
Gabe Black79289c02012-10-25 16:31:04 +0000650int fdtdec_get_config_bool(const void *blob, const char *prop_name)
651{
652 int config_node;
653 const void *prop;
654
655 debug("%s: %s\n", __func__, prop_name);
656 config_node = fdt_path_offset(blob, "/config");
657 if (config_node < 0)
658 return 0;
659 prop = fdt_get_property(blob, config_node, prop_name, NULL);
660
661 return prop != NULL;
662}
663
Simon Glass332ab0d2012-10-25 16:30:59 +0000664char *fdtdec_get_config_string(const void *blob, const char *prop_name)
665{
666 const char *nodep;
667 int nodeoffset;
668 int len;
669
670 debug("%s: %s\n", __func__, prop_name);
671 nodeoffset = fdt_path_offset(blob, "/config");
672 if (nodeoffset < 0)
673 return NULL;
674
675 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
676 if (!nodep)
677 return NULL;
678
679 return (char *)nodep;
680}
Simon Glassf20c4612012-10-25 16:31:00 +0000681
Simon Glass76489832014-10-23 18:58:51 -0600682int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
683 fdt_addr_t *basep, fdt_size_t *sizep)
Simon Glassf20c4612012-10-25 16:31:00 +0000684{
685 const fdt_addr_t *cell;
686 int len;
687
Simon Glass76489832014-10-23 18:58:51 -0600688 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
689 prop_name);
Simon Glassf20c4612012-10-25 16:31:00 +0000690 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass76489832014-10-23 18:58:51 -0600691 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
692 debug("cell=%p, len=%d\n", cell, len);
Simon Glassf20c4612012-10-25 16:31:00 +0000693 return -1;
Simon Glass76489832014-10-23 18:58:51 -0600694 }
Simon Glassf20c4612012-10-25 16:31:00 +0000695
Simon Glass76489832014-10-23 18:58:51 -0600696 *basep = fdt_addr_to_cpu(*cell);
697 *sizep = fdt_size_to_cpu(cell[1]);
698 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
699 (ulong)*sizep);
700
Simon Glassf20c4612012-10-25 16:31:00 +0000701 return 0;
702}
Simon Glass006e73b2014-02-27 13:26:01 -0700703
704/**
705 * Read a flash entry from the fdt
706 *
707 * @param blob FDT blob
708 * @param node Offset of node to read
709 * @param name Name of node being read
710 * @param entry Place to put offset and size of this node
711 * @return 0 if ok, -ve on error
712 */
713int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
714 struct fmap_entry *entry)
715{
Simon Glassf3cc44f2014-10-23 18:58:52 -0600716 const char *prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700717 u32 reg[2];
718
719 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
720 debug("Node '%s' has bad/missing 'reg' property\n", name);
721 return -FDT_ERR_NOTFOUND;
722 }
723 entry->offset = reg[0];
724 entry->length = reg[1];
Simon Glassf3cc44f2014-10-23 18:58:52 -0600725 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
726 prop = fdt_getprop(blob, node, "compress", NULL);
727 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
728 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
729 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
730 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
731 entry->hash = (uint8_t *)prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700732
733 return 0;
734}
Thierry Reding56f42242014-08-26 17:33:53 +0200735
736static u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
737{
738 u64 number = 0;
739
740 while (cells--)
741 number = (number << 32) | fdt32_to_cpu(*ptr++);
742
743 return number;
744}
745
746int fdt_get_resource(const void *fdt, int node, const char *property,
747 unsigned int index, struct fdt_resource *res)
748{
749 const fdt32_t *ptr, *end;
750 int na, ns, len, parent;
751 unsigned int i = 0;
752
753 parent = fdt_parent_offset(fdt, node);
754 if (parent < 0)
755 return parent;
756
757 na = fdt_address_cells(fdt, parent);
758 ns = fdt_size_cells(fdt, parent);
759
760 ptr = fdt_getprop(fdt, node, property, &len);
761 if (!ptr)
762 return len;
763
764 end = ptr + len / sizeof(*ptr);
765
766 while (ptr + na + ns <= end) {
767 if (i == index) {
768 res->start = res->end = fdtdec_get_number(ptr, na);
769 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
770 return 0;
771 }
772
773 ptr += na + ns;
774 i++;
775 }
776
777 return -FDT_ERR_NOTFOUND;
778}
779
780int fdt_get_named_resource(const void *fdt, int node, const char *property,
781 const char *prop_names, const char *name,
782 struct fdt_resource *res)
783{
784 int index;
785
786 index = fdt_find_string(fdt, node, prop_names, name);
787 if (index < 0)
788 return index;
789
790 return fdt_get_resource(fdt, node, property, index, res);
791}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200792
793int fdtdec_pci_get_bdf(const void *fdt, int node, int *bdf)
794{
795 const fdt32_t *prop;
796 int len;
797
798 prop = fdt_getprop(fdt, node, "reg", &len);
799 if (!prop)
800 return len;
801
802 *bdf = fdt32_to_cpu(*prop) & 0xffffff;
803
804 return 0;
805}
Simon Glass26403872014-10-23 18:58:56 -0600806
807int fdtdec_decode_memory_region(const void *blob, int config_node,
808 const char *mem_type, const char *suffix,
809 fdt_addr_t *basep, fdt_size_t *sizep)
810{
811 char prop_name[50];
812 const char *mem;
813 fdt_size_t size, offset_size;
814 fdt_addr_t base, offset;
815 int node;
816
817 if (config_node == -1) {
818 config_node = fdt_path_offset(blob, "/config");
819 if (config_node < 0) {
820 debug("%s: Cannot find /config node\n", __func__);
821 return -ENOENT;
822 }
823 }
824 if (!suffix)
825 suffix = "";
826
827 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
828 suffix);
829 mem = fdt_getprop(blob, config_node, prop_name, NULL);
830 if (!mem) {
831 debug("%s: No memory type for '%s', using /memory\n", __func__,
832 prop_name);
833 mem = "/memory";
834 }
835
836 node = fdt_path_offset(blob, mem);
837 if (node < 0) {
838 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
839 fdt_strerror(node));
840 return -ENOENT;
841 }
842
843 /*
844 * Not strictly correct - the memory may have multiple banks. We just
845 * use the first
846 */
847 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
848 debug("%s: Failed to decode memory region %s\n", __func__,
849 mem);
850 return -EINVAL;
851 }
852
853 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
854 suffix);
855 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
856 &offset_size)) {
857 debug("%s: Failed to decode memory region '%s'\n", __func__,
858 prop_name);
859 return -EINVAL;
860 }
861
862 *basep = base + offset;
863 *sizep = offset_size;
864
865 return 0;
866}
Heiko Schocher29a23f92014-03-03 12:19:30 +0100867#endif