e656abee1741e8c181f27e1fc977648b5134530d
[linux-2.6-microblaze.git] / include / pcmcia / cs.h
1 /*
2  * cs.h
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  */
14
15 #ifndef _LINUX_CS_H
16 #define _LINUX_CS_H
17
18 #ifdef __KERNEL__
19 #include <linux/interrupt.h>
20 #endif
21
22 /* For RequestConfiguration */
23 typedef struct config_req_t {
24     u_int       Attributes;
25     u_int       IntType;
26     u_int       ConfigBase;
27     u_char      Status, ExtStatus;
28     u_char      ConfigIndex;
29     u_int       Present;
30 } config_req_t;
31
32 /* Attributes for RequestConfiguration */
33 #define CONF_ENABLE_IRQ         0x01
34 #define CONF_ENABLE_DMA         0x02
35 #define CONF_ENABLE_SPKR        0x04
36 #define CONF_ENABLE_PULSE_IRQ   0x08
37 #define CONF_VALID_CLIENT       0x100
38
39 /* IntType field */
40 #define INT_MEMORY              0x01
41 #define INT_MEMORY_AND_IO       0x02
42 #define INT_CARDBUS             0x04
43 #define INT_ZOOMED_VIDEO        0x08
44
45 /* Configuration registers present */
46 #define PRESENT_OPTION          0x001
47 #define PRESENT_STATUS          0x002
48 #define PRESENT_PIN_REPLACE     0x004
49 #define PRESENT_COPY            0x008
50 #define PRESENT_EXT_STATUS      0x010
51 #define PRESENT_IOBASE_0        0x020
52 #define PRESENT_IOBASE_1        0x040
53 #define PRESENT_IOBASE_2        0x080
54 #define PRESENT_IOBASE_3        0x100
55 #define PRESENT_IOSIZE          0x200
56
57 #endif /* _LINUX_CS_H */