cs_internal.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. /*
  81. * Stuff internal to module "pcmcia_core":
  82. */
  83. /* cistpl.c */
  84. int verify_cis_cache(struct pcmcia_socket *s);
  85. /* socket_sysfs.c */
  86. extern int pccard_sysfs_add_socket(struct device *dev);
  87. extern void pccard_sysfs_remove_socket(struct device *dev);
  88. /* cardbus.c */
  89. int cb_alloc(struct pcmcia_socket *s);
  90. void cb_free(struct pcmcia_socket *s);
  91. int read_cb_mem(struct pcmcia_socket *s, int space, u_int addr, u_int len,
  92. void *ptr);
  93. /*
  94. * Stuff exported by module "pcmcia_core" to module "pcmcia"
  95. */
  96. struct pcmcia_callback{
  97. struct module *owner;
  98. int (*event) (struct pcmcia_socket *s,
  99. event_t event, int priority);
  100. void (*requery) (struct pcmcia_socket *s, int new_cis);
  101. int (*suspend) (struct pcmcia_socket *s);
  102. int (*resume) (struct pcmcia_socket *s);
  103. };
  104. /* cs.c */
  105. extern struct rw_semaphore pcmcia_socket_list_rwsem;
  106. extern struct list_head pcmcia_socket_list;
  107. extern struct class pcmcia_socket_class;
  108. int pccard_register_pcmcia(struct pcmcia_socket *s, struct pcmcia_callback *c);
  109. struct pcmcia_socket *pcmcia_get_socket_by_nr(unsigned int nr);
  110. int pcmcia_suspend_card(struct pcmcia_socket *skt);
  111. int pcmcia_resume_card(struct pcmcia_socket *skt);
  112. int pcmcia_eject_card(struct pcmcia_socket *skt);
  113. int pcmcia_insert_card(struct pcmcia_socket *skt);
  114. struct pcmcia_socket *pcmcia_get_socket(struct pcmcia_socket *skt);
  115. void pcmcia_put_socket(struct pcmcia_socket *skt);
  116. /* cistpl.c */
  117. int pcmcia_read_cis_mem(struct pcmcia_socket *s, int attr,
  118. u_int addr, u_int len, void *ptr);
  119. void pcmcia_write_cis_mem(struct pcmcia_socket *s, int attr,
  120. u_int addr, u_int len, void *ptr);
  121. void release_cis_mem(struct pcmcia_socket *s);
  122. void destroy_cis_cache(struct pcmcia_socket *s);
  123. int pccard_read_tuple(struct pcmcia_socket *s, unsigned int function,
  124. cisdata_t code, void *parse);
  125. int pcmcia_replace_cis(struct pcmcia_socket *s,
  126. const u8 *data, const size_t len);
  127. int pccard_validate_cis(struct pcmcia_socket *s, unsigned int *count);
  128. /* loop over CIS entries */
  129. int pccard_loop_tuple(struct pcmcia_socket *s, unsigned int function,
  130. cisdata_t code, cisparse_t *parse, void *priv_data,
  131. int (*loop_tuple) (tuple_t *tuple,
  132. cisparse_t *parse,
  133. void *priv_data));
  134. int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function,
  135. tuple_t *tuple);
  136. int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function,
  137. tuple_t *tuple);
  138. int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple);
  139. /* rsrc_mgr.c */
  140. int pcmcia_validate_mem(struct pcmcia_socket *s);
  141. struct resource *pcmcia_find_io_region(unsigned long base,
  142. int num,
  143. unsigned long align,
  144. struct pcmcia_socket *s);
  145. int pcmcia_adjust_io_region(struct resource *res,
  146. unsigned long r_start,
  147. unsigned long r_end,
  148. struct pcmcia_socket *s);
  149. struct resource *pcmcia_find_mem_region(u_long base,
  150. u_long num,
  151. u_long align,
  152. int low,
  153. struct pcmcia_socket *s);
  154. /*
  155. * Stuff internal to module "pcmcia".
  156. */
  157. /* ds.c */
  158. extern struct bus_type pcmcia_bus_type;
  159. /* pcmcia_resource.c */
  160. extern int pcmcia_release_configuration(struct pcmcia_device *p_dev);
  161. #ifdef CONFIG_PCMCIA_IOCTL
  162. /* ds.c */
  163. extern spinlock_t pcmcia_dev_list_lock;
  164. extern struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev);
  165. extern void pcmcia_put_dev(struct pcmcia_device *p_dev);
  166. struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s,
  167. unsigned int function);
  168. /* pcmcia_ioctl.c */
  169. extern void __init pcmcia_setup_ioctl(void);
  170. extern void __exit pcmcia_cleanup_ioctl(void);
  171. extern void handle_event(struct pcmcia_socket *s, event_t event);
  172. extern int handle_request(struct pcmcia_socket *s, event_t event);
  173. #else /* CONFIG_PCMCIA_IOCTL */
  174. static inline void __init pcmcia_setup_ioctl(void) { return; }
  175. static inline void __exit pcmcia_cleanup_ioctl(void) { return; }
  176. static inline void handle_event(struct pcmcia_socket *s, event_t event)
  177. {
  178. return;
  179. }
  180. static inline int handle_request(struct pcmcia_socket *s, event_t event)
  181. {
  182. return 0;
  183. }
  184. #endif /* CONFIG_PCMCIA_IOCTL */
  185. #endif /* _LINUX_CS_INTERNAL_H */