]>
Commit | Line | Data |
---|---|---|
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 | * <[email protected]>. 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> | |
1ac71e5a | 27 | #include <linux/interrupt.h> |
e2d40963 | 28 | #include <pcmcia/ss.h> |
60063497 | 29 | #include <linux/atomic.h> |
1da177e4 | 30 | |
1ac71e5a | 31 | |
a5835786 DB |
32 | /* |
33 | * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus | |
34 | * a.k.a. PCI drivers | |
35 | */ | |
1da177e4 | 36 | struct pcmcia_socket; |
a5835786 | 37 | struct pcmcia_device; |
dbb22f0d | 38 | struct config_t; |
91284224 | 39 | struct net_device; |
1da177e4 | 40 | |
a5835786 DB |
41 | /* dynamic device IDs for PCMCIA device drivers. See |
42 | * Documentation/pcmcia/driver.txt for details. | |
43 | */ | |
6179b556 | 44 | struct pcmcia_dynids { |
3f565232 | 45 | struct mutex lock; |
6179b556 BW |
46 | struct list_head list; |
47 | }; | |
48 | ||
1da177e4 | 49 | struct pcmcia_driver { |
2e9b981a DB |
50 | const char *name; |
51 | ||
f8cfa618 | 52 | int (*probe) (struct pcmcia_device *dev); |
cc3b4866 DB |
53 | void (*remove) (struct pcmcia_device *dev); |
54 | ||
98e4c28b DB |
55 | int (*suspend) (struct pcmcia_device *dev); |
56 | int (*resume) (struct pcmcia_device *dev); | |
57 | ||
1da177e4 | 58 | struct module *owner; |
e9fb13bf | 59 | const struct pcmcia_device_id *id_table; |
1da177e4 | 60 | struct device_driver drv; |
6179b556 | 61 | struct pcmcia_dynids dynids; |
1da177e4 LT |
62 | }; |
63 | ||
64 | /* driver registration */ | |
65 | int pcmcia_register_driver(struct pcmcia_driver *driver); | |
66 | void pcmcia_unregister_driver(struct pcmcia_driver *driver); | |
67 | ||
6ed7ffdd HS |
68 | /** |
69 | * module_pcmcia_driver() - Helper macro for registering a pcmcia driver | |
70 | * @__pcmcia_driver: pcmcia_driver struct | |
71 | * | |
72 | * Helper macro for pcmcia drivers which do not do anything special in module | |
73 | * init/exit. This eliminates a lot of boilerplate. Each module may only use | |
74 | * this macro once, and calling it replaces module_init() and module_exit(). | |
75 | */ | |
76 | #define module_pcmcia_driver(__pcmcia_driver) \ | |
77 | module_driver(__pcmcia_driver, pcmcia_register_driver, \ | |
78 | pcmcia_unregister_driver) | |
79 | ||
0ca724d3 DB |
80 | /* for struct resource * array embedded in struct pcmcia_device */ |
81 | enum { | |
82 | PCMCIA_IOPORT_0, | |
83 | PCMCIA_IOPORT_1, | |
84 | PCMCIA_IOMEM_0, | |
85 | PCMCIA_IOMEM_1, | |
86 | PCMCIA_IOMEM_2, | |
87 | PCMCIA_IOMEM_3, | |
88 | PCMCIA_NUM_RESOURCES, | |
89 | }; | |
90 | ||
1da177e4 LT |
91 | struct pcmcia_device { |
92 | /* the socket and the device_no [for multifunction devices] | |
93 | uniquely define a pcmcia_device */ | |
94 | struct pcmcia_socket *socket; | |
95 | ||
bd65a685 BG |
96 | char *devname; |
97 | ||
1da177e4 LT |
98 | u8 device_no; |
99 | ||
100 | /* the hardware "function" device; certain subdevices can | |
101 | * share one hardware "function" device. */ | |
102 | u8 func; | |
9fea84f4 | 103 | struct config_t *function_config; |
1da177e4 LT |
104 | |
105 | struct list_head socket_device_list; | |
106 | ||
6f0f38c4 | 107 | /* device setup */ |
eb14120f | 108 | unsigned int irq; |
0ca724d3 | 109 | struct resource *resource[PCMCIA_NUM_RESOURCES]; |
00990e7c | 110 | resource_size_t card_addr; /* for the 1st IOMEM resource */ |
e8405f0f | 111 | unsigned int vpp; |
6f0f38c4 | 112 | |
1ac71e5a | 113 | unsigned int config_flags; /* CONF_ENABLE_ flags below */ |
7feabb64 DB |
114 | unsigned int config_base; |
115 | unsigned int config_index; | |
116 | unsigned int config_regs; /* PRESENT_ flags below */ | |
1ac71e5a | 117 | unsigned int io_lines; /* number of I/O lines */ |
90abdc3b | 118 | |
04de0816 | 119 | /* Is the device suspended? */ |
e2d40963 DB |
120 | u16 suspended:1; |
121 | ||
122 | /* Flags whether io, irq, win configurations were | |
123 | * requested, and whether the configuration is "locked" */ | |
124 | u16 _irq:1; | |
125 | u16 _io:1; | |
126 | u16 _win:4; | |
127 | u16 _locked:1; | |
1da177e4 | 128 | |
e2d40963 DB |
129 | /* Flag whether a "fuzzy" func_id based match is |
130 | * allowed. */ | |
131 | u16 allow_func_id_match:1; | |
f6fbe01a | 132 | |
1da177e4 | 133 | /* information about this device */ |
e2d40963 DB |
134 | u16 has_manf_id:1; |
135 | u16 has_card_id:1; | |
136 | u16 has_func_id:1; | |
1ad275e3 | 137 | |
04de0816 | 138 | u16 reserved:4; |
1da177e4 LT |
139 | |
140 | u8 func_id; | |
141 | u16 manf_id; | |
142 | u16 card_id; | |
143 | ||
9fea84f4 | 144 | char *prod_id[4]; |
1da177e4 | 145 | |
43d9f7fd | 146 | u64 dma_mask; |
0e0fad8f DB |
147 | struct device dev; |
148 | ||
e2d40963 DB |
149 | /* data private to drivers */ |
150 | void *priv; | |
2ce4905e | 151 | unsigned int open; |
1da177e4 LT |
152 | }; |
153 | ||
154 | #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev) | |
155 | #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv) | |
156 | ||
a5835786 | 157 | |
91284224 DB |
158 | /* |
159 | * CIS access. | |
160 | * | |
161 | * Please use the following functions to access CIS tuples: | |
162 | * - pcmcia_get_tuple() | |
163 | * - pcmcia_loop_tuple() | |
164 | * - pcmcia_get_mac_from_cis() | |
165 | * | |
166 | * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface | |
167 | * might change in future. | |
272433e0 | 168 | */ |
272433e0 | 169 | |
91284224 DB |
170 | /* get the very first CIS entry of type @code. Note that buf is pointer |
171 | * to u8 *buf; and that you need to kfree(buf) afterwards. */ | |
172 | size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code, | |
173 | u8 **buf); | |
272433e0 | 174 | |
91284224 DB |
175 | /* loop over CIS entries */ |
176 | int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code, | |
177 | int (*loop_tuple) (struct pcmcia_device *p_dev, | |
178 | tuple_t *tuple, | |
179 | void *priv_data), | |
180 | void *priv_data); | |
272433e0 | 181 | |
91284224 DB |
182 | /* get the MAC address from CISTPL_FUNCE */ |
183 | int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev, | |
184 | struct net_device *dev); | |
272433e0 DB |
185 | |
186 | ||
91284224 DB |
187 | /* parse a tuple_t */ |
188 | int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse); | |
189 | ||
272433e0 DB |
190 | /* loop CIS entries for valid configuration */ |
191 | int pcmcia_loop_config(struct pcmcia_device *p_dev, | |
192 | int (*conf_check) (struct pcmcia_device *p_dev, | |
272433e0 DB |
193 | void *priv_data), |
194 | void *priv_data); | |
1da177e4 | 195 | |
994917f8 DB |
196 | /* is the device still there? */ |
197 | struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev); | |
198 | ||
199 | /* low-level interface reset */ | |
200 | int pcmcia_reset_card(struct pcmcia_socket *skt); | |
201 | ||
202 | /* CIS config */ | |
1d5cc192 DB |
203 | int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val); |
204 | int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val); | |
994917f8 DB |
205 | |
206 | /* device configuration */ | |
90abdc3b | 207 | int pcmcia_request_io(struct pcmcia_device *p_dev); |
eb14120f | 208 | |
b19a7275 DB |
209 | int __must_check |
210 | __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, | |
eb14120f | 211 | irq_handler_t handler); |
b19a7275 DB |
212 | static inline __must_check __deprecated int |
213 | pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev, | |
214 | irq_handler_t handler) | |
215 | { | |
216 | return __pcmcia_request_exclusive_irq(p_dev, handler); | |
217 | } | |
218 | ||
eb14120f DB |
219 | int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev, |
220 | irq_handler_t handler); | |
221 | ||
1ac71e5a | 222 | int pcmcia_enable_device(struct pcmcia_device *p_dev); |
994917f8 | 223 | |
cdb13808 DB |
224 | int pcmcia_request_window(struct pcmcia_device *p_dev, struct resource *res, |
225 | unsigned int speed); | |
226 | int pcmcia_release_window(struct pcmcia_device *p_dev, struct resource *res); | |
227 | int pcmcia_map_mem_page(struct pcmcia_device *p_dev, struct resource *res, | |
b5cb259e | 228 | unsigned int offset); |
994917f8 | 229 | |
fb49fa53 DB |
230 | int pcmcia_fixup_vpp(struct pcmcia_device *p_dev, unsigned char new_vpp); |
231 | int pcmcia_fixup_iowidth(struct pcmcia_device *p_dev); | |
232 | ||
994917f8 DB |
233 | void pcmcia_disable_device(struct pcmcia_device *p_dev); |
234 | ||
90abdc3b DB |
235 | /* IO ports */ |
236 | #define IO_DATA_PATH_WIDTH 0x18 | |
237 | #define IO_DATA_PATH_WIDTH_8 0x00 | |
238 | #define IO_DATA_PATH_WIDTH_16 0x08 | |
239 | #define IO_DATA_PATH_WIDTH_AUTO 0x10 | |
240 | ||
cdb13808 DB |
241 | /* IO memory */ |
242 | #define WIN_MEMORY_TYPE_CM 0x00 /* default */ | |
243 | #define WIN_MEMORY_TYPE_AM 0x20 /* MAP_ATTRIB */ | |
244 | #define WIN_DATA_WIDTH_8 0x00 /* default */ | |
245 | #define WIN_DATA_WIDTH_16 0x02 /* MAP_16BIT */ | |
246 | #define WIN_ENABLE 0x01 /* MAP_ACTIVE */ | |
247 | #define WIN_USE_WAIT 0x40 /* MAP_USE_WAIT */ | |
248 | ||
249 | #define WIN_FLAGS_MAP 0x63 /* MAP_ATTRIB | MAP_16BIT | MAP_ACTIVE | | |
250 | MAP_USE_WAIT */ | |
251 | #define WIN_FLAGS_REQ 0x1c /* mapping to socket->win[i]: | |
252 | 0x04 -> 0 | |
253 | 0x08 -> 1 | |
254 | 0x0c -> 2 | |
255 | 0x10 -> 3 */ | |
256 | ||
7feabb64 DB |
257 | /* config_reg{ister}s present for this PCMCIA device */ |
258 | #define PRESENT_OPTION 0x001 | |
259 | #define PRESENT_STATUS 0x002 | |
260 | #define PRESENT_PIN_REPLACE 0x004 | |
261 | #define PRESENT_COPY 0x008 | |
262 | #define PRESENT_EXT_STATUS 0x010 | |
263 | #define PRESENT_IOBASE_0 0x020 | |
264 | #define PRESENT_IOBASE_1 0x040 | |
265 | #define PRESENT_IOBASE_2 0x080 | |
266 | #define PRESENT_IOBASE_3 0x100 | |
267 | #define PRESENT_IOSIZE 0x200 | |
cdb13808 | 268 | |
1ac71e5a | 269 | /* flags to be passed to pcmcia_enable_device() */ |
00990e7c DB |
270 | #define CONF_ENABLE_IRQ 0x0001 |
271 | #define CONF_ENABLE_SPKR 0x0002 | |
272 | #define CONF_ENABLE_PULSE_IRQ 0x0004 | |
273 | #define CONF_ENABLE_ESR 0x0008 | |
ff10fca5 DB |
274 | #define CONF_ENABLE_IOCARD 0x0010 /* auto-enabled if IO resources or IRQ |
275 | * (CONF_ENABLE_IRQ) in use */ | |
33619f0d | 276 | #define CONF_ENABLE_ZVCARD 0x0020 |
1ac71e5a | 277 | |
440eed43 | 278 | /* flags used by pcmcia_loop_config() autoconfiguration */ |
00990e7c DB |
279 | #define CONF_AUTO_CHECK_VCC 0x0100 /* check for matching Vcc? */ |
280 | #define CONF_AUTO_SET_VPP 0x0200 /* set Vpp? */ | |
281 | #define CONF_AUTO_AUDIO 0x0400 /* enable audio line? */ | |
282 | #define CONF_AUTO_SET_IO 0x0800 /* set ->resource[0,1] */ | |
283 | #define CONF_AUTO_SET_IOMEM 0x1000 /* set ->resource[2] */ | |
440eed43 | 284 | |
1da177e4 | 285 | #endif /* __KERNEL__ */ |
a5835786 | 286 | |
1da177e4 | 287 | #endif /* _LINUX_DS_H */ |