aboutsummaryrefslogtreecommitdiffstats
path: root/include/pcmcia/cs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/pcmcia/cs.h')
-rw-r--r--include/pcmcia/cs.h35
1 files changed, 14 insertions, 21 deletions
diff --git a/include/pcmcia/cs.h b/include/pcmcia/cs.h
index e4faf4420f2a..68d8bde7e8d6 100644
--- a/include/pcmcia/cs.h
+++ b/include/pcmcia/cs.h
@@ -77,26 +77,19 @@ typedef struct win_req_t {
77} win_req_t; 77} win_req_t;
78 78
79/* Attributes for RequestWindow */ 79/* Attributes for RequestWindow */
80#define WIN_ADDR_SPACE 0x0001 80#define WIN_MEMORY_TYPE_CM 0x00 /* default */
81#define WIN_ADDR_SPACE_MEM 0x0000 81#define WIN_MEMORY_TYPE_AM 0x20 /* MAP_ATTRIB */
82#define WIN_ADDR_SPACE_IO 0x0001 82#define WIN_DATA_WIDTH_8 0x00 /* default */
83#define WIN_MEMORY_TYPE 0x0002 83#define WIN_DATA_WIDTH_16 0x02 /* MAP_16BIT */
84#define WIN_MEMORY_TYPE_CM 0x0000 84#define WIN_ENABLE 0x01 /* MAP_ACTIVE */
85#define WIN_MEMORY_TYPE_AM 0x0002 85#define WIN_USE_WAIT 0x40 /* MAP_USE_WAIT */
86#define WIN_ENABLE 0x0004 86
87#define WIN_DATA_WIDTH 0x0018 87#define WIN_FLAGS_MAP 0x63 /* MAP_ATTRIB | MAP_16BIT | MAP_ACTIVE |
88#define WIN_DATA_WIDTH_8 0x0000 88 MAP_USE_WAIT */
89#define WIN_DATA_WIDTH_16 0x0008 89#define WIN_FLAGS_REQ 0x1c /* mapping to socket->win[i]:
90#define WIN_DATA_WIDTH_32 0x0010 90 0x04 -> 0
91#define WIN_PAGED 0x0020 91 0x08 -> 1
92#define WIN_SHARED 0x0040 92 0x0c -> 2
93#define WIN_FIRST_SHARED 0x0080 93 0x10 -> 3 */
94#define WIN_USE_WAIT 0x0100
95#define WIN_STRICT_ALIGN 0x0200
96#define WIN_MAP_BELOW_1MB 0x0400
97#define WIN_PREFETCH 0x0800
98#define WIN_CACHEABLE 0x1000
99#define WIN_BAR_MASK 0xe000
100#define WIN_BAR_SHIFT 13
101 94
102#endif /* _LINUX_CS_H */ 95#endif /* _LINUX_CS_H */