cs_internal.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * cs_internal.h 1.54 2000/10/26 20:10:55
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License
  5.  * Version 1.1 (the "License"); you may not use this file except in
  6.  * compliance with the License. You may obtain a copy of the License
  7.  * at http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS"
  10.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  11.  * the License for the specific language governing rights and
  12.  * limitations under the License. 
  13.  *
  14.  * The initial developer of the original code is David A. Hinds
  15.  * <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  16.  *  are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  17.  */
  18. #ifndef _LINUX_CS_INTERNAL_H
  19. #define _LINUX_CS_INTERNAL_H
  20. #include <linux/config.h>
  21. typedef struct erase_busy_t {
  22.     eraseq_entry_t *erase;
  23.     client_handle_t client;
  24.     struct timer_list timeout;
  25.     struct erase_busy_t *prev, *next;
  26. } erase_busy_t;
  27. #define ERASEQ_MAGIC 0xFA67
  28. typedef struct eraseq_t {
  29.     u_short eraseq_magic;
  30.     client_handle_t handle;
  31.     int count;
  32.     eraseq_entry_t *entry;
  33. } eraseq_t;
  34. #define CLIENT_MAGIC  0x51E6
  35. typedef struct client_t {
  36.     u_short client_magic;
  37.     socket_t Socket;
  38.     u_char Function;
  39.     dev_info_t dev_info;
  40.     u_int Attributes;
  41.     u_int state;
  42.     event_t EventMask, PendingEvents;
  43.     int (*event_handler)(event_t event, int priority,
  44.  event_callback_args_t *);
  45.     event_callback_args_t event_callback_args;
  46.     struct client_t  *next;
  47.     u_int mtd_count;
  48.     wait_queue_head_t mtd_req;
  49.     erase_busy_t erase_busy;
  50. } client_t;
  51. /* Flags in client state */
  52. #define CLIENT_CONFIG_LOCKED 0x0001
  53. #define CLIENT_IRQ_REQ 0x0002
  54. #define CLIENT_IO_REQ 0x0004
  55. #define CLIENT_UNBOUND 0x0008
  56. #define CLIENT_STALE 0x0010
  57. #define CLIENT_WIN_REQ(i) (0x20<<(i))
  58. #define CLIENT_CARDBUS 0x8000
  59. typedef struct io_window_t {
  60.     u_int Attributes;
  61.     ioaddr_t BasePort, NumPorts;
  62.     ioaddr_t InUse, Config;
  63. } io_window_t;
  64. #define WINDOW_MAGIC 0xB35C
  65. typedef struct window_t {
  66.     u_short magic;
  67.     u_short index;
  68.     client_handle_t handle;
  69.     struct socket_info_t *sock;
  70.     u_long base;
  71.     u_long size;
  72.     pccard_mem_map ctl;
  73. } window_t;
  74. #define REGION_MAGIC 0xE3C9
  75. typedef struct region_t {
  76.     u_short region_magic;
  77.     u_short state;
  78.     dev_info_t dev_info;
  79.     client_handle_t mtd;
  80.     u_int MediaID;
  81.     region_info_t info;
  82. } region_t;
  83. #define REGION_STALE 0x01
  84. /* Each card function gets one of these guys */
  85. typedef struct config_t {
  86.     u_int state;
  87.     u_int Attributes;
  88.     u_int Vcc, Vpp1, Vpp2;
  89.     u_int IntType;
  90.     u_int ConfigBase;
  91.     u_char Status, Pin, Copy, Option, ExtStatus;
  92.     u_int Present;
  93.     u_int CardValues;
  94.     io_req_t io;
  95.     struct {
  96. u_int Attributes;
  97.     } irq;
  98. } config_t;
  99. /* Maximum number of IO windows per socket */
  100. #define MAX_IO_WIN 2
  101. /* Maximum number of memory windows per socket */
  102. #define MAX_WIN 4
  103. /* The size of the CIS cache */
  104. #define MAX_CIS_TABLE 64
  105. #define MAX_CIS_DATA 512
  106. typedef struct socket_info_t {
  107.     spinlock_t lock;
  108.     struct pccard_operations * ss_entry;
  109.     u_int sock;
  110.     socket_state_t socket;
  111.     socket_cap_t cap;
  112.     u_int state;
  113.     u_short functions;
  114.     u_short lock_count;
  115.     client_handle_t clients;
  116.     u_int real_clients;
  117.     client_handle_t reset_handle;
  118.     pccard_mem_map cis_mem;
  119.     u_char *cis_virt;
  120.     config_t *config;
  121. #ifdef CONFIG_CARDBUS
  122.     struct resource * cb_cis_res;
  123.     u_char *cb_cis_virt;
  124.     struct cb_config_t *cb_config;
  125. #endif
  126.     struct {
  127. u_int AssignedIRQ;
  128. u_int Config;
  129.     } irq;
  130.     io_window_t io[MAX_IO_WIN];
  131.     window_t win[MAX_WIN];
  132.     region_t *c_region, *a_region;
  133.     erase_busy_t erase_busy;
  134.     int cis_used;
  135.     struct {
  136. u_int addr;
  137. u_short len;
  138. u_short attr;
  139.     } cis_table[MAX_CIS_TABLE];
  140.     char cis_cache[MAX_CIS_DATA];
  141.     u_int fake_cis_len;
  142.     char *fake_cis;
  143. #ifdef CONFIG_PROC_FS
  144.     struct proc_dir_entry *proc;
  145. #endif
  146.     int use_bus_pm;
  147. } socket_info_t;
  148. /* Flags in config state */
  149. #define CONFIG_LOCKED 0x01
  150. #define CONFIG_IRQ_REQ 0x02
  151. #define CONFIG_IO_REQ 0x04
  152. /* Flags in socket state */
  153. #define SOCKET_PRESENT 0x0008
  154. #define SOCKET_SETUP_PENDING 0x0010
  155. #define SOCKET_SHUTDOWN_PENDING 0x0020
  156. #define SOCKET_RESET_PENDING 0x0040
  157. #define SOCKET_SUSPEND 0x0080
  158. #define SOCKET_WIN_REQ(i) (0x0100<<(i))
  159. #define SOCKET_IO_REQ(i) (0x1000<<(i))
  160. #define SOCKET_REGION_INFO 0x4000
  161. #define SOCKET_CARDBUS 0x8000
  162. #define CHECK_HANDLE(h) 
  163.     (((h) == NULL) || ((h)->client_magic != CLIENT_MAGIC))
  164. #define CHECK_SOCKET(s) 
  165.     (((s) >= sockets) || (socket_table[s]->ss_entry == NULL))
  166. #define SOCKET(h) (socket_table[(h)->Socket])
  167. #define CONFIG(h) (&SOCKET(h)->config[(h)->Function])
  168. #define CHECK_REGION(r) 
  169.     (((r) == NULL) || ((r)->region_magic != REGION_MAGIC))
  170. #define CHECK_ERASEQ(q) 
  171.     (((q) == NULL) || ((q)->eraseq_magic != ERASEQ_MAGIC))
  172. #define EVENT(h, e, p) 
  173.     ((h)->event_handler((e), (p), &(h)->event_callback_args))
  174. /* In cardbus.c */
  175. int cb_alloc(socket_info_t *s);
  176. void cb_free(socket_info_t *s);
  177. int cb_config(socket_info_t *s);
  178. void cb_release(socket_info_t *s);
  179. void cb_enable(socket_info_t *s);
  180. void cb_disable(socket_info_t *s);
  181. void read_cb_mem(socket_info_t *s, u_char fn, int space,
  182.  u_int addr, u_int len, void *ptr);
  183. void cb_release_cis_mem(socket_info_t *s);
  184. /* In cistpl.c */
  185. void read_cis_mem(socket_info_t *s, int attr,
  186.   u_int addr, u_int len, void *ptr);
  187. void write_cis_mem(socket_info_t *s, int attr,
  188.    u_int addr, u_int len, void *ptr);
  189. void release_cis_mem(socket_info_t *s);
  190. int verify_cis_cache(socket_info_t *s);
  191. void preload_cis_cache(socket_info_t *s);
  192. int get_first_tuple(client_handle_t handle, tuple_t *tuple);
  193. int get_next_tuple(client_handle_t handle, tuple_t *tuple);
  194. int get_tuple_data(client_handle_t handle, tuple_t *tuple);
  195. int parse_tuple(client_handle_t handle, tuple_t *tuple, cisparse_t *parse);
  196. int validate_cis(client_handle_t handle, cisinfo_t *info);
  197. int replace_cis(client_handle_t handle, cisdump_t *cis);
  198. int read_tuple(client_handle_t handle, cisdata_t code, void *parse);
  199. /* In bulkmem.c */
  200. void retry_erase_list(struct erase_busy_t *list, u_int cause);
  201. int get_first_region(client_handle_t handle, region_info_t *rgn);
  202. int get_next_region(client_handle_t handle, region_info_t *rgn);
  203. int register_mtd(client_handle_t handle, mtd_reg_t *reg);
  204. int register_erase_queue(client_handle_t *handle, eraseq_hdr_t *header);
  205. int deregister_erase_queue(eraseq_handle_t eraseq);
  206. int check_erase_queue(eraseq_handle_t eraseq);
  207. int open_memory(client_handle_t *handle, open_mem_t *open);
  208. int close_memory(memory_handle_t handle);
  209. int read_memory(memory_handle_t handle, mem_op_t *req, caddr_t buf);
  210. int write_memory(memory_handle_t handle, mem_op_t *req, caddr_t buf);
  211. int copy_memory(memory_handle_t handle, copy_op_t *req);
  212. /* In rsrc_mgr */
  213. void validate_mem(int (*is_valid)(u_long), int (*do_cksum)(u_long),
  214.   int force_low, socket_info_t *s);
  215. int find_io_region(ioaddr_t *base, ioaddr_t num, ioaddr_t align,
  216.    char *name, socket_info_t *s);
  217. int find_mem_region(u_long *base, u_long num, u_long align,
  218.     int force_low, char *name, socket_info_t *s);
  219. int try_irq(u_int Attributes, int irq, int specific);
  220. void undo_irq(u_int Attributes, int irq);
  221. int adjust_resource_info(client_handle_t handle, adjust_t *adj);
  222. void release_resource_db(void);
  223. int proc_read_io(char *buf, char **start, off_t pos,
  224.  int count, int *eof, void *data);
  225. int proc_read_mem(char *buf, char **start, off_t pos,
  226.   int count, int *eof, void *data);
  227. void release_mem_resource(unsigned long b, unsigned long n);
  228. #define MAX_SOCK 8
  229. extern socket_t sockets;
  230. extern socket_info_t *socket_table[MAX_SOCK];
  231. #ifdef CONFIG_PROC_FS
  232. extern struct proc_dir_entry *proc_pccard;
  233. #endif
  234. #define PCMCIA_DEBUG 5
  235. #ifdef PCMCIA_DEBUG
  236. extern int pc_debug;
  237. #define DEBUG(n, args...) do { if (pc_debug>(n)) printk(KERN_INFO args); } while (0)
  238. #else
  239. #define DEBUG(n, args...) do { } while (0)
  240. #endif
  241. #endif /* _LINUX_CS_INTERNAL_H */