aboutsummaryrefslogtreecommitdiffstats
path: root/include/pcmcia
diff options
context:
space:
mode:
Diffstat (limited to 'include/pcmcia')
-rw-r--r--include/pcmcia/cs.h15
-rw-r--r--include/pcmcia/ds.h14
2 files changed, 14 insertions, 15 deletions
diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h
index 674edbc9ebef..47b6092c4ed6 100644
--- a/include/pcmcia/cs.h
+++ b/include/pcmcia/cs.h
@@ -22,9 +22,6 @@
22/* For RequestConfiguration */ 22/* For RequestConfiguration */
23typedef struct config_req_t { 23typedef struct config_req_t {
24 u_int Attributes; 24 u_int Attributes;
25 u_int ConfigBase;
26 u_char ConfigIndex;
27 u_int Present;
28} config_req_t; 25} config_req_t;
29 26
30/* Attributes for RequestConfiguration */ 27/* Attributes for RequestConfiguration */
@@ -35,16 +32,4 @@ typedef struct config_req_t {
35#define CONF_ENABLE_ESR 0x10 32#define CONF_ENABLE_ESR 0x10
36#define CONF_VALID_CLIENT 0x100 33#define CONF_VALID_CLIENT 0x100
37 34
38/* Configuration registers present */
39#define PRESENT_OPTION 0x001
40#define PRESENT_STATUS 0x002
41#define PRESENT_PIN_REPLACE 0x004
42#define PRESENT_COPY 0x008
43#define PRESENT_EXT_STATUS 0x010
44#define PRESENT_IOBASE_0 0x020
45#define PRESENT_IOBASE_1 0x040
46#define PRESENT_IOBASE_2 0x080
47#define PRESENT_IOBASE_3 0x100
48#define PRESENT_IOSIZE 0x200
49
50#endif /* _LINUX_CS_H */ 35#endif /* _LINUX_CS_H */
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