]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/linux/device.h
driver core: add way to get to bus device klist
[karo-tx-linux.git] / include / linux / device.h
1 /*
2  * device.h - generic, centralized driver model
3  *
4  * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
5  * Copyright (c) 2004-2007 Greg Kroah-Hartman <gregkh@suse.de>
6  *
7  * This file is released under the GPLv2
8  *
9  * See Documentation/driver-model/ for more information.
10  */
11
12 #ifndef _DEVICE_H_
13 #define _DEVICE_H_
14
15 #include <linux/ioport.h>
16 #include <linux/kobject.h>
17 #include <linux/klist.h>
18 #include <linux/list.h>
19 #include <linux/compiler.h>
20 #include <linux/types.h>
21 #include <linux/module.h>
22 #include <linux/pm.h>
23 #include <asm/semaphore.h>
24 #include <asm/atomic.h>
25 #include <asm/device.h>
26
27 #define DEVICE_NAME_SIZE        50
28 #define DEVICE_NAME_HALF        __stringify(20) /* Less than half to accommodate slop */
29 #define DEVICE_ID_SIZE          32
30 #define BUS_ID_SIZE             KOBJ_NAME_LEN
31
32
33 struct device;
34 struct device_driver;
35 struct class;
36 struct class_device;
37 struct bus_type;
38
39 struct bus_attribute {
40         struct attribute        attr;
41         ssize_t (*show)(struct bus_type *, char * buf);
42         ssize_t (*store)(struct bus_type *, const char * buf, size_t count);
43 };
44
45 #define BUS_ATTR(_name,_mode,_show,_store)      \
46 struct bus_attribute bus_attr_##_name = __ATTR(_name,_mode,_show,_store)
47
48 extern int __must_check bus_create_file(struct bus_type *,
49                                         struct bus_attribute *);
50 extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
51
52 struct bus_type {
53         const char              * name;
54
55         struct kset             subsys;
56         struct kset             *drivers_kset;
57         struct kset             *devices_kset;
58         struct klist            klist_devices;
59         struct klist            klist_drivers;
60
61         struct blocking_notifier_head bus_notifier;
62
63         struct bus_attribute    * bus_attrs;
64         struct device_attribute * dev_attrs;
65         struct driver_attribute * drv_attrs;
66
67         int             (*match)(struct device * dev, struct device_driver * drv);
68         int             (*uevent)(struct device *dev, struct kobj_uevent_env *env);
69         int             (*probe)(struct device * dev);
70         int             (*remove)(struct device * dev);
71         void            (*shutdown)(struct device * dev);
72
73         int (*suspend)(struct device * dev, pm_message_t state);
74         int (*suspend_late)(struct device * dev, pm_message_t state);
75         int (*resume_early)(struct device * dev);
76         int (*resume)(struct device * dev);
77
78         unsigned int drivers_autoprobe:1;
79 };
80
81 extern int __must_check bus_register(struct bus_type * bus);
82 extern void bus_unregister(struct bus_type * bus);
83
84 extern int __must_check bus_rescan_devices(struct bus_type * bus);
85
86 /* iterator helpers for buses */
87
88 int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data,
89                      int (*fn)(struct device *, void *));
90 struct device * bus_find_device(struct bus_type *bus, struct device *start,
91                                 void *data, int (*match)(struct device *, void *));
92
93 int __must_check bus_for_each_drv(struct bus_type *bus,
94                 struct device_driver *start, void *data,
95                 int (*fn)(struct device_driver *, void *));
96
97 /*
98  * Bus notifiers: Get notified of addition/removal of devices
99  * and binding/unbinding of drivers to devices.
100  * In the long run, it should be a replacement for the platform
101  * notify hooks.
102  */
103 struct notifier_block;
104
105 extern int bus_register_notifier(struct bus_type *bus,
106                                  struct notifier_block *nb);
107 extern int bus_unregister_notifier(struct bus_type *bus,
108                                    struct notifier_block *nb);
109
110 /* All 4 notifers below get called with the target struct device *
111  * as an argument. Note that those functions are likely to be called
112  * with the device semaphore held in the core, so be careful.
113  */
114 #define BUS_NOTIFY_ADD_DEVICE           0x00000001 /* device added */
115 #define BUS_NOTIFY_DEL_DEVICE           0x00000002 /* device removed */
116 #define BUS_NOTIFY_BOUND_DRIVER         0x00000003 /* driver bound to device */
117 #define BUS_NOTIFY_UNBIND_DRIVER        0x00000004 /* driver about to be
118                                                       unbound */
119
120 extern struct kset *bus_get_kset(struct bus_type *bus);
121 extern struct klist *bus_get_device_klist(struct bus_type *bus);
122
123 struct device_driver {
124         const char              * name;
125         struct bus_type         * bus;
126
127         struct kobject          kobj;
128         struct klist            klist_devices;
129         struct klist_node       knode_bus;
130
131         struct module           * owner;
132         const char              * mod_name;     /* used for built-in modules */
133         struct module_kobject   * mkobj;
134
135         int     (*probe)        (struct device * dev);
136         int     (*remove)       (struct device * dev);
137         void    (*shutdown)     (struct device * dev);
138         int     (*suspend)      (struct device * dev, pm_message_t state);
139         int     (*resume)       (struct device * dev);
140 };
141
142
143 extern int __must_check driver_register(struct device_driver * drv);
144 extern void driver_unregister(struct device_driver * drv);
145
146 extern struct device_driver * get_driver(struct device_driver * drv);
147 extern void put_driver(struct device_driver * drv);
148 extern struct device_driver *driver_find(const char *name, struct bus_type *bus);
149 extern int driver_probe_done(void);
150
151 /* sysfs interface for exporting driver attributes */
152
153 struct driver_attribute {
154         struct attribute        attr;
155         ssize_t (*show)(struct device_driver *, char * buf);
156         ssize_t (*store)(struct device_driver *, const char * buf, size_t count);
157 };
158
159 #define DRIVER_ATTR(_name,_mode,_show,_store)   \
160 struct driver_attribute driver_attr_##_name = __ATTR(_name,_mode,_show,_store)
161
162 extern int __must_check driver_create_file(struct device_driver *,
163                                         struct driver_attribute *);
164 extern void driver_remove_file(struct device_driver *, struct driver_attribute *);
165
166 extern int __must_check driver_for_each_device(struct device_driver * drv,
167                 struct device *start, void *data,
168                 int (*fn)(struct device *, void *));
169 struct device * driver_find_device(struct device_driver *drv,
170                                    struct device *start, void *data,
171                                    int (*match)(struct device *, void *));
172
173 /*
174  * device classes
175  */
176 struct class {
177         const char              * name;
178         struct module           * owner;
179
180         struct kset             subsys;
181         struct list_head        children;
182         struct list_head        devices;
183         struct list_head        interfaces;
184         struct kset             class_dirs;
185         struct semaphore        sem;    /* locks both the children and interfaces lists */
186
187         struct class_attribute          * class_attrs;
188         struct class_device_attribute   * class_dev_attrs;
189         struct device_attribute         * dev_attrs;
190
191         int     (*uevent)(struct class_device *dev, struct kobj_uevent_env *env);
192         int     (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env);
193
194         void    (*release)(struct class_device *dev);
195         void    (*class_release)(struct class *class);
196         void    (*dev_release)(struct device *dev);
197
198         int     (*suspend)(struct device *, pm_message_t state);
199         int     (*resume)(struct device *);
200 };
201
202 extern int __must_check class_register(struct class *);
203 extern void class_unregister(struct class *);
204
205
206 struct class_attribute {
207         struct attribute        attr;
208         ssize_t (*show)(struct class *, char * buf);
209         ssize_t (*store)(struct class *, const char * buf, size_t count);
210 };
211
212 #define CLASS_ATTR(_name,_mode,_show,_store)                    \
213 struct class_attribute class_attr_##_name = __ATTR(_name,_mode,_show,_store) 
214
215 extern int __must_check class_create_file(struct class *,
216                                         const struct class_attribute *);
217 extern void class_remove_file(struct class *, const struct class_attribute *);
218
219 struct class_device_attribute {
220         struct attribute        attr;
221         ssize_t (*show)(struct class_device *, char * buf);
222         ssize_t (*store)(struct class_device *, const char * buf, size_t count);
223 };
224
225 #define CLASS_DEVICE_ATTR(_name,_mode,_show,_store)             \
226 struct class_device_attribute class_device_attr_##_name =       \
227         __ATTR(_name,_mode,_show,_store)
228
229 extern int __must_check class_device_create_file(struct class_device *,
230                                     const struct class_device_attribute *);
231
232 /**
233  * struct class_device - class devices
234  * @class: pointer to the parent class for this class device.  This is required.
235  * @devt: for internal use by the driver core only.
236  * @node: for internal use by the driver core only.
237  * @kobj: for internal use by the driver core only.
238  * @groups: optional additional groups to be created
239  * @dev: if set, a symlink to the struct device is created in the sysfs
240  * directory for this struct class device.
241  * @class_data: pointer to whatever you want to store here for this struct
242  * class_device.  Use class_get_devdata() and class_set_devdata() to get and
243  * set this pointer.
244  * @parent: pointer to a struct class_device that is the parent of this struct
245  * class_device.  If NULL, this class_device will show up at the root of the
246  * struct class in sysfs (which is probably what you want to have happen.)
247  * @release: pointer to a release function for this struct class_device.  If
248  * set, this will be called instead of the class specific release function.
249  * Only use this if you want to override the default release function, like
250  * when you are nesting class_device structures.
251  * @uevent: pointer to a uevent function for this struct class_device.  If
252  * set, this will be called instead of the class specific uevent function.
253  * Only use this if you want to override the default uevent function, like
254  * when you are nesting class_device structures.
255  */
256 struct class_device {
257         struct list_head        node;
258
259         struct kobject          kobj;
260         struct class            * class;        /* required */
261         dev_t                   devt;           /* dev_t, creates the sysfs "dev" */
262         struct device           * dev;          /* not necessary, but nice to have */
263         void                    * class_data;   /* class-specific data */
264         struct class_device     *parent;        /* parent of this child device, if there is one */
265         struct attribute_group  ** groups;      /* optional groups */
266
267         void    (*release)(struct class_device *dev);
268         int     (*uevent)(struct class_device *dev, struct kobj_uevent_env *env);
269         char    class_id[BUS_ID_SIZE];  /* unique to this class */
270 };
271
272 static inline void *
273 class_get_devdata (struct class_device *dev)
274 {
275         return dev->class_data;
276 }
277
278 static inline void
279 class_set_devdata (struct class_device *dev, void *data)
280 {
281         dev->class_data = data;
282 }
283
284
285 extern int __must_check class_device_register(struct class_device *);
286 extern void class_device_unregister(struct class_device *);
287 extern void class_device_initialize(struct class_device *);
288 extern int __must_check class_device_add(struct class_device *);
289 extern void class_device_del(struct class_device *);
290
291 extern struct class_device * class_device_get(struct class_device *);
292 extern void class_device_put(struct class_device *);
293
294 extern void class_device_remove_file(struct class_device *, 
295                                      const struct class_device_attribute *);
296 extern int __must_check class_device_create_bin_file(struct class_device *,
297                                         struct bin_attribute *);
298 extern void class_device_remove_bin_file(struct class_device *,
299                                          struct bin_attribute *);
300
301 struct class_interface {
302         struct list_head        node;
303         struct class            *class;
304
305         int (*add)      (struct class_device *, struct class_interface *);
306         void (*remove)  (struct class_device *, struct class_interface *);
307         int (*add_dev)          (struct device *, struct class_interface *);
308         void (*remove_dev)      (struct device *, struct class_interface *);
309 };
310
311 extern int __must_check class_interface_register(struct class_interface *);
312 extern void class_interface_unregister(struct class_interface *);
313
314 extern struct class *class_create(struct module *owner, const char *name);
315 extern void class_destroy(struct class *cls);
316 extern struct class_device *class_device_create(struct class *cls,
317                                                 struct class_device *parent,
318                                                 dev_t devt,
319                                                 struct device *device,
320                                                 const char *fmt, ...)
321                                         __attribute__((format(printf,5,6)));
322 extern void class_device_destroy(struct class *cls, dev_t devt);
323
324 /*
325  * The type of device, "struct device" is embedded in. A class
326  * or bus can contain devices of different types
327  * like "partitions" and "disks", "mouse" and "event".
328  * This identifies the device type and carries type-specific
329  * information, equivalent to the kobj_type of a kobject.
330  * If "name" is specified, the uevent will contain it in
331  * the DEVTYPE variable.
332  */
333 struct device_type {
334         const char *name;
335         struct attribute_group **groups;
336         int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
337         void (*release)(struct device *dev);
338         int (*suspend)(struct device * dev, pm_message_t state);
339         int (*resume)(struct device * dev);
340 };
341
342 /* interface for exporting device attributes */
343 struct device_attribute {
344         struct attribute        attr;
345         ssize_t (*show)(struct device *dev, struct device_attribute *attr,
346                         char *buf);
347         ssize_t (*store)(struct device *dev, struct device_attribute *attr,
348                          const char *buf, size_t count);
349 };
350
351 #define DEVICE_ATTR(_name,_mode,_show,_store) \
352 struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)
353
354 extern int __must_check device_create_file(struct device *device,
355                                         struct device_attribute * entry);
356 extern void device_remove_file(struct device * dev, struct device_attribute * attr);
357 extern int __must_check device_create_bin_file(struct device *dev,
358                                                struct bin_attribute *attr);
359 extern void device_remove_bin_file(struct device *dev,
360                                    struct bin_attribute *attr);
361 extern int device_schedule_callback_owner(struct device *dev,
362                 void (*func)(struct device *), struct module *owner);
363
364 /* This is a macro to avoid include problems with THIS_MODULE */
365 #define device_schedule_callback(dev, func)                     \
366         device_schedule_callback_owner(dev, func, THIS_MODULE)
367
368 /* device resource management */
369 typedef void (*dr_release_t)(struct device *dev, void *res);
370 typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
371
372 #ifdef CONFIG_DEBUG_DEVRES
373 extern void * __devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
374                              const char *name);
375 #define devres_alloc(release, size, gfp) \
376         __devres_alloc(release, size, gfp, #release)
377 #else
378 extern void * devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
379 #endif
380 extern void devres_free(void *res);
381 extern void devres_add(struct device *dev, void *res);
382 extern void * devres_find(struct device *dev, dr_release_t release,
383                           dr_match_t match, void *match_data);
384 extern void * devres_get(struct device *dev, void *new_res,
385                          dr_match_t match, void *match_data);
386 extern void * devres_remove(struct device *dev, dr_release_t release,
387                             dr_match_t match, void *match_data);
388 extern int devres_destroy(struct device *dev, dr_release_t release,
389                           dr_match_t match, void *match_data);
390
391 /* devres group */
392 extern void * __must_check devres_open_group(struct device *dev, void *id,
393                                              gfp_t gfp);
394 extern void devres_close_group(struct device *dev, void *id);
395 extern void devres_remove_group(struct device *dev, void *id);
396 extern int devres_release_group(struct device *dev, void *id);
397
398 /* managed kzalloc/kfree for device drivers, no kmalloc, always use kzalloc */
399 extern void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp);
400 extern void devm_kfree(struct device *dev, void *p);
401
402 struct device {
403         struct klist            klist_children;
404         struct klist_node       knode_parent;           /* node in sibling list */
405         struct klist_node       knode_driver;
406         struct klist_node       knode_bus;
407         struct device           *parent;
408
409         struct kobject kobj;
410         char    bus_id[BUS_ID_SIZE];    /* position on parent bus */
411         struct device_type      *type;
412         unsigned                is_registered:1;
413         unsigned                uevent_suppress:1;
414
415         struct semaphore        sem;    /* semaphore to synchronize calls to
416                                          * its driver.
417                                          */
418
419         struct bus_type * bus;          /* type of bus device is on */
420         struct device_driver *driver;   /* which driver has allocated this
421                                            device */
422         void            *driver_data;   /* data private to the driver */
423         void            *platform_data; /* Platform specific data, device
424                                            core doesn't touch it */
425         struct dev_pm_info      power;
426
427 #ifdef CONFIG_NUMA
428         int             numa_node;      /* NUMA node this device is close to */
429 #endif
430         u64             *dma_mask;      /* dma mask (if dma'able device) */
431         u64             coherent_dma_mask;/* Like dma_mask, but for
432                                              alloc_coherent mappings as
433                                              not all hardware supports
434                                              64 bit addresses for consistent
435                                              allocations such descriptors. */
436
437         struct list_head        dma_pools;      /* dma pools (if dma'ble) */
438
439         struct dma_coherent_mem *dma_mem; /* internal for coherent mem
440                                              override */
441         /* arch specific additions */
442         struct dev_archdata     archdata;
443
444         spinlock_t              devres_lock;
445         struct list_head        devres_head;
446
447         /* class_device migration path */
448         struct list_head        node;
449         struct class            *class;
450         dev_t                   devt;           /* dev_t, creates the sysfs "dev" */
451         struct attribute_group  **groups;       /* optional groups */
452
453         void    (*release)(struct device * dev);
454 };
455
456 #ifdef CONFIG_NUMA
457 static inline int dev_to_node(struct device *dev)
458 {
459         return dev->numa_node;
460 }
461 static inline void set_dev_node(struct device *dev, int node)
462 {
463         dev->numa_node = node;
464 }
465 #else
466 static inline int dev_to_node(struct device *dev)
467 {
468         return -1;
469 }
470 static inline void set_dev_node(struct device *dev, int node)
471 {
472 }
473 #endif
474
475 static inline void *
476 dev_get_drvdata (struct device *dev)
477 {
478         return dev->driver_data;
479 }
480
481 static inline void
482 dev_set_drvdata (struct device *dev, void *data)
483 {
484         dev->driver_data = data;
485 }
486
487 static inline int device_is_registered(struct device *dev)
488 {
489         return dev->is_registered;
490 }
491
492 void driver_init(void);
493
494 /*
495  * High level routines for use by the bus drivers
496  */
497 extern int __must_check device_register(struct device * dev);
498 extern void device_unregister(struct device * dev);
499 extern void device_initialize(struct device * dev);
500 extern int __must_check device_add(struct device * dev);
501 extern void device_del(struct device * dev);
502 extern int device_for_each_child(struct device *, void *,
503                      int (*fn)(struct device *, void *));
504 extern struct device *device_find_child(struct device *, void *data,
505                                         int (*match)(struct device *, void *));
506 extern int device_rename(struct device *dev, char *new_name);
507 extern int device_move(struct device *dev, struct device *new_parent);
508
509 /*
510  * Manual binding of a device to driver. See drivers/base/bus.c
511  * for information on use.
512  */
513 extern int __must_check device_bind_driver(struct device *dev);
514 extern void device_release_driver(struct device * dev);
515 extern int  __must_check device_attach(struct device * dev);
516 extern int __must_check driver_attach(struct device_driver *drv);
517 extern int __must_check device_reprobe(struct device *dev);
518
519 /*
520  * Easy functions for dynamically creating devices on the fly
521  */
522 extern struct device *device_create(struct class *cls, struct device *parent,
523                                     dev_t devt, const char *fmt, ...)
524                                     __attribute__((format(printf,4,5)));
525 extern void device_destroy(struct class *cls, dev_t devt);
526 #ifdef CONFIG_PM_SLEEP
527 extern void destroy_suspended_device(struct class *cls, dev_t devt);
528 #else /* !CONFIG_PM_SLEEP */
529 static inline void destroy_suspended_device(struct class *cls, dev_t devt)
530 {
531         device_destroy(cls, devt);
532 }
533 #endif /* !CONFIG_PM_SLEEP */
534
535 /*
536  * Platform "fixup" functions - allow the platform to have their say
537  * about devices and actions that the general device layer doesn't
538  * know about.
539  */
540 /* Notify platform of device discovery */
541 extern int (*platform_notify)(struct device * dev);
542
543 extern int (*platform_notify_remove)(struct device * dev);
544
545
546 /**
547  * get_device - atomically increment the reference count for the device.
548  *
549  */
550 extern struct device * get_device(struct device * dev);
551 extern void put_device(struct device * dev);
552
553
554 /* drivers/base/power/shutdown.c */
555 extern void device_shutdown(void);
556
557 /* drivers/base/sys.c */
558 extern void sysdev_shutdown(void);
559
560 /* debugging and troubleshooting/diagnostic helpers. */
561 extern const char *dev_driver_string(struct device *dev);
562 #define dev_printk(level, dev, format, arg...)  \
563         printk(level "%s %s: " format , dev_driver_string(dev) , (dev)->bus_id , ## arg)
564
565 #define dev_emerg(dev, format, arg...)          \
566         dev_printk(KERN_EMERG , dev , format , ## arg)
567 #define dev_alert(dev, format, arg...)          \
568         dev_printk(KERN_ALERT , dev , format , ## arg)
569 #define dev_crit(dev, format, arg...)           \
570         dev_printk(KERN_CRIT , dev , format , ## arg)
571 #define dev_err(dev, format, arg...)            \
572         dev_printk(KERN_ERR , dev , format , ## arg)
573 #define dev_warn(dev, format, arg...)           \
574         dev_printk(KERN_WARNING , dev , format , ## arg)
575 #define dev_notice(dev, format, arg...)         \
576         dev_printk(KERN_NOTICE , dev , format , ## arg)
577 #define dev_info(dev, format, arg...)           \
578         dev_printk(KERN_INFO , dev , format , ## arg)
579
580 #ifdef DEBUG
581 #define dev_dbg(dev, format, arg...)            \
582         dev_printk(KERN_DEBUG , dev , format , ## arg)
583 #else
584 static inline int __attribute__ ((format (printf, 2, 3)))
585 dev_dbg(struct device * dev, const char * fmt, ...)
586 {
587         return 0;
588 }
589 #endif
590
591 #ifdef VERBOSE_DEBUG
592 #define dev_vdbg        dev_dbg
593 #else
594 static inline int __attribute__ ((format (printf, 2, 3)))
595 dev_vdbg(struct device * dev, const char * fmt, ...)
596 {
597         return 0;
598 }
599 #endif
600
601 /* Create alias, so I can be autoloaded. */
602 #define MODULE_ALIAS_CHARDEV(major,minor) \
603         MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
604 #define MODULE_ALIAS_CHARDEV_MAJOR(major) \
605         MODULE_ALIAS("char-major-" __stringify(major) "-*")
606 #endif /* _DEVICE_H_ */