blob: e8775df5d00b135972799040d03cc76932af759d [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 Glassb5220bc2011-10-24 19:15:32 +000078};
79
Simon Glassa53f4a22012-01-17 08:20:50 +000080const char *fdtdec_get_compatible(enum fdt_compat_id id)
81{
82 /* We allow reading of the 'unknown' ID for testing purposes */
83 assert(id >= 0 && id < COMPAT_COUNT);
84 return compat_names[id];
85}
86
Simon Glass4397a2a2013-03-19 04:58:51 +000087fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
88 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +000089{
90 const fdt_addr_t *cell;
91 int len;
92
Simon Glass1cb23232012-07-12 05:25:01 +000093 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000094 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass4397a2a2013-03-19 04:58:51 +000095 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
96 len == sizeof(fdt_addr_t) * 2)) {
Simon Glass1cb23232012-07-12 05:25:01 +000097 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glass4397a2a2013-03-19 04:58:51 +000098 if (sizep) {
99 const fdt_size_t *size;
Simon Glass1cb23232012-07-12 05:25:01 +0000100
Simon Glass4397a2a2013-03-19 04:58:51 +0000101 size = (fdt_size_t *)((char *)cell +
102 sizeof(fdt_addr_t));
103 *sizep = fdt_size_to_cpu(*size);
Simon Glass370b6c52013-11-10 10:26:54 -0700104 debug("addr=%08lx, size=%08x\n",
105 (ulong)addr, *sizep);
Simon Glass4397a2a2013-03-19 04:58:51 +0000106 } else {
Simon Glass370b6c52013-11-10 10:26:54 -0700107 debug("%08lx\n", (ulong)addr);
Simon Glass4397a2a2013-03-19 04:58:51 +0000108 }
Simon Glass1cb23232012-07-12 05:25:01 +0000109 return addr;
110 }
111 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000112 return FDT_ADDR_T_NONE;
113}
114
Simon Glass4397a2a2013-03-19 04:58:51 +0000115fdt_addr_t fdtdec_get_addr(const void *blob, int node,
116 const char *prop_name)
117{
118 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
119}
120
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000121uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
122 uint64_t default_val)
123{
124 const uint64_t *cell64;
125 int length;
126
127 cell64 = fdt_getprop(blob, node, prop_name, &length);
128 if (!cell64 || length < sizeof(*cell64))
129 return default_val;
130
131 return fdt64_to_cpu(*cell64);
132}
133
Simon Glassf88fe2d2012-02-27 10:52:34 +0000134int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000135{
136 const char *cell;
137
Simon Glassf88fe2d2012-02-27 10:52:34 +0000138 /*
139 * It should say "okay", so only allow that. Some fdts use "ok" but
140 * this is a bug. Please fix your device tree source file. See here
141 * for discussion:
142 *
143 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
144 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000145 cell = fdt_getprop(blob, node, "status", NULL);
146 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000147 return 0 == strcmp(cell, "okay");
148 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000149}
150
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500151enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000152{
153 enum fdt_compat_id id;
154
155 /* Search our drivers */
156 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
157 if (0 == fdt_node_check_compatible(blob, node,
158 compat_names[id]))
159 return id;
160 return COMPAT_UNKNOWN;
161}
162
163int fdtdec_next_compatible(const void *blob, int node,
164 enum fdt_compat_id id)
165{
166 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
167}
168
Simon Glass3ddecfc2012-04-02 13:18:42 +0000169int fdtdec_next_compatible_subnode(const void *blob, int node,
170 enum fdt_compat_id id, int *depthp)
171{
172 do {
173 node = fdt_next_node(blob, node, depthp);
174 } while (*depthp > 1);
175
176 /* If this is a direct subnode, and compatible, return it */
177 if (*depthp == 1 && 0 == fdt_node_check_compatible(
178 blob, node, compat_names[id]))
179 return node;
180
181 return -FDT_ERR_NOTFOUND;
182}
183
Simon Glassb5220bc2011-10-24 19:15:32 +0000184int fdtdec_next_alias(const void *blob, const char *name,
185 enum fdt_compat_id id, int *upto)
186{
187#define MAX_STR_LEN 20
188 char str[MAX_STR_LEN + 20];
189 int node, err;
190
191 /* snprintf() is not available */
192 assert(strlen(name) < MAX_STR_LEN);
193 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000194 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000195 if (node < 0)
196 return node;
197 err = fdt_node_check_compatible(blob, node, compat_names[id]);
198 if (err < 0)
199 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000200 if (err)
201 return -FDT_ERR_NOTFOUND;
202 (*upto)++;
203 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000204}
205
Simon Glassa53f4a22012-01-17 08:20:50 +0000206int fdtdec_find_aliases_for_id(const void *blob, const char *name,
207 enum fdt_compat_id id, int *node_list, int maxcount)
208{
Simon Glassc6782272012-02-03 15:13:53 +0000209 memset(node_list, '\0', sizeof(*node_list) * maxcount);
210
211 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
212}
213
214/* TODO: Can we tighten this code up a little? */
215int fdtdec_add_aliases_for_id(const void *blob, const char *name,
216 enum fdt_compat_id id, int *node_list, int maxcount)
217{
Simon Glassa53f4a22012-01-17 08:20:50 +0000218 int name_len = strlen(name);
219 int nodes[maxcount];
220 int num_found = 0;
221 int offset, node;
222 int alias_node;
223 int count;
224 int i, j;
225
226 /* find the alias node if present */
227 alias_node = fdt_path_offset(blob, "/aliases");
228
229 /*
230 * start with nothing, and we can assume that the root node can't
231 * match
232 */
233 memset(nodes, '\0', sizeof(nodes));
234
235 /* First find all the compatible nodes */
236 for (node = count = 0; node >= 0 && count < maxcount;) {
237 node = fdtdec_next_compatible(blob, node, id);
238 if (node >= 0)
239 nodes[count++] = node;
240 }
241 if (node >= 0)
242 debug("%s: warning: maxcount exceeded with alias '%s'\n",
243 __func__, name);
244
245 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000246 for (offset = fdt_first_property_offset(blob, alias_node);
247 offset > 0;
248 offset = fdt_next_property_offset(blob, offset)) {
249 const struct fdt_property *prop;
250 const char *path;
251 int number;
252 int found;
253
254 node = 0;
255 prop = fdt_get_property_by_offset(blob, offset, NULL);
256 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
257 if (prop->len && 0 == strncmp(path, name, name_len))
258 node = fdt_path_offset(blob, prop->data);
259 if (node <= 0)
260 continue;
261
262 /* Get the alias number */
263 number = simple_strtoul(path + name_len, NULL, 10);
264 if (number < 0 || number >= maxcount) {
265 debug("%s: warning: alias '%s' is out of range\n",
266 __func__, path);
267 continue;
268 }
269
270 /* Make sure the node we found is actually in our list! */
271 found = -1;
272 for (j = 0; j < count; j++)
273 if (nodes[j] == node) {
274 found = j;
275 break;
276 }
277
278 if (found == -1) {
279 debug("%s: warning: alias '%s' points to a node "
280 "'%s' that is missing or is not compatible "
281 " with '%s'\n", __func__, path,
282 fdt_get_name(blob, node, NULL),
283 compat_names[id]);
284 continue;
285 }
286
287 /*
288 * Add this node to our list in the right place, and mark
289 * it as done.
290 */
291 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000292 if (node_list[number]) {
293 debug("%s: warning: alias '%s' requires that "
294 "a node be placed in the list in a "
295 "position which is already filled by "
296 "node '%s'\n", __func__, path,
297 fdt_get_name(blob, node, NULL));
298 continue;
299 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000300 node_list[number] = node;
301 if (number >= num_found)
302 num_found = number + 1;
303 }
Simon Glassc6782272012-02-03 15:13:53 +0000304 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000305 }
306
307 /* Add any nodes not mentioned by an alias */
308 for (i = j = 0; i < maxcount; i++) {
309 if (!node_list[i]) {
310 for (; j < maxcount; j++)
311 if (nodes[j] &&
312 fdtdec_get_is_enabled(blob, nodes[j]))
313 break;
314
315 /* Have we run out of nodes to add? */
316 if (j == maxcount)
317 break;
318
319 assert(!node_list[i]);
320 node_list[i] = nodes[j++];
321 if (i >= num_found)
322 num_found = i + 1;
323 }
324 }
325
326 return num_found;
327}
328
Simon Glass5c33c9f2014-07-23 06:55:09 -0600329int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
330 int *seqp)
331{
332 int base_len = strlen(base);
333 const char *find_name;
334 int find_namelen;
335 int prop_offset;
336 int aliases;
337
338 find_name = fdt_get_name(blob, offset, &find_namelen);
339 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
340
341 aliases = fdt_path_offset(blob, "/aliases");
342 for (prop_offset = fdt_first_property_offset(blob, aliases);
343 prop_offset > 0;
344 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
345 const char *prop;
346 const char *name;
347 const char *slash;
348 const char *p;
349 int len;
350
351 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
352 debug(" - %s, %s\n", name, prop);
353 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
354 strncmp(name, base, base_len))
355 continue;
356
357 slash = strrchr(prop, '/');
358 if (strcmp(slash + 1, find_name))
359 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700360 for (p = name + strlen(name) - 1; p > name; p--) {
361 if (!isdigit(*p)) {
362 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600363 debug("Found seq %d\n", *seqp);
364 return 0;
365 }
366 }
367 }
368
369 debug("Not found\n");
370 return -ENOENT;
371}
372
Simon Glass3234aa42014-07-23 06:55:16 -0600373int fdtdec_get_alias_node(const void *blob, const char *name)
374{
375 const char *prop;
376 int alias_node;
377 int len;
378
379 if (!blob)
380 return -FDT_ERR_NOTFOUND;
381 alias_node = fdt_path_offset(blob, "/aliases");
382 prop = fdt_getprop(blob, alias_node, name, &len);
383 if (!prop)
384 return -FDT_ERR_NOTFOUND;
385 return fdt_path_offset(blob, prop);
386}
387
Simon Glassaac07d42014-09-04 16:27:24 -0600388int fdtdec_get_chosen_node(const void *blob, const char *name)
389{
390 const char *prop;
391 int chosen_node;
392 int len;
393
394 if (!blob)
395 return -FDT_ERR_NOTFOUND;
396 chosen_node = fdt_path_offset(blob, "/chosen");
397 prop = fdt_getprop(blob, chosen_node, name, &len);
398 if (!prop)
399 return -FDT_ERR_NOTFOUND;
400 return fdt_path_offset(blob, prop);
401}
402
Simon Glass9a263e52012-03-28 10:08:24 +0000403int fdtdec_check_fdt(void)
404{
405 /*
406 * We must have an FDT, but we cannot panic() yet since the console
407 * is not ready. So for now, just assert(). Boards which need an early
408 * FDT (prior to console ready) will need to make their own
409 * arrangements and do their own checks.
410 */
411 assert(!fdtdec_prepare_fdt());
412 return 0;
413}
414
Simon Glassb5220bc2011-10-24 19:15:32 +0000415/*
416 * This function is a little odd in that it accesses global data. At some
417 * point if the architecture board.c files merge this will make more sense.
418 * Even now, it is common code.
419 */
Simon Glass9a263e52012-03-28 10:08:24 +0000420int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000421{
Simon Glassc309c2d2013-04-20 08:42:46 +0000422 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
423 fdt_check_header(gd->fdt_blob)) {
Simon Glass9a263e52012-03-28 10:08:24 +0000424 printf("No valid FDT found - please append one to U-Boot "
425 "binary, use u-boot-dtb.bin or define "
Simon Glassa733b062013-04-26 02:53:43 +0000426 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass9a263e52012-03-28 10:08:24 +0000427 return -1;
428 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000429 return 0;
430}
Simon Glassd17da652012-02-27 10:52:35 +0000431
432int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
433{
434 const u32 *phandle;
435 int lookup;
436
Simon Glass1cb23232012-07-12 05:25:01 +0000437 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000438 phandle = fdt_getprop(blob, node, prop_name, NULL);
439 if (!phandle)
440 return -FDT_ERR_NOTFOUND;
441
442 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
443 return lookup;
444}
445
446/**
447 * Look up a property in a node and check that it has a minimum length.
448 *
449 * @param blob FDT blob
450 * @param node node to examine
451 * @param prop_name name of property to find
452 * @param min_len minimum property length in bytes
453 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
454 found, or -FDT_ERR_BADLAYOUT if not enough data
455 * @return pointer to cell, which is only valid if err == 0
456 */
457static const void *get_prop_check_min_len(const void *blob, int node,
458 const char *prop_name, int min_len, int *err)
459{
460 const void *cell;
461 int len;
462
463 debug("%s: %s\n", __func__, prop_name);
464 cell = fdt_getprop(blob, node, prop_name, &len);
465 if (!cell)
466 *err = -FDT_ERR_NOTFOUND;
467 else if (len < min_len)
468 *err = -FDT_ERR_BADLAYOUT;
469 else
470 *err = 0;
471 return cell;
472}
473
474int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
475 u32 *array, int count)
476{
477 const u32 *cell;
478 int i, err = 0;
479
480 debug("%s: %s\n", __func__, prop_name);
481 cell = get_prop_check_min_len(blob, node, prop_name,
482 sizeof(u32) * count, &err);
483 if (!err) {
484 for (i = 0; i < count; i++)
485 array[i] = fdt32_to_cpu(cell[i]);
486 }
487 return err;
488}
489
Simon Glassa9f04d42014-11-10 18:00:19 -0700490int fdtdec_get_int_array_count(const void *blob, int node,
491 const char *prop_name, u32 *array, int count)
492{
493 const u32 *cell;
494 int len, elems;
495 int i;
496
497 debug("%s: %s\n", __func__, prop_name);
498 cell = fdt_getprop(blob, node, prop_name, &len);
499 if (!cell)
500 return -FDT_ERR_NOTFOUND;
501 elems = len / sizeof(u32);
502 if (count > elems)
503 count = elems;
504 for (i = 0; i < count; i++)
505 array[i] = fdt32_to_cpu(cell[i]);
506
507 return count;
508}
509
Simon Glass96875e72012-04-02 13:18:41 +0000510const u32 *fdtdec_locate_array(const void *blob, int node,
511 const char *prop_name, int count)
512{
513 const u32 *cell;
514 int err;
515
516 cell = get_prop_check_min_len(blob, node, prop_name,
517 sizeof(u32) * count, &err);
518 return err ? NULL : cell;
519}
520
Simon Glassd17da652012-02-27 10:52:35 +0000521int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
522{
523 const s32 *cell;
524 int len;
525
526 debug("%s: %s\n", __func__, prop_name);
527 cell = fdt_getprop(blob, node, prop_name, &len);
528 return cell != NULL;
529}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000530
531/**
532 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
533 * terminating item.
534 *
535 * @param blob FDT blob to use
536 * @param node Node to look at
537 * @param prop_name Node property name
538 * @param gpio Array of gpio elements to fill from FDT. This will be
539 * untouched if either 0 or an error is returned
540 * @param max_count Maximum number of elements allowed
541 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
542 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
543 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000544int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
545 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000546{
547 const struct fdt_property *prop;
548 const u32 *cell;
549 const char *name;
550 int len, i;
551
552 debug("%s: %s\n", __func__, prop_name);
553 assert(max_count > 0);
554 prop = fdt_get_property(blob, node, prop_name, &len);
555 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000556 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000557 return -FDT_ERR_NOTFOUND;
558 }
559
560 /* We will use the name to tag the GPIO */
561 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
562 cell = (u32 *)prop->data;
563 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
564 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000565 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000566 "property '%s'\n", __func__, prop_name);
567 return -FDT_ERR_BADLAYOUT;
568 }
569
570 /* Read out the GPIO data from the cells */
571 for (i = 0; i < len; i++, cell += 3) {
572 gpio[i].gpio = fdt32_to_cpu(cell[1]);
573 gpio[i].flags = fdt32_to_cpu(cell[2]);
574 gpio[i].name = name;
575 }
576
577 return len;
578}
579
580int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
581 struct fdt_gpio_state *gpio)
582{
583 int err;
584
585 debug("%s: %s\n", __func__, prop_name);
586 gpio->gpio = FDT_GPIO_NONE;
587 gpio->name = NULL;
588 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
589 return err == 1 ? 0 : err;
590}
591
Sean Paul202ff752012-10-25 16:31:06 +0000592int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
593{
594 int val;
595
596 if (!fdt_gpio_isvalid(gpio))
597 return -1;
598
599 val = gpio_get_value(gpio->gpio);
600 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
601}
602
603int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
604{
605 if (!fdt_gpio_isvalid(gpio))
606 return -1;
607
608 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
609 return gpio_set_value(gpio->gpio, val);
610}
611
Simon Glassed3ee5c2012-02-27 10:52:36 +0000612int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
613{
614 /*
615 * Return success if there is no GPIO defined. This is used for
616 * optional GPIOs)
617 */
618 if (!fdt_gpio_isvalid(gpio))
619 return 0;
620
621 if (gpio_request(gpio->gpio, gpio->name))
622 return -1;
623 return 0;
624}
Anton Staffbed4d892012-04-17 09:01:28 +0000625
626int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
627 u8 *array, 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 memcpy(array, cell, count);
635 return err;
636}
637
638const u8 *fdtdec_locate_byte_array(const void *blob, int node,
639 const char *prop_name, int count)
640{
641 const u8 *cell;
642 int err;
643
644 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
645 if (err)
646 return NULL;
647 return cell;
648}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000649
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000650int fdtdec_get_config_int(const void *blob, const char *prop_name,
651 int default_val)
652{
653 int config_node;
654
655 debug("%s: %s\n", __func__, prop_name);
656 config_node = fdt_path_offset(blob, "/config");
657 if (config_node < 0)
658 return default_val;
659 return fdtdec_get_int(blob, config_node, prop_name, default_val);
660}
Simon Glass332ab0d2012-10-25 16:30:59 +0000661
Gabe Black79289c02012-10-25 16:31:04 +0000662int fdtdec_get_config_bool(const void *blob, const char *prop_name)
663{
664 int config_node;
665 const void *prop;
666
667 debug("%s: %s\n", __func__, prop_name);
668 config_node = fdt_path_offset(blob, "/config");
669 if (config_node < 0)
670 return 0;
671 prop = fdt_get_property(blob, config_node, prop_name, NULL);
672
673 return prop != NULL;
674}
675
Simon Glass332ab0d2012-10-25 16:30:59 +0000676char *fdtdec_get_config_string(const void *blob, const char *prop_name)
677{
678 const char *nodep;
679 int nodeoffset;
680 int len;
681
682 debug("%s: %s\n", __func__, prop_name);
683 nodeoffset = fdt_path_offset(blob, "/config");
684 if (nodeoffset < 0)
685 return NULL;
686
687 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
688 if (!nodep)
689 return NULL;
690
691 return (char *)nodep;
692}
Simon Glassf20c4612012-10-25 16:31:00 +0000693
694int fdtdec_decode_region(const void *blob, int node,
695 const char *prop_name, void **ptrp, size_t *size)
696{
697 const fdt_addr_t *cell;
698 int len;
699
700 debug("%s: %s\n", __func__, prop_name);
701 cell = fdt_getprop(blob, node, prop_name, &len);
702 if (!cell || (len != sizeof(fdt_addr_t) * 2))
703 return -1;
704
Simon Glass370b6c52013-11-10 10:26:54 -0700705 *ptrp = map_sysmem(fdt_addr_to_cpu(*cell), *size);
Simon Glassf20c4612012-10-25 16:31:00 +0000706 *size = fdt_size_to_cpu(cell[1]);
707 debug("%s: size=%zx\n", __func__, *size);
708 return 0;
709}
Simon Glass006e73b2014-02-27 13:26:01 -0700710
711/**
712 * Read a flash entry from the fdt
713 *
714 * @param blob FDT blob
715 * @param node Offset of node to read
716 * @param name Name of node being read
717 * @param entry Place to put offset and size of this node
718 * @return 0 if ok, -ve on error
719 */
720int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
721 struct fmap_entry *entry)
722{
723 u32 reg[2];
724
725 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
726 debug("Node '%s' has bad/missing 'reg' property\n", name);
727 return -FDT_ERR_NOTFOUND;
728 }
729 entry->offset = reg[0];
730 entry->length = reg[1];
731
732 return 0;
733}
Thierry Reding56f42242014-08-26 17:33:53 +0200734
735static u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells)
736{
737 u64 number = 0;
738
739 while (cells--)
740 number = (number << 32) | fdt32_to_cpu(*ptr++);
741
742 return number;
743}
744
745int fdt_get_resource(const void *fdt, int node, const char *property,
746 unsigned int index, struct fdt_resource *res)
747{
748 const fdt32_t *ptr, *end;
749 int na, ns, len, parent;
750 unsigned int i = 0;
751
752 parent = fdt_parent_offset(fdt, node);
753 if (parent < 0)
754 return parent;
755
756 na = fdt_address_cells(fdt, parent);
757 ns = fdt_size_cells(fdt, parent);
758
759 ptr = fdt_getprop(fdt, node, property, &len);
760 if (!ptr)
761 return len;
762
763 end = ptr + len / sizeof(*ptr);
764
765 while (ptr + na + ns <= end) {
766 if (i == index) {
767 res->start = res->end = fdtdec_get_number(ptr, na);
768 res->end += fdtdec_get_number(&ptr[na], ns) - 1;
769 return 0;
770 }
771
772 ptr += na + ns;
773 i++;
774 }
775
776 return -FDT_ERR_NOTFOUND;
777}
778
779int fdt_get_named_resource(const void *fdt, int node, const char *property,
780 const char *prop_names, const char *name,
781 struct fdt_resource *res)
782{
783 int index;
784
785 index = fdt_find_string(fdt, node, prop_names, name);
786 if (index < 0)
787 return index;
788
789 return fdt_get_resource(fdt, node, property, index, res);
790}
Thierry Reding9f85eee2014-08-26 17:33:54 +0200791
792int fdtdec_pci_get_bdf(const void *fdt, int node, int *bdf)
793{
794 const fdt32_t *prop;
795 int len;
796
797 prop = fdt_getprop(fdt, node, "reg", &len);
798 if (!prop)
799 return len;
800
801 *bdf = fdt32_to_cpu(*prop) & 0xffffff;
802
803 return 0;
804}
Heiko Schocher29a23f92014-03-03 12:19:30 +0100805#endif