blob: ea9ab33dfe71b1ca6bf9e181973cb9b56fd55d49 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * 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 _DEVICE_H_
12#define _DEVICE_H_
13
14#include <linux/config.h>
15#include <linux/ioport.h>
16#include <linux/kobject.h>
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -080017#include <linux/klist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/list.h>
19#include <linux/types.h>
20#include <linux/module.h>
21#include <linux/pm.h>
22#include <asm/semaphore.h>
23#include <asm/atomic.h>
24
25#define DEVICE_NAME_SIZE 50
26#define DEVICE_NAME_HALF __stringify(20) /* Less than half to accommodate slop */
27#define DEVICE_ID_SIZE 32
28#define BUS_ID_SIZE KOBJ_NAME_LEN
29
30
31enum {
32 SUSPEND_NOTIFY,
33 SUSPEND_SAVE_STATE,
34 SUSPEND_DISABLE,
35 SUSPEND_POWER_DOWN,
36};
37
38enum {
39 RESUME_POWER_ON,
40 RESUME_RESTORE_STATE,
41 RESUME_ENABLE,
42};
43
44struct device;
45struct device_driver;
46struct class;
47struct class_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49struct bus_type {
Dmitry Torokhov8d790d72005-04-26 02:34:05 -050050 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 struct subsystem subsys;
53 struct kset drivers;
54 struct kset devices;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -080055 struct klist klist_devices;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -080056 struct klist klist_drivers;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 struct bus_attribute * bus_attrs;
59 struct device_attribute * dev_attrs;
60 struct driver_attribute * drv_attrs;
61
62 int (*match)(struct device * dev, struct device_driver * drv);
63 int (*hotplug) (struct device *dev, char **envp,
64 int num_envp, char *buffer, int buffer_size);
65 int (*suspend)(struct device * dev, pm_message_t state);
66 int (*resume)(struct device * dev);
67};
68
69extern int bus_register(struct bus_type * bus);
70extern void bus_unregister(struct bus_type * bus);
71
72extern int bus_rescan_devices(struct bus_type * bus);
73
74extern struct bus_type * get_bus(struct bus_type * bus);
75extern void put_bus(struct bus_type * bus);
76
77extern struct bus_type * find_bus(char * name);
78
79/* iterator helpers for buses */
80
81int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data,
82 int (*fn)(struct device *, void *));
83
84int bus_for_each_drv(struct bus_type * bus, struct device_driver * start,
85 void * data, int (*fn)(struct device_driver *, void *));
86
87
88/* driverfs interface for exporting bus attributes */
89
90struct bus_attribute {
91 struct attribute attr;
92 ssize_t (*show)(struct bus_type *, char * buf);
93 ssize_t (*store)(struct bus_type *, const char * buf, size_t count);
94};
95
96#define BUS_ATTR(_name,_mode,_show,_store) \
97struct bus_attribute bus_attr_##_name = __ATTR(_name,_mode,_show,_store)
98
99extern int bus_create_file(struct bus_type *, struct bus_attribute *);
100extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
101
102struct device_driver {
Dmitry Torokhov8d790d72005-04-26 02:34:05 -0500103 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct bus_type * bus;
105
106 struct completion unloaded;
107 struct kobject kobj;
108 struct list_head devices;
mochel@digitalimplant.org38fdac32005-03-21 12:00:18 -0800109 struct klist_node knode_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Dmitry Torokhov8d790d72005-04-26 02:34:05 -0500111 struct module * owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 int (*probe) (struct device * dev);
Dmitry Torokhov8d790d72005-04-26 02:34:05 -0500114 int (*remove) (struct device * dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 void (*shutdown) (struct device * dev);
116 int (*suspend) (struct device * dev, pm_message_t state, u32 level);
117 int (*resume) (struct device * dev, u32 level);
118};
119
120
121extern int driver_register(struct device_driver * drv);
122extern void driver_unregister(struct device_driver * drv);
123
124extern struct device_driver * get_driver(struct device_driver * drv);
125extern void put_driver(struct device_driver * drv);
126extern struct device_driver *driver_find(const char *name, struct bus_type *bus);
127
128
129/* driverfs interface for exporting driver attributes */
130
131struct driver_attribute {
132 struct attribute attr;
133 ssize_t (*show)(struct device_driver *, char * buf);
134 ssize_t (*store)(struct device_driver *, const char * buf, size_t count);
135};
136
137#define DRIVER_ATTR(_name,_mode,_show,_store) \
138struct driver_attribute driver_attr_##_name = __ATTR(_name,_mode,_show,_store)
139
140extern int driver_create_file(struct device_driver *, struct driver_attribute *);
141extern void driver_remove_file(struct device_driver *, struct driver_attribute *);
142
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800143extern int driver_for_each_device(struct device_driver * drv, struct device * start,
144 void * data, int (*fn)(struct device *, void *));
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/*
148 * device classes
149 */
150struct class {
Dmitry Torokhov8d790d72005-04-26 02:34:05 -0500151 const char * name;
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800152 struct module * owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 struct subsystem subsys;
155 struct list_head children;
156 struct list_head interfaces;
157 struct semaphore sem; /* locks both the children and interfaces lists */
158
159 struct class_attribute * class_attrs;
160 struct class_device_attribute * class_dev_attrs;
161
162 int (*hotplug)(struct class_device *dev, char **envp,
163 int num_envp, char *buffer, int buffer_size);
164
165 void (*release)(struct class_device *dev);
166 void (*class_release)(struct class *class);
167};
168
169extern int class_register(struct class *);
170extern void class_unregister(struct class *);
171
172extern struct class * class_get(struct class *);
173extern void class_put(struct class *);
174
175
176struct class_attribute {
177 struct attribute attr;
178 ssize_t (*show)(struct class *, char * buf);
179 ssize_t (*store)(struct class *, const char * buf, size_t count);
180};
181
182#define CLASS_ATTR(_name,_mode,_show,_store) \
183struct class_attribute class_attr_##_name = __ATTR(_name,_mode,_show,_store)
184
185extern int class_create_file(struct class *, const struct class_attribute *);
186extern void class_remove_file(struct class *, const struct class_attribute *);
187
188
189struct class_device {
190 struct list_head node;
191
192 struct kobject kobj;
193 struct class * class; /* required */
194 dev_t devt; /* dev_t, creates the sysfs "dev" */
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800195 struct class_device_attribute *devt_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct device * dev; /* not necessary, but nice to have */
197 void * class_data; /* class-specific data */
198
199 char class_id[BUS_ID_SIZE]; /* unique to this class */
200};
201
202static inline void *
203class_get_devdata (struct class_device *dev)
204{
205 return dev->class_data;
206}
207
208static inline void
209class_set_devdata (struct class_device *dev, void *data)
210{
211 dev->class_data = data;
212}
213
214
215extern int class_device_register(struct class_device *);
216extern void class_device_unregister(struct class_device *);
217extern void class_device_initialize(struct class_device *);
218extern int class_device_add(struct class_device *);
219extern void class_device_del(struct class_device *);
220
221extern int class_device_rename(struct class_device *, char *);
222
223extern struct class_device * class_device_get(struct class_device *);
224extern void class_device_put(struct class_device *);
225
226struct class_device_attribute {
227 struct attribute attr;
228 ssize_t (*show)(struct class_device *, char * buf);
229 ssize_t (*store)(struct class_device *, const char * buf, size_t count);
230};
231
232#define CLASS_DEVICE_ATTR(_name,_mode,_show,_store) \
233struct class_device_attribute class_device_attr_##_name = \
234 __ATTR(_name,_mode,_show,_store)
235
236extern int class_device_create_file(struct class_device *,
237 const struct class_device_attribute *);
238extern void class_device_remove_file(struct class_device *,
239 const struct class_device_attribute *);
240extern int class_device_create_bin_file(struct class_device *,
241 struct bin_attribute *);
242extern void class_device_remove_bin_file(struct class_device *,
243 struct bin_attribute *);
244
245struct class_interface {
246 struct list_head node;
247 struct class *class;
248
249 int (*add) (struct class_device *);
250 void (*remove) (struct class_device *);
251};
252
253extern int class_interface_register(struct class_interface *);
254extern void class_interface_unregister(struct class_interface *);
255
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800256extern struct class *class_create(struct module *owner, char *name);
257extern void class_destroy(struct class *cls);
258extern struct class_device *class_device_create(struct class *cls, dev_t devt,
259 struct device *device, char *fmt, ...)
260 __attribute__((format(printf,4,5)));
261extern void class_device_destroy(struct class *cls, dev_t devt);
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264struct device {
265 struct list_head node; /* node in sibling list */
266 struct list_head bus_list; /* node in bus's list */
267 struct list_head driver_list;
268 struct list_head children;
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -0800269 struct klist_node knode_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 struct device * parent;
271
272 struct kobject kobj;
273 char bus_id[BUS_ID_SIZE]; /* position on parent bus */
274
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800275 struct semaphore sem; /* semaphore to synchronize calls to
276 * its driver.
277 */
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct bus_type * bus; /* type of bus device is on */
280 struct device_driver *driver; /* which driver has allocated this
281 device */
282 void *driver_data; /* data private to the driver */
283 void *platform_data; /* Platform specific data (e.g. ACPI,
284 BIOS data relevant to device) */
285 struct dev_pm_info power;
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 u64 *dma_mask; /* dma mask (if dma'able device) */
288 u64 coherent_dma_mask;/* Like dma_mask, but for
289 alloc_coherent mappings as
290 not all hardware supports
291 64 bit addresses for consistent
292 allocations such descriptors. */
293
294 struct list_head dma_pools; /* dma pools (if dma'ble) */
295
296 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
297 override */
298
299 void (*release)(struct device * dev);
300};
301
302static inline struct device *
303list_to_dev(struct list_head *node)
304{
305 return list_entry(node, struct device, node);
306}
307
308static inline void *
309dev_get_drvdata (struct device *dev)
310{
311 return dev->driver_data;
312}
313
314static inline void
315dev_set_drvdata (struct device *dev, void *data)
316{
317 dev->driver_data = data;
318}
319
320/*
321 * High level routines for use by the bus drivers
322 */
323extern int device_register(struct device * dev);
324extern void device_unregister(struct device * dev);
325extern void device_initialize(struct device * dev);
326extern int device_add(struct device * dev);
327extern void device_del(struct device * dev);
328extern int device_for_each_child(struct device *, void *,
329 int (*fn)(struct device *, void *));
330
331/*
332 * Manual binding of a device to driver. See drivers/base/bus.c
333 * for information on use.
334 */
335extern int driver_probe_device(struct device_driver * drv, struct device * dev);
336extern void device_bind_driver(struct device * dev);
337extern void device_release_driver(struct device * dev);
338extern int device_attach(struct device * dev);
339extern void driver_attach(struct device_driver * drv);
340
341
342/* driverfs interface for exporting device attributes */
343
344struct device_attribute {
345 struct attribute attr;
346 ssize_t (*show)(struct device * dev, char * buf);
347 ssize_t (*store)(struct device * dev, const char * buf, size_t count);
348};
349
350#define DEVICE_ATTR(_name,_mode,_show,_store) \
351struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)
352
353
354extern int device_create_file(struct device *device, struct device_attribute * entry);
355extern void device_remove_file(struct device * dev, struct device_attribute * attr);
356
357/*
358 * Platform "fixup" functions - allow the platform to have their say
359 * about devices and actions that the general device layer doesn't
360 * know about.
361 */
362/* Notify platform of device discovery */
363extern int (*platform_notify)(struct device * dev);
364
365extern int (*platform_notify_remove)(struct device * dev);
366
367
368/**
369 * get_device - atomically increment the reference count for the device.
370 *
371 */
372extern struct device * get_device(struct device * dev);
373extern void put_device(struct device * dev);
374extern struct device *device_find(const char *name, struct bus_type *bus);
375
376
377/* drivers/base/platform.c */
378
379struct platform_device {
Dmitry Torokhov8d790d72005-04-26 02:34:05 -0500380 const char * name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 u32 id;
382 struct device dev;
383 u32 num_resources;
384 struct resource * resource;
385};
386
387#define to_platform_device(x) container_of((x), struct platform_device, dev)
388
389extern int platform_device_register(struct platform_device *);
390extern void platform_device_unregister(struct platform_device *);
391
392extern struct bus_type platform_bus_type;
393extern struct device platform_bus;
394
395extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
396extern int platform_get_irq(struct platform_device *, unsigned int);
397extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *);
398extern int platform_get_irq_byname(struct platform_device *, char *);
399extern int platform_add_devices(struct platform_device **, int);
400
401extern struct platform_device *platform_device_register_simple(char *, unsigned int, struct resource *, unsigned int);
402
403/* drivers/base/power.c */
404extern void device_shutdown(void);
405
406
407/* drivers/base/firmware.c */
408extern int firmware_register(struct subsystem *);
409extern void firmware_unregister(struct subsystem *);
410
411/* debugging and troubleshooting/diagnostic helpers. */
412#define dev_printk(level, dev, format, arg...) \
413 printk(level "%s %s: " format , (dev)->driver ? (dev)->driver->name : "" , (dev)->bus_id , ## arg)
414
415#ifdef DEBUG
416#define dev_dbg(dev, format, arg...) \
417 dev_printk(KERN_DEBUG , dev , format , ## arg)
418#else
419#define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0)
420#endif
421
422#define dev_err(dev, format, arg...) \
423 dev_printk(KERN_ERR , dev , format , ## arg)
424#define dev_info(dev, format, arg...) \
425 dev_printk(KERN_INFO , dev , format , ## arg)
426#define dev_warn(dev, format, arg...) \
427 dev_printk(KERN_WARNING , dev , format , ## arg)
428
429/* Create alias, so I can be autoloaded. */
430#define MODULE_ALIAS_CHARDEV(major,minor) \
431 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
432#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
433 MODULE_ALIAS("char-major-" __stringify(major) "-*")
434#endif /* _DEVICE_H_ */