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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _SERIO_H
  2. #define _SERIO_H
  3. /*
  4.  * Copyright (C) 1999-2002 Vojtech Pavlik
  5. *
  6.  * This program is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License version 2 as published by
  8.  * the Free Software Foundation.
  9.  */
  10. #include <linux/ioctl.h>
  11. #define SPIOCSTYPE _IOW('q', 0x01, unsigned long)
  12. #ifdef __KERNEL__
  13. #include <linux/interrupt.h>
  14. #include <linux/list.h>
  15. #include <linux/spinlock.h>
  16. #include <linux/device.h>
  17. #include <linux/mod_devicetable.h>
  18. struct serio {
  19. void *port_data;
  20. char name[32];
  21. char phys[32];
  22. unsigned int manual_bind;
  23. struct serio_device_id id;
  24. spinlock_t lock; /* protects critical sections from port's interrupt handler */
  25. int (*write)(struct serio *, unsigned char);
  26. int (*open)(struct serio *);
  27. void (*close)(struct serio *);
  28. int (*start)(struct serio *);
  29. void (*stop)(struct serio *);
  30. struct serio *parent, *child;
  31. struct serio_driver *drv; /* accessed from interrupt, must be protected by serio->lock and serio->sem */
  32. struct semaphore drv_sem; /* protects serio->drv so attributes can pin driver */
  33. struct device dev;
  34. unsigned int registered; /* port has been fully registered with driver core */
  35. struct list_head node;
  36. };
  37. #define to_serio_port(d) container_of(d, struct serio, dev)
  38. struct serio_driver {
  39. void *private;
  40. char *description;
  41. struct serio_device_id *id_table;
  42. unsigned int manual_bind;
  43. void (*write_wakeup)(struct serio *);
  44. irqreturn_t (*interrupt)(struct serio *, unsigned char,
  45. unsigned int, struct pt_regs *);
  46. int  (*connect)(struct serio *, struct serio_driver *drv);
  47. int  (*reconnect)(struct serio *);
  48. void (*disconnect)(struct serio *);
  49. void (*cleanup)(struct serio *);
  50. struct device_driver driver;
  51. };
  52. #define to_serio_driver(d) container_of(d, struct serio_driver, driver)
  53. int serio_open(struct serio *serio, struct serio_driver *drv);
  54. void serio_close(struct serio *serio);
  55. void serio_rescan(struct serio *serio);
  56. void serio_reconnect(struct serio *serio);
  57. irqreturn_t serio_interrupt(struct serio *serio, unsigned char data, unsigned int flags, struct pt_regs *regs);
  58. void __serio_register_port(struct serio *serio, struct module *owner);
  59. static inline void serio_register_port(struct serio *serio)
  60. {
  61. __serio_register_port(serio, THIS_MODULE);
  62. }
  63. void serio_unregister_port(struct serio *serio);
  64. void serio_unregister_child_port(struct serio *serio);
  65. void __serio_unregister_port_delayed(struct serio *serio, struct module *owner);
  66. static inline void serio_unregister_port_delayed(struct serio *serio)
  67. {
  68. __serio_unregister_port_delayed(serio, THIS_MODULE);
  69. }
  70. void __serio_register_driver(struct serio_driver *drv, struct module *owner);
  71. static inline void serio_register_driver(struct serio_driver *drv)
  72. {
  73. __serio_register_driver(drv, THIS_MODULE);
  74. }
  75. void serio_unregister_driver(struct serio_driver *drv);
  76. static inline int serio_write(struct serio *serio, unsigned char data)
  77. {
  78. if (serio->write)
  79. return serio->write(serio, data);
  80. else
  81. return -1;
  82. }
  83. static inline void serio_drv_write_wakeup(struct serio *serio)
  84. {
  85. if (serio->drv && serio->drv->write_wakeup)
  86. serio->drv->write_wakeup(serio);
  87. }
  88. static inline void serio_cleanup(struct serio *serio)
  89. {
  90. if (serio->drv && serio->drv->cleanup)
  91. serio->drv->cleanup(serio);
  92. }
  93. /*
  94.  * Use the following fucntions to manipulate serio's per-port
  95.  * driver-specific data.
  96.  */
  97. static inline void *serio_get_drvdata(struct serio *serio)
  98. {
  99. return dev_get_drvdata(&serio->dev);
  100. }
  101. static inline void serio_set_drvdata(struct serio *serio, void *data)
  102. {
  103. dev_set_drvdata(&serio->dev, data);
  104. }
  105. /*
  106.  * Use the following fucntions to protect critical sections in
  107.  * driver code from port's interrupt handler
  108.  */
  109. static inline void serio_pause_rx(struct serio *serio)
  110. {
  111. spin_lock_irq(&serio->lock);
  112. }
  113. static inline void serio_continue_rx(struct serio *serio)
  114. {
  115. spin_unlock_irq(&serio->lock);
  116. }
  117. /*
  118.  * Use the following fucntions to pin serio's driver in process context
  119.  */
  120. static inline int serio_pin_driver(struct serio *serio)
  121. {
  122. return down_interruptible(&serio->drv_sem);
  123. }
  124. static inline void serio_pin_driver_uninterruptible(struct serio *serio)
  125. {
  126. down(&serio->drv_sem);
  127. }
  128. static inline void serio_unpin_driver(struct serio *serio)
  129. {
  130. up(&serio->drv_sem);
  131. }
  132. #endif
  133. /*
  134.  * bit masks for use in "interrupt" flags (3rd argument)
  135.  */
  136. #define SERIO_TIMEOUT 1
  137. #define SERIO_PARITY 2
  138. #define SERIO_FRAME 4
  139. /*
  140.  * Serio types
  141.  */
  142. #define SERIO_XT 0x00
  143. #define SERIO_8042 0x01
  144. #define SERIO_RS232 0x02
  145. #define SERIO_HIL_MLC 0x03
  146. #define SERIO_PS_PSTHRU 0x05
  147. #define SERIO_8042_XL 0x06
  148. /*
  149.  * Serio types
  150.  */
  151. #define SERIO_UNKNOWN 0x00
  152. #define SERIO_MSC 0x01
  153. #define SERIO_SUN 0x02
  154. #define SERIO_MS 0x03
  155. #define SERIO_MP 0x04
  156. #define SERIO_MZ 0x05
  157. #define SERIO_MZP 0x06
  158. #define SERIO_MZPP 0x07
  159. #define SERIO_VSXXXAA 0x08
  160. #define SERIO_SUNKBD 0x10
  161. #define SERIO_WARRIOR 0x18
  162. #define SERIO_SPACEORB 0x19
  163. #define SERIO_MAGELLAN 0x1a
  164. #define SERIO_SPACEBALL 0x1b
  165. #define SERIO_GUNZE 0x1c
  166. #define SERIO_IFORCE 0x1d
  167. #define SERIO_STINGER 0x1e
  168. #define SERIO_NEWTON 0x1f
  169. #define SERIO_STOWAWAY 0x20
  170. #define SERIO_H3600 0x21
  171. #define SERIO_PS2SER 0x22
  172. #define SERIO_TWIDKBD 0x23
  173. #define SERIO_TWIDJOY 0x24
  174. #define SERIO_HIL 0x25
  175. #define SERIO_SNES232 0x26
  176. #define SERIO_SEMTECH 0x27
  177. #define SERIO_LKKBD 0x28
  178. #define SERIO_ELO 0x29
  179. #define SERIO_MICROTOUCH 0x30
  180. #endif