pcmcia: do not use io_req_t after call to pcmcia_request_io()
[deliverable/linux.git] / include / pcmcia / ds.h
CommitLineData
1da177e4
LT
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
a5835786 13 * (C) 2003 - 2008 Dominik Brodowski
1da177e4
LT
14 */
15
16#ifndef _LINUX_DS_H
17#define _LINUX_DS_H
18
8e2f3b70
DB
19#ifdef __KERNEL__
20#include <linux/mod_devicetable.h>
21#endif
22
1ad275e3 23#include <pcmcia/device_id.h>
1da177e4 24
1da177e4
LT
25#ifdef __KERNEL__
26#include <linux/device.h>
e2d40963 27#include <pcmcia/ss.h>
04de0816 28#include <asm/atomic.h>
1da177e4 29
a5835786
DB
30/*
31 * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
32 * a.k.a. PCI drivers
33 */
1da177e4 34struct pcmcia_socket;
a5835786 35struct pcmcia_device;
dbb22f0d 36struct config_t;
91284224 37struct net_device;
1da177e4 38
ac8b4228
DB
39typedef unsigned long window_handle_t;
40
a5835786
DB
41/* dynamic device IDs for PCMCIA device drivers. See
42 * Documentation/pcmcia/driver.txt for details.
43*/
6179b556 44struct pcmcia_dynids {
3f565232 45 struct mutex lock;
6179b556
BW
46 struct list_head list;
47};
48
1da177e4 49struct pcmcia_driver {
f8cfa618 50 int (*probe) (struct pcmcia_device *dev);
cc3b4866
DB
51 void (*remove) (struct pcmcia_device *dev);
52
98e4c28b
DB
53 int (*suspend) (struct pcmcia_device *dev);
54 int (*resume) (struct pcmcia_device *dev);
55
1da177e4 56 struct module *owner;
1ad275e3 57 struct pcmcia_device_id *id_table;
1da177e4 58 struct device_driver drv;
6179b556 59 struct pcmcia_dynids dynids;
1da177e4
LT
60};
61
62/* driver registration */
63int pcmcia_register_driver(struct pcmcia_driver *driver);
64void pcmcia_unregister_driver(struct pcmcia_driver *driver);
65
66struct pcmcia_device {
67 /* the socket and the device_no [for multifunction devices]
68 uniquely define a pcmcia_device */
69 struct pcmcia_socket *socket;
70
bd65a685
BG
71 char *devname;
72
1da177e4
LT
73 u8 device_no;
74
75 /* the hardware "function" device; certain subdevices can
76 * share one hardware "function" device. */
77 u8 func;
9fea84f4 78 struct config_t *function_config;
1da177e4
LT
79
80 struct list_head socket_device_list;
81
fd238232 82 /* deprecated, will be cleaned up soon */
fd238232 83 io_req_t io;
fd238232
DB
84 config_req_t conf;
85 window_handle_t win;
fd238232 86
6f0f38c4 87 /* device setup */
eb14120f 88 unsigned int irq;
2ce4905e 89 struct resource *resource[MAX_IO_WIN];
6f0f38c4 90
04de0816 91 /* Is the device suspended? */
e2d40963
DB
92 u16 suspended:1;
93
94 /* Flags whether io, irq, win configurations were
95 * requested, and whether the configuration is "locked" */
96 u16 _irq:1;
97 u16 _io:1;
98 u16 _win:4;
99 u16 _locked:1;
1da177e4 100
e2d40963
DB
101 /* Flag whether a "fuzzy" func_id based match is
102 * allowed. */
103 u16 allow_func_id_match:1;
f6fbe01a 104
1da177e4 105 /* information about this device */
e2d40963
DB
106 u16 has_manf_id:1;
107 u16 has_card_id:1;
108 u16 has_func_id:1;
1ad275e3 109
04de0816 110 u16 reserved:4;
1da177e4
LT
111
112 u8 func_id;
113 u16 manf_id;
114 u16 card_id;
115
9fea84f4 116 char *prod_id[4];
1da177e4 117
43d9f7fd 118 u64 dma_mask;
0e0fad8f
DB
119 struct device dev;
120
e2d40963
DB
121 /* data private to drivers */
122 void *priv;
2ce4905e 123 unsigned int open;
1da177e4
LT
124};
125
126#define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
127#define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
128
a5835786 129
91284224
DB
130/*
131 * CIS access.
132 *
133 * Please use the following functions to access CIS tuples:
134 * - pcmcia_get_tuple()
135 * - pcmcia_loop_tuple()
136 * - pcmcia_get_mac_from_cis()
137 *
138 * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
139 * might change in future.
272433e0 140 */
272433e0 141
91284224
DB
142/* get the very first CIS entry of type @code. Note that buf is pointer
143 * to u8 *buf; and that you need to kfree(buf) afterwards. */
144size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
145 u8 **buf);
272433e0 146
91284224
DB
147/* loop over CIS entries */
148int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
149 int (*loop_tuple) (struct pcmcia_device *p_dev,
150 tuple_t *tuple,
151 void *priv_data),
152 void *priv_data);
272433e0 153
91284224
DB
154/* get the MAC address from CISTPL_FUNCE */
155int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev,
156 struct net_device *dev);
272433e0
DB
157
158
91284224
DB
159/* parse a tuple_t */
160int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
161
272433e0
DB
162/* loop CIS entries for valid configuration */
163int pcmcia_loop_config(struct pcmcia_device *p_dev,
164 int (*conf_check) (struct pcmcia_device *p_dev,
165 cistpl_cftable_entry_t *cf,
166 cistpl_cftable_entry_t *dflt,
167 unsigned int vcc,
168 void *priv_data),
169 void *priv_data);
1da177e4 170
994917f8
DB
171/* is the device still there? */
172struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
173
174/* low-level interface reset */
175int pcmcia_reset_card(struct pcmcia_socket *skt);
176
177/* CIS config */
1d5cc192
DB
178int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val);
179int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val);
994917f8
DB
180
181/* device configuration */
182int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req);
eb14120f 183
b19a7275
DB
184int __must_check
185__pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
eb14120f 186 irq_handler_t handler);
b19a7275
DB
187static inline __must_check __deprecated int
188pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
189 irq_handler_t handler)
190{
191 return __pcmcia_request_exclusive_irq(p_dev, handler);
192}
193
eb14120f
DB
194int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
195 irq_handler_t handler);
196
994917f8
DB
197int pcmcia_request_configuration(struct pcmcia_device *p_dev,
198 config_req_t *req);
199
6838b03f 200int pcmcia_request_window(struct pcmcia_device *p_dev, win_req_t *req,
994917f8 201 window_handle_t *wh);
f5560da5 202int pcmcia_release_window(struct pcmcia_device *p_dev, window_handle_t win);
868575d1
MD
203int pcmcia_map_mem_page(struct pcmcia_device *p_dev, window_handle_t win,
204 memreq_t *req);
994917f8
DB
205
206int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod);
207void pcmcia_disable_device(struct pcmcia_device *p_dev);
208
1da177e4 209#endif /* __KERNEL__ */
a5835786 210
1da177e4 211#endif /* _LINUX_DS_H */
This page took 0.6823 seconds and 5 git commands to generate.