aboutsummaryrefslogtreecommitdiffstats
path: root/include/pcmcia/ds.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pcmcia/ds.h')
-rw-r--r--include/pcmcia/ds.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/pcmcia/ds.h b/include/pcmcia/ds.h
index 6137fbc34abd..bc28f96d0b5a 100644
--- a/include/pcmcia/ds.h
+++ b/include/pcmcia/ds.h
@@ -97,6 +97,9 @@ struct pcmcia_device {
97 unsigned int vpp; 97 unsigned int vpp;
98 98
99 unsigned int io_lines; /* number of I/O lines */ 99 unsigned int io_lines; /* number of I/O lines */
100 unsigned int config_base;
101 unsigned int config_index;
102 unsigned int config_regs; /* PRESENT_ flags below */
100 103
101 /* Is the device suspended? */ 104 /* Is the device suspended? */
102 u16 suspended:1; 105 u16 suspended:1;
@@ -250,6 +253,17 @@ static inline int pcmcia_io_cfg_data_width(unsigned int flags)
250 0x0c -> 2 253 0x0c -> 2
251 0x10 -> 3 */ 254 0x10 -> 3 */
252 255
256/* config_reg{ister}s present for this PCMCIA device */
257#define PRESENT_OPTION 0x001
258#define PRESENT_STATUS 0x002
259#define PRESENT_PIN_REPLACE 0x004
260#define PRESENT_COPY 0x008
261#define PRESENT_EXT_STATUS 0x010
262#define PRESENT_IOBASE_0 0x020
263#define PRESENT_IOBASE_1 0x040
264#define PRESENT_IOBASE_2 0x080
265#define PRESENT_IOBASE_3 0x100
266#define PRESENT_IOSIZE 0x200
253 267
254#endif /* __KERNEL__ */ 268#endif /* __KERNEL__ */
255 269