device.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * device.h - generic, centralized driver model
  3.  *
  4.  * Copyright (c) 2001-2003 Patrick Mochel <mochel@osdl.org>
  5.  *
  6.  * This file is released under the GPLv2
  7.  *
  8.  * See Documentation/driver-model/ for more information.
  9.  */
  10. #ifndef _DEVICE_H_
  11. #define _DEVICE_H_
  12. #include <linux/config.h>
  13. #include <linux/ioport.h>
  14. #include <linux/kobject.h>
  15. #include <linux/klist.h>
  16. #include <linux/list.h>
  17. #include <linux/types.h>
  18. #include <linux/module.h>
  19. #include <linux/pm.h>
  20. #include <asm/semaphore.h>
  21. #include <asm/atomic.h>
  22. #define DEVICE_NAME_SIZE 50
  23. #define DEVICE_NAME_HALF __stringify(20) /* Less than half to accommodate slop */
  24. #define DEVICE_ID_SIZE 32
  25. #define BUS_ID_SIZE KOBJ_NAME_LEN
  26. enum {
  27. SUSPEND_NOTIFY,
  28. SUSPEND_SAVE_STATE,
  29. SUSPEND_DISABLE,
  30. SUSPEND_POWER_DOWN,
  31. };
  32. enum {
  33. RESUME_POWER_ON,
  34. RESUME_RESTORE_STATE,
  35. RESUME_ENABLE,
  36. };
  37. struct device;
  38. struct device_driver;
  39. struct class;
  40. struct class_device;
  41. struct bus_type {
  42. const char * name;
  43. struct subsystem subsys;
  44. struct kset drivers;
  45. struct kset devices;
  46. struct klist klist_devices;
  47. struct klist klist_drivers;
  48. struct bus_attribute * bus_attrs;
  49. struct device_attribute * dev_attrs;
  50. struct driver_attribute * drv_attrs;
  51. int (*match)(struct device * dev, struct device_driver * drv);
  52. int (*hotplug) (struct device *dev, char **envp, 
  53.     int num_envp, char *buffer, int buffer_size);
  54. int (*suspend)(struct device * dev, pm_message_t state);
  55. int (*resume)(struct device * dev);
  56. };
  57. extern int bus_register(struct bus_type * bus);
  58. extern void bus_unregister(struct bus_type * bus);
  59. extern void bus_rescan_devices(struct bus_type * bus);
  60. extern struct bus_type * get_bus(struct bus_type * bus);
  61. extern void put_bus(struct bus_type * bus);
  62. extern struct bus_type * find_bus(char * name);
  63. /* iterator helpers for buses */
  64. int bus_for_each_dev(struct bus_type * bus, struct device * start, void * data,
  65.      int (*fn)(struct device *, void *));
  66. struct device * bus_find_device(struct bus_type *bus, struct device *start,
  67. void *data, int (*match)(struct device *, void *));
  68. int bus_for_each_drv(struct bus_type * bus, struct device_driver * start, 
  69.      void * data, int (*fn)(struct device_driver *, void *));
  70. /* driverfs interface for exporting bus attributes */
  71. struct bus_attribute {
  72. struct attribute attr;
  73. ssize_t (*show)(struct bus_type *, char * buf);
  74. ssize_t (*store)(struct bus_type *, const char * buf, size_t count);
  75. };
  76. #define BUS_ATTR(_name,_mode,_show,_store)
  77. struct bus_attribute bus_attr_##_name = __ATTR(_name,_mode,_show,_store)
  78. extern int bus_create_file(struct bus_type *, struct bus_attribute *);
  79. extern void bus_remove_file(struct bus_type *, struct bus_attribute *);
  80. struct device_driver {
  81. const char * name;
  82. struct bus_type * bus;
  83. struct completion unloaded;
  84. struct kobject kobj;
  85. struct klist klist_devices;
  86. struct klist_node knode_bus;
  87. struct module * owner;
  88. int (*probe) (struct device * dev);
  89. int (*remove) (struct device * dev);
  90. void (*shutdown) (struct device * dev);
  91. int (*suspend) (struct device * dev, pm_message_t state, u32 level);
  92. int (*resume) (struct device * dev, u32 level);
  93. };
  94. extern int driver_register(struct device_driver * drv);
  95. extern void driver_unregister(struct device_driver * drv);
  96. extern struct device_driver * get_driver(struct device_driver * drv);
  97. extern void put_driver(struct device_driver * drv);
  98. extern struct device_driver *driver_find(const char *name, struct bus_type *bus);
  99. /* driverfs interface for exporting driver attributes */
  100. struct driver_attribute {
  101. struct attribute attr;
  102. ssize_t (*show)(struct device_driver *, char * buf);
  103. ssize_t (*store)(struct device_driver *, const char * buf, size_t count);
  104. };
  105. #define DRIVER_ATTR(_name,_mode,_show,_store)
  106. struct driver_attribute driver_attr_##_name = __ATTR(_name,_mode,_show,_store)
  107. extern int driver_create_file(struct device_driver *, struct driver_attribute *);
  108. extern void driver_remove_file(struct device_driver *, struct driver_attribute *);
  109. extern int driver_for_each_device(struct device_driver * drv, struct device * start,
  110.   void * data, int (*fn)(struct device *, void *));
  111. struct device * driver_find_device(struct device_driver *drv,
  112.    struct device *start, void *data,
  113.    int (*match)(struct device *, void *));
  114. /*
  115.  * device classes
  116.  */
  117. struct class {
  118. const char * name;
  119. struct module * owner;
  120. struct subsystem subsys;
  121. struct list_head children;
  122. struct list_head interfaces;
  123. struct semaphore sem; /* locks both the children and interfaces lists */
  124. struct class_attribute * class_attrs;
  125. struct class_device_attribute * class_dev_attrs;
  126. int (*hotplug)(struct class_device *dev, char **envp, 
  127.    int num_envp, char *buffer, int buffer_size);
  128. void (*release)(struct class_device *dev);
  129. void (*class_release)(struct class *class);
  130. };
  131. extern int class_register(struct class *);
  132. extern void class_unregister(struct class *);
  133. extern struct class * class_get(struct class *);
  134. extern void class_put(struct class *);
  135. struct class_attribute {
  136. struct attribute attr;
  137. ssize_t (*show)(struct class *, char * buf);
  138. ssize_t (*store)(struct class *, const char * buf, size_t count);
  139. };
  140. #define CLASS_ATTR(_name,_mode,_show,_store)
  141. struct class_attribute class_attr_##_name = __ATTR(_name,_mode,_show,_store) 
  142. extern int class_create_file(struct class *, const struct class_attribute *);
  143. extern void class_remove_file(struct class *, const struct class_attribute *);
  144. struct class_device {
  145. struct list_head node;
  146. struct kobject kobj;
  147. struct class * class; /* required */
  148. dev_t devt; /* dev_t, creates the sysfs "dev" */
  149. struct class_device_attribute *devt_attr;
  150. struct device * dev; /* not necessary, but nice to have */
  151. void * class_data; /* class-specific data */
  152. char class_id[BUS_ID_SIZE]; /* unique to this class */
  153. };
  154. static inline void *
  155. class_get_devdata (struct class_device *dev)
  156. {
  157. return dev->class_data;
  158. }
  159. static inline void
  160. class_set_devdata (struct class_device *dev, void *data)
  161. {
  162. dev->class_data = data;
  163. }
  164. extern int class_device_register(struct class_device *);
  165. extern void class_device_unregister(struct class_device *);
  166. extern void class_device_initialize(struct class_device *);
  167. extern int class_device_add(struct class_device *);
  168. extern void class_device_del(struct class_device *);
  169. extern int class_device_rename(struct class_device *, char *);
  170. extern struct class_device * class_device_get(struct class_device *);
  171. extern void class_device_put(struct class_device *);
  172. struct class_device_attribute {
  173. struct attribute attr;
  174. ssize_t (*show)(struct class_device *, char * buf);
  175. ssize_t (*store)(struct class_device *, const char * buf, size_t count);
  176. };
  177. #define CLASS_DEVICE_ATTR(_name,_mode,_show,_store)
  178. struct class_device_attribute class_device_attr_##_name = 
  179. __ATTR(_name,_mode,_show,_store)
  180. extern int class_device_create_file(struct class_device *, 
  181.     const struct class_device_attribute *);
  182. extern void class_device_remove_file(struct class_device *, 
  183.      const struct class_device_attribute *);
  184. extern int class_device_create_bin_file(struct class_device *,
  185. struct bin_attribute *);
  186. extern void class_device_remove_bin_file(struct class_device *,
  187.  struct bin_attribute *);
  188. struct class_interface {
  189. struct list_head node;
  190. struct class *class;
  191. int (*add) (struct class_device *);
  192. void (*remove) (struct class_device *);
  193. };
  194. extern int class_interface_register(struct class_interface *);
  195. extern void class_interface_unregister(struct class_interface *);
  196. extern struct class *class_create(struct module *owner, char *name);
  197. extern void class_destroy(struct class *cls);
  198. extern struct class_device *class_device_create(struct class *cls, dev_t devt,
  199. struct device *device, char *fmt, ...)
  200. __attribute__((format(printf,4,5)));
  201. extern void class_device_destroy(struct class *cls, dev_t devt);
  202. struct device {
  203. struct klist klist_children;
  204. struct klist_node knode_parent; /* node in sibling list */
  205. struct klist_node knode_driver;
  206. struct klist_node knode_bus;
  207. struct device  * parent;
  208. struct kobject kobj;
  209. char bus_id[BUS_ID_SIZE]; /* position on parent bus */
  210. struct semaphore sem; /* semaphore to synchronize calls to
  211.  * its driver.
  212.  */
  213. struct bus_type * bus; /* type of bus device is on */
  214. struct device_driver *driver; /* which driver has allocated this
  215.    device */
  216. void *driver_data; /* data private to the driver */
  217. void *platform_data; /* Platform specific data, device
  218.    core doesn't touch it */
  219. void *firmware_data; /* Firmware specific data (e.g. ACPI,
  220.    BIOS data),reserved for device core*/
  221. struct dev_pm_info power;
  222. u64 *dma_mask; /* dma mask (if dma'able device) */
  223. u64 coherent_dma_mask;/* Like dma_mask, but for
  224.      alloc_coherent mappings as
  225.      not all hardware supports
  226.      64 bit addresses for consistent
  227.      allocations such descriptors. */
  228. struct list_head dma_pools; /* dma pools (if dma'ble) */
  229. struct dma_coherent_mem *dma_mem; /* internal for coherent mem
  230.      override */
  231. void (*release)(struct device * dev);
  232. };
  233. static inline void *
  234. dev_get_drvdata (struct device *dev)
  235. {
  236. return dev->driver_data;
  237. }
  238. static inline void
  239. dev_set_drvdata (struct device *dev, void *data)
  240. {
  241. dev->driver_data = data;
  242. }
  243. static inline int device_is_registered(struct device *dev)
  244. {
  245. return klist_node_attached(&dev->knode_bus);
  246. }
  247. /*
  248.  * High level routines for use by the bus drivers
  249.  */
  250. extern int device_register(struct device * dev);
  251. extern void device_unregister(struct device * dev);
  252. extern void device_initialize(struct device * dev);
  253. extern int device_add(struct device * dev);
  254. extern void device_del(struct device * dev);
  255. extern int device_for_each_child(struct device *, void *,
  256.      int (*fn)(struct device *, void *));
  257. /*
  258.  * Manual binding of a device to driver. See drivers/base/bus.c
  259.  * for information on use.
  260.  */
  261. extern void device_bind_driver(struct device * dev);
  262. extern void device_release_driver(struct device * dev);
  263. extern int  device_attach(struct device * dev);
  264. extern void driver_attach(struct device_driver * drv);
  265. /* driverfs interface for exporting device attributes */
  266. struct device_attribute {
  267. struct attribute attr;
  268. ssize_t (*show)(struct device *dev, struct device_attribute *attr,
  269. char *buf);
  270. ssize_t (*store)(struct device *dev, struct device_attribute *attr,
  271.  const char *buf, size_t count);
  272. };
  273. #define DEVICE_ATTR(_name,_mode,_show,_store) 
  274. struct device_attribute dev_attr_##_name = __ATTR(_name,_mode,_show,_store)
  275. extern int device_create_file(struct device *device, struct device_attribute * entry);
  276. extern void device_remove_file(struct device * dev, struct device_attribute * attr);
  277. /*
  278.  * Platform "fixup" functions - allow the platform to have their say
  279.  * about devices and actions that the general device layer doesn't
  280.  * know about.
  281.  */
  282. /* Notify platform of device discovery */
  283. extern int (*platform_notify)(struct device * dev);
  284. extern int (*platform_notify_remove)(struct device * dev);
  285. /**
  286.  * get_device - atomically increment the reference count for the device.
  287.  *
  288.  */
  289. extern struct device * get_device(struct device * dev);
  290. extern void put_device(struct device * dev);
  291. /* drivers/base/platform.c */
  292. struct platform_device {
  293. const char * name;
  294. u32 id;
  295. struct device dev;
  296. u32 num_resources;
  297. struct resource * resource;
  298. };
  299. #define to_platform_device(x) container_of((x), struct platform_device, dev)
  300. extern int platform_device_register(struct platform_device *);
  301. extern void platform_device_unregister(struct platform_device *);
  302. extern struct bus_type platform_bus_type;
  303. extern struct device platform_bus;
  304. extern struct resource *platform_get_resource(struct platform_device *, unsigned int, unsigned int);
  305. extern int platform_get_irq(struct platform_device *, unsigned int);
  306. extern struct resource *platform_get_resource_byname(struct platform_device *, unsigned int, char *);
  307. extern int platform_get_irq_byname(struct platform_device *, char *);
  308. extern int platform_add_devices(struct platform_device **, int);
  309. extern struct platform_device *platform_device_register_simple(char *, unsigned int, struct resource *, unsigned int);
  310. /* drivers/base/power.c */
  311. extern void device_shutdown(void);
  312. /* drivers/base/firmware.c */
  313. extern int firmware_register(struct subsystem *);
  314. extern void firmware_unregister(struct subsystem *);
  315. /* debugging and troubleshooting/diagnostic helpers. */
  316. #define dev_printk(level, dev, format, arg...)
  317. printk(level "%s %s: " format , (dev)->driver ? (dev)->driver->name : "" , (dev)->bus_id , ## arg)
  318. #ifdef DEBUG
  319. #define dev_dbg(dev, format, arg...)
  320. dev_printk(KERN_DEBUG , dev , format , ## arg)
  321. #else
  322. #define dev_dbg(dev, format, arg...) do { (void)(dev); } while (0)
  323. #endif
  324. #define dev_err(dev, format, arg...)
  325. dev_printk(KERN_ERR , dev , format , ## arg)
  326. #define dev_info(dev, format, arg...)
  327. dev_printk(KERN_INFO , dev , format , ## arg)
  328. #define dev_warn(dev, format, arg...)
  329. dev_printk(KERN_WARNING , dev , format , ## arg)
  330. /* Create alias, so I can be autoloaded. */
  331. #define MODULE_ALIAS_CHARDEV(major,minor) 
  332. MODULE_ALIAS("char-major-" __stringify(major) "-" __stringify(minor))
  333. #define MODULE_ALIAS_CHARDEV_MAJOR(major) 
  334. MODULE_ALIAS("char-major-" __stringify(major) "-*")
  335. #endif /* _DEVICE_H_ */