cs_internal.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * cs_internal.h -- definitions internal to the PCMCIA core modules
  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. *
  16. * This file contains definitions _only_ needed by the PCMCIA core modules.
  17. * It must not be included by PCMCIA socket drivers or by PCMCIA device
  18. * drivers.
  19. */
  20. #ifndef _LINUX_CS_INTERNAL_H
  21. #define _LINUX_CS_INTERNAL_H
  22. #include <linux/kref.h>
  23. /* Flags in client state */
  24. #define CLIENT_WIN_REQ(i) (0x1<<(i))
  25. /* Each card function gets one of these guys */
  26. typedef struct config_t {
  27. struct kref ref;
  28. unsigned int state;
  29. unsigned int Attributes;
  30. unsigned int IntType;
  31. unsigned int ConfigBase;
  32. unsigned char Status, Pin, Copy, Option, ExtStatus;
  33. unsigned int CardValues;
  34. io_req_t io;
  35. struct {
  36. u_int Attributes;
  37. } irq;
  38. } config_t;
  39. struct cis_cache_entry {
  40. struct list_head node;
  41. unsigned int addr;
  42. unsigned int len;
  43. unsigned int attr;
  44. unsigned char cache[0];
  45. };
  46. struct pccard_resource_ops {
  47. int (*validate_mem) (struct pcmcia_socket *s);
  48. int (*adjust_io_region) (struct resource *res,
  49. unsigned long r_start,
  50. unsigned long r_end,
  51. struct pcmcia_socket *s);
  52. struct resource* (*find_io) (unsigned long base, int num,
  53. unsigned long align,
  54. struct pcmcia_socket *s);
  55. struct resource* (*find_mem) (unsigned long base, unsigned long num,
  56. unsigned long align, int low,
  57. struct pcmcia_socket *s);
  58. int (*add_io) (struct pcmcia_socket *s,
  59. unsigned int action,
  60. unsigned long r_start,
  61. unsigned long r_end);
  62. int (*add_mem) (struct pcmcia_socket *s,
  63. unsigned int action,
  64. unsigned long r_start,
  65. unsigned long r_end);
  66. int (*init) (struct pcmcia_socket *s);
  67. void (*exit) (struct pcmcia_socket *s);
  68. };
  69. /* Flags in config state */
  70. #define CONFIG_LOCKED 0x01
  71. #define CONFIG_IRQ_REQ 0x02
  72. #define CONFIG_IO_REQ 0x04
  73. /* Flags in socket state */
  74. #define SOCKET_PRESENT 0x0008
  75. #define SOCKET_INUSE 0x0010
  76. #define SOCKET_SUSPEND 0x0080
  77. #define SOCKET_WIN_REQ(i) (0x0100<<(i))
  78. #define SOCKET_CARDBUS 0x8000
  79. #define SOCKET_CARDBUS_CONFIG 0x10000
  80. static inline int cs_socket_get(struct pcmcia_socket *skt)
  81. {
  82. int ret;
  83. WARN_ON(skt->state & SOCKET_INUSE);
  84. ret = try_module_get(skt->owner);
  85. if (ret)
  86. skt->state |= SOCKET_INUSE;
  87. return ret;
  88. }
  89. static inline void cs_socket_put(struct pcmcia_socket *skt)
  90. {
  91. if (skt->state & SOCKET_INUSE) {
  92. skt->state &= ~SOCKET_INUSE;
  93. module_put(skt->owner);
  94. }
  95. }
  96. /*
  97. * Stuff internal to module "pcmcia_core":
  98. */
  99. /* cistpl.c */
  100. int verify_cis_cache(struct pcmcia_socket *s);
  101. /* rsrc_mgr.c */
  102. void release_resource_db(struct pcmcia_socket *s);
  103. /* socket_sysfs.c */
  104. extern int pccard_sysfs_add_socket(struct device *dev);
  105. extern void pccard_sysfs_remove_socket(struct device *dev);
  106. /* cardbus.c */
  107. int cb_alloc(struct pcmcia_socket *s);
  108. void cb_free(struct pcmcia_socket *s);
  109. int read_cb_mem(struct pcmcia_socket *s, int space, u_int addr, u_int len,
  110. void *ptr);
  111. /*
  112. * Stuff exported by module "pcmcia_core" to module "pcmcia"
  113. */
  114. struct pcmcia_callback{
  115. struct module *owner;
  116. int (*event) (struct pcmcia_socket *s,
  117. event_t event, int priority);
  118. void (*requery) (struct pcmcia_socket *s, int new_cis);
  119. int (*suspend) (struct pcmcia_socket *s);
  120. int (*resume) (struct pcmcia_socket *s);
  121. };
  122. /* cs.c */
  123. extern struct rw_semaphore pcmcia_socket_list_rwsem;
  124. extern struct list_head pcmcia_socket_list;
  125. extern struct class pcmcia_socket_class;
  126. int pccard_register_pcmcia(struct pcmcia_socket *s, struct pcmcia_callback *c);
  127. struct pcmcia_socket *pcmcia_get_socket_by_nr(unsigned int nr);
  128. int pcmcia_suspend_card(struct pcmcia_socket *skt);
  129. int pcmcia_resume_card(struct pcmcia_socket *skt);
  130. int pcmcia_eject_card(struct pcmcia_socket *skt);
  131. int pcmcia_insert_card(struct pcmcia_socket *skt);
  132. struct pcmcia_socket *pcmcia_get_socket(struct pcmcia_socket *skt);
  133. void pcmcia_put_socket(struct pcmcia_socket *skt);
  134. /* cistpl.c */
  135. int pcmcia_read_cis_mem(struct pcmcia_socket *s, int attr,
  136. u_int addr, u_int len, void *ptr);
  137. void pcmcia_write_cis_mem(struct pcmcia_socket *s, int attr,
  138. u_int addr, u_int len, void *ptr);
  139. void release_cis_mem(struct pcmcia_socket *s);
  140. void destroy_cis_cache(struct pcmcia_socket *s);
  141. int pccard_read_tuple(struct pcmcia_socket *s, unsigned int function,
  142. cisdata_t code, void *parse);
  143. int pcmcia_replace_cis(struct pcmcia_socket *s,
  144. const u8 *data, const size_t len);
  145. int pccard_validate_cis(struct pcmcia_socket *s, unsigned int *count);
  146. /* loop over CIS entries */
  147. int pccard_loop_tuple(struct pcmcia_socket *s, unsigned int function,
  148. cisdata_t code, cisparse_t *parse, void *priv_data,
  149. int (*loop_tuple) (tuple_t *tuple,
  150. cisparse_t *parse,
  151. void *priv_data));
  152. int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function,
  153. tuple_t *tuple);
  154. int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function,
  155. tuple_t *tuple);
  156. int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple);
  157. /* rsrc_mgr.c */
  158. int pcmcia_validate_mem(struct pcmcia_socket *s);
  159. struct resource *pcmcia_find_io_region(unsigned long base,
  160. int num,
  161. unsigned long align,
  162. struct pcmcia_socket *s);
  163. int pcmcia_adjust_io_region(struct resource *res,
  164. unsigned long r_start,
  165. unsigned long r_end,
  166. struct pcmcia_socket *s);
  167. struct resource *pcmcia_find_mem_region(u_long base,
  168. u_long num,
  169. u_long align,
  170. int low,
  171. struct pcmcia_socket *s);
  172. /*
  173. * Stuff internal to module "pcmcia".
  174. */
  175. /* ds.c */
  176. extern struct bus_type pcmcia_bus_type;
  177. /* pcmcia_resource.c */
  178. extern int pcmcia_release_configuration(struct pcmcia_device *p_dev);
  179. #ifdef CONFIG_PCMCIA_IOCTL
  180. /* ds.c */
  181. extern spinlock_t pcmcia_dev_list_lock;
  182. extern struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev);
  183. extern void pcmcia_put_dev(struct pcmcia_device *p_dev);
  184. struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s,
  185. unsigned int function);
  186. /* pcmcia_ioctl.c */
  187. extern void __init pcmcia_setup_ioctl(void);
  188. extern void __exit pcmcia_cleanup_ioctl(void);
  189. extern void handle_event(struct pcmcia_socket *s, event_t event);
  190. extern int handle_request(struct pcmcia_socket *s, event_t event);
  191. #else /* CONFIG_PCMCIA_IOCTL */
  192. static inline void __init pcmcia_setup_ioctl(void) { return; }
  193. static inline void __exit pcmcia_cleanup_ioctl(void) { return; }
  194. static inline void handle_event(struct pcmcia_socket *s, event_t event)
  195. {
  196. return;
  197. }
  198. static inline int handle_request(struct pcmcia_socket *s, event_t event)
  199. {
  200. return 0;
  201. }
  202. #endif /* CONFIG_PCMCIA_IOCTL */
  203. #endif /* _LINUX_CS_INTERNAL_H */