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