Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | // SPDX-License-Identifier: GPL-2.0-or-later /* * Procedures for creating, accessing and interpreting the device tree. * * Paul Mackerras August 1996. * Copyright (C) 1996-2005 Paul Mackerras. * * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner. * {engebret|bergner}@us.ibm.com * * Adapted for sparc32 by David S. Miller davem@davemloft.net */ #include <linux/kernel.h> #include <linux/types.h> #include <linux/string.h> #include <linux/mm.h> #include <linux/memblock.h> #include <asm/prom.h> #include <asm/oplib.h> #include <asm/leon.h> #include <asm/leon_amba.h> #include "prom.h" void * __init prom_early_alloc(unsigned long size) { void *ret; ret = memblock_alloc(size, SMP_CACHE_BYTES); if (!ret) panic("%s: Failed to allocate %lu bytes\n", __func__, size); prom_early_allocated += size; return ret; } /* The following routines deal with the black magic of fully naming a * node. * * Certain well known named nodes are just the simple name string. * * Actual devices have an address specifier appended to the base name * string, like this "foo@addr". The "addr" can be in any number of * formats, and the platform plus the type of the node determine the * format and how it is constructed. * * For children of the ROOT node, the naming convention is fixed and * determined by whether this is a sun4u or sun4v system. * * For children of other nodes, it is bus type specific. So * we walk up the tree until we discover a "device_type" property * we recognize and we go from there. */ static void __init sparc32_path_component(struct device_node *dp, char *tmp_buf) { const char *name = of_get_property(dp, "name", NULL); struct linux_prom_registers *regs; struct property *rprop; rprop = of_find_property(dp, "reg", NULL); if (!rprop) return; regs = rprop->value; sprintf(tmp_buf, "%s@%x,%x", name, regs->which_io, regs->phys_addr); } /* "name@slot,offset" */ static void __init sbus_path_component(struct device_node *dp, char *tmp_buf) { const char *name = of_get_property(dp, "name", NULL); struct linux_prom_registers *regs; struct property *prop; prop = of_find_property(dp, "reg", NULL); if (!prop) return; regs = prop->value; sprintf(tmp_buf, "%s@%x,%x", name, regs->which_io, regs->phys_addr); } /* "name@devnum[,func]" */ static void __init pci_path_component(struct device_node *dp, char *tmp_buf) { const char *name = of_get_property(dp, "name", NULL); struct linux_prom_pci_registers *regs; struct property *prop; unsigned int devfn; prop = of_find_property(dp, "reg", NULL); if (!prop) return; regs = prop->value; devfn = (regs->phys_hi >> 8) & 0xff; if (devfn & 0x07) { sprintf(tmp_buf, "%s@%x,%x", name, devfn >> 3, devfn & 0x07); } else { sprintf(tmp_buf, "%s@%x", name, devfn >> 3); } } /* "name@addrhi,addrlo" */ static void __init ebus_path_component(struct device_node *dp, char *tmp_buf) { const char *name = of_get_property(dp, "name", NULL); struct linux_prom_registers *regs; struct property *prop; prop = of_find_property(dp, "reg", NULL); if (!prop) return; regs = prop->value; sprintf(tmp_buf, "%s@%x,%x", name, regs->which_io, regs->phys_addr); } /* "name@irq,addrlo" */ static void __init ambapp_path_component(struct device_node *dp, char *tmp_buf) { const char *name = of_get_property(dp, "name", NULL); struct amba_prom_registers *regs; unsigned int *intr; unsigned int reg0; struct property *prop; int interrupt = 0; /* In order to get a unique ID in the device tree (multiple AMBA devices * may have the same name) the node number is printed */ prop = of_find_property(dp, "reg", NULL); if (!prop) { reg0 = (unsigned int)dp->phandle; } else { regs = prop->value; reg0 = regs->phys_addr; } /* Not all cores have Interrupt */ prop = of_find_property(dp, "interrupts", NULL); if (!prop) intr = &interrupt; /* IRQ0 does not exist */ else intr = prop->value; sprintf(tmp_buf, "%s@%x,%x", name, *intr, reg0); } static void __init __build_path_component(struct device_node *dp, char *tmp_buf) { struct device_node *parent = dp->parent; if (parent != NULL) { if (of_node_is_type(parent, "pci") || of_node_is_type(parent, "pciex")) return pci_path_component(dp, tmp_buf); if (of_node_is_type(parent, "sbus")) return sbus_path_component(dp, tmp_buf); if (of_node_is_type(parent, "ebus")) return ebus_path_component(dp, tmp_buf); if (of_node_is_type(parent, "ambapp")) return ambapp_path_component(dp, tmp_buf); /* "isa" is handled with platform naming */ } /* Use platform naming convention. */ return sparc32_path_component(dp, tmp_buf); } char * __init build_path_component(struct device_node *dp) { const char *name = of_get_property(dp, "name", NULL); char tmp_buf[64], *n; tmp_buf[0] = '\0'; __build_path_component(dp, tmp_buf); if (tmp_buf[0] == '\0') strcpy(tmp_buf, name); n = prom_early_alloc(strlen(tmp_buf) + 1); strcpy(n, tmp_buf); return n; } extern void restore_current(void); void __init of_console_init(void) { char *msg = "OF stdout device is: %s\n"; struct device_node *dp; unsigned long flags; const char *type; phandle node; int skip, tmp, fd; of_console_path = prom_early_alloc(256); switch (prom_vers) { case PROM_V0: skip = 0; switch (*romvec->pv_stdout) { case PROMDEV_SCREEN: type = "display"; break; case PROMDEV_TTYB: skip = 1; fallthrough; case PROMDEV_TTYA: type = "serial"; break; default: prom_printf("Invalid PROM_V0 stdout value %u\n", *romvec->pv_stdout); prom_halt(); } tmp = skip; for_each_node_by_type(dp, type) { if (!tmp--) break; } if (!dp) { prom_printf("Cannot find PROM_V0 console node.\n"); prom_halt(); } of_console_device = dp; sprintf(of_console_path, "%pOF", dp); if (!strcmp(type, "serial")) { strcat(of_console_path, (skip ? ":b" : ":a")); } break; default: case PROM_V2: case PROM_V3: fd = *romvec->pv_v2bootargs.fd_stdout; spin_lock_irqsave(&prom_lock, flags); node = (*romvec->pv_v2devops.v2_inst2pkg)(fd); restore_current(); spin_unlock_irqrestore(&prom_lock, flags); if (!node) { prom_printf("Cannot resolve stdout node from " "instance %08x.\n", fd); prom_halt(); } dp = of_find_node_by_phandle(node); if (!of_node_is_type(dp, "display") && !of_node_is_type(dp, "serial")) { prom_printf("Console device_type is neither display " "nor serial.\n"); prom_halt(); } of_console_device = dp; if (prom_vers == PROM_V2) { sprintf(of_console_path, "%pOF", dp); switch (*romvec->pv_stdout) { case PROMDEV_TTYA: strcat(of_console_path, ":a"); break; case PROMDEV_TTYB: strcat(of_console_path, ":b"); break; } } else { const char *path; dp = of_find_node_by_path("/"); path = of_get_property(dp, "stdout-path", NULL); if (!path) { prom_printf("No stdout-path in root node.\n"); prom_halt(); } strcpy(of_console_path, path); } break; } of_console_options = strrchr(of_console_path, ':'); if (of_console_options) { of_console_options++; if (*of_console_options == '\0') of_console_options = NULL; } printk(msg, of_console_path); } void __init of_fill_in_cpu_data(void) { } void __init irq_trans_init(struct device_node *dp) { } |