ds.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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 - 2008 Dominik Brodowski
  14. */
  15. #ifndef _LINUX_DS_H
  16. #define _LINUX_DS_H
  17. #ifdef __KERNEL__
  18. #include <linux/mod_devicetable.h>
  19. #endif
  20. #include <pcmcia/cs_types.h>
  21. #include <pcmcia/device_id.h>
  22. #ifdef __KERNEL__
  23. #include <linux/device.h>
  24. #include <pcmcia/ss.h>
  25. #include <asm/atomic.h>
  26. /*
  27. * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
  28. * a.k.a. PCI drivers
  29. */
  30. struct pcmcia_socket;
  31. struct pcmcia_device;
  32. struct config_t;
  33. struct net_device;
  34. /* dynamic device IDs for PCMCIA device drivers. See
  35. * Documentation/pcmcia/driver.txt for details.
  36. */
  37. struct pcmcia_dynids {
  38. struct mutex lock;
  39. struct list_head list;
  40. };
  41. struct pcmcia_driver {
  42. int (*probe) (struct pcmcia_device *dev);
  43. void (*remove) (struct pcmcia_device *dev);
  44. int (*suspend) (struct pcmcia_device *dev);
  45. int (*resume) (struct pcmcia_device *dev);
  46. struct module *owner;
  47. struct pcmcia_device_id *id_table;
  48. struct device_driver drv;
  49. struct pcmcia_dynids dynids;
  50. };
  51. /* driver registration */
  52. int pcmcia_register_driver(struct pcmcia_driver *driver);
  53. void pcmcia_unregister_driver(struct pcmcia_driver *driver);
  54. struct pcmcia_device {
  55. /* the socket and the device_no [for multifunction devices]
  56. uniquely define a pcmcia_device */
  57. struct pcmcia_socket *socket;
  58. char *devname;
  59. u8 device_no;
  60. /* the hardware "function" device; certain subdevices can
  61. * share one hardware "function" device. */
  62. u8 func;
  63. struct config_t *function_config;
  64. struct list_head socket_device_list;
  65. /* deprecated, will be cleaned up soon */
  66. u_int open;
  67. io_req_t io;
  68. config_req_t conf;
  69. window_handle_t win;
  70. /* device setup */
  71. unsigned int irq;
  72. /* Is the device suspended? */
  73. u16 suspended:1;
  74. /* Flags whether io, irq, win configurations were
  75. * requested, and whether the configuration is "locked" */
  76. u16 _irq:1;
  77. u16 _io:1;
  78. u16 _win:4;
  79. u16 _locked:1;
  80. /* Flag whether a "fuzzy" func_id based match is
  81. * allowed. */
  82. u16 allow_func_id_match:1;
  83. /* information about this device */
  84. u16 has_manf_id:1;
  85. u16 has_card_id:1;
  86. u16 has_func_id:1;
  87. u16 reserved:4;
  88. u8 func_id;
  89. u16 manf_id;
  90. u16 card_id;
  91. char *prod_id[4];
  92. u64 dma_mask;
  93. struct device dev;
  94. #ifdef CONFIG_PCMCIA_IOCTL
  95. /* device driver wanted by cardmgr */
  96. struct pcmcia_driver *cardmgr;
  97. #endif
  98. /* data private to drivers */
  99. void *priv;
  100. };
  101. #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
  102. #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
  103. /*
  104. * CIS access.
  105. *
  106. * Please use the following functions to access CIS tuples:
  107. * - pcmcia_get_tuple()
  108. * - pcmcia_loop_tuple()
  109. * - pcmcia_get_mac_from_cis()
  110. *
  111. * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
  112. * might change in future.
  113. */
  114. /* get the very first CIS entry of type @code. Note that buf is pointer
  115. * to u8 *buf; and that you need to kfree(buf) afterwards. */
  116. size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
  117. u8 **buf);
  118. /* loop over CIS entries */
  119. int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
  120. int (*loop_tuple) (struct pcmcia_device *p_dev,
  121. tuple_t *tuple,
  122. void *priv_data),
  123. void *priv_data);
  124. /* get the MAC address from CISTPL_FUNCE */
  125. int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev,
  126. struct net_device *dev);
  127. /* parse a tuple_t */
  128. int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
  129. /* loop CIS entries for valid configuration */
  130. int pcmcia_loop_config(struct pcmcia_device *p_dev,
  131. int (*conf_check) (struct pcmcia_device *p_dev,
  132. cistpl_cftable_entry_t *cf,
  133. cistpl_cftable_entry_t *dflt,
  134. unsigned int vcc,
  135. void *priv_data),
  136. void *priv_data);
  137. /* is the device still there? */
  138. struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
  139. /* low-level interface reset */
  140. int pcmcia_reset_card(struct pcmcia_socket *skt);
  141. /* CIS config */
  142. int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
  143. conf_reg_t *reg);
  144. /* device configuration */
  145. int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req);
  146. int __must_check
  147. __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
  148. irq_handler_t handler);
  149. static inline __must_check __deprecated int
  150. pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
  151. irq_handler_t handler)
  152. {
  153. return __pcmcia_request_exclusive_irq(p_dev, handler);
  154. }
  155. int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
  156. irq_handler_t handler);
  157. int pcmcia_request_configuration(struct pcmcia_device *p_dev,
  158. config_req_t *req);
  159. int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req,
  160. window_handle_t *wh);
  161. int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win);
  162. int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win,
  163. memreq_t *req);
  164. int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod);
  165. void pcmcia_disable_device(struct pcmcia_device *p_dev);
  166. #endif /* __KERNEL__ */
  167. /* Below, there are only definitions which are used by
  168. * - the PCMCIA ioctl
  169. * - deprecated PCMCIA userspace tools only
  170. *
  171. * here be dragons ... here be dragons ... here be dragons ... here be drag
  172. */
  173. #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__)
  174. #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \
  175. defined(__bfin__)
  176. /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
  177. typedef u_int ioaddr_t;
  178. #else
  179. typedef u_short ioaddr_t;
  180. #endif
  181. /* for AdjustResourceInfo */
  182. typedef struct adjust_t {
  183. u_int Action;
  184. u_int Resource;
  185. u_int Attributes;
  186. union {
  187. struct memory {
  188. u_long Base;
  189. u_long Size;
  190. } memory;
  191. struct io {
  192. ioaddr_t BasePort;
  193. ioaddr_t NumPorts;
  194. u_int IOAddrLines;
  195. } io;
  196. struct irq {
  197. u_int IRQ;
  198. } irq;
  199. } resource;
  200. } adjust_t;
  201. /* Action field */
  202. #define REMOVE_MANAGED_RESOURCE 1
  203. #define ADD_MANAGED_RESOURCE 2
  204. #define GET_FIRST_MANAGED_RESOURCE 3
  205. #define GET_NEXT_MANAGED_RESOURCE 4
  206. /* Resource field */
  207. #define RES_MEMORY_RANGE 1
  208. #define RES_IO_RANGE 2
  209. #define RES_IRQ 3
  210. /* Attribute field */
  211. #define RES_IRQ_TYPE 0x03
  212. #define RES_IRQ_TYPE_EXCLUSIVE 0
  213. #define RES_IRQ_TYPE_TIME 1
  214. #define RES_IRQ_TYPE_DYNAMIC 2
  215. #define RES_IRQ_CSC 0x04
  216. #define RES_SHARED 0x08
  217. #define RES_RESERVED 0x10
  218. #define RES_ALLOCATED 0x20
  219. #define RES_REMOVED 0x40
  220. typedef struct tuple_parse_t {
  221. tuple_t tuple;
  222. cisdata_t data[255];
  223. cisparse_t parse;
  224. } tuple_parse_t;
  225. typedef struct win_info_t {
  226. window_handle_t handle;
  227. win_req_t window;
  228. memreq_t map;
  229. } win_info_t;
  230. typedef struct bind_info_t {
  231. dev_info_t dev_info;
  232. u_char function;
  233. struct pcmcia_device *instance;
  234. char name[DEV_NAME_LEN];
  235. u_short major, minor;
  236. void *next;
  237. } bind_info_t;
  238. typedef struct mtd_info_t {
  239. dev_info_t dev_info;
  240. u_int Attributes;
  241. u_int CardOffset;
  242. } mtd_info_t;
  243. typedef struct region_info_t {
  244. u_int Attributes;
  245. u_int CardOffset;
  246. u_int RegionSize;
  247. u_int AccessSpeed;
  248. u_int BlockSize;
  249. u_int PartMultiple;
  250. u_char JedecMfr, JedecInfo;
  251. memory_handle_t next;
  252. } region_info_t;
  253. #define REGION_TYPE 0x0001
  254. #define REGION_TYPE_CM 0x0000
  255. #define REGION_TYPE_AM 0x0001
  256. #define REGION_PREFETCH 0x0008
  257. #define REGION_CACHEABLE 0x0010
  258. #define REGION_BAR_MASK 0xe000
  259. #define REGION_BAR_SHIFT 13
  260. /* For ReplaceCIS */
  261. typedef struct cisdump_t {
  262. u_int Length;
  263. cisdata_t Data[CISTPL_MAX_CIS_SIZE];
  264. } cisdump_t;
  265. /* for GetConfigurationInfo */
  266. typedef struct config_info_t {
  267. u_char Function;
  268. u_int Attributes;
  269. u_int Vcc, Vpp1, Vpp2;
  270. u_int IntType;
  271. u_int ConfigBase;
  272. u_char Status, Pin, Copy, Option, ExtStatus;
  273. u_int Present;
  274. u_int CardValues;
  275. u_int AssignedIRQ;
  276. u_int IRQAttributes;
  277. ioaddr_t BasePort1;
  278. ioaddr_t NumPorts1;
  279. u_int Attributes1;
  280. ioaddr_t BasePort2;
  281. ioaddr_t NumPorts2;
  282. u_int Attributes2;
  283. u_int IOAddrLines;
  284. } config_info_t;
  285. /* For ValidateCIS */
  286. typedef struct cisinfo_t {
  287. u_int Chains;
  288. } cisinfo_t;
  289. typedef struct cs_status_t {
  290. u_char Function;
  291. event_t CardState;
  292. event_t SocketState;
  293. } cs_status_t;
  294. typedef union ds_ioctl_arg_t {
  295. adjust_t adjust;
  296. config_info_t config;
  297. tuple_t tuple;
  298. tuple_parse_t tuple_parse;
  299. client_req_t client_req;
  300. cs_status_t status;
  301. conf_reg_t conf_reg;
  302. cisinfo_t cisinfo;
  303. region_info_t region;
  304. bind_info_t bind_info;
  305. mtd_info_t mtd_info;
  306. win_info_t win_info;
  307. cisdump_t cisdump;
  308. } ds_ioctl_arg_t;
  309. #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
  310. #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
  311. #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
  312. #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
  313. #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
  314. #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
  315. #define DS_RESET_CARD _IO ('d', 8)
  316. #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
  317. #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
  318. #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
  319. #define DS_SUSPEND_CARD _IO ('d', 12)
  320. #define DS_RESUME_CARD _IO ('d', 13)
  321. #define DS_EJECT_CARD _IO ('d', 14)
  322. #define DS_INSERT_CARD _IO ('d', 15)
  323. #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
  324. #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
  325. #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
  326. #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
  327. #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
  328. #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
  329. #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
  330. #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
  331. #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
  332. #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
  333. #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
  334. /* used in userspace only */
  335. #define CS_IN_USE 0x1e
  336. #define INFO_MASTER_CLIENT 0x01
  337. #define INFO_IO_CLIENT 0x02
  338. #define INFO_MTD_CLIENT 0x04
  339. #define INFO_MEM_CLIENT 0x08
  340. #define MAX_NUM_CLIENTS 3
  341. #define INFO_CARD_SHARE 0x10
  342. #define INFO_CARD_EXCL 0x20
  343. #endif /* !defined(__KERNEL__) || defined(CONFIG_PCMCIA_IOCTL) */
  344. #endif /* _LINUX_DS_H */