blob: 8da2d74041da295ca9cc3cad6a7fdea68bb0c974 [file] [log] [blame]
Simon Glass2d2af852011-10-24 19:15:32 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glass2d2af852011-10-24 19:15:32 +00004 */
5
Heiko Schocherd7b42322014-03-03 12:19:30 +01006#ifndef USE_HOSTCC
Simon Glass2d2af852011-10-24 19:15:32 +00007#include <common.h>
8#include <serial.h>
9#include <libfdt.h>
10#include <fdtdec.h>
11
Michal Simekbcd35ce2012-07-11 02:26:38 +000012#include <asm/gpio.h>
Simon Glass0d83c4d2012-02-27 10:52:36 +000013
Simon Glass2d2af852011-10-24 19:15:32 +000014DECLARE_GLOBAL_DATA_PTR;
15
16/*
17 * Here are the type we know about. One day we might allow drivers to
18 * register. For now we just put them here. The COMPAT macro allows us to
19 * turn this into a sparse list later, and keeps the ID with the name.
20 */
21#define COMPAT(id, name) name
22static const char * const compat_names[COMPAT_COUNT] = {
Simon Glass65444982012-02-27 10:52:34 +000023 COMPAT(UNKNOWN, "<none>"),
Simon Glass08d6ec22012-02-27 10:52:49 +000024 COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"),
Jim Lin2fefb8b2013-06-21 19:05:47 +080025 COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"),
26 COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"),
Tom Warrenf8cf4b22013-02-08 07:25:30 +000027 COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"),
Yen Linccf7e902012-03-06 19:00:23 +000028 COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"),
29 COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"),
Jimmy Zhang5983ef82012-04-02 13:18:52 +000030 COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"),
31 COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"),
Rakesh Iyer382abbd2012-04-17 09:01:35 +000032 COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"),
Jim Lin5d309e62012-07-29 20:53:29 +000033 COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"),
Simon Glass1564f342012-10-17 13:24:49 +000034 COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"),
Wei Ni6555e692012-10-17 13:24:50 +000035 COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"),
Stephen Warren65e0eb12014-01-24 12:46:06 -070036 COMPAT(NVIDIA_TEGRA124_SDMMC, "nvidia,tegra124-sdhci"),
Tom Warren7db0e2d2013-03-04 14:07:18 -070037 COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"),
Tom Warren9745cf82013-02-21 12:31:30 +000038 COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"),
Allen Martine7659522013-01-29 13:51:24 +000039 COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"),
Allen Martinba4fb9b2013-01-29 13:51:28 +000040 COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"),
Allen Martinb54f0d92013-03-16 18:58:09 +000041 COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"),
Hatim RVbe5ad5a2012-12-11 00:52:46 +000042 COMPAT(SMSC_LAN9215, "smsc,lan9215"),
43 COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"),
Rajeshwari Shinde2b71e9d2012-12-26 20:03:10 +000044 COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"),
Rajeshwari Shinde9d116732012-12-26 20:03:16 +000045 COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"),
46 COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"),
Rajeshwari Shinded95beaf2012-12-26 20:03:20 +000047 COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"),
Hung-ying Tyanc48ca88f2013-05-15 18:27:28 +080048 COMPAT(GOOGLE_CROS_EC, "google,cros-ec"),
Hung-ying Tyan4a48bcf2013-05-15 18:27:32 +080049 COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000050 COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"),
Vivek Gautamf8745232013-09-14 14:02:48 +053051 COMPAT(SAMSUNG_EXYNOS5_XHCI, "samsung,exynos5250-xhci"),
Rajeshwari Shinded6e9f442013-01-07 23:35:05 +000052 COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"),
Vivek Gautamf8745232013-09-14 14:02:48 +053053 COMPAT(SAMSUNG_EXYNOS5_USB3_PHY, "samsung,exynos5250-usb3-phy"),
Akshay Saraswataa773182013-02-25 01:13:01 +000054 COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"),
Ajay Kumar035a1cd2013-02-21 23:53:00 +000055 COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"),
Ajay Kumar39bac152013-02-21 23:53:05 +000056 COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"),
Amar4b538c52013-04-27 11:42:52 +053057 COMPAT(SAMSUNG_EXYNOS5_DWMMC, "samsung,exynos5250-dwmmc"),
Rajeshwari Shindeffff1612013-06-24 16:47:20 +053058 COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"),
Rajeshwari Shinde1e9eeb02013-01-08 21:03:38 +000059 COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"),
Simon Glass609560942013-03-11 06:08:08 +000060 COMPAT(GENERIC_SPI_FLASH, "spi-flash"),
Rajeshwari Shinde003c28c2013-02-14 19:46:15 +000061 COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"),
Rong Chang8faa9452013-04-12 10:44:57 +000062 COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"),
Vincent Palatin06883eb2013-04-12 11:04:36 +000063 COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"),
naveen krishna chatradhi0734bae2013-04-29 15:58:52 -070064 COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"),
Simon Glass36170f02014-02-27 13:26:12 -070065 COMPAT(SANDBOX_HOST_EMULATION, "sandbox,host-emulation"),
Simon Glassb9ddbf42014-02-27 13:26:19 -070066 COMPAT(SANDBOX_LCD_SDL, "sandbox,lcd-sdl"),
Simon Glass2d2af852011-10-24 19:15:32 +000067};
68
Simon Glassb022ead2012-01-17 08:20:50 +000069const char *fdtdec_get_compatible(enum fdt_compat_id id)
70{
71 /* We allow reading of the 'unknown' ID for testing purposes */
72 assert(id >= 0 && id < COMPAT_COUNT);
73 return compat_names[id];
74}
75
Simon Glassf4299552013-03-19 04:58:51 +000076fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
77 const char *prop_name, fdt_size_t *sizep)
Simon Glass2d2af852011-10-24 19:15:32 +000078{
79 const fdt_addr_t *cell;
80 int len;
81
Simon Glassc8c86dd2012-07-12 05:25:01 +000082 debug("%s: %s: ", __func__, prop_name);
Simon Glass2d2af852011-10-24 19:15:32 +000083 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glassf4299552013-03-19 04:58:51 +000084 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
85 len == sizeof(fdt_addr_t) * 2)) {
Simon Glassc8c86dd2012-07-12 05:25:01 +000086 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glassf4299552013-03-19 04:58:51 +000087 if (sizep) {
88 const fdt_size_t *size;
Simon Glassc8c86dd2012-07-12 05:25:01 +000089
Simon Glassf4299552013-03-19 04:58:51 +000090 size = (fdt_size_t *)((char *)cell +
91 sizeof(fdt_addr_t));
92 *sizep = fdt_size_to_cpu(*size);
Simon Glasse18d1022013-11-10 10:26:54 -070093 debug("addr=%08lx, size=%08x\n",
94 (ulong)addr, *sizep);
Simon Glassf4299552013-03-19 04:58:51 +000095 } else {
Simon Glasse18d1022013-11-10 10:26:54 -070096 debug("%08lx\n", (ulong)addr);
Simon Glassf4299552013-03-19 04:58:51 +000097 }
Simon Glassc8c86dd2012-07-12 05:25:01 +000098 return addr;
99 }
100 debug("(not found)\n");
Simon Glass2d2af852011-10-24 19:15:32 +0000101 return FDT_ADDR_T_NONE;
102}
103
Simon Glassf4299552013-03-19 04:58:51 +0000104fdt_addr_t fdtdec_get_addr(const void *blob, int node,
105 const char *prop_name)
106{
107 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
108}
109
Simon Glass2d2af852011-10-24 19:15:32 +0000110s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
111 s32 default_val)
112{
113 const s32 *cell;
114 int len;
115
Simon Glassc8c86dd2012-07-12 05:25:01 +0000116 debug("%s: %s: ", __func__, prop_name);
Simon Glass2d2af852011-10-24 19:15:32 +0000117 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glassc8c86dd2012-07-12 05:25:01 +0000118 if (cell && len >= sizeof(s32)) {
119 s32 val = fdt32_to_cpu(cell[0]);
120
121 debug("%#x (%d)\n", val, val);
122 return val;
123 }
124 debug("(not found)\n");
Simon Glass2d2af852011-10-24 19:15:32 +0000125 return default_val;
126}
127
Che-Liang Chioud81d0172012-10-25 16:31:05 +0000128uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
129 uint64_t default_val)
130{
131 const uint64_t *cell64;
132 int length;
133
134 cell64 = fdt_getprop(blob, node, prop_name, &length);
135 if (!cell64 || length < sizeof(*cell64))
136 return default_val;
137
138 return fdt64_to_cpu(*cell64);
139}
140
Simon Glass65444982012-02-27 10:52:34 +0000141int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000142{
143 const char *cell;
144
Simon Glass65444982012-02-27 10:52:34 +0000145 /*
146 * It should say "okay", so only allow that. Some fdts use "ok" but
147 * this is a bug. Please fix your device tree source file. See here
148 * for discussion:
149 *
150 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
151 */
Simon Glass2d2af852011-10-24 19:15:32 +0000152 cell = fdt_getprop(blob, node, "status", NULL);
153 if (cell)
Simon Glass65444982012-02-27 10:52:34 +0000154 return 0 == strcmp(cell, "okay");
155 return 1;
Simon Glass2d2af852011-10-24 19:15:32 +0000156}
157
Gerald Van Barencdac3392012-11-12 23:13:54 -0500158enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glass2d2af852011-10-24 19:15:32 +0000159{
160 enum fdt_compat_id id;
161
162 /* Search our drivers */
163 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
164 if (0 == fdt_node_check_compatible(blob, node,
165 compat_names[id]))
166 return id;
167 return COMPAT_UNKNOWN;
168}
169
170int fdtdec_next_compatible(const void *blob, int node,
171 enum fdt_compat_id id)
172{
173 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
174}
175
Simon Glass2e979b12012-04-02 13:18:42 +0000176int fdtdec_next_compatible_subnode(const void *blob, int node,
177 enum fdt_compat_id id, int *depthp)
178{
179 do {
180 node = fdt_next_node(blob, node, depthp);
181 } while (*depthp > 1);
182
183 /* If this is a direct subnode, and compatible, return it */
184 if (*depthp == 1 && 0 == fdt_node_check_compatible(
185 blob, node, compat_names[id]))
186 return node;
187
188 return -FDT_ERR_NOTFOUND;
189}
190
Simon Glass2d2af852011-10-24 19:15:32 +0000191int fdtdec_next_alias(const void *blob, const char *name,
192 enum fdt_compat_id id, int *upto)
193{
194#define MAX_STR_LEN 20
195 char str[MAX_STR_LEN + 20];
196 int node, err;
197
198 /* snprintf() is not available */
199 assert(strlen(name) < MAX_STR_LEN);
200 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glasse1d15ca2012-10-31 14:02:42 +0000201 node = fdt_path_offset(blob, str);
Simon Glass2d2af852011-10-24 19:15:32 +0000202 if (node < 0)
203 return node;
204 err = fdt_node_check_compatible(blob, node, compat_names[id]);
205 if (err < 0)
206 return err;
Simon Glass65444982012-02-27 10:52:34 +0000207 if (err)
208 return -FDT_ERR_NOTFOUND;
209 (*upto)++;
210 return node;
Simon Glass2d2af852011-10-24 19:15:32 +0000211}
212
Simon Glassb022ead2012-01-17 08:20:50 +0000213int fdtdec_find_aliases_for_id(const void *blob, const char *name,
214 enum fdt_compat_id id, int *node_list, int maxcount)
215{
Simon Glass1f772662012-02-03 15:13:53 +0000216 memset(node_list, '\0', sizeof(*node_list) * maxcount);
217
218 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
219}
220
221/* TODO: Can we tighten this code up a little? */
222int fdtdec_add_aliases_for_id(const void *blob, const char *name,
223 enum fdt_compat_id id, int *node_list, int maxcount)
224{
Simon Glassb022ead2012-01-17 08:20:50 +0000225 int name_len = strlen(name);
226 int nodes[maxcount];
227 int num_found = 0;
228 int offset, node;
229 int alias_node;
230 int count;
231 int i, j;
232
233 /* find the alias node if present */
234 alias_node = fdt_path_offset(blob, "/aliases");
235
236 /*
237 * start with nothing, and we can assume that the root node can't
238 * match
239 */
240 memset(nodes, '\0', sizeof(nodes));
241
242 /* First find all the compatible nodes */
243 for (node = count = 0; node >= 0 && count < maxcount;) {
244 node = fdtdec_next_compatible(blob, node, id);
245 if (node >= 0)
246 nodes[count++] = node;
247 }
248 if (node >= 0)
249 debug("%s: warning: maxcount exceeded with alias '%s'\n",
250 __func__, name);
251
252 /* Now find all the aliases */
Simon Glassb022ead2012-01-17 08:20:50 +0000253 for (offset = fdt_first_property_offset(blob, alias_node);
254 offset > 0;
255 offset = fdt_next_property_offset(blob, offset)) {
256 const struct fdt_property *prop;
257 const char *path;
258 int number;
259 int found;
260
261 node = 0;
262 prop = fdt_get_property_by_offset(blob, offset, NULL);
263 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
264 if (prop->len && 0 == strncmp(path, name, name_len))
265 node = fdt_path_offset(blob, prop->data);
266 if (node <= 0)
267 continue;
268
269 /* Get the alias number */
270 number = simple_strtoul(path + name_len, NULL, 10);
271 if (number < 0 || number >= maxcount) {
272 debug("%s: warning: alias '%s' is out of range\n",
273 __func__, path);
274 continue;
275 }
276
277 /* Make sure the node we found is actually in our list! */
278 found = -1;
279 for (j = 0; j < count; j++)
280 if (nodes[j] == node) {
281 found = j;
282 break;
283 }
284
285 if (found == -1) {
286 debug("%s: warning: alias '%s' points to a node "
287 "'%s' that is missing or is not compatible "
288 " with '%s'\n", __func__, path,
289 fdt_get_name(blob, node, NULL),
290 compat_names[id]);
291 continue;
292 }
293
294 /*
295 * Add this node to our list in the right place, and mark
296 * it as done.
297 */
298 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glass1f772662012-02-03 15:13:53 +0000299 if (node_list[number]) {
300 debug("%s: warning: alias '%s' requires that "
301 "a node be placed in the list in a "
302 "position which is already filled by "
303 "node '%s'\n", __func__, path,
304 fdt_get_name(blob, node, NULL));
305 continue;
306 }
Simon Glassb022ead2012-01-17 08:20:50 +0000307 node_list[number] = node;
308 if (number >= num_found)
309 num_found = number + 1;
310 }
Simon Glass1f772662012-02-03 15:13:53 +0000311 nodes[found] = 0;
Simon Glassb022ead2012-01-17 08:20:50 +0000312 }
313
314 /* Add any nodes not mentioned by an alias */
315 for (i = j = 0; i < maxcount; i++) {
316 if (!node_list[i]) {
317 for (; j < maxcount; j++)
318 if (nodes[j] &&
319 fdtdec_get_is_enabled(blob, nodes[j]))
320 break;
321
322 /* Have we run out of nodes to add? */
323 if (j == maxcount)
324 break;
325
326 assert(!node_list[i]);
327 node_list[i] = nodes[j++];
328 if (i >= num_found)
329 num_found = i + 1;
330 }
331 }
332
333 return num_found;
334}
335
Simon Glass1691f692012-03-28 10:08:24 +0000336int fdtdec_check_fdt(void)
337{
338 /*
339 * We must have an FDT, but we cannot panic() yet since the console
340 * is not ready. So for now, just assert(). Boards which need an early
341 * FDT (prior to console ready) will need to make their own
342 * arrangements and do their own checks.
343 */
344 assert(!fdtdec_prepare_fdt());
345 return 0;
346}
347
Simon Glass2d2af852011-10-24 19:15:32 +0000348/*
349 * This function is a little odd in that it accesses global data. At some
350 * point if the architecture board.c files merge this will make more sense.
351 * Even now, it is common code.
352 */
Simon Glass1691f692012-03-28 10:08:24 +0000353int fdtdec_prepare_fdt(void)
Simon Glass2d2af852011-10-24 19:15:32 +0000354{
Simon Glass71136852013-04-20 08:42:46 +0000355 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
356 fdt_check_header(gd->fdt_blob)) {
Simon Glass1691f692012-03-28 10:08:24 +0000357 printf("No valid FDT found - please append one to U-Boot "
358 "binary, use u-boot-dtb.bin or define "
Simon Glass62cf9122013-04-26 02:53:43 +0000359 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass1691f692012-03-28 10:08:24 +0000360 return -1;
361 }
Simon Glass2d2af852011-10-24 19:15:32 +0000362 return 0;
363}
Simon Glassc4697362012-02-27 10:52:35 +0000364
365int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
366{
367 const u32 *phandle;
368 int lookup;
369
Simon Glassc8c86dd2012-07-12 05:25:01 +0000370 debug("%s: %s\n", __func__, prop_name);
Simon Glassc4697362012-02-27 10:52:35 +0000371 phandle = fdt_getprop(blob, node, prop_name, NULL);
372 if (!phandle)
373 return -FDT_ERR_NOTFOUND;
374
375 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
376 return lookup;
377}
378
379/**
380 * Look up a property in a node and check that it has a minimum length.
381 *
382 * @param blob FDT blob
383 * @param node node to examine
384 * @param prop_name name of property to find
385 * @param min_len minimum property length in bytes
386 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
387 found, or -FDT_ERR_BADLAYOUT if not enough data
388 * @return pointer to cell, which is only valid if err == 0
389 */
390static const void *get_prop_check_min_len(const void *blob, int node,
391 const char *prop_name, int min_len, int *err)
392{
393 const void *cell;
394 int len;
395
396 debug("%s: %s\n", __func__, prop_name);
397 cell = fdt_getprop(blob, node, prop_name, &len);
398 if (!cell)
399 *err = -FDT_ERR_NOTFOUND;
400 else if (len < min_len)
401 *err = -FDT_ERR_BADLAYOUT;
402 else
403 *err = 0;
404 return cell;
405}
406
407int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
408 u32 *array, int count)
409{
410 const u32 *cell;
411 int i, err = 0;
412
413 debug("%s: %s\n", __func__, prop_name);
414 cell = get_prop_check_min_len(blob, node, prop_name,
415 sizeof(u32) * count, &err);
416 if (!err) {
417 for (i = 0; i < count; i++)
418 array[i] = fdt32_to_cpu(cell[i]);
419 }
420 return err;
421}
422
Simon Glass744ec232012-04-02 13:18:41 +0000423const u32 *fdtdec_locate_array(const void *blob, int node,
424 const char *prop_name, int count)
425{
426 const u32 *cell;
427 int err;
428
429 cell = get_prop_check_min_len(blob, node, prop_name,
430 sizeof(u32) * count, &err);
431 return err ? NULL : cell;
432}
433
Simon Glassc4697362012-02-27 10:52:35 +0000434int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
435{
436 const s32 *cell;
437 int len;
438
439 debug("%s: %s\n", __func__, prop_name);
440 cell = fdt_getprop(blob, node, prop_name, &len);
441 return cell != NULL;
442}
Simon Glass0d83c4d2012-02-27 10:52:36 +0000443
444/**
445 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
446 * terminating item.
447 *
448 * @param blob FDT blob to use
449 * @param node Node to look at
450 * @param prop_name Node property name
451 * @param gpio Array of gpio elements to fill from FDT. This will be
452 * untouched if either 0 or an error is returned
453 * @param max_count Maximum number of elements allowed
454 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
455 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
456 */
Abhilash Kesavan4353ffc2012-10-25 16:31:01 +0000457int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
458 struct fdt_gpio_state *gpio, int max_count)
Simon Glass0d83c4d2012-02-27 10:52:36 +0000459{
460 const struct fdt_property *prop;
461 const u32 *cell;
462 const char *name;
463 int len, i;
464
465 debug("%s: %s\n", __func__, prop_name);
466 assert(max_count > 0);
467 prop = fdt_get_property(blob, node, prop_name, &len);
468 if (!prop) {
Simon Glassc8c86dd2012-07-12 05:25:01 +0000469 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glass0d83c4d2012-02-27 10:52:36 +0000470 return -FDT_ERR_NOTFOUND;
471 }
472
473 /* We will use the name to tag the GPIO */
474 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
475 cell = (u32 *)prop->data;
476 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
477 if (len > max_count) {
Simon Glassc8c86dd2012-07-12 05:25:01 +0000478 debug(" %s: too many GPIOs / cells for "
Simon Glass0d83c4d2012-02-27 10:52:36 +0000479 "property '%s'\n", __func__, prop_name);
480 return -FDT_ERR_BADLAYOUT;
481 }
482
483 /* Read out the GPIO data from the cells */
484 for (i = 0; i < len; i++, cell += 3) {
485 gpio[i].gpio = fdt32_to_cpu(cell[1]);
486 gpio[i].flags = fdt32_to_cpu(cell[2]);
487 gpio[i].name = name;
488 }
489
490 return len;
491}
492
493int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
494 struct fdt_gpio_state *gpio)
495{
496 int err;
497
498 debug("%s: %s\n", __func__, prop_name);
499 gpio->gpio = FDT_GPIO_NONE;
500 gpio->name = NULL;
501 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
502 return err == 1 ? 0 : err;
503}
504
Sean Pauladbcfc92012-10-25 16:31:06 +0000505int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
506{
507 int val;
508
509 if (!fdt_gpio_isvalid(gpio))
510 return -1;
511
512 val = gpio_get_value(gpio->gpio);
513 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
514}
515
516int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
517{
518 if (!fdt_gpio_isvalid(gpio))
519 return -1;
520
521 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
522 return gpio_set_value(gpio->gpio, val);
523}
524
Simon Glass0d83c4d2012-02-27 10:52:36 +0000525int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
526{
527 /*
528 * Return success if there is no GPIO defined. This is used for
529 * optional GPIOs)
530 */
531 if (!fdt_gpio_isvalid(gpio))
532 return 0;
533
534 if (gpio_request(gpio->gpio, gpio->name))
535 return -1;
536 return 0;
537}
Anton Stafff2305ec2012-04-17 09:01:28 +0000538
539int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
540 u8 *array, int count)
541{
542 const u8 *cell;
543 int err;
544
545 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
546 if (!err)
547 memcpy(array, cell, count);
548 return err;
549}
550
551const u8 *fdtdec_locate_byte_array(const void *blob, int node,
552 const char *prop_name, int count)
553{
554 const u8 *cell;
555 int err;
556
557 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
558 if (err)
559 return NULL;
560 return cell;
561}
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000562
Abhilash Kesavan67217af2012-10-25 16:30:58 +0000563int fdtdec_get_config_int(const void *blob, const char *prop_name,
564 int default_val)
565{
566 int config_node;
567
568 debug("%s: %s\n", __func__, prop_name);
569 config_node = fdt_path_offset(blob, "/config");
570 if (config_node < 0)
571 return default_val;
572 return fdtdec_get_int(blob, config_node, prop_name, default_val);
573}
Simon Glassb0494472012-10-25 16:30:59 +0000574
Gabe Black3e1c1512012-10-25 16:31:04 +0000575int fdtdec_get_config_bool(const void *blob, const char *prop_name)
576{
577 int config_node;
578 const void *prop;
579
580 debug("%s: %s\n", __func__, prop_name);
581 config_node = fdt_path_offset(blob, "/config");
582 if (config_node < 0)
583 return 0;
584 prop = fdt_get_property(blob, config_node, prop_name, NULL);
585
586 return prop != NULL;
587}
588
Simon Glassb0494472012-10-25 16:30:59 +0000589char *fdtdec_get_config_string(const void *blob, const char *prop_name)
590{
591 const char *nodep;
592 int nodeoffset;
593 int len;
594
595 debug("%s: %s\n", __func__, prop_name);
596 nodeoffset = fdt_path_offset(blob, "/config");
597 if (nodeoffset < 0)
598 return NULL;
599
600 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
601 if (!nodep)
602 return NULL;
603
604 return (char *)nodep;
605}
Simon Glassf909b9c2012-10-25 16:31:00 +0000606
607int fdtdec_decode_region(const void *blob, int node,
608 const char *prop_name, void **ptrp, size_t *size)
609{
610 const fdt_addr_t *cell;
611 int len;
612
613 debug("%s: %s\n", __func__, prop_name);
614 cell = fdt_getprop(blob, node, prop_name, &len);
615 if (!cell || (len != sizeof(fdt_addr_t) * 2))
616 return -1;
617
Simon Glasse18d1022013-11-10 10:26:54 -0700618 *ptrp = map_sysmem(fdt_addr_to_cpu(*cell), *size);
Simon Glassf909b9c2012-10-25 16:31:00 +0000619 *size = fdt_size_to_cpu(cell[1]);
620 debug("%s: size=%zx\n", __func__, *size);
621 return 0;
622}
Simon Glass9f783722014-02-27 13:26:01 -0700623
624/**
625 * Read a flash entry from the fdt
626 *
627 * @param blob FDT blob
628 * @param node Offset of node to read
629 * @param name Name of node being read
630 * @param entry Place to put offset and size of this node
631 * @return 0 if ok, -ve on error
632 */
633int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
634 struct fmap_entry *entry)
635{
636 u32 reg[2];
637
638 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
639 debug("Node '%s' has bad/missing 'reg' property\n", name);
640 return -FDT_ERR_NOTFOUND;
641 }
642 entry->offset = reg[0];
643 entry->length = reg[1];
644
645 return 0;
646}
Heiko Schocherd7b42322014-03-03 12:19:30 +0100647#else
648#include "libfdt.h"
649#include "fdt_support.h"
650
651int fdtdec_get_int(const void *blob, int node, const char *prop_name,
652 int default_val)
653{
654 const int *cell;
655 int len;
656
657 cell = fdt_getprop_w((void *)blob, node, prop_name, &len);
658 if (cell && len >= sizeof(int)) {
659 int val = fdt32_to_cpu(cell[0]);
660
661 return val;
662 }
663 return default_val;
664}
665#endif