blob: 9a4d4704781fd28fcd1c8f20242333ff73ddce18 [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"),
Thierry Reding6173c452014-12-09 22:25:05 -070081 COMPAT(AMS_AS3722, "ams,as3722"),
Simon Glassb5220bc2011-10-24 19:15:32 +000082};
83
Simon Glassa53f4a22012-01-17 08:20:50 +000084const char *fdtdec_get_compatible(enum fdt_compat_id id)
85{
86 /* We allow reading of the 'unknown' ID for testing purposes */
87 assert(id >= 0 && id < COMPAT_COUNT);
88 return compat_names[id];
89}
90
Simon Glass4397a2a2013-03-19 04:58:51 +000091fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
92 const char *prop_name, fdt_size_t *sizep)
Simon Glassb5220bc2011-10-24 19:15:32 +000093{
94 const fdt_addr_t *cell;
95 int len;
96
Simon Glass1cb23232012-07-12 05:25:01 +000097 debug("%s: %s: ", __func__, prop_name);
Simon Glassb5220bc2011-10-24 19:15:32 +000098 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass4397a2a2013-03-19 04:58:51 +000099 if (cell && ((!sizep && len == sizeof(fdt_addr_t)) ||
100 len == sizeof(fdt_addr_t) * 2)) {
Simon Glass1cb23232012-07-12 05:25:01 +0000101 fdt_addr_t addr = fdt_addr_to_cpu(*cell);
Simon Glass4397a2a2013-03-19 04:58:51 +0000102 if (sizep) {
103 const fdt_size_t *size;
Simon Glass1cb23232012-07-12 05:25:01 +0000104
Simon Glass4397a2a2013-03-19 04:58:51 +0000105 size = (fdt_size_t *)((char *)cell +
106 sizeof(fdt_addr_t));
107 *sizep = fdt_size_to_cpu(*size);
Simon Glass370b6c52013-11-10 10:26:54 -0700108 debug("addr=%08lx, size=%08x\n",
109 (ulong)addr, *sizep);
Simon Glass4397a2a2013-03-19 04:58:51 +0000110 } else {
Simon Glass370b6c52013-11-10 10:26:54 -0700111 debug("%08lx\n", (ulong)addr);
Simon Glass4397a2a2013-03-19 04:58:51 +0000112 }
Simon Glass1cb23232012-07-12 05:25:01 +0000113 return addr;
114 }
115 debug("(not found)\n");
Simon Glassb5220bc2011-10-24 19:15:32 +0000116 return FDT_ADDR_T_NONE;
117}
118
Simon Glass4397a2a2013-03-19 04:58:51 +0000119fdt_addr_t fdtdec_get_addr(const void *blob, int node,
120 const char *prop_name)
121{
122 return fdtdec_get_addr_size(blob, node, prop_name, NULL);
123}
124
Che-Liang Chiouaadef0a2012-10-25 16:31:05 +0000125uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
126 uint64_t default_val)
127{
128 const uint64_t *cell64;
129 int length;
130
131 cell64 = fdt_getprop(blob, node, prop_name, &length);
132 if (!cell64 || length < sizeof(*cell64))
133 return default_val;
134
135 return fdt64_to_cpu(*cell64);
136}
137
Simon Glassf88fe2d2012-02-27 10:52:34 +0000138int fdtdec_get_is_enabled(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000139{
140 const char *cell;
141
Simon Glassf88fe2d2012-02-27 10:52:34 +0000142 /*
143 * It should say "okay", so only allow that. Some fdts use "ok" but
144 * this is a bug. Please fix your device tree source file. See here
145 * for discussion:
146 *
147 * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html
148 */
Simon Glassb5220bc2011-10-24 19:15:32 +0000149 cell = fdt_getprop(blob, node, "status", NULL);
150 if (cell)
Simon Glassf88fe2d2012-02-27 10:52:34 +0000151 return 0 == strcmp(cell, "okay");
152 return 1;
Simon Glassb5220bc2011-10-24 19:15:32 +0000153}
154
Gerald Van Baren7cde3972012-11-12 23:13:54 -0500155enum fdt_compat_id fdtdec_lookup(const void *blob, int node)
Simon Glassb5220bc2011-10-24 19:15:32 +0000156{
157 enum fdt_compat_id id;
158
159 /* Search our drivers */
160 for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++)
161 if (0 == fdt_node_check_compatible(blob, node,
162 compat_names[id]))
163 return id;
164 return COMPAT_UNKNOWN;
165}
166
167int fdtdec_next_compatible(const void *blob, int node,
168 enum fdt_compat_id id)
169{
170 return fdt_node_offset_by_compatible(blob, node, compat_names[id]);
171}
172
Simon Glass3ddecfc2012-04-02 13:18:42 +0000173int fdtdec_next_compatible_subnode(const void *blob, int node,
174 enum fdt_compat_id id, int *depthp)
175{
176 do {
177 node = fdt_next_node(blob, node, depthp);
178 } while (*depthp > 1);
179
180 /* If this is a direct subnode, and compatible, return it */
181 if (*depthp == 1 && 0 == fdt_node_check_compatible(
182 blob, node, compat_names[id]))
183 return node;
184
185 return -FDT_ERR_NOTFOUND;
186}
187
Simon Glassb5220bc2011-10-24 19:15:32 +0000188int fdtdec_next_alias(const void *blob, const char *name,
189 enum fdt_compat_id id, int *upto)
190{
191#define MAX_STR_LEN 20
192 char str[MAX_STR_LEN + 20];
193 int node, err;
194
195 /* snprintf() is not available */
196 assert(strlen(name) < MAX_STR_LEN);
197 sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto);
Simon Glass00878472012-10-31 14:02:42 +0000198 node = fdt_path_offset(blob, str);
Simon Glassb5220bc2011-10-24 19:15:32 +0000199 if (node < 0)
200 return node;
201 err = fdt_node_check_compatible(blob, node, compat_names[id]);
202 if (err < 0)
203 return err;
Simon Glassf88fe2d2012-02-27 10:52:34 +0000204 if (err)
205 return -FDT_ERR_NOTFOUND;
206 (*upto)++;
207 return node;
Simon Glassb5220bc2011-10-24 19:15:32 +0000208}
209
Simon Glassa53f4a22012-01-17 08:20:50 +0000210int fdtdec_find_aliases_for_id(const void *blob, const char *name,
211 enum fdt_compat_id id, int *node_list, int maxcount)
212{
Simon Glassc6782272012-02-03 15:13:53 +0000213 memset(node_list, '\0', sizeof(*node_list) * maxcount);
214
215 return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount);
216}
217
218/* TODO: Can we tighten this code up a little? */
219int fdtdec_add_aliases_for_id(const void *blob, const char *name,
220 enum fdt_compat_id id, int *node_list, int maxcount)
221{
Simon Glassa53f4a22012-01-17 08:20:50 +0000222 int name_len = strlen(name);
223 int nodes[maxcount];
224 int num_found = 0;
225 int offset, node;
226 int alias_node;
227 int count;
228 int i, j;
229
230 /* find the alias node if present */
231 alias_node = fdt_path_offset(blob, "/aliases");
232
233 /*
234 * start with nothing, and we can assume that the root node can't
235 * match
236 */
237 memset(nodes, '\0', sizeof(nodes));
238
239 /* First find all the compatible nodes */
240 for (node = count = 0; node >= 0 && count < maxcount;) {
241 node = fdtdec_next_compatible(blob, node, id);
242 if (node >= 0)
243 nodes[count++] = node;
244 }
245 if (node >= 0)
246 debug("%s: warning: maxcount exceeded with alias '%s'\n",
247 __func__, name);
248
249 /* Now find all the aliases */
Simon Glassa53f4a22012-01-17 08:20:50 +0000250 for (offset = fdt_first_property_offset(blob, alias_node);
251 offset > 0;
252 offset = fdt_next_property_offset(blob, offset)) {
253 const struct fdt_property *prop;
254 const char *path;
255 int number;
256 int found;
257
258 node = 0;
259 prop = fdt_get_property_by_offset(blob, offset, NULL);
260 path = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
261 if (prop->len && 0 == strncmp(path, name, name_len))
262 node = fdt_path_offset(blob, prop->data);
263 if (node <= 0)
264 continue;
265
266 /* Get the alias number */
267 number = simple_strtoul(path + name_len, NULL, 10);
268 if (number < 0 || number >= maxcount) {
269 debug("%s: warning: alias '%s' is out of range\n",
270 __func__, path);
271 continue;
272 }
273
274 /* Make sure the node we found is actually in our list! */
275 found = -1;
276 for (j = 0; j < count; j++)
277 if (nodes[j] == node) {
278 found = j;
279 break;
280 }
281
282 if (found == -1) {
283 debug("%s: warning: alias '%s' points to a node "
284 "'%s' that is missing or is not compatible "
285 " with '%s'\n", __func__, path,
286 fdt_get_name(blob, node, NULL),
287 compat_names[id]);
288 continue;
289 }
290
291 /*
292 * Add this node to our list in the right place, and mark
293 * it as done.
294 */
295 if (fdtdec_get_is_enabled(blob, node)) {
Simon Glassc6782272012-02-03 15:13:53 +0000296 if (node_list[number]) {
297 debug("%s: warning: alias '%s' requires that "
298 "a node be placed in the list in a "
299 "position which is already filled by "
300 "node '%s'\n", __func__, path,
301 fdt_get_name(blob, node, NULL));
302 continue;
303 }
Simon Glassa53f4a22012-01-17 08:20:50 +0000304 node_list[number] = node;
305 if (number >= num_found)
306 num_found = number + 1;
307 }
Simon Glassc6782272012-02-03 15:13:53 +0000308 nodes[found] = 0;
Simon Glassa53f4a22012-01-17 08:20:50 +0000309 }
310
311 /* Add any nodes not mentioned by an alias */
312 for (i = j = 0; i < maxcount; i++) {
313 if (!node_list[i]) {
314 for (; j < maxcount; j++)
315 if (nodes[j] &&
316 fdtdec_get_is_enabled(blob, nodes[j]))
317 break;
318
319 /* Have we run out of nodes to add? */
320 if (j == maxcount)
321 break;
322
323 assert(!node_list[i]);
324 node_list[i] = nodes[j++];
325 if (i >= num_found)
326 num_found = i + 1;
327 }
328 }
329
330 return num_found;
331}
332
Simon Glass5c33c9f2014-07-23 06:55:09 -0600333int fdtdec_get_alias_seq(const void *blob, const char *base, int offset,
334 int *seqp)
335{
336 int base_len = strlen(base);
337 const char *find_name;
338 int find_namelen;
339 int prop_offset;
340 int aliases;
341
342 find_name = fdt_get_name(blob, offset, &find_namelen);
343 debug("Looking for '%s' at %d, name %s\n", base, offset, find_name);
344
345 aliases = fdt_path_offset(blob, "/aliases");
346 for (prop_offset = fdt_first_property_offset(blob, aliases);
347 prop_offset > 0;
348 prop_offset = fdt_next_property_offset(blob, prop_offset)) {
349 const char *prop;
350 const char *name;
351 const char *slash;
352 const char *p;
353 int len;
354
355 prop = fdt_getprop_by_offset(blob, prop_offset, &name, &len);
356 debug(" - %s, %s\n", name, prop);
357 if (len < find_namelen || *prop != '/' || prop[len - 1] ||
358 strncmp(name, base, base_len))
359 continue;
360
361 slash = strrchr(prop, '/');
362 if (strcmp(slash + 1, find_name))
363 continue;
Simon Glassa88340d2014-11-11 10:46:20 -0700364 for (p = name + strlen(name) - 1; p > name; p--) {
365 if (!isdigit(*p)) {
366 *seqp = simple_strtoul(p + 1, NULL, 10);
Simon Glass5c33c9f2014-07-23 06:55:09 -0600367 debug("Found seq %d\n", *seqp);
368 return 0;
369 }
370 }
371 }
372
373 debug("Not found\n");
374 return -ENOENT;
375}
376
Simon Glassaac07d42014-09-04 16:27:24 -0600377int fdtdec_get_chosen_node(const void *blob, const char *name)
378{
379 const char *prop;
380 int chosen_node;
381 int len;
382
383 if (!blob)
384 return -FDT_ERR_NOTFOUND;
385 chosen_node = fdt_path_offset(blob, "/chosen");
386 prop = fdt_getprop(blob, chosen_node, name, &len);
387 if (!prop)
388 return -FDT_ERR_NOTFOUND;
389 return fdt_path_offset(blob, prop);
390}
391
Simon Glass9a263e52012-03-28 10:08:24 +0000392int fdtdec_check_fdt(void)
393{
394 /*
395 * We must have an FDT, but we cannot panic() yet since the console
396 * is not ready. So for now, just assert(). Boards which need an early
397 * FDT (prior to console ready) will need to make their own
398 * arrangements and do their own checks.
399 */
400 assert(!fdtdec_prepare_fdt());
401 return 0;
402}
403
Simon Glassb5220bc2011-10-24 19:15:32 +0000404/*
405 * This function is a little odd in that it accesses global data. At some
406 * point if the architecture board.c files merge this will make more sense.
407 * Even now, it is common code.
408 */
Simon Glass9a263e52012-03-28 10:08:24 +0000409int fdtdec_prepare_fdt(void)
Simon Glassb5220bc2011-10-24 19:15:32 +0000410{
Simon Glassc309c2d2013-04-20 08:42:46 +0000411 if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) ||
412 fdt_check_header(gd->fdt_blob)) {
Simon Glass9a263e52012-03-28 10:08:24 +0000413 printf("No valid FDT found - please append one to U-Boot "
414 "binary, use u-boot-dtb.bin or define "
Simon Glassa733b062013-04-26 02:53:43 +0000415 "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n");
Simon Glass9a263e52012-03-28 10:08:24 +0000416 return -1;
417 }
Simon Glassb5220bc2011-10-24 19:15:32 +0000418 return 0;
419}
Simon Glassd17da652012-02-27 10:52:35 +0000420
421int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
422{
423 const u32 *phandle;
424 int lookup;
425
Simon Glass1cb23232012-07-12 05:25:01 +0000426 debug("%s: %s\n", __func__, prop_name);
Simon Glassd17da652012-02-27 10:52:35 +0000427 phandle = fdt_getprop(blob, node, prop_name, NULL);
428 if (!phandle)
429 return -FDT_ERR_NOTFOUND;
430
431 lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
432 return lookup;
433}
434
435/**
436 * Look up a property in a node and check that it has a minimum length.
437 *
438 * @param blob FDT blob
439 * @param node node to examine
440 * @param prop_name name of property to find
441 * @param min_len minimum property length in bytes
442 * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not
443 found, or -FDT_ERR_BADLAYOUT if not enough data
444 * @return pointer to cell, which is only valid if err == 0
445 */
446static const void *get_prop_check_min_len(const void *blob, int node,
447 const char *prop_name, int min_len, int *err)
448{
449 const void *cell;
450 int len;
451
452 debug("%s: %s\n", __func__, prop_name);
453 cell = fdt_getprop(blob, node, prop_name, &len);
454 if (!cell)
455 *err = -FDT_ERR_NOTFOUND;
456 else if (len < min_len)
457 *err = -FDT_ERR_BADLAYOUT;
458 else
459 *err = 0;
460 return cell;
461}
462
463int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
464 u32 *array, int count)
465{
466 const u32 *cell;
467 int i, err = 0;
468
469 debug("%s: %s\n", __func__, prop_name);
470 cell = get_prop_check_min_len(blob, node, prop_name,
471 sizeof(u32) * count, &err);
472 if (!err) {
473 for (i = 0; i < count; i++)
474 array[i] = fdt32_to_cpu(cell[i]);
475 }
476 return err;
477}
478
Simon Glassa9f04d42014-11-10 18:00:19 -0700479int fdtdec_get_int_array_count(const void *blob, int node,
480 const char *prop_name, u32 *array, int count)
481{
482 const u32 *cell;
483 int len, elems;
484 int i;
485
486 debug("%s: %s\n", __func__, prop_name);
487 cell = fdt_getprop(blob, node, prop_name, &len);
488 if (!cell)
489 return -FDT_ERR_NOTFOUND;
490 elems = len / sizeof(u32);
491 if (count > elems)
492 count = elems;
493 for (i = 0; i < count; i++)
494 array[i] = fdt32_to_cpu(cell[i]);
495
496 return count;
497}
498
Simon Glass96875e72012-04-02 13:18:41 +0000499const u32 *fdtdec_locate_array(const void *blob, int node,
500 const char *prop_name, int count)
501{
502 const u32 *cell;
503 int err;
504
505 cell = get_prop_check_min_len(blob, node, prop_name,
506 sizeof(u32) * count, &err);
507 return err ? NULL : cell;
508}
509
Simon Glassd17da652012-02-27 10:52:35 +0000510int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
511{
512 const s32 *cell;
513 int len;
514
515 debug("%s: %s\n", __func__, prop_name);
516 cell = fdt_getprop(blob, node, prop_name, &len);
517 return cell != NULL;
518}
Simon Glassed3ee5c2012-02-27 10:52:36 +0000519
520/**
521 * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no
522 * terminating item.
523 *
524 * @param blob FDT blob to use
525 * @param node Node to look at
526 * @param prop_name Node property name
527 * @param gpio Array of gpio elements to fill from FDT. This will be
528 * untouched if either 0 or an error is returned
529 * @param max_count Maximum number of elements allowed
530 * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would
531 * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing.
532 */
Abhilash Kesavan5921f6a2012-10-25 16:31:01 +0000533int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name,
534 struct fdt_gpio_state *gpio, int max_count)
Simon Glassed3ee5c2012-02-27 10:52:36 +0000535{
536 const struct fdt_property *prop;
537 const u32 *cell;
538 const char *name;
539 int len, i;
540
541 debug("%s: %s\n", __func__, prop_name);
542 assert(max_count > 0);
543 prop = fdt_get_property(blob, node, prop_name, &len);
544 if (!prop) {
Simon Glass1cb23232012-07-12 05:25:01 +0000545 debug("%s: property '%s' missing\n", __func__, prop_name);
Simon Glassed3ee5c2012-02-27 10:52:36 +0000546 return -FDT_ERR_NOTFOUND;
547 }
548
549 /* We will use the name to tag the GPIO */
550 name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
551 cell = (u32 *)prop->data;
552 len /= sizeof(u32) * 3; /* 3 cells per GPIO record */
553 if (len > max_count) {
Simon Glass1cb23232012-07-12 05:25:01 +0000554 debug(" %s: too many GPIOs / cells for "
Simon Glassed3ee5c2012-02-27 10:52:36 +0000555 "property '%s'\n", __func__, prop_name);
556 return -FDT_ERR_BADLAYOUT;
557 }
558
559 /* Read out the GPIO data from the cells */
560 for (i = 0; i < len; i++, cell += 3) {
561 gpio[i].gpio = fdt32_to_cpu(cell[1]);
562 gpio[i].flags = fdt32_to_cpu(cell[2]);
563 gpio[i].name = name;
564 }
565
566 return len;
567}
568
569int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name,
570 struct fdt_gpio_state *gpio)
571{
572 int err;
573
574 debug("%s: %s\n", __func__, prop_name);
575 gpio->gpio = FDT_GPIO_NONE;
576 gpio->name = NULL;
577 err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1);
578 return err == 1 ? 0 : err;
579}
580
Sean Paul202ff752012-10-25 16:31:06 +0000581int fdtdec_get_gpio(struct fdt_gpio_state *gpio)
582{
583 int val;
584
585 if (!fdt_gpio_isvalid(gpio))
586 return -1;
587
588 val = gpio_get_value(gpio->gpio);
589 return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
590}
591
592int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val)
593{
594 if (!fdt_gpio_isvalid(gpio))
595 return -1;
596
597 val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val;
598 return gpio_set_value(gpio->gpio, val);
599}
600
Simon Glassed3ee5c2012-02-27 10:52:36 +0000601int fdtdec_setup_gpio(struct fdt_gpio_state *gpio)
602{
603 /*
604 * Return success if there is no GPIO defined. This is used for
605 * optional GPIOs)
606 */
607 if (!fdt_gpio_isvalid(gpio))
608 return 0;
609
610 if (gpio_request(gpio->gpio, gpio->name))
611 return -1;
612 return 0;
613}
Anton Staffbed4d892012-04-17 09:01:28 +0000614
615int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
616 u8 *array, int count)
617{
618 const u8 *cell;
619 int err;
620
621 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
622 if (!err)
623 memcpy(array, cell, count);
624 return err;
625}
626
627const u8 *fdtdec_locate_byte_array(const void *blob, int node,
628 const char *prop_name, int count)
629{
630 const u8 *cell;
631 int err;
632
633 cell = get_prop_check_min_len(blob, node, prop_name, count, &err);
634 if (err)
635 return NULL;
636 return cell;
637}
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000638
Abhilash Kesavan09258f12012-10-25 16:30:58 +0000639int fdtdec_get_config_int(const void *blob, const char *prop_name,
640 int default_val)
641{
642 int config_node;
643
644 debug("%s: %s\n", __func__, prop_name);
645 config_node = fdt_path_offset(blob, "/config");
646 if (config_node < 0)
647 return default_val;
648 return fdtdec_get_int(blob, config_node, prop_name, default_val);
649}
Simon Glass332ab0d2012-10-25 16:30:59 +0000650
Gabe Black79289c02012-10-25 16:31:04 +0000651int fdtdec_get_config_bool(const void *blob, const char *prop_name)
652{
653 int config_node;
654 const void *prop;
655
656 debug("%s: %s\n", __func__, prop_name);
657 config_node = fdt_path_offset(blob, "/config");
658 if (config_node < 0)
659 return 0;
660 prop = fdt_get_property(blob, config_node, prop_name, NULL);
661
662 return prop != NULL;
663}
664
Simon Glass332ab0d2012-10-25 16:30:59 +0000665char *fdtdec_get_config_string(const void *blob, const char *prop_name)
666{
667 const char *nodep;
668 int nodeoffset;
669 int len;
670
671 debug("%s: %s\n", __func__, prop_name);
672 nodeoffset = fdt_path_offset(blob, "/config");
673 if (nodeoffset < 0)
674 return NULL;
675
676 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len);
677 if (!nodep)
678 return NULL;
679
680 return (char *)nodep;
681}
Simon Glassf20c4612012-10-25 16:31:00 +0000682
Simon Glass76489832014-10-23 18:58:51 -0600683int fdtdec_decode_region(const void *blob, int node, const char *prop_name,
684 fdt_addr_t *basep, fdt_size_t *sizep)
Simon Glassf20c4612012-10-25 16:31:00 +0000685{
686 const fdt_addr_t *cell;
687 int len;
688
Simon Glass76489832014-10-23 18:58:51 -0600689 debug("%s: %s: %s\n", __func__, fdt_get_name(blob, node, NULL),
690 prop_name);
Simon Glassf20c4612012-10-25 16:31:00 +0000691 cell = fdt_getprop(blob, node, prop_name, &len);
Simon Glass76489832014-10-23 18:58:51 -0600692 if (!cell || (len < sizeof(fdt_addr_t) * 2)) {
693 debug("cell=%p, len=%d\n", cell, len);
Simon Glassf20c4612012-10-25 16:31:00 +0000694 return -1;
Simon Glass76489832014-10-23 18:58:51 -0600695 }
Simon Glassf20c4612012-10-25 16:31:00 +0000696
Simon Glass76489832014-10-23 18:58:51 -0600697 *basep = fdt_addr_to_cpu(*cell);
698 *sizep = fdt_size_to_cpu(cell[1]);
699 debug("%s: base=%08lx, size=%lx\n", __func__, (ulong)*basep,
700 (ulong)*sizep);
701
Simon Glassf20c4612012-10-25 16:31:00 +0000702 return 0;
703}
Simon Glass006e73b2014-02-27 13:26:01 -0700704
705/**
706 * Read a flash entry from the fdt
707 *
708 * @param blob FDT blob
709 * @param node Offset of node to read
710 * @param name Name of node being read
711 * @param entry Place to put offset and size of this node
712 * @return 0 if ok, -ve on error
713 */
714int fdtdec_read_fmap_entry(const void *blob, int node, const char *name,
715 struct fmap_entry *entry)
716{
Simon Glassf3cc44f2014-10-23 18:58:52 -0600717 const char *prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700718 u32 reg[2];
719
720 if (fdtdec_get_int_array(blob, node, "reg", reg, 2)) {
721 debug("Node '%s' has bad/missing 'reg' property\n", name);
722 return -FDT_ERR_NOTFOUND;
723 }
724 entry->offset = reg[0];
725 entry->length = reg[1];
Simon Glassf3cc44f2014-10-23 18:58:52 -0600726 entry->used = fdtdec_get_int(blob, node, "used", entry->length);
727 prop = fdt_getprop(blob, node, "compress", NULL);
728 entry->compress_algo = prop && !strcmp(prop, "lzo") ?
729 FMAP_COMPRESS_LZO : FMAP_COMPRESS_NONE;
730 prop = fdt_getprop(blob, node, "hash", &entry->hash_size);
731 entry->hash_algo = prop ? FMAP_HASH_SHA256 : FMAP_HASH_NONE;
732 entry->hash = (uint8_t *)prop;
Simon Glass006e73b2014-02-27 13:26:01 -0700733
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}
Simon Glass26403872014-10-23 18:58:56 -0600807
808int fdtdec_decode_memory_region(const void *blob, int config_node,
809 const char *mem_type, const char *suffix,
810 fdt_addr_t *basep, fdt_size_t *sizep)
811{
812 char prop_name[50];
813 const char *mem;
814 fdt_size_t size, offset_size;
815 fdt_addr_t base, offset;
816 int node;
817
818 if (config_node == -1) {
819 config_node = fdt_path_offset(blob, "/config");
820 if (config_node < 0) {
821 debug("%s: Cannot find /config node\n", __func__);
822 return -ENOENT;
823 }
824 }
825 if (!suffix)
826 suffix = "";
827
828 snprintf(prop_name, sizeof(prop_name), "%s-memory%s", mem_type,
829 suffix);
830 mem = fdt_getprop(blob, config_node, prop_name, NULL);
831 if (!mem) {
832 debug("%s: No memory type for '%s', using /memory\n", __func__,
833 prop_name);
834 mem = "/memory";
835 }
836
837 node = fdt_path_offset(blob, mem);
838 if (node < 0) {
839 debug("%s: Failed to find node '%s': %s\n", __func__, mem,
840 fdt_strerror(node));
841 return -ENOENT;
842 }
843
844 /*
845 * Not strictly correct - the memory may have multiple banks. We just
846 * use the first
847 */
848 if (fdtdec_decode_region(blob, node, "reg", &base, &size)) {
849 debug("%s: Failed to decode memory region %s\n", __func__,
850 mem);
851 return -EINVAL;
852 }
853
854 snprintf(prop_name, sizeof(prop_name), "%s-offset%s", mem_type,
855 suffix);
856 if (fdtdec_decode_region(blob, config_node, prop_name, &offset,
857 &offset_size)) {
858 debug("%s: Failed to decode memory region '%s'\n", __func__,
859 prop_name);
860 return -EINVAL;
861 }
862
863 *basep = base + offset;
864 *sizep = offset_size;
865
866 return 0;
867}
Heiko Schocher29a23f92014-03-03 12:19:30 +0100868#endif