sparc64: Use the cond_syscall()s in kernel/sys_ni.c instead of home-grown copy.
[deliverable/linux.git] / arch / sparc / kernel / of_device.c
CommitLineData
fd531431
DM
1#include <linux/string.h>
2#include <linux/kernel.h>
f85ff305 3#include <linux/of.h>
fd531431
DM
4#include <linux/init.h>
5#include <linux/module.h>
6#include <linux/mod_devicetable.h>
7#include <linux/slab.h>
3f23de10
SR
8#include <linux/errno.h>
9#include <linux/of_device.h>
10#include <linux/of_platform.h>
fd531431 11
8f96cd1a
DM
12static int node_match(struct device *dev, void *data)
13{
14 struct of_device *op = to_of_device(dev);
15 struct device_node *dp = data;
16
17 return (op->node == dp);
18}
19
20struct of_device *of_find_device_by_node(struct device_node *dp)
21{
37b7754a 22 struct device *dev = bus_find_device(&of_platform_bus_type, NULL,
8f96cd1a
DM
23 dp, node_match);
24
25 if (dev)
26 return to_of_device(dev);
27
28 return NULL;
29}
30EXPORT_SYMBOL(of_find_device_by_node);
31
44266215
DM
32int irq_of_parse_and_map(struct device_node *node, int index)
33{
34 struct of_device *op = of_find_device_by_node(node);
35
36 if (!op || index >= op->num_irqs)
37 return 0xffffffff;
38
39 return op->irqs[index];
40}
41EXPORT_SYMBOL(irq_of_parse_and_map);
42
fd531431 43#ifdef CONFIG_PCI
3f23de10 44struct bus_type ebus_bus_type;
69853918 45EXPORT_SYMBOL(ebus_bus_type);
fd531431
DM
46#endif
47
48#ifdef CONFIG_SBUS
3f23de10 49struct bus_type sbus_bus_type;
69853918 50EXPORT_SYMBOL(sbus_bus_type);
fd531431
DM
51#endif
52
3f23de10 53struct bus_type of_platform_bus_type;
37b7754a 54EXPORT_SYMBOL(of_platform_bus_type);
cf44bbc2 55
a83f9823 56static inline u64 of_read_addr(const u32 *cell, int size)
cf44bbc2
DM
57{
58 u64 r = 0;
59 while (size--)
60 r = (r << 32) | *(cell++);
61 return r;
62}
63
64static void __init get_cells(struct device_node *dp,
65 int *addrc, int *sizec)
66{
67 if (addrc)
68 *addrc = of_n_addr_cells(dp);
69 if (sizec)
70 *sizec = of_n_size_cells(dp);
71}
72
73/* Max address size we deal with */
74#define OF_MAX_ADDR_CELLS 4
75
76struct of_bus {
77 const char *name;
78 const char *addr_prop_name;
79 int (*match)(struct device_node *parent);
80 void (*count_cells)(struct device_node *child,
81 int *addrc, int *sizec);
a83f9823
DM
82 int (*map)(u32 *addr, const u32 *range,
83 int na, int ns, int pna);
8271f042 84 unsigned int (*get_flags)(const u32 *addr);
cf44bbc2
DM
85};
86
87/*
88 * Default translator (generic bus)
89 */
90
91static void of_bus_default_count_cells(struct device_node *dev,
92 int *addrc, int *sizec)
93{
94 get_cells(dev, addrc, sizec);
95}
96
a83f9823
DM
97/* Make sure the least significant 64-bits are in-range. Even
98 * for 3 or 4 cell values it is a good enough approximation.
99 */
100static int of_out_of_range(const u32 *addr, const u32 *base,
101 const u32 *size, int na, int ns)
cf44bbc2 102{
a83f9823
DM
103 u64 a = of_read_addr(addr, na);
104 u64 b = of_read_addr(base, na);
105
106 if (a < b)
107 return 1;
cf44bbc2 108
a83f9823
DM
109 b += of_read_addr(size, ns);
110 if (a >= b)
111 return 1;
cf44bbc2 112
a83f9823 113 return 0;
cf44bbc2
DM
114}
115
a83f9823
DM
116static int of_bus_default_map(u32 *addr, const u32 *range,
117 int na, int ns, int pna)
cf44bbc2 118{
a83f9823
DM
119 u32 result[OF_MAX_ADDR_CELLS];
120 int i;
121
122 if (ns > 2) {
123 printk("of_device: Cannot handle size cells (%d) > 2.", ns);
124 return -EINVAL;
125 }
126
127 if (of_out_of_range(addr, range, range + na + pna, na, ns))
128 return -EINVAL;
129
130 /* Start with the parent range base. */
131 memcpy(result, range + na, pna * 4);
132
133 /* Add in the child address offset. */
134 for (i = 0; i < na; i++)
135 result[pna - 1 - i] +=
136 (addr[na - 1 - i] -
137 range[na - 1 - i]);
138
139 memcpy(addr, result, pna * 4);
cf44bbc2
DM
140
141 return 0;
142}
143
8271f042 144static unsigned int of_bus_default_get_flags(const u32 *addr)
cf44bbc2
DM
145{
146 return IORESOURCE_MEM;
147}
148
cf44bbc2
DM
149/*
150 * PCI bus specific translator
151 */
152
153static int of_bus_pci_match(struct device_node *np)
154{
a83f9823
DM
155 if (!strcmp(np->type, "pci") || !strcmp(np->type, "pciex")) {
156 /* Do not do PCI specific frobbing if the
157 * PCI bridge lacks a ranges property. We
158 * want to pass it through up to the next
159 * parent as-is, not with the PCI translate
160 * method which chops off the top address cell.
161 */
162 if (!of_find_property(np, "ranges", NULL))
163 return 0;
164
165 return 1;
166 }
167
168 return 0;
cf44bbc2
DM
169}
170
171static void of_bus_pci_count_cells(struct device_node *np,
172 int *addrc, int *sizec)
173{
174 if (addrc)
175 *addrc = 3;
176 if (sizec)
177 *sizec = 2;
178}
179
a83f9823
DM
180static int of_bus_pci_map(u32 *addr, const u32 *range,
181 int na, int ns, int pna)
cf44bbc2 182{
a83f9823
DM
183 u32 result[OF_MAX_ADDR_CELLS];
184 int i;
cf44bbc2
DM
185
186 /* Check address type match */
187 if ((addr[0] ^ range[0]) & 0x03000000)
a83f9823 188 return -EINVAL;
cf44bbc2 189
a83f9823
DM
190 if (of_out_of_range(addr + 1, range + 1, range + na + pna,
191 na - 1, ns))
192 return -EINVAL;
cf44bbc2 193
a83f9823
DM
194 /* Start with the parent range base. */
195 memcpy(result, range + na, pna * 4);
cf44bbc2 196
a83f9823
DM
197 /* Add in the child address offset, skipping high cell. */
198 for (i = 0; i < na - 1; i++)
199 result[pna - 1 - i] +=
200 (addr[na - 1 - i] -
201 range[na - 1 - i]);
202
203 memcpy(addr, result, pna * 4);
204
205 return 0;
cf44bbc2
DM
206}
207
8271f042 208static unsigned int of_bus_pci_get_flags(const u32 *addr)
cf44bbc2
DM
209{
210 unsigned int flags = 0;
211 u32 w = addr[0];
212
213 switch((w >> 24) & 0x03) {
214 case 0x01:
215 flags |= IORESOURCE_IO;
216 case 0x02: /* 32 bits */
217 case 0x03: /* 64 bits */
218 flags |= IORESOURCE_MEM;
219 }
220 if (w & 0x40000000)
221 flags |= IORESOURCE_PREFETCH;
222 return flags;
223}
224
225/*
226 * SBUS bus specific translator
227 */
228
229static int of_bus_sbus_match(struct device_node *np)
230{
231 return !strcmp(np->name, "sbus") ||
232 !strcmp(np->name, "sbi");
233}
234
235static void of_bus_sbus_count_cells(struct device_node *child,
236 int *addrc, int *sizec)
237{
238 if (addrc)
239 *addrc = 2;
240 if (sizec)
241 *sizec = 1;
242}
243
a83f9823 244static int of_bus_sbus_map(u32 *addr, const u32 *range, int na, int ns, int pna)
cf44bbc2
DM
245{
246 return of_bus_default_map(addr, range, na, ns, pna);
247}
248
8271f042 249static unsigned int of_bus_sbus_get_flags(const u32 *addr)
cf44bbc2
DM
250{
251 return IORESOURCE_MEM;
252}
253
254
255/*
256 * Array of bus specific translators
257 */
258
259static struct of_bus of_busses[] = {
260 /* PCI */
261 {
262 .name = "pci",
263 .addr_prop_name = "assigned-addresses",
264 .match = of_bus_pci_match,
265 .count_cells = of_bus_pci_count_cells,
266 .map = of_bus_pci_map,
cf44bbc2
DM
267 .get_flags = of_bus_pci_get_flags,
268 },
269 /* SBUS */
270 {
271 .name = "sbus",
272 .addr_prop_name = "reg",
273 .match = of_bus_sbus_match,
274 .count_cells = of_bus_sbus_count_cells,
275 .map = of_bus_sbus_map,
cf44bbc2
DM
276 .get_flags = of_bus_sbus_get_flags,
277 },
278 /* Default */
279 {
280 .name = "default",
281 .addr_prop_name = "reg",
282 .match = NULL,
283 .count_cells = of_bus_default_count_cells,
284 .map = of_bus_default_map,
cf44bbc2
DM
285 .get_flags = of_bus_default_get_flags,
286 },
287};
288
289static struct of_bus *of_match_bus(struct device_node *np)
290{
291 int i;
292
293 for (i = 0; i < ARRAY_SIZE(of_busses); i ++)
294 if (!of_busses[i].match || of_busses[i].match(np))
295 return &of_busses[i];
296 BUG();
297 return NULL;
298}
299
300static int __init build_one_resource(struct device_node *parent,
301 struct of_bus *bus,
302 struct of_bus *pbus,
303 u32 *addr,
304 int na, int ns, int pna)
305{
8271f042 306 const u32 *ranges;
cf44bbc2
DM
307 unsigned int rlen;
308 int rone;
cf44bbc2
DM
309
310 ranges = of_get_property(parent, "ranges", &rlen);
311 if (ranges == NULL || rlen == 0) {
a83f9823
DM
312 u32 result[OF_MAX_ADDR_CELLS];
313 int i;
314
315 memset(result, 0, pna * 4);
316 for (i = 0; i < na; i++)
317 result[pna - 1 - i] =
318 addr[na - 1 - i];
319
320 memcpy(addr, result, pna * 4);
321 return 0;
cf44bbc2
DM
322 }
323
324 /* Now walk through the ranges */
325 rlen /= 4;
326 rone = na + pna + ns;
327 for (; rlen >= rone; rlen -= rone, ranges += rone) {
a83f9823
DM
328 if (!bus->map(addr, ranges, na, ns, pna))
329 return 0;
cf44bbc2 330 }
cf44bbc2 331
a83f9823 332 return 1;
cf44bbc2
DM
333}
334
a83f9823
DM
335static int of_resource_verbose;
336
cf44bbc2
DM
337static void __init build_device_resources(struct of_device *op,
338 struct device *parent)
339{
340 struct of_device *p_op;
341 struct of_bus *bus;
342 int na, ns;
343 int index, num_reg;
8271f042 344 const void *preg;
cf44bbc2
DM
345
346 if (!parent)
347 return;
348
349 p_op = to_of_device(parent);
350 bus = of_match_bus(p_op->node);
351 bus->count_cells(op->node, &na, &ns);
352
353 preg = of_get_property(op->node, bus->addr_prop_name, &num_reg);
354 if (!preg || num_reg == 0)
355 return;
356
357 /* Convert to num-cells. */
358 num_reg /= 4;
359
360 /* Conver to num-entries. */
361 num_reg /= na + ns;
362
363 for (index = 0; index < num_reg; index++) {
364 struct resource *r = &op->resource[index];
365 u32 addr[OF_MAX_ADDR_CELLS];
8271f042 366 const u32 *reg = (preg + (index * ((na + ns) * 4)));
cf44bbc2
DM
367 struct device_node *dp = op->node;
368 struct device_node *pp = p_op->node;
b85cdd49 369 struct of_bus *pbus, *dbus;
cf44bbc2
DM
370 u64 size, result = OF_BAD_ADDR;
371 unsigned long flags;
372 int dna, dns;
373 int pna, pns;
374
375 size = of_read_addr(reg + na, ns);
376 flags = bus->get_flags(reg);
377
378 memcpy(addr, reg, na * 4);
379
380 /* If the immediate parent has no ranges property to apply,
381 * just use a 1<->1 mapping.
382 */
383 if (of_find_property(pp, "ranges", NULL) == NULL) {
384 result = of_read_addr(addr, na);
385 goto build_res;
386 }
387
388 dna = na;
389 dns = ns;
b85cdd49 390 dbus = bus;
cf44bbc2
DM
391
392 while (1) {
393 dp = pp;
394 pp = dp->parent;
395 if (!pp) {
396 result = of_read_addr(addr, dna);
397 break;
398 }
399
400 pbus = of_match_bus(pp);
401 pbus->count_cells(dp, &pna, &pns);
402
b85cdd49 403 if (build_one_resource(dp, dbus, pbus, addr,
a83f9823 404 dna, dns, pna))
cf44bbc2
DM
405 break;
406
407 dna = pna;
408 dns = pns;
b85cdd49 409 dbus = pbus;
cf44bbc2
DM
410 }
411
412 build_res:
413 memset(r, 0, sizeof(*r));
a83f9823
DM
414
415 if (of_resource_verbose)
416 printk("%s reg[%d] -> %llx\n",
417 op->node->full_name, index,
418 result);
419
cf44bbc2 420 if (result != OF_BAD_ADDR) {
95714e12 421 r->start = result & 0xffffffff;
cf44bbc2 422 r->end = result + size - 1;
95714e12 423 r->flags = flags | ((result >> 32ULL) & 0xffUL);
cf44bbc2
DM
424 }
425 r->name = op->node->name;
426 }
427}
428
429static struct of_device * __init scan_one_device(struct device_node *dp,
430 struct device *parent)
431{
432 struct of_device *op = kzalloc(sizeof(*op), GFP_KERNEL);
8271f042 433 const struct linux_prom_irqs *intr;
3d6e4702 434 struct dev_archdata *sd;
8f96cd1a 435 int len, i;
cf44bbc2
DM
436
437 if (!op)
438 return NULL;
439
3d6e4702
DM
440 sd = &op->dev.archdata;
441 sd->prom_node = dp;
442 sd->op = op;
443
cf44bbc2
DM
444 op->node = dp;
445
446 op->clock_freq = of_getintprop_default(dp, "clock-frequency",
447 (25*1000*1000));
448 op->portid = of_getintprop_default(dp, "upa-portid", -1);
449 if (op->portid == -1)
450 op->portid = of_getintprop_default(dp, "portid", -1);
451
8f96cd1a
DM
452 intr = of_get_property(dp, "intr", &len);
453 if (intr) {
454 op->num_irqs = len / sizeof(struct linux_prom_irqs);
455 for (i = 0; i < op->num_irqs; i++)
456 op->irqs[i] = intr[i].pri;
457 } else {
8271f042
SR
458 const unsigned int *irq =
459 of_get_property(dp, "interrupts", &len);
8f96cd1a
DM
460
461 if (irq) {
462 op->num_irqs = len / sizeof(unsigned int);
463 for (i = 0; i < op->num_irqs; i++)
464 op->irqs[i] = irq[i];
465 } else {
466 op->num_irqs = 0;
467 }
468 }
469 if (sparc_cpu_model == sun4d) {
470 static int pil_to_sbus[] = {
471 0, 0, 1, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 0,
472 };
9d7ab1f4 473 struct device_node *io_unit, *sbi = dp->parent;
8271f042 474 const struct linux_prom_registers *regs;
9d7ab1f4
DM
475 int board, slot;
476
477 while (sbi) {
478 if (!strcmp(sbi->name, "sbi"))
479 break;
480
481 sbi = sbi->parent;
482 }
483 if (!sbi)
484 goto build_resources;
8f96cd1a
DM
485
486 regs = of_get_property(dp, "reg", NULL);
9d7ab1f4
DM
487 if (!regs)
488 goto build_resources;
489
8f96cd1a
DM
490 slot = regs->which_io;
491
9d7ab1f4
DM
492 /* If SBI's parent is not io-unit or the io-unit lacks
493 * a "board#" property, something is very wrong.
494 */
495 if (!sbi->parent || strcmp(sbi->parent->name, "io-unit")) {
496 printk("%s: Error, parent is not io-unit.\n",
497 sbi->full_name);
498 goto build_resources;
499 }
500 io_unit = sbi->parent;
501 board = of_getintprop_default(io_unit, "board#", -1);
502 if (board == -1) {
503 printk("%s: Error, lacks board# property.\n",
504 io_unit->full_name);
505 goto build_resources;
506 }
507
8f96cd1a
DM
508 for (i = 0; i < op->num_irqs; i++) {
509 int this_irq = op->irqs[i];
510 int sbusl = pil_to_sbus[this_irq];
511
512 if (sbusl)
513 this_irq = (((board + 1) << 5) +
514 (sbusl << 2) +
515 slot);
516
517 op->irqs[i] = this_irq;
518 }
519 }
cf44bbc2 520
9d7ab1f4 521build_resources:
cf44bbc2
DM
522 build_device_resources(op, parent);
523
524 op->dev.parent = parent;
37b7754a 525 op->dev.bus = &of_platform_bus_type;
cf44bbc2
DM
526 if (!parent)
527 strcpy(op->dev.bus_id, "root");
528 else
f5ef9d11 529 sprintf(op->dev.bus_id, "%08x", dp->node);
cf44bbc2
DM
530
531 if (of_device_register(op)) {
532 printk("%s: Could not register of device.\n",
533 dp->full_name);
534 kfree(op);
535 op = NULL;
536 }
537
538 return op;
539}
540
541static void __init scan_tree(struct device_node *dp, struct device *parent)
542{
543 while (dp) {
544 struct of_device *op = scan_one_device(dp, parent);
545
546 if (op)
547 scan_tree(dp->child, &op->dev);
548
549 dp = dp->sibling;
550 }
551}
552
553static void __init scan_of_devices(void)
554{
555 struct device_node *root = of_find_node_by_path("/");
556 struct of_device *parent;
557
558 parent = scan_one_device(root, NULL);
559 if (!parent)
560 return;
561
562 scan_tree(root->child, &parent->dev);
563}
564
fd531431
DM
565static int __init of_bus_driver_init(void)
566{
cf44bbc2 567 int err;
fd531431 568
3f23de10 569 err = of_bus_type_init(&of_platform_bus_type, "of");
fd531431
DM
570#ifdef CONFIG_PCI
571 if (!err)
3f23de10 572 err = of_bus_type_init(&ebus_bus_type, "ebus");
fd531431
DM
573#endif
574#ifdef CONFIG_SBUS
575 if (!err)
3f23de10 576 err = of_bus_type_init(&sbus_bus_type, "sbus");
fd531431 577#endif
cf44bbc2
DM
578
579 if (!err)
580 scan_of_devices();
581
582 return err;
fd531431
DM
583}
584
585postcore_initcall(of_bus_driver_init);
586
a83f9823
DM
587static int __init of_debug(char *str)
588{
589 int val = 0;
590
591 get_option(&str, &val);
592 if (val & 1)
593 of_resource_verbose = 1;
594 return 1;
595}
596
597__setup("of_debug=", of_debug);
This page took 0.257627 seconds and 5 git commands to generate.