]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/base/platform.c
Merge remote-tracking branch 'driver-core/driver-core-next'
[karo-tx-linux.git] / drivers / base / platform.c
1 /*
2  * platform.c - platform 'pseudo' bus for legacy devices
3  *
4  * Copyright (c) 2002-3 Patrick Mochel
5  * Copyright (c) 2002-3 Open Source Development Labs
6  *
7  * This file is released under the GPLv2
8  *
9  * Please see Documentation/driver-model/platform.txt for more
10  * information.
11  */
12
13 #include <linux/string.h>
14 #include <linux/platform_device.h>
15 #include <linux/of_device.h>
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/bootmem.h>
20 #include <linux/err.h>
21 #include <linux/slab.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/idr.h>
24
25 #include "base.h"
26 #include "power/power.h"
27
28 /* For automatically allocated device IDs */
29 static DEFINE_IDA(platform_devid_ida);
30
31 #define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
32                                  driver))
33
34 struct device platform_bus = {
35         .init_name      = "platform",
36 };
37 EXPORT_SYMBOL_GPL(platform_bus);
38
39 /**
40  * arch_setup_pdev_archdata - Allow manipulation of archdata before its used
41  * @pdev: platform device
42  *
43  * This is called before platform_device_add() such that any pdev_archdata may
44  * be setup before the platform_notifier is called.  So if a user needs to
45  * manipulate any relevant information in the pdev_archdata they can do:
46  *
47  *      platform_devic_alloc()
48  *      ... manipulate ...
49  *      platform_device_add()
50  *
51  * And if they don't care they can just call platform_device_register() and
52  * everything will just work out.
53  */
54 void __weak arch_setup_pdev_archdata(struct platform_device *pdev)
55 {
56 }
57
58 /**
59  * platform_get_resource - get a resource for a device
60  * @dev: platform device
61  * @type: resource type
62  * @num: resource index
63  */
64 struct resource *platform_get_resource(struct platform_device *dev,
65                                        unsigned int type, unsigned int num)
66 {
67         int i;
68
69         for (i = 0; i < dev->num_resources; i++) {
70                 struct resource *r = &dev->resource[i];
71
72                 if (type == resource_type(r) && num-- == 0)
73                         return r;
74         }
75         return NULL;
76 }
77 EXPORT_SYMBOL_GPL(platform_get_resource);
78
79 /**
80  * platform_get_irq - get an IRQ for a device
81  * @dev: platform device
82  * @num: IRQ number index
83  */
84 int platform_get_irq(struct platform_device *dev, unsigned int num)
85 {
86         struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num);
87
88         return r ? r->start : -ENXIO;
89 }
90 EXPORT_SYMBOL_GPL(platform_get_irq);
91
92 /**
93  * platform_get_resource_byname - get a resource for a device by name
94  * @dev: platform device
95  * @type: resource type
96  * @name: resource name
97  */
98 struct resource *platform_get_resource_byname(struct platform_device *dev,
99                                               unsigned int type,
100                                               const char *name)
101 {
102         int i;
103
104         for (i = 0; i < dev->num_resources; i++) {
105                 struct resource *r = &dev->resource[i];
106
107                 if (type == resource_type(r) && !strcmp(r->name, name))
108                         return r;
109         }
110         return NULL;
111 }
112 EXPORT_SYMBOL_GPL(platform_get_resource_byname);
113
114 /**
115  * platform_get_irq - get an IRQ for a device
116  * @dev: platform device
117  * @name: IRQ name
118  */
119 int platform_get_irq_byname(struct platform_device *dev, const char *name)
120 {
121         struct resource *r = platform_get_resource_byname(dev, IORESOURCE_IRQ,
122                                                           name);
123
124         return r ? r->start : -ENXIO;
125 }
126 EXPORT_SYMBOL_GPL(platform_get_irq_byname);
127
128 /**
129  * platform_add_devices - add a numbers of platform devices
130  * @devs: array of platform devices to add
131  * @num: number of platform devices in array
132  */
133 int platform_add_devices(struct platform_device **devs, int num)
134 {
135         int i, ret = 0;
136
137         for (i = 0; i < num; i++) {
138                 ret = platform_device_register(devs[i]);
139                 if (ret) {
140                         while (--i >= 0)
141                                 platform_device_unregister(devs[i]);
142                         break;
143                 }
144         }
145
146         return ret;
147 }
148 EXPORT_SYMBOL_GPL(platform_add_devices);
149
150 struct platform_object {
151         struct platform_device pdev;
152         char name[1];
153 };
154
155 /**
156  * platform_device_put - destroy a platform device
157  * @pdev: platform device to free
158  *
159  * Free all memory associated with a platform device.  This function must
160  * _only_ be externally called in error cases.  All other usage is a bug.
161  */
162 void platform_device_put(struct platform_device *pdev)
163 {
164         if (pdev)
165                 put_device(&pdev->dev);
166 }
167 EXPORT_SYMBOL_GPL(platform_device_put);
168
169 static void platform_device_release(struct device *dev)
170 {
171         struct platform_object *pa = container_of(dev, struct platform_object,
172                                                   pdev.dev);
173
174         of_device_node_put(&pa->pdev.dev);
175         kfree(pa->pdev.dev.platform_data);
176         kfree(pa->pdev.mfd_cell);
177         kfree(pa->pdev.resource);
178         kfree(pa);
179 }
180
181 /**
182  * platform_device_alloc - create a platform device
183  * @name: base name of the device we're adding
184  * @id: instance id
185  *
186  * Create a platform device object which can have other objects attached
187  * to it, and which will have attached objects freed when it is released.
188  */
189 struct platform_device *platform_device_alloc(const char *name, int id)
190 {
191         struct platform_object *pa;
192
193         pa = kzalloc(sizeof(struct platform_object) + strlen(name), GFP_KERNEL);
194         if (pa) {
195                 strcpy(pa->name, name);
196                 pa->pdev.name = pa->name;
197                 pa->pdev.id = id;
198                 device_initialize(&pa->pdev.dev);
199                 pa->pdev.dev.release = platform_device_release;
200                 arch_setup_pdev_archdata(&pa->pdev);
201         }
202
203         return pa ? &pa->pdev : NULL;
204 }
205 EXPORT_SYMBOL_GPL(platform_device_alloc);
206
207 /**
208  * platform_device_add_resources - add resources to a platform device
209  * @pdev: platform device allocated by platform_device_alloc to add resources to
210  * @res: set of resources that needs to be allocated for the device
211  * @num: number of resources
212  *
213  * Add a copy of the resources to the platform device.  The memory
214  * associated with the resources will be freed when the platform device is
215  * released.
216  */
217 int platform_device_add_resources(struct platform_device *pdev,
218                                   const struct resource *res, unsigned int num)
219 {
220         struct resource *r = NULL;
221
222         if (res) {
223                 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
224                 if (!r)
225                         return -ENOMEM;
226         }
227
228         kfree(pdev->resource);
229         pdev->resource = r;
230         pdev->num_resources = num;
231         return 0;
232 }
233 EXPORT_SYMBOL_GPL(platform_device_add_resources);
234
235 /**
236  * platform_device_add_data - add platform-specific data to a platform device
237  * @pdev: platform device allocated by platform_device_alloc to add resources to
238  * @data: platform specific data for this platform device
239  * @size: size of platform specific data
240  *
241  * Add a copy of platform specific data to the platform device's
242  * platform_data pointer.  The memory associated with the platform data
243  * will be freed when the platform device is released.
244  */
245 int platform_device_add_data(struct platform_device *pdev, const void *data,
246                              size_t size)
247 {
248         void *d = NULL;
249
250         if (data) {
251                 d = kmemdup(data, size, GFP_KERNEL);
252                 if (!d)
253                         return -ENOMEM;
254         }
255
256         kfree(pdev->dev.platform_data);
257         pdev->dev.platform_data = d;
258         return 0;
259 }
260 EXPORT_SYMBOL_GPL(platform_device_add_data);
261
262 /**
263  * platform_device_add - add a platform device to device hierarchy
264  * @pdev: platform device we're adding
265  *
266  * This is part 2 of platform_device_register(), though may be called
267  * separately _iff_ pdev was allocated by platform_device_alloc().
268  */
269 int platform_device_add(struct platform_device *pdev)
270 {
271         int i, ret;
272
273         if (!pdev)
274                 return -EINVAL;
275
276         if (!pdev->dev.parent)
277                 pdev->dev.parent = &platform_bus;
278
279         pdev->dev.bus = &platform_bus_type;
280
281         switch (pdev->id) {
282         default:
283                 dev_set_name(&pdev->dev, "%s.%d", pdev->name,  pdev->id);
284                 break;
285         case PLATFORM_DEVID_NONE:
286                 dev_set_name(&pdev->dev, "%s", pdev->name);
287                 break;
288         case PLATFORM_DEVID_AUTO:
289                 /*
290                  * Automatically allocated device ID. We mark it as such so
291                  * that we remember it must be freed, and we append a suffix
292                  * to avoid namespace collision with explicit IDs.
293                  */
294                 ret = ida_simple_get(&platform_devid_ida, 0, 0, GFP_KERNEL);
295                 if (ret < 0)
296                         goto err_out;
297                 pdev->id = ret;
298                 pdev->id_auto = true;
299                 dev_set_name(&pdev->dev, "%s.%d.auto", pdev->name, pdev->id);
300                 break;
301         }
302
303         for (i = 0; i < pdev->num_resources; i++) {
304                 struct resource *p, *r = &pdev->resource[i];
305
306                 if (r->name == NULL)
307                         r->name = dev_name(&pdev->dev);
308
309                 p = r->parent;
310                 if (!p) {
311                         if (resource_type(r) == IORESOURCE_MEM)
312                                 p = &iomem_resource;
313                         else if (resource_type(r) == IORESOURCE_IO)
314                                 p = &ioport_resource;
315                 }
316
317                 if (p && insert_resource(p, r)) {
318                         printk(KERN_ERR
319                                "%s: failed to claim resource %d\n",
320                                dev_name(&pdev->dev), i);
321                         ret = -EBUSY;
322                         goto failed;
323                 }
324         }
325
326         pr_debug("Registering platform device '%s'. Parent at %s\n",
327                  dev_name(&pdev->dev), dev_name(pdev->dev.parent));
328
329         ret = device_add(&pdev->dev);
330         if (ret == 0)
331                 return ret;
332
333  failed:
334         if (pdev->id_auto) {
335                 ida_simple_remove(&platform_devid_ida, pdev->id);
336                 pdev->id = PLATFORM_DEVID_AUTO;
337         }
338
339         while (--i >= 0) {
340                 struct resource *r = &pdev->resource[i];
341                 unsigned long type = resource_type(r);
342
343                 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
344                         release_resource(r);
345         }
346
347  err_out:
348         return ret;
349 }
350 EXPORT_SYMBOL_GPL(platform_device_add);
351
352 /**
353  * platform_device_del - remove a platform-level device
354  * @pdev: platform device we're removing
355  *
356  * Note that this function will also release all memory- and port-based
357  * resources owned by the device (@dev->resource).  This function must
358  * _only_ be externally called in error cases.  All other usage is a bug.
359  */
360 void platform_device_del(struct platform_device *pdev)
361 {
362         int i;
363
364         if (pdev) {
365                 device_del(&pdev->dev);
366
367                 if (pdev->id_auto) {
368                         ida_simple_remove(&platform_devid_ida, pdev->id);
369                         pdev->id = PLATFORM_DEVID_AUTO;
370                 }
371
372                 for (i = 0; i < pdev->num_resources; i++) {
373                         struct resource *r = &pdev->resource[i];
374                         unsigned long type = resource_type(r);
375
376                         if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
377                                 release_resource(r);
378                 }
379         }
380 }
381 EXPORT_SYMBOL_GPL(platform_device_del);
382
383 /**
384  * platform_device_register - add a platform-level device
385  * @pdev: platform device we're adding
386  */
387 int platform_device_register(struct platform_device *pdev)
388 {
389         device_initialize(&pdev->dev);
390         arch_setup_pdev_archdata(pdev);
391         return platform_device_add(pdev);
392 }
393 EXPORT_SYMBOL_GPL(platform_device_register);
394
395 /**
396  * platform_device_unregister - unregister a platform-level device
397  * @pdev: platform device we're unregistering
398  *
399  * Unregistration is done in 2 steps. First we release all resources
400  * and remove it from the subsystem, then we drop reference count by
401  * calling platform_device_put().
402  */
403 void platform_device_unregister(struct platform_device *pdev)
404 {
405         platform_device_del(pdev);
406         platform_device_put(pdev);
407 }
408 EXPORT_SYMBOL_GPL(platform_device_unregister);
409
410 /**
411  * platform_device_register_full - add a platform-level device with
412  * resources and platform-specific data
413  *
414  * @pdevinfo: data used to create device
415  *
416  * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
417  */
418 struct platform_device *platform_device_register_full(
419                 const struct platform_device_info *pdevinfo)
420 {
421         int ret = -ENOMEM;
422         struct platform_device *pdev;
423
424         pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
425         if (!pdev)
426                 goto err_alloc;
427
428         pdev->dev.parent = pdevinfo->parent;
429
430         if (pdevinfo->dma_mask) {
431                 /*
432                  * This memory isn't freed when the device is put,
433                  * I don't have a nice idea for that though.  Conceptually
434                  * dma_mask in struct device should not be a pointer.
435                  * See http://thread.gmane.org/gmane.linux.kernel.pci/9081
436                  */
437                 pdev->dev.dma_mask =
438                         kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL);
439                 if (!pdev->dev.dma_mask)
440                         goto err;
441
442                 *pdev->dev.dma_mask = pdevinfo->dma_mask;
443                 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
444         }
445
446         ret = platform_device_add_resources(pdev,
447                         pdevinfo->res, pdevinfo->num_res);
448         if (ret)
449                 goto err;
450
451         ret = platform_device_add_data(pdev,
452                         pdevinfo->data, pdevinfo->size_data);
453         if (ret)
454                 goto err;
455
456         ret = platform_device_add(pdev);
457         if (ret) {
458 err:
459                 kfree(pdev->dev.dma_mask);
460
461 err_alloc:
462                 platform_device_put(pdev);
463                 return ERR_PTR(ret);
464         }
465
466         return pdev;
467 }
468 EXPORT_SYMBOL_GPL(platform_device_register_full);
469
470 static int platform_drv_probe(struct device *_dev)
471 {
472         struct platform_driver *drv = to_platform_driver(_dev->driver);
473         struct platform_device *dev = to_platform_device(_dev);
474
475         return drv->probe(dev);
476 }
477
478 static int platform_drv_probe_fail(struct device *_dev)
479 {
480         return -ENXIO;
481 }
482
483 static int platform_drv_remove(struct device *_dev)
484 {
485         struct platform_driver *drv = to_platform_driver(_dev->driver);
486         struct platform_device *dev = to_platform_device(_dev);
487
488         return drv->remove(dev);
489 }
490
491 static void platform_drv_shutdown(struct device *_dev)
492 {
493         struct platform_driver *drv = to_platform_driver(_dev->driver);
494         struct platform_device *dev = to_platform_device(_dev);
495
496         drv->shutdown(dev);
497 }
498
499 /**
500  * platform_driver_register - register a driver for platform-level devices
501  * @drv: platform driver structure
502  */
503 int platform_driver_register(struct platform_driver *drv)
504 {
505         drv->driver.bus = &platform_bus_type;
506         if (drv->probe)
507                 drv->driver.probe = platform_drv_probe;
508         if (drv->remove)
509                 drv->driver.remove = platform_drv_remove;
510         if (drv->shutdown)
511                 drv->driver.shutdown = platform_drv_shutdown;
512
513         return driver_register(&drv->driver);
514 }
515 EXPORT_SYMBOL_GPL(platform_driver_register);
516
517 /**
518  * platform_driver_unregister - unregister a driver for platform-level devices
519  * @drv: platform driver structure
520  */
521 void platform_driver_unregister(struct platform_driver *drv)
522 {
523         driver_unregister(&drv->driver);
524 }
525 EXPORT_SYMBOL_GPL(platform_driver_unregister);
526
527 /**
528  * platform_driver_probe - register driver for non-hotpluggable device
529  * @drv: platform driver structure
530  * @probe: the driver probe routine, probably from an __init section
531  *
532  * Use this instead of platform_driver_register() when you know the device
533  * is not hotpluggable and has already been registered, and you want to
534  * remove its run-once probe() infrastructure from memory after the driver
535  * has bound to the device.
536  *
537  * One typical use for this would be with drivers for controllers integrated
538  * into system-on-chip processors, where the controller devices have been
539  * configured as part of board setup.
540  *
541  * Returns zero if the driver registered and bound to a device, else returns
542  * a negative error code and with the driver not registered.
543  */
544 int __init_or_module platform_driver_probe(struct platform_driver *drv,
545                 int (*probe)(struct platform_device *))
546 {
547         int retval, code;
548
549         /* make sure driver won't have bind/unbind attributes */
550         drv->driver.suppress_bind_attrs = true;
551
552         /* temporary section violation during probe() */
553         drv->probe = probe;
554         retval = code = platform_driver_register(drv);
555
556         /*
557          * Fixup that section violation, being paranoid about code scanning
558          * the list of drivers in order to probe new devices.  Check to see
559          * if the probe was successful, and make sure any forced probes of
560          * new devices fail.
561          */
562         spin_lock(&drv->driver.bus->p->klist_drivers.k_lock);
563         drv->probe = NULL;
564         if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
565                 retval = -ENODEV;
566         drv->driver.probe = platform_drv_probe_fail;
567         spin_unlock(&drv->driver.bus->p->klist_drivers.k_lock);
568
569         if (code != retval)
570                 platform_driver_unregister(drv);
571         return retval;
572 }
573 EXPORT_SYMBOL_GPL(platform_driver_probe);
574
575 /**
576  * platform_create_bundle - register driver and create corresponding device
577  * @driver: platform driver structure
578  * @probe: the driver probe routine, probably from an __init section
579  * @res: set of resources that needs to be allocated for the device
580  * @n_res: number of resources
581  * @data: platform specific data for this platform device
582  * @size: size of platform specific data
583  *
584  * Use this in legacy-style modules that probe hardware directly and
585  * register a single platform device and corresponding platform driver.
586  *
587  * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
588  */
589 struct platform_device * __init_or_module platform_create_bundle(
590                         struct platform_driver *driver,
591                         int (*probe)(struct platform_device *),
592                         struct resource *res, unsigned int n_res,
593                         const void *data, size_t size)
594 {
595         struct platform_device *pdev;
596         int error;
597
598         pdev = platform_device_alloc(driver->driver.name, -1);
599         if (!pdev) {
600                 error = -ENOMEM;
601                 goto err_out;
602         }
603
604         error = platform_device_add_resources(pdev, res, n_res);
605         if (error)
606                 goto err_pdev_put;
607
608         error = platform_device_add_data(pdev, data, size);
609         if (error)
610                 goto err_pdev_put;
611
612         error = platform_device_add(pdev);
613         if (error)
614                 goto err_pdev_put;
615
616         error = platform_driver_probe(driver, probe);
617         if (error)
618                 goto err_pdev_del;
619
620         return pdev;
621
622 err_pdev_del:
623         platform_device_del(pdev);
624 err_pdev_put:
625         platform_device_put(pdev);
626 err_out:
627         return ERR_PTR(error);
628 }
629 EXPORT_SYMBOL_GPL(platform_create_bundle);
630
631 /* modalias support enables more hands-off userspace setup:
632  * (a) environment variable lets new-style hotplug events work once system is
633  *     fully running:  "modprobe $MODALIAS"
634  * (b) sysfs attribute lets new-style coldplug recover from hotplug events
635  *     mishandled before system is fully running:  "modprobe $(cat modalias)"
636  */
637 static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
638                              char *buf)
639 {
640         struct platform_device  *pdev = to_platform_device(dev);
641         int len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
642
643         return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
644 }
645
646 static struct device_attribute platform_dev_attrs[] = {
647         __ATTR_RO(modalias),
648         __ATTR_NULL,
649 };
650
651 static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
652 {
653         struct platform_device  *pdev = to_platform_device(dev);
654         int rc;
655
656         /* Some devices have extra OF data and an OF-style MODALIAS */
657         rc = of_device_uevent_modalias(dev,env);
658         if (rc != -ENODEV)
659                 return rc;
660
661         add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
662                         pdev->name);
663         return 0;
664 }
665
666 static const struct platform_device_id *platform_match_id(
667                         const struct platform_device_id *id,
668                         struct platform_device *pdev)
669 {
670         while (id->name[0]) {
671                 if (strcmp(pdev->name, id->name) == 0) {
672                         pdev->id_entry = id;
673                         return id;
674                 }
675                 id++;
676         }
677         return NULL;
678 }
679
680 /**
681  * platform_match - bind platform device to platform driver.
682  * @dev: device.
683  * @drv: driver.
684  *
685  * Platform device IDs are assumed to be encoded like this:
686  * "<name><instance>", where <name> is a short description of the type of
687  * device, like "pci" or "floppy", and <instance> is the enumerated
688  * instance of the device, like '0' or '42'.  Driver IDs are simply
689  * "<name>".  So, extract the <name> from the platform_device structure,
690  * and compare it against the name of the driver. Return whether they match
691  * or not.
692  */
693 static int platform_match(struct device *dev, struct device_driver *drv)
694 {
695         struct platform_device *pdev = to_platform_device(dev);
696         struct platform_driver *pdrv = to_platform_driver(drv);
697
698         /* Attempt an OF style match first */
699         if (of_driver_match_device(dev, drv))
700                 return 1;
701
702         /* Then try to match against the id table */
703         if (pdrv->id_table)
704                 return platform_match_id(pdrv->id_table, pdev) != NULL;
705
706         /* fall-back to driver name match */
707         return (strcmp(pdev->name, drv->name) == 0);
708 }
709
710 #ifdef CONFIG_PM_SLEEP
711
712 static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
713 {
714         struct platform_driver *pdrv = to_platform_driver(dev->driver);
715         struct platform_device *pdev = to_platform_device(dev);
716         int ret = 0;
717
718         if (dev->driver && pdrv->suspend)
719                 ret = pdrv->suspend(pdev, mesg);
720
721         return ret;
722 }
723
724 static int platform_legacy_resume(struct device *dev)
725 {
726         struct platform_driver *pdrv = to_platform_driver(dev->driver);
727         struct platform_device *pdev = to_platform_device(dev);
728         int ret = 0;
729
730         if (dev->driver && pdrv->resume)
731                 ret = pdrv->resume(pdev);
732
733         return ret;
734 }
735
736 #endif /* CONFIG_PM_SLEEP */
737
738 #ifdef CONFIG_SUSPEND
739
740 int platform_pm_suspend(struct device *dev)
741 {
742         struct device_driver *drv = dev->driver;
743         int ret = 0;
744
745         if (!drv)
746                 return 0;
747
748         if (drv->pm) {
749                 if (drv->pm->suspend)
750                         ret = drv->pm->suspend(dev);
751         } else {
752                 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
753         }
754
755         return ret;
756 }
757
758 int platform_pm_resume(struct device *dev)
759 {
760         struct device_driver *drv = dev->driver;
761         int ret = 0;
762
763         if (!drv)
764                 return 0;
765
766         if (drv->pm) {
767                 if (drv->pm->resume)
768                         ret = drv->pm->resume(dev);
769         } else {
770                 ret = platform_legacy_resume(dev);
771         }
772
773         return ret;
774 }
775
776 #endif /* CONFIG_SUSPEND */
777
778 #ifdef CONFIG_HIBERNATE_CALLBACKS
779
780 int platform_pm_freeze(struct device *dev)
781 {
782         struct device_driver *drv = dev->driver;
783         int ret = 0;
784
785         if (!drv)
786                 return 0;
787
788         if (drv->pm) {
789                 if (drv->pm->freeze)
790                         ret = drv->pm->freeze(dev);
791         } else {
792                 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
793         }
794
795         return ret;
796 }
797
798 int platform_pm_thaw(struct device *dev)
799 {
800         struct device_driver *drv = dev->driver;
801         int ret = 0;
802
803         if (!drv)
804                 return 0;
805
806         if (drv->pm) {
807                 if (drv->pm->thaw)
808                         ret = drv->pm->thaw(dev);
809         } else {
810                 ret = platform_legacy_resume(dev);
811         }
812
813         return ret;
814 }
815
816 int platform_pm_poweroff(struct device *dev)
817 {
818         struct device_driver *drv = dev->driver;
819         int ret = 0;
820
821         if (!drv)
822                 return 0;
823
824         if (drv->pm) {
825                 if (drv->pm->poweroff)
826                         ret = drv->pm->poweroff(dev);
827         } else {
828                 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
829         }
830
831         return ret;
832 }
833
834 int platform_pm_restore(struct device *dev)
835 {
836         struct device_driver *drv = dev->driver;
837         int ret = 0;
838
839         if (!drv)
840                 return 0;
841
842         if (drv->pm) {
843                 if (drv->pm->restore)
844                         ret = drv->pm->restore(dev);
845         } else {
846                 ret = platform_legacy_resume(dev);
847         }
848
849         return ret;
850 }
851
852 #endif /* CONFIG_HIBERNATE_CALLBACKS */
853
854 static const struct dev_pm_ops platform_dev_pm_ops = {
855         .runtime_suspend = pm_generic_runtime_suspend,
856         .runtime_resume = pm_generic_runtime_resume,
857         .runtime_idle = pm_generic_runtime_idle,
858         USE_PLATFORM_PM_SLEEP_OPS
859 };
860
861 struct bus_type platform_bus_type = {
862         .name           = "platform",
863         .dev_attrs      = platform_dev_attrs,
864         .match          = platform_match,
865         .uevent         = platform_uevent,
866         .pm             = &platform_dev_pm_ops,
867 };
868 EXPORT_SYMBOL_GPL(platform_bus_type);
869
870 int __init platform_bus_init(void)
871 {
872         int error;
873
874         early_platform_cleanup();
875
876         error = device_register(&platform_bus);
877         if (error)
878                 return error;
879         error =  bus_register(&platform_bus_type);
880         if (error)
881                 device_unregister(&platform_bus);
882         return error;
883 }
884
885 #ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
886 u64 dma_get_required_mask(struct device *dev)
887 {
888         u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT);
889         u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT));
890         u64 mask;
891
892         if (!high_totalram) {
893                 /* convert to mask just covering totalram */
894                 low_totalram = (1 << (fls(low_totalram) - 1));
895                 low_totalram += low_totalram - 1;
896                 mask = low_totalram;
897         } else {
898                 high_totalram = (1 << (fls(high_totalram) - 1));
899                 high_totalram += high_totalram - 1;
900                 mask = (((u64)high_totalram) << 32) + 0xffffffff;
901         }
902         return mask;
903 }
904 EXPORT_SYMBOL_GPL(dma_get_required_mask);
905 #endif
906
907 static __initdata LIST_HEAD(early_platform_driver_list);
908 static __initdata LIST_HEAD(early_platform_device_list);
909
910 /**
911  * early_platform_driver_register - register early platform driver
912  * @epdrv: early_platform driver structure
913  * @buf: string passed from early_param()
914  *
915  * Helper function for early_platform_init() / early_platform_init_buffer()
916  */
917 int __init early_platform_driver_register(struct early_platform_driver *epdrv,
918                                           char *buf)
919 {
920         char *tmp;
921         int n;
922
923         /* Simply add the driver to the end of the global list.
924          * Drivers will by default be put on the list in compiled-in order.
925          */
926         if (!epdrv->list.next) {
927                 INIT_LIST_HEAD(&epdrv->list);
928                 list_add_tail(&epdrv->list, &early_platform_driver_list);
929         }
930
931         /* If the user has specified device then make sure the driver
932          * gets prioritized. The driver of the last device specified on
933          * command line will be put first on the list.
934          */
935         n = strlen(epdrv->pdrv->driver.name);
936         if (buf && !strncmp(buf, epdrv->pdrv->driver.name, n)) {
937                 list_move(&epdrv->list, &early_platform_driver_list);
938
939                 /* Allow passing parameters after device name */
940                 if (buf[n] == '\0' || buf[n] == ',')
941                         epdrv->requested_id = -1;
942                 else {
943                         epdrv->requested_id = simple_strtoul(&buf[n + 1],
944                                                              &tmp, 10);
945
946                         if (buf[n] != '.' || (tmp == &buf[n + 1])) {
947                                 epdrv->requested_id = EARLY_PLATFORM_ID_ERROR;
948                                 n = 0;
949                         } else
950                                 n += strcspn(&buf[n + 1], ",") + 1;
951                 }
952
953                 if (buf[n] == ',')
954                         n++;
955
956                 if (epdrv->bufsize) {
957                         memcpy(epdrv->buffer, &buf[n],
958                                min_t(int, epdrv->bufsize, strlen(&buf[n]) + 1));
959                         epdrv->buffer[epdrv->bufsize - 1] = '\0';
960                 }
961         }
962
963         return 0;
964 }
965
966 /**
967  * early_platform_add_devices - adds a number of early platform devices
968  * @devs: array of early platform devices to add
969  * @num: number of early platform devices in array
970  *
971  * Used by early architecture code to register early platform devices and
972  * their platform data.
973  */
974 void __init early_platform_add_devices(struct platform_device **devs, int num)
975 {
976         struct device *dev;
977         int i;
978
979         /* simply add the devices to list */
980         for (i = 0; i < num; i++) {
981                 dev = &devs[i]->dev;
982
983                 if (!dev->devres_head.next) {
984                         pm_runtime_early_init(dev);
985                         INIT_LIST_HEAD(&dev->devres_head);
986                         list_add_tail(&dev->devres_head,
987                                       &early_platform_device_list);
988                 }
989         }
990 }
991
992 /**
993  * early_platform_driver_register_all - register early platform drivers
994  * @class_str: string to identify early platform driver class
995  *
996  * Used by architecture code to register all early platform drivers
997  * for a certain class. If omitted then only early platform drivers
998  * with matching kernel command line class parameters will be registered.
999  */
1000 void __init early_platform_driver_register_all(char *class_str)
1001 {
1002         /* The "class_str" parameter may or may not be present on the kernel
1003          * command line. If it is present then there may be more than one
1004          * matching parameter.
1005          *
1006          * Since we register our early platform drivers using early_param()
1007          * we need to make sure that they also get registered in the case
1008          * when the parameter is missing from the kernel command line.
1009          *
1010          * We use parse_early_options() to make sure the early_param() gets
1011          * called at least once. The early_param() may be called more than
1012          * once since the name of the preferred device may be specified on
1013          * the kernel command line. early_platform_driver_register() handles
1014          * this case for us.
1015          */
1016         parse_early_options(class_str);
1017 }
1018
1019 /**
1020  * early_platform_match - find early platform device matching driver
1021  * @epdrv: early platform driver structure
1022  * @id: id to match against
1023  */
1024 static  __init struct platform_device *
1025 early_platform_match(struct early_platform_driver *epdrv, int id)
1026 {
1027         struct platform_device *pd;
1028
1029         list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1030                 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1031                         if (pd->id == id)
1032                                 return pd;
1033
1034         return NULL;
1035 }
1036
1037 /**
1038  * early_platform_left - check if early platform driver has matching devices
1039  * @epdrv: early platform driver structure
1040  * @id: return true if id or above exists
1041  */
1042 static  __init int early_platform_left(struct early_platform_driver *epdrv,
1043                                        int id)
1044 {
1045         struct platform_device *pd;
1046
1047         list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1048                 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1049                         if (pd->id >= id)
1050                                 return 1;
1051
1052         return 0;
1053 }
1054
1055 /**
1056  * early_platform_driver_probe_id - probe drivers matching class_str and id
1057  * @class_str: string to identify early platform driver class
1058  * @id: id to match against
1059  * @nr_probe: number of platform devices to successfully probe before exiting
1060  */
1061 static int __init early_platform_driver_probe_id(char *class_str,
1062                                                  int id,
1063                                                  int nr_probe)
1064 {
1065         struct early_platform_driver *epdrv;
1066         struct platform_device *match;
1067         int match_id;
1068         int n = 0;
1069         int left = 0;
1070
1071         list_for_each_entry(epdrv, &early_platform_driver_list, list) {
1072                 /* only use drivers matching our class_str */
1073                 if (strcmp(class_str, epdrv->class_str))
1074                         continue;
1075
1076                 if (id == -2) {
1077                         match_id = epdrv->requested_id;
1078                         left = 1;
1079
1080                 } else {
1081                         match_id = id;
1082                         left += early_platform_left(epdrv, id);
1083
1084                         /* skip requested id */
1085                         switch (epdrv->requested_id) {
1086                         case EARLY_PLATFORM_ID_ERROR:
1087                         case EARLY_PLATFORM_ID_UNSET:
1088                                 break;
1089                         default:
1090                                 if (epdrv->requested_id == id)
1091                                         match_id = EARLY_PLATFORM_ID_UNSET;
1092                         }
1093                 }
1094
1095                 switch (match_id) {
1096                 case EARLY_PLATFORM_ID_ERROR:
1097                         pr_warning("%s: unable to parse %s parameter\n",
1098                                    class_str, epdrv->pdrv->driver.name);
1099                         /* fall-through */
1100                 case EARLY_PLATFORM_ID_UNSET:
1101                         match = NULL;
1102                         break;
1103                 default:
1104                         match = early_platform_match(epdrv, match_id);
1105                 }
1106
1107                 if (match) {
1108                         /*
1109                          * Set up a sensible init_name to enable
1110                          * dev_name() and others to be used before the
1111                          * rest of the driver core is initialized.
1112                          */
1113                         if (!match->dev.init_name && slab_is_available()) {
1114                                 if (match->id != -1)
1115                                         match->dev.init_name =
1116                                                 kasprintf(GFP_KERNEL, "%s.%d",
1117                                                           match->name,
1118                                                           match->id);
1119                                 else
1120                                         match->dev.init_name =
1121                                                 kasprintf(GFP_KERNEL, "%s",
1122                                                           match->name);
1123
1124                                 if (!match->dev.init_name)
1125                                         return -ENOMEM;
1126                         }
1127
1128                         if (epdrv->pdrv->probe(match))
1129                                 pr_warning("%s: unable to probe %s early.\n",
1130                                            class_str, match->name);
1131                         else
1132                                 n++;
1133                 }
1134
1135                 if (n >= nr_probe)
1136                         break;
1137         }
1138
1139         if (left)
1140                 return n;
1141         else
1142                 return -ENODEV;
1143 }
1144
1145 /**
1146  * early_platform_driver_probe - probe a class of registered drivers
1147  * @class_str: string to identify early platform driver class
1148  * @nr_probe: number of platform devices to successfully probe before exiting
1149  * @user_only: only probe user specified early platform devices
1150  *
1151  * Used by architecture code to probe registered early platform drivers
1152  * within a certain class. For probe to happen a registered early platform
1153  * device matching a registered early platform driver is needed.
1154  */
1155 int __init early_platform_driver_probe(char *class_str,
1156                                        int nr_probe,
1157                                        int user_only)
1158 {
1159         int k, n, i;
1160
1161         n = 0;
1162         for (i = -2; n < nr_probe; i++) {
1163                 k = early_platform_driver_probe_id(class_str, i, nr_probe - n);
1164
1165                 if (k < 0)
1166                         break;
1167
1168                 n += k;
1169
1170                 if (user_only)
1171                         break;
1172         }
1173
1174         return n;
1175 }
1176
1177 /**
1178  * early_platform_cleanup - clean up early platform code
1179  */
1180 void __init early_platform_cleanup(void)
1181 {
1182         struct platform_device *pd, *pd2;
1183
1184         /* clean up the devres list used to chain devices */
1185         list_for_each_entry_safe(pd, pd2, &early_platform_device_list,
1186                                  dev.devres_head) {
1187                 list_del(&pd->dev.devres_head);
1188                 memset(&pd->dev.devres_head, 0, sizeof(pd->dev.devres_head));
1189         }
1190 }
1191