blob: 341fb740d8515191d9b7b521adf8d9c8b68010c8 [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>
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -07005 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
6 * Copyright (c) 2008-2009 Novell Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This file is released under the GPLv2
9 *
10 * See Documentation/driver-model/ for more information.
11 */
12
13#ifndef _DEVICE_H_
14#define _DEVICE_H_
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/ioport.h>
17#include <linux/kobject.h>
mochel@digitalimplant.org465c7a32005-03-21 11:49:14 -080018#include <linux/klist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/list.h>
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -070020#include <linux/lockdep.h>
Andrew Morton4a7fb632006-08-14 22:43:17 -070021#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/types.h>
Paul Gortmakerde477252011-05-26 13:46:22 -040023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/pm.h>
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +110026#include <asm/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028struct device;
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -080029struct device_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030struct device_driver;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -080031struct driver_private;
Paul Gortmakerde477252011-05-26 13:46:22 -040032struct module;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct class;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010034struct subsys_private;
Kay Sieversb8c5cec2007-02-16 17:33:36 +010035struct bus_type;
Grant Likelyd706c1b2010-04-13 16:12:28 -070036struct device_node;
Joerg Roedelff217762011-08-26 16:48:26 +020037struct iommu_ops;
Kay Sieversb8c5cec2007-02-16 17:33:36 +010038
39struct bus_attribute {
40 struct attribute attr;
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080041 ssize_t (*show)(struct bus_type *bus, char *buf);
42 ssize_t (*store)(struct bus_type *bus, const char *buf, size_t count);
Kay Sieversb8c5cec2007-02-16 17:33:36 +010043};
44
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080045#define BUS_ATTR(_name, _mode, _show, _store) \
46struct bus_attribute bus_attr_##_name = __ATTR(_name, _mode, _show, _store)
Kay Sieversb8c5cec2007-02-16 17:33:36 +010047
48extern int __must_check bus_create_file(struct bus_type *,
49 struct bus_attribute *);
50extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Wanlong Gao880ffb52011-05-05 07:55:36 +080052/**
53 * struct bus_type - The bus type of the device
54 *
55 * @name: The name of the bus.
56 * @bus_attrs: Default attributes of the bus.
57 * @dev_attrs: Default attributes of the devices on the bus.
58 * @drv_attrs: Default attributes of the device drivers on the bus.
59 * @match: Called, perhaps multiple times, whenever a new device or driver
60 * is added for this bus. It should return a nonzero value if the
61 * given device can be handled by the given driver.
62 * @uevent: Called when a device is added, removed, or a few other things
63 * that generate uevents to add the environment variables.
64 * @probe: Called when a new device or driver add to this bus, and callback
65 * the specific driver's probe to initial the matched device.
66 * @remove: Called when a device removed from this bus.
67 * @shutdown: Called at shut-down time to quiesce the device.
68 * @suspend: Called when a device on this bus wants to go to sleep mode.
69 * @resume: Called to bring a device on this bus out of sleep mode.
70 * @pm: Power management operations of this bus, callback the specific
71 * device driver's pm-ops.
Joerg Roedelff217762011-08-26 16:48:26 +020072 * @iommu_ops IOMMU specific operations for this bus, used to attach IOMMU
73 * driver implementations to a bus and allow the driver to do
74 * bus-specific setup
Wanlong Gao880ffb52011-05-05 07:55:36 +080075 * @p: The private data of the driver core, only the driver core can
76 * touch this.
77 *
78 * A bus is a channel between the processor and one or more devices. For the
79 * purposes of the device model, all devices are connected via a bus, even if
80 * it is an internal, virtual, "platform" bus. Buses can plug into each other.
81 * A USB controller is usually a PCI device, for example. The device model
82 * represents the actual connections between buses and the devices they control.
83 * A bus is represented by the bus_type structure. It contains the name, the
84 * default attributes, the bus' methods, PM operations, and the driver core's
85 * private data.
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087struct bus_type {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080088 const char *name;
89 struct bus_attribute *bus_attrs;
90 struct device_attribute *dev_attrs;
91 struct driver_attribute *drv_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080093 int (*match)(struct device *dev, struct device_driver *drv);
94 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
95 int (*probe)(struct device *dev);
96 int (*remove)(struct device *dev);
97 void (*shutdown)(struct device *dev);
Linus Torvalds7c8265f2006-06-24 14:50:29 -070098
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080099 int (*suspend)(struct device *dev, pm_message_t state);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800100 int (*resume)(struct device *dev);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100101
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700102 const struct dev_pm_ops *pm;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200103
Joerg Roedelff217762011-08-26 16:48:26 +0200104 struct iommu_ops *iommu_ops;
105
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100106 struct subsys_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800109extern int __must_check bus_register(struct bus_type *bus);
110extern void bus_unregister(struct bus_type *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800112extern int __must_check bus_rescan_devices(struct bus_type *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* iterator helpers for buses */
115
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800116int bus_for_each_dev(struct bus_type *bus, struct device *start, void *data,
117 int (*fn)(struct device *dev, void *data));
118struct device *bus_find_device(struct bus_type *bus, struct device *start,
119 void *data,
120 int (*match)(struct device *dev, void *data));
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800121struct device *bus_find_device_by_name(struct bus_type *bus,
122 struct device *start,
123 const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Jean Delvarecc7447a2010-06-16 11:44:18 +0200125int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,
126 void *data, int (*fn)(struct device_driver *, void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -0500128void bus_sort_breadthfirst(struct bus_type *bus,
129 int (*compare)(const struct device *a,
130 const struct device *b));
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000131/*
132 * Bus notifiers: Get notified of addition/removal of devices
133 * and binding/unbinding of drivers to devices.
134 * In the long run, it should be a replacement for the platform
135 * notify hooks.
136 */
137struct notifier_block;
138
139extern int bus_register_notifier(struct bus_type *bus,
140 struct notifier_block *nb);
141extern int bus_unregister_notifier(struct bus_type *bus,
142 struct notifier_block *nb);
143
144/* All 4 notifers below get called with the target struct device *
145 * as an argument. Note that those functions are likely to be called
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800146 * with the device lock held in the core, so be careful.
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000147 */
148#define BUS_NOTIFY_ADD_DEVICE 0x00000001 /* device added */
149#define BUS_NOTIFY_DEL_DEVICE 0x00000002 /* device removed */
Magnus Damm45daef02010-07-23 19:56:18 +0900150#define BUS_NOTIFY_BIND_DRIVER 0x00000003 /* driver about to be
151 bound */
152#define BUS_NOTIFY_BOUND_DRIVER 0x00000004 /* driver bound to device */
153#define BUS_NOTIFY_UNBIND_DRIVER 0x00000005 /* driver about to be
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000154 unbound */
Magnus Damm45daef02010-07-23 19:56:18 +0900155#define BUS_NOTIFY_UNBOUND_DRIVER 0x00000006 /* driver is unbound
Joerg Roedel309b7d62009-04-24 14:57:00 +0200156 from the device */
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000157
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700158extern struct kset *bus_get_kset(struct bus_type *bus);
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -0700159extern struct klist *bus_get_device_klist(struct bus_type *bus);
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700160
Wanlong Gao880ffb52011-05-05 07:55:36 +0800161/**
162 * struct device_driver - The basic device driver structure
163 * @name: Name of the device driver.
164 * @bus: The bus which the device of this driver belongs to.
165 * @owner: The module owner.
166 * @mod_name: Used for built-in modules.
167 * @suppress_bind_attrs: Disables bind/unbind via sysfs.
168 * @of_match_table: The open firmware table.
169 * @probe: Called to query the existence of a specific device,
170 * whether this driver can work with it, and bind the driver
171 * to a specific device.
172 * @remove: Called when the device is removed from the system to
173 * unbind a device from this driver.
174 * @shutdown: Called at shut-down time to quiesce the device.
175 * @suspend: Called to put the device to sleep mode. Usually to a
176 * low power state.
177 * @resume: Called to bring a device from sleep mode.
178 * @groups: Default attributes that get created by the driver core
179 * automatically.
180 * @pm: Power management operations of the device which matched
181 * this driver.
182 * @p: Driver core's private data, no one other than the driver
183 * core can touch this.
184 *
185 * The device driver-model tracks all of the drivers known to the system.
186 * The main reason for this tracking is to enable the driver core to match
187 * up drivers with new devices. Once drivers are known objects within the
188 * system, however, a number of other things become possible. Device drivers
189 * can export information and configuration variables that are independent
190 * of any specific device.
191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192struct device_driver {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800193 const char *name;
194 struct bus_type *bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800196 struct module *owner;
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700197 const char *mod_name; /* used for built-in modules */
198
199 bool suppress_bind_attrs; /* disables bind/unbind via sysfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Grant Likely597b9d12010-04-13 16:13:01 -0700201 const struct of_device_id *of_match_table;
Grant Likely597b9d12010-04-13 16:13:01 -0700202
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800203 int (*probe) (struct device *dev);
204 int (*remove) (struct device *dev);
205 void (*shutdown) (struct device *dev);
206 int (*suspend) (struct device *dev, pm_message_t state);
207 int (*resume) (struct device *dev);
David Brownella4dbd672009-06-24 10:06:31 -0700208 const struct attribute_group **groups;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800209
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700210 const struct dev_pm_ops *pm;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200211
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800212 struct driver_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213};
214
215
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800216extern int __must_check driver_register(struct device_driver *drv);
217extern void driver_unregister(struct device_driver *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800219extern struct device_driver *get_driver(struct device_driver *drv);
220extern void put_driver(struct device_driver *drv);
221extern struct device_driver *driver_find(const char *name,
222 struct bus_type *bus);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700223extern int driver_probe_done(void);
Ming Leib23530e2009-02-21 16:45:07 +0800224extern void wait_for_device_probe(void);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100227/* sysfs interface for exporting driver attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229struct driver_attribute {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800230 struct attribute attr;
231 ssize_t (*show)(struct device_driver *driver, char *buf);
232 ssize_t (*store)(struct device_driver *driver, const char *buf,
233 size_t count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
235
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800236#define DRIVER_ATTR(_name, _mode, _show, _store) \
237struct driver_attribute driver_attr_##_name = \
238 __ATTR(_name, _mode, _show, _store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800240extern int __must_check driver_create_file(struct device_driver *driver,
Phil Carmody099c2f22009-12-18 15:34:21 +0200241 const struct driver_attribute *attr);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800242extern void driver_remove_file(struct device_driver *driver,
Phil Carmody099c2f22009-12-18 15:34:21 +0200243 const struct driver_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Greg Kroah-Hartmancbe9c592007-12-19 15:54:39 -0400245extern int __must_check driver_add_kobj(struct device_driver *drv,
246 struct kobject *kobj,
247 const char *fmt, ...);
248
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800249extern int __must_check driver_for_each_device(struct device_driver *drv,
250 struct device *start,
251 void *data,
252 int (*fn)(struct device *dev,
253 void *));
254struct device *driver_find_device(struct device_driver *drv,
255 struct device *start, void *data,
256 int (*match)(struct device *dev, void *data));
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800257
Wanlong Gao880ffb52011-05-05 07:55:36 +0800258/**
259 * struct class - device classes
260 * @name: Name of the class.
261 * @owner: The module owner.
262 * @class_attrs: Default attributes of this class.
263 * @dev_attrs: Default attributes of the devices belong to the class.
264 * @dev_bin_attrs: Default binary attributes of the devices belong to the class.
265 * @dev_kobj: The kobject that represents this class and links it into the hierarchy.
266 * @dev_uevent: Called when a device is added, removed from this class, or a
267 * few other things that generate uevents to add the environment
268 * variables.
269 * @devnode: Callback to provide the devtmpfs.
270 * @class_release: Called to release this class.
271 * @dev_release: Called to release the device.
272 * @suspend: Used to put the device to sleep mode, usually to a low power
273 * state.
274 * @resume: Used to bring the device from the sleep mode.
275 * @ns_type: Callbacks so sysfs can detemine namespaces.
276 * @namespace: Namespace of the device belongs to this class.
277 * @pm: The default device power management operations of this class.
278 * @p: The private data of the driver core, no one other than the
279 * driver core can touch this.
280 *
281 * A class is a higher-level view of a device that abstracts out low-level
282 * implementation details. Drivers may see a SCSI disk or an ATA disk, but,
283 * at the class level, they are all simply disks. Classes allow user space
284 * to work with devices based on what they do, rather than how they are
285 * connected or how they work.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
287struct class {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800288 const char *name;
289 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800291 struct class_attribute *class_attrs;
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800292 struct device_attribute *dev_attrs;
Stefan Achatzc97415a2010-11-26 19:57:29 +0000293 struct bin_attribute *dev_bin_attrs;
Dan Williamse105b8b2008-04-21 10:51:07 -0700294 struct kobject *dev_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800296 int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sieverse454cea2009-09-18 23:01:12 +0200297 char *(*devnode)(struct device *dev, mode_t *mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800299 void (*class_release)(struct class *class);
300 void (*dev_release)(struct device *dev);
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700301
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800302 int (*suspend)(struct device *dev, pm_message_t state);
303 int (*resume)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200304
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700305 const struct kobj_ns_type_operations *ns_type;
306 const void *(*namespace)(struct device *dev);
307
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700308 const struct dev_pm_ops *pm;
309
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100310 struct subsys_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311};
312
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200313struct class_dev_iter {
314 struct klist_iter ki;
315 const struct device_type *type;
316};
317
Dan Williamse105b8b2008-04-21 10:51:07 -0700318extern struct kobject *sysfs_dev_block_kobj;
319extern struct kobject *sysfs_dev_char_kobj;
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700320extern int __must_check __class_register(struct class *class,
321 struct lock_class_key *key);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800322extern void class_unregister(struct class *class);
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700323
324/* This is a #define to keep the compiler from merging different
325 * instances of the __key variable */
326#define class_register(class) \
327({ \
328 static struct lock_class_key __key; \
329 __class_register(class, &__key); \
330})
331
Jean Delvare46227092009-08-04 12:55:34 +0200332struct class_compat;
333struct class_compat *class_compat_register(const char *name);
334void class_compat_unregister(struct class_compat *cls);
335int class_compat_create_link(struct class_compat *cls, struct device *dev,
336 struct device *device_link);
337void class_compat_remove_link(struct class_compat *cls, struct device *dev,
338 struct device *device_link);
339
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200340extern void class_dev_iter_init(struct class_dev_iter *iter,
341 struct class *class,
342 struct device *start,
343 const struct device_type *type);
344extern struct device *class_dev_iter_next(struct class_dev_iter *iter);
345extern void class_dev_iter_exit(struct class_dev_iter *iter);
346
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400347extern int class_for_each_device(struct class *class, struct device *start,
348 void *data,
Dave Youngfd048972008-01-22 15:27:08 +0800349 int (*fn)(struct device *dev, void *data));
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400350extern struct device *class_find_device(struct class *class,
351 struct device *start, void *data,
Dave Youngfd048972008-01-22 15:27:08 +0800352 int (*match)(struct device *, void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354struct class_attribute {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800355 struct attribute attr;
Andi Kleen28812fe2010-01-05 12:48:07 +0100356 ssize_t (*show)(struct class *class, struct class_attribute *attr,
357 char *buf);
358 ssize_t (*store)(struct class *class, struct class_attribute *attr,
359 const char *buf, size_t count);
Eric W. Biederman672d82c2011-10-12 21:55:08 +0000360 const void *(*namespace)(struct class *class,
361 const struct class_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362};
363
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800364#define CLASS_ATTR(_name, _mode, _show, _store) \
365struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800367extern int __must_check class_create_file(struct class *class,
368 const struct class_attribute *attr);
369extern void class_remove_file(struct class *class,
370 const struct class_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Andi Kleen869dfc82010-01-05 12:48:08 +0100372/* Simple class attribute that is just a static string */
373
374struct class_attribute_string {
375 struct class_attribute attr;
376 char *str;
377};
378
379/* Currently read-only only */
380#define _CLASS_ATTR_STRING(_name, _mode, _str) \
381 { __ATTR(_name, _mode, show_class_attr_string, NULL), _str }
382#define CLASS_ATTR_STRING(_name, _mode, _str) \
383 struct class_attribute_string class_attr_##_name = \
384 _CLASS_ATTR_STRING(_name, _mode, _str)
385
386extern ssize_t show_class_attr_string(struct class *class, struct class_attribute *attr,
387 char *buf);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389struct class_interface {
390 struct list_head node;
391 struct class *class;
392
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200393 int (*add_dev) (struct device *, struct class_interface *);
394 void (*remove_dev) (struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395};
396
Andrew Morton4a7fb632006-08-14 22:43:17 -0700397extern int __must_check class_interface_register(struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398extern void class_interface_unregister(struct class_interface *);
399
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700400extern struct class * __must_check __class_create(struct module *owner,
401 const char *name,
402 struct lock_class_key *key);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800403extern void class_destroy(struct class *cls);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800404
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700405/* This is a #define to keep the compiler from merging different
406 * instances of the __key variable */
407#define class_create(owner, name) \
408({ \
409 static struct lock_class_key __key; \
410 __class_create(owner, name, &__key); \
411})
412
Kay Sievers414264f2007-03-12 21:08:57 +0100413/*
414 * The type of device, "struct device" is embedded in. A class
415 * or bus can contain devices of different types
416 * like "partitions" and "disks", "mouse" and "event".
417 * This identifies the device type and carries type-specific
418 * information, equivalent to the kobj_type of a kobject.
419 * If "name" is specified, the uevent will contain it in
420 * the DEVTYPE variable.
421 */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200422struct device_type {
Kay Sievers414264f2007-03-12 21:08:57 +0100423 const char *name;
David Brownella4dbd672009-06-24 10:06:31 -0700424 const struct attribute_group **groups;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200425 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sieverse454cea2009-09-18 23:01:12 +0200426 char *(*devnode)(struct device *dev, mode_t *mode);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200427 void (*release)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200428
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700429 const struct dev_pm_ops *pm;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200430};
431
Kay Sieversa7fd6702005-10-01 14:49:43 +0200432/* interface for exporting device attributes */
433struct device_attribute {
434 struct attribute attr;
435 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
436 char *buf);
437 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
438 const char *buf, size_t count);
439};
440
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800441#define DEVICE_ATTR(_name, _mode, _show, _store) \
442struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200443
Andrew Morton4a7fb632006-08-14 22:43:17 -0700444extern int __must_check device_create_file(struct device *device,
Phil Carmody66ecb922009-12-18 15:34:20 +0200445 const struct device_attribute *entry);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800446extern void device_remove_file(struct device *dev,
Phil Carmody26579ab2009-12-18 15:34:19 +0200447 const struct device_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700448extern int __must_check device_create_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200449 const struct bin_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700450extern void device_remove_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200451 const struct bin_attribute *attr);
Alan Stern523ded72007-04-26 00:12:04 -0700452extern int device_schedule_callback_owner(struct device *dev,
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800453 void (*func)(struct device *dev), struct module *owner);
Alan Stern523ded72007-04-26 00:12:04 -0700454
455/* This is a macro to avoid include problems with THIS_MODULE */
456#define device_schedule_callback(dev, func) \
457 device_schedule_callback_owner(dev, func, THIS_MODULE)
Tejun Heo9ac78492007-01-20 16:00:26 +0900458
459/* device resource management */
460typedef void (*dr_release_t)(struct device *dev, void *res);
461typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
462
463#ifdef CONFIG_DEBUG_DEVRES
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800464extern void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
Tejun Heo9ac78492007-01-20 16:00:26 +0900465 const char *name);
466#define devres_alloc(release, size, gfp) \
467 __devres_alloc(release, size, gfp, #release)
468#else
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800469extern void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
Tejun Heo9ac78492007-01-20 16:00:26 +0900470#endif
471extern void devres_free(void *res);
472extern void devres_add(struct device *dev, void *res);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800473extern void *devres_find(struct device *dev, dr_release_t release,
Tejun Heo9ac78492007-01-20 16:00:26 +0900474 dr_match_t match, void *match_data);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800475extern void *devres_get(struct device *dev, void *new_res,
476 dr_match_t match, void *match_data);
477extern void *devres_remove(struct device *dev, dr_release_t release,
478 dr_match_t match, void *match_data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900479extern int devres_destroy(struct device *dev, dr_release_t release,
480 dr_match_t match, void *match_data);
481
482/* devres group */
483extern void * __must_check devres_open_group(struct device *dev, void *id,
484 gfp_t gfp);
485extern void devres_close_group(struct device *dev, void *id);
486extern void devres_remove_group(struct device *dev, void *id);
487extern int devres_release_group(struct device *dev, void *id);
488
489/* managed kzalloc/kfree for device drivers, no kmalloc, always use kzalloc */
490extern void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp);
491extern void devm_kfree(struct device *dev, void *p);
492
Wolfram Sang72f8c0b2011-10-25 15:16:47 +0200493void __iomem *devm_request_and_ioremap(struct device *dev,
494 struct resource *res);
495
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800496struct device_dma_parameters {
497 /*
498 * a low level driver may set these to teach IOMMU code about
499 * sg limitations.
500 */
501 unsigned int max_segment_size;
502 unsigned long segment_boundary_mask;
503};
504
Wanlong Gao880ffb52011-05-05 07:55:36 +0800505/**
506 * struct device - The basic device structure
507 * @parent: The device's "parent" device, the device to which it is attached.
508 * In most cases, a parent device is some sort of bus or host
509 * controller. If parent is NULL, the device, is a top-level device,
510 * which is not usually what you want.
511 * @p: Holds the private data of the driver core portions of the device.
512 * See the comment of the struct device_private for detail.
513 * @kobj: A top-level, abstract class from which other classes are derived.
514 * @init_name: Initial name of the device.
515 * @type: The type of device.
516 * This identifies the device type and carries type-specific
517 * information.
518 * @mutex: Mutex to synchronize calls to its driver.
519 * @bus: Type of bus device is on.
520 * @driver: Which driver has allocated this
521 * @platform_data: Platform data specific to the device.
522 * Example: For devices on custom boards, as typical of embedded
523 * and SOC based hardware, Linux often uses platform_data to point
524 * to board-specific structures describing devices and how they
525 * are wired. That can include what ports are available, chip
526 * variants, which GPIO pins act in what additional roles, and so
527 * on. This shrinks the "Board Support Packages" (BSPs) and
528 * minimizes board-specific #ifdefs in drivers.
529 * @power: For device power management.
530 * See Documentation/power/devices.txt for details.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200531 * @pm_domain: Provide callbacks that are executed during system suspend,
Wanlong Gao880ffb52011-05-05 07:55:36 +0800532 * hibernation, system resume and during runtime PM transitions
533 * along with subsystem-level and driver-level callbacks.
534 * @numa_node: NUMA node this device is close to.
535 * @dma_mask: Dma mask (if dma'ble device).
536 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
537 * hardware supports 64-bit addresses for consistent allocations
538 * such descriptors.
539 * @dma_parms: A low level driver may set these to teach IOMMU code about
540 * segment limitations.
541 * @dma_pools: Dma pools (if dma'ble device).
542 * @dma_mem: Internal for coherent mem override.
543 * @archdata: For arch-specific additions.
544 * @of_node: Associated device tree node.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800545 * @devt: For creating the sysfs "dev".
546 * @devres_lock: Spinlock to protect the resource of the device.
547 * @devres_head: The resources list of the device.
548 * @knode_class: The node used to add the device to the class list.
549 * @class: The class of the device.
550 * @groups: Optional attribute groups.
551 * @release: Callback to free the device after all references have
552 * gone away. This should be set by the allocator of the
553 * device (i.e. the bus driver that discovered the device).
554 *
555 * At the lowest level, every device in a Linux system is represented by an
556 * instance of struct device. The device structure contains the information
557 * that the device model core needs to model the system. Most subsystems,
558 * however, track additional information about the devices they host. As a
559 * result, it is rare for devices to be represented by bare device structures;
560 * instead, that structure, like kobject structures, is usually embedded within
561 * a higher-level representation of the device.
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563struct device {
David Brownell49a4ec12007-05-08 00:29:39 -0700564 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800566 struct device_private *p;
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 struct kobject kobj;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700569 const char *init_name; /* initial name of the device */
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700570 const struct device_type *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Thomas Gleixner31427882010-01-29 20:39:02 +0000572 struct mutex mutex; /* mutex to synchronize calls to
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800573 * its driver.
574 */
575
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800576 struct bus_type *bus; /* type of bus device is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 struct device_driver *driver; /* which driver has allocated this
578 device */
Greg Kroah-Hartmane67c8562009-03-08 23:13:32 +0800579 void *platform_data; /* Platform specific data, device
580 core doesn't touch it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 struct dev_pm_info power;
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200582 struct dev_pm_domain *pm_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Christoph Hellwig87348132006-12-06 20:32:33 -0800584#ifdef CONFIG_NUMA
585 int numa_node; /* NUMA node this device is close to */
586#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 u64 *dma_mask; /* dma mask (if dma'able device) */
588 u64 coherent_dma_mask;/* Like dma_mask, but for
589 alloc_coherent mappings as
590 not all hardware supports
591 64 bit addresses for consistent
592 allocations such descriptors. */
593
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800594 struct device_dma_parameters *dma_parms;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 struct list_head dma_pools; /* dma pools (if dma'ble) */
597
598 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
599 override */
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +1100600 /* arch specific additions */
601 struct dev_archdata archdata;
Grant Likelyc9e358d2011-01-21 09:24:48 -0700602
603 struct device_node *of_node; /* associated device tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Matthew Wilcox929d2fa2008-10-16 15:51:35 -0600605 dev_t devt; /* dev_t, creates the sysfs "dev" */
606
Tejun Heo9ac78492007-01-20 16:00:26 +0900607 spinlock_t devres_lock;
608 struct list_head devres_head;
609
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200610 struct klist_node knode_class;
Kay Sieversb7a3e812006-10-07 21:54:55 +0200611 struct class *class;
David Brownella4dbd672009-06-24 10:06:31 -0700612 const struct attribute_group **groups; /* optional groups */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700613
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800614 void (*release)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615};
616
Alan Stern9a3df1f2008-03-19 22:39:13 +0100617/* Get the wakeup routines, which depend on struct device */
618#include <linux/pm_wakeup.h>
619
Jean Delvarebf9ca692008-07-30 12:29:21 -0700620static inline const char *dev_name(const struct device *dev)
Kay Sievers06916632008-05-02 06:02:41 +0200621{
Paul Mundta636ee72010-03-09 06:57:53 +0000622 /* Use the init name until the kobject becomes available */
623 if (dev->init_name)
624 return dev->init_name;
625
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100626 return kobject_name(&dev->kobj);
Kay Sievers06916632008-05-02 06:02:41 +0200627}
628
Joe Perchesb9075fa2011-10-31 17:11:33 -0700629extern __printf(2, 3)
630int dev_set_name(struct device *dev, const char *name, ...);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000631
Christoph Hellwig87348132006-12-06 20:32:33 -0800632#ifdef CONFIG_NUMA
633static inline int dev_to_node(struct device *dev)
634{
635 return dev->numa_node;
636}
637static inline void set_dev_node(struct device *dev, int node)
638{
639 dev->numa_node = node;
640}
641#else
642static inline int dev_to_node(struct device *dev)
643{
644 return -1;
645}
646static inline void set_dev_node(struct device *dev, int node)
647{
648}
649#endif
650
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200651static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
652{
653 return dev ? dev->power.subsys_data : NULL;
654}
655
Ming Leif67f1292009-03-01 21:10:49 +0800656static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
657{
658 return dev->kobj.uevent_suppress;
659}
660
661static inline void dev_set_uevent_suppress(struct device *dev, int val)
662{
663 dev->kobj.uevent_suppress = val;
664}
665
Daniel Ritzd305ef52005-09-22 00:47:24 -0700666static inline int device_is_registered(struct device *dev)
667{
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400668 return dev->kobj.state_in_sysfs;
Daniel Ritzd305ef52005-09-22 00:47:24 -0700669}
670
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100671static inline void device_enable_async_suspend(struct device *dev)
672{
Alan Sternf76b168b2011-06-18 20:22:23 +0200673 if (!dev->power.is_prepared)
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100674 dev->power.async_suspend = true;
675}
676
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100677static inline void device_disable_async_suspend(struct device *dev)
678{
Alan Sternf76b168b2011-06-18 20:22:23 +0200679 if (!dev->power.is_prepared)
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100680 dev->power.async_suspend = false;
681}
682
683static inline bool device_async_suspend_enabled(struct device *dev)
684{
685 return !!dev->power.async_suspend;
686}
687
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800688static inline void device_lock(struct device *dev)
689{
Thomas Gleixner31427882010-01-29 20:39:02 +0000690 mutex_lock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800691}
692
693static inline int device_trylock(struct device *dev)
694{
Thomas Gleixner31427882010-01-29 20:39:02 +0000695 return mutex_trylock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800696}
697
698static inline void device_unlock(struct device *dev)
699{
Thomas Gleixner31427882010-01-29 20:39:02 +0000700 mutex_unlock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800701}
702
Adrian Bunk1f217822006-12-19 13:01:28 -0800703void driver_init(void);
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/*
706 * High level routines for use by the bus drivers
707 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800708extern int __must_check device_register(struct device *dev);
709extern void device_unregister(struct device *dev);
710extern void device_initialize(struct device *dev);
711extern int __must_check device_add(struct device *dev);
712extern void device_del(struct device *dev);
713extern int device_for_each_child(struct device *dev, void *data,
714 int (*fn)(struct device *dev, void *data));
715extern struct device *device_find_child(struct device *dev, void *data,
716 int (*match)(struct device *dev, void *data));
Johannes Berg6937e8f2010-08-05 17:38:18 +0200717extern int device_rename(struct device *dev, const char *new_name);
Cornelia Huckffa6a702009-03-04 12:44:00 +0100718extern int device_move(struct device *dev, struct device *new_parent,
719 enum dpm_order dpm_order);
Kay Sieverse454cea2009-09-18 23:01:12 +0200720extern const char *device_get_devnode(struct device *dev,
721 mode_t *mode, const char **tmp);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700722extern void *dev_get_drvdata(const struct device *dev);
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200723extern int dev_set_drvdata(struct device *dev, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725/*
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000726 * Root device objects for grouping under /sys/devices
727 */
728extern struct device *__root_device_register(const char *name,
729 struct module *owner);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400730
731/*
732 * This is a macro to avoid include problems with THIS_MODULE,
733 * just as per what is done for device_schedule_callback() above.
734 */
735#define root_device_register(name) \
736 __root_device_register(name, THIS_MODULE)
737
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000738extern void root_device_unregister(struct device *root);
739
Mark Browna5b8b1a2009-07-17 15:06:08 +0100740static inline void *dev_get_platdata(const struct device *dev)
741{
742 return dev->platform_data;
743}
744
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000745/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 * Manual binding of a device to driver. See drivers/base/bus.c
747 * for information on use.
748 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700749extern int __must_check device_bind_driver(struct device *dev);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800750extern void device_release_driver(struct device *dev);
751extern int __must_check device_attach(struct device *dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700752extern int __must_check driver_attach(struct device_driver *drv);
753extern int __must_check device_reprobe(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700755/*
756 * Easy functions for dynamically creating devices on the fly
757 */
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -0700758extern struct device *device_create_vargs(struct class *cls,
759 struct device *parent,
760 dev_t devt,
761 void *drvdata,
762 const char *fmt,
763 va_list vargs);
Joe Perchesb9075fa2011-10-31 17:11:33 -0700764extern __printf(5, 6)
765struct device *device_create(struct class *cls, struct device *parent,
766 dev_t devt, void *drvdata,
767 const char *fmt, ...);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700768extern void device_destroy(struct class *cls, dev_t devt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/*
771 * Platform "fixup" functions - allow the platform to have their say
772 * about devices and actions that the general device layer doesn't
773 * know about.
774 */
775/* Notify platform of device discovery */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800776extern int (*platform_notify)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800778extern int (*platform_notify_remove)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780
Wanlong Gao880ffb52011-05-05 07:55:36 +0800781/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * get_device - atomically increment the reference count for the device.
783 *
784 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800785extern struct device *get_device(struct device *dev);
786extern void put_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Arjan van de Vend4d52912009-04-21 13:32:54 -0700788extern void wait_for_device_probe(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Kay Sievers2b2af542009-04-30 15:23:42 +0200790#ifdef CONFIG_DEVTMPFS
791extern int devtmpfs_create_node(struct device *dev);
792extern int devtmpfs_delete_node(struct device *dev);
Kay Sievers073120c2009-10-28 19:51:17 +0100793extern int devtmpfs_mount(const char *mntdir);
Kay Sievers2b2af542009-04-30 15:23:42 +0200794#else
795static inline int devtmpfs_create_node(struct device *dev) { return 0; }
796static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
797static inline int devtmpfs_mount(const char *mountpoint) { return 0; }
798#endif
799
Rytchkov Alexey116f232b2006-03-22 00:58:53 +0100800/* drivers/base/power/shutdown.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801extern void device_shutdown(void);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/* debugging and troubleshooting/diagnostic helpers. */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700804extern const char *dev_driver_string(const struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Joe Perches99bcf212010-06-27 01:02:34 +0000806
807#ifdef CONFIG_PRINTK
808
Joe Perchescbc46632011-08-11 14:36:21 -0400809extern int __dev_printk(const char *level, const struct device *dev,
810 struct va_format *vaf);
Joe Perchesb9075fa2011-10-31 17:11:33 -0700811extern __printf(3, 4)
812int dev_printk(const char *level, const struct device *dev,
813 const char *fmt, ...)
814 ;
815extern __printf(2, 3)
816int dev_emerg(const struct device *dev, const char *fmt, ...);
817extern __printf(2, 3)
818int dev_alert(const struct device *dev, const char *fmt, ...);
819extern __printf(2, 3)
820int dev_crit(const struct device *dev, const char *fmt, ...);
821extern __printf(2, 3)
822int dev_err(const struct device *dev, const char *fmt, ...);
823extern __printf(2, 3)
824int dev_warn(const struct device *dev, const char *fmt, ...);
825extern __printf(2, 3)
826int dev_notice(const struct device *dev, const char *fmt, ...);
827extern __printf(2, 3)
828int _dev_info(const struct device *dev, const char *fmt, ...);
Joe Perches99bcf212010-06-27 01:02:34 +0000829
830#else
831
Joe Perchescbc46632011-08-11 14:36:21 -0400832static inline int __dev_printk(const char *level, const struct device *dev,
833 struct va_format *vaf)
Joe Perchesb9075fa2011-10-31 17:11:33 -0700834{ return 0; }
835static inline __printf(3, 4)
836int dev_printk(const char *level, const struct device *dev,
837 const char *fmt, ...)
838{ return 0; }
Joe Perches99bcf212010-06-27 01:02:34 +0000839
Joe Perchesb9075fa2011-10-31 17:11:33 -0700840static inline __printf(2, 3)
841int dev_emerg(const struct device *dev, const char *fmt, ...)
842{ return 0; }
843static inline __printf(2, 3)
844int dev_crit(const struct device *dev, const char *fmt, ...)
845{ return 0; }
846static inline __printf(2, 3)
847int dev_alert(const struct device *dev, const char *fmt, ...)
848{ return 0; }
849static inline __printf(2, 3)
850int dev_err(const struct device *dev, const char *fmt, ...)
851{ return 0; }
852static inline __printf(2, 3)
853int dev_warn(const struct device *dev, const char *fmt, ...)
854{ return 0; }
855static inline __printf(2, 3)
856int dev_notice(const struct device *dev, const char *fmt, ...)
857{ return 0; }
858static inline __printf(2, 3)
859int _dev_info(const struct device *dev, const char *fmt, ...)
860{ return 0; }
Joe Perches99bcf212010-06-27 01:02:34 +0000861
862#endif
863
864/*
865 * Stupid hackaround for existing uses of non-printk uses dev_info
866 *
867 * Note that the definition of dev_info below is actually _dev_info
868 * and a macro is used to avoid redefining dev_info
869 */
870
871#define dev_info(dev, fmt, arg...) _dev_info(dev, fmt, ##arg)
Emil Medve7b8712e2007-10-30 14:37:14 -0500872
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100873#if defined(DEBUG)
874#define dev_dbg(dev, format, arg...) \
Joe Perches99bcf212010-06-27 01:02:34 +0000875 dev_printk(KERN_DEBUG, dev, format, ##arg)
Jason Barone9d376f2009-02-05 11:51:38 -0500876#elif defined(CONFIG_DYNAMIC_DEBUG)
Joe Perches99bcf212010-06-27 01:02:34 +0000877#define dev_dbg(dev, format, ...) \
878do { \
Jason Baron346e15b2008-08-12 16:46:19 -0400879 dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \
Joe Perches99bcf212010-06-27 01:02:34 +0000880} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881#else
Joe Perches99bcf212010-06-27 01:02:34 +0000882#define dev_dbg(dev, format, arg...) \
883({ \
884 if (0) \
885 dev_printk(KERN_DEBUG, dev, format, ##arg); \
886 0; \
887})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888#endif
889
David Brownellaebdc3b2007-07-12 22:08:22 -0700890#ifdef VERBOSE_DEBUG
891#define dev_vdbg dev_dbg
892#else
Joe Perches99bcf212010-06-27 01:02:34 +0000893#define dev_vdbg(dev, format, arg...) \
894({ \
895 if (0) \
896 dev_printk(KERN_DEBUG, dev, format, ##arg); \
897 0; \
898})
David Brownellaebdc3b2007-07-12 22:08:22 -0700899#endif
900
Arjan van de Vene6139662008-09-20 19:08:39 -0700901/*
Felipe Balbibcdd3232011-03-16 15:59:35 +0200902 * dev_WARN*() acts like dev_printk(), but with the key difference
Arjan van de Vene6139662008-09-20 19:08:39 -0700903 * of using a WARN/WARN_ON to get the message out, including the
904 * file/line information and a backtrace.
905 */
906#define dev_WARN(dev, format, arg...) \
907 WARN(1, "Device: %s\n" format, dev_driver_string(dev), ## arg);
908
Felipe Balbibcdd3232011-03-16 15:59:35 +0200909#define dev_WARN_ONCE(dev, condition, format, arg...) \
910 WARN_ONCE(condition, "Device %s\n" format, \
911 dev_driver_string(dev), ## arg)
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913/* Create alias, so I can be autoloaded. */
914#define MODULE_ALIAS_CHARDEV(major,minor) \
915 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
916#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
917 MODULE_ALIAS("char-major-" __stringify(major) "-*")
Andi Kleene52eec12010-09-08 16:54:17 +0200918
919#ifdef CONFIG_SYSFS_DEPRECATED
920extern long sysfs_deprecated;
921#else
922#define sysfs_deprecated 0
923#endif
924
Lars-Peter Clausen907d0ed2011-11-16 10:13:35 +0100925/**
926 * module_driver() - Helper macro for drivers that don't do anything
927 * special in module init/exit. This eliminates a lot of boilerplate.
928 * Each module may only use this macro once, and calling it replaces
929 * module_init() and module_exit().
930 *
931 * Use this macro to construct bus specific macros for registering
932 * drivers, and do not use it on its own.
933 */
934#define module_driver(__driver, __register, __unregister) \
935static int __init __driver##_init(void) \
936{ \
937 return __register(&(__driver)); \
938} \
939module_init(__driver##_init); \
940static void __exit __driver##_exit(void) \
941{ \
942 __unregister(&(__driver)); \
943} \
944module_exit(__driver##_exit);
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946#endif /* _DEVICE_H_ */