ds.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /*
  2. * ds.h -- 16-bit PCMCIA core support
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * The initial developer of the original code is David A. Hinds
  9. * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
  10. * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
  11. *
  12. * (C) 1999 David A. Hinds
  13. * (C) 2003 - 2004 Dominik Brodowski
  14. */
  15. #ifndef _LINUX_DS_H
  16. #define _LINUX_DS_H
  17. #include <pcmcia/bulkmem.h>
  18. #include <pcmcia/cs_types.h>
  19. #include <pcmcia/device_id.h>
  20. #include <linux/mod_devicetable.h>
  21. typedef struct tuple_parse_t {
  22. tuple_t tuple;
  23. cisdata_t data[255];
  24. cisparse_t parse;
  25. } tuple_parse_t;
  26. typedef struct win_info_t {
  27. window_handle_t handle;
  28. win_req_t window;
  29. memreq_t map;
  30. } win_info_t;
  31. typedef struct bind_info_t {
  32. dev_info_t dev_info;
  33. u_char function;
  34. struct dev_link_t *instance;
  35. char name[DEV_NAME_LEN];
  36. u_short major, minor;
  37. void *next;
  38. } bind_info_t;
  39. typedef struct mtd_info_t {
  40. dev_info_t dev_info;
  41. u_int Attributes;
  42. u_int CardOffset;
  43. } mtd_info_t;
  44. typedef union ds_ioctl_arg_t {
  45. servinfo_t servinfo;
  46. adjust_t adjust;
  47. config_info_t config;
  48. tuple_t tuple;
  49. tuple_parse_t tuple_parse;
  50. client_req_t client_req;
  51. cs_status_t status;
  52. conf_reg_t conf_reg;
  53. cisinfo_t cisinfo;
  54. region_info_t region;
  55. bind_info_t bind_info;
  56. mtd_info_t mtd_info;
  57. win_info_t win_info;
  58. cisdump_t cisdump;
  59. } ds_ioctl_arg_t;
  60. #define DS_GET_CARD_SERVICES_INFO _IOR ('d', 1, servinfo_t)
  61. #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
  62. #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
  63. #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
  64. #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
  65. #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
  66. #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
  67. #define DS_RESET_CARD _IO ('d', 8)
  68. #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
  69. #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
  70. #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
  71. #define DS_SUSPEND_CARD _IO ('d', 12)
  72. #define DS_RESUME_CARD _IO ('d', 13)
  73. #define DS_EJECT_CARD _IO ('d', 14)
  74. #define DS_INSERT_CARD _IO ('d', 15)
  75. #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
  76. #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
  77. #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
  78. #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
  79. #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
  80. #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
  81. #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
  82. #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
  83. #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
  84. #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
  85. #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
  86. #ifdef __KERNEL__
  87. #include <linux/device.h>
  88. typedef struct dev_node_t {
  89. char dev_name[DEV_NAME_LEN];
  90. u_short major, minor;
  91. struct dev_node_t *next;
  92. } dev_node_t;
  93. typedef struct dev_link_t {
  94. dev_node_t *dev;
  95. u_int state, open;
  96. wait_queue_head_t pending;
  97. client_handle_t handle;
  98. io_req_t io;
  99. irq_req_t irq;
  100. config_req_t conf;
  101. window_handle_t win;
  102. void *priv;
  103. struct dev_link_t *next;
  104. } dev_link_t;
  105. /* Flags for device state */
  106. #define DEV_PRESENT 0x01
  107. #define DEV_CONFIG 0x02
  108. #define DEV_STALE_CONFIG 0x04 /* release on close */
  109. #define DEV_STALE_LINK 0x08 /* detach on release */
  110. #define DEV_CONFIG_PENDING 0x10
  111. #define DEV_RELEASE_PENDING 0x20
  112. #define DEV_SUSPEND 0x40
  113. #define DEV_BUSY 0x80
  114. #define DEV_OK(l) \
  115. ((l) && ((l->state & ~DEV_BUSY) == (DEV_CONFIG|DEV_PRESENT)))
  116. struct pcmcia_socket;
  117. struct pcmcia_driver {
  118. dev_link_t *(*attach)(void);
  119. void (*detach)(dev_link_t *);
  120. struct module *owner;
  121. struct pcmcia_device_id *id_table;
  122. struct device_driver drv;
  123. };
  124. /* driver registration */
  125. int pcmcia_register_driver(struct pcmcia_driver *driver);
  126. void pcmcia_unregister_driver(struct pcmcia_driver *driver);
  127. struct pcmcia_device {
  128. /* the socket and the device_no [for multifunction devices]
  129. uniquely define a pcmcia_device */
  130. struct pcmcia_socket *socket;
  131. u8 device_no;
  132. /* the hardware "function" device; certain subdevices can
  133. * share one hardware "function" device. */
  134. u8 func;
  135. struct list_head socket_device_list;
  136. /* deprecated, a cleaned up version will be moved into this
  137. struct soon */
  138. dev_link_t *instance;
  139. struct client_t {
  140. u_short client_magic;
  141. struct pcmcia_socket *Socket;
  142. u_char Function;
  143. u_int state;
  144. event_t EventMask;
  145. int (*event_handler) (event_t event, int priority,
  146. event_callback_args_t *);
  147. event_callback_args_t event_callback_args;
  148. } client;
  149. /* information about this device */
  150. u8 has_manf_id:1;
  151. u8 has_card_id:1;
  152. u8 has_func_id:1;
  153. u8 allow_func_id_match:1;
  154. u8 reserved:4;
  155. u8 func_id;
  156. u16 manf_id;
  157. u16 card_id;
  158. char * prod_id[4];
  159. /* device driver wanted by cardmgr */
  160. struct pcmcia_driver * cardmgr;
  161. struct device dev;
  162. };
  163. #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
  164. #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
  165. #define handle_to_pdev(handle) container_of(handle, struct pcmcia_device, client);
  166. #define handle_to_dev(handle) ((container_of(handle, struct pcmcia_device, client))->dev)
  167. /* error reporting */
  168. void cs_error(client_handle_t handle, int func, int ret);
  169. #endif /* __KERNEL__ */
  170. #endif /* _LINUX_DS_H */