blob: e838e143baa7ed85d8fcc20896922d12f2376a10 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359};
360
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800361#define CLASS_ATTR(_name, _mode, _show, _store) \
362struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800364extern int __must_check class_create_file(struct class *class,
365 const struct class_attribute *attr);
366extern void class_remove_file(struct class *class,
367 const struct class_attribute *attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Andi Kleen869dfc82010-01-05 12:48:08 +0100369/* Simple class attribute that is just a static string */
370
371struct class_attribute_string {
372 struct class_attribute attr;
373 char *str;
374};
375
376/* Currently read-only only */
377#define _CLASS_ATTR_STRING(_name, _mode, _str) \
378 { __ATTR(_name, _mode, show_class_attr_string, NULL), _str }
379#define CLASS_ATTR_STRING(_name, _mode, _str) \
380 struct class_attribute_string class_attr_##_name = \
381 _CLASS_ATTR_STRING(_name, _mode, _str)
382
383extern ssize_t show_class_attr_string(struct class *class, struct class_attribute *attr,
384 char *buf);
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386struct class_interface {
387 struct list_head node;
388 struct class *class;
389
Greg Kroah-Hartmanc47ed212006-09-13 15:34:05 +0200390 int (*add_dev) (struct device *, struct class_interface *);
391 void (*remove_dev) (struct device *, struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392};
393
Andrew Morton4a7fb632006-08-14 22:43:17 -0700394extern int __must_check class_interface_register(struct class_interface *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395extern void class_interface_unregister(struct class_interface *);
396
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700397extern struct class * __must_check __class_create(struct module *owner,
398 const char *name,
399 struct lock_class_key *key);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800400extern void class_destroy(struct class *cls);
gregkh@suse.dee9ba6362005-03-15 11:54:21 -0800401
Matthew Wilcoxd2a3b912008-05-28 09:28:39 -0700402/* This is a #define to keep the compiler from merging different
403 * instances of the __key variable */
404#define class_create(owner, name) \
405({ \
406 static struct lock_class_key __key; \
407 __class_create(owner, name, &__key); \
408})
409
Kay Sievers414264f2007-03-12 21:08:57 +0100410/*
411 * The type of device, "struct device" is embedded in. A class
412 * or bus can contain devices of different types
413 * like "partitions" and "disks", "mouse" and "event".
414 * This identifies the device type and carries type-specific
415 * information, equivalent to the kobj_type of a kobject.
416 * If "name" is specified, the uevent will contain it in
417 * the DEVTYPE variable.
418 */
Kay Sieversf9f852d2006-10-07 21:54:55 +0200419struct device_type {
Kay Sievers414264f2007-03-12 21:08:57 +0100420 const char *name;
David Brownella4dbd672009-06-24 10:06:31 -0700421 const struct attribute_group **groups;
Kay Sievers7eff2e72007-08-14 15:15:12 +0200422 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
Kay Sieverse454cea2009-09-18 23:01:12 +0200423 char *(*devnode)(struct device *dev, mode_t *mode);
Kay Sieversf9f852d2006-10-07 21:54:55 +0200424 void (*release)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200425
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700426 const struct dev_pm_ops *pm;
Kay Sieversf9f852d2006-10-07 21:54:55 +0200427};
428
Kay Sieversa7fd6702005-10-01 14:49:43 +0200429/* interface for exporting device attributes */
430struct device_attribute {
431 struct attribute attr;
432 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
433 char *buf);
434 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
435 const char *buf, size_t count);
436};
437
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800438#define DEVICE_ATTR(_name, _mode, _show, _store) \
439struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
Kay Sieversa7fd6702005-10-01 14:49:43 +0200440
Andrew Morton4a7fb632006-08-14 22:43:17 -0700441extern int __must_check device_create_file(struct device *device,
Phil Carmody66ecb922009-12-18 15:34:20 +0200442 const struct device_attribute *entry);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800443extern void device_remove_file(struct device *dev,
Phil Carmody26579ab2009-12-18 15:34:19 +0200444 const struct device_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700445extern int __must_check device_create_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200446 const struct bin_attribute *attr);
Greg Kroah-Hartman2589f1882006-09-19 09:39:19 -0700447extern void device_remove_bin_file(struct device *dev,
Phil Carmody66ecb922009-12-18 15:34:20 +0200448 const struct bin_attribute *attr);
Alan Stern523ded72007-04-26 00:12:04 -0700449extern int device_schedule_callback_owner(struct device *dev,
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800450 void (*func)(struct device *dev), struct module *owner);
Alan Stern523ded72007-04-26 00:12:04 -0700451
452/* This is a macro to avoid include problems with THIS_MODULE */
453#define device_schedule_callback(dev, func) \
454 device_schedule_callback_owner(dev, func, THIS_MODULE)
Tejun Heo9ac78492007-01-20 16:00:26 +0900455
456/* device resource management */
457typedef void (*dr_release_t)(struct device *dev, void *res);
458typedef int (*dr_match_t)(struct device *dev, void *res, void *match_data);
459
460#ifdef CONFIG_DEBUG_DEVRES
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800461extern void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
Tejun Heo9ac78492007-01-20 16:00:26 +0900462 const char *name);
463#define devres_alloc(release, size, gfp) \
464 __devres_alloc(release, size, gfp, #release)
465#else
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800466extern void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
Tejun Heo9ac78492007-01-20 16:00:26 +0900467#endif
468extern void devres_free(void *res);
469extern void devres_add(struct device *dev, void *res);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800470extern void *devres_find(struct device *dev, dr_release_t release,
Tejun Heo9ac78492007-01-20 16:00:26 +0900471 dr_match_t match, void *match_data);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800472extern void *devres_get(struct device *dev, void *new_res,
473 dr_match_t match, void *match_data);
474extern void *devres_remove(struct device *dev, dr_release_t release,
475 dr_match_t match, void *match_data);
Tejun Heo9ac78492007-01-20 16:00:26 +0900476extern int devres_destroy(struct device *dev, dr_release_t release,
477 dr_match_t match, void *match_data);
478
479/* devres group */
480extern void * __must_check devres_open_group(struct device *dev, void *id,
481 gfp_t gfp);
482extern void devres_close_group(struct device *dev, void *id);
483extern void devres_remove_group(struct device *dev, void *id);
484extern int devres_release_group(struct device *dev, void *id);
485
486/* managed kzalloc/kfree for device drivers, no kmalloc, always use kzalloc */
487extern void *devm_kzalloc(struct device *dev, size_t size, gfp_t gfp);
488extern void devm_kfree(struct device *dev, void *p);
489
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800490struct device_dma_parameters {
491 /*
492 * a low level driver may set these to teach IOMMU code about
493 * sg limitations.
494 */
495 unsigned int max_segment_size;
496 unsigned long segment_boundary_mask;
497};
498
Wanlong Gao880ffb52011-05-05 07:55:36 +0800499/**
500 * struct device - The basic device structure
501 * @parent: The device's "parent" device, the device to which it is attached.
502 * In most cases, a parent device is some sort of bus or host
503 * controller. If parent is NULL, the device, is a top-level device,
504 * which is not usually what you want.
505 * @p: Holds the private data of the driver core portions of the device.
506 * See the comment of the struct device_private for detail.
507 * @kobj: A top-level, abstract class from which other classes are derived.
508 * @init_name: Initial name of the device.
509 * @type: The type of device.
510 * This identifies the device type and carries type-specific
511 * information.
512 * @mutex: Mutex to synchronize calls to its driver.
513 * @bus: Type of bus device is on.
514 * @driver: Which driver has allocated this
515 * @platform_data: Platform data specific to the device.
516 * Example: For devices on custom boards, as typical of embedded
517 * and SOC based hardware, Linux often uses platform_data to point
518 * to board-specific structures describing devices and how they
519 * are wired. That can include what ports are available, chip
520 * variants, which GPIO pins act in what additional roles, and so
521 * on. This shrinks the "Board Support Packages" (BSPs) and
522 * minimizes board-specific #ifdefs in drivers.
523 * @power: For device power management.
524 * See Documentation/power/devices.txt for details.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200525 * @pm_domain: Provide callbacks that are executed during system suspend,
Wanlong Gao880ffb52011-05-05 07:55:36 +0800526 * hibernation, system resume and during runtime PM transitions
527 * along with subsystem-level and driver-level callbacks.
528 * @numa_node: NUMA node this device is close to.
529 * @dma_mask: Dma mask (if dma'ble device).
530 * @coherent_dma_mask: Like dma_mask, but for alloc_coherent mapping as not all
531 * hardware supports 64-bit addresses for consistent allocations
532 * such descriptors.
533 * @dma_parms: A low level driver may set these to teach IOMMU code about
534 * segment limitations.
535 * @dma_pools: Dma pools (if dma'ble device).
536 * @dma_mem: Internal for coherent mem override.
537 * @archdata: For arch-specific additions.
538 * @of_node: Associated device tree node.
Wanlong Gao880ffb52011-05-05 07:55:36 +0800539 * @devt: For creating the sysfs "dev".
540 * @devres_lock: Spinlock to protect the resource of the device.
541 * @devres_head: The resources list of the device.
542 * @knode_class: The node used to add the device to the class list.
543 * @class: The class of the device.
544 * @groups: Optional attribute groups.
545 * @release: Callback to free the device after all references have
546 * gone away. This should be set by the allocator of the
547 * device (i.e. the bus driver that discovered the device).
548 *
549 * At the lowest level, every device in a Linux system is represented by an
550 * instance of struct device. The device structure contains the information
551 * that the device model core needs to model the system. Most subsystems,
552 * however, track additional information about the devices they host. As a
553 * result, it is rare for devices to be represented by bare device structures;
554 * instead, that structure, like kobject structures, is usually embedded within
555 * a higher-level representation of the device.
556 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557struct device {
David Brownell49a4ec12007-05-08 00:29:39 -0700558 struct device *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Greg Kroah-Hartmanfb069a52008-12-16 12:23:36 -0800560 struct device_private *p;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct kobject kobj;
Greg Kroah-Hartmanc906a482008-05-30 10:45:12 -0700563 const char *init_name; /* initial name of the device */
Stephen Hemmingeraed65af2011-03-28 09:12:52 -0700564 const struct device_type *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Thomas Gleixner31427882010-01-29 20:39:02 +0000566 struct mutex mutex; /* mutex to synchronize calls to
mochel@digitalimplant.orgaf703162005-03-21 10:41:04 -0800567 * its driver.
568 */
569
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800570 struct bus_type *bus; /* type of bus device is on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 struct device_driver *driver; /* which driver has allocated this
572 device */
Greg Kroah-Hartmane67c8562009-03-08 23:13:32 +0800573 void *platform_data; /* Platform specific data, device
574 core doesn't touch it */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct dev_pm_info power;
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200576 struct dev_pm_domain *pm_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Christoph Hellwig87348132006-12-06 20:32:33 -0800578#ifdef CONFIG_NUMA
579 int numa_node; /* NUMA node this device is close to */
580#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 u64 *dma_mask; /* dma mask (if dma'able device) */
582 u64 coherent_dma_mask;/* Like dma_mask, but for
583 alloc_coherent mappings as
584 not all hardware supports
585 64 bit addresses for consistent
586 allocations such descriptors. */
587
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800588 struct device_dma_parameters *dma_parms;
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 struct list_head dma_pools; /* dma pools (if dma'ble) */
591
592 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
593 override */
Benjamin Herrenschmidtc6dbaef2006-11-11 17:18:39 +1100594 /* arch specific additions */
595 struct dev_archdata archdata;
Grant Likelyc9e358d2011-01-21 09:24:48 -0700596
597 struct device_node *of_node; /* associated device tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Matthew Wilcox929d2fa2008-10-16 15:51:35 -0600599 dev_t devt; /* dev_t, creates the sysfs "dev" */
600
Tejun Heo9ac78492007-01-20 16:00:26 +0900601 spinlock_t devres_lock;
602 struct list_head devres_head;
603
Tejun Heo5a3ceb82008-08-25 19:50:19 +0200604 struct klist_node knode_class;
Kay Sieversb7a3e812006-10-07 21:54:55 +0200605 struct class *class;
David Brownella4dbd672009-06-24 10:06:31 -0700606 const struct attribute_group **groups; /* optional groups */
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700607
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800608 void (*release)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609};
610
Alan Stern9a3df1f2008-03-19 22:39:13 +0100611/* Get the wakeup routines, which depend on struct device */
612#include <linux/pm_wakeup.h>
613
Jean Delvarebf9ca692008-07-30 12:29:21 -0700614static inline const char *dev_name(const struct device *dev)
Kay Sievers06916632008-05-02 06:02:41 +0200615{
Paul Mundta636ee72010-03-09 06:57:53 +0000616 /* Use the init name until the kobject becomes available */
617 if (dev->init_name)
618 return dev->init_name;
619
Kay Sievers1fa5ae82009-01-25 15:17:37 +0100620 return kobject_name(&dev->kobj);
Kay Sievers06916632008-05-02 06:02:41 +0200621}
622
Stephen Rothwell413c2392008-05-30 10:16:40 +1000623extern int dev_set_name(struct device *dev, const char *name, ...)
624 __attribute__((format(printf, 2, 3)));
625
Christoph Hellwig87348132006-12-06 20:32:33 -0800626#ifdef CONFIG_NUMA
627static inline int dev_to_node(struct device *dev)
628{
629 return dev->numa_node;
630}
631static inline void set_dev_node(struct device *dev, int node)
632{
633 dev->numa_node = node;
634}
635#else
636static inline int dev_to_node(struct device *dev)
637{
638 return -1;
639}
640static inline void set_dev_node(struct device *dev, int node)
641{
642}
643#endif
644
Ming Leif67f1292009-03-01 21:10:49 +0800645static inline unsigned int dev_get_uevent_suppress(const struct device *dev)
646{
647 return dev->kobj.uevent_suppress;
648}
649
650static inline void dev_set_uevent_suppress(struct device *dev, int val)
651{
652 dev->kobj.uevent_suppress = val;
653}
654
Daniel Ritzd305ef52005-09-22 00:47:24 -0700655static inline int device_is_registered(struct device *dev)
656{
Greg Kroah-Hartman3f62e572008-03-13 17:07:03 -0400657 return dev->kobj.state_in_sysfs;
Daniel Ritzd305ef52005-09-22 00:47:24 -0700658}
659
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100660static inline void device_enable_async_suspend(struct device *dev)
661{
Alan Sternf76b168b2011-06-18 20:22:23 +0200662 if (!dev->power.is_prepared)
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100663 dev->power.async_suspend = true;
664}
665
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100666static inline void device_disable_async_suspend(struct device *dev)
667{
Alan Sternf76b168b2011-06-18 20:22:23 +0200668 if (!dev->power.is_prepared)
Rafael J. Wysocki5a2eb852010-01-23 22:25:23 +0100669 dev->power.async_suspend = false;
670}
671
672static inline bool device_async_suspend_enabled(struct device *dev)
673{
674 return !!dev->power.async_suspend;
675}
676
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800677static inline void device_lock(struct device *dev)
678{
Thomas Gleixner31427882010-01-29 20:39:02 +0000679 mutex_lock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800680}
681
682static inline int device_trylock(struct device *dev)
683{
Thomas Gleixner31427882010-01-29 20:39:02 +0000684 return mutex_trylock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800685}
686
687static inline void device_unlock(struct device *dev)
688{
Thomas Gleixner31427882010-01-29 20:39:02 +0000689 mutex_unlock(&dev->mutex);
Greg Kroah-Hartman8e9394c2010-02-17 10:57:05 -0800690}
691
Adrian Bunk1f217822006-12-19 13:01:28 -0800692void driver_init(void);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/*
695 * High level routines for use by the bus drivers
696 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800697extern int __must_check device_register(struct device *dev);
698extern void device_unregister(struct device *dev);
699extern void device_initialize(struct device *dev);
700extern int __must_check device_add(struct device *dev);
701extern void device_del(struct device *dev);
702extern int device_for_each_child(struct device *dev, void *data,
703 int (*fn)(struct device *dev, void *data));
704extern struct device *device_find_child(struct device *dev, void *data,
705 int (*match)(struct device *dev, void *data));
Johannes Berg6937e8f2010-08-05 17:38:18 +0200706extern int device_rename(struct device *dev, const char *new_name);
Cornelia Huckffa6a702009-03-04 12:44:00 +0100707extern int device_move(struct device *dev, struct device *new_parent,
708 enum dpm_order dpm_order);
Kay Sieverse454cea2009-09-18 23:01:12 +0200709extern const char *device_get_devnode(struct device *dev,
710 mode_t *mode, const char **tmp);
Greg Kroah-Hartmanb4028432009-05-11 14:16:57 -0700711extern void *dev_get_drvdata(const struct device *dev);
Uwe Kleine-Königc8705082011-04-20 09:44:46 +0200712extern int dev_set_drvdata(struct device *dev, void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714/*
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000715 * Root device objects for grouping under /sys/devices
716 */
717extern struct device *__root_device_register(const char *name,
718 struct module *owner);
719static inline struct device *root_device_register(const char *name)
720{
721 return __root_device_register(name, THIS_MODULE);
722}
723extern void root_device_unregister(struct device *root);
724
Mark Browna5b8b1a2009-07-17 15:06:08 +0100725static inline void *dev_get_platdata(const struct device *dev)
726{
727 return dev->platform_data;
728}
729
Mark McLoughlin0aa0dc42008-12-15 12:58:26 +0000730/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * Manual binding of a device to driver. See drivers/base/bus.c
732 * for information on use.
733 */
Andrew Mortonf86db392006-08-14 22:43:20 -0700734extern int __must_check device_bind_driver(struct device *dev);
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800735extern void device_release_driver(struct device *dev);
736extern int __must_check device_attach(struct device *dev);
Andrew Mortonf86db392006-08-14 22:43:20 -0700737extern int __must_check driver_attach(struct device_driver *drv);
738extern int __must_check device_reprobe(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700740/*
741 * Easy functions for dynamically creating devices on the fly
742 */
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -0700743extern struct device *device_create_vargs(struct class *cls,
744 struct device *parent,
745 dev_t devt,
746 void *drvdata,
747 const char *fmt,
748 va_list vargs);
Greg Kroah-Hartman4e106732008-07-21 20:03:34 -0700749extern struct device *device_create(struct class *cls, struct device *parent,
750 dev_t devt, void *drvdata,
751 const char *fmt, ...)
Greg Kroah-Hartman8882b392008-05-15 13:44:08 -0700752 __attribute__((format(printf, 5, 6)));
Greg Kroah-Hartman23681e42006-06-14 12:14:34 -0700753extern void device_destroy(struct class *cls, dev_t devt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755/*
756 * Platform "fixup" functions - allow the platform to have their say
757 * about devices and actions that the general device layer doesn't
758 * know about.
759 */
760/* Notify platform of device discovery */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800761extern int (*platform_notify)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800763extern int (*platform_notify_remove)(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765
Wanlong Gao880ffb52011-05-05 07:55:36 +0800766/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * get_device - atomically increment the reference count for the device.
768 *
769 */
Greg Kroah-Hartmand4629432008-01-24 21:04:46 -0800770extern struct device *get_device(struct device *dev);
771extern void put_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Arjan van de Vend4d52912009-04-21 13:32:54 -0700773extern void wait_for_device_probe(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Kay Sievers2b2af542009-04-30 15:23:42 +0200775#ifdef CONFIG_DEVTMPFS
776extern int devtmpfs_create_node(struct device *dev);
777extern int devtmpfs_delete_node(struct device *dev);
Kay Sievers073120c2009-10-28 19:51:17 +0100778extern int devtmpfs_mount(const char *mntdir);
Kay Sievers2b2af542009-04-30 15:23:42 +0200779#else
780static inline int devtmpfs_create_node(struct device *dev) { return 0; }
781static inline int devtmpfs_delete_node(struct device *dev) { return 0; }
782static inline int devtmpfs_mount(const char *mountpoint) { return 0; }
783#endif
784
Rytchkov Alexey116f232b2006-03-22 00:58:53 +0100785/* drivers/base/power/shutdown.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786extern void device_shutdown(void);
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/* debugging and troubleshooting/diagnostic helpers. */
Jean Delvarebf9ca692008-07-30 12:29:21 -0700789extern const char *dev_driver_string(const struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Joe Perches99bcf212010-06-27 01:02:34 +0000791
792#ifdef CONFIG_PRINTK
793
794extern int dev_printk(const char *level, const struct device *dev,
795 const char *fmt, ...)
796 __attribute__ ((format (printf, 3, 4)));
797extern int dev_emerg(const struct device *dev, const char *fmt, ...)
798 __attribute__ ((format (printf, 2, 3)));
799extern int dev_alert(const struct device *dev, const char *fmt, ...)
800 __attribute__ ((format (printf, 2, 3)));
801extern int dev_crit(const struct device *dev, const char *fmt, ...)
802 __attribute__ ((format (printf, 2, 3)));
803extern int dev_err(const struct device *dev, const char *fmt, ...)
804 __attribute__ ((format (printf, 2, 3)));
805extern int dev_warn(const struct device *dev, const char *fmt, ...)
806 __attribute__ ((format (printf, 2, 3)));
807extern int dev_notice(const struct device *dev, const char *fmt, ...)
808 __attribute__ ((format (printf, 2, 3)));
809extern int _dev_info(const struct device *dev, const char *fmt, ...)
810 __attribute__ ((format (printf, 2, 3)));
811
812#else
813
814static inline int dev_printk(const char *level, const struct device *dev,
815 const char *fmt, ...)
816 __attribute__ ((format (printf, 3, 4)));
817static inline int dev_printk(const char *level, const struct device *dev,
818 const char *fmt, ...)
819 { return 0; }
820
821static inline int dev_emerg(const struct device *dev, const char *fmt, ...)
822 __attribute__ ((format (printf, 2, 3)));
823static inline int dev_emerg(const struct device *dev, const char *fmt, ...)
824 { return 0; }
825static inline int dev_crit(const struct device *dev, const char *fmt, ...)
826 __attribute__ ((format (printf, 2, 3)));
827static inline int dev_crit(const struct device *dev, const char *fmt, ...)
828 { return 0; }
829static inline int dev_alert(const struct device *dev, const char *fmt, ...)
830 __attribute__ ((format (printf, 2, 3)));
831static inline int dev_alert(const struct device *dev, const char *fmt, ...)
832 { return 0; }
833static inline int dev_err(const struct device *dev, const char *fmt, ...)
834 __attribute__ ((format (printf, 2, 3)));
835static inline int dev_err(const struct device *dev, const char *fmt, ...)
836 { return 0; }
837static inline int dev_warn(const struct device *dev, const char *fmt, ...)
838 __attribute__ ((format (printf, 2, 3)));
839static inline int dev_warn(const struct device *dev, const char *fmt, ...)
840 { return 0; }
841static inline int dev_notice(const struct device *dev, const char *fmt, ...)
842 __attribute__ ((format (printf, 2, 3)));
843static inline int dev_notice(const struct device *dev, const char *fmt, ...)
844 { return 0; }
845static inline int _dev_info(const struct device *dev, const char *fmt, ...)
846 __attribute__ ((format (printf, 2, 3)));
847static inline int _dev_info(const struct device *dev, const char *fmt, ...)
848 { return 0; }
849
850#endif
851
852/*
853 * Stupid hackaround for existing uses of non-printk uses dev_info
854 *
855 * Note that the definition of dev_info below is actually _dev_info
856 * and a macro is used to avoid redefining dev_info
857 */
858
859#define dev_info(dev, fmt, arg...) _dev_info(dev, fmt, ##arg)
Emil Medve7b8712e2007-10-30 14:37:14 -0500860
Cornelia Huckd0d85ff2008-12-04 16:55:47 +0100861#if defined(DEBUG)
862#define dev_dbg(dev, format, arg...) \
Joe Perches99bcf212010-06-27 01:02:34 +0000863 dev_printk(KERN_DEBUG, dev, format, ##arg)
Jason Barone9d376f2009-02-05 11:51:38 -0500864#elif defined(CONFIG_DYNAMIC_DEBUG)
Joe Perches99bcf212010-06-27 01:02:34 +0000865#define dev_dbg(dev, format, ...) \
866do { \
Jason Baron346e15b2008-08-12 16:46:19 -0400867 dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \
Joe Perches99bcf212010-06-27 01:02:34 +0000868} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869#else
Joe Perches99bcf212010-06-27 01:02:34 +0000870#define dev_dbg(dev, format, arg...) \
871({ \
872 if (0) \
873 dev_printk(KERN_DEBUG, dev, format, ##arg); \
874 0; \
875})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876#endif
877
David Brownellaebdc3b2007-07-12 22:08:22 -0700878#ifdef VERBOSE_DEBUG
879#define dev_vdbg dev_dbg
880#else
Joe Perches99bcf212010-06-27 01:02:34 +0000881#define dev_vdbg(dev, format, arg...) \
882({ \
883 if (0) \
884 dev_printk(KERN_DEBUG, dev, format, ##arg); \
885 0; \
886})
David Brownellaebdc3b2007-07-12 22:08:22 -0700887#endif
888
Arjan van de Vene6139662008-09-20 19:08:39 -0700889/*
Felipe Balbibcdd3232011-03-16 15:59:35 +0200890 * dev_WARN*() acts like dev_printk(), but with the key difference
Arjan van de Vene6139662008-09-20 19:08:39 -0700891 * of using a WARN/WARN_ON to get the message out, including the
892 * file/line information and a backtrace.
893 */
894#define dev_WARN(dev, format, arg...) \
895 WARN(1, "Device: %s\n" format, dev_driver_string(dev), ## arg);
896
Felipe Balbibcdd3232011-03-16 15:59:35 +0200897#define dev_WARN_ONCE(dev, condition, format, arg...) \
898 WARN_ONCE(condition, "Device %s\n" format, \
899 dev_driver_string(dev), ## arg)
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901/* Create alias, so I can be autoloaded. */
902#define MODULE_ALIAS_CHARDEV(major,minor) \
903 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
904#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
905 MODULE_ALIAS("char-major-" __stringify(major) "-*")
Andi Kleene52eec12010-09-08 16:54:17 +0200906
907#ifdef CONFIG_SYSFS_DEPRECATED
908extern long sysfs_deprecated;
909#else
910#define sysfs_deprecated 0
911#endif
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913#endif /* _DEVICE_H_ */