Consolidate of_find_node_by routines
[deliverable/linux.git] / arch / sparc / kernel / of_device.c
CommitLineData
fd531431
DM
1#include <linux/string.h>
2#include <linux/kernel.h>
3#include <linux/init.h>
4#include <linux/module.h>
5#include <linux/mod_devicetable.h>
6#include <linux/slab.h>
7
8#include <asm/errno.h>
9#include <asm/of_device.h>
10
11/**
12 * of_match_device - Tell if an of_device structure has a matching
13 * of_match structure
14 * @ids: array of of device match structures to search in
15 * @dev: the of device structure to match against
16 *
17 * Used by a driver to check whether an of_device present in the
18 * system is in its list of supported devices.
19 */
20const struct of_device_id *of_match_device(const struct of_device_id *matches,
21 const struct of_device *dev)
22{
23 if (!dev->node)
24 return NULL;
25 while (matches->name[0] || matches->type[0] || matches->compatible[0]) {
26 int match = 1;
27 if (matches->name[0])
28 match &= dev->node->name
29 && !strcmp(matches->name, dev->node->name);
30 if (matches->type[0])
31 match &= dev->node->type
32 && !strcmp(matches->type, dev->node->type);
33 if (matches->compatible[0])
34 match &= of_device_is_compatible(dev->node,
35 matches->compatible);
36 if (match)
37 return matches;
38 matches++;
39 }
40 return NULL;
41}
42
43static int of_platform_bus_match(struct device *dev, struct device_driver *drv)
44{
45 struct of_device * of_dev = to_of_device(dev);
46 struct of_platform_driver * of_drv = to_of_platform_driver(drv);
47 const struct of_device_id * matches = of_drv->match_table;
48
49 if (!matches)
50 return 0;
51
52 return of_match_device(matches, of_dev) != NULL;
53}
54
55struct of_device *of_dev_get(struct of_device *dev)
56{
57 struct device *tmp;
58
59 if (!dev)
60 return NULL;
61 tmp = get_device(&dev->dev);
62 if (tmp)
63 return to_of_device(tmp);
64 else
65 return NULL;
66}
67
68void of_dev_put(struct of_device *dev)
69{
70 if (dev)
71 put_device(&dev->dev);
72}
73
74
75static int of_device_probe(struct device *dev)
76{
77 int error = -ENODEV;
78 struct of_platform_driver *drv;
79 struct of_device *of_dev;
80 const struct of_device_id *match;
81
82 drv = to_of_platform_driver(dev->driver);
83 of_dev = to_of_device(dev);
84
85 if (!drv->probe)
86 return error;
87
88 of_dev_get(of_dev);
89
90 match = of_match_device(drv->match_table, of_dev);
91 if (match)
92 error = drv->probe(of_dev, match);
93 if (error)
94 of_dev_put(of_dev);
95
96 return error;
97}
98
99static int of_device_remove(struct device *dev)
100{
101 struct of_device * of_dev = to_of_device(dev);
102 struct of_platform_driver * drv = to_of_platform_driver(dev->driver);
103
104 if (dev->driver && drv->remove)
105 drv->remove(of_dev);
106 return 0;
107}
108
109static int of_device_suspend(struct device *dev, pm_message_t state)
110{
111 struct of_device * of_dev = to_of_device(dev);
112 struct of_platform_driver * drv = to_of_platform_driver(dev->driver);
113 int error = 0;
114
115 if (dev->driver && drv->suspend)
116 error = drv->suspend(of_dev, state);
117 return error;
118}
119
120static int of_device_resume(struct device * dev)
121{
122 struct of_device * of_dev = to_of_device(dev);
123 struct of_platform_driver * drv = to_of_platform_driver(dev->driver);
124 int error = 0;
125
126 if (dev->driver && drv->resume)
127 error = drv->resume(of_dev);
128 return error;
129}
130
8f96cd1a
DM
131static int node_match(struct device *dev, void *data)
132{
133 struct of_device *op = to_of_device(dev);
134 struct device_node *dp = data;
135
136 return (op->node == dp);
137}
138
139struct of_device *of_find_device_by_node(struct device_node *dp)
140{
141 struct device *dev = bus_find_device(&of_bus_type, NULL,
142 dp, node_match);
143
144 if (dev)
145 return to_of_device(dev);
146
147 return NULL;
148}
149EXPORT_SYMBOL(of_find_device_by_node);
150
fd531431
DM
151#ifdef CONFIG_PCI
152struct bus_type ebus_bus_type = {
153 .name = "ebus",
154 .match = of_platform_bus_match,
155 .probe = of_device_probe,
156 .remove = of_device_remove,
157 .suspend = of_device_suspend,
158 .resume = of_device_resume,
159};
69853918 160EXPORT_SYMBOL(ebus_bus_type);
fd531431
DM
161#endif
162
163#ifdef CONFIG_SBUS
164struct bus_type sbus_bus_type = {
165 .name = "sbus",
166 .match = of_platform_bus_match,
167 .probe = of_device_probe,
168 .remove = of_device_remove,
169 .suspend = of_device_suspend,
170 .resume = of_device_resume,
171};
69853918 172EXPORT_SYMBOL(sbus_bus_type);
fd531431
DM
173#endif
174
cf44bbc2
DM
175struct bus_type of_bus_type = {
176 .name = "of",
177 .match = of_platform_bus_match,
178 .probe = of_device_probe,
179 .remove = of_device_remove,
180 .suspend = of_device_suspend,
181 .resume = of_device_resume,
182};
183EXPORT_SYMBOL(of_bus_type);
184
a83f9823 185static inline u64 of_read_addr(const u32 *cell, int size)
cf44bbc2
DM
186{
187 u64 r = 0;
188 while (size--)
189 r = (r << 32) | *(cell++);
190 return r;
191}
192
193static void __init get_cells(struct device_node *dp,
194 int *addrc, int *sizec)
195{
196 if (addrc)
197 *addrc = of_n_addr_cells(dp);
198 if (sizec)
199 *sizec = of_n_size_cells(dp);
200}
201
202/* Max address size we deal with */
203#define OF_MAX_ADDR_CELLS 4
204
205struct of_bus {
206 const char *name;
207 const char *addr_prop_name;
208 int (*match)(struct device_node *parent);
209 void (*count_cells)(struct device_node *child,
210 int *addrc, int *sizec);
a83f9823
DM
211 int (*map)(u32 *addr, const u32 *range,
212 int na, int ns, int pna);
8271f042 213 unsigned int (*get_flags)(const u32 *addr);
cf44bbc2
DM
214};
215
216/*
217 * Default translator (generic bus)
218 */
219
220static void of_bus_default_count_cells(struct device_node *dev,
221 int *addrc, int *sizec)
222{
223 get_cells(dev, addrc, sizec);
224}
225
a83f9823
DM
226/* Make sure the least significant 64-bits are in-range. Even
227 * for 3 or 4 cell values it is a good enough approximation.
228 */
229static int of_out_of_range(const u32 *addr, const u32 *base,
230 const u32 *size, int na, int ns)
cf44bbc2 231{
a83f9823
DM
232 u64 a = of_read_addr(addr, na);
233 u64 b = of_read_addr(base, na);
234
235 if (a < b)
236 return 1;
cf44bbc2 237
a83f9823
DM
238 b += of_read_addr(size, ns);
239 if (a >= b)
240 return 1;
cf44bbc2 241
a83f9823 242 return 0;
cf44bbc2
DM
243}
244
a83f9823
DM
245static int of_bus_default_map(u32 *addr, const u32 *range,
246 int na, int ns, int pna)
cf44bbc2 247{
a83f9823
DM
248 u32 result[OF_MAX_ADDR_CELLS];
249 int i;
250
251 if (ns > 2) {
252 printk("of_device: Cannot handle size cells (%d) > 2.", ns);
253 return -EINVAL;
254 }
255
256 if (of_out_of_range(addr, range, range + na + pna, na, ns))
257 return -EINVAL;
258
259 /* Start with the parent range base. */
260 memcpy(result, range + na, pna * 4);
261
262 /* Add in the child address offset. */
263 for (i = 0; i < na; i++)
264 result[pna - 1 - i] +=
265 (addr[na - 1 - i] -
266 range[na - 1 - i]);
267
268 memcpy(addr, result, pna * 4);
cf44bbc2
DM
269
270 return 0;
271}
272
8271f042 273static unsigned int of_bus_default_get_flags(const u32 *addr)
cf44bbc2
DM
274{
275 return IORESOURCE_MEM;
276}
277
cf44bbc2
DM
278/*
279 * PCI bus specific translator
280 */
281
282static int of_bus_pci_match(struct device_node *np)
283{
a83f9823
DM
284 if (!strcmp(np->type, "pci") || !strcmp(np->type, "pciex")) {
285 /* Do not do PCI specific frobbing if the
286 * PCI bridge lacks a ranges property. We
287 * want to pass it through up to the next
288 * parent as-is, not with the PCI translate
289 * method which chops off the top address cell.
290 */
291 if (!of_find_property(np, "ranges", NULL))
292 return 0;
293
294 return 1;
295 }
296
297 return 0;
cf44bbc2
DM
298}
299
300static void of_bus_pci_count_cells(struct device_node *np,
301 int *addrc, int *sizec)
302{
303 if (addrc)
304 *addrc = 3;
305 if (sizec)
306 *sizec = 2;
307}
308
a83f9823
DM
309static int of_bus_pci_map(u32 *addr, const u32 *range,
310 int na, int ns, int pna)
cf44bbc2 311{
a83f9823
DM
312 u32 result[OF_MAX_ADDR_CELLS];
313 int i;
cf44bbc2
DM
314
315 /* Check address type match */
316 if ((addr[0] ^ range[0]) & 0x03000000)
a83f9823 317 return -EINVAL;
cf44bbc2 318
a83f9823
DM
319 if (of_out_of_range(addr + 1, range + 1, range + na + pna,
320 na - 1, ns))
321 return -EINVAL;
cf44bbc2 322
a83f9823
DM
323 /* Start with the parent range base. */
324 memcpy(result, range + na, pna * 4);
cf44bbc2 325
a83f9823
DM
326 /* Add in the child address offset, skipping high cell. */
327 for (i = 0; i < na - 1; i++)
328 result[pna - 1 - i] +=
329 (addr[na - 1 - i] -
330 range[na - 1 - i]);
331
332 memcpy(addr, result, pna * 4);
333
334 return 0;
cf44bbc2
DM
335}
336
8271f042 337static unsigned int of_bus_pci_get_flags(const u32 *addr)
cf44bbc2
DM
338{
339 unsigned int flags = 0;
340 u32 w = addr[0];
341
342 switch((w >> 24) & 0x03) {
343 case 0x01:
344 flags |= IORESOURCE_IO;
345 case 0x02: /* 32 bits */
346 case 0x03: /* 64 bits */
347 flags |= IORESOURCE_MEM;
348 }
349 if (w & 0x40000000)
350 flags |= IORESOURCE_PREFETCH;
351 return flags;
352}
353
354/*
355 * SBUS bus specific translator
356 */
357
358static int of_bus_sbus_match(struct device_node *np)
359{
360 return !strcmp(np->name, "sbus") ||
361 !strcmp(np->name, "sbi");
362}
363
364static void of_bus_sbus_count_cells(struct device_node *child,
365 int *addrc, int *sizec)
366{
367 if (addrc)
368 *addrc = 2;
369 if (sizec)
370 *sizec = 1;
371}
372
a83f9823 373static int of_bus_sbus_map(u32 *addr, const u32 *range, int na, int ns, int pna)
cf44bbc2
DM
374{
375 return of_bus_default_map(addr, range, na, ns, pna);
376}
377
8271f042 378static unsigned int of_bus_sbus_get_flags(const u32 *addr)
cf44bbc2
DM
379{
380 return IORESOURCE_MEM;
381}
382
383
384/*
385 * Array of bus specific translators
386 */
387
388static struct of_bus of_busses[] = {
389 /* PCI */
390 {
391 .name = "pci",
392 .addr_prop_name = "assigned-addresses",
393 .match = of_bus_pci_match,
394 .count_cells = of_bus_pci_count_cells,
395 .map = of_bus_pci_map,
cf44bbc2
DM
396 .get_flags = of_bus_pci_get_flags,
397 },
398 /* SBUS */
399 {
400 .name = "sbus",
401 .addr_prop_name = "reg",
402 .match = of_bus_sbus_match,
403 .count_cells = of_bus_sbus_count_cells,
404 .map = of_bus_sbus_map,
cf44bbc2
DM
405 .get_flags = of_bus_sbus_get_flags,
406 },
407 /* Default */
408 {
409 .name = "default",
410 .addr_prop_name = "reg",
411 .match = NULL,
412 .count_cells = of_bus_default_count_cells,
413 .map = of_bus_default_map,
cf44bbc2
DM
414 .get_flags = of_bus_default_get_flags,
415 },
416};
417
418static struct of_bus *of_match_bus(struct device_node *np)
419{
420 int i;
421
422 for (i = 0; i < ARRAY_SIZE(of_busses); i ++)
423 if (!of_busses[i].match || of_busses[i].match(np))
424 return &of_busses[i];
425 BUG();
426 return NULL;
427}
428
429static int __init build_one_resource(struct device_node *parent,
430 struct of_bus *bus,
431 struct of_bus *pbus,
432 u32 *addr,
433 int na, int ns, int pna)
434{
8271f042 435 const u32 *ranges;
cf44bbc2
DM
436 unsigned int rlen;
437 int rone;
cf44bbc2
DM
438
439 ranges = of_get_property(parent, "ranges", &rlen);
440 if (ranges == NULL || rlen == 0) {
a83f9823
DM
441 u32 result[OF_MAX_ADDR_CELLS];
442 int i;
443
444 memset(result, 0, pna * 4);
445 for (i = 0; i < na; i++)
446 result[pna - 1 - i] =
447 addr[na - 1 - i];
448
449 memcpy(addr, result, pna * 4);
450 return 0;
cf44bbc2
DM
451 }
452
453 /* Now walk through the ranges */
454 rlen /= 4;
455 rone = na + pna + ns;
456 for (; rlen >= rone; rlen -= rone, ranges += rone) {
a83f9823
DM
457 if (!bus->map(addr, ranges, na, ns, pna))
458 return 0;
cf44bbc2 459 }
cf44bbc2 460
a83f9823 461 return 1;
cf44bbc2
DM
462}
463
a83f9823
DM
464static int of_resource_verbose;
465
cf44bbc2
DM
466static void __init build_device_resources(struct of_device *op,
467 struct device *parent)
468{
469 struct of_device *p_op;
470 struct of_bus *bus;
471 int na, ns;
472 int index, num_reg;
8271f042 473 const void *preg;
cf44bbc2
DM
474
475 if (!parent)
476 return;
477
478 p_op = to_of_device(parent);
479 bus = of_match_bus(p_op->node);
480 bus->count_cells(op->node, &na, &ns);
481
482 preg = of_get_property(op->node, bus->addr_prop_name, &num_reg);
483 if (!preg || num_reg == 0)
484 return;
485
486 /* Convert to num-cells. */
487 num_reg /= 4;
488
489 /* Conver to num-entries. */
490 num_reg /= na + ns;
491
492 for (index = 0; index < num_reg; index++) {
493 struct resource *r = &op->resource[index];
494 u32 addr[OF_MAX_ADDR_CELLS];
8271f042 495 const u32 *reg = (preg + (index * ((na + ns) * 4)));
cf44bbc2
DM
496 struct device_node *dp = op->node;
497 struct device_node *pp = p_op->node;
b85cdd49 498 struct of_bus *pbus, *dbus;
cf44bbc2
DM
499 u64 size, result = OF_BAD_ADDR;
500 unsigned long flags;
501 int dna, dns;
502 int pna, pns;
503
504 size = of_read_addr(reg + na, ns);
505 flags = bus->get_flags(reg);
506
507 memcpy(addr, reg, na * 4);
508
509 /* If the immediate parent has no ranges property to apply,
510 * just use a 1<->1 mapping.
511 */
512 if (of_find_property(pp, "ranges", NULL) == NULL) {
513 result = of_read_addr(addr, na);
514 goto build_res;
515 }
516
517 dna = na;
518 dns = ns;
b85cdd49 519 dbus = bus;
cf44bbc2
DM
520
521 while (1) {
522 dp = pp;
523 pp = dp->parent;
524 if (!pp) {
525 result = of_read_addr(addr, dna);
526 break;
527 }
528
529 pbus = of_match_bus(pp);
530 pbus->count_cells(dp, &pna, &pns);
531
b85cdd49 532 if (build_one_resource(dp, dbus, pbus, addr,
a83f9823 533 dna, dns, pna))
cf44bbc2
DM
534 break;
535
536 dna = pna;
537 dns = pns;
b85cdd49 538 dbus = pbus;
cf44bbc2
DM
539 }
540
541 build_res:
542 memset(r, 0, sizeof(*r));
a83f9823
DM
543
544 if (of_resource_verbose)
545 printk("%s reg[%d] -> %llx\n",
546 op->node->full_name, index,
547 result);
548
cf44bbc2 549 if (result != OF_BAD_ADDR) {
95714e12 550 r->start = result & 0xffffffff;
cf44bbc2 551 r->end = result + size - 1;
95714e12 552 r->flags = flags | ((result >> 32ULL) & 0xffUL);
cf44bbc2
DM
553 }
554 r->name = op->node->name;
555 }
556}
557
558static struct of_device * __init scan_one_device(struct device_node *dp,
559 struct device *parent)
560{
561 struct of_device *op = kzalloc(sizeof(*op), GFP_KERNEL);
8271f042 562 const struct linux_prom_irqs *intr;
8f96cd1a 563 int len, i;
cf44bbc2
DM
564
565 if (!op)
566 return NULL;
567
568 op->node = dp;
569
570 op->clock_freq = of_getintprop_default(dp, "clock-frequency",
571 (25*1000*1000));
572 op->portid = of_getintprop_default(dp, "upa-portid", -1);
573 if (op->portid == -1)
574 op->portid = of_getintprop_default(dp, "portid", -1);
575
8f96cd1a
DM
576 intr = of_get_property(dp, "intr", &len);
577 if (intr) {
578 op->num_irqs = len / sizeof(struct linux_prom_irqs);
579 for (i = 0; i < op->num_irqs; i++)
580 op->irqs[i] = intr[i].pri;
581 } else {
8271f042
SR
582 const unsigned int *irq =
583 of_get_property(dp, "interrupts", &len);
8f96cd1a
DM
584
585 if (irq) {
586 op->num_irqs = len / sizeof(unsigned int);
587 for (i = 0; i < op->num_irqs; i++)
588 op->irqs[i] = irq[i];
589 } else {
590 op->num_irqs = 0;
591 }
592 }
593 if (sparc_cpu_model == sun4d) {
594 static int pil_to_sbus[] = {
595 0, 0, 1, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 0,
596 };
9d7ab1f4 597 struct device_node *io_unit, *sbi = dp->parent;
8271f042 598 const struct linux_prom_registers *regs;
9d7ab1f4
DM
599 int board, slot;
600
601 while (sbi) {
602 if (!strcmp(sbi->name, "sbi"))
603 break;
604
605 sbi = sbi->parent;
606 }
607 if (!sbi)
608 goto build_resources;
8f96cd1a
DM
609
610 regs = of_get_property(dp, "reg", NULL);
9d7ab1f4
DM
611 if (!regs)
612 goto build_resources;
613
8f96cd1a
DM
614 slot = regs->which_io;
615
9d7ab1f4
DM
616 /* If SBI's parent is not io-unit or the io-unit lacks
617 * a "board#" property, something is very wrong.
618 */
619 if (!sbi->parent || strcmp(sbi->parent->name, "io-unit")) {
620 printk("%s: Error, parent is not io-unit.\n",
621 sbi->full_name);
622 goto build_resources;
623 }
624 io_unit = sbi->parent;
625 board = of_getintprop_default(io_unit, "board#", -1);
626 if (board == -1) {
627 printk("%s: Error, lacks board# property.\n",
628 io_unit->full_name);
629 goto build_resources;
630 }
631
8f96cd1a
DM
632 for (i = 0; i < op->num_irqs; i++) {
633 int this_irq = op->irqs[i];
634 int sbusl = pil_to_sbus[this_irq];
635
636 if (sbusl)
637 this_irq = (((board + 1) << 5) +
638 (sbusl << 2) +
639 slot);
640
641 op->irqs[i] = this_irq;
642 }
643 }
cf44bbc2 644
9d7ab1f4 645build_resources:
cf44bbc2
DM
646 build_device_resources(op, parent);
647
648 op->dev.parent = parent;
649 op->dev.bus = &of_bus_type;
650 if (!parent)
651 strcpy(op->dev.bus_id, "root");
652 else
f5ef9d11 653 sprintf(op->dev.bus_id, "%08x", dp->node);
cf44bbc2
DM
654
655 if (of_device_register(op)) {
656 printk("%s: Could not register of device.\n",
657 dp->full_name);
658 kfree(op);
659 op = NULL;
660 }
661
662 return op;
663}
664
665static void __init scan_tree(struct device_node *dp, struct device *parent)
666{
667 while (dp) {
668 struct of_device *op = scan_one_device(dp, parent);
669
670 if (op)
671 scan_tree(dp->child, &op->dev);
672
673 dp = dp->sibling;
674 }
675}
676
677static void __init scan_of_devices(void)
678{
679 struct device_node *root = of_find_node_by_path("/");
680 struct of_device *parent;
681
682 parent = scan_one_device(root, NULL);
683 if (!parent)
684 return;
685
686 scan_tree(root->child, &parent->dev);
687}
688
fd531431
DM
689static int __init of_bus_driver_init(void)
690{
cf44bbc2 691 int err;
fd531431 692
cf44bbc2 693 err = bus_register(&of_bus_type);
fd531431
DM
694#ifdef CONFIG_PCI
695 if (!err)
696 err = bus_register(&ebus_bus_type);
697#endif
698#ifdef CONFIG_SBUS
699 if (!err)
700 err = bus_register(&sbus_bus_type);
701#endif
cf44bbc2
DM
702
703 if (!err)
704 scan_of_devices();
705
706 return err;
fd531431
DM
707}
708
709postcore_initcall(of_bus_driver_init);
710
a83f9823
DM
711static int __init of_debug(char *str)
712{
713 int val = 0;
714
715 get_option(&str, &val);
716 if (val & 1)
717 of_resource_verbose = 1;
718 return 1;
719}
720
721__setup("of_debug=", of_debug);
722
fd531431
DM
723int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus)
724{
725 /* initialize common driver fields */
726 drv->driver.name = drv->name;
727 drv->driver.bus = bus;
728
729 /* register with core */
730 return driver_register(&drv->driver);
731}
732
733void of_unregister_driver(struct of_platform_driver *drv)
734{
735 driver_unregister(&drv->driver);
736}
737
738
739static ssize_t dev_show_devspec(struct device *dev, struct device_attribute *attr, char *buf)
740{
741 struct of_device *ofdev;
742
743 ofdev = to_of_device(dev);
744 return sprintf(buf, "%s", ofdev->node->full_name);
745}
746
747static DEVICE_ATTR(devspec, S_IRUGO, dev_show_devspec, NULL);
748
749/**
750 * of_release_dev - free an of device structure when all users of it are finished.
751 * @dev: device that's been disconnected
752 *
753 * Will be called only by the device core when all users of this of device are
754 * done.
755 */
756void of_release_dev(struct device *dev)
757{
758 struct of_device *ofdev;
759
760 ofdev = to_of_device(dev);
761
762 kfree(ofdev);
763}
764
765int of_device_register(struct of_device *ofdev)
766{
767 int rc;
768
769 BUG_ON(ofdev->node == NULL);
770
771 rc = device_register(&ofdev->dev);
772 if (rc)
773 return rc;
774
6cc8b6f5
AM
775 rc = device_create_file(&ofdev->dev, &dev_attr_devspec);
776 if (rc)
777 device_unregister(&ofdev->dev);
fd531431 778
6cc8b6f5 779 return rc;
fd531431
DM
780}
781
782void of_device_unregister(struct of_device *ofdev)
783{
784 device_remove_file(&ofdev->dev, &dev_attr_devspec);
785 device_unregister(&ofdev->dev);
786}
787
788struct of_device* of_platform_device_create(struct device_node *np,
789 const char *bus_id,
790 struct device *parent,
791 struct bus_type *bus)
792{
793 struct of_device *dev;
794
c80892d1 795 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
fd531431
DM
796 if (!dev)
797 return NULL;
fd531431
DM
798
799 dev->dev.parent = parent;
800 dev->dev.bus = bus;
801 dev->dev.release = of_release_dev;
802
803 strlcpy(dev->dev.bus_id, bus_id, BUS_ID_SIZE);
804
805 if (of_device_register(dev) != 0) {
806 kfree(dev);
807 return NULL;
808 }
809
810 return dev;
811}
812
813EXPORT_SYMBOL(of_match_device);
814EXPORT_SYMBOL(of_register_driver);
815EXPORT_SYMBOL(of_unregister_driver);
816EXPORT_SYMBOL(of_device_register);
817EXPORT_SYMBOL(of_device_unregister);
818EXPORT_SYMBOL(of_dev_get);
819EXPORT_SYMBOL(of_dev_put);
820EXPORT_SYMBOL(of_platform_device_create);
821EXPORT_SYMBOL(of_release_dev);
This page took 0.172078 seconds and 5 git commands to generate.