ds.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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. /*
  26. * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
  27. * a.k.a. PCI drivers
  28. */
  29. struct pcmcia_socket;
  30. struct pcmcia_device;
  31. struct config_t;
  32. /* dynamic device IDs for PCMCIA device drivers. See
  33. * Documentation/pcmcia/driver.txt for details.
  34. */
  35. struct pcmcia_dynids {
  36. spinlock_t lock;
  37. struct list_head list;
  38. };
  39. struct pcmcia_driver {
  40. int (*probe) (struct pcmcia_device *dev);
  41. void (*remove) (struct pcmcia_device *dev);
  42. int (*suspend) (struct pcmcia_device *dev);
  43. int (*resume) (struct pcmcia_device *dev);
  44. struct module *owner;
  45. struct pcmcia_device_id *id_table;
  46. struct device_driver drv;
  47. struct pcmcia_dynids dynids;
  48. };
  49. /* driver registration */
  50. int pcmcia_register_driver(struct pcmcia_driver *driver);
  51. void pcmcia_unregister_driver(struct pcmcia_driver *driver);
  52. /* Some drivers use dev_node_t to store char or block device information.
  53. * Don't use this in new drivers, though.
  54. */
  55. typedef struct dev_node_t {
  56. char dev_name[DEV_NAME_LEN];
  57. u_short major, minor;
  58. struct dev_node_t *next;
  59. } dev_node_t;
  60. struct pcmcia_device {
  61. /* the socket and the device_no [for multifunction devices]
  62. uniquely define a pcmcia_device */
  63. struct pcmcia_socket *socket;
  64. char *devname;
  65. u8 device_no;
  66. /* the hardware "function" device; certain subdevices can
  67. * share one hardware "function" device. */
  68. u8 func;
  69. struct config_t* function_config;
  70. struct list_head socket_device_list;
  71. /* deprecated, will be cleaned up soon */
  72. dev_node_t *dev_node;
  73. u_int open;
  74. io_req_t io;
  75. irq_req_t irq;
  76. config_req_t conf;
  77. window_handle_t win;
  78. /* Is the device suspended, or in the process of
  79. * being removed? */
  80. u16 suspended:1;
  81. u16 _removed:1;
  82. /* Flags whether io, irq, win configurations were
  83. * requested, and whether the configuration is "locked" */
  84. u16 _irq:1;
  85. u16 _io:1;
  86. u16 _win:4;
  87. u16 _locked:1;
  88. /* Flag whether a "fuzzy" func_id based match is
  89. * allowed. */
  90. u16 allow_func_id_match:1;
  91. /* information about this device */
  92. u16 has_manf_id:1;
  93. u16 has_card_id:1;
  94. u16 has_func_id:1;
  95. u16 reserved:3;
  96. u8 func_id;
  97. u16 manf_id;
  98. u16 card_id;
  99. char * prod_id[4];
  100. u64 dma_mask;
  101. struct device dev;
  102. #ifdef CONFIG_PCMCIA_IOCTL
  103. /* device driver wanted by cardmgr */
  104. struct pcmcia_driver * cardmgr;
  105. #endif
  106. /* data private to drivers */
  107. void *priv;
  108. };
  109. #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
  110. #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
  111. /* deprecated -- don't use! */
  112. #define handle_to_dev(handle) (handle->dev)
  113. /* (deprecated) error reporting by PCMCIA devices. Use dev_printk()
  114. * or dev_dbg() directly in the driver, without referring to pcmcia_error_func()
  115. * and/or pcmcia_error_ret() for those functions will go away soon.
  116. */
  117. enum service {
  118. AccessConfigurationRegister, AddSocketServices,
  119. AdjustResourceInfo, CheckEraseQueue, CloseMemory, CopyMemory,
  120. DeregisterClient, DeregisterEraseQueue, GetCardServicesInfo,
  121. GetClientInfo, GetConfigurationInfo, GetEventMask,
  122. GetFirstClient, GetFirstPartion, GetFirstRegion, GetFirstTuple,
  123. GetNextClient, GetNextPartition, GetNextRegion, GetNextTuple,
  124. GetStatus, GetTupleData, MapLogSocket, MapLogWindow, MapMemPage,
  125. MapPhySocket, MapPhyWindow, ModifyConfiguration, ModifyWindow,
  126. OpenMemory, ParseTuple, ReadMemory, RegisterClient,
  127. RegisterEraseQueue, RegisterMTD, RegisterTimer,
  128. ReleaseConfiguration, ReleaseExclusive, ReleaseIO, ReleaseIRQ,
  129. ReleaseSocketMask, ReleaseWindow, ReplaceSocketServices,
  130. RequestConfiguration, RequestExclusive, RequestIO, RequestIRQ,
  131. RequestSocketMask, RequestWindow, ResetCard, ReturnSSEntry,
  132. SetEventMask, SetRegion, ValidateCIS, VendorSpecific,
  133. WriteMemory, BindDevice, BindMTD, ReportError,
  134. SuspendCard, ResumeCard, EjectCard, InsertCard, ReplaceCIS,
  135. GetFirstWindow, GetNextWindow, GetMemPage
  136. };
  137. const char *pcmcia_error_func(int func);
  138. const char *pcmcia_error_ret(int ret);
  139. #define cs_error(p_dev, func, ret) \
  140. { \
  141. dev_printk(KERN_NOTICE, &p_dev->dev, \
  142. "%s : %s\n", \
  143. pcmcia_error_func(func), \
  144. pcmcia_error_ret(ret)); \
  145. }
  146. /* CIS access.
  147. * Use the pcmcia_* versions in PCMCIA drivers
  148. */
  149. int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
  150. int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function,
  151. tuple_t *tuple);
  152. #define pcmcia_get_first_tuple(p_dev, tuple) \
  153. pccard_get_first_tuple(p_dev->socket, p_dev->func, tuple)
  154. int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function,
  155. tuple_t *tuple);
  156. #define pcmcia_get_next_tuple(p_dev, tuple) \
  157. pccard_get_next_tuple(p_dev->socket, p_dev->func, tuple)
  158. int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple);
  159. #define pcmcia_get_tuple_data(p_dev, tuple) \
  160. pccard_get_tuple_data(p_dev->socket, tuple)
  161. /* loop CIS entries for valid configuration */
  162. int pcmcia_loop_config(struct pcmcia_device *p_dev,
  163. int (*conf_check) (struct pcmcia_device *p_dev,
  164. cistpl_cftable_entry_t *cf,
  165. cistpl_cftable_entry_t *dflt,
  166. unsigned int vcc,
  167. void *priv_data),
  168. void *priv_data);
  169. /* is the device still there? */
  170. struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
  171. /* low-level interface reset */
  172. int pcmcia_reset_card(struct pcmcia_socket *skt);
  173. /* CIS config */
  174. int pcmcia_access_configuration_register(struct pcmcia_device *p_dev,
  175. conf_reg_t *reg);
  176. /* device configuration */
  177. int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req);
  178. int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req);
  179. int pcmcia_request_configuration(struct pcmcia_device *p_dev,
  180. config_req_t *req);
  181. int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req,
  182. window_handle_t *wh);
  183. int pcmcia_release_window(window_handle_t win);
  184. int pcmcia_get_mem_page(window_handle_t win, memreq_t *req);
  185. int pcmcia_map_mem_page(window_handle_t win, memreq_t *req);
  186. int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod);
  187. void pcmcia_disable_device(struct pcmcia_device *p_dev);
  188. #endif /* __KERNEL__ */
  189. /* Below, there are only definitions which are used by
  190. * - the PCMCIA ioctl
  191. * - deprecated PCMCIA userspace tools only
  192. *
  193. * here be dragons ... here be dragons ... here be dragons ... here be drag
  194. */
  195. #if defined(CONFIG_PCMCIA_IOCTL) || !defined(__KERNEL__)
  196. #if defined(__arm__) || defined(__mips__) || defined(__avr32__) || \
  197. defined(__bfin__)
  198. /* This (ioaddr_t) is exposed to userspace & hence cannot be changed. */
  199. typedef u_int ioaddr_t;
  200. #else
  201. typedef u_short ioaddr_t;
  202. #endif
  203. /* for AdjustResourceInfo */
  204. typedef struct adjust_t {
  205. u_int Action;
  206. u_int Resource;
  207. u_int Attributes;
  208. union {
  209. struct memory {
  210. u_long Base;
  211. u_long Size;
  212. } memory;
  213. struct io {
  214. ioaddr_t BasePort;
  215. ioaddr_t NumPorts;
  216. u_int IOAddrLines;
  217. } io;
  218. struct irq {
  219. u_int IRQ;
  220. } irq;
  221. } resource;
  222. } adjust_t;
  223. /* Action field */
  224. #define REMOVE_MANAGED_RESOURCE 1
  225. #define ADD_MANAGED_RESOURCE 2
  226. #define GET_FIRST_MANAGED_RESOURCE 3
  227. #define GET_NEXT_MANAGED_RESOURCE 4
  228. /* Resource field */
  229. #define RES_MEMORY_RANGE 1
  230. #define RES_IO_RANGE 2
  231. #define RES_IRQ 3
  232. /* Attribute field */
  233. #define RES_IRQ_TYPE 0x03
  234. #define RES_IRQ_TYPE_EXCLUSIVE 0
  235. #define RES_IRQ_TYPE_TIME 1
  236. #define RES_IRQ_TYPE_DYNAMIC 2
  237. #define RES_IRQ_CSC 0x04
  238. #define RES_SHARED 0x08
  239. #define RES_RESERVED 0x10
  240. #define RES_ALLOCATED 0x20
  241. #define RES_REMOVED 0x40
  242. typedef struct tuple_parse_t {
  243. tuple_t tuple;
  244. cisdata_t data[255];
  245. cisparse_t parse;
  246. } tuple_parse_t;
  247. typedef struct win_info_t {
  248. window_handle_t handle;
  249. win_req_t window;
  250. memreq_t map;
  251. } win_info_t;
  252. typedef struct bind_info_t {
  253. dev_info_t dev_info;
  254. u_char function;
  255. struct pcmcia_device *instance;
  256. char name[DEV_NAME_LEN];
  257. u_short major, minor;
  258. void *next;
  259. } bind_info_t;
  260. typedef struct mtd_info_t {
  261. dev_info_t dev_info;
  262. u_int Attributes;
  263. u_int CardOffset;
  264. } mtd_info_t;
  265. typedef struct region_info_t {
  266. u_int Attributes;
  267. u_int CardOffset;
  268. u_int RegionSize;
  269. u_int AccessSpeed;
  270. u_int BlockSize;
  271. u_int PartMultiple;
  272. u_char JedecMfr, JedecInfo;
  273. memory_handle_t next;
  274. } region_info_t;
  275. #define REGION_TYPE 0x0001
  276. #define REGION_TYPE_CM 0x0000
  277. #define REGION_TYPE_AM 0x0001
  278. #define REGION_PREFETCH 0x0008
  279. #define REGION_CACHEABLE 0x0010
  280. #define REGION_BAR_MASK 0xe000
  281. #define REGION_BAR_SHIFT 13
  282. /* For ReplaceCIS */
  283. typedef struct cisdump_t {
  284. u_int Length;
  285. cisdata_t Data[CISTPL_MAX_CIS_SIZE];
  286. } cisdump_t;
  287. /* for GetConfigurationInfo */
  288. typedef struct config_info_t {
  289. u_char Function;
  290. u_int Attributes;
  291. u_int Vcc, Vpp1, Vpp2;
  292. u_int IntType;
  293. u_int ConfigBase;
  294. u_char Status, Pin, Copy, Option, ExtStatus;
  295. u_int Present;
  296. u_int CardValues;
  297. u_int AssignedIRQ;
  298. u_int IRQAttributes;
  299. ioaddr_t BasePort1;
  300. ioaddr_t NumPorts1;
  301. u_int Attributes1;
  302. ioaddr_t BasePort2;
  303. ioaddr_t NumPorts2;
  304. u_int Attributes2;
  305. u_int IOAddrLines;
  306. } config_info_t;
  307. /* For ValidateCIS */
  308. typedef struct cisinfo_t {
  309. u_int Chains;
  310. } cisinfo_t;
  311. typedef struct cs_status_t {
  312. u_char Function;
  313. event_t CardState;
  314. event_t SocketState;
  315. } cs_status_t;
  316. typedef union ds_ioctl_arg_t {
  317. adjust_t adjust;
  318. config_info_t config;
  319. tuple_t tuple;
  320. tuple_parse_t tuple_parse;
  321. client_req_t client_req;
  322. cs_status_t status;
  323. conf_reg_t conf_reg;
  324. cisinfo_t cisinfo;
  325. region_info_t region;
  326. bind_info_t bind_info;
  327. mtd_info_t mtd_info;
  328. win_info_t win_info;
  329. cisdump_t cisdump;
  330. } ds_ioctl_arg_t;
  331. #define DS_ADJUST_RESOURCE_INFO _IOWR('d', 2, adjust_t)
  332. #define DS_GET_CONFIGURATION_INFO _IOWR('d', 3, config_info_t)
  333. #define DS_GET_FIRST_TUPLE _IOWR('d', 4, tuple_t)
  334. #define DS_GET_NEXT_TUPLE _IOWR('d', 5, tuple_t)
  335. #define DS_GET_TUPLE_DATA _IOWR('d', 6, tuple_parse_t)
  336. #define DS_PARSE_TUPLE _IOWR('d', 7, tuple_parse_t)
  337. #define DS_RESET_CARD _IO ('d', 8)
  338. #define DS_GET_STATUS _IOWR('d', 9, cs_status_t)
  339. #define DS_ACCESS_CONFIGURATION_REGISTER _IOWR('d', 10, conf_reg_t)
  340. #define DS_VALIDATE_CIS _IOR ('d', 11, cisinfo_t)
  341. #define DS_SUSPEND_CARD _IO ('d', 12)
  342. #define DS_RESUME_CARD _IO ('d', 13)
  343. #define DS_EJECT_CARD _IO ('d', 14)
  344. #define DS_INSERT_CARD _IO ('d', 15)
  345. #define DS_GET_FIRST_REGION _IOWR('d', 16, region_info_t)
  346. #define DS_GET_NEXT_REGION _IOWR('d', 17, region_info_t)
  347. #define DS_REPLACE_CIS _IOWR('d', 18, cisdump_t)
  348. #define DS_GET_FIRST_WINDOW _IOR ('d', 19, win_info_t)
  349. #define DS_GET_NEXT_WINDOW _IOWR('d', 20, win_info_t)
  350. #define DS_GET_MEM_PAGE _IOWR('d', 21, win_info_t)
  351. #define DS_BIND_REQUEST _IOWR('d', 60, bind_info_t)
  352. #define DS_GET_DEVICE_INFO _IOWR('d', 61, bind_info_t)
  353. #define DS_GET_NEXT_DEVICE _IOWR('d', 62, bind_info_t)
  354. #define DS_UNBIND_REQUEST _IOW ('d', 63, bind_info_t)
  355. #define DS_BIND_MTD _IOWR('d', 64, mtd_info_t)
  356. /* used in userspace only */
  357. #define CS_IN_USE 0x1e
  358. #define INFO_MASTER_CLIENT 0x01
  359. #define INFO_IO_CLIENT 0x02
  360. #define INFO_MTD_CLIENT 0x04
  361. #define INFO_MEM_CLIENT 0x08
  362. #define MAX_NUM_CLIENTS 3
  363. #define INFO_CARD_SHARE 0x10
  364. #define INFO_CARD_EXCL 0x20
  365. #endif /* !defined(__KERNEL__) || defined(CONFIG_PCMCIA_IOCTL) */
  366. #endif /* _LINUX_DS_H */