blob: 033a224a9fdaf8429d6a181776cceb4b43772ae3 [file] [log] [blame]
Stephen Rothwell3f23de12007-05-03 02:38:57 +10001/*
2 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
3 * <benh@kernel.crashing.org>
4 * and Arnd Bergmann, IBM Corp.
5 * Merged from powerpc/kernel/of_platform.c and
6 * sparc{,64}/kernel/of_device.c by Stephen Rothwell
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 *
13 */
14#include <linux/errno.h>
Stephen Rothwell5c457082007-10-17 21:17:42 -070015#include <linux/module.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100016#include <linux/device.h>
Grant Likely5fd200f2010-06-08 07:48:13 -060017#include <linux/dma-mapping.h>
Grant Likely50ef5282010-06-08 07:48:20 -060018#include <linux/slab.h>
Grant Likely9e3288d2010-06-08 07:48:26 -060019#include <linux/of_address.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100020#include <linux/of_device.h>
Grant Likely9e3288d2010-06-08 07:48:26 -060021#include <linux/of_irq.h>
Stephen Rothwell3f23de12007-05-03 02:38:57 +100022#include <linux/of_platform.h>
Grant Likelyeca39302010-06-08 07:48:21 -060023#include <linux/platform_device.h>
24
Jonas Bonnc6085582010-07-23 19:19:35 +020025static int of_dev_node_match(struct device *dev, void *data)
26{
27 return dev->of_node == data;
28}
29
30/**
31 * of_find_device_by_node - Find the platform_device associated with a node
32 * @np: Pointer to device tree node
33 *
34 * Returns platform_device pointer, or NULL if not found
35 */
36struct platform_device *of_find_device_by_node(struct device_node *np)
37{
38 struct device *dev;
39
40 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
41 return dev ? to_platform_device(dev) : NULL;
42}
43EXPORT_SYMBOL(of_find_device_by_node);
44
Grant Likelyeca39302010-06-08 07:48:21 -060045static int platform_driver_probe_shim(struct platform_device *pdev)
46{
47 struct platform_driver *pdrv;
48 struct of_platform_driver *ofpdrv;
49 const struct of_device_id *match;
50
51 pdrv = container_of(pdev->dev.driver, struct platform_driver, driver);
52 ofpdrv = container_of(pdrv, struct of_platform_driver, platform_driver);
Grant Likelyc1b6d382010-07-22 10:36:28 -060053
54 /* There is an unlikely chance that an of_platform driver might match
55 * on a non-OF platform device. If so, then of_match_device() will
56 * come up empty. Return -EINVAL in this case so other drivers get
57 * the chance to bind. */
Grant Likelyeca39302010-06-08 07:48:21 -060058 match = of_match_device(pdev->dev.driver->of_match_table, &pdev->dev);
Grant Likelyc1b6d382010-07-22 10:36:28 -060059 return match ? ofpdrv->probe(pdev, match) : -EINVAL;
Grant Likelyeca39302010-06-08 07:48:21 -060060}
61
62static void platform_driver_shutdown_shim(struct platform_device *pdev)
63{
64 struct platform_driver *pdrv;
65 struct of_platform_driver *ofpdrv;
66
67 pdrv = container_of(pdev->dev.driver, struct platform_driver, driver);
68 ofpdrv = container_of(pdrv, struct of_platform_driver, platform_driver);
69 ofpdrv->shutdown(pdev);
70}
71
72/**
73 * of_register_platform_driver
74 */
75int of_register_platform_driver(struct of_platform_driver *drv)
76{
77 /* setup of_platform_driver to platform_driver adaptors */
78 drv->platform_driver.driver = drv->driver;
79 if (drv->probe)
80 drv->platform_driver.probe = platform_driver_probe_shim;
81 drv->platform_driver.remove = drv->remove;
82 if (drv->shutdown)
83 drv->platform_driver.shutdown = platform_driver_shutdown_shim;
84 drv->platform_driver.suspend = drv->suspend;
85 drv->platform_driver.resume = drv->resume;
86
87 return platform_driver_register(&drv->platform_driver);
88}
89EXPORT_SYMBOL(of_register_platform_driver);
90
91void of_unregister_platform_driver(struct of_platform_driver *drv)
92{
93 platform_driver_unregister(&drv->platform_driver);
94}
95EXPORT_SYMBOL(of_unregister_platform_driver);
Stephen Rothwell3f23de12007-05-03 02:38:57 +100096
Grant Likely596c9552010-07-14 23:51:43 -060097#if defined(CONFIG_PPC_DCR)
98#include <asm/dcr.h>
99#endif
100
Olaf Hering140b9322008-04-24 23:16:00 +1000101extern struct device_attribute of_platform_device_attrs[];
102
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000103static int of_platform_bus_match(struct device *dev, struct device_driver *drv)
104{
Grant Likely597b9d12010-04-13 16:13:01 -0700105 const struct of_device_id *matches = drv->of_match_table;
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000106
107 if (!matches)
108 return 0;
109
Grant Likely44504b22010-04-13 16:13:22 -0700110 return of_match_device(matches, dev) != NULL;
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000111}
112
113static int of_platform_device_probe(struct device *dev)
114{
115 int error = -ENODEV;
116 struct of_platform_driver *drv;
Grant Likely94a0cb12010-07-22 13:59:23 -0600117 struct platform_device *of_dev;
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000118 const struct of_device_id *match;
119
120 drv = to_of_platform_driver(dev->driver);
Grant Likely94a0cb12010-07-22 13:59:23 -0600121 of_dev = to_platform_device(dev);
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000122
123 if (!drv->probe)
124 return error;
125
126 of_dev_get(of_dev);
127
Grant Likely44504b22010-04-13 16:13:22 -0700128 match = of_match_device(drv->driver.of_match_table, dev);
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000129 if (match)
130 error = drv->probe(of_dev, match);
131 if (error)
132 of_dev_put(of_dev);
133
134 return error;
135}
136
137static int of_platform_device_remove(struct device *dev)
138{
Grant Likely94a0cb12010-07-22 13:59:23 -0600139 struct platform_device *of_dev = to_platform_device(dev);
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000140 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
141
142 if (dev->driver && drv->remove)
143 drv->remove(of_dev);
144 return 0;
145}
146
Michael Ellermana09ad3c2008-01-25 16:59:13 +1100147static void of_platform_device_shutdown(struct device *dev)
148{
Grant Likely94a0cb12010-07-22 13:59:23 -0600149 struct platform_device *of_dev = to_platform_device(dev);
Michael Ellermana09ad3c2008-01-25 16:59:13 +1100150 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
151
152 if (dev->driver && drv->shutdown)
153 drv->shutdown(of_dev);
154}
155
Anton Vorontsovd35ef902009-10-12 05:50:41 +0000156#ifdef CONFIG_PM_SLEEP
157
158static int of_platform_legacy_suspend(struct device *dev, pm_message_t mesg)
159{
Grant Likely94a0cb12010-07-22 13:59:23 -0600160 struct platform_device *of_dev = to_platform_device(dev);
Anton Vorontsovd35ef902009-10-12 05:50:41 +0000161 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
162 int ret = 0;
163
164 if (dev->driver && drv->suspend)
165 ret = drv->suspend(of_dev, mesg);
166 return ret;
167}
168
169static int of_platform_legacy_resume(struct device *dev)
170{
Grant Likely94a0cb12010-07-22 13:59:23 -0600171 struct platform_device *of_dev = to_platform_device(dev);
Anton Vorontsovd35ef902009-10-12 05:50:41 +0000172 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
173 int ret = 0;
174
175 if (dev->driver && drv->resume)
176 ret = drv->resume(of_dev);
177 return ret;
178}
179
180static int of_platform_pm_prepare(struct device *dev)
181{
182 struct device_driver *drv = dev->driver;
183 int ret = 0;
184
185 if (drv && drv->pm && drv->pm->prepare)
186 ret = drv->pm->prepare(dev);
187
188 return ret;
189}
190
191static void of_platform_pm_complete(struct device *dev)
192{
193 struct device_driver *drv = dev->driver;
194
195 if (drv && drv->pm && drv->pm->complete)
196 drv->pm->complete(dev);
197}
198
199#ifdef CONFIG_SUSPEND
200
201static int of_platform_pm_suspend(struct device *dev)
202{
203 struct device_driver *drv = dev->driver;
204 int ret = 0;
205
206 if (!drv)
207 return 0;
208
209 if (drv->pm) {
210 if (drv->pm->suspend)
211 ret = drv->pm->suspend(dev);
212 } else {
213 ret = of_platform_legacy_suspend(dev, PMSG_SUSPEND);
214 }
215
216 return ret;
217}
218
219static int of_platform_pm_suspend_noirq(struct device *dev)
220{
221 struct device_driver *drv = dev->driver;
222 int ret = 0;
223
224 if (!drv)
225 return 0;
226
227 if (drv->pm) {
228 if (drv->pm->suspend_noirq)
229 ret = drv->pm->suspend_noirq(dev);
230 }
231
232 return ret;
233}
234
235static int of_platform_pm_resume(struct device *dev)
236{
237 struct device_driver *drv = dev->driver;
238 int ret = 0;
239
240 if (!drv)
241 return 0;
242
243 if (drv->pm) {
244 if (drv->pm->resume)
245 ret = drv->pm->resume(dev);
246 } else {
247 ret = of_platform_legacy_resume(dev);
248 }
249
250 return ret;
251}
252
253static int of_platform_pm_resume_noirq(struct device *dev)
254{
255 struct device_driver *drv = dev->driver;
256 int ret = 0;
257
258 if (!drv)
259 return 0;
260
261 if (drv->pm) {
262 if (drv->pm->resume_noirq)
263 ret = drv->pm->resume_noirq(dev);
264 }
265
266 return ret;
267}
268
269#else /* !CONFIG_SUSPEND */
270
271#define of_platform_pm_suspend NULL
272#define of_platform_pm_resume NULL
273#define of_platform_pm_suspend_noirq NULL
274#define of_platform_pm_resume_noirq NULL
275
276#endif /* !CONFIG_SUSPEND */
277
278#ifdef CONFIG_HIBERNATION
279
280static int of_platform_pm_freeze(struct device *dev)
281{
282 struct device_driver *drv = dev->driver;
283 int ret = 0;
284
285 if (!drv)
286 return 0;
287
288 if (drv->pm) {
289 if (drv->pm->freeze)
290 ret = drv->pm->freeze(dev);
291 } else {
292 ret = of_platform_legacy_suspend(dev, PMSG_FREEZE);
293 }
294
295 return ret;
296}
297
298static int of_platform_pm_freeze_noirq(struct device *dev)
299{
300 struct device_driver *drv = dev->driver;
301 int ret = 0;
302
303 if (!drv)
304 return 0;
305
306 if (drv->pm) {
307 if (drv->pm->freeze_noirq)
308 ret = drv->pm->freeze_noirq(dev);
309 }
310
311 return ret;
312}
313
314static int of_platform_pm_thaw(struct device *dev)
315{
316 struct device_driver *drv = dev->driver;
317 int ret = 0;
318
319 if (!drv)
320 return 0;
321
322 if (drv->pm) {
323 if (drv->pm->thaw)
324 ret = drv->pm->thaw(dev);
325 } else {
326 ret = of_platform_legacy_resume(dev);
327 }
328
329 return ret;
330}
331
332static int of_platform_pm_thaw_noirq(struct device *dev)
333{
334 struct device_driver *drv = dev->driver;
335 int ret = 0;
336
337 if (!drv)
338 return 0;
339
340 if (drv->pm) {
341 if (drv->pm->thaw_noirq)
342 ret = drv->pm->thaw_noirq(dev);
343 }
344
345 return ret;
346}
347
348static int of_platform_pm_poweroff(struct device *dev)
349{
350 struct device_driver *drv = dev->driver;
351 int ret = 0;
352
353 if (!drv)
354 return 0;
355
356 if (drv->pm) {
357 if (drv->pm->poweroff)
358 ret = drv->pm->poweroff(dev);
359 } else {
360 ret = of_platform_legacy_suspend(dev, PMSG_HIBERNATE);
361 }
362
363 return ret;
364}
365
366static int of_platform_pm_poweroff_noirq(struct device *dev)
367{
368 struct device_driver *drv = dev->driver;
369 int ret = 0;
370
371 if (!drv)
372 return 0;
373
374 if (drv->pm) {
375 if (drv->pm->poweroff_noirq)
376 ret = drv->pm->poweroff_noirq(dev);
377 }
378
379 return ret;
380}
381
382static int of_platform_pm_restore(struct device *dev)
383{
384 struct device_driver *drv = dev->driver;
385 int ret = 0;
386
387 if (!drv)
388 return 0;
389
390 if (drv->pm) {
391 if (drv->pm->restore)
392 ret = drv->pm->restore(dev);
393 } else {
394 ret = of_platform_legacy_resume(dev);
395 }
396
397 return ret;
398}
399
400static int of_platform_pm_restore_noirq(struct device *dev)
401{
402 struct device_driver *drv = dev->driver;
403 int ret = 0;
404
405 if (!drv)
406 return 0;
407
408 if (drv->pm) {
409 if (drv->pm->restore_noirq)
410 ret = drv->pm->restore_noirq(dev);
411 }
412
413 return ret;
414}
415
416#else /* !CONFIG_HIBERNATION */
417
418#define of_platform_pm_freeze NULL
419#define of_platform_pm_thaw NULL
420#define of_platform_pm_poweroff NULL
421#define of_platform_pm_restore NULL
422#define of_platform_pm_freeze_noirq NULL
423#define of_platform_pm_thaw_noirq NULL
424#define of_platform_pm_poweroff_noirq NULL
425#define of_platform_pm_restore_noirq NULL
426
427#endif /* !CONFIG_HIBERNATION */
428
429static struct dev_pm_ops of_platform_dev_pm_ops = {
430 .prepare = of_platform_pm_prepare,
431 .complete = of_platform_pm_complete,
432 .suspend = of_platform_pm_suspend,
433 .resume = of_platform_pm_resume,
434 .freeze = of_platform_pm_freeze,
435 .thaw = of_platform_pm_thaw,
436 .poweroff = of_platform_pm_poweroff,
437 .restore = of_platform_pm_restore,
438 .suspend_noirq = of_platform_pm_suspend_noirq,
439 .resume_noirq = of_platform_pm_resume_noirq,
440 .freeze_noirq = of_platform_pm_freeze_noirq,
441 .thaw_noirq = of_platform_pm_thaw_noirq,
442 .poweroff_noirq = of_platform_pm_poweroff_noirq,
443 .restore_noirq = of_platform_pm_restore_noirq,
444};
445
446#define OF_PLATFORM_PM_OPS_PTR (&of_platform_dev_pm_ops)
447
448#else /* !CONFIG_PM_SLEEP */
449
450#define OF_PLATFORM_PM_OPS_PTR NULL
451
452#endif /* !CONFIG_PM_SLEEP */
453
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000454int of_bus_type_init(struct bus_type *bus, const char *name)
455{
456 bus->name = name;
457 bus->match = of_platform_bus_match;
458 bus->probe = of_platform_device_probe;
459 bus->remove = of_platform_device_remove;
Michael Ellermana09ad3c2008-01-25 16:59:13 +1100460 bus->shutdown = of_platform_device_shutdown;
Olaf Hering140b9322008-04-24 23:16:00 +1000461 bus->dev_attrs = of_platform_device_attrs;
Anton Vorontsovd35ef902009-10-12 05:50:41 +0000462 bus->pm = OF_PLATFORM_PM_OPS_PTR;
Stephen Rothwell3f23de12007-05-03 02:38:57 +1000463 return bus_register(bus);
464}
Stephen Rothwell5c457082007-10-17 21:17:42 -0700465
466int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus)
467{
Grant Likelyeca39302010-06-08 07:48:21 -0600468 /*
469 * Temporary: of_platform_bus used to be distinct from the platform
470 * bus. It isn't anymore, and so drivers on the platform bus need
471 * to be registered in a special way.
472 *
473 * After all of_platform_bus_type drivers are converted to
474 * platform_drivers, this exception can be removed.
475 */
476 if (bus == &platform_bus_type)
477 return of_register_platform_driver(drv);
Stephen Rothwell5c457082007-10-17 21:17:42 -0700478
479 /* register with core */
Grant Likelyeca39302010-06-08 07:48:21 -0600480 drv->driver.bus = bus;
Stephen Rothwell5c457082007-10-17 21:17:42 -0700481 return driver_register(&drv->driver);
482}
483EXPORT_SYMBOL(of_register_driver);
484
485void of_unregister_driver(struct of_platform_driver *drv)
486{
Grant Likelyeca39302010-06-08 07:48:21 -0600487 if (drv->driver.bus == &platform_bus_type)
488 of_unregister_platform_driver(drv);
489 else
490 driver_unregister(&drv->driver);
Stephen Rothwell5c457082007-10-17 21:17:42 -0700491}
492EXPORT_SYMBOL(of_unregister_driver);
Grant Likely5fd200f2010-06-08 07:48:13 -0600493
494#if !defined(CONFIG_SPARC)
495/*
496 * The following routines scan a subtree and registers a device for
497 * each applicable node.
498 *
499 * Note: sparc doesn't use these routines because it has a different
500 * mechanism for creating devices from device tree nodes.
501 */
502
503/**
Grant Likely94c09312010-06-08 07:48:14 -0600504 * of_device_make_bus_id - Use the device node data to assign a unique name
505 * @dev: pointer to device structure that is linked to a device tree node
506 *
507 * This routine will first try using either the dcr-reg or the reg property
508 * value to derive a unique name. As a last resort it will use the node
509 * name followed by a unique number.
510 */
511static void of_device_make_bus_id(struct device *dev)
512{
513 static atomic_t bus_no_reg_magic;
514 struct device_node *node = dev->of_node;
515 const u32 *reg;
516 u64 addr;
517 int magic;
518
519#ifdef CONFIG_PPC_DCR
520 /*
521 * If it's a DCR based device, use 'd' for native DCRs
522 * and 'D' for MMIO DCRs.
523 */
524 reg = of_get_property(node, "dcr-reg", NULL);
525 if (reg) {
526#ifdef CONFIG_PPC_DCR_NATIVE
527 dev_set_name(dev, "d%x.%s", *reg, node->name);
528#else /* CONFIG_PPC_DCR_NATIVE */
529 u64 addr = of_translate_dcr_address(node, *reg, NULL);
530 if (addr != OF_BAD_ADDR) {
531 dev_set_name(dev, "D%llx.%s",
532 (unsigned long long)addr, node->name);
533 return;
534 }
535#endif /* !CONFIG_PPC_DCR_NATIVE */
536 }
537#endif /* CONFIG_PPC_DCR */
538
539 /*
540 * For MMIO, get the physical address
541 */
542 reg = of_get_property(node, "reg", NULL);
543 if (reg) {
544 addr = of_translate_address(node, reg);
545 if (addr != OF_BAD_ADDR) {
546 dev_set_name(dev, "%llx.%s",
547 (unsigned long long)addr, node->name);
548 return;
549 }
550 }
551
552 /*
553 * No BusID, use the node name and add a globally incremented
554 * counter (and pray...)
555 */
556 magic = atomic_add_return(1, &bus_no_reg_magic);
557 dev_set_name(dev, "%s.%d", node->name, magic - 1);
558}
559
560/**
561 * of_device_alloc - Allocate and initialize an of_device
562 * @np: device node to assign to device
563 * @bus_id: Name to assign to the device. May be null to use default name.
564 * @parent: Parent device.
565 */
Grant Likely94a0cb12010-07-22 13:59:23 -0600566struct platform_device *of_device_alloc(struct device_node *np,
Grant Likely94c09312010-06-08 07:48:14 -0600567 const char *bus_id,
568 struct device *parent)
569{
Grant Likely94a0cb12010-07-22 13:59:23 -0600570 struct platform_device *dev;
Grant Likelyac80a512010-06-08 07:48:15 -0600571 int rc, i, num_reg = 0, num_irq = 0;
572 struct resource *res, temp_res;
Grant Likely94c09312010-06-08 07:48:14 -0600573
Grant Likelyac80a512010-06-08 07:48:15 -0600574 /* First count how many resources are needed */
575 while (of_address_to_resource(np, num_reg, &temp_res) == 0)
576 num_reg++;
577 while (of_irq_to_resource(np, num_irq, &temp_res) != NO_IRQ)
578 num_irq++;
579
580 /* Allocate memory for both the struct device and the resource table */
581 dev = kzalloc(sizeof(*dev) + (sizeof(*res) * (num_reg + num_irq)),
582 GFP_KERNEL);
Grant Likely94c09312010-06-08 07:48:14 -0600583 if (!dev)
584 return NULL;
Grant Likelyac80a512010-06-08 07:48:15 -0600585 res = (struct resource *) &dev[1];
586
587 /* Populate the resource table */
588 if (num_irq || num_reg) {
589 dev->num_resources = num_reg + num_irq;
590 dev->resource = res;
591 for (i = 0; i < num_reg; i++, res++) {
592 rc = of_address_to_resource(np, i, res);
593 WARN_ON(rc);
594 }
595 for (i = 0; i < num_irq; i++, res++) {
596 rc = of_irq_to_resource(np, i, res);
597 WARN_ON(rc == NO_IRQ);
598 }
599 }
Grant Likely94c09312010-06-08 07:48:14 -0600600
601 dev->dev.of_node = of_node_get(np);
Grant Likely9e3288d2010-06-08 07:48:26 -0600602#if defined(CONFIG_PPC) || defined(CONFIG_MICROBLAZE)
Grant Likely94c09312010-06-08 07:48:14 -0600603 dev->dev.dma_mask = &dev->archdata.dma_mask;
Grant Likely9e3288d2010-06-08 07:48:26 -0600604#endif
Grant Likely94c09312010-06-08 07:48:14 -0600605 dev->dev.parent = parent;
606 dev->dev.release = of_release_dev;
607
608 if (bus_id)
609 dev_set_name(&dev->dev, "%s", bus_id);
610 else
611 of_device_make_bus_id(&dev->dev);
612
613 return dev;
614}
615EXPORT_SYMBOL(of_device_alloc);
616
617/**
Grant Likely5fd200f2010-06-08 07:48:13 -0600618 * of_platform_device_create - Alloc, initialize and register an of_device
619 * @np: pointer to node to create device for
620 * @bus_id: name to assign device
621 * @parent: Linux device model parent device.
622 */
Grant Likely94a0cb12010-07-22 13:59:23 -0600623struct platform_device *of_platform_device_create(struct device_node *np,
Grant Likely5fd200f2010-06-08 07:48:13 -0600624 const char *bus_id,
625 struct device *parent)
626{
Grant Likely94a0cb12010-07-22 13:59:23 -0600627 struct platform_device *dev;
Grant Likely5fd200f2010-06-08 07:48:13 -0600628
629 dev = of_device_alloc(np, bus_id, parent);
630 if (!dev)
631 return NULL;
632
Grant Likely9e3288d2010-06-08 07:48:26 -0600633#if defined(CONFIG_PPC) || defined(CONFIG_MICROBLAZE)
Grant Likely5fd200f2010-06-08 07:48:13 -0600634 dev->archdata.dma_mask = 0xffffffffUL;
Grant Likely9e3288d2010-06-08 07:48:26 -0600635#endif
Grant Likely5fd200f2010-06-08 07:48:13 -0600636 dev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
Grant Likelyeca39302010-06-08 07:48:21 -0600637 dev->dev.bus = &platform_bus_type;
Grant Likely5fd200f2010-06-08 07:48:13 -0600638
639 /* We do not fill the DMA ops for platform devices by default.
640 * This is currently the responsibility of the platform code
641 * to do such, possibly using a device notifier
642 */
643
644 if (of_device_register(dev) != 0) {
645 of_device_free(dev);
646 return NULL;
647 }
648
649 return dev;
650}
651EXPORT_SYMBOL(of_platform_device_create);
652
653/**
654 * of_platform_bus_create - Create an OF device for a bus node and all its
655 * children. Optionally recursively instantiate matching busses.
656 * @bus: device node of the bus to instantiate
657 * @matches: match table, NULL to use the default, OF_NO_DEEP_PROBE to
658 * disallow recursive creation of child busses
659 */
660static int of_platform_bus_create(const struct device_node *bus,
661 const struct of_device_id *matches,
662 struct device *parent)
663{
664 struct device_node *child;
Grant Likely94a0cb12010-07-22 13:59:23 -0600665 struct platform_device *dev;
Grant Likely5fd200f2010-06-08 07:48:13 -0600666 int rc = 0;
667
668 for_each_child_of_node(bus, child) {
669 pr_debug(" create child: %s\n", child->full_name);
670 dev = of_platform_device_create(child, NULL, parent);
671 if (dev == NULL)
672 rc = -ENOMEM;
673 else if (!of_match_node(matches, child))
674 continue;
675 if (rc == 0) {
676 pr_debug(" and sub busses\n");
677 rc = of_platform_bus_create(child, matches, &dev->dev);
678 }
679 if (rc) {
680 of_node_put(child);
681 break;
682 }
683 }
684 return rc;
685}
686
687/**
688 * of_platform_bus_probe - Probe the device-tree for platform busses
689 * @root: parent of the first level to probe or NULL for the root of the tree
690 * @matches: match table, NULL to use the default
691 * @parent: parent to hook devices from, NULL for toplevel
692 *
693 * Note that children of the provided root are not instantiated as devices
694 * unless the specified root itself matches the bus list and is not NULL.
695 */
696int of_platform_bus_probe(struct device_node *root,
697 const struct of_device_id *matches,
698 struct device *parent)
699{
700 struct device_node *child;
Grant Likely94a0cb12010-07-22 13:59:23 -0600701 struct platform_device *dev;
Grant Likely5fd200f2010-06-08 07:48:13 -0600702 int rc = 0;
703
Jonas Bonnc0dd3942010-07-23 20:19:24 +0200704 if (WARN_ON(!matches || matches == OF_NO_DEEP_PROBE))
Grant Likely5fd200f2010-06-08 07:48:13 -0600705 return -EINVAL;
706 if (root == NULL)
707 root = of_find_node_by_path("/");
708 else
709 of_node_get(root);
Grant Likely60d59912010-06-08 07:48:25 -0600710 if (root == NULL)
711 return -EINVAL;
Grant Likely5fd200f2010-06-08 07:48:13 -0600712
713 pr_debug("of_platform_bus_probe()\n");
714 pr_debug(" starting at: %s\n", root->full_name);
715
716 /* Do a self check of bus type, if there's a match, create
717 * children
718 */
719 if (of_match_node(matches, root)) {
720 pr_debug(" root match, create all sub devices\n");
721 dev = of_platform_device_create(root, NULL, parent);
722 if (dev == NULL) {
723 rc = -ENOMEM;
724 goto bail;
725 }
726 pr_debug(" create all sub busses\n");
727 rc = of_platform_bus_create(root, matches, &dev->dev);
728 goto bail;
729 }
730 for_each_child_of_node(root, child) {
731 if (!of_match_node(matches, child))
732 continue;
733
734 pr_debug(" match: %s\n", child->full_name);
735 dev = of_platform_device_create(child, NULL, parent);
736 if (dev == NULL)
737 rc = -ENOMEM;
738 else
739 rc = of_platform_bus_create(child, matches, &dev->dev);
740 if (rc) {
741 of_node_put(child);
742 break;
743 }
744 }
745 bail:
746 of_node_put(root);
747 return rc;
748}
749EXPORT_SYMBOL(of_platform_bus_probe);
750#endif /* !CONFIG_SPARC */