pcmcia: simplify IntType
[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
a5835786
DB
39/* dynamic device IDs for PCMCIA device drivers. See
40 * Documentation/pcmcia/driver.txt for details.
41*/
6179b556 42struct pcmcia_dynids {
3f565232 43 struct mutex lock;
6179b556
BW
44 struct list_head list;
45};
46
1da177e4 47struct pcmcia_driver {
f8cfa618 48 int (*probe) (struct pcmcia_device *dev);
cc3b4866
DB
49 void (*remove) (struct pcmcia_device *dev);
50
98e4c28b
DB
51 int (*suspend) (struct pcmcia_device *dev);
52 int (*resume) (struct pcmcia_device *dev);
53
1da177e4 54 struct module *owner;
1ad275e3 55 struct pcmcia_device_id *id_table;
1da177e4 56 struct device_driver drv;
6179b556 57 struct pcmcia_dynids dynids;
1da177e4
LT
58};
59
60/* driver registration */
61int pcmcia_register_driver(struct pcmcia_driver *driver);
62void pcmcia_unregister_driver(struct pcmcia_driver *driver);
63
0ca724d3
DB
64/* for struct resource * array embedded in struct pcmcia_device */
65enum {
66 PCMCIA_IOPORT_0,
67 PCMCIA_IOPORT_1,
68 PCMCIA_IOMEM_0,
69 PCMCIA_IOMEM_1,
70 PCMCIA_IOMEM_2,
71 PCMCIA_IOMEM_3,
72 PCMCIA_NUM_RESOURCES,
73};
74
1da177e4
LT
75struct pcmcia_device {
76 /* the socket and the device_no [for multifunction devices]
77 uniquely define a pcmcia_device */
78 struct pcmcia_socket *socket;
79
bd65a685
BG
80 char *devname;
81
1da177e4
LT
82 u8 device_no;
83
84 /* the hardware "function" device; certain subdevices can
85 * share one hardware "function" device. */
86 u8 func;
9fea84f4 87 struct config_t *function_config;
1da177e4
LT
88
89 struct list_head socket_device_list;
90
fd238232 91 /* deprecated, will be cleaned up soon */
fd238232 92 config_req_t conf;
fd238232 93
6f0f38c4 94 /* device setup */
eb14120f 95 unsigned int irq;
0ca724d3 96 struct resource *resource[PCMCIA_NUM_RESOURCES];
e8405f0f 97 unsigned int vpp;
6f0f38c4 98
90abdc3b
DB
99 unsigned int io_lines; /* number of I/O lines */
100
04de0816 101 /* Is the device suspended? */
e2d40963
DB
102 u16 suspended:1;
103
104 /* Flags whether io, irq, win configurations were
105 * requested, and whether the configuration is "locked" */
106 u16 _irq:1;
107 u16 _io:1;
108 u16 _win:4;
109 u16 _locked:1;
1da177e4 110
e2d40963
DB
111 /* Flag whether a "fuzzy" func_id based match is
112 * allowed. */
113 u16 allow_func_id_match:1;
f6fbe01a 114
1da177e4 115 /* information about this device */
e2d40963
DB
116 u16 has_manf_id:1;
117 u16 has_card_id:1;
118 u16 has_func_id:1;
1ad275e3 119
04de0816 120 u16 reserved:4;
1da177e4
LT
121
122 u8 func_id;
123 u16 manf_id;
124 u16 card_id;
125
9fea84f4 126 char *prod_id[4];
1da177e4 127
43d9f7fd 128 u64 dma_mask;
0e0fad8f
DB
129 struct device dev;
130
e2d40963
DB
131 /* data private to drivers */
132 void *priv;
2ce4905e 133 unsigned int open;
1da177e4
LT
134};
135
136#define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
137#define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
138
a5835786 139
91284224
DB
140/*
141 * CIS access.
142 *
143 * Please use the following functions to access CIS tuples:
144 * - pcmcia_get_tuple()
145 * - pcmcia_loop_tuple()
146 * - pcmcia_get_mac_from_cis()
147 *
148 * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
149 * might change in future.
272433e0 150 */
272433e0 151
91284224
DB
152/* get the very first CIS entry of type @code. Note that buf is pointer
153 * to u8 *buf; and that you need to kfree(buf) afterwards. */
154size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
155 u8 **buf);
272433e0 156
91284224
DB
157/* loop over CIS entries */
158int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
159 int (*loop_tuple) (struct pcmcia_device *p_dev,
160 tuple_t *tuple,
161 void *priv_data),
162 void *priv_data);
272433e0 163
91284224
DB
164/* get the MAC address from CISTPL_FUNCE */
165int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev,
166 struct net_device *dev);
272433e0
DB
167
168
91284224
DB
169/* parse a tuple_t */
170int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
171
272433e0
DB
172/* loop CIS entries for valid configuration */
173int pcmcia_loop_config(struct pcmcia_device *p_dev,
174 int (*conf_check) (struct pcmcia_device *p_dev,
175 cistpl_cftable_entry_t *cf,
176 cistpl_cftable_entry_t *dflt,
177 unsigned int vcc,
178 void *priv_data),
179 void *priv_data);
1da177e4 180
994917f8
DB
181/* is the device still there? */
182struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
183
184/* low-level interface reset */
185int pcmcia_reset_card(struct pcmcia_socket *skt);
186
187/* CIS config */
1d5cc192
DB
188int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val);
189int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val);
994917f8
DB
190
191/* device configuration */
90abdc3b 192int pcmcia_request_io(struct pcmcia_device *p_dev);
eb14120f 193
b19a7275
DB
194int __must_check
195__pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
eb14120f 196 irq_handler_t handler);
b19a7275
DB
197static inline __must_check __deprecated int
198pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
199 irq_handler_t handler)
200{
201 return __pcmcia_request_exclusive_irq(p_dev, handler);
202}
203
eb14120f
DB
204int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
205 irq_handler_t handler);
206
994917f8
DB
207int pcmcia_request_configuration(struct pcmcia_device *p_dev,
208 config_req_t *req);
209
cdb13808
DB
210int pcmcia_request_window(struct pcmcia_device *p_dev, struct resource *res,
211 unsigned int speed);
212int pcmcia_release_window(struct pcmcia_device *p_dev, struct resource *res);
213int pcmcia_map_mem_page(struct pcmcia_device *p_dev, struct resource *res,
b5cb259e 214 unsigned int offset);
994917f8 215
fb49fa53
DB
216int pcmcia_fixup_vpp(struct pcmcia_device *p_dev, unsigned char new_vpp);
217int pcmcia_fixup_iowidth(struct pcmcia_device *p_dev);
218
994917f8
DB
219void pcmcia_disable_device(struct pcmcia_device *p_dev);
220
90abdc3b
DB
221/* IO ports */
222#define IO_DATA_PATH_WIDTH 0x18
223#define IO_DATA_PATH_WIDTH_8 0x00
224#define IO_DATA_PATH_WIDTH_16 0x08
225#define IO_DATA_PATH_WIDTH_AUTO 0x10
226
227/* convert flag found in cfgtable to data path width parameter */
228static inline int pcmcia_io_cfg_data_width(unsigned int flags)
229{
230 if (!(flags & CISTPL_IO_8BIT))
231 return IO_DATA_PATH_WIDTH_16;
232 if (!(flags & CISTPL_IO_16BIT))
233 return IO_DATA_PATH_WIDTH_8;
234 return IO_DATA_PATH_WIDTH_AUTO;
235}
236
cdb13808
DB
237/* IO memory */
238#define WIN_MEMORY_TYPE_CM 0x00 /* default */
239#define WIN_MEMORY_TYPE_AM 0x20 /* MAP_ATTRIB */
240#define WIN_DATA_WIDTH_8 0x00 /* default */
241#define WIN_DATA_WIDTH_16 0x02 /* MAP_16BIT */
242#define WIN_ENABLE 0x01 /* MAP_ACTIVE */
243#define WIN_USE_WAIT 0x40 /* MAP_USE_WAIT */
244
245#define WIN_FLAGS_MAP 0x63 /* MAP_ATTRIB | MAP_16BIT | MAP_ACTIVE |
246 MAP_USE_WAIT */
247#define WIN_FLAGS_REQ 0x1c /* mapping to socket->win[i]:
248 0x04 -> 0
249 0x08 -> 1
250 0x0c -> 2
251 0x10 -> 3 */
252
253
1da177e4 254#endif /* __KERNEL__ */
a5835786 255
1da177e4 256#endif /* _LINUX_DS_H */
This page took 0.469586 seconds and 5 git commands to generate.