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