Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 3 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <serial.h> |
| 8 | #include <libfdt.h> |
| 9 | #include <fdtdec.h> |
| 10 | |
Michal Simek | e46431e | 2012-07-11 02:26:38 +0000 | [diff] [blame] | 11 | #include <asm/gpio.h> |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 12 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 13 | DECLARE_GLOBAL_DATA_PTR; |
| 14 | |
| 15 | /* |
| 16 | * Here are the type we know about. One day we might allow drivers to |
| 17 | * register. For now we just put them here. The COMPAT macro allows us to |
| 18 | * turn this into a sparse list later, and keeps the ID with the name. |
| 19 | */ |
| 20 | #define COMPAT(id, name) name |
| 21 | static const char * const compat_names[COMPAT_COUNT] = { |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 22 | COMPAT(UNKNOWN, "<none>"), |
Simon Glass | 87f938c | 2012-02-27 10:52:49 +0000 | [diff] [blame] | 23 | COMPAT(NVIDIA_TEGRA20_USB, "nvidia,tegra20-ehci"), |
Jim Lin | 7e44d93 | 2013-06-21 19:05:47 +0800 | [diff] [blame] | 24 | COMPAT(NVIDIA_TEGRA30_USB, "nvidia,tegra30-ehci"), |
| 25 | COMPAT(NVIDIA_TEGRA114_USB, "nvidia,tegra114-ehci"), |
Tom Warren | e32624e | 2013-02-08 07:25:30 +0000 | [diff] [blame] | 26 | COMPAT(NVIDIA_TEGRA114_I2C, "nvidia,tegra114-i2c"), |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 27 | COMPAT(NVIDIA_TEGRA20_I2C, "nvidia,tegra20-i2c"), |
| 28 | COMPAT(NVIDIA_TEGRA20_DVC, "nvidia,tegra20-i2c-dvc"), |
Jimmy Zhang | 0e35ad0 | 2012-04-02 13:18:52 +0000 | [diff] [blame] | 29 | COMPAT(NVIDIA_TEGRA20_EMC, "nvidia,tegra20-emc"), |
| 30 | COMPAT(NVIDIA_TEGRA20_EMC_TABLE, "nvidia,tegra20-emc-table"), |
Rakesh Iyer | 6642a68 | 2012-04-17 09:01:35 +0000 | [diff] [blame] | 31 | COMPAT(NVIDIA_TEGRA20_KBC, "nvidia,tegra20-kbc"), |
Jim Lin | 312693c | 2012-07-29 20:53:29 +0000 | [diff] [blame] | 32 | COMPAT(NVIDIA_TEGRA20_NAND, "nvidia,tegra20-nand"), |
Simon Glass | e1ae0d1 | 2012-10-17 13:24:49 +0000 | [diff] [blame] | 33 | COMPAT(NVIDIA_TEGRA20_PWM, "nvidia,tegra20-pwm"), |
Wei Ni | 87540de | 2012-10-17 13:24:50 +0000 | [diff] [blame] | 34 | COMPAT(NVIDIA_TEGRA20_DC, "nvidia,tegra20-dc"), |
Tom Warren | f4e4e0b | 2013-03-04 14:07:18 -0700 | [diff] [blame] | 35 | COMPAT(NVIDIA_TEGRA30_SDMMC, "nvidia,tegra30-sdhci"), |
Tom Warren | c9aa831 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 36 | COMPAT(NVIDIA_TEGRA20_SDMMC, "nvidia,tegra20-sdhci"), |
Allen Martin | 8f1b46b | 2013-01-29 13:51:24 +0000 | [diff] [blame] | 37 | COMPAT(NVIDIA_TEGRA20_SFLASH, "nvidia,tegra20-sflash"), |
Allen Martin | b19f574 | 2013-01-29 13:51:28 +0000 | [diff] [blame] | 38 | COMPAT(NVIDIA_TEGRA20_SLINK, "nvidia,tegra20-slink"), |
Allen Martin | c3bb3c8 | 2013-03-16 18:58:09 +0000 | [diff] [blame] | 39 | COMPAT(NVIDIA_TEGRA114_SPI, "nvidia,tegra114-spi"), |
Hatim RV | cc9fe33 | 2012-12-11 00:52:46 +0000 | [diff] [blame] | 40 | COMPAT(SMSC_LAN9215, "smsc,lan9215"), |
| 41 | COMPAT(SAMSUNG_EXYNOS5_SROMC, "samsung,exynos-sromc"), |
Rajeshwari Shinde | c34253d | 2012-12-26 20:03:10 +0000 | [diff] [blame] | 42 | COMPAT(SAMSUNG_S3C2440_I2C, "samsung,s3c2440-i2c"), |
Rajeshwari Shinde | 72dbff1 | 2012-12-26 20:03:16 +0000 | [diff] [blame] | 43 | COMPAT(SAMSUNG_EXYNOS5_SOUND, "samsung,exynos-sound"), |
| 44 | COMPAT(WOLFSON_WM8994_CODEC, "wolfson,wm8994-codec"), |
Rajeshwari Shinde | 5d50659 | 2012-12-26 20:03:20 +0000 | [diff] [blame] | 45 | COMPAT(SAMSUNG_EXYNOS_SPI, "samsung,exynos-spi"), |
Hung-ying Tyan | 8836438 | 2013-05-15 18:27:28 +0800 | [diff] [blame] | 46 | COMPAT(GOOGLE_CROS_EC, "google,cros-ec"), |
Hung-ying Tyan | 713cb68 | 2013-05-15 18:27:32 +0800 | [diff] [blame] | 47 | COMPAT(GOOGLE_CROS_EC_KEYB, "google,cros-ec-keyb"), |
Rajeshwari Shinde | 6abd162 | 2013-01-07 23:35:05 +0000 | [diff] [blame] | 48 | COMPAT(SAMSUNG_EXYNOS_EHCI, "samsung,exynos-ehci"), |
| 49 | COMPAT(SAMSUNG_EXYNOS_USB_PHY, "samsung,exynos-usb-phy"), |
Akshay Saraswat | 618766c | 2013-02-25 01:13:01 +0000 | [diff] [blame] | 50 | COMPAT(SAMSUNG_EXYNOS_TMU, "samsung,exynos-tmu"), |
Ajay Kumar | d7377b5 | 2013-02-21 23:53:00 +0000 | [diff] [blame] | 51 | COMPAT(SAMSUNG_EXYNOS_FIMD, "samsung,exynos-fimd"), |
Ajay Kumar | 1e4706a | 2013-02-21 23:53:05 +0000 | [diff] [blame] | 52 | COMPAT(SAMSUNG_EXYNOS5_DP, "samsung,exynos5-dp"), |
Amar | 45a4d4d | 2013-04-27 11:42:52 +0530 | [diff] [blame] | 53 | COMPAT(SAMSUNG_EXYNOS5_DWMMC, "samsung,exynos5250-dwmmc"), |
Rajeshwari Shinde | ee1e3c2 | 2013-06-24 16:47:20 +0530 | [diff] [blame] | 54 | COMPAT(SAMSUNG_EXYNOS_SERIAL, "samsung,exynos4210-uart"), |
Rajeshwari Shinde | cd577e2 | 2013-01-08 21:03:38 +0000 | [diff] [blame] | 55 | COMPAT(MAXIM_MAX77686_PMIC, "maxim,max77686_pmic"), |
Simon Glass | bb8215f | 2013-03-11 06:08:08 +0000 | [diff] [blame] | 56 | COMPAT(GENERIC_SPI_FLASH, "spi-flash"), |
Rajeshwari Shinde | 7772bb7 | 2013-02-14 19:46:15 +0000 | [diff] [blame] | 57 | COMPAT(MAXIM_98095_CODEC, "maxim,max98095-codec"), |
Rong Chang | f626799 | 2013-04-12 10:44:57 +0000 | [diff] [blame] | 58 | COMPAT(INFINEON_SLB9635_TPM, "infineon,slb9635-tpm"), |
Vincent Palatin | ec34fa5 | 2013-04-12 11:04:36 +0000 | [diff] [blame] | 59 | COMPAT(INFINEON_SLB9645_TPM, "infineon,slb9645-tpm"), |
naveen krishna chatradhi | ecbd7e1 | 2013-04-29 15:58:52 -0700 | [diff] [blame] | 60 | COMPAT(SAMSUNG_EXYNOS5_I2C, "samsung,exynos5-hsi2c"), |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 63 | const char *fdtdec_get_compatible(enum fdt_compat_id id) |
| 64 | { |
| 65 | /* We allow reading of the 'unknown' ID for testing purposes */ |
| 66 | assert(id >= 0 && id < COMPAT_COUNT); |
| 67 | return compat_names[id]; |
| 68 | } |
| 69 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 70 | fdt_addr_t fdtdec_get_addr_size(const void *blob, int node, |
| 71 | const char *prop_name, fdt_size_t *sizep) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 72 | { |
| 73 | const fdt_addr_t *cell; |
| 74 | int len; |
| 75 | |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 76 | debug("%s: %s: ", __func__, prop_name); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 77 | cell = fdt_getprop(blob, node, prop_name, &len); |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 78 | if (cell && ((!sizep && len == sizeof(fdt_addr_t)) || |
| 79 | len == sizeof(fdt_addr_t) * 2)) { |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 80 | fdt_addr_t addr = fdt_addr_to_cpu(*cell); |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 81 | if (sizep) { |
| 82 | const fdt_size_t *size; |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 83 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 84 | size = (fdt_size_t *)((char *)cell + |
| 85 | sizeof(fdt_addr_t)); |
| 86 | *sizep = fdt_size_to_cpu(*size); |
| 87 | debug("addr=%p, size=%p\n", (void *)addr, |
| 88 | (void *)*sizep); |
| 89 | } else { |
| 90 | debug("%p\n", (void *)addr); |
| 91 | } |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 92 | return addr; |
| 93 | } |
| 94 | debug("(not found)\n"); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 95 | return FDT_ADDR_T_NONE; |
| 96 | } |
| 97 | |
Simon Glass | 4397a2a | 2013-03-19 04:58:51 +0000 | [diff] [blame] | 98 | fdt_addr_t fdtdec_get_addr(const void *blob, int node, |
| 99 | const char *prop_name) |
| 100 | { |
| 101 | return fdtdec_get_addr_size(blob, node, prop_name, NULL); |
| 102 | } |
| 103 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 104 | s32 fdtdec_get_int(const void *blob, int node, const char *prop_name, |
| 105 | s32 default_val) |
| 106 | { |
| 107 | const s32 *cell; |
| 108 | int len; |
| 109 | |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 110 | debug("%s: %s: ", __func__, prop_name); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 111 | cell = fdt_getprop(blob, node, prop_name, &len); |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 112 | if (cell && len >= sizeof(s32)) { |
| 113 | s32 val = fdt32_to_cpu(cell[0]); |
| 114 | |
| 115 | debug("%#x (%d)\n", val, val); |
| 116 | return val; |
| 117 | } |
| 118 | debug("(not found)\n"); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 119 | return default_val; |
| 120 | } |
| 121 | |
Che-Liang Chiou | aadef0a | 2012-10-25 16:31:05 +0000 | [diff] [blame] | 122 | uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name, |
| 123 | uint64_t default_val) |
| 124 | { |
| 125 | const uint64_t *cell64; |
| 126 | int length; |
| 127 | |
| 128 | cell64 = fdt_getprop(blob, node, prop_name, &length); |
| 129 | if (!cell64 || length < sizeof(*cell64)) |
| 130 | return default_val; |
| 131 | |
| 132 | return fdt64_to_cpu(*cell64); |
| 133 | } |
| 134 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 135 | int fdtdec_get_is_enabled(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 136 | { |
| 137 | const char *cell; |
| 138 | |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 139 | /* |
| 140 | * It should say "okay", so only allow that. Some fdts use "ok" but |
| 141 | * this is a bug. Please fix your device tree source file. See here |
| 142 | * for discussion: |
| 143 | * |
| 144 | * http://www.mail-archive.com/u-boot@lists.denx.de/msg71598.html |
| 145 | */ |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 146 | cell = fdt_getprop(blob, node, "status", NULL); |
| 147 | if (cell) |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 148 | return 0 == strcmp(cell, "okay"); |
| 149 | return 1; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Gerald Van Baren | 7cde397 | 2012-11-12 23:13:54 -0500 | [diff] [blame] | 152 | enum fdt_compat_id fdtdec_lookup(const void *blob, int node) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 153 | { |
| 154 | enum fdt_compat_id id; |
| 155 | |
| 156 | /* Search our drivers */ |
| 157 | for (id = COMPAT_UNKNOWN; id < COMPAT_COUNT; id++) |
| 158 | if (0 == fdt_node_check_compatible(blob, node, |
| 159 | compat_names[id])) |
| 160 | return id; |
| 161 | return COMPAT_UNKNOWN; |
| 162 | } |
| 163 | |
| 164 | int fdtdec_next_compatible(const void *blob, int node, |
| 165 | enum fdt_compat_id id) |
| 166 | { |
| 167 | return fdt_node_offset_by_compatible(blob, node, compat_names[id]); |
| 168 | } |
| 169 | |
Simon Glass | 3ddecfc | 2012-04-02 13:18:42 +0000 | [diff] [blame] | 170 | int fdtdec_next_compatible_subnode(const void *blob, int node, |
| 171 | enum fdt_compat_id id, int *depthp) |
| 172 | { |
| 173 | do { |
| 174 | node = fdt_next_node(blob, node, depthp); |
| 175 | } while (*depthp > 1); |
| 176 | |
| 177 | /* If this is a direct subnode, and compatible, return it */ |
| 178 | if (*depthp == 1 && 0 == fdt_node_check_compatible( |
| 179 | blob, node, compat_names[id])) |
| 180 | return node; |
| 181 | |
| 182 | return -FDT_ERR_NOTFOUND; |
| 183 | } |
| 184 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 185 | int fdtdec_next_alias(const void *blob, const char *name, |
| 186 | enum fdt_compat_id id, int *upto) |
| 187 | { |
| 188 | #define MAX_STR_LEN 20 |
| 189 | char str[MAX_STR_LEN + 20]; |
| 190 | int node, err; |
| 191 | |
| 192 | /* snprintf() is not available */ |
| 193 | assert(strlen(name) < MAX_STR_LEN); |
| 194 | sprintf(str, "%.*s%d", MAX_STR_LEN, name, *upto); |
Simon Glass | 0087847 | 2012-10-31 14:02:42 +0000 | [diff] [blame] | 195 | node = fdt_path_offset(blob, str); |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 196 | if (node < 0) |
| 197 | return node; |
| 198 | err = fdt_node_check_compatible(blob, node, compat_names[id]); |
| 199 | if (err < 0) |
| 200 | return err; |
Simon Glass | f88fe2d | 2012-02-27 10:52:34 +0000 | [diff] [blame] | 201 | if (err) |
| 202 | return -FDT_ERR_NOTFOUND; |
| 203 | (*upto)++; |
| 204 | return node; |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 207 | int fdtdec_find_aliases_for_id(const void *blob, const char *name, |
| 208 | enum fdt_compat_id id, int *node_list, int maxcount) |
| 209 | { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 210 | memset(node_list, '\0', sizeof(*node_list) * maxcount); |
| 211 | |
| 212 | return fdtdec_add_aliases_for_id(blob, name, id, node_list, maxcount); |
| 213 | } |
| 214 | |
| 215 | /* TODO: Can we tighten this code up a little? */ |
| 216 | int fdtdec_add_aliases_for_id(const void *blob, const char *name, |
| 217 | enum fdt_compat_id id, int *node_list, int maxcount) |
| 218 | { |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 219 | int name_len = strlen(name); |
| 220 | int nodes[maxcount]; |
| 221 | int num_found = 0; |
| 222 | int offset, node; |
| 223 | int alias_node; |
| 224 | int count; |
| 225 | int i, j; |
| 226 | |
| 227 | /* find the alias node if present */ |
| 228 | alias_node = fdt_path_offset(blob, "/aliases"); |
| 229 | |
| 230 | /* |
| 231 | * start with nothing, and we can assume that the root node can't |
| 232 | * match |
| 233 | */ |
| 234 | memset(nodes, '\0', sizeof(nodes)); |
| 235 | |
| 236 | /* First find all the compatible nodes */ |
| 237 | for (node = count = 0; node >= 0 && count < maxcount;) { |
| 238 | node = fdtdec_next_compatible(blob, node, id); |
| 239 | if (node >= 0) |
| 240 | nodes[count++] = node; |
| 241 | } |
| 242 | if (node >= 0) |
| 243 | debug("%s: warning: maxcount exceeded with alias '%s'\n", |
| 244 | __func__, name); |
| 245 | |
| 246 | /* Now find all the aliases */ |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 247 | for (offset = fdt_first_property_offset(blob, alias_node); |
| 248 | offset > 0; |
| 249 | offset = fdt_next_property_offset(blob, offset)) { |
| 250 | const struct fdt_property *prop; |
| 251 | const char *path; |
| 252 | int number; |
| 253 | int found; |
| 254 | |
| 255 | node = 0; |
| 256 | prop = fdt_get_property_by_offset(blob, offset, NULL); |
| 257 | path = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); |
| 258 | if (prop->len && 0 == strncmp(path, name, name_len)) |
| 259 | node = fdt_path_offset(blob, prop->data); |
| 260 | if (node <= 0) |
| 261 | continue; |
| 262 | |
| 263 | /* Get the alias number */ |
| 264 | number = simple_strtoul(path + name_len, NULL, 10); |
| 265 | if (number < 0 || number >= maxcount) { |
| 266 | debug("%s: warning: alias '%s' is out of range\n", |
| 267 | __func__, path); |
| 268 | continue; |
| 269 | } |
| 270 | |
| 271 | /* Make sure the node we found is actually in our list! */ |
| 272 | found = -1; |
| 273 | for (j = 0; j < count; j++) |
| 274 | if (nodes[j] == node) { |
| 275 | found = j; |
| 276 | break; |
| 277 | } |
| 278 | |
| 279 | if (found == -1) { |
| 280 | debug("%s: warning: alias '%s' points to a node " |
| 281 | "'%s' that is missing or is not compatible " |
| 282 | " with '%s'\n", __func__, path, |
| 283 | fdt_get_name(blob, node, NULL), |
| 284 | compat_names[id]); |
| 285 | continue; |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | * Add this node to our list in the right place, and mark |
| 290 | * it as done. |
| 291 | */ |
| 292 | if (fdtdec_get_is_enabled(blob, node)) { |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 293 | if (node_list[number]) { |
| 294 | debug("%s: warning: alias '%s' requires that " |
| 295 | "a node be placed in the list in a " |
| 296 | "position which is already filled by " |
| 297 | "node '%s'\n", __func__, path, |
| 298 | fdt_get_name(blob, node, NULL)); |
| 299 | continue; |
| 300 | } |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 301 | node_list[number] = node; |
| 302 | if (number >= num_found) |
| 303 | num_found = number + 1; |
| 304 | } |
Simon Glass | c678227 | 2012-02-03 15:13:53 +0000 | [diff] [blame] | 305 | nodes[found] = 0; |
Simon Glass | a53f4a2 | 2012-01-17 08:20:50 +0000 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /* Add any nodes not mentioned by an alias */ |
| 309 | for (i = j = 0; i < maxcount; i++) { |
| 310 | if (!node_list[i]) { |
| 311 | for (; j < maxcount; j++) |
| 312 | if (nodes[j] && |
| 313 | fdtdec_get_is_enabled(blob, nodes[j])) |
| 314 | break; |
| 315 | |
| 316 | /* Have we run out of nodes to add? */ |
| 317 | if (j == maxcount) |
| 318 | break; |
| 319 | |
| 320 | assert(!node_list[i]); |
| 321 | node_list[i] = nodes[j++]; |
| 322 | if (i >= num_found) |
| 323 | num_found = i + 1; |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | return num_found; |
| 328 | } |
| 329 | |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 330 | int fdtdec_check_fdt(void) |
| 331 | { |
| 332 | /* |
| 333 | * We must have an FDT, but we cannot panic() yet since the console |
| 334 | * is not ready. So for now, just assert(). Boards which need an early |
| 335 | * FDT (prior to console ready) will need to make their own |
| 336 | * arrangements and do their own checks. |
| 337 | */ |
| 338 | assert(!fdtdec_prepare_fdt()); |
| 339 | return 0; |
| 340 | } |
| 341 | |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 342 | /* |
| 343 | * This function is a little odd in that it accesses global data. At some |
| 344 | * point if the architecture board.c files merge this will make more sense. |
| 345 | * Even now, it is common code. |
| 346 | */ |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 347 | int fdtdec_prepare_fdt(void) |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 348 | { |
Simon Glass | c309c2d | 2013-04-20 08:42:46 +0000 | [diff] [blame] | 349 | if (!gd->fdt_blob || ((uintptr_t)gd->fdt_blob & 3) || |
| 350 | fdt_check_header(gd->fdt_blob)) { |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 351 | printf("No valid FDT found - please append one to U-Boot " |
| 352 | "binary, use u-boot-dtb.bin or define " |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 353 | "CONFIG_OF_EMBED. For sandbox, use -d <file.dtb>\n"); |
Simon Glass | 9a263e5 | 2012-03-28 10:08:24 +0000 | [diff] [blame] | 354 | return -1; |
| 355 | } |
Simon Glass | b5220bc | 2011-10-24 19:15:32 +0000 | [diff] [blame] | 356 | return 0; |
| 357 | } |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 358 | |
| 359 | int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name) |
| 360 | { |
| 361 | const u32 *phandle; |
| 362 | int lookup; |
| 363 | |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 364 | debug("%s: %s\n", __func__, prop_name); |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 365 | phandle = fdt_getprop(blob, node, prop_name, NULL); |
| 366 | if (!phandle) |
| 367 | return -FDT_ERR_NOTFOUND; |
| 368 | |
| 369 | lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle)); |
| 370 | return lookup; |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * Look up a property in a node and check that it has a minimum length. |
| 375 | * |
| 376 | * @param blob FDT blob |
| 377 | * @param node node to examine |
| 378 | * @param prop_name name of property to find |
| 379 | * @param min_len minimum property length in bytes |
| 380 | * @param err 0 if ok, or -FDT_ERR_NOTFOUND if the property is not |
| 381 | found, or -FDT_ERR_BADLAYOUT if not enough data |
| 382 | * @return pointer to cell, which is only valid if err == 0 |
| 383 | */ |
| 384 | static const void *get_prop_check_min_len(const void *blob, int node, |
| 385 | const char *prop_name, int min_len, int *err) |
| 386 | { |
| 387 | const void *cell; |
| 388 | int len; |
| 389 | |
| 390 | debug("%s: %s\n", __func__, prop_name); |
| 391 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 392 | if (!cell) |
| 393 | *err = -FDT_ERR_NOTFOUND; |
| 394 | else if (len < min_len) |
| 395 | *err = -FDT_ERR_BADLAYOUT; |
| 396 | else |
| 397 | *err = 0; |
| 398 | return cell; |
| 399 | } |
| 400 | |
| 401 | int fdtdec_get_int_array(const void *blob, int node, const char *prop_name, |
| 402 | u32 *array, int count) |
| 403 | { |
| 404 | const u32 *cell; |
| 405 | int i, err = 0; |
| 406 | |
| 407 | debug("%s: %s\n", __func__, prop_name); |
| 408 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 409 | sizeof(u32) * count, &err); |
| 410 | if (!err) { |
| 411 | for (i = 0; i < count; i++) |
| 412 | array[i] = fdt32_to_cpu(cell[i]); |
| 413 | } |
| 414 | return err; |
| 415 | } |
| 416 | |
Simon Glass | 96875e7 | 2012-04-02 13:18:41 +0000 | [diff] [blame] | 417 | const u32 *fdtdec_locate_array(const void *blob, int node, |
| 418 | const char *prop_name, int count) |
| 419 | { |
| 420 | const u32 *cell; |
| 421 | int err; |
| 422 | |
| 423 | cell = get_prop_check_min_len(blob, node, prop_name, |
| 424 | sizeof(u32) * count, &err); |
| 425 | return err ? NULL : cell; |
| 426 | } |
| 427 | |
Simon Glass | d17da65 | 2012-02-27 10:52:35 +0000 | [diff] [blame] | 428 | int fdtdec_get_bool(const void *blob, int node, const char *prop_name) |
| 429 | { |
| 430 | const s32 *cell; |
| 431 | int len; |
| 432 | |
| 433 | debug("%s: %s\n", __func__, prop_name); |
| 434 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 435 | return cell != NULL; |
| 436 | } |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 437 | |
| 438 | /** |
| 439 | * Decode a list of GPIOs from an FDT. This creates a list of GPIOs with no |
| 440 | * terminating item. |
| 441 | * |
| 442 | * @param blob FDT blob to use |
| 443 | * @param node Node to look at |
| 444 | * @param prop_name Node property name |
| 445 | * @param gpio Array of gpio elements to fill from FDT. This will be |
| 446 | * untouched if either 0 or an error is returned |
| 447 | * @param max_count Maximum number of elements allowed |
| 448 | * @return number of GPIOs read if ok, -FDT_ERR_BADLAYOUT if max_count would |
| 449 | * be exceeded, or -FDT_ERR_NOTFOUND if the property is missing. |
| 450 | */ |
Abhilash Kesavan | 5921f6a | 2012-10-25 16:31:01 +0000 | [diff] [blame] | 451 | int fdtdec_decode_gpios(const void *blob, int node, const char *prop_name, |
| 452 | struct fdt_gpio_state *gpio, int max_count) |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 453 | { |
| 454 | const struct fdt_property *prop; |
| 455 | const u32 *cell; |
| 456 | const char *name; |
| 457 | int len, i; |
| 458 | |
| 459 | debug("%s: %s\n", __func__, prop_name); |
| 460 | assert(max_count > 0); |
| 461 | prop = fdt_get_property(blob, node, prop_name, &len); |
| 462 | if (!prop) { |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 463 | debug("%s: property '%s' missing\n", __func__, prop_name); |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 464 | return -FDT_ERR_NOTFOUND; |
| 465 | } |
| 466 | |
| 467 | /* We will use the name to tag the GPIO */ |
| 468 | name = fdt_string(blob, fdt32_to_cpu(prop->nameoff)); |
| 469 | cell = (u32 *)prop->data; |
| 470 | len /= sizeof(u32) * 3; /* 3 cells per GPIO record */ |
| 471 | if (len > max_count) { |
Simon Glass | 1cb2323 | 2012-07-12 05:25:01 +0000 | [diff] [blame] | 472 | debug(" %s: too many GPIOs / cells for " |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 473 | "property '%s'\n", __func__, prop_name); |
| 474 | return -FDT_ERR_BADLAYOUT; |
| 475 | } |
| 476 | |
| 477 | /* Read out the GPIO data from the cells */ |
| 478 | for (i = 0; i < len; i++, cell += 3) { |
| 479 | gpio[i].gpio = fdt32_to_cpu(cell[1]); |
| 480 | gpio[i].flags = fdt32_to_cpu(cell[2]); |
| 481 | gpio[i].name = name; |
| 482 | } |
| 483 | |
| 484 | return len; |
| 485 | } |
| 486 | |
| 487 | int fdtdec_decode_gpio(const void *blob, int node, const char *prop_name, |
| 488 | struct fdt_gpio_state *gpio) |
| 489 | { |
| 490 | int err; |
| 491 | |
| 492 | debug("%s: %s\n", __func__, prop_name); |
| 493 | gpio->gpio = FDT_GPIO_NONE; |
| 494 | gpio->name = NULL; |
| 495 | err = fdtdec_decode_gpios(blob, node, prop_name, gpio, 1); |
| 496 | return err == 1 ? 0 : err; |
| 497 | } |
| 498 | |
Sean Paul | 202ff75 | 2012-10-25 16:31:06 +0000 | [diff] [blame] | 499 | int fdtdec_get_gpio(struct fdt_gpio_state *gpio) |
| 500 | { |
| 501 | int val; |
| 502 | |
| 503 | if (!fdt_gpio_isvalid(gpio)) |
| 504 | return -1; |
| 505 | |
| 506 | val = gpio_get_value(gpio->gpio); |
| 507 | return gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; |
| 508 | } |
| 509 | |
| 510 | int fdtdec_set_gpio(struct fdt_gpio_state *gpio, int val) |
| 511 | { |
| 512 | if (!fdt_gpio_isvalid(gpio)) |
| 513 | return -1; |
| 514 | |
| 515 | val = gpio->flags & FDT_GPIO_ACTIVE_LOW ? val ^ 1 : val; |
| 516 | return gpio_set_value(gpio->gpio, val); |
| 517 | } |
| 518 | |
Simon Glass | ed3ee5c | 2012-02-27 10:52:36 +0000 | [diff] [blame] | 519 | int fdtdec_setup_gpio(struct fdt_gpio_state *gpio) |
| 520 | { |
| 521 | /* |
| 522 | * Return success if there is no GPIO defined. This is used for |
| 523 | * optional GPIOs) |
| 524 | */ |
| 525 | if (!fdt_gpio_isvalid(gpio)) |
| 526 | return 0; |
| 527 | |
| 528 | if (gpio_request(gpio->gpio, gpio->name)) |
| 529 | return -1; |
| 530 | return 0; |
| 531 | } |
Anton Staff | bed4d89 | 2012-04-17 09:01:28 +0000 | [diff] [blame] | 532 | |
| 533 | int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name, |
| 534 | u8 *array, int count) |
| 535 | { |
| 536 | const u8 *cell; |
| 537 | int err; |
| 538 | |
| 539 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 540 | if (!err) |
| 541 | memcpy(array, cell, count); |
| 542 | return err; |
| 543 | } |
| 544 | |
| 545 | const u8 *fdtdec_locate_byte_array(const void *blob, int node, |
| 546 | const char *prop_name, int count) |
| 547 | { |
| 548 | const u8 *cell; |
| 549 | int err; |
| 550 | |
| 551 | cell = get_prop_check_min_len(blob, node, prop_name, count, &err); |
| 552 | if (err) |
| 553 | return NULL; |
| 554 | return cell; |
| 555 | } |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 556 | |
Abhilash Kesavan | 09258f1 | 2012-10-25 16:30:58 +0000 | [diff] [blame] | 557 | int fdtdec_get_config_int(const void *blob, const char *prop_name, |
| 558 | int default_val) |
| 559 | { |
| 560 | int config_node; |
| 561 | |
| 562 | debug("%s: %s\n", __func__, prop_name); |
| 563 | config_node = fdt_path_offset(blob, "/config"); |
| 564 | if (config_node < 0) |
| 565 | return default_val; |
| 566 | return fdtdec_get_int(blob, config_node, prop_name, default_val); |
| 567 | } |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 568 | |
Gabe Black | 79289c0 | 2012-10-25 16:31:04 +0000 | [diff] [blame] | 569 | int fdtdec_get_config_bool(const void *blob, const char *prop_name) |
| 570 | { |
| 571 | int config_node; |
| 572 | const void *prop; |
| 573 | |
| 574 | debug("%s: %s\n", __func__, prop_name); |
| 575 | config_node = fdt_path_offset(blob, "/config"); |
| 576 | if (config_node < 0) |
| 577 | return 0; |
| 578 | prop = fdt_get_property(blob, config_node, prop_name, NULL); |
| 579 | |
| 580 | return prop != NULL; |
| 581 | } |
| 582 | |
Simon Glass | 332ab0d | 2012-10-25 16:30:59 +0000 | [diff] [blame] | 583 | char *fdtdec_get_config_string(const void *blob, const char *prop_name) |
| 584 | { |
| 585 | const char *nodep; |
| 586 | int nodeoffset; |
| 587 | int len; |
| 588 | |
| 589 | debug("%s: %s\n", __func__, prop_name); |
| 590 | nodeoffset = fdt_path_offset(blob, "/config"); |
| 591 | if (nodeoffset < 0) |
| 592 | return NULL; |
| 593 | |
| 594 | nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); |
| 595 | if (!nodep) |
| 596 | return NULL; |
| 597 | |
| 598 | return (char *)nodep; |
| 599 | } |
Simon Glass | f20c461 | 2012-10-25 16:31:00 +0000 | [diff] [blame] | 600 | |
| 601 | int fdtdec_decode_region(const void *blob, int node, |
| 602 | const char *prop_name, void **ptrp, size_t *size) |
| 603 | { |
| 604 | const fdt_addr_t *cell; |
| 605 | int len; |
| 606 | |
| 607 | debug("%s: %s\n", __func__, prop_name); |
| 608 | cell = fdt_getprop(blob, node, prop_name, &len); |
| 609 | if (!cell || (len != sizeof(fdt_addr_t) * 2)) |
| 610 | return -1; |
| 611 | |
| 612 | *ptrp = (void *)fdt_addr_to_cpu(*cell); |
| 613 | *size = fdt_size_to_cpu(cell[1]); |
| 614 | debug("%s: size=%zx\n", __func__, *size); |
| 615 | return 0; |
| 616 | } |