2 * device.h - generic, centralized driver model
4 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
6 * This file is released under the GPLv2
8 * See Documentation/driver-model/ for more information.
14 #include <linux/config.h>
15 #include <linux/ioport.h>
16 #include <linux/kobject.h>
17 #include <linux/klist.h>
18 #include <linux/list.h>
19 #include <linux/types.h>
20 #include <linux/module.h>
22 #include <asm/semaphore.h>
23 #include <asm/atomic.h>
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
52 struct subsystem subsys
;
55 struct klist klist_devices
;
56 struct klist klist_drivers
;
58 struct bus_attribute
* bus_attrs
;
59 struct device_attribute
* dev_attrs
;
60 struct driver_attribute
* drv_attrs
;
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
);
69 extern int bus_register(struct bus_type
* bus
);
70 extern void bus_unregister(struct bus_type
* bus
);
72 extern int bus_rescan_devices(struct bus_type
* bus
);
74 extern struct bus_type
* get_bus(struct bus_type
* bus
);
75 extern void put_bus(struct bus_type
* bus
);
77 extern struct bus_type
* find_bus(char * name
);
79 /* iterator helpers for buses */
81 int bus_for_each_dev(struct bus_type
* bus
, struct device
* start
, void * data
,
82 int (*fn
)(struct device
*, void *));
84 int bus_for_each_drv(struct bus_type
* bus
, struct device_driver
* start
,
85 void * data
, int (*fn
)(struct device_driver
*, void *));
88 /* driverfs interface for exporting bus attributes */
90 struct 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
);
96 #define BUS_ATTR(_name,_mode,_show,_store) \
97 struct bus_attribute bus_attr_##_name = __ATTR(_name,_mode,_show,_store)
99 extern int bus_create_file(struct bus_type
*, struct bus_attribute
*);
100 extern void bus_remove_file(struct bus_type
*, struct bus_attribute
*);
102 struct device_driver
{
104 struct bus_type
* bus
;
106 struct completion unloaded
;
108 struct klist klist_devices
;
109 struct klist_node knode_bus
;
111 struct module
* owner
;
113 int (*probe
) (struct device
* dev
);
114 int (*remove
) (struct device
* dev
);
115 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
);
121 extern int driver_register(struct device_driver
* drv
);
122 extern void driver_unregister(struct device_driver
* drv
);
124 extern struct device_driver
* get_driver(struct device_driver
* drv
);
125 extern void put_driver(struct device_driver
* drv
);
126 extern struct device_driver
*driver_find(const char *name
, struct bus_type
*bus
);
129 /* driverfs interface for exporting driver attributes */
131 struct 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
);
137 #define DRIVER_ATTR(_name,_mode,_show,_store) \
138 struct driver_attribute driver_attr_##_name = __ATTR(_name,_mode,_show,_store)
140 extern int driver_create_file(struct device_driver
*, struct driver_attribute
*);
141 extern void driver_remove_file(struct device_driver
*, struct driver_attribute
*);
143 extern int driver_for_each_device(struct device_driver
* drv
, struct device
* start
,
144 void * data
, int (*fn
)(struct device
*, void *));
152 struct module
* owner
;
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 */
159 struct class_attribute
* class_attrs
;
160 struct class_device_attribute
* class_dev_attrs
;
162 int (*hotplug
)(struct class_device
*dev
, char **envp
,
163 int num_envp
, char *buffer
, int buffer_size
);
165 void (*release
)(struct class_device
*dev
);
166 void (*class_release
)(struct class *class);
169 extern int class_register(struct class *);
170 extern void class_unregister(struct class *);
172 extern struct class * class_get(struct class *);
173 extern void class_put(struct class *);
176 struct 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
);
182 #define CLASS_ATTR(_name,_mode,_show,_store) \
183 struct class_attribute class_attr_##_name = __ATTR(_name,_mode,_show,_store)
185 extern int class_create_file(struct class *, const struct class_attribute
*);
186 extern void class_remove_file(struct class *, const struct class_attribute
*);
189 struct class_device
{
190 struct list_head node
;
193 struct class * class; /* required */
194 dev_t devt
; /* dev_t, creates the sysfs "dev" */
195 struct class_device_attribute
*devt_attr
;
196 struct device
* dev
; /* not necessary, but nice to have */
197 void * class_data
; /* class-specific data */
199 char class_id
[BUS_ID_SIZE
]; /* unique to this class */
203 class_get_devdata (struct class_device
*dev
)
205 return dev
->class_data
;
209 class_set_devdata (struct class_device
*dev
, void *data
)
211 dev
->class_data
= data
;
215 extern int class_device_register(struct class_device
*);
216 extern void class_device_unregister(struct class_device
*);
217 extern void class_device_initialize(struct class_device
*);
218 extern int class_device_add(struct class_device
*);
219 extern void class_device_del(struct class_device
*);
221 extern int class_device_rename(struct class_device
*, char *);
223 extern struct class_device
* class_device_get(struct class_device
*);
224 extern void class_device_put(struct class_device
*);
226 struct 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
);
232 #define CLASS_DEVICE_ATTR(_name,_mode,_show,_store) \
233 struct class_device_attribute class_device_attr_##_name = \
234 __ATTR(_name,_mode,_show,_store)
236 extern int class_device_create_file(struct class_device
*,
237 const struct class_device_attribute
*);
238 extern void class_device_remove_file(struct class_device
*,
239 const struct class_device_attribute
*);
240 extern int class_device_create_bin_file(struct class_device
*,
241 struct bin_attribute
*);
242 extern void class_device_remove_bin_file(struct class_device
*,
243 struct bin_attribute
*);
245 struct class_interface
{
246 struct list_head node
;
249 int (*add
) (struct class_device
*);
250 void (*remove
) (struct class_device
*);
253 extern int class_interface_register(struct class_interface
*);
254 extern void class_interface_unregister(struct class_interface
*);
256 extern struct class *class_create(struct module
*owner
, char *name
);
257 extern void class_destroy(struct class *cls
);
258 extern struct class_device
*class_device_create(struct class *cls
, dev_t devt
,
259 struct device
*device
, char *fmt
, ...)
260 __attribute__((format(printf
,4,5)));
261 extern void class_device_destroy(struct class *cls
, dev_t devt
);
265 struct klist klist_children
;
266 struct klist_node knode_parent
; /* node in sibling list */
267 struct klist_node knode_driver
;
268 struct klist_node knode_bus
;
269 struct device
* parent
;
272 char bus_id
[BUS_ID_SIZE
]; /* position on parent bus */
274 struct semaphore sem
; /* semaphore to synchronize calls to
278 struct bus_type
* bus
; /* type of bus device is on */
279 struct device_driver
*driver
; /* which driver has allocated this
281 void *driver_data
; /* data private to the driver */
282 void *platform_data
; /* Platform specific data (e.g. ACPI,
283 BIOS data relevant to device) */
284 struct dev_pm_info power
;
286 u64
*dma_mask
; /* dma mask (if dma'able device) */
287 u64 coherent_dma_mask
;/* Like dma_mask, but for
288 alloc_coherent mappings as
289 not all hardware supports
290 64 bit addresses for consistent
291 allocations such descriptors. */
293 struct list_head dma_pools
; /* dma pools (if dma'ble) */
295 struct dma_coherent_mem
*dma_mem
; /* internal for coherent mem
298 void (*release
)(struct device
* dev
);
302 dev_get_drvdata (struct device
*dev
)
304 return dev
->driver_data
;
308 dev_set_drvdata (struct device
*dev
, void *data
)
310 dev
->driver_data
= data
;
314 * High level routines for use by the bus drivers
316 extern int device_register(struct device
* dev
);
317 extern void device_unregister(struct device
* dev
);
318 extern void device_initialize(struct device
* dev
);
319 extern int device_add(struct device
* dev
);
320 extern void device_del(struct device
* dev
);
321 extern int device_for_each_child(struct device
*, void *,
322 int (*fn
)(struct device
*, void *));
325 * Manual binding of a device to driver. See drivers/base/bus.c
326 * for information on use.
328 extern void device_bind_driver(struct device
* dev
);
329 extern void device_release_driver(struct device
* dev
);
330 extern int device_attach(struct device
* dev
);
331 extern void driver_attach(struct device_driver
* drv
);
334 /* driverfs interface for exporting device attributes */
336 struct device_attribute
{
337 struct attribute attr
;
338 ssize_t (*show
)(struct device
*dev
, struct device_attribute
*attr
,
340 ssize_t (*store
)(struct device
*dev
, struct device_attribute
*attr
,
341 const char *buf
, size_t count
);
344 #define DEVICE_ATTR(_name,_mode,_show,_store) \
345 struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)
348 extern int device_create_file(struct device
*device
, struct device_attribute
* entry
);
349 extern void device_remove_file(struct device
* dev
, struct device_attribute
* attr
);
352 * Platform "fixup" functions - allow the platform to have their say
353 * about devices and actions that the general device layer doesn't
356 /* Notify platform of device discovery */
357 extern int (*platform_notify
)(struct device
* dev
);
359 extern int (*platform_notify_remove
)(struct device
* dev
);
363 * get_device - atomically increment the reference count for the device.
366 extern struct device
* get_device(struct device
* dev
);
367 extern void put_device(struct device
* dev
);
370 /* drivers/base/platform.c */
372 struct platform_device
{
377 struct resource
* resource
;
380 #define to_platform_device(x) container_of((x), struct platform_device, dev)
382 extern int platform_device_register(struct platform_device
*);
383 extern void platform_device_unregister(struct platform_device
*);
385 extern struct bus_type platform_bus_type
;
386 extern struct device platform_bus
;
388 extern struct resource
*platform_get_resource(struct platform_device
*, unsigned int, unsigned int);
389 extern int platform_get_irq(struct platform_device
*, unsigned int);
390 extern struct resource
*platform_get_resource_byname(struct platform_device
*, unsigned int, char *);
391 extern int platform_get_irq_byname(struct platform_device
*, char *);
392 extern int platform_add_devices(struct platform_device
**, int);
394 extern struct platform_device
*platform_device_register_simple(char *, unsigned int, struct resource
*, unsigned int);
396 /* drivers/base/power.c */
397 extern void device_shutdown(void);
400 /* drivers/base/firmware.c */
401 extern int firmware_register(struct subsystem
*);
402 extern void firmware_unregister(struct subsystem
*);
404 /* debugging and troubleshooting/diagnostic helpers. */
405 #define dev_printk(level, dev, format, arg...) \
406 printk(level "%s %s: " format , (dev)->driver ? (dev)->driver->name : "" , (dev)->bus_id , ## arg)
409 #define dev_dbg(dev, format, arg...) \
410 dev_printk(KERN_DEBUG , dev , format , ## arg)
412 #define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0)
415 #define dev_err(dev, format, arg...) \
416 dev_printk(KERN_ERR , dev , format , ## arg)
417 #define dev_info(dev, format, arg...) \
418 dev_printk(KERN_INFO , dev , format , ## arg)
419 #define dev_warn(dev, format, arg...) \
420 dev_printk(KERN_WARNING , dev , format , ## arg)
422 /* Create alias, so I can be autoloaded. */
423 #define MODULE_ALIAS_CHARDEV(major,minor) \
424 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
425 #define MODULE_ALIAS_CHARDEV_MAJOR(major) \
426 MODULE_ALIAS("char-major-" __stringify(major) "-*")
427 #endif /* _DEVICE_H_ */