blob: 3261681c82a45bb4ec68551bd6bb40bbef1935e3 [file] [log] [blame]
Russell Kingbbbf5082005-10-29 22:17:58 +01001/*
2 * platform_device.h - generic, centralized driver model
3 *
4 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
5 *
6 * This file is released under the GPLv2
7 *
8 * See Documentation/driver-model/ for more information.
9 */
10
11#ifndef _PLATFORM_DEVICE_H_
12#define _PLATFORM_DEVICE_H_
13
14#include <linux/device.h>
15
16struct platform_device {
17 const char * name;
Jean Delvare1359555e2007-09-09 12:54:16 +020018 int id;
Russell Kingbbbf5082005-10-29 22:17:58 +010019 struct device dev;
20 u32 num_resources;
21 struct resource * resource;
22};
23
24#define to_platform_device(x) container_of((x), struct platform_device, dev)
25
26extern int platform_device_register(struct platform_device *);
27extern void platform_device_unregister(struct platform_device *);
28
29extern struct bus_type platform_bus_type;
30extern struct device platform_bus;
31
32extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
33extern int platform_get_irq(struct platform_device *, unsigned int);
34extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *);
35extern int platform_get_irq_byname(struct platform_device *, char *);
36extern int platform_add_devices(struct platform_device **, int);
37
Stephen Rothwellae72cdd2008-01-11 17:24:53 +110038extern struct platform_device *platform_device_register_simple(const char *, int id,
Jean Delvare1359555e2007-09-09 12:54:16 +020039 struct resource *, unsigned int);
Russell Kingbbbf5082005-10-29 22:17:58 +010040
Jean Delvare1359555e2007-09-09 12:54:16 +020041extern struct platform_device *platform_device_alloc(const char *name, int id);
Russell King37c12e72005-11-05 21:19:33 +000042extern int platform_device_add_resources(struct platform_device *pdev, struct resource *res, unsigned int num);
Scott Wood6eefd342006-12-04 14:57:19 -080043extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size);
Russell King37c12e72005-11-05 21:19:33 +000044extern int platform_device_add(struct platform_device *pdev);
Dmitry Torokhov93ce3062005-12-10 01:36:27 -050045extern void platform_device_del(struct platform_device *pdev);
Russell King37c12e72005-11-05 21:19:33 +000046extern void platform_device_put(struct platform_device *pdev);
47
Russell King00d3dcd2005-11-09 17:23:39 +000048struct platform_driver {
49 int (*probe)(struct platform_device *);
50 int (*remove)(struct platform_device *);
51 void (*shutdown)(struct platform_device *);
52 int (*suspend)(struct platform_device *, pm_message_t state);
David Brownell386415d2006-09-03 13:16:45 -070053 int (*suspend_late)(struct platform_device *, pm_message_t state);
54 int (*resume_early)(struct platform_device *);
Russell King00d3dcd2005-11-09 17:23:39 +000055 int (*resume)(struct platform_device *);
56 struct device_driver driver;
57};
58
59extern int platform_driver_register(struct platform_driver *);
60extern void platform_driver_unregister(struct platform_driver *);
61
David Brownellc67334f2006-11-16 23:28:47 -080062/* non-hotpluggable platform devices may use this so that probe() and
63 * its support may live in __init sections, conserving runtime memory.
64 */
65extern int platform_driver_probe(struct platform_driver *driver,
66 int (*probe)(struct platform_device *));
67
Russell King00d3dcd2005-11-09 17:23:39 +000068#define platform_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev)
69#define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data))
70
Russell Kingbbbf5082005-10-29 22:17:58 +010071#endif /* _PLATFORM_DEVICE_H_ */