]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/device.h
crypto.h: remove unused crypto_tfm_alg_modname() inline
[mirror_ubuntu-artful-kernel.git] / include / linux / device.h
CommitLineData
1da177e4
LT
1/*
2 * device.h - generic, centralized driver model
3 *
4 * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
b4028437
GKH
5 * Copyright (c) 2004-2009 Greg Kroah-Hartman <gregkh@suse.de>
6 * Copyright (c) 2008-2009 Novell Inc.
1da177e4
LT
7 *
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
1da177e4
LT
16#include <linux/ioport.h>
17#include <linux/kobject.h>
465c7a3a 18#include <linux/klist.h>
1da177e4 19#include <linux/list.h>
d2a3b914 20#include <linux/lockdep.h>
4a7fb636 21#include <linux/compiler.h>
1da177e4
LT
22#include <linux/types.h>
23#include <linux/module.h>
24#include <linux/pm.h>
60063497 25#include <linux/atomic.h>
c6dbaef2 26#include <asm/device.h>
1da177e4 27
1da177e4 28struct device;
fb069a5d 29struct device_private;
1da177e4 30struct device_driver;
e5dd1278 31struct driver_private;
1da177e4 32struct class;
6b6e39a6 33struct subsys_private;
b8c5cec2 34struct bus_type;
d706c1b0 35struct device_node;
ff21776d 36struct iommu_ops;
b8c5cec2
KS
37
38struct bus_attribute {
39 struct attribute attr;
d462943a
GKH
40 ssize_t (*show)(struct bus_type *bus, char *buf);
41 ssize_t (*store)(struct bus_type *bus, const char *buf, size_t count);
b8c5cec2
KS
42};
43
d462943a
GKH
44#define BUS_ATTR(_name, _mode, _show, _store) \
45struct bus_attribute bus_attr_##_name = __ATTR(_name, _mode, _show, _store)
b8c5cec2
KS
46
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 *);
1da177e4 50
880ffb5c
WG
51/**
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.
ff21776d
JR
71 * @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
880ffb5c
WG
74 * @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 */
1da177e4 86struct bus_type {
d462943a
GKH
87 const char *name;
88 struct bus_attribute *bus_attrs;
89 struct device_attribute *dev_attrs;
90 struct driver_attribute *drv_attrs;
91
92 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);
97
98 int (*suspend)(struct device *dev, pm_message_t state);
d462943a 99 int (*resume)(struct device *dev);
b8c5cec2 100
8150f32b 101 const struct dev_pm_ops *pm;
1eede070 102
ff21776d
JR
103 struct iommu_ops *iommu_ops;
104
6b6e39a6 105 struct subsys_private *p;
1da177e4
LT
106};
107
d462943a
GKH
108extern int __must_check bus_register(struct bus_type *bus);
109extern void bus_unregister(struct bus_type *bus);
1da177e4 110
d462943a 111extern int __must_check bus_rescan_devices(struct bus_type *bus);
1da177e4 112
1da177e4
LT
113/* iterator helpers for buses */
114
d462943a
GKH
115int 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));
1f9ffc04
GKH
120struct device *bus_find_device_by_name(struct bus_type *bus,
121 struct device *start,
122 const char *name);
1da177e4 123
cc7447a5
JD
124int bus_for_each_drv(struct bus_type *bus, struct device_driver *start,
125 void *data, int (*fn)(struct device_driver *, void *));
1da177e4 126
99178b03
GKH
127void bus_sort_breadthfirst(struct bus_type *bus,
128 int (*compare)(const struct device *a,
129 const struct device *b));
116af378
BH
130/*
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
8e9394ce 145 * with the device lock held in the core, so be careful.
116af378
BH
146 */
147#define BUS_NOTIFY_ADD_DEVICE 0x00000001 /* device added */
148#define BUS_NOTIFY_DEL_DEVICE 0x00000002 /* device removed */
45daef0f
MD
149#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
116af378 153 unbound */
45daef0f 154#define BUS_NOTIFY_UNBOUND_DRIVER 0x00000006 /* driver is unbound
309b7d60 155 from the device */
116af378 156
0fed80f7 157extern struct kset *bus_get_kset(struct bus_type *bus);
b249072e 158extern struct klist *bus_get_device_klist(struct bus_type *bus);
0fed80f7 159
880ffb5c
WG
160/**
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 */
1da177e4 191struct device_driver {
e5dd1278
GKH
192 const char *name;
193 struct bus_type *bus;
1da177e4 194
e5dd1278 195 struct module *owner;
1a6f2a75
DT
196 const char *mod_name; /* used for built-in modules */
197
198 bool suppress_bind_attrs; /* disables bind/unbind via sysfs */
1da177e4 199
597b9d1e 200 const struct of_device_id *of_match_table;
597b9d1e 201
d462943a
GKH
202 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);
a4dbd674 207 const struct attribute_group **groups;
e5dd1278 208
8150f32b 209 const struct dev_pm_ops *pm;
1eede070 210
e5dd1278 211 struct driver_private *p;
1da177e4
LT
212};
213
214
d462943a
GKH
215extern int __must_check driver_register(struct device_driver *drv);
216extern void driver_unregister(struct device_driver *drv);
1da177e4 217
d462943a
GKH
218extern 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);
d779249e 222extern int driver_probe_done(void);
b23530eb 223extern void wait_for_device_probe(void);
216773a7 224
1da177e4 225
405ae7d3 226/* sysfs interface for exporting driver attributes */
1da177e4
LT
227
228struct driver_attribute {
d462943a
GKH
229 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);
1da177e4
LT
233};
234
d462943a
GKH
235#define DRIVER_ATTR(_name, _mode, _show, _store) \
236struct driver_attribute driver_attr_##_name = \
237 __ATTR(_name, _mode, _show, _store)
1da177e4 238
d462943a 239extern int __must_check driver_create_file(struct device_driver *driver,
099c2f21 240 const struct driver_attribute *attr);
d462943a 241extern void driver_remove_file(struct device_driver *driver,
099c2f21 242 const struct driver_attribute *attr);
1da177e4 243
cbe9c595
GKH
244extern int __must_check driver_add_kobj(struct device_driver *drv,
245 struct kobject *kobj,
246 const char *fmt, ...);
247
d462943a
GKH
248extern 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));
fae3cd00 256
880ffb5c
WG
257/**
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.
1da177e4
LT
285 */
286struct class {
d462943a
GKH
287 const char *name;
288 struct module *owner;
1da177e4 289
d462943a 290 struct class_attribute *class_attrs;
d462943a 291 struct device_attribute *dev_attrs;
c97415a7 292 struct bin_attribute *dev_bin_attrs;
e105b8bf 293 struct kobject *dev_kobj;
1da177e4 294
d462943a 295 int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env);
e454cea2 296 char *(*devnode)(struct device *dev, mode_t *mode);
1da177e4 297
d462943a
GKH
298 void (*class_release)(struct class *class);
299 void (*dev_release)(struct device *dev);
7c8265f5 300
d462943a
GKH
301 int (*suspend)(struct device *dev, pm_message_t state);
302 int (*resume)(struct device *dev);
1eede070 303
bc451f20
EB
304 const struct kobj_ns_type_operations *ns_type;
305 const void *(*namespace)(struct device *dev);
306
8150f32b
DT
307 const struct dev_pm_ops *pm;
308
6b6e39a6 309 struct subsys_private *p;
1da177e4
LT
310};
311
5a3ceb86
TH
312struct class_dev_iter {
313 struct klist_iter ki;
314 const struct device_type *type;
315};
316
e105b8bf
DW
317extern struct kobject *sysfs_dev_block_kobj;
318extern struct kobject *sysfs_dev_char_kobj;
d2a3b914
MW
319extern int __must_check __class_register(struct class *class,
320 struct lock_class_key *key);
d462943a 321extern void class_unregister(struct class *class);
d2a3b914
MW
322
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
46227094
JD
331struct 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
5a3ceb86
TH
339extern 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
93562b53
GKH
346extern int class_for_each_device(struct class *class, struct device *start,
347 void *data,
fd04897b 348 int (*fn)(struct device *dev, void *data));
695794ae
GKH
349extern struct device *class_find_device(struct class *class,
350 struct device *start, void *data,
fd04897b 351 int (*match)(struct device *, void *));
1da177e4
LT
352
353struct class_attribute {
d462943a 354 struct attribute attr;
28812fe1
AK
355 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);
672d82c1
EB
359 const void *(*namespace)(struct class *class,
360 const struct class_attribute *attr);
1da177e4
LT
361};
362
d462943a
GKH
363#define CLASS_ATTR(_name, _mode, _show, _store) \
364struct class_attribute class_attr_##_name = __ATTR(_name, _mode, _show, _store)
1da177e4 365
d462943a
GKH
366extern 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);
1da177e4 370
869dfc87
AK
371/* 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
1da177e4
LT
388struct class_interface {
389 struct list_head node;
390 struct class *class;
391
c47ed219
GKH
392 int (*add_dev) (struct device *, struct class_interface *);
393 void (*remove_dev) (struct device *, struct class_interface *);
1da177e4
LT
394};
395
4a7fb636 396extern int __must_check class_interface_register(struct class_interface *);
1da177e4
LT
397extern void class_interface_unregister(struct class_interface *);
398
d2a3b914
MW
399extern struct class * __must_check __class_create(struct module *owner,
400 const char *name,
401 struct lock_class_key *key);
e9ba6365 402extern void class_destroy(struct class *cls);
e9ba6365 403
d2a3b914
MW
404/* 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
414264f9
KS
412/*
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 */
f9f852df 421struct device_type {
414264f9 422 const char *name;
a4dbd674 423 const struct attribute_group **groups;
7eff2e7a 424 int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
e454cea2 425 char *(*devnode)(struct device *dev, mode_t *mode);
f9f852df 426 void (*release)(struct device *dev);
1eede070 427
8150f32b 428 const struct dev_pm_ops *pm;
f9f852df
KS
429};
430
a7fd6706
KS
431/* 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
d462943a
GKH
440#define DEVICE_ATTR(_name, _mode, _show, _store) \
441struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
a7fd6706 442
4a7fb636 443extern int __must_check device_create_file(struct device *device,
66ecb92b 444 const struct device_attribute *entry);
d462943a 445extern void device_remove_file(struct device *dev,
26579ab7 446 const struct device_attribute *attr);
2589f188 447extern int __must_check device_create_bin_file(struct device *dev,
66ecb92b 448 const struct bin_attribute *attr);
2589f188 449extern void device_remove_bin_file(struct device *dev,
66ecb92b 450 const struct bin_attribute *attr);
523ded71 451extern int device_schedule_callback_owner(struct device *dev,
d462943a 452 void (*func)(struct device *dev), struct module *owner);
523ded71
AS
453
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)
9ac7849e
TH
457
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
d462943a 463extern void *__devres_alloc(dr_release_t release, size_t size, gfp_t gfp,
9ac7849e
TH
464 const char *name);
465#define devres_alloc(release, size, gfp) \
466 __devres_alloc(release, size, gfp, #release)
467#else
d462943a 468extern void *devres_alloc(dr_release_t release, size_t size, gfp_t gfp);
9ac7849e
TH
469#endif
470extern void devres_free(void *res);
471extern void devres_add(struct device *dev, void *res);
d462943a 472extern void *devres_find(struct device *dev, dr_release_t release,
9ac7849e 473 dr_match_t match, void *match_data);
d462943a
GKH
474extern 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);
9ac7849e
TH
478extern 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
6b7b6510
FT
492struct 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
880ffb5c
WG
501/**
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.
564b905a 527 * @pm_domain: Provide callbacks that are executed during system suspend,
880ffb5c
WG
528 * 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.
880ffb5c
WG
541 * @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 */
1da177e4 559struct device {
49a4ec18 560 struct device *parent;
1da177e4 561
fb069a5d
GKH
562 struct device_private *p;
563
1da177e4 564 struct kobject kobj;
c906a48a 565 const char *init_name; /* initial name of the device */
aed65af1 566 const struct device_type *type;
1da177e4 567
3142788b 568 struct mutex mutex; /* mutex to synchronize calls to
af70316a
PM
569 * its driver.
570 */
571
d462943a 572 struct bus_type *bus; /* type of bus device is on */
1da177e4
LT
573 struct device_driver *driver; /* which driver has allocated this
574 device */
e67c8562
GKH
575 void *platform_data; /* Platform specific data, device
576 core doesn't touch it */
1da177e4 577 struct dev_pm_info power;
564b905a 578 struct dev_pm_domain *pm_domain;
1da177e4 579
87348136
CH
580#ifdef CONFIG_NUMA
581 int numa_node; /* NUMA node this device is close to */
582#endif
1da177e4
LT
583 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
6b7b6510
FT
590 struct device_dma_parameters *dma_parms;
591
1da177e4
LT
592 struct list_head dma_pools; /* dma pools (if dma'ble) */
593
594 struct dma_coherent_mem *dma_mem; /* internal for coherent mem
595 override */
c6dbaef2
BH
596 /* arch specific additions */
597 struct dev_archdata archdata;
c9e358df
GL
598
599 struct device_node *of_node; /* associated device tree node */
1da177e4 600
929d2fa5
MW
601 dev_t devt; /* dev_t, creates the sysfs "dev" */
602
9ac7849e
TH
603 spinlock_t devres_lock;
604 struct list_head devres_head;
605
5a3ceb86 606 struct klist_node knode_class;
b7a3e813 607 struct class *class;
a4dbd674 608 const struct attribute_group **groups; /* optional groups */
23681e47 609
d462943a 610 void (*release)(struct device *dev);
1da177e4
LT
611};
612
9a3df1f7
AS
613/* Get the wakeup routines, which depend on struct device */
614#include <linux/pm_wakeup.h>
615
bf9ca69f 616static inline const char *dev_name(const struct device *dev)
06916639 617{
a636ee7f
PM
618 /* Use the init name until the kobject becomes available */
619 if (dev->init_name)
620 return dev->init_name;
621
1fa5ae85 622 return kobject_name(&dev->kobj);
06916639
KS
623}
624
413c239f
SR
625extern int dev_set_name(struct device *dev, const char *name, ...)
626 __attribute__((format(printf, 2, 3)));
627
87348136
CH
628#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
5c095a0e
RW
647static inline struct pm_subsys_data *dev_to_psd(struct device *dev)
648{
649 return dev ? dev->power.subsys_data : NULL;
650}
651
f67f129e
ML
652static 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
d305ef5d
DR
662static inline int device_is_registered(struct device *dev)
663{
3f62e570 664 return dev->kobj.state_in_sysfs;
d305ef5d
DR
665}
666
5af84b82
RW
667static inline void device_enable_async_suspend(struct device *dev)
668{
f76b168b 669 if (!dev->power.is_prepared)
5af84b82
RW
670 dev->power.async_suspend = true;
671}
672
5a2eb858
RW
673static inline void device_disable_async_suspend(struct device *dev)
674{
f76b168b 675 if (!dev->power.is_prepared)
5a2eb858
RW
676 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
8e9394ce
GKH
684static inline void device_lock(struct device *dev)
685{
3142788b 686 mutex_lock(&dev->mutex);
8e9394ce
GKH
687}
688
689static inline int device_trylock(struct device *dev)
690{
3142788b 691 return mutex_trylock(&dev->mutex);
8e9394ce
GKH
692}
693
694static inline void device_unlock(struct device *dev)
695{
3142788b 696 mutex_unlock(&dev->mutex);
8e9394ce
GKH
697}
698
1f21782e
AB
699void driver_init(void);
700
1da177e4
LT
701/*
702 * High level routines for use by the bus drivers
703 */
d462943a
GKH
704extern 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));
6937e8f8 713extern int device_rename(struct device *dev, const char *new_name);
ffa6a705
CH
714extern int device_move(struct device *dev, struct device *new_parent,
715 enum dpm_order dpm_order);
e454cea2
KS
716extern const char *device_get_devnode(struct device *dev,
717 mode_t *mode, const char **tmp);
b4028437 718extern void *dev_get_drvdata(const struct device *dev);
c8705082 719extern int dev_set_drvdata(struct device *dev, void *data);
1da177e4 720
0aa0dc41
MM
721/*
722 * 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
a5b8b1ad
MB
732static inline void *dev_get_platdata(const struct device *dev)
733{
734 return dev->platform_data;
735}
736
1da177e4
LT
737/*
738 * Manual binding of a device to driver. See drivers/base/bus.c
739 * for information on use.
740 */
f86db396 741extern int __must_check device_bind_driver(struct device *dev);
d462943a
GKH
742extern void device_release_driver(struct device *dev);
743extern int __must_check device_attach(struct device *dev);
f86db396
AM
744extern int __must_check driver_attach(struct device_driver *drv);
745extern int __must_check device_reprobe(struct device *dev);
1da177e4 746
23681e47
GKH
747/*
748 * Easy functions for dynamically creating devices on the fly
749 */
8882b394
GKH
750extern 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);
4e106739
GKH
756extern struct device *device_create(struct class *cls, struct device *parent,
757 dev_t devt, void *drvdata,
758 const char *fmt, ...)
8882b394 759 __attribute__((format(printf, 5, 6)));
23681e47 760extern void device_destroy(struct class *cls, dev_t devt);
1da177e4 761
1da177e4
LT
762/*
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 */
d462943a 768extern int (*platform_notify)(struct device *dev);
1da177e4 769
d462943a 770extern int (*platform_notify_remove)(struct device *dev);
1da177e4
LT
771
772
880ffb5c 773/*
1da177e4
LT
774 * get_device - atomically increment the reference count for the device.
775 *
776 */
d462943a
GKH
777extern struct device *get_device(struct device *dev);
778extern void put_device(struct device *dev);
1da177e4 779
d4d5291c 780extern void wait_for_device_probe(void);
1da177e4 781
2b2af54a
KS
782#ifdef CONFIG_DEVTMPFS
783extern int devtmpfs_create_node(struct device *dev);
784extern int devtmpfs_delete_node(struct device *dev);
073120cc 785extern int devtmpfs_mount(const char *mntdir);
2b2af54a
KS
786#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
116f232b 792/* drivers/base/power/shutdown.c */
1da177e4
LT
793extern void device_shutdown(void);
794
1da177e4 795/* debugging and troubleshooting/diagnostic helpers. */
bf9ca69f 796extern const char *dev_driver_string(const struct device *dev);
99bcf217
JP
797
798
799#ifdef CONFIG_PRINTK
800
cbc46635
JP
801extern int __dev_printk(const char *level, const struct device *dev,
802 struct va_format *vaf);
99bcf217
JP
803extern int dev_printk(const char *level, const struct device *dev,
804 const char *fmt, ...)
805 __attribute__ ((format (printf, 3, 4)));
806extern int dev_emerg(const struct device *dev, const char *fmt, ...)
807 __attribute__ ((format (printf, 2, 3)));
808extern int dev_alert(const struct device *dev, const char *fmt, ...)
809 __attribute__ ((format (printf, 2, 3)));
810extern int dev_crit(const struct device *dev, const char *fmt, ...)
811 __attribute__ ((format (printf, 2, 3)));
812extern int dev_err(const struct device *dev, const char *fmt, ...)
813 __attribute__ ((format (printf, 2, 3)));
814extern int dev_warn(const struct device *dev, const char *fmt, ...)
815 __attribute__ ((format (printf, 2, 3)));
816extern int dev_notice(const struct device *dev, const char *fmt, ...)
817 __attribute__ ((format (printf, 2, 3)));
818extern int _dev_info(const struct device *dev, const char *fmt, ...)
819 __attribute__ ((format (printf, 2, 3)));
820
821#else
822
cbc46635
JP
823static inline int __dev_printk(const char *level, const struct device *dev,
824 struct va_format *vaf)
825 { return 0; }
99bcf217
JP
826static inline int dev_printk(const char *level, const struct device *dev,
827 const char *fmt, ...)
828 __attribute__ ((format (printf, 3, 4)));
829static inline int dev_printk(const char *level, const struct device *dev,
830 const char *fmt, ...)
831 { return 0; }
832
833static inline int dev_emerg(const struct device *dev, const char *fmt, ...)
834 __attribute__ ((format (printf, 2, 3)));
835static inline int dev_emerg(const struct device *dev, const char *fmt, ...)
836 { return 0; }
837static inline int dev_crit(const struct device *dev, const char *fmt, ...)
838 __attribute__ ((format (printf, 2, 3)));
839static inline int dev_crit(const struct device *dev, const char *fmt, ...)
840 { return 0; }
841static inline int dev_alert(const struct device *dev, const char *fmt, ...)
842 __attribute__ ((format (printf, 2, 3)));
843static inline int dev_alert(const struct device *dev, const char *fmt, ...)
844 { return 0; }
845static inline int dev_err(const struct device *dev, const char *fmt, ...)
846 __attribute__ ((format (printf, 2, 3)));
847static inline int dev_err(const struct device *dev, const char *fmt, ...)
848 { return 0; }
849static inline int dev_warn(const struct device *dev, const char *fmt, ...)
850 __attribute__ ((format (printf, 2, 3)));
851static inline int dev_warn(const struct device *dev, const char *fmt, ...)
852 { return 0; }
853static inline int dev_notice(const struct device *dev, const char *fmt, ...)
854 __attribute__ ((format (printf, 2, 3)));
855static inline int dev_notice(const struct device *dev, const char *fmt, ...)
856 { return 0; }
857static inline int _dev_info(const struct device *dev, const char *fmt, ...)
858 __attribute__ ((format (printf, 2, 3)));
859static inline int _dev_info(const struct device *dev, const char *fmt, ...)
860 { return 0; }
861
862#endif
863
864/*
865 * Stupid hackaround for existing uses of non-printk uses dev_info
866 *
867 * Note that the definition of dev_info below is actually _dev_info
868 * and a macro is used to avoid redefining dev_info
869 */
870
871#define dev_info(dev, fmt, arg...) _dev_info(dev, fmt, ##arg)
7b8712e5 872
d0d85ff9
CH
873#if defined(DEBUG)
874#define dev_dbg(dev, format, arg...) \
99bcf217 875 dev_printk(KERN_DEBUG, dev, format, ##arg)
e9d376f0 876#elif defined(CONFIG_DYNAMIC_DEBUG)
99bcf217
JP
877#define dev_dbg(dev, format, ...) \
878do { \
346e15be 879 dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \
99bcf217 880} while (0)
1da177e4 881#else
99bcf217
JP
882#define dev_dbg(dev, format, arg...) \
883({ \
884 if (0) \
885 dev_printk(KERN_DEBUG, dev, format, ##arg); \
886 0; \
887})
1da177e4
LT
888#endif
889
aebdc3b4
DB
890#ifdef VERBOSE_DEBUG
891#define dev_vdbg dev_dbg
892#else
99bcf217
JP
893#define dev_vdbg(dev, format, arg...) \
894({ \
895 if (0) \
896 dev_printk(KERN_DEBUG, dev, format, ##arg); \
897 0; \
898})
aebdc3b4
DB
899#endif
900
e6139662 901/*
bcdd323b 902 * dev_WARN*() acts like dev_printk(), but with the key difference
e6139662
AV
903 * of using a WARN/WARN_ON to get the message out, including the
904 * file/line information and a backtrace.
905 */
906#define dev_WARN(dev, format, arg...) \
907 WARN(1, "Device: %s\n" format, dev_driver_string(dev), ## arg);
908
bcdd323b
FB
909#define dev_WARN_ONCE(dev, condition, format, arg...) \
910 WARN_ONCE(condition, "Device %s\n" format, \
911 dev_driver_string(dev), ## arg)
912
1da177e4
LT
913/* Create alias, so I can be autoloaded. */
914#define MODULE_ALIAS_CHARDEV(major,minor) \
915 MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
916#define MODULE_ALIAS_CHARDEV_MAJOR(major) \
917 MODULE_ALIAS("char-major-" __stringify(major) "-*")
e52eec13
AK
918
919#ifdef CONFIG_SYSFS_DEPRECATED
920extern long sysfs_deprecated;
921#else
922#define sysfs_deprecated 0
923#endif
924
1da177e4 925#endif /* _DEVICE_H_ */