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> |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 15 | #include <linux/mod_devicetable.h> |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 16 | |
| 17 | struct platform_device { |
| 18 | const char * name; |
Jean Delvare | 1359555 | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 19 | int id; |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 20 | struct device dev; |
| 21 | u32 num_resources; |
| 22 | struct resource * resource; |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 23 | |
| 24 | struct platform_device_id *id_entry; |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 25 | }; |
| 26 | |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 27 | #define platform_get_device_id(pdev) ((pdev)->id_entry) |
| 28 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 29 | #define to_platform_device(x) container_of((x), struct platform_device, dev) |
| 30 | |
| 31 | extern int platform_device_register(struct platform_device *); |
| 32 | extern void platform_device_unregister(struct platform_device *); |
| 33 | |
| 34 | extern struct bus_type platform_bus_type; |
| 35 | extern struct device platform_bus; |
| 36 | |
| 37 | extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int); |
| 38 | extern int platform_get_irq(struct platform_device *, unsigned int); |
Linus Walleij | c0afe7b | 2009-04-27 02:38:16 +0200 | [diff] [blame] | 39 | extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, const char *); |
| 40 | extern int platform_get_irq_byname(struct platform_device *, const char *); |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 41 | extern int platform_add_devices(struct platform_device **, int); |
| 42 | |
Stephen Rothwell | ae72cdd | 2008-01-11 17:24:53 +1100 | [diff] [blame] | 43 | extern struct platform_device *platform_device_register_simple(const char *, int id, |
Jean Delvare | 1359555 | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 44 | struct resource *, unsigned int); |
Dmitry Baryshkov | d8bf254 | 2008-09-22 14:41:40 -0700 | [diff] [blame] | 45 | extern struct platform_device *platform_device_register_data(struct device *, |
| 46 | const char *, int, const void *, size_t); |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 47 | |
Jean Delvare | 1359555 | 2007-09-09 12:54:16 +0200 | [diff] [blame] | 48 | extern struct platform_device *platform_device_alloc(const char *name, int id); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 49 | 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] | 50 | 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] | 51 | extern int platform_device_add(struct platform_device *pdev); |
Dmitry Torokhov | 93ce306 | 2005-12-10 01:36:27 -0500 | [diff] [blame] | 52 | extern void platform_device_del(struct platform_device *pdev); |
Russell King | 37c12e7 | 2005-11-05 21:19:33 +0000 | [diff] [blame] | 53 | extern void platform_device_put(struct platform_device *pdev); |
| 54 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 55 | struct platform_driver { |
| 56 | int (*probe)(struct platform_device *); |
| 57 | int (*remove)(struct platform_device *); |
| 58 | void (*shutdown)(struct platform_device *); |
| 59 | int (*suspend)(struct platform_device *, pm_message_t state); |
David Brownell | 386415d | 2006-09-03 13:16:45 -0700 | [diff] [blame] | 60 | int (*suspend_late)(struct platform_device *, pm_message_t state); |
| 61 | int (*resume_early)(struct platform_device *); |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 62 | int (*resume)(struct platform_device *); |
| 63 | struct device_driver driver; |
Eric Miao | 57fee4a | 2009-02-04 11:52:40 +0800 | [diff] [blame] | 64 | struct platform_device_id *id_table; |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | extern int platform_driver_register(struct platform_driver *); |
| 68 | extern void platform_driver_unregister(struct platform_driver *); |
| 69 | |
David Brownell | c67334f | 2006-11-16 23:28:47 -0800 | [diff] [blame] | 70 | /* non-hotpluggable platform devices may use this so that probe() and |
| 71 | * its support may live in __init sections, conserving runtime memory. |
| 72 | */ |
| 73 | extern int platform_driver_probe(struct platform_driver *driver, |
| 74 | int (*probe)(struct platform_device *)); |
| 75 | |
Russell King | 00d3dcd | 2005-11-09 17:23:39 +0000 | [diff] [blame] | 76 | #define platform_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev) |
| 77 | #define platform_set_drvdata(_dev,data) dev_set_drvdata(&(_dev)->dev, (data)) |
| 78 | |
Magnus Damm | 1397709 | 2009-03-30 14:37:25 -0700 | [diff] [blame] | 79 | /* early platform driver interface */ |
| 80 | struct early_platform_driver { |
| 81 | const char *class_str; |
| 82 | struct platform_driver *pdrv; |
| 83 | struct list_head list; |
| 84 | int requested_id; |
| 85 | }; |
| 86 | |
| 87 | #define EARLY_PLATFORM_ID_UNSET -2 |
| 88 | #define EARLY_PLATFORM_ID_ERROR -3 |
| 89 | |
| 90 | extern int early_platform_driver_register(struct early_platform_driver *epdrv, |
| 91 | char *buf); |
| 92 | extern void early_platform_add_devices(struct platform_device **devs, int num); |
| 93 | |
| 94 | static inline int is_early_platform_device(struct platform_device *pdev) |
| 95 | { |
| 96 | return !pdev->dev.driver; |
| 97 | } |
| 98 | |
| 99 | extern void early_platform_driver_register_all(char *class_str); |
| 100 | extern int early_platform_driver_probe(char *class_str, |
| 101 | int nr_probe, int user_only); |
| 102 | extern void early_platform_cleanup(void); |
| 103 | |
| 104 | |
| 105 | #ifndef MODULE |
| 106 | #define early_platform_init(class_string, platform_driver) \ |
| 107 | static __initdata struct early_platform_driver early_driver = { \ |
| 108 | .class_str = class_string, \ |
| 109 | .pdrv = platform_driver, \ |
| 110 | .requested_id = EARLY_PLATFORM_ID_UNSET, \ |
| 111 | }; \ |
| 112 | static int __init early_platform_driver_setup_func(char *buf) \ |
| 113 | { \ |
| 114 | return early_platform_driver_register(&early_driver, buf); \ |
| 115 | } \ |
| 116 | early_param(class_string, early_platform_driver_setup_func) |
| 117 | #else /* MODULE */ |
| 118 | #define early_platform_init(class_string, platform_driver) |
| 119 | #endif /* MODULE */ |
| 120 | |
Russell King | bbbf508 | 2005-10-29 22:17:58 +0100 | [diff] [blame] | 121 | #endif /* _PLATFORM_DEVICE_H_ */ |