blob: 6c743b6008d90ab83dc18c4adcdb7eb5fd719133 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Russell Kingd052d1b2005-10-29 19:07:23 +010013#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/dma-mapping.h>
17#include <linux/bootmem.h>
18#include <linux/err.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010021#include "base.h"
22
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080023#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
24 driver))
Russell King00d3dcd2005-11-09 17:23:39 +000025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026struct device platform_bus = {
27 .bus_id = "platform",
28};
Dmitry Torokhova96b2042005-12-10 01:36:28 -050029EXPORT_SYMBOL_GPL(platform_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080032 * platform_get_resource - get a resource for a device
33 * @dev: platform device
34 * @type: resource type
35 * @num: resource index
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080037struct resource *platform_get_resource(struct platform_device *dev,
38 unsigned int type, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 int i;
41
42 for (i = 0; i < dev->num_resources; i++) {
43 struct resource *r = &dev->resource[i];
44
Magnus Dammc9f66162008-10-15 22:05:15 -070045 if (type == resource_type(r) && num-- == 0)
46 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 }
48 return NULL;
49}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050050EXPORT_SYMBOL_GPL(platform_get_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080053 * platform_get_irq - get an IRQ for a device
54 * @dev: platform device
55 * @num: IRQ number index
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 */
57int platform_get_irq(struct platform_device *dev, unsigned int num)
58{
59 struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num);
60
David Vrabel305b3222006-01-19 17:52:27 +000061 return r ? r->start : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050063EXPORT_SYMBOL_GPL(platform_get_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080066 * platform_get_resource_byname - get a resource for a device by name
67 * @dev: platform device
68 * @type: resource type
69 * @name: resource name
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080071struct resource *platform_get_resource_byname(struct platform_device *dev,
72 unsigned int type, char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 int i;
75
76 for (i = 0; i < dev->num_resources; i++) {
77 struct resource *r = &dev->resource[i];
78
Magnus Dammc9f66162008-10-15 22:05:15 -070079 if (type == resource_type(r) && !strcmp(r->name, name))
80 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
82 return NULL;
83}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050084EXPORT_SYMBOL_GPL(platform_get_resource_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080087 * platform_get_irq - get an IRQ for a device
88 * @dev: platform device
89 * @name: IRQ name
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 */
91int platform_get_irq_byname(struct platform_device *dev, char *name)
92{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080093 struct resource *r = platform_get_resource_byname(dev, IORESOURCE_IRQ,
94 name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
David Vrabel305b3222006-01-19 17:52:27 +000096 return r ? r->start : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050098EXPORT_SYMBOL_GPL(platform_get_irq_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800101 * platform_add_devices - add a numbers of platform devices
102 * @devs: array of platform devices to add
103 * @num: number of platform devices in array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
105int platform_add_devices(struct platform_device **devs, int num)
106{
107 int i, ret = 0;
108
109 for (i = 0; i < num; i++) {
110 ret = platform_device_register(devs[i]);
111 if (ret) {
112 while (--i >= 0)
113 platform_device_unregister(devs[i]);
114 break;
115 }
116 }
117
118 return ret;
119}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500120EXPORT_SYMBOL_GPL(platform_add_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Russell King37c12e72005-11-05 21:19:33 +0000122struct platform_object {
123 struct platform_device pdev;
124 char name[1];
125};
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800128 * platform_device_put
129 * @pdev: platform device to free
Russell King37c12e72005-11-05 21:19:33 +0000130 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800131 * Free all memory associated with a platform device. This function must
132 * _only_ be externally called in error cases. All other usage is a bug.
Russell King37c12e72005-11-05 21:19:33 +0000133 */
134void platform_device_put(struct platform_device *pdev)
135{
136 if (pdev)
137 put_device(&pdev->dev);
138}
139EXPORT_SYMBOL_GPL(platform_device_put);
140
141static void platform_device_release(struct device *dev)
142{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800143 struct platform_object *pa = container_of(dev, struct platform_object,
144 pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000145
146 kfree(pa->pdev.dev.platform_data);
147 kfree(pa->pdev.resource);
148 kfree(pa);
149}
150
151/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800152 * platform_device_alloc
153 * @name: base name of the device we're adding
154 * @id: instance id
Russell King37c12e72005-11-05 21:19:33 +0000155 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800156 * Create a platform device object which can have other objects attached
157 * to it, and which will have attached objects freed when it is released.
Russell King37c12e72005-11-05 21:19:33 +0000158 */
Jean Delvare13595552007-09-09 12:54:16 +0200159struct platform_device *platform_device_alloc(const char *name, int id)
Russell King37c12e72005-11-05 21:19:33 +0000160{
161 struct platform_object *pa;
162
163 pa = kzalloc(sizeof(struct platform_object) + strlen(name), GFP_KERNEL);
164 if (pa) {
165 strcpy(pa->name, name);
166 pa->pdev.name = pa->name;
167 pa->pdev.id = id;
168 device_initialize(&pa->pdev.dev);
169 pa->pdev.dev.release = platform_device_release;
170 }
171
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500172 return pa ? &pa->pdev : NULL;
Russell King37c12e72005-11-05 21:19:33 +0000173}
174EXPORT_SYMBOL_GPL(platform_device_alloc);
175
176/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800177 * platform_device_add_resources
178 * @pdev: platform device allocated by platform_device_alloc to add resources to
179 * @res: set of resources that needs to be allocated for the device
180 * @num: number of resources
Russell King37c12e72005-11-05 21:19:33 +0000181 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800182 * Add a copy of the resources to the platform device. The memory
183 * associated with the resources will be freed when the platform device is
184 * released.
Russell King37c12e72005-11-05 21:19:33 +0000185 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800186int platform_device_add_resources(struct platform_device *pdev,
187 struct resource *res, unsigned int num)
Russell King37c12e72005-11-05 21:19:33 +0000188{
189 struct resource *r;
190
191 r = kmalloc(sizeof(struct resource) * num, GFP_KERNEL);
192 if (r) {
193 memcpy(r, res, sizeof(struct resource) * num);
194 pdev->resource = r;
195 pdev->num_resources = num;
196 }
197 return r ? 0 : -ENOMEM;
198}
199EXPORT_SYMBOL_GPL(platform_device_add_resources);
200
201/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800202 * platform_device_add_data
203 * @pdev: platform device allocated by platform_device_alloc to add resources to
204 * @data: platform specific data for this platform device
205 * @size: size of platform specific data
Russell King37c12e72005-11-05 21:19:33 +0000206 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800207 * Add a copy of platform specific data to the platform device's
208 * platform_data pointer. The memory associated with the platform data
209 * will be freed when the platform device is released.
Russell King37c12e72005-11-05 21:19:33 +0000210 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800211int platform_device_add_data(struct platform_device *pdev, const void *data,
212 size_t size)
Russell King37c12e72005-11-05 21:19:33 +0000213{
214 void *d;
215
216 d = kmalloc(size, GFP_KERNEL);
217 if (d) {
218 memcpy(d, data, size);
219 pdev->dev.platform_data = d;
220 }
221 return d ? 0 : -ENOMEM;
222}
223EXPORT_SYMBOL_GPL(platform_device_add_data);
224
225/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800226 * platform_device_add - add a platform device to device hierarchy
227 * @pdev: platform device we're adding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800229 * This is part 2 of platform_device_register(), though may be called
230 * separately _iff_ pdev was allocated by platform_device_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Russell King37c12e72005-11-05 21:19:33 +0000232int platform_device_add(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 int i, ret = 0;
235
236 if (!pdev)
237 return -EINVAL;
238
239 if (!pdev->dev.parent)
240 pdev->dev.parent = &platform_bus;
241
242 pdev->dev.bus = &platform_bus_type;
243
244 if (pdev->id != -1)
Jean Delvare13595552007-09-09 12:54:16 +0200245 snprintf(pdev->dev.bus_id, BUS_ID_SIZE, "%s.%d", pdev->name,
246 pdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 else
248 strlcpy(pdev->dev.bus_id, pdev->name, BUS_ID_SIZE);
249
250 for (i = 0; i < pdev->num_resources; i++) {
251 struct resource *p, *r = &pdev->resource[i];
252
253 if (r->name == NULL)
254 r->name = pdev->dev.bus_id;
255
256 p = r->parent;
257 if (!p) {
Magnus Dammc9f66162008-10-15 22:05:15 -0700258 if (resource_type(r) == IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 p = &iomem_resource;
Magnus Dammc9f66162008-10-15 22:05:15 -0700260 else if (resource_type(r) == IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 p = &ioport_resource;
262 }
263
Kumar Galad960bb42005-11-28 10:15:39 -0600264 if (p && insert_resource(p, r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 printk(KERN_ERR
266 "%s: failed to claim resource %d\n",
267 pdev->dev.bus_id, i);
268 ret = -EBUSY;
269 goto failed;
270 }
271 }
272
273 pr_debug("Registering platform device '%s'. Parent at %s\n",
274 pdev->dev.bus_id, pdev->dev.parent->bus_id);
275
Russell Kinge3915532006-05-06 08:15:26 +0100276 ret = device_add(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (ret == 0)
278 return ret;
279
280 failed:
Magnus Dammc9f66162008-10-15 22:05:15 -0700281 while (--i >= 0) {
282 struct resource *r = &pdev->resource[i];
283 unsigned long type = resource_type(r);
284
285 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
286 release_resource(r);
287 }
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return ret;
290}
Russell King37c12e72005-11-05 21:19:33 +0000291EXPORT_SYMBOL_GPL(platform_device_add);
292
293/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800294 * platform_device_del - remove a platform-level device
295 * @pdev: platform device we're removing
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500296 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800297 * Note that this function will also release all memory- and port-based
298 * resources owned by the device (@dev->resource). This function must
299 * _only_ be externally called in error cases. All other usage is a bug.
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500300 */
301void platform_device_del(struct platform_device *pdev)
302{
303 int i;
304
305 if (pdev) {
Jean Delvaredc4c15d2007-05-02 20:55:54 +0200306 device_del(&pdev->dev);
307
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500308 for (i = 0; i < pdev->num_resources; i++) {
309 struct resource *r = &pdev->resource[i];
Magnus Dammc9f66162008-10-15 22:05:15 -0700310 unsigned long type = resource_type(r);
311
312 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500313 release_resource(r);
314 }
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500315 }
316}
317EXPORT_SYMBOL_GPL(platform_device_del);
318
319/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800320 * platform_device_register - add a platform-level device
321 * @pdev: platform device we're adding
Russell King37c12e72005-11-05 21:19:33 +0000322 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800323int platform_device_register(struct platform_device *pdev)
Russell King37c12e72005-11-05 21:19:33 +0000324{
325 device_initialize(&pdev->dev);
326 return platform_device_add(pdev);
327}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500328EXPORT_SYMBOL_GPL(platform_device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800331 * platform_device_unregister - unregister a platform-level device
332 * @pdev: platform device we're unregistering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800334 * Unregistration is done in 2 steps. First we release all resources
335 * and remove it from the subsystem, then we drop reference count by
336 * calling platform_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800338void platform_device_unregister(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500340 platform_device_del(pdev);
341 platform_device_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500343EXPORT_SYMBOL_GPL(platform_device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800346 * platform_device_register_simple
347 * @name: base name of the device we're adding
348 * @id: instance id
349 * @res: set of resources that needs to be allocated for the device
350 * @num: number of resources
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800352 * This function creates a simple platform device that requires minimal
353 * resource and memory management. Canned release function freeing memory
354 * allocated for the device allows drivers using such devices to be
355 * unloaded without waiting for the last reference to the device to be
356 * dropped.
David Brownell49a4ec12007-05-08 00:29:39 -0700357 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800358 * This interface is primarily intended for use with legacy drivers which
359 * probe hardware directly. Because such drivers create sysfs device nodes
360 * themselves, rather than letting system infrastructure handle such device
361 * enumeration tasks, they don't fully conform to the Linux driver model.
362 * In particular, when such drivers are built as modules, they can't be
363 * "hotplugged".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800365struct platform_device *platform_device_register_simple(const char *name,
366 int id,
367 struct resource *res,
368 unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
Russell King37c12e72005-11-05 21:19:33 +0000370 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 int retval;
372
Russell King37c12e72005-11-05 21:19:33 +0000373 pdev = platform_device_alloc(name, id);
374 if (!pdev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 retval = -ENOMEM;
376 goto error;
377 }
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (num) {
Russell King37c12e72005-11-05 21:19:33 +0000380 retval = platform_device_add_resources(pdev, res, num);
381 if (retval)
382 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
Russell King37c12e72005-11-05 21:19:33 +0000385 retval = platform_device_add(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (retval)
387 goto error;
388
Russell King37c12e72005-11-05 21:19:33 +0000389 return pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391error:
Russell King37c12e72005-11-05 21:19:33 +0000392 platform_device_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return ERR_PTR(retval);
394}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500395EXPORT_SYMBOL_GPL(platform_device_register_simple);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700397/**
398 * platform_device_register_data
399 * @parent: parent device for the device we're adding
400 * @name: base name of the device we're adding
401 * @id: instance id
402 * @data: platform specific data for this platform device
403 * @size: size of platform specific data
404 *
405 * This function creates a simple platform device that requires minimal
406 * resource and memory management. Canned release function freeing memory
407 * allocated for the device allows drivers using such devices to be
408 * unloaded without waiting for the last reference to the device to be
409 * dropped.
410 */
411struct platform_device *platform_device_register_data(
412 struct device *parent,
413 const char *name, int id,
414 const void *data, size_t size)
415{
416 struct platform_device *pdev;
417 int retval;
418
419 pdev = platform_device_alloc(name, id);
420 if (!pdev) {
421 retval = -ENOMEM;
422 goto error;
423 }
424
425 pdev->dev.parent = parent;
426
427 if (size) {
428 retval = platform_device_add_data(pdev, data, size);
429 if (retval)
430 goto error;
431 }
432
433 retval = platform_device_add(pdev);
434 if (retval)
435 goto error;
436
437 return pdev;
438
439error:
440 platform_device_put(pdev);
441 return ERR_PTR(retval);
442}
443
Russell King00d3dcd2005-11-09 17:23:39 +0000444static int platform_drv_probe(struct device *_dev)
445{
446 struct platform_driver *drv = to_platform_driver(_dev->driver);
447 struct platform_device *dev = to_platform_device(_dev);
448
449 return drv->probe(dev);
450}
451
David Brownellc67334f2006-11-16 23:28:47 -0800452static int platform_drv_probe_fail(struct device *_dev)
453{
454 return -ENXIO;
455}
456
Russell King00d3dcd2005-11-09 17:23:39 +0000457static int platform_drv_remove(struct device *_dev)
458{
459 struct platform_driver *drv = to_platform_driver(_dev->driver);
460 struct platform_device *dev = to_platform_device(_dev);
461
462 return drv->remove(dev);
463}
464
465static void platform_drv_shutdown(struct device *_dev)
466{
467 struct platform_driver *drv = to_platform_driver(_dev->driver);
468 struct platform_device *dev = to_platform_device(_dev);
469
470 drv->shutdown(dev);
471}
472
473static int platform_drv_suspend(struct device *_dev, pm_message_t state)
474{
475 struct platform_driver *drv = to_platform_driver(_dev->driver);
476 struct platform_device *dev = to_platform_device(_dev);
477
478 return drv->suspend(dev, state);
479}
480
481static int platform_drv_resume(struct device *_dev)
482{
483 struct platform_driver *drv = to_platform_driver(_dev->driver);
484 struct platform_device *dev = to_platform_device(_dev);
485
486 return drv->resume(dev);
487}
488
489/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800490 * platform_driver_register
491 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000492 */
493int platform_driver_register(struct platform_driver *drv)
494{
495 drv->driver.bus = &platform_bus_type;
496 if (drv->probe)
497 drv->driver.probe = platform_drv_probe;
498 if (drv->remove)
499 drv->driver.remove = platform_drv_remove;
500 if (drv->shutdown)
501 drv->driver.shutdown = platform_drv_shutdown;
502 if (drv->suspend)
503 drv->driver.suspend = platform_drv_suspend;
504 if (drv->resume)
505 drv->driver.resume = platform_drv_resume;
506 return driver_register(&drv->driver);
507}
508EXPORT_SYMBOL_GPL(platform_driver_register);
509
510/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800511 * platform_driver_unregister
512 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000513 */
514void platform_driver_unregister(struct platform_driver *drv)
515{
516 driver_unregister(&drv->driver);
517}
518EXPORT_SYMBOL_GPL(platform_driver_unregister);
519
David Brownellc67334f2006-11-16 23:28:47 -0800520/**
521 * platform_driver_probe - register driver for non-hotpluggable device
522 * @drv: platform driver structure
523 * @probe: the driver probe routine, probably from an __init section
524 *
525 * Use this instead of platform_driver_register() when you know the device
526 * is not hotpluggable and has already been registered, and you want to
527 * remove its run-once probe() infrastructure from memory after the driver
528 * has bound to the device.
529 *
530 * One typical use for this would be with drivers for controllers integrated
531 * into system-on-chip processors, where the controller devices have been
532 * configured as part of board setup.
533 *
534 * Returns zero if the driver registered and bound to a device, else returns
535 * a negative error code and with the driver not registered.
536 */
Andrew Mortonc63e0782006-12-04 14:56:36 -0800537int __init_or_module platform_driver_probe(struct platform_driver *drv,
David Brownellc67334f2006-11-16 23:28:47 -0800538 int (*probe)(struct platform_device *))
539{
540 int retval, code;
541
542 /* temporary section violation during probe() */
543 drv->probe = probe;
544 retval = code = platform_driver_register(drv);
545
546 /* Fixup that section violation, being paranoid about code scanning
547 * the list of drivers in order to probe new devices. Check to see
548 * if the probe was successful, and make sure any forced probes of
549 * new devices fail.
550 */
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700551 spin_lock(&platform_bus_type.p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800552 drv->probe = NULL;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800553 if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
David Brownellc67334f2006-11-16 23:28:47 -0800554 retval = -ENODEV;
555 drv->driver.probe = platform_drv_probe_fail;
Greg Kroah-Hartmanc6f7e722007-11-01 19:41:16 -0700556 spin_unlock(&platform_bus_type.p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800557
558 if (code != retval)
559 platform_driver_unregister(drv);
560 return retval;
561}
562EXPORT_SYMBOL_GPL(platform_driver_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
David Brownella0245f72006-05-29 10:37:33 -0700564/* modalias support enables more hands-off userspace setup:
565 * (a) environment variable lets new-style hotplug events work once system is
566 * fully running: "modprobe $MODALIAS"
567 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
568 * mishandled before system is fully running: "modprobe $(cat modalias)"
569 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800570static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
571 char *buf)
David Brownella0245f72006-05-29 10:37:33 -0700572{
573 struct platform_device *pdev = to_platform_device(dev);
Kay Sievers43cc71e2007-08-18 04:40:39 +0200574 int len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700575
576 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
577}
578
579static struct device_attribute platform_dev_attrs[] = {
580 __ATTR_RO(modalias),
581 __ATTR_NULL,
582};
583
Kay Sievers7eff2e72007-08-14 15:15:12 +0200584static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownella0245f72006-05-29 10:37:33 -0700585{
586 struct platform_device *pdev = to_platform_device(dev);
587
Kay Sievers7eff2e72007-08-14 15:15:12 +0200588 add_uevent_var(env, "MODALIAS=platform:%s", pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700589 return 0;
590}
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800593 * platform_match - bind platform device to platform driver.
594 * @dev: device.
595 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800597 * Platform device IDs are assumed to be encoded like this:
598 * "<name><instance>", where <name> is a short description of the type of
599 * device, like "pci" or "floppy", and <instance> is the enumerated
600 * instance of the device, like '0' or '42'. Driver IDs are simply
601 * "<name>". So, extract the <name> from the platform_device structure,
602 * and compare it against the name of the driver. Return whether they match
603 * or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800605static int platform_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800607 struct platform_device *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800609 pdev = container_of(dev, struct platform_device, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return (strncmp(pdev->name, drv->name, BUS_ID_SIZE) == 0);
611}
612
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200613#ifdef CONFIG_PM_SLEEP
614
615static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 int ret = 0;
618
Russell King9480e302005-10-28 09:52:56 -0700619 if (dev->driver && dev->driver->suspend)
David Brownell386415d2006-09-03 13:16:45 -0700620 ret = dev->driver->suspend(dev, mesg);
621
622 return ret;
623}
624
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200625static int platform_legacy_suspend_late(struct device *dev, pm_message_t mesg)
David Brownell386415d2006-09-03 13:16:45 -0700626{
627 struct platform_driver *drv = to_platform_driver(dev->driver);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800628 struct platform_device *pdev;
David Brownell386415d2006-09-03 13:16:45 -0700629 int ret = 0;
630
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800631 pdev = container_of(dev, struct platform_device, dev);
David Brownell386415d2006-09-03 13:16:45 -0700632 if (dev->driver && drv->suspend_late)
633 ret = drv->suspend_late(pdev, mesg);
634
635 return ret;
636}
637
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200638static int platform_legacy_resume_early(struct device *dev)
David Brownell386415d2006-09-03 13:16:45 -0700639{
640 struct platform_driver *drv = to_platform_driver(dev->driver);
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800641 struct platform_device *pdev;
David Brownell386415d2006-09-03 13:16:45 -0700642 int ret = 0;
643
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800644 pdev = container_of(dev, struct platform_device, dev);
David Brownell386415d2006-09-03 13:16:45 -0700645 if (dev->driver && drv->resume_early)
646 ret = drv->resume_early(pdev);
Russell King9480e302005-10-28 09:52:56 -0700647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return ret;
649}
650
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200651static int platform_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
653 int ret = 0;
654
Russell King9480e302005-10-28 09:52:56 -0700655 if (dev->driver && dev->driver->resume)
656 ret = dev->driver->resume(dev);
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return ret;
659}
660
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200661static int platform_pm_prepare(struct device *dev)
662{
663 struct device_driver *drv = dev->driver;
664 int ret = 0;
665
666 if (drv && drv->pm && drv->pm->prepare)
667 ret = drv->pm->prepare(dev);
668
669 return ret;
670}
671
672static void platform_pm_complete(struct device *dev)
673{
674 struct device_driver *drv = dev->driver;
675
676 if (drv && drv->pm && drv->pm->complete)
677 drv->pm->complete(dev);
678}
679
680#ifdef CONFIG_SUSPEND
681
682static int platform_pm_suspend(struct device *dev)
683{
684 struct device_driver *drv = dev->driver;
685 int ret = 0;
686
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200687 if (!drv)
688 return 0;
689
690 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200691 if (drv->pm->suspend)
692 ret = drv->pm->suspend(dev);
693 } else {
694 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
695 }
696
697 return ret;
698}
699
700static int platform_pm_suspend_noirq(struct device *dev)
701{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200702 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200703 int ret = 0;
704
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200705 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200706 return 0;
707
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200708 if (drv->pm) {
709 if (drv->pm->suspend_noirq)
710 ret = drv->pm->suspend_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200711 } else {
712 ret = platform_legacy_suspend_late(dev, PMSG_SUSPEND);
713 }
714
715 return ret;
716}
717
718static int platform_pm_resume(struct device *dev)
719{
720 struct device_driver *drv = dev->driver;
721 int ret = 0;
722
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200723 if (!drv)
724 return 0;
725
726 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200727 if (drv->pm->resume)
728 ret = drv->pm->resume(dev);
729 } else {
730 ret = platform_legacy_resume(dev);
731 }
732
733 return ret;
734}
735
736static int platform_pm_resume_noirq(struct device *dev)
737{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200738 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200739 int ret = 0;
740
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200741 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200742 return 0;
743
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200744 if (drv->pm) {
745 if (drv->pm->resume_noirq)
746 ret = drv->pm->resume_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200747 } else {
748 ret = platform_legacy_resume_early(dev);
749 }
750
751 return ret;
752}
753
754#else /* !CONFIG_SUSPEND */
755
756#define platform_pm_suspend NULL
757#define platform_pm_resume NULL
758#define platform_pm_suspend_noirq NULL
759#define platform_pm_resume_noirq NULL
760
761#endif /* !CONFIG_SUSPEND */
762
763#ifdef CONFIG_HIBERNATION
764
765static int platform_pm_freeze(struct device *dev)
766{
767 struct device_driver *drv = dev->driver;
768 int ret = 0;
769
770 if (!drv)
771 return 0;
772
773 if (drv->pm) {
774 if (drv->pm->freeze)
775 ret = drv->pm->freeze(dev);
776 } else {
777 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
778 }
779
780 return ret;
781}
782
783static int platform_pm_freeze_noirq(struct device *dev)
784{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200785 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200786 int ret = 0;
787
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200788 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200789 return 0;
790
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200791 if (drv->pm) {
792 if (drv->pm->freeze_noirq)
793 ret = drv->pm->freeze_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200794 } else {
795 ret = platform_legacy_suspend_late(dev, PMSG_FREEZE);
796 }
797
798 return ret;
799}
800
801static int platform_pm_thaw(struct device *dev)
802{
803 struct device_driver *drv = dev->driver;
804 int ret = 0;
805
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200806 if (!drv)
807 return 0;
808
809 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200810 if (drv->pm->thaw)
811 ret = drv->pm->thaw(dev);
812 } else {
813 ret = platform_legacy_resume(dev);
814 }
815
816 return ret;
817}
818
819static int platform_pm_thaw_noirq(struct device *dev)
820{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200821 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200822 int ret = 0;
823
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200824 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200825 return 0;
826
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200827 if (drv->pm) {
828 if (drv->pm->thaw_noirq)
829 ret = drv->pm->thaw_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200830 } else {
831 ret = platform_legacy_resume_early(dev);
832 }
833
834 return ret;
835}
836
837static int platform_pm_poweroff(struct device *dev)
838{
839 struct device_driver *drv = dev->driver;
840 int ret = 0;
841
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200842 if (!drv)
843 return 0;
844
845 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200846 if (drv->pm->poweroff)
847 ret = drv->pm->poweroff(dev);
848 } else {
849 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
850 }
851
852 return ret;
853}
854
855static int platform_pm_poweroff_noirq(struct device *dev)
856{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200857 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200858 int ret = 0;
859
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200860 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200861 return 0;
862
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200863 if (drv->pm) {
864 if (drv->pm->poweroff_noirq)
865 ret = drv->pm->poweroff_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200866 } else {
867 ret = platform_legacy_suspend_late(dev, PMSG_HIBERNATE);
868 }
869
870 return ret;
871}
872
873static int platform_pm_restore(struct device *dev)
874{
875 struct device_driver *drv = dev->driver;
876 int ret = 0;
877
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200878 if (!drv)
879 return 0;
880
881 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200882 if (drv->pm->restore)
883 ret = drv->pm->restore(dev);
884 } else {
885 ret = platform_legacy_resume(dev);
886 }
887
888 return ret;
889}
890
891static int platform_pm_restore_noirq(struct device *dev)
892{
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200893 struct device_driver *drv = dev->driver;
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200894 int ret = 0;
895
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200896 if (!drv)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200897 return 0;
898
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200899 if (drv->pm) {
900 if (drv->pm->restore_noirq)
901 ret = drv->pm->restore_noirq(dev);
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200902 } else {
903 ret = platform_legacy_resume_early(dev);
904 }
905
906 return ret;
907}
908
909#else /* !CONFIG_HIBERNATION */
910
911#define platform_pm_freeze NULL
912#define platform_pm_thaw NULL
913#define platform_pm_poweroff NULL
914#define platform_pm_restore NULL
915#define platform_pm_freeze_noirq NULL
916#define platform_pm_thaw_noirq NULL
917#define platform_pm_poweroff_noirq NULL
918#define platform_pm_restore_noirq NULL
919
920#endif /* !CONFIG_HIBERNATION */
921
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200922static struct dev_pm_ops platform_dev_pm_ops = {
923 .prepare = platform_pm_prepare,
924 .complete = platform_pm_complete,
925 .suspend = platform_pm_suspend,
926 .resume = platform_pm_resume,
927 .freeze = platform_pm_freeze,
928 .thaw = platform_pm_thaw,
929 .poweroff = platform_pm_poweroff,
930 .restore = platform_pm_restore,
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200931 .suspend_noirq = platform_pm_suspend_noirq,
932 .resume_noirq = platform_pm_resume_noirq,
933 .freeze_noirq = platform_pm_freeze_noirq,
934 .thaw_noirq = platform_pm_thaw_noirq,
935 .poweroff_noirq = platform_pm_poweroff_noirq,
936 .restore_noirq = platform_pm_restore_noirq,
937};
938
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200939#define PLATFORM_PM_OPS_PTR (&platform_dev_pm_ops)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200940
941#else /* !CONFIG_PM_SLEEP */
942
943#define PLATFORM_PM_OPS_PTR NULL
944
945#endif /* !CONFIG_PM_SLEEP */
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947struct bus_type platform_bus_type = {
948 .name = "platform",
David Brownella0245f72006-05-29 10:37:33 -0700949 .dev_attrs = platform_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 .match = platform_match,
David Brownella0245f72006-05-29 10:37:33 -0700951 .uevent = platform_uevent,
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200952 .pm = PLATFORM_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953};
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500954EXPORT_SYMBOL_GPL(platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956int __init platform_bus_init(void)
957{
Cornelia Huckfbfb1442006-11-27 10:35:08 +0100958 int error;
959
960 error = device_register(&platform_bus);
961 if (error)
962 return error;
963 error = bus_register(&platform_bus_type);
964 if (error)
965 device_unregister(&platform_bus);
966 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967}
968
969#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
970u64 dma_get_required_mask(struct device *dev)
971{
972 u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT);
973 u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT));
974 u64 mask;
975
976 if (!high_totalram) {
977 /* convert to mask just covering totalram */
978 low_totalram = (1 << (fls(low_totalram) - 1));
979 low_totalram += low_totalram - 1;
980 mask = low_totalram;
981 } else {
982 high_totalram = (1 << (fls(high_totalram) - 1));
983 high_totalram += high_totalram - 1;
984 mask = (((u64)high_totalram) << 32) + 0xffffffff;
985 }
James Bottomleye88a0c22008-03-09 11:57:56 -0500986 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988EXPORT_SYMBOL_GPL(dma_get_required_mask);
989#endif