blob: 8727e9c5eea47dd78170e091635f31d29fc7cb52 [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
Andrew Mortondaa41222009-08-06 16:00:44 -070013#include <linux/string.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010014#include <linux/platform_device.h>
Grant Likely05212152010-06-08 07:48:20 -060015#include <linux/of_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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>
Tim Schmielau4e57b682005-10-30 15:03:48 -080021#include <linux/slab.h>
Magnus Damm9d730222009-08-20 20:25:32 +020022#include <linux/pm_runtime.h>
Jean Delvare689ae232012-07-27 22:14:59 +020023#include <linux/idr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010025#include "base.h"
Rafael J. Wysockibed2b422012-08-06 01:45:11 +020026#include "power/power.h"
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010027
Jean Delvare689ae232012-07-27 22:14:59 +020028/* For automatically allocated device IDs */
29static DEFINE_IDA(platform_devid_ida);
30
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080031#define to_platform_driver(drv) (container_of((drv), struct platform_driver, \
32 driver))
Russell King00d3dcd2005-11-09 17:23:39 +000033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct device platform_bus = {
Kay Sievers1e0b2cf2008-10-30 01:36:48 +010035 .init_name = "platform",
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
Dmitry Torokhova96b2042005-12-10 01:36:28 -050037EXPORT_SYMBOL_GPL(platform_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/**
Kumar Galaa77ce812011-06-10 01:52:57 -050040 * arch_setup_pdev_archdata - Allow manipulation of archdata before its used
Randy Dunlap7de636f2011-07-27 12:11:25 -070041 * @pdev: platform device
Kumar Galaa77ce812011-06-10 01:52:57 -050042 *
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 */
54void __weak arch_setup_pdev_archdata(struct platform_device *pdev)
55{
56}
57
58/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080059 * platform_get_resource - get a resource for a device
60 * @dev: platform device
61 * @type: resource type
62 * @num: resource index
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080064struct resource *platform_get_resource(struct platform_device *dev,
65 unsigned int type, unsigned int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 int i;
68
69 for (i = 0; i < dev->num_resources; i++) {
70 struct resource *r = &dev->resource[i];
71
Magnus Dammc9f66162008-10-15 22:05:15 -070072 if (type == resource_type(r) && num-- == 0)
73 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 }
75 return NULL;
76}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050077EXPORT_SYMBOL_GPL(platform_get_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080080 * platform_get_irq - get an IRQ for a device
81 * @dev: platform device
82 * @num: IRQ number index
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84int platform_get_irq(struct platform_device *dev, unsigned int num)
85{
86 struct resource *r = platform_get_resource(dev, IORESOURCE_IRQ, num);
87
David Vrabel305b3222006-01-19 17:52:27 +000088 return r ? r->start : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
Dmitry Torokhova96b2042005-12-10 01:36:28 -050090EXPORT_SYMBOL_GPL(platform_get_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080093 * platform_get_resource_byname - get a resource for a device by name
94 * @dev: platform device
95 * @type: resource type
96 * @name: resource name
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -080098struct resource *platform_get_resource_byname(struct platform_device *dev,
Linus Walleijc0afe7b2009-04-27 02:38:16 +020099 unsigned int type,
100 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 int i;
103
104 for (i = 0; i < dev->num_resources; i++) {
105 struct resource *r = &dev->resource[i];
106
Peter Ujfalusi1b8cb922012-08-23 17:10:00 +0300107 if (unlikely(!r->name))
108 continue;
109
Magnus Dammc9f66162008-10-15 22:05:15 -0700110 if (type == resource_type(r) && !strcmp(r->name, name))
111 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 return NULL;
114}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500115EXPORT_SYMBOL_GPL(platform_get_resource_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800118 * platform_get_irq - get an IRQ for a device
119 * @dev: platform device
120 * @name: IRQ name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Linus Walleijc0afe7b2009-04-27 02:38:16 +0200122int platform_get_irq_byname(struct platform_device *dev, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800124 struct resource *r = platform_get_resource_byname(dev, IORESOURCE_IRQ,
125 name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
David Vrabel305b3222006-01-19 17:52:27 +0000127 return r ? r->start : -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500129EXPORT_SYMBOL_GPL(platform_get_irq_byname);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800132 * platform_add_devices - add a numbers of platform devices
133 * @devs: array of platform devices to add
134 * @num: number of platform devices in array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
136int platform_add_devices(struct platform_device **devs, int num)
137{
138 int i, ret = 0;
139
140 for (i = 0; i < num; i++) {
141 ret = platform_device_register(devs[i]);
142 if (ret) {
143 while (--i >= 0)
144 platform_device_unregister(devs[i]);
145 break;
146 }
147 }
148
149 return ret;
150}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500151EXPORT_SYMBOL_GPL(platform_add_devices);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Russell King37c12e72005-11-05 21:19:33 +0000153struct platform_object {
154 struct platform_device pdev;
155 char name[1];
156};
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000159 * platform_device_put - destroy a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800160 * @pdev: platform device to free
Russell King37c12e72005-11-05 21:19:33 +0000161 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800162 * Free all memory associated with a platform device. This function must
163 * _only_ be externally called in error cases. All other usage is a bug.
Russell King37c12e72005-11-05 21:19:33 +0000164 */
165void platform_device_put(struct platform_device *pdev)
166{
167 if (pdev)
168 put_device(&pdev->dev);
169}
170EXPORT_SYMBOL_GPL(platform_device_put);
171
172static void platform_device_release(struct device *dev)
173{
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800174 struct platform_object *pa = container_of(dev, struct platform_object,
175 pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000176
Grant Likely7096d042010-10-20 11:45:13 -0600177 of_device_node_put(&pa->pdev.dev);
Russell King37c12e72005-11-05 21:19:33 +0000178 kfree(pa->pdev.dev.platform_data);
Samuel Ortize710d7d2011-04-08 00:43:01 +0200179 kfree(pa->pdev.mfd_cell);
Russell King37c12e72005-11-05 21:19:33 +0000180 kfree(pa->pdev.resource);
181 kfree(pa);
182}
183
184/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000185 * platform_device_alloc - create a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800186 * @name: base name of the device we're adding
187 * @id: instance id
Russell King37c12e72005-11-05 21:19:33 +0000188 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800189 * Create a platform device object which can have other objects attached
190 * to it, and which will have attached objects freed when it is released.
Russell King37c12e72005-11-05 21:19:33 +0000191 */
Jean Delvare1359555e2007-09-09 12:54:16 +0200192struct platform_device *platform_device_alloc(const char *name, int id)
Russell King37c12e72005-11-05 21:19:33 +0000193{
194 struct platform_object *pa;
195
196 pa = kzalloc(sizeof(struct platform_object) + strlen(name), GFP_KERNEL);
197 if (pa) {
198 strcpy(pa->name, name);
199 pa->pdev.name = pa->name;
200 pa->pdev.id = id;
201 device_initialize(&pa->pdev.dev);
202 pa->pdev.dev.release = platform_device_release;
Kumar Galaa77ce812011-06-10 01:52:57 -0500203 arch_setup_pdev_archdata(&pa->pdev);
Russell King37c12e72005-11-05 21:19:33 +0000204 }
205
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500206 return pa ? &pa->pdev : NULL;
Russell King37c12e72005-11-05 21:19:33 +0000207}
208EXPORT_SYMBOL_GPL(platform_device_alloc);
209
210/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000211 * platform_device_add_resources - add resources to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800212 * @pdev: platform device allocated by platform_device_alloc to add resources to
213 * @res: set of resources that needs to be allocated for the device
214 * @num: number of resources
Russell King37c12e72005-11-05 21:19:33 +0000215 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800216 * Add a copy of the resources to the platform device. The memory
217 * associated with the resources will be freed when the platform device is
218 * released.
Russell King37c12e72005-11-05 21:19:33 +0000219 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800220int platform_device_add_resources(struct platform_device *pdev,
Geert Uytterhoeven0b7f1a72009-01-28 21:01:02 +0100221 const struct resource *res, unsigned int num)
Russell King37c12e72005-11-05 21:19:33 +0000222{
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200223 struct resource *r = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000224
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200225 if (res) {
226 r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
227 if (!r)
228 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000229 }
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200230
Uwe Kleine-König4a03d6f2011-04-20 09:44:45 +0200231 kfree(pdev->resource);
Uwe Kleine-Königcea89622011-04-20 09:44:44 +0200232 pdev->resource = r;
233 pdev->num_resources = num;
234 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000235}
236EXPORT_SYMBOL_GPL(platform_device_add_resources);
237
238/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000239 * platform_device_add_data - add platform-specific data to a platform device
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800240 * @pdev: platform device allocated by platform_device_alloc to add resources to
241 * @data: platform specific data for this platform device
242 * @size: size of platform specific data
Russell King37c12e72005-11-05 21:19:33 +0000243 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800244 * Add a copy of platform specific data to the platform device's
245 * platform_data pointer. The memory associated with the platform data
246 * will be freed when the platform device is released.
Russell King37c12e72005-11-05 21:19:33 +0000247 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800248int platform_device_add_data(struct platform_device *pdev, const void *data,
249 size_t size)
Russell King37c12e72005-11-05 21:19:33 +0000250{
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200251 void *d = NULL;
Russell King37c12e72005-11-05 21:19:33 +0000252
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200253 if (data) {
254 d = kmemdup(data, size, GFP_KERNEL);
255 if (!d)
256 return -ENOMEM;
Russell King37c12e72005-11-05 21:19:33 +0000257 }
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200258
Uwe Kleine-König251e0312011-04-20 09:44:43 +0200259 kfree(pdev->dev.platform_data);
Uwe Kleine-König27a33f92011-04-20 09:44:42 +0200260 pdev->dev.platform_data = d;
261 return 0;
Russell King37c12e72005-11-05 21:19:33 +0000262}
263EXPORT_SYMBOL_GPL(platform_device_add_data);
264
265/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800266 * platform_device_add - add a platform device to device hierarchy
267 * @pdev: platform device we're adding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800269 * This is part 2 of platform_device_register(), though may be called
270 * separately _iff_ pdev was allocated by platform_device_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
Russell King37c12e72005-11-05 21:19:33 +0000272int platform_device_add(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jean Delvare689ae232012-07-27 22:14:59 +0200274 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 if (!pdev)
277 return -EINVAL;
278
279 if (!pdev->dev.parent)
280 pdev->dev.parent = &platform_bus;
281
282 pdev->dev.bus = &platform_bus_type;
283
Jean Delvare689ae232012-07-27 22:14:59 +0200284 switch (pdev->id) {
285 default:
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100286 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
Jean Delvare689ae232012-07-27 22:14:59 +0200287 break;
288 case PLATFORM_DEVID_NONE:
Greg Kroah-Hartmanacc0e902009-06-02 15:39:55 -0700289 dev_set_name(&pdev->dev, "%s", pdev->name);
Jean Delvare689ae232012-07-27 22:14:59 +0200290 break;
291 case PLATFORM_DEVID_AUTO:
292 /*
293 * Automatically allocated device ID. We mark it as such so
294 * that we remember it must be freed, and we append a suffix
295 * to avoid namespace collision with explicit IDs.
296 */
297 ret = ida_simple_get(&platform_devid_ida, 0, 0, GFP_KERNEL);
298 if (ret < 0)
299 goto err_out;
300 pdev->id = ret;
301 pdev->id_auto = true;
302 dev_set_name(&pdev->dev, "%s.%d.auto", pdev->name, pdev->id);
303 break;
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 for (i = 0; i < pdev->num_resources; i++) {
307 struct resource *p, *r = &pdev->resource[i];
308
309 if (r->name == NULL)
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100310 r->name = dev_name(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 p = r->parent;
313 if (!p) {
Magnus Dammc9f66162008-10-15 22:05:15 -0700314 if (resource_type(r) == IORESOURCE_MEM)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 p = &iomem_resource;
Magnus Dammc9f66162008-10-15 22:05:15 -0700316 else if (resource_type(r) == IORESOURCE_IO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 p = &ioport_resource;
318 }
319
Kumar Galad960bb42005-11-28 10:15:39 -0600320 if (p && insert_resource(p, r)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 printk(KERN_ERR
322 "%s: failed to claim resource %d\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100323 dev_name(&pdev->dev), i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 ret = -EBUSY;
325 goto failed;
326 }
327 }
328
329 pr_debug("Registering platform device '%s'. Parent at %s\n",
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100330 dev_name(&pdev->dev), dev_name(pdev->dev.parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Russell Kinge3915532006-05-06 08:15:26 +0100332 ret = device_add(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (ret == 0)
334 return ret;
335
336 failed:
Jean Delvare689ae232012-07-27 22:14:59 +0200337 if (pdev->id_auto) {
338 ida_simple_remove(&platform_devid_ida, pdev->id);
339 pdev->id = PLATFORM_DEVID_AUTO;
340 }
341
Magnus Dammc9f66162008-10-15 22:05:15 -0700342 while (--i >= 0) {
343 struct resource *r = &pdev->resource[i];
344 unsigned long type = resource_type(r);
345
346 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
347 release_resource(r);
348 }
349
Jean Delvare689ae232012-07-27 22:14:59 +0200350 err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return ret;
352}
Russell King37c12e72005-11-05 21:19:33 +0000353EXPORT_SYMBOL_GPL(platform_device_add);
354
355/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800356 * platform_device_del - remove a platform-level device
357 * @pdev: platform device we're removing
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500358 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800359 * Note that this function will also release all memory- and port-based
360 * resources owned by the device (@dev->resource). This function must
361 * _only_ be externally called in error cases. All other usage is a bug.
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500362 */
363void platform_device_del(struct platform_device *pdev)
364{
365 int i;
366
367 if (pdev) {
Jean Delvaredc4c15d2007-05-02 20:55:54 +0200368 device_del(&pdev->dev);
369
Jean Delvare689ae232012-07-27 22:14:59 +0200370 if (pdev->id_auto) {
371 ida_simple_remove(&platform_devid_ida, pdev->id);
372 pdev->id = PLATFORM_DEVID_AUTO;
373 }
374
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500375 for (i = 0; i < pdev->num_resources; i++) {
376 struct resource *r = &pdev->resource[i];
Magnus Dammc9f66162008-10-15 22:05:15 -0700377 unsigned long type = resource_type(r);
378
379 if (type == IORESOURCE_MEM || type == IORESOURCE_IO)
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500380 release_resource(r);
381 }
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500382 }
383}
384EXPORT_SYMBOL_GPL(platform_device_del);
385
386/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800387 * platform_device_register - add a platform-level device
388 * @pdev: platform device we're adding
Russell King37c12e72005-11-05 21:19:33 +0000389 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800390int platform_device_register(struct platform_device *pdev)
Russell King37c12e72005-11-05 21:19:33 +0000391{
392 device_initialize(&pdev->dev);
Kumar Galaa77ce812011-06-10 01:52:57 -0500393 arch_setup_pdev_archdata(pdev);
Russell King37c12e72005-11-05 21:19:33 +0000394 return platform_device_add(pdev);
395}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500396EXPORT_SYMBOL_GPL(platform_device_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800399 * platform_device_unregister - unregister a platform-level device
400 * @pdev: platform device we're unregistering
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800402 * Unregistration is done in 2 steps. First we release all resources
403 * and remove it from the subsystem, then we drop reference count by
404 * calling platform_device_put().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800406void platform_device_unregister(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Dmitry Torokhov93ce3062005-12-10 01:36:27 -0500408 platform_device_del(pdev);
409 platform_device_put(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500411EXPORT_SYMBOL_GPL(platform_device_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/**
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200414 * platform_device_register_full - add a platform-level device with
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200415 * resources and platform-specific data
416 *
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200417 * @pdevinfo: data used to create device
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700418 *
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200419 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700420 */
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200421struct platform_device *platform_device_register_full(
Uwe Kleine-König5a3072b2011-12-08 22:53:29 +0100422 const struct platform_device_info *pdevinfo)
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700423{
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200424 int ret = -ENOMEM;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700425 struct platform_device *pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700426
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200427 pdev = platform_device_alloc(pdevinfo->name, pdevinfo->id);
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200428 if (!pdev)
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200429 goto err_alloc;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700430
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200431 pdev->dev.parent = pdevinfo->parent;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700432
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200433 if (pdevinfo->dma_mask) {
434 /*
435 * This memory isn't freed when the device is put,
436 * I don't have a nice idea for that though. Conceptually
437 * dma_mask in struct device should not be a pointer.
438 * See http://thread.gmane.org/gmane.linux.kernel.pci/9081
439 */
440 pdev->dev.dma_mask =
441 kmalloc(sizeof(*pdev->dev.dma_mask), GFP_KERNEL);
442 if (!pdev->dev.dma_mask)
443 goto err;
444
445 *pdev->dev.dma_mask = pdevinfo->dma_mask;
446 pdev->dev.coherent_dma_mask = pdevinfo->dma_mask;
447 }
448
449 ret = platform_device_add_resources(pdev,
450 pdevinfo->res, pdevinfo->num_res);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400451 if (ret)
452 goto err;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700453
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200454 ret = platform_device_add_data(pdev,
455 pdevinfo->data, pdevinfo->size_data);
Anton Vorontsov807508c2010-09-07 17:31:54 +0400456 if (ret)
457 goto err;
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200458
459 ret = platform_device_add(pdev);
460 if (ret) {
461err:
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200462 kfree(pdev->dev.dma_mask);
463
464err_alloc:
Uwe Kleine-König44f28bd2010-06-21 16:11:44 +0200465 platform_device_put(pdev);
466 return ERR_PTR(ret);
467 }
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700468
469 return pdev;
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700470}
Uwe Kleine-König01dcc602011-08-25 11:16:00 +0200471EXPORT_SYMBOL_GPL(platform_device_register_full);
Dmitry Baryshkovd8bf2542008-09-22 14:41:40 -0700472
Russell King00d3dcd2005-11-09 17:23:39 +0000473static int platform_drv_probe(struct device *_dev)
474{
475 struct platform_driver *drv = to_platform_driver(_dev->driver);
476 struct platform_device *dev = to_platform_device(_dev);
477
478 return drv->probe(dev);
479}
480
David Brownellc67334f2006-11-16 23:28:47 -0800481static int platform_drv_probe_fail(struct device *_dev)
482{
483 return -ENXIO;
484}
485
Russell King00d3dcd2005-11-09 17:23:39 +0000486static int platform_drv_remove(struct device *_dev)
487{
488 struct platform_driver *drv = to_platform_driver(_dev->driver);
489 struct platform_device *dev = to_platform_device(_dev);
490
491 return drv->remove(dev);
492}
493
494static void platform_drv_shutdown(struct device *_dev)
495{
496 struct platform_driver *drv = to_platform_driver(_dev->driver);
497 struct platform_device *dev = to_platform_device(_dev);
498
499 drv->shutdown(dev);
500}
501
Russell King00d3dcd2005-11-09 17:23:39 +0000502/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000503 * platform_driver_register - register a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800504 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000505 */
506int platform_driver_register(struct platform_driver *drv)
507{
508 drv->driver.bus = &platform_bus_type;
509 if (drv->probe)
510 drv->driver.probe = platform_drv_probe;
511 if (drv->remove)
512 drv->driver.remove = platform_drv_remove;
513 if (drv->shutdown)
514 drv->driver.shutdown = platform_drv_shutdown;
Magnus Damm783ea7d2009-06-04 22:13:33 +0200515
Russell King00d3dcd2005-11-09 17:23:39 +0000516 return driver_register(&drv->driver);
517}
518EXPORT_SYMBOL_GPL(platform_driver_register);
519
520/**
Ben Hutchings3c31f072010-02-14 14:18:53 +0000521 * platform_driver_unregister - unregister a driver for platform-level devices
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800522 * @drv: platform driver structure
Russell King00d3dcd2005-11-09 17:23:39 +0000523 */
524void platform_driver_unregister(struct platform_driver *drv)
525{
526 driver_unregister(&drv->driver);
527}
528EXPORT_SYMBOL_GPL(platform_driver_unregister);
529
David Brownellc67334f2006-11-16 23:28:47 -0800530/**
531 * platform_driver_probe - register driver for non-hotpluggable device
532 * @drv: platform driver structure
533 * @probe: the driver probe routine, probably from an __init section
534 *
535 * Use this instead of platform_driver_register() when you know the device
536 * is not hotpluggable and has already been registered, and you want to
537 * remove its run-once probe() infrastructure from memory after the driver
538 * has bound to the device.
539 *
540 * One typical use for this would be with drivers for controllers integrated
541 * into system-on-chip processors, where the controller devices have been
542 * configured as part of board setup.
543 *
544 * Returns zero if the driver registered and bound to a device, else returns
545 * a negative error code and with the driver not registered.
546 */
Andrew Mortonc63e0782006-12-04 14:56:36 -0800547int __init_or_module platform_driver_probe(struct platform_driver *drv,
David Brownellc67334f2006-11-16 23:28:47 -0800548 int (*probe)(struct platform_device *))
549{
550 int retval, code;
551
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700552 /* make sure driver won't have bind/unbind attributes */
553 drv->driver.suppress_bind_attrs = true;
554
David Brownellc67334f2006-11-16 23:28:47 -0800555 /* temporary section violation during probe() */
556 drv->probe = probe;
557 retval = code = platform_driver_register(drv);
558
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700559 /*
560 * Fixup that section violation, being paranoid about code scanning
David Brownellc67334f2006-11-16 23:28:47 -0800561 * the list of drivers in order to probe new devices. Check to see
562 * if the probe was successful, and make sure any forced probes of
563 * new devices fail.
564 */
Patrick Pannutod79d3242010-08-06 17:12:41 -0700565 spin_lock(&drv->driver.bus->p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800566 drv->probe = NULL;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800567 if (code == 0 && list_empty(&drv->driver.p->klist_devices.k_list))
David Brownellc67334f2006-11-16 23:28:47 -0800568 retval = -ENODEV;
569 drv->driver.probe = platform_drv_probe_fail;
Patrick Pannutod79d3242010-08-06 17:12:41 -0700570 spin_unlock(&drv->driver.bus->p->klist_drivers.k_lock);
David Brownellc67334f2006-11-16 23:28:47 -0800571
572 if (code != retval)
573 platform_driver_unregister(drv);
574 return retval;
575}
576EXPORT_SYMBOL_GPL(platform_driver_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800578/**
579 * platform_create_bundle - register driver and create corresponding device
580 * @driver: platform driver structure
581 * @probe: the driver probe routine, probably from an __init section
582 * @res: set of resources that needs to be allocated for the device
583 * @n_res: number of resources
584 * @data: platform specific data for this platform device
585 * @size: size of platform specific data
586 *
587 * Use this in legacy-style modules that probe hardware directly and
588 * register a single platform device and corresponding platform driver.
Jani Nikulaf0eae0e2010-03-11 18:11:45 +0200589 *
590 * Returns &struct platform_device pointer on success, or ERR_PTR() on error.
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800591 */
592struct platform_device * __init_or_module platform_create_bundle(
593 struct platform_driver *driver,
594 int (*probe)(struct platform_device *),
595 struct resource *res, unsigned int n_res,
596 const void *data, size_t size)
597{
598 struct platform_device *pdev;
599 int error;
600
601 pdev = platform_device_alloc(driver->driver.name, -1);
602 if (!pdev) {
603 error = -ENOMEM;
604 goto err_out;
605 }
606
Anton Vorontsov807508c2010-09-07 17:31:54 +0400607 error = platform_device_add_resources(pdev, res, n_res);
608 if (error)
609 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800610
Anton Vorontsov807508c2010-09-07 17:31:54 +0400611 error = platform_device_add_data(pdev, data, size);
612 if (error)
613 goto err_pdev_put;
Dmitry Torokhovecdf6ce2009-12-29 20:11:20 -0800614
615 error = platform_device_add(pdev);
616 if (error)
617 goto err_pdev_put;
618
619 error = platform_driver_probe(driver, probe);
620 if (error)
621 goto err_pdev_del;
622
623 return pdev;
624
625err_pdev_del:
626 platform_device_del(pdev);
627err_pdev_put:
628 platform_device_put(pdev);
629err_out:
630 return ERR_PTR(error);
631}
632EXPORT_SYMBOL_GPL(platform_create_bundle);
633
David Brownella0245f72006-05-29 10:37:33 -0700634/* modalias support enables more hands-off userspace setup:
635 * (a) environment variable lets new-style hotplug events work once system is
636 * fully running: "modprobe $MODALIAS"
637 * (b) sysfs attribute lets new-style coldplug recover from hotplug events
638 * mishandled before system is fully running: "modprobe $(cat modalias)"
639 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800640static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
641 char *buf)
David Brownella0245f72006-05-29 10:37:33 -0700642{
643 struct platform_device *pdev = to_platform_device(dev);
Kay Sievers43cc71e2007-08-18 04:40:39 +0200644 int len = snprintf(buf, PAGE_SIZE, "platform:%s\n", pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700645
646 return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
647}
648
649static struct device_attribute platform_dev_attrs[] = {
650 __ATTR_RO(modalias),
651 __ATTR_NULL,
652};
653
Kay Sievers7eff2e72007-08-14 15:15:12 +0200654static int platform_uevent(struct device *dev, struct kobj_uevent_env *env)
David Brownella0245f72006-05-29 10:37:33 -0700655{
656 struct platform_device *pdev = to_platform_device(dev);
Grant Likelyeca39302010-06-08 07:48:21 -0600657 int rc;
658
659 /* Some devices have extra OF data and an OF-style MODALIAS */
Grant Likely07d57a32012-02-01 11:22:22 -0700660 rc = of_device_uevent_modalias(dev,env);
Grant Likelyeca39302010-06-08 07:48:21 -0600661 if (rc != -ENODEV)
662 return rc;
David Brownella0245f72006-05-29 10:37:33 -0700663
Eric Miao57fee4a2009-02-04 11:52:40 +0800664 add_uevent_var(env, "MODALIAS=%s%s", PLATFORM_MODULE_PREFIX,
Sebastian Andrzej Siewior0a268132011-08-15 16:51:22 +0200665 pdev->name);
David Brownella0245f72006-05-29 10:37:33 -0700666 return 0;
667}
668
Eric Miao57fee4a2009-02-04 11:52:40 +0800669static const struct platform_device_id *platform_match_id(
Uwe Kleine-König831fad22010-01-26 09:35:00 +0100670 const struct platform_device_id *id,
Eric Miao57fee4a2009-02-04 11:52:40 +0800671 struct platform_device *pdev)
672{
673 while (id->name[0]) {
674 if (strcmp(pdev->name, id->name) == 0) {
675 pdev->id_entry = id;
676 return id;
677 }
678 id++;
679 }
680 return NULL;
681}
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/**
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800684 * platform_match - bind platform device to platform driver.
685 * @dev: device.
686 * @drv: driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 *
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800688 * Platform device IDs are assumed to be encoded like this:
689 * "<name><instance>", where <name> is a short description of the type of
690 * device, like "pci" or "floppy", and <instance> is the enumerated
691 * instance of the device, like '0' or '42'. Driver IDs are simply
692 * "<name>". So, extract the <name> from the platform_device structure,
693 * and compare it against the name of the driver. Return whether they match
694 * or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Greg Kroah-Hartman4a3ad202008-01-24 22:50:12 -0800696static int platform_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Eric Miao71b3e0c2009-01-31 22:47:44 +0800698 struct platform_device *pdev = to_platform_device(dev);
Eric Miao57fee4a2009-02-04 11:52:40 +0800699 struct platform_driver *pdrv = to_platform_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Grant Likely05212152010-06-08 07:48:20 -0600701 /* Attempt an OF style match first */
702 if (of_driver_match_device(dev, drv))
703 return 1;
704
705 /* Then try to match against the id table */
Eric Miao57fee4a2009-02-04 11:52:40 +0800706 if (pdrv->id_table)
707 return platform_match_id(pdrv->id_table, pdev) != NULL;
708
709 /* fall-back to driver name match */
Kay Sievers1e0b2cf2008-10-30 01:36:48 +0100710 return (strcmp(pdev->name, drv->name) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200713#ifdef CONFIG_PM_SLEEP
714
715static int platform_legacy_suspend(struct device *dev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Magnus Damm783ea7d2009-06-04 22:13:33 +0200717 struct platform_driver *pdrv = to_platform_driver(dev->driver);
718 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 int ret = 0;
720
Magnus Damm783ea7d2009-06-04 22:13:33 +0200721 if (dev->driver && pdrv->suspend)
722 ret = pdrv->suspend(pdev, mesg);
David Brownell386415d2006-09-03 13:16:45 -0700723
724 return ret;
725}
726
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200727static int platform_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Magnus Damm783ea7d2009-06-04 22:13:33 +0200729 struct platform_driver *pdrv = to_platform_driver(dev->driver);
730 struct platform_device *pdev = to_platform_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 int ret = 0;
732
Magnus Damm783ea7d2009-06-04 22:13:33 +0200733 if (dev->driver && pdrv->resume)
734 ret = pdrv->resume(pdev);
Russell King9480e302005-10-28 09:52:56 -0700735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return ret;
737}
738
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200739#endif /* CONFIG_PM_SLEEP */
Magnus Damm9d730222009-08-20 20:25:32 +0200740
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200741#ifdef CONFIG_SUSPEND
742
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200743int platform_pm_suspend(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200744{
745 struct device_driver *drv = dev->driver;
746 int ret = 0;
747
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200748 if (!drv)
749 return 0;
750
751 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200752 if (drv->pm->suspend)
753 ret = drv->pm->suspend(dev);
754 } else {
755 ret = platform_legacy_suspend(dev, PMSG_SUSPEND);
756 }
757
758 return ret;
759}
760
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200761int platform_pm_resume(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200762{
763 struct device_driver *drv = dev->driver;
764 int ret = 0;
765
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200766 if (!drv)
767 return 0;
768
769 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200770 if (drv->pm->resume)
771 ret = drv->pm->resume(dev);
772 } else {
773 ret = platform_legacy_resume(dev);
774 }
775
776 return ret;
777}
778
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200779#endif /* CONFIG_SUSPEND */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200780
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +0200781#ifdef CONFIG_HIBERNATE_CALLBACKS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200782
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200783int platform_pm_freeze(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200784{
785 struct device_driver *drv = dev->driver;
786 int ret = 0;
787
788 if (!drv)
789 return 0;
790
791 if (drv->pm) {
792 if (drv->pm->freeze)
793 ret = drv->pm->freeze(dev);
794 } else {
795 ret = platform_legacy_suspend(dev, PMSG_FREEZE);
796 }
797
798 return ret;
799}
800
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200801int platform_pm_thaw(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200802{
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
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200819int platform_pm_poweroff(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200820{
821 struct device_driver *drv = dev->driver;
822 int ret = 0;
823
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200824 if (!drv)
825 return 0;
826
827 if (drv->pm) {
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200828 if (drv->pm->poweroff)
829 ret = drv->pm->poweroff(dev);
830 } else {
831 ret = platform_legacy_suspend(dev, PMSG_HIBERNATE);
832 }
833
834 return ret;
835}
836
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200837int platform_pm_restore(struct device *dev)
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200838{
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->restore)
847 ret = drv->pm->restore(dev);
848 } else {
849 ret = platform_legacy_resume(dev);
850 }
851
852 return ret;
853}
854
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200855#endif /* CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200856
Dmitry Torokhovd9ab7712009-07-22 00:37:25 +0200857static const struct dev_pm_ops platform_dev_pm_ops = {
Rafael J. Wysocki8b313a32011-04-29 00:36:32 +0200858 .runtime_suspend = pm_generic_runtime_suspend,
859 .runtime_resume = pm_generic_runtime_resume,
860 .runtime_idle = pm_generic_runtime_idle,
Rafael J. Wysocki69c9dd12011-04-29 00:36:05 +0200861 USE_PLATFORM_PM_SLEEP_OPS
Rafael J. Wysocki25e18492008-05-21 01:40:43 +0200862};
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864struct bus_type platform_bus_type = {
865 .name = "platform",
David Brownella0245f72006-05-29 10:37:33 -0700866 .dev_attrs = platform_dev_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 .match = platform_match,
David Brownella0245f72006-05-29 10:37:33 -0700868 .uevent = platform_uevent,
Magnus Damm9d730222009-08-20 20:25:32 +0200869 .pm = &platform_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870};
Dmitry Torokhova96b2042005-12-10 01:36:28 -0500871EXPORT_SYMBOL_GPL(platform_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873int __init platform_bus_init(void)
874{
Cornelia Huckfbfb1442006-11-27 10:35:08 +0100875 int error;
876
Magnus Damm13977092009-03-30 14:37:25 -0700877 early_platform_cleanup();
878
Cornelia Huckfbfb1442006-11-27 10:35:08 +0100879 error = device_register(&platform_bus);
880 if (error)
881 return error;
882 error = bus_register(&platform_bus_type);
883 if (error)
884 device_unregister(&platform_bus);
885 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888#ifndef ARCH_HAS_DMA_GET_REQUIRED_MASK
889u64 dma_get_required_mask(struct device *dev)
890{
891 u32 low_totalram = ((max_pfn - 1) << PAGE_SHIFT);
892 u32 high_totalram = ((max_pfn - 1) >> (32 - PAGE_SHIFT));
893 u64 mask;
894
895 if (!high_totalram) {
896 /* convert to mask just covering totalram */
897 low_totalram = (1 << (fls(low_totalram) - 1));
898 low_totalram += low_totalram - 1;
899 mask = low_totalram;
900 } else {
901 high_totalram = (1 << (fls(high_totalram) - 1));
902 high_totalram += high_totalram - 1;
903 mask = (((u64)high_totalram) << 32) + 0xffffffff;
904 }
James Bottomleye88a0c22008-03-09 11:57:56 -0500905 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907EXPORT_SYMBOL_GPL(dma_get_required_mask);
908#endif
Magnus Damm13977092009-03-30 14:37:25 -0700909
910static __initdata LIST_HEAD(early_platform_driver_list);
911static __initdata LIST_HEAD(early_platform_device_list);
912
913/**
Magnus Damm4d26e1392010-03-10 20:50:38 +0900914 * early_platform_driver_register - register early platform driver
Randy Dunlapd86c1302009-04-21 07:22:53 -0700915 * @epdrv: early_platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -0700916 * @buf: string passed from early_param()
Magnus Damm4d26e1392010-03-10 20:50:38 +0900917 *
918 * Helper function for early_platform_init() / early_platform_init_buffer()
Magnus Damm13977092009-03-30 14:37:25 -0700919 */
920int __init early_platform_driver_register(struct early_platform_driver *epdrv,
921 char *buf)
922{
Magnus Dammc60e0502009-11-27 17:38:51 +0900923 char *tmp;
Magnus Damm13977092009-03-30 14:37:25 -0700924 int n;
925
926 /* Simply add the driver to the end of the global list.
927 * Drivers will by default be put on the list in compiled-in order.
928 */
929 if (!epdrv->list.next) {
930 INIT_LIST_HEAD(&epdrv->list);
931 list_add_tail(&epdrv->list, &early_platform_driver_list);
932 }
933
934 /* If the user has specified device then make sure the driver
935 * gets prioritized. The driver of the last device specified on
936 * command line will be put first on the list.
937 */
938 n = strlen(epdrv->pdrv->driver.name);
939 if (buf && !strncmp(buf, epdrv->pdrv->driver.name, n)) {
940 list_move(&epdrv->list, &early_platform_driver_list);
941
Magnus Dammc60e0502009-11-27 17:38:51 +0900942 /* Allow passing parameters after device name */
943 if (buf[n] == '\0' || buf[n] == ',')
Magnus Damm13977092009-03-30 14:37:25 -0700944 epdrv->requested_id = -1;
Magnus Dammc60e0502009-11-27 17:38:51 +0900945 else {
946 epdrv->requested_id = simple_strtoul(&buf[n + 1],
947 &tmp, 10);
948
949 if (buf[n] != '.' || (tmp == &buf[n + 1])) {
950 epdrv->requested_id = EARLY_PLATFORM_ID_ERROR;
951 n = 0;
952 } else
953 n += strcspn(&buf[n + 1], ",") + 1;
954 }
955
956 if (buf[n] == ',')
957 n++;
958
959 if (epdrv->bufsize) {
960 memcpy(epdrv->buffer, &buf[n],
961 min_t(int, epdrv->bufsize, strlen(&buf[n]) + 1));
962 epdrv->buffer[epdrv->bufsize - 1] = '\0';
963 }
Magnus Damm13977092009-03-30 14:37:25 -0700964 }
965
966 return 0;
967}
968
969/**
Magnus Damm4d26e1392010-03-10 20:50:38 +0900970 * early_platform_add_devices - adds a number of early platform devices
Magnus Damm13977092009-03-30 14:37:25 -0700971 * @devs: array of early platform devices to add
972 * @num: number of early platform devices in array
Magnus Damm4d26e1392010-03-10 20:50:38 +0900973 *
974 * Used by early architecture code to register early platform devices and
975 * their platform data.
Magnus Damm13977092009-03-30 14:37:25 -0700976 */
977void __init early_platform_add_devices(struct platform_device **devs, int num)
978{
979 struct device *dev;
980 int i;
981
982 /* simply add the devices to list */
983 for (i = 0; i < num; i++) {
984 dev = &devs[i]->dev;
985
986 if (!dev->devres_head.next) {
Rafael J. Wysockibed2b422012-08-06 01:45:11 +0200987 pm_runtime_early_init(dev);
Magnus Damm13977092009-03-30 14:37:25 -0700988 INIT_LIST_HEAD(&dev->devres_head);
989 list_add_tail(&dev->devres_head,
990 &early_platform_device_list);
991 }
992 }
993}
994
995/**
Magnus Damm4d26e1392010-03-10 20:50:38 +0900996 * early_platform_driver_register_all - register early platform drivers
Magnus Damm13977092009-03-30 14:37:25 -0700997 * @class_str: string to identify early platform driver class
Magnus Damm4d26e1392010-03-10 20:50:38 +0900998 *
999 * Used by architecture code to register all early platform drivers
1000 * for a certain class. If omitted then only early platform drivers
1001 * with matching kernel command line class parameters will be registered.
Magnus Damm13977092009-03-30 14:37:25 -07001002 */
1003void __init early_platform_driver_register_all(char *class_str)
1004{
1005 /* The "class_str" parameter may or may not be present on the kernel
1006 * command line. If it is present then there may be more than one
1007 * matching parameter.
1008 *
1009 * Since we register our early platform drivers using early_param()
1010 * we need to make sure that they also get registered in the case
1011 * when the parameter is missing from the kernel command line.
1012 *
1013 * We use parse_early_options() to make sure the early_param() gets
1014 * called at least once. The early_param() may be called more than
1015 * once since the name of the preferred device may be specified on
1016 * the kernel command line. early_platform_driver_register() handles
1017 * this case for us.
1018 */
1019 parse_early_options(class_str);
1020}
1021
1022/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001023 * early_platform_match - find early platform device matching driver
Randy Dunlapd86c1302009-04-21 07:22:53 -07001024 * @epdrv: early platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -07001025 * @id: id to match against
1026 */
1027static __init struct platform_device *
1028early_platform_match(struct early_platform_driver *epdrv, int id)
1029{
1030 struct platform_device *pd;
1031
1032 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1033 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1034 if (pd->id == id)
1035 return pd;
1036
1037 return NULL;
1038}
1039
1040/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001041 * early_platform_left - check if early platform driver has matching devices
Randy Dunlapd86c1302009-04-21 07:22:53 -07001042 * @epdrv: early platform driver structure
Magnus Damm13977092009-03-30 14:37:25 -07001043 * @id: return true if id or above exists
1044 */
1045static __init int early_platform_left(struct early_platform_driver *epdrv,
1046 int id)
1047{
1048 struct platform_device *pd;
1049
1050 list_for_each_entry(pd, &early_platform_device_list, dev.devres_head)
1051 if (platform_match(&pd->dev, &epdrv->pdrv->driver))
1052 if (pd->id >= id)
1053 return 1;
1054
1055 return 0;
1056}
1057
1058/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001059 * early_platform_driver_probe_id - probe drivers matching class_str and id
Magnus Damm13977092009-03-30 14:37:25 -07001060 * @class_str: string to identify early platform driver class
1061 * @id: id to match against
1062 * @nr_probe: number of platform devices to successfully probe before exiting
1063 */
1064static int __init early_platform_driver_probe_id(char *class_str,
1065 int id,
1066 int nr_probe)
1067{
1068 struct early_platform_driver *epdrv;
1069 struct platform_device *match;
1070 int match_id;
1071 int n = 0;
1072 int left = 0;
1073
1074 list_for_each_entry(epdrv, &early_platform_driver_list, list) {
1075 /* only use drivers matching our class_str */
1076 if (strcmp(class_str, epdrv->class_str))
1077 continue;
1078
1079 if (id == -2) {
1080 match_id = epdrv->requested_id;
1081 left = 1;
1082
1083 } else {
1084 match_id = id;
1085 left += early_platform_left(epdrv, id);
1086
1087 /* skip requested id */
1088 switch (epdrv->requested_id) {
1089 case EARLY_PLATFORM_ID_ERROR:
1090 case EARLY_PLATFORM_ID_UNSET:
1091 break;
1092 default:
1093 if (epdrv->requested_id == id)
1094 match_id = EARLY_PLATFORM_ID_UNSET;
1095 }
1096 }
1097
1098 switch (match_id) {
1099 case EARLY_PLATFORM_ID_ERROR:
1100 pr_warning("%s: unable to parse %s parameter\n",
1101 class_str, epdrv->pdrv->driver.name);
1102 /* fall-through */
1103 case EARLY_PLATFORM_ID_UNSET:
1104 match = NULL;
1105 break;
1106 default:
1107 match = early_platform_match(epdrv, match_id);
1108 }
1109
1110 if (match) {
Paul Mundta636ee72010-03-09 06:57:53 +00001111 /*
1112 * Set up a sensible init_name to enable
1113 * dev_name() and others to be used before the
1114 * rest of the driver core is initialized.
1115 */
Paul Mundt06fe53b2010-05-13 17:56:56 +09001116 if (!match->dev.init_name && slab_is_available()) {
Paul Mundta636ee72010-03-09 06:57:53 +00001117 if (match->id != -1)
Paul Mundtbd050862010-03-29 15:51:35 +09001118 match->dev.init_name =
1119 kasprintf(GFP_KERNEL, "%s.%d",
1120 match->name,
1121 match->id);
Paul Mundta636ee72010-03-09 06:57:53 +00001122 else
Paul Mundtbd050862010-03-29 15:51:35 +09001123 match->dev.init_name =
1124 kasprintf(GFP_KERNEL, "%s",
1125 match->name);
Paul Mundta636ee72010-03-09 06:57:53 +00001126
Paul Mundta636ee72010-03-09 06:57:53 +00001127 if (!match->dev.init_name)
1128 return -ENOMEM;
1129 }
Paul Mundtbd050862010-03-29 15:51:35 +09001130
Magnus Damm13977092009-03-30 14:37:25 -07001131 if (epdrv->pdrv->probe(match))
1132 pr_warning("%s: unable to probe %s early.\n",
1133 class_str, match->name);
1134 else
1135 n++;
1136 }
1137
1138 if (n >= nr_probe)
1139 break;
1140 }
1141
1142 if (left)
1143 return n;
1144 else
1145 return -ENODEV;
1146}
1147
1148/**
Magnus Damm4d26e1392010-03-10 20:50:38 +09001149 * early_platform_driver_probe - probe a class of registered drivers
Magnus Damm13977092009-03-30 14:37:25 -07001150 * @class_str: string to identify early platform driver class
1151 * @nr_probe: number of platform devices to successfully probe before exiting
1152 * @user_only: only probe user specified early platform devices
Magnus Damm4d26e1392010-03-10 20:50:38 +09001153 *
1154 * Used by architecture code to probe registered early platform drivers
1155 * within a certain class. For probe to happen a registered early platform
1156 * device matching a registered early platform driver is needed.
Magnus Damm13977092009-03-30 14:37:25 -07001157 */
1158int __init early_platform_driver_probe(char *class_str,
1159 int nr_probe,
1160 int user_only)
1161{
1162 int k, n, i;
1163
1164 n = 0;
1165 for (i = -2; n < nr_probe; i++) {
1166 k = early_platform_driver_probe_id(class_str, i, nr_probe - n);
1167
1168 if (k < 0)
1169 break;
1170
1171 n += k;
1172
1173 if (user_only)
1174 break;
1175 }
1176
1177 return n;
1178}
1179
1180/**
1181 * early_platform_cleanup - clean up early platform code
1182 */
1183void __init early_platform_cleanup(void)
1184{
1185 struct platform_device *pd, *pd2;
1186
1187 /* clean up the devres list used to chain devices */
1188 list_for_each_entry_safe(pd, pd2, &early_platform_device_list,
1189 dev.devres_head) {
1190 list_del(&pd->dev.devres_head);
1191 memset(&pd->dev.devres_head, 0, sizeof(pd->dev.devres_head));
1192 }
1193}
1194