blob: e88abeecfadf44b45b3325e66cdcac82e8901185 [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>
23#include <linux/module.h>
24#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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct class;
Kay Sievers6b6e39a2010-11-15 23:13:18 +010033struct subsys_private;
Kay Sieversb8c5cec2007-02-16 17:33:36 +010034struct bus_type;
Grant Likelyd706c1b2010-04-13 16:12:28 -070035struct device_node;
Joerg Roedelff217762011-08-26 16:48:26 +020036struct iommu_ops;
Kay Sieversb8c5cec2007-02-16 17:33:36 +010037
38struct bus_attribute {
39 struct attribute attr;
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080040 ssize_t (*show)(struct bus_type *bus, char *buf);
41 ssize_t (*store)(struct bus_type *bus, const char *buf, size_t count);
Kay Sieversb8c5cec2007-02-16 17:33:36 +010042};
43
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080044#define BUS_ATTR(_name, _mode, _show, _store) \
45struct bus_attribute bus_attr_##_name = __ATTR(_name, _mode, _show, _store)
Kay Sieversb8c5cec2007-02-16 17:33:36 +010046
47extern int __must_check bus_create_file(struct bus_type *,
48 struct bus_attribute *);
49extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Wanlong Gao880ffb52011-05-05 07:55:36 +080051/**
52 * struct bus_type - The bus type of the device
53 *
54 * @name: The name of the bus.
55 * @bus_attrs: Default attributes of the bus.
56 * @dev_attrs: Default attributes of the devices on the bus.
57 * @drv_attrs: Default attributes of the device drivers on the bus.
58 * @match: Called, perhaps multiple times, whenever a new device or driver
59 * is added for this bus. It should return a nonzero value if the
60 * given device can be handled by the given driver.
61 * @uevent: Called when a device is added, removed, or a few other things
62 * that generate uevents to add the environment variables.
63 * @probe: Called when a new device or driver add to this bus, and callback
64 * the specific driver's probe to initial the matched device.
65 * @remove: Called when a device removed from this bus.
66 * @shutdown: Called at shut-down time to quiesce the device.
67 * @suspend: Called when a device on this bus wants to go to sleep mode.
68 * @resume: Called to bring a device on this bus out of sleep mode.
69 * @pm: Power management operations of this bus, callback the specific
70 * device driver's pm-ops.
Joerg Roedelff217762011-08-26 16:48:26 +020071 * @iommu_ops IOMMU specific operations for this bus, used to attach IOMMU
72 * driver implementations to a bus and allow the driver to do
73 * bus-specific setup
Wanlong Gao880ffb52011-05-05 07:55:36 +080074 * @p: The private data of the driver core, only the driver core can
75 * touch this.
76 *
77 * A bus is a channel between the processor and one or more devices. For the
78 * purposes of the device model, all devices are connected via a bus, even if
79 * it is an internal, virtual, "platform" bus. Buses can plug into each other.
80 * A USB controller is usually a PCI device, for example. The device model
81 * represents the actual connections between buses and the devices they control.
82 * A bus is represented by the bus_type structure. It contains the name, the
83 * default attributes, the bus' methods, PM operations, and the driver core's
84 * private data.
85 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct bus_type {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080087 const char *name;
88 struct bus_attribute *bus_attrs;
89 struct device_attribute *dev_attrs;
90 struct driver_attribute *drv_attrs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080092 int (*match)(struct device *dev, struct device_driver *drv);
93 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
94 int (*probe)(struct device *dev);
95 int (*remove)(struct device *dev);
96 void (*shutdown)(struct device *dev);
Linus Torvalds7c8265f2006-06-24 14:50:29 -070097
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080098 int (*suspend)(struct device *dev, pm_message_t state);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -080099 int (*resume)(struct device *dev);
Kay Sieversb8c5cec2007-02-16 17:33:36 +0100100
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700101 const struct dev_pm_ops *pm;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200102
Joerg Roedelff217762011-08-26 16:48:26 +0200103 struct iommu_ops *iommu_ops;
104
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100105 struct subsys_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800108extern int __must_check bus_register(struct bus_type *bus);
109extern void bus_unregister(struct bus_type *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800111extern int __must_check bus_rescan_devices(struct bus_type *bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* iterator helpers for buses */
114
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800115int bus_for_each_dev(struct bus_type *bus, struct device *start, void *data,
116 int (*fn)(struct device *dev, void *data));
117struct device *bus_find_device(struct bus_type *bus, struct device *start,
118 void *data,
119 int (*match)(struct device *dev, void *data));
Greg Kroah-Hartman1f9ffc02008-01-27 10:29:20 -0800120struct device *bus_find_device_by_name(struct bus_type *bus,
121 struct device *start,
122 const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Jean Delvarecc7447a2010-06-16 11:44:18 +0200124int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,
125 void *data, int (*fn)(struct device_driver *, void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Greg Kroah-Hartman99178b02008-08-26 11:00:57 -0500127void bus_sort_breadthfirst(struct bus_type *bus,
128 int (*compare)(const struct device *a,
129 const struct device *b));
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000130/*
131 * Bus notifiers: Get notified of addition/removal of devices
132 * and binding/unbinding of drivers to devices.
133 * In the long run, it should be a replacement for the platform
134 * notify hooks.
135 */
136struct notifier_block;
137
138extern int bus_register_notifier(struct bus_type *bus,
139 struct notifier_block *nb);
140extern int bus_unregister_notifier(struct bus_type *bus,
141 struct notifier_block *nb);
142
143/* All 4 notifers below get called with the target struct device *
144 * as an argument. Note that those functions are likely to be called
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800145 * with the device lock held in the core, so be careful.
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000146 */
147#define BUS_NOTIFY_ADD_DEVICE 0x00000001 /* device added */
148#define BUS_NOTIFY_DEL_DEVICE 0x00000002 /* device removed */
Magnus Damm45daef02010-07-23 19:56:18 +0900149#define BUS_NOTIFY_BIND_DRIVER 0x00000003 /* driver about to be
150 bound */
151#define BUS_NOTIFY_BOUND_DRIVER 0x00000004 /* driver bound to device */
152#define BUS_NOTIFY_UNBIND_DRIVER 0x00000005 /* driver about to be
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000153 unbound */
Magnus Damm45daef02010-07-23 19:56:18 +0900154#define BUS_NOTIFY_UNBOUND_DRIVER 0x00000006 /* driver is unbound
Joerg Roedel309b7d62009-04-24 14:57:00 +0200155 from the device */
Benjamin Herrenschmidt116af372006-10-25 13:44:59 +1000156
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700157extern struct kset *bus_get_kset(struct bus_type *bus);
Greg Kroah-Hartmanb2490722007-11-01 19:41:16 -0700158extern struct klist *bus_get_device_klist(struct bus_type *bus);
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700159
Wanlong Gao880ffb52011-05-05 07:55:36 +0800160/**
161 * struct device_driver - The basic device driver structure
162 * @name: Name of the device driver.
163 * @bus: The bus which the device of this driver belongs to.
164 * @owner: The module owner.
165 * @mod_name: Used for built-in modules.
166 * @suppress_bind_attrs: Disables bind/unbind via sysfs.
167 * @of_match_table: The open firmware table.
168 * @probe: Called to query the existence of a specific device,
169 * whether this driver can work with it, and bind the driver
170 * to a specific device.
171 * @remove: Called when the device is removed from the system to
172 * unbind a device from this driver.
173 * @shutdown: Called at shut-down time to quiesce the device.
174 * @suspend: Called to put the device to sleep mode. Usually to a
175 * low power state.
176 * @resume: Called to bring a device from sleep mode.
177 * @groups: Default attributes that get created by the driver core
178 * automatically.
179 * @pm: Power management operations of the device which matched
180 * this driver.
181 * @p: Driver core's private data, no one other than the driver
182 * core can touch this.
183 *
184 * The device driver-model tracks all of the drivers known to the system.
185 * The main reason for this tracking is to enable the driver core to match
186 * up drivers with new devices. Once drivers are known objects within the
187 * system, however, a number of other things become possible. Device drivers
188 * can export information and configuration variables that are independent
189 * of any specific device.
190 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191struct device_driver {
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800192 const char *name;
193 struct bus_type *bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800195 struct module *owner;
Dmitry Torokhov1a6f2a72009-10-12 20:17:41 -0700196 const char *mod_name; /* used for built-in modules */
197
198 bool suppress_bind_attrs; /* disables bind/unbind via sysfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Grant Likely597b9d12010-04-13 16:13:01 -0700200 const struct of_device_id *of_match_table;
Grant Likely597b9d12010-04-13 16:13:01 -0700201
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800202 int (*probe) (struct device *dev);
203 int (*remove) (struct device *dev);
204 void (*shutdown) (struct device *dev);
205 int (*suspend) (struct device *dev, pm_message_t state);
206 int (*resume) (struct device *dev);
David Brownella4dbd672009-06-24 10:06:31 -0700207 const struct attribute_group **groups;
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800208
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700209 const struct dev_pm_ops *pm;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200210
Greg Kroah-Hartmane5dd1272007-11-28 15:59:15 -0800211 struct driver_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
214
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800215extern int __must_check driver_register(struct device_driver *drv);
216extern void driver_unregister(struct device_driver *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800218extern struct device_driver *get_driver(struct device_driver *drv);
219extern void put_driver(struct device_driver *drv);
220extern struct device_driver *driver_find(const char *name,
221 struct bus_type *bus);
Greg Kroah-Hartmand7792492006-07-18 10:59:59 -0700222extern int driver_probe_done(void);
Ming Leib23530e2009-02-21 16:45:07 +0800223extern void wait_for_device_probe(void);
Arjan van de Ven216773a2009-02-14 01:59:06 +0100224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100226/* sysfs interface for exporting driver attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228struct driver_attribute {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800229 struct attribute attr;
230 ssize_t (*show)(struct device_driver *driver, char *buf);
231 ssize_t (*store)(struct device_driver *driver, const char *buf,
232 size_t count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233};
234
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800235#define DRIVER_ATTR(_name, _mode, _show, _store) \
236struct driver_attribute driver_attr_##_name = \
237 __ATTR(_name, _mode, _show, _store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800239extern int __must_check driver_create_file(struct device_driver *driver,
Phil Carmody099c2f22009-12-18 15:34:21 +0200240 const struct driver_attribute *attr);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800241extern void driver_remove_file(struct device_driver *driver,
Phil Carmody099c2f22009-12-18 15:34:21 +0200242 const struct driver_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Greg Kroah-Hartmancbe9c592007-12-19 15:54:39 -0400244extern int __must_check driver_add_kobj(struct device_driver *drv,
245 struct kobject *kobj,
246 const char *fmt, ...);
247
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800248extern int __must_check driver_for_each_device(struct device_driver *drv,
249 struct device *start,
250 void *data,
251 int (*fn)(struct device *dev,
252 void *));
253struct device *driver_find_device(struct device_driver *drv,
254 struct device *start, void *data,
255 int (*match)(struct device *dev, void *data));
mochel@digitalimplant.orgfae3cd02005-03-21 10:59:56 -0800256
Wanlong Gao880ffb52011-05-05 07:55:36 +0800257/**
258 * struct class - device classes
259 * @name: Name of the class.
260 * @owner: The module owner.
261 * @class_attrs: Default attributes of this class.
262 * @dev_attrs: Default attributes of the devices belong to the class.
263 * @dev_bin_attrs: Default binary attributes of the devices belong to the class.
264 * @dev_kobj: The kobject that represents this class and links it into the hierarchy.
265 * @dev_uevent: Called when a device is added, removed from this class, or a
266 * few other things that generate uevents to add the environment
267 * variables.
268 * @devnode: Callback to provide the devtmpfs.
269 * @class_release: Called to release this class.
270 * @dev_release: Called to release the device.
271 * @suspend: Used to put the device to sleep mode, usually to a low power
272 * state.
273 * @resume: Used to bring the device from the sleep mode.
274 * @ns_type: Callbacks so sysfs can detemine namespaces.
275 * @namespace: Namespace of the device belongs to this class.
276 * @pm: The default device power management operations of this class.
277 * @p: The private data of the driver core, no one other than the
278 * driver core can touch this.
279 *
280 * A class is a higher-level view of a device that abstracts out low-level
281 * implementation details. Drivers may see a SCSI disk or an ATA disk, but,
282 * at the class level, they are all simply disks. Classes allow user space
283 * to work with devices based on what they do, rather than how they are
284 * connected or how they work.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 */
286struct class {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800287 const char *name;
288 struct module *owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800290 struct class_attribute *class_attrs;
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800291 struct device_attribute *dev_attrs;
Stefan Achatzc97415a2010-11-26 19:57:29 +0000292 struct bin_attribute *dev_bin_attrs;
Dan Williamse105b8b2008-04-21 10:51:07 -0700293 struct kobject *dev_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800295 int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sieverse454cea2009-09-18 23:01:12 +0200296 char *(*devnode)(struct device *dev, mode_t *mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800298 void (*class_release)(struct class *class);
299 void (*dev_release)(struct device *dev);
Linus Torvalds7c8265f2006-06-24 14:50:29 -0700300
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800301 int (*suspend)(struct device *dev, pm_message_t state);
302 int (*resume)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200303
Eric W. Biedermanbc451f22010-03-30 11:31:25 -0700304 const struct kobj_ns_type_operations *ns_type;
305 const void *(*namespace)(struct device *dev);
306
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700307 const struct dev_pm_ops *pm;
308
Kay Sievers6b6e39a2010-11-15 23:13:18 +0100309 struct subsys_private *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310};
311
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200312struct class_dev_iter {
313 struct klist_iter ki;
314 const struct device_type *type;
315};
316
Dan Williamse105b8b2008-04-21 10:51:07 -0700317extern struct kobject *sysfs_dev_block_kobj;
318extern struct kobject *sysfs_dev_char_kobj;
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700319extern int __must_check __class_register(struct class *class,
320 struct lock_class_key *key);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800321extern void class_unregister(struct class *class);
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700322
323/* This is a #define to keep the compiler from merging different
324 * instances of the __key variable */
325#define class_register(class) \
326({ \
327 static struct lock_class_key __key; \
328 __class_register(class, &__key); \
329})
330
Jean Delvare46227092009-08-04 12:55:34 +0200331struct class_compat;
332struct class_compat *class_compat_register(const char *name);
333void class_compat_unregister(struct class_compat *cls);
334int class_compat_create_link(struct class_compat *cls, struct device *dev,
335 struct device *device_link);
336void class_compat_remove_link(struct class_compat *cls, struct device *dev,
337 struct device *device_link);
338
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200339extern void class_dev_iter_init(struct class_dev_iter *iter,
340 struct class *class,
341 struct device *start,
342 const struct device_type *type);
343extern struct device *class_dev_iter_next(struct class_dev_iter *iter);
344extern void class_dev_iter_exit(struct class_dev_iter *iter);
345
Greg Kroah-Hartman93562b52008-05-22 17:21:08 -0400346extern int class_for_each_device(struct class *class, struct device *start,
347 void *data,
Dave Youngfd048972008-01-22 15:27:08 +0800348 int (*fn)(struct device *dev, void *data));
Greg Kroah-Hartman695794a2008-05-22 17:21:08 -0400349extern struct device *class_find_device(struct class *class,
350 struct device *start, void *data,
Dave Youngfd048972008-01-22 15:27:08 +0800351 int (*match)(struct device *, void *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353struct class_attribute {
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800354 struct attribute attr;
Andi Kleen28812fe2010-01-05 12:48:07 +0100355 ssize_t (*show)(struct class *class, struct class_attribute *attr,
356 char *buf);
357 ssize_t (*store)(struct class *class, struct class_attribute *attr,
358 const char *buf, size_t count);
Eric W. Biederman672d82c2011-10-12 21:55:08 +0000359 const void *(*namespace)(struct class *class,
360 const struct class_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800363#define CLASS_ATTR(_name, _mode, _show, _store) \
364struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800366extern int __must_check class_create_file(struct class *class,
367 const struct class_attribute *attr);
368extern void class_remove_file(struct class *class,
369 const struct class_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Andi Kleen869dfc82010-01-05 12:48:08 +0100371/* Simple class attribute that is just a static string */
372
373struct class_attribute_string {
374 struct class_attribute attr;
375 char *str;
376};
377
378/* Currently read-only only */
379#define _CLASS_ATTR_STRING(_name, _mode, _str) \
380 { __ATTR(_name, _mode, show_class_attr_string, NULL), _str }
381#define CLASS_ATTR_STRING(_name, _mode, _str) \
382 struct class_attribute_string class_attr_##_name = \
383 _CLASS_ATTR_STRING(_name, _mode, _str)
384
385extern ssize_t show_class_attr_string(struct class *class, struct class_attribute *attr,
386 char *buf);
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388struct class_interface {
389 struct list_head node;
390 struct class *class;
391
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200392 int (*add_dev) (struct device *, struct class_interface *);
393 void (*remove_dev) (struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394};
395
Andrew Morton4a7fb632006-08-14 22:43:17 -0700396extern int __must_check class_interface_register(struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397extern void class_interface_unregister(struct class_interface *);
398
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700399extern struct class * __must_check __class_create(struct module *owner,
400 const char *name,
401 struct lock_class_key *key);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800402extern void class_destroy(struct class *cls);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800403
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700404/* This is a #define to keep the compiler from merging different
405 * instances of the __key variable */
406#define class_create(owner, name) \
407({ \
408 static struct lock_class_key __key; \
409 __class_create(owner, name, &__key); \
410})
411
Kay Sievers414264f2007-03-12 21:08:57 +0100412/*
413 * The type of device, "struct device" is embedded in. A class
414 * or bus can contain devices of different types
415 * like "partitions" and "disks", "mouse" and "event".
416 * This identifies the device type and carries type-specific
417 * information, equivalent to the kobj_type of a kobject.
418 * If "name" is specified, the uevent will contain it in
419 * the DEVTYPE variable.
420 */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200421struct device_type {
Kay Sievers414264f2007-03-12 21:08:57 +0100422 const char *name;
David Brownella4dbd672009-06-24 10:06:31 -0700423 const struct attribute_group **groups;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200424 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sieverse454cea2009-09-18 23:01:12 +0200425 char *(*devnode)(struct device *dev, mode_t *mode);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200426 void (*release)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200427
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700428 const struct dev_pm_ops *pm;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200429};
430
Kay Sieversa7fd6702005-10-01 14:49:43 +0200431/* interface for exporting device attributes */
432struct device_attribute {
433 struct attribute attr;
434 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
435 char *buf);
436 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
437 const char *buf, size_t count);
438};
439
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800440#define DEVICE_ATTR(_name, _mode, _show, _store) \
441struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200442
Andrew Morton4a7fb632006-08-14 22:43:17 -0700443extern int __must_check device_create_file(struct device *device,
Phil Carmody66ecb922009-12-18 15:34:20 +0200444 const struct device_attribute *entry);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800445extern void device_remove_file(struct device *dev,
Phil Carmody26579ab2009-12-18 15:34:19 +0200446 const struct device_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700447extern int __must_check device_create_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200448 const struct bin_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700449extern void device_remove_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200450 const struct bin_attribute *attr);
Alan Stern523ded72007-04-26 00:12:04 -0700451extern int device_schedule_callback_owner(struct device *dev,
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800452 void (*func)(struct device *dev), struct module *owner);
Alan Stern523ded72007-04-26 00:12:04 -0700453
454/* This is a macro to avoid include problems with THIS_MODULE */
455#define device_schedule_callback(dev, func) \
456 device_schedule_callback_owner(dev, func, THIS_MODULE)
Tejun Heo9ac78492007-01-20 16:00:26 +0900457
458/* device resource management */
459typedef void (*dr_release_t)(struct device *dev, void *res);
460typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
461
462#ifdef CONFIG_DEBUG_DEVRES
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800463extern void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
Tejun Heo9ac78492007-01-20 16:00:26 +0900464 const char *name);
465#define devres_alloc(release, size, gfp) \
466 __devres_alloc(release, size, gfp, #release)
467#else
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800468extern void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
Tejun Heo9ac78492007-01-20 16:00:26 +0900469#endif
470extern void devres_free(void *res);
471extern void devres_add(struct device *dev, void *res);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800472extern void *devres_find(struct device *dev, dr_release_t release,
Tejun Heo9ac78492007-01-20 16:00:26 +0900473 dr_match_t match, void *match_data);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800474extern void *devres_get(struct device *dev, void *new_res,
475 dr_match_t match, void *match_data);
476extern void *devres_remove(struct device *dev, dr_release_t release,
477 dr_match_t match, void *match_data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900478extern int devres_destroy(struct device *dev, dr_release_t release,
479 dr_match_t match, void *match_data);
480
481/* devres group */
482extern void * __must_check devres_open_group(struct device *dev, void *id,
483 gfp_t gfp);
484extern void devres_close_group(struct device *dev, void *id);
485extern void devres_remove_group(struct device *dev, void *id);
486extern int devres_release_group(struct device *dev, void *id);
487
488/* managed kzalloc/kfree for device drivers, no kmalloc, always use kzalloc */
489extern void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp);
490extern void devm_kfree(struct device *dev, void *p);
491
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800492struct device_dma_parameters {
493 /*
494 * a low level driver may set these to teach IOMMU code about
495 * sg limitations.
496 */
497 unsigned int max_segment_size;
498 unsigned long segment_boundary_mask;
499};
500
Wanlong Gao880ffb52011-05-05 07:55:36 +0800501/**
502 * struct device - The basic device structure
503 * @parent: The device's "parent" device, the device to which it is attached.
504 * In most cases, a parent device is some sort of bus or host
505 * controller. If parent is NULL, the device, is a top-level device,
506 * which is not usually what you want.
507 * @p: Holds the private data of the driver core portions of the device.
508 * See the comment of the struct device_private for detail.
509 * @kobj: A top-level, abstract class from which other classes are derived.
510 * @init_name: Initial name of the device.
511 * @type: The type of device.
512 * This identifies the device type and carries type-specific
513 * information.
514 * @mutex: Mutex to synchronize calls to its driver.
515 * @bus: Type of bus device is on.
516 * @driver: Which driver has allocated this
517 * @platform_data: Platform data specific to the device.
518 * Example: For devices on custom boards, as typical of embedded
519 * and SOC based hardware, Linux often uses platform_data to point
520 * to board-specific structures describing devices and how they
521 * are wired. That can include what ports are available, chip
522 * variants, which GPIO pins act in what additional roles, and so
523 * on. This shrinks the "Board Support Packages" (BSPs) and
524 * minimizes board-specific #ifdefs in drivers.
525 * @power: For device power management.
526 * See Documentation/power/devices.txt for details.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200527 * @pm_domain: Provide callbacks that are executed during system suspend,
Wanlong Gao880ffb52011-05-05 07:55:36 +0800528 * hibernation, system resume and during runtime PM transitions
529 * along with subsystem-level and driver-level callbacks.
530 * @numa_node: NUMA node this device is close to.
531 * @dma_mask: Dma mask (if dma'ble device).
532 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
533 * hardware supports 64-bit addresses for consistent allocations
534 * such descriptors.
535 * @dma_parms: A low level driver may set these to teach IOMMU code about
536 * segment limitations.
537 * @dma_pools: Dma pools (if dma'ble device).
538 * @dma_mem: Internal for coherent mem override.
539 * @archdata: For arch-specific additions.
540 * @of_node: Associated device tree node.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800541 * @devt: For creating the sysfs "dev".
542 * @devres_lock: Spinlock to protect the resource of the device.
543 * @devres_head: The resources list of the device.
544 * @knode_class: The node used to add the device to the class list.
545 * @class: The class of the device.
546 * @groups: Optional attribute groups.
547 * @release: Callback to free the device after all references have
548 * gone away. This should be set by the allocator of the
549 * device (i.e. the bus driver that discovered the device).
550 *
551 * At the lowest level, every device in a Linux system is represented by an
552 * instance of struct device. The device structure contains the information
553 * that the device model core needs to model the system. Most subsystems,
554 * however, track additional information about the devices they host. As a
555 * result, it is rare for devices to be represented by bare device structures;
556 * instead, that structure, like kobject structures, is usually embedded within
557 * a higher-level representation of the device.
558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559struct device {
David Brownell49a4ec12007-05-08 00:29:39 -0700560 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800562 struct device_private *p;
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct kobject kobj;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700565 const char *init_name; /* initial name of the device */
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700566 const struct device_type *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Thomas Gleixner31427882010-01-29 20:39:02 +0000568 struct mutex mutex; /* mutex to synchronize calls to
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800569 * its driver.
570 */
571
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800572 struct bus_type *bus; /* type of bus device is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 struct device_driver *driver; /* which driver has allocated this
574 device */
Greg Kroah-Hartmane67c8562009-03-08 23:13:32 +0800575 void *platform_data; /* Platform specific data, device
576 core doesn't touch it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 struct dev_pm_info power;
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200578 struct dev_pm_domain *pm_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Christoph Hellwig87348132006-12-06 20:32:33 -0800580#ifdef CONFIG_NUMA
581 int numa_node; /* NUMA node this device is close to */
582#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 u64 *dma_mask; /* dma mask (if dma'able device) */
584 u64 coherent_dma_mask;/* Like dma_mask, but for
585 alloc_coherent mappings as
586 not all hardware supports
587 64 bit addresses for consistent
588 allocations such descriptors. */
589
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800590 struct device_dma_parameters *dma_parms;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct list_head dma_pools; /* dma pools (if dma'ble) */
593
594 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
595 override */
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +1100596 /* arch specific additions */
597 struct dev_archdata archdata;
Grant Likelyc9e358d2011-01-21 09:24:48 -0700598
599 struct device_node *of_node; /* associated device tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Matthew Wilcox929d2fa2008-10-16 15:51:35 -0600601 dev_t devt; /* dev_t, creates the sysfs "dev" */
602
Tejun Heo9ac78492007-01-20 16:00:26 +0900603 spinlock_t devres_lock;
604 struct list_head devres_head;
605
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200606 struct klist_node knode_class;
Kay Sieversb7a3e812006-10-07 21:54:55 +0200607 struct class *class;
David Brownella4dbd672009-06-24 10:06:31 -0700608 const struct attribute_group **groups; /* optional groups */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700609
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800610 void (*release)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611};
612
Alan Stern9a3df1f2008-03-19 22:39:13 +0100613/* Get the wakeup routines, which depend on struct device */
614#include <linux/pm_wakeup.h>
615
Jean Delvarebf9ca692008-07-30 12:29:21 -0700616static inline const char *dev_name(const struct device *dev)
Kay Sievers06916632008-05-02 06:02:41 +0200617{
Paul Mundta636ee72010-03-09 06:57:53 +0000618 /* Use the init name until the kobject becomes available */
619 if (dev->init_name)
620 return dev->init_name;
621
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100622 return kobject_name(&dev->kobj);
Kay Sievers06916632008-05-02 06:02:41 +0200623}
624
Joe Perchesb9075fa2011-10-31 17:11:33 -0700625extern __printf(2, 3)
626int dev_set_name(struct device *dev, const char *name, ...);
Stephen Rothwell413c2392008-05-30 10:16:40 +1000627
Christoph Hellwig87348132006-12-06 20:32:33 -0800628#ifdef CONFIG_NUMA
629static inline int dev_to_node(struct device *dev)
630{
631 return dev->numa_node;
632}
633static inline void set_dev_node(struct device *dev, int node)
634{
635 dev->numa_node = node;
636}
637#else
638static inline int dev_to_node(struct device *dev)
639{
640 return -1;
641}
642static inline void set_dev_node(struct device *dev, int node)
643{
644}
645#endif
646
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200647static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
648{
649 return dev ? dev->power.subsys_data : NULL;
650}
651
Ming Leif67f1292009-03-01 21:10:49 +0800652static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
653{
654 return dev->kobj.uevent_suppress;
655}
656
657static inline void dev_set_uevent_suppress(struct device *dev, int val)
658{
659 dev->kobj.uevent_suppress = val;
660}
661
Daniel Ritzd305ef52005-09-22 00:47:24 -0700662static inline int device_is_registered(struct device *dev)
663{
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400664 return dev->kobj.state_in_sysfs;
Daniel Ritzd305ef52005-09-22 00:47:24 -0700665}
666
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100667static inline void device_enable_async_suspend(struct device *dev)
668{
Alan Sternf76b168b2011-06-18 20:22:23 +0200669 if (!dev->power.is_prepared)
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100670 dev->power.async_suspend = true;
671}
672
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100673static inline void device_disable_async_suspend(struct device *dev)
674{
Alan Sternf76b168b2011-06-18 20:22:23 +0200675 if (!dev->power.is_prepared)
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100676 dev->power.async_suspend = false;
677}
678
679static inline bool device_async_suspend_enabled(struct device *dev)
680{
681 return !!dev->power.async_suspend;
682}
683
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800684static inline void device_lock(struct device *dev)
685{
Thomas Gleixner31427882010-01-29 20:39:02 +0000686 mutex_lock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800687}
688
689static inline int device_trylock(struct device *dev)
690{
Thomas Gleixner31427882010-01-29 20:39:02 +0000691 return mutex_trylock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800692}
693
694static inline void device_unlock(struct device *dev)
695{
Thomas Gleixner31427882010-01-29 20:39:02 +0000696 mutex_unlock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800697}
698
Adrian Bunk1f217822006-12-19 13:01:28 -0800699void driver_init(void);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701/*
702 * High level routines for use by the bus drivers
703 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800704extern int __must_check device_register(struct device *dev);
705extern void device_unregister(struct device *dev);
706extern void device_initialize(struct device *dev);
707extern int __must_check device_add(struct device *dev);
708extern void device_del(struct device *dev);
709extern int device_for_each_child(struct device *dev, void *data,
710 int (*fn)(struct device *dev, void *data));
711extern struct device *device_find_child(struct device *dev, void *data,
712 int (*match)(struct device *dev, void *data));
Johannes Berg6937e8f2010-08-05 17:38:18 +0200713extern int device_rename(struct device *dev, const char *new_name);
Cornelia Huckffa6a702009-03-04 12:44:00 +0100714extern int device_move(struct device *dev, struct device *new_parent,
715 enum dpm_order dpm_order);
Kay Sieverse454cea2009-09-18 23:01:12 +0200716extern const char *device_get_devnode(struct device *dev,
717 mode_t *mode, const char **tmp);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700718extern void *dev_get_drvdata(const struct device *dev);
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200719extern int dev_set_drvdata(struct device *dev, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721/*
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000722 * Root device objects for grouping under /sys/devices
723 */
724extern struct device *__root_device_register(const char *name,
725 struct module *owner);
726static inline struct device *root_device_register(const char *name)
727{
728 return __root_device_register(name, THIS_MODULE);
729}
730extern void root_device_unregister(struct device *root);
731
Mark Browna5b8b1a2009-07-17 15:06:08 +0100732static inline void *dev_get_platdata(const struct device *dev)
733{
734 return dev->platform_data;
735}
736
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000737/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * Manual binding of a device to driver. See drivers/base/bus.c
739 * for information on use.
740 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700741extern int __must_check device_bind_driver(struct device *dev);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800742extern void device_release_driver(struct device *dev);
743extern int __must_check device_attach(struct device *dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700744extern int __must_check driver_attach(struct device_driver *drv);
745extern int __must_check device_reprobe(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700747/*
748 * Easy functions for dynamically creating devices on the fly
749 */
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -0700750extern struct device *device_create_vargs(struct class *cls,
751 struct device *parent,
752 dev_t devt,
753 void *drvdata,
754 const char *fmt,
755 va_list vargs);
Joe Perchesb9075fa2011-10-31 17:11:33 -0700756extern __printf(5, 6)
757struct device *device_create(struct class *cls, struct device *parent,
758 dev_t devt, void *drvdata,
759 const char *fmt, ...);
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700760extern void device_destroy(struct class *cls, dev_t devt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/*
763 * Platform "fixup" functions - allow the platform to have their say
764 * about devices and actions that the general device layer doesn't
765 * know about.
766 */
767/* Notify platform of device discovery */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800768extern int (*platform_notify)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800770extern int (*platform_notify_remove)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772
Wanlong Gao880ffb52011-05-05 07:55:36 +0800773/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * get_device - atomically increment the reference count for the device.
775 *
776 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800777extern struct device *get_device(struct device *dev);
778extern void put_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Arjan van de Vend4d52912009-04-21 13:32:54 -0700780extern void wait_for_device_probe(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Kay Sievers2b2af542009-04-30 15:23:42 +0200782#ifdef CONFIG_DEVTMPFS
783extern int devtmpfs_create_node(struct device *dev);
784extern int devtmpfs_delete_node(struct device *dev);
Kay Sievers073120c2009-10-28 19:51:17 +0100785extern int devtmpfs_mount(const char *mntdir);
Kay Sievers2b2af542009-04-30 15:23:42 +0200786#else
787static inline int devtmpfs_create_node(struct device *dev) { return 0; }
788static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
789static inline int devtmpfs_mount(const char *mountpoint) { return 0; }
790#endif
791
Rytchkov Alexey116f232b2006-03-22 00:58:53 +0100792/* drivers/base/power/shutdown.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793extern void device_shutdown(void);
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/* debugging and troubleshooting/diagnostic helpers. */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700796extern const char *dev_driver_string(const struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Joe Perches99bcf212010-06-27 01:02:34 +0000798
799#ifdef CONFIG_PRINTK
800
Joe Perchescbc46632011-08-11 14:36:21 -0400801extern int __dev_printk(const char *level, const struct device *dev,
802 struct va_format *vaf);
Joe Perchesb9075fa2011-10-31 17:11:33 -0700803extern __printf(3, 4)
804int dev_printk(const char *level, const struct device *dev,
805 const char *fmt, ...)
806 ;
807extern __printf(2, 3)
808int dev_emerg(const struct device *dev, const char *fmt, ...);
809extern __printf(2, 3)
810int dev_alert(const struct device *dev, const char *fmt, ...);
811extern __printf(2, 3)
812int dev_crit(const struct device *dev, const char *fmt, ...);
813extern __printf(2, 3)
814int dev_err(const struct device *dev, const char *fmt, ...);
815extern __printf(2, 3)
816int dev_warn(const struct device *dev, const char *fmt, ...);
817extern __printf(2, 3)
818int dev_notice(const struct device *dev, const char *fmt, ...);
819extern __printf(2, 3)
820int _dev_info(const struct device *dev, const char *fmt, ...);
Joe Perches99bcf212010-06-27 01:02:34 +0000821
822#else
823
Joe Perchescbc46632011-08-11 14:36:21 -0400824static inline int __dev_printk(const char *level, const struct device *dev,
825 struct va_format *vaf)
Joe Perchesb9075fa2011-10-31 17:11:33 -0700826{ return 0; }
827static inline __printf(3, 4)
828int dev_printk(const char *level, const struct device *dev,
829 const char *fmt, ...)
830{ return 0; }
Joe Perches99bcf212010-06-27 01:02:34 +0000831
Joe Perchesb9075fa2011-10-31 17:11:33 -0700832static inline __printf(2, 3)
833int dev_emerg(const struct device *dev, const char *fmt, ...)
834{ return 0; }
835static inline __printf(2, 3)
836int dev_crit(const struct device *dev, const char *fmt, ...)
837{ return 0; }
838static inline __printf(2, 3)
839int dev_alert(const struct device *dev, const char *fmt, ...)
840{ return 0; }
841static inline __printf(2, 3)
842int dev_err(const struct device *dev, const char *fmt, ...)
843{ return 0; }
844static inline __printf(2, 3)
845int dev_warn(const struct device *dev, const char *fmt, ...)
846{ return 0; }
847static inline __printf(2, 3)
848int dev_notice(const struct device *dev, const char *fmt, ...)
849{ return 0; }
850static inline __printf(2, 3)
851int _dev_info(const struct device *dev, const char *fmt, ...)
852{ return 0; }
Joe Perches99bcf212010-06-27 01:02:34 +0000853
854#endif
855
856/*
857 * Stupid hackaround for existing uses of non-printk uses dev_info
858 *
859 * Note that the definition of dev_info below is actually _dev_info
860 * and a macro is used to avoid redefining dev_info
861 */
862
863#define dev_info(dev, fmt, arg...) _dev_info(dev, fmt, ##arg)
Emil Medve7b8712e2007-10-30 14:37:14 -0500864
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100865#if defined(DEBUG)
866#define dev_dbg(dev, format, arg...) \
Joe Perches99bcf212010-06-27 01:02:34 +0000867 dev_printk(KERN_DEBUG, dev, format, ##arg)
Jason Barone9d376f2009-02-05 11:51:38 -0500868#elif defined(CONFIG_DYNAMIC_DEBUG)
Joe Perches99bcf212010-06-27 01:02:34 +0000869#define dev_dbg(dev, format, ...) \
870do { \
Jason Baron346e15b2008-08-12 16:46:19 -0400871 dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \
Joe Perches99bcf212010-06-27 01:02:34 +0000872} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873#else
Joe Perches99bcf212010-06-27 01:02:34 +0000874#define dev_dbg(dev, format, arg...) \
875({ \
876 if (0) \
877 dev_printk(KERN_DEBUG, dev, format, ##arg); \
878 0; \
879})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880#endif
881
David Brownellaebdc3b2007-07-12 22:08:22 -0700882#ifdef VERBOSE_DEBUG
883#define dev_vdbg dev_dbg
884#else
Joe Perches99bcf212010-06-27 01:02:34 +0000885#define dev_vdbg(dev, format, arg...) \
886({ \
887 if (0) \
888 dev_printk(KERN_DEBUG, dev, format, ##arg); \
889 0; \
890})
David Brownellaebdc3b2007-07-12 22:08:22 -0700891#endif
892
Arjan van de Vene6139662008-09-20 19:08:39 -0700893/*
Felipe Balbibcdd3232011-03-16 15:59:35 +0200894 * dev_WARN*() acts like dev_printk(), but with the key difference
Arjan van de Vene6139662008-09-20 19:08:39 -0700895 * of using a WARN/WARN_ON to get the message out, including the
896 * file/line information and a backtrace.
897 */
898#define dev_WARN(dev, format, arg...) \
899 WARN(1, "Device: %s\n" format, dev_driver_string(dev), ## arg);
900
Felipe Balbibcdd3232011-03-16 15:59:35 +0200901#define dev_WARN_ONCE(dev, condition, format, arg...) \
902 WARN_ONCE(condition, "Device %s\n" format, \
903 dev_driver_string(dev), ## arg)
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/* Create alias, so I can be autoloaded. */
906#define MODULE_ALIAS_CHARDEV(major,minor) \
907 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
908#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
909 MODULE_ALIAS("char-major-" __stringify(major) "-*")
Andi Kleene52eec12010-09-08 16:54:17 +0200910
911#ifdef CONFIG_SYSFS_DEPRECATED
912extern long sysfs_deprecated;
913#else
914#define sysfs_deprecated 0
915#endif
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917#endif /* _DEVICE_H_ */