Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 16 | struct platform_device { |
| 17 | const char * name; |
| 18 | u32 id; |
| 19 | 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 | |
| 26 | extern int platform_device_register(struct platform_device *); |
| 27 | extern void platform_device_unregister(struct platform_device *); |
| 28 | |
| 29 | extern struct bus_type platform_bus_type; |
| 30 | extern struct device platform_bus; |
| 31 | |
| 32 | extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int); |
| 33 | extern int platform_get_irq(struct platform_device *, unsigned int); |
| 34 | extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *); |
| 35 | extern int platform_get_irq_byname(struct platform_device *, char *); |
| 36 | extern int platform_add_devices(struct platform_device **, int); |
| 37 | |
| 38 | extern struct platform_device *platform_device_register_simple(char *, unsigned int, struct resource *, unsigned int); |
| 39 | |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 40 | extern struct platform_device *platform_device_alloc(const char *name, unsigned int id); |
| 41 | extern int platform_device_add_resources(struct platform_device *pdev, struct resource *res, unsigned int num); |
Scott Wood | 6eefd34 | 2006-12-04 14:57:19 -0800 | [diff] [blame] | 42 | extern int platform_device_add_data(struct platform_device *pdev, const void *data, size_t size); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 43 | extern int platform_device_add(struct platform_device *pdev); |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 44 | extern void platform_device_del(struct platform_device *pdev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 45 | extern void platform_device_put(struct platform_device *pdev); |
| 46 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 47 | struct platform_driver { |
| 48 | int (*probe)(struct platform_device *); |
| 49 | int (*remove)(struct platform_device *); |
| 50 | void (*shutdown)(struct platform_device *); |
| 51 | int (*suspend)(struct platform_device *, pm_message_t state); |
David Brownell | 386415d | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 52 | int (*suspend_late)(struct platform_device *, pm_message_t state); |
| 53 | int (*resume_early)(struct platform_device *); |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 54 | int (*resume)(struct platform_device *); |
| 55 | struct device_driver driver; |
| 56 | }; |
| 57 | |
| 58 | extern int platform_driver_register(struct platform_driver *); |
| 59 | extern void platform_driver_unregister(struct platform_driver *); |
| 60 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 61 | /* non-hotpluggable platform devices may use this so that probe() and |
| 62 | * its support may live in __init sections, conserving runtime memory. |
| 63 | */ |
| 64 | extern int platform_driver_probe(struct platform_driver *driver, |
| 65 | int (*probe)(struct platform_device *)); |
| 66 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 67 | #define platform_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev) |
| 68 | #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data)) |
| 69 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 70 | #endif /* _PLATFORM_DEVICE_H_ */ |