pcmcia: use autoconfiguration feature for ioports and iomem
[pandora-kernel.git] / include / pcmcia / ds.h
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
13  * (C) 2003 - 2008      Dominik Brodowski
14  */
15
16 #ifndef _LINUX_DS_H
17 #define _LINUX_DS_H
18
19 #ifdef __KERNEL__
20 #include <linux/mod_devicetable.h>
21 #endif
22
23 #include <pcmcia/device_id.h>
24
25 #ifdef __KERNEL__
26 #include <linux/device.h>
27 #include <linux/interrupt.h>
28 #include <pcmcia/ss.h>
29 #include <asm/atomic.h>
30
31
32 /*
33  * PCMCIA device drivers (16-bit cards only; 32-bit cards require CardBus
34  * a.k.a. PCI drivers
35  */
36 struct pcmcia_socket;
37 struct pcmcia_device;
38 struct config_t;
39 struct net_device;
40
41 /* dynamic device IDs for PCMCIA device drivers. See
42  * Documentation/pcmcia/driver.txt for details.
43 */
44 struct pcmcia_dynids {
45         struct mutex            lock;
46         struct list_head        list;
47 };
48
49 struct pcmcia_driver {
50         int (*probe)            (struct pcmcia_device *dev);
51         void (*remove)          (struct pcmcia_device *dev);
52
53         int (*suspend)          (struct pcmcia_device *dev);
54         int (*resume)           (struct pcmcia_device *dev);
55
56         struct module           *owner;
57         struct pcmcia_device_id *id_table;
58         struct device_driver    drv;
59         struct pcmcia_dynids    dynids;
60 };
61
62 /* driver registration */
63 int pcmcia_register_driver(struct pcmcia_driver *driver);
64 void pcmcia_unregister_driver(struct pcmcia_driver *driver);
65
66 /* for struct resource * array embedded in struct pcmcia_device */
67 enum {
68         PCMCIA_IOPORT_0,
69         PCMCIA_IOPORT_1,
70         PCMCIA_IOMEM_0,
71         PCMCIA_IOMEM_1,
72         PCMCIA_IOMEM_2,
73         PCMCIA_IOMEM_3,
74         PCMCIA_NUM_RESOURCES,
75 };
76
77 struct pcmcia_device {
78         /* the socket and the device_no [for multifunction devices]
79            uniquely define a pcmcia_device */
80         struct pcmcia_socket    *socket;
81
82         char                    *devname;
83
84         u8                      device_no;
85
86         /* the hardware "function" device; certain subdevices can
87          * share one hardware "function" device. */
88         u8                      func;
89         struct config_t         *function_config;
90
91         struct list_head        socket_device_list;
92
93         /* device setup */
94         unsigned int            irq;
95         struct resource         *resource[PCMCIA_NUM_RESOURCES];
96         resource_size_t         card_addr;      /* for the 1st IOMEM resource */
97         unsigned int            vpp;
98
99         unsigned int            config_flags;   /* CONF_ENABLE_ flags below */
100         unsigned int            config_base;
101         unsigned int            config_index;
102         unsigned int            config_regs;    /* PRESENT_ flags below */
103         unsigned int            io_lines;       /* number of I/O lines */
104
105         /* Is the device suspended? */
106         u16                     suspended:1;
107
108         /* Flags whether io, irq, win configurations were
109          * requested, and whether the configuration is "locked" */
110         u16                     _irq:1;
111         u16                     _io:1;
112         u16                     _win:4;
113         u16                     _locked:1;
114
115         /* Flag whether a "fuzzy" func_id based match is
116          * allowed. */
117         u16                     allow_func_id_match:1;
118
119         /* information about this device */
120         u16                     has_manf_id:1;
121         u16                     has_card_id:1;
122         u16                     has_func_id:1;
123
124         u16                     reserved:4;
125
126         u8                      func_id;
127         u16                     manf_id;
128         u16                     card_id;
129
130         char                    *prod_id[4];
131
132         u64                     dma_mask;
133         struct device           dev;
134
135         /* data private to drivers */
136         void                    *priv;
137         unsigned int            open;
138 };
139
140 #define to_pcmcia_dev(n) container_of(n, struct pcmcia_device, dev)
141 #define to_pcmcia_drv(n) container_of(n, struct pcmcia_driver, drv)
142
143
144 /*
145  * CIS access.
146  *
147  * Please use the following functions to access CIS tuples:
148  * - pcmcia_get_tuple()
149  * - pcmcia_loop_tuple()
150  * - pcmcia_get_mac_from_cis()
151  *
152  * To parse a tuple_t, pcmcia_parse_tuple() exists. Its interface
153  * might change in future.
154  */
155
156 /* get the very first CIS entry of type @code. Note that buf is pointer
157  * to u8 *buf; and that you need to kfree(buf) afterwards. */
158 size_t pcmcia_get_tuple(struct pcmcia_device *p_dev, cisdata_t code,
159                         u8 **buf);
160
161 /* loop over CIS entries */
162 int pcmcia_loop_tuple(struct pcmcia_device *p_dev, cisdata_t code,
163                       int (*loop_tuple) (struct pcmcia_device *p_dev,
164                                          tuple_t *tuple,
165                                          void *priv_data),
166                       void *priv_data);
167
168 /* get the MAC address from CISTPL_FUNCE */
169 int pcmcia_get_mac_from_cis(struct pcmcia_device *p_dev,
170                             struct net_device *dev);
171
172
173 /* parse a tuple_t */
174 int pcmcia_parse_tuple(tuple_t *tuple, cisparse_t *parse);
175
176 /* loop CIS entries for valid configuration */
177 int pcmcia_loop_config(struct pcmcia_device *p_dev,
178                        int      (*conf_check)   (struct pcmcia_device *p_dev,
179                                                  void *priv_data),
180                        void *priv_data);
181
182 /* is the device still there? */
183 struct pcmcia_device *pcmcia_dev_present(struct pcmcia_device *p_dev);
184
185 /* low-level interface reset */
186 int pcmcia_reset_card(struct pcmcia_socket *skt);
187
188 /* CIS config */
189 int pcmcia_read_config_byte(struct pcmcia_device *p_dev, off_t where, u8 *val);
190 int pcmcia_write_config_byte(struct pcmcia_device *p_dev, off_t where, u8 val);
191
192 /* device configuration */
193 int pcmcia_request_io(struct pcmcia_device *p_dev);
194
195 int __must_check
196 __pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
197                                 irq_handler_t handler);
198 static inline __must_check __deprecated int
199 pcmcia_request_exclusive_irq(struct pcmcia_device *p_dev,
200                                 irq_handler_t handler)
201 {
202         return __pcmcia_request_exclusive_irq(p_dev, handler);
203 }
204
205 int __must_check pcmcia_request_irq(struct pcmcia_device *p_dev,
206                                 irq_handler_t handler);
207
208 int pcmcia_enable_device(struct pcmcia_device *p_dev);
209
210 int pcmcia_request_window(struct pcmcia_device *p_dev, struct resource *res,
211                         unsigned int speed);
212 int pcmcia_release_window(struct pcmcia_device *p_dev, struct resource *res);
213 int pcmcia_map_mem_page(struct pcmcia_device *p_dev, struct resource *res,
214                         unsigned int offset);
215
216 int pcmcia_fixup_vpp(struct pcmcia_device *p_dev, unsigned char new_vpp);
217 int pcmcia_fixup_iowidth(struct pcmcia_device *p_dev);
218
219 void pcmcia_disable_device(struct pcmcia_device *p_dev);
220
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 /* IO memory */
228 #define WIN_MEMORY_TYPE_CM      0x00 /* default */
229 #define WIN_MEMORY_TYPE_AM      0x20 /* MAP_ATTRIB */
230 #define WIN_DATA_WIDTH_8        0x00 /* default */
231 #define WIN_DATA_WIDTH_16       0x02 /* MAP_16BIT */
232 #define WIN_ENABLE              0x01 /* MAP_ACTIVE */
233 #define WIN_USE_WAIT            0x40 /* MAP_USE_WAIT */
234
235 #define WIN_FLAGS_MAP           0x63 /* MAP_ATTRIB | MAP_16BIT | MAP_ACTIVE |
236                                         MAP_USE_WAIT */
237 #define WIN_FLAGS_REQ           0x1c /* mapping to socket->win[i]:
238                                         0x04 -> 0
239                                         0x08 -> 1
240                                         0x0c -> 2
241                                         0x10 -> 3 */
242
243 /* config_reg{ister}s present for this PCMCIA device */
244 #define PRESENT_OPTION          0x001
245 #define PRESENT_STATUS          0x002
246 #define PRESENT_PIN_REPLACE     0x004
247 #define PRESENT_COPY            0x008
248 #define PRESENT_EXT_STATUS      0x010
249 #define PRESENT_IOBASE_0        0x020
250 #define PRESENT_IOBASE_1        0x040
251 #define PRESENT_IOBASE_2        0x080
252 #define PRESENT_IOBASE_3        0x100
253 #define PRESENT_IOSIZE          0x200
254
255 /* flags to be passed to pcmcia_enable_device() */
256 #define CONF_ENABLE_IRQ         0x0001
257 #define CONF_ENABLE_SPKR        0x0002
258 #define CONF_ENABLE_PULSE_IRQ   0x0004
259 #define CONF_ENABLE_ESR         0x0008
260
261 /* flags used by pcmcia_loop_config() autoconfiguration */
262 #define CONF_AUTO_CHECK_VCC     0x0100 /* check for matching Vcc? */
263 #define CONF_AUTO_SET_VPP       0x0200 /* set Vpp? */
264 #define CONF_AUTO_AUDIO         0x0400 /* enable audio line? */
265 #define CONF_AUTO_SET_IO        0x0800 /* set ->resource[0,1] */
266 #define CONF_AUTO_SET_IOMEM     0x1000 /* set ->resource[2] */
267
268 #endif /* __KERNEL__ */
269
270 #endif /* _LINUX_DS_H */