cs_internal.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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 (*find_io) (struct pcmcia_socket *s,
  49. unsigned int attr,
  50. unsigned int *base,
  51. unsigned int num,
  52. unsigned int align);
  53. struct resource* (*find_mem) (unsigned long base, unsigned long num,
  54. unsigned long align, int low,
  55. struct pcmcia_socket *s);
  56. int (*add_io) (struct pcmcia_socket *s,
  57. unsigned int action,
  58. unsigned long r_start,
  59. unsigned long r_end);
  60. int (*add_mem) (struct pcmcia_socket *s,
  61. unsigned int action,
  62. unsigned long r_start,
  63. unsigned long r_end);
  64. int (*init) (struct pcmcia_socket *s);
  65. void (*exit) (struct pcmcia_socket *s);
  66. };
  67. /* Flags in config state */
  68. #define CONFIG_LOCKED 0x01
  69. #define CONFIG_IRQ_REQ 0x02
  70. #define CONFIG_IO_REQ 0x04
  71. /* Flags in socket state */
  72. #define SOCKET_PRESENT 0x0008
  73. #define SOCKET_INUSE 0x0010
  74. #define SOCKET_SUSPEND 0x0080
  75. #define SOCKET_WIN_REQ(i) (0x0100<<(i))
  76. #define SOCKET_CARDBUS 0x8000
  77. #define SOCKET_CARDBUS_CONFIG 0x10000
  78. /*
  79. * Stuff internal to module "pcmcia_rsrc":
  80. */
  81. extern int static_init(struct pcmcia_socket *s);
  82. extern struct resource *pcmcia_make_resource(unsigned long start,
  83. unsigned long end,
  84. int flags, const char *name);
  85. /*
  86. * Stuff internal to module "pcmcia_core":
  87. */
  88. /* socket_sysfs.c */
  89. extern int pccard_sysfs_add_socket(struct device *dev);
  90. extern void pccard_sysfs_remove_socket(struct device *dev);
  91. /* cardbus.c */
  92. int cb_alloc(struct pcmcia_socket *s);
  93. void cb_free(struct pcmcia_socket *s);
  94. /*
  95. * Stuff exported by module "pcmcia_core" to module "pcmcia"
  96. */
  97. struct pcmcia_callback{
  98. struct module *owner;
  99. int (*event) (struct pcmcia_socket *s,
  100. event_t event, int priority);
  101. void (*requery) (struct pcmcia_socket *s);
  102. int (*validate) (struct pcmcia_socket *s, unsigned int *i);
  103. int (*suspend) (struct pcmcia_socket *s);
  104. int (*resume) (struct pcmcia_socket *s);
  105. };
  106. /* cs.c */
  107. extern struct rw_semaphore pcmcia_socket_list_rwsem;
  108. extern struct list_head pcmcia_socket_list;
  109. extern struct class pcmcia_socket_class;
  110. int pccard_register_pcmcia(struct pcmcia_socket *s, struct pcmcia_callback *c);
  111. struct pcmcia_socket *pcmcia_get_socket_by_nr(unsigned int nr);
  112. void pcmcia_parse_uevents(struct pcmcia_socket *socket, unsigned int events);
  113. #define PCMCIA_UEVENT_EJECT 0x0001
  114. #define PCMCIA_UEVENT_INSERT 0x0002
  115. #define PCMCIA_UEVENT_SUSPEND 0x0004
  116. #define PCMCIA_UEVENT_RESUME 0x0008
  117. #define PCMCIA_UEVENT_REQUERY 0x0010
  118. struct pcmcia_socket *pcmcia_get_socket(struct pcmcia_socket *skt);
  119. void pcmcia_put_socket(struct pcmcia_socket *skt);
  120. /*
  121. * Stuff internal to module "pcmcia".
  122. */
  123. /* ds.c */
  124. extern struct bus_type pcmcia_bus_type;
  125. /* pcmcia_resource.c */
  126. extern int pcmcia_release_configuration(struct pcmcia_device *p_dev);
  127. extern int pcmcia_validate_mem(struct pcmcia_socket *s);
  128. extern struct resource *pcmcia_find_mem_region(u_long base,
  129. u_long num,
  130. u_long align,
  131. int low,
  132. struct pcmcia_socket *s);
  133. void pcmcia_cleanup_irq(struct pcmcia_socket *s);
  134. int pcmcia_setup_irq(struct pcmcia_device *p_dev);
  135. /* cistpl.c */
  136. extern struct bin_attribute pccard_cis_attr;
  137. int pcmcia_read_cis_mem(struct pcmcia_socket *s, int attr,
  138. u_int addr, u_int len, void *ptr);
  139. void pcmcia_write_cis_mem(struct pcmcia_socket *s, int attr,
  140. u_int addr, u_int len, void *ptr);
  141. void release_cis_mem(struct pcmcia_socket *s);
  142. void destroy_cis_cache(struct pcmcia_socket *s);
  143. int pccard_read_tuple(struct pcmcia_socket *s, unsigned int function,
  144. cisdata_t code, void *parse);
  145. int pcmcia_replace_cis(struct pcmcia_socket *s,
  146. const u8 *data, const size_t len);
  147. int pccard_validate_cis(struct pcmcia_socket *s, unsigned int *count);
  148. int verify_cis_cache(struct pcmcia_socket *s);
  149. int pccard_loop_tuple(struct pcmcia_socket *s, unsigned int function,
  150. cisdata_t code, cisparse_t *parse, void *priv_data,
  151. int (*loop_tuple) (tuple_t *tuple,
  152. cisparse_t *parse,
  153. void *priv_data));
  154. int pccard_get_first_tuple(struct pcmcia_socket *s, unsigned int function,
  155. tuple_t *tuple);
  156. int pccard_get_next_tuple(struct pcmcia_socket *s, unsigned int function,
  157. tuple_t *tuple);
  158. int pccard_get_tuple_data(struct pcmcia_socket *s, tuple_t *tuple);
  159. #ifdef CONFIG_PCMCIA_IOCTL
  160. /* ds.c */
  161. extern struct pcmcia_device *pcmcia_get_dev(struct pcmcia_device *p_dev);
  162. extern void pcmcia_put_dev(struct pcmcia_device *p_dev);
  163. struct pcmcia_device *pcmcia_device_add(struct pcmcia_socket *s,
  164. unsigned int function);
  165. /* pcmcia_ioctl.c */
  166. extern void __init pcmcia_setup_ioctl(void);
  167. extern void __exit pcmcia_cleanup_ioctl(void);
  168. extern void handle_event(struct pcmcia_socket *s, event_t event);
  169. extern int handle_request(struct pcmcia_socket *s, event_t event);
  170. #else /* CONFIG_PCMCIA_IOCTL */
  171. static inline void __init pcmcia_setup_ioctl(void) { return; }
  172. static inline void __exit pcmcia_cleanup_ioctl(void) { return; }
  173. static inline void handle_event(struct pcmcia_socket *s, event_t event)
  174. {
  175. return;
  176. }
  177. static inline int handle_request(struct pcmcia_socket *s, event_t event)
  178. {
  179. return 0;
  180. }
  181. #endif /* CONFIG_PCMCIA_IOCTL */
  182. #endif /* _LINUX_CS_INTERNAL_H */