Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shaggy...
[deliverable/linux.git] / drivers / net / wireless / prism54 / isl_38xx.h
1 /*
2 *
3 * Copyright (C) 2002 Intersil Americas Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
20 #ifndef _ISL_38XX_H
21 #define _ISL_38XX_H
22
23 #include <asm/io.h>
24 #include <asm/byteorder.h>
25
26 #define ISL38XX_CB_RX_QSIZE 8
27 #define ISL38XX_CB_TX_QSIZE 32
28
29 /* ISL38XX Access Point Specific definitions */
30 #define ISL38XX_MAX_WDS_LINKS 8
31
32 /* ISL38xx Client Specific definitions */
33 #define ISL38XX_PSM_ACTIVE_STATE 0
34 #define ISL38XX_PSM_POWERSAVE_STATE 1
35
36 /* ISL38XX Host Interface Definitions */
37 #define ISL38XX_PCI_MEM_SIZE 0x02000
38 #define ISL38XX_MEMORY_WINDOW_SIZE 0x01000
39 #define ISL38XX_DEV_FIRMWARE_ADDRES 0x20000
40 #define ISL38XX_WRITEIO_DELAY 10 /* in us */
41 #define ISL38XX_RESET_DELAY 50 /* in ms */
42 #define ISL38XX_WAIT_CYCLE 10 /* in 10ms */
43 #define ISL38XX_MAX_WAIT_CYCLES 10
44
45 /* PCI Memory Area */
46 #define ISL38XX_HARDWARE_REG 0x0000
47 #define ISL38XX_CARDBUS_CIS 0x0800
48 #define ISL38XX_DIRECT_MEM_WIN 0x1000
49
50 /* Hardware registers */
51 #define ISL38XX_DEV_INT_REG 0x0000
52 #define ISL38XX_INT_IDENT_REG 0x0010
53 #define ISL38XX_INT_ACK_REG 0x0014
54 #define ISL38XX_INT_EN_REG 0x0018
55 #define ISL38XX_GEN_PURP_COM_REG_1 0x0020
56 #define ISL38XX_GEN_PURP_COM_REG_2 0x0024
57 #define ISL38XX_CTRL_BLK_BASE_REG ISL38XX_GEN_PURP_COM_REG_1
58 #define ISL38XX_DIR_MEM_BASE_REG 0x0030
59 #define ISL38XX_CTRL_STAT_REG 0x0078
60
61 /* High end mobos queue up pci writes, the following
62 * is used to "read" from after a write to force flush */
63 #define ISL38XX_PCI_POSTING_FLUSH ISL38XX_INT_EN_REG
64
65 /**
66 * isl38xx_w32_flush - PCI iomem write helper
67 * @base: (host) memory base address of the device
68 * @val: 32bit value (host order) to write
69 * @offset: byte offset into @base to write value to
70 *
71 * This helper takes care of writing a 32bit datum to the
72 * specified offset into the device's pci memory space, and making sure
73 * the pci memory buffers get flushed by performing one harmless read
74 * from the %ISL38XX_PCI_POSTING_FLUSH offset.
75 */
76 static inline void
77 isl38xx_w32_flush(void __iomem *base, u32 val, unsigned long offset)
78 {
79 writel(val, base + offset);
80 (void) readl(base + ISL38XX_PCI_POSTING_FLUSH);
81 }
82
83 /* Device Interrupt register bits */
84 #define ISL38XX_DEV_INT_RESET 0x0001
85 #define ISL38XX_DEV_INT_UPDATE 0x0002
86 #define ISL38XX_DEV_INT_WAKEUP 0x0008
87 #define ISL38XX_DEV_INT_SLEEP 0x0010
88
89 /* Interrupt Identification/Acknowledge/Enable register bits */
90 #define ISL38XX_INT_IDENT_UPDATE 0x0002
91 #define ISL38XX_INT_IDENT_INIT 0x0004
92 #define ISL38XX_INT_IDENT_WAKEUP 0x0008
93 #define ISL38XX_INT_IDENT_SLEEP 0x0010
94 #define ISL38XX_INT_SOURCES 0x001E
95
96 /* Control/Status register bits */
97 /* Looks like there are other meaningful bits
98 0x20004400 seen in normal operation,
99 0x200044db at 'timeout waiting for mgmt response'
100 */
101 #define ISL38XX_CTRL_STAT_SLEEPMODE 0x00000200
102 #define ISL38XX_CTRL_STAT_CLKRUN 0x00800000
103 #define ISL38XX_CTRL_STAT_RESET 0x10000000
104 #define ISL38XX_CTRL_STAT_RAMBOOT 0x20000000
105 #define ISL38XX_CTRL_STAT_STARTHALTED 0x40000000
106 #define ISL38XX_CTRL_STAT_HOST_OVERRIDE 0x80000000
107
108 /* Control Block definitions */
109 #define ISL38XX_CB_RX_DATA_LQ 0
110 #define ISL38XX_CB_TX_DATA_LQ 1
111 #define ISL38XX_CB_RX_DATA_HQ 2
112 #define ISL38XX_CB_TX_DATA_HQ 3
113 #define ISL38XX_CB_RX_MGMTQ 4
114 #define ISL38XX_CB_TX_MGMTQ 5
115 #define ISL38XX_CB_QCOUNT 6
116 #define ISL38XX_CB_MGMT_QSIZE 4
117 #define ISL38XX_MIN_QTHRESHOLD 4 /* fragments */
118
119 /* Memory Manager definitions */
120 #define MGMT_FRAME_SIZE 1500 /* >= size struct obj_bsslist */
121 #define MGMT_TX_FRAME_COUNT 24 /* max 4 + spare 4 + 8 init */
122 #define MGMT_RX_FRAME_COUNT 24 /* 4*4 + spare 8 */
123 #define MGMT_FRAME_COUNT (MGMT_TX_FRAME_COUNT + MGMT_RX_FRAME_COUNT)
124 #define CONTROL_BLOCK_SIZE 1024 /* should be enough */
125 #define PSM_FRAME_SIZE 1536
126 #define PSM_MINIMAL_STATION_COUNT 64
127 #define PSM_FRAME_COUNT PSM_MINIMAL_STATION_COUNT
128 #define PSM_BUFFER_SIZE PSM_FRAME_SIZE * PSM_FRAME_COUNT
129 #define MAX_TRAP_RX_QUEUE 4
130 #define HOST_MEM_BLOCK CONTROL_BLOCK_SIZE + PSM_BUFFER_SIZE
131
132 /* Fragment package definitions */
133 #define FRAGMENT_FLAG_MF 0x0001
134 #define MAX_FRAGMENT_SIZE 1536
135
136 /* In monitor mode frames have a header. I don't know exactly how big those
137 * frame can be but I've never seen any frame bigger than 1584... :
138 */
139 #define MAX_FRAGMENT_SIZE_RX 1600
140
141 typedef struct {
142 u32 address; /* physical address on host */
143 u16 size; /* packet size */
144 u16 flags; /* set of bit-wise flags */
145 } isl38xx_fragment;
146
147 struct isl38xx_cb {
148 u32 driver_curr_frag[ISL38XX_CB_QCOUNT];
149 u32 device_curr_frag[ISL38XX_CB_QCOUNT];
150 isl38xx_fragment rx_data_low[ISL38XX_CB_RX_QSIZE];
151 isl38xx_fragment tx_data_low[ISL38XX_CB_TX_QSIZE];
152 isl38xx_fragment rx_data_high[ISL38XX_CB_RX_QSIZE];
153 isl38xx_fragment tx_data_high[ISL38XX_CB_TX_QSIZE];
154 isl38xx_fragment rx_data_mgmt[ISL38XX_CB_MGMT_QSIZE];
155 isl38xx_fragment tx_data_mgmt[ISL38XX_CB_MGMT_QSIZE];
156 };
157
158 typedef struct isl38xx_cb isl38xx_control_block;
159
160 /* determine number of entries currently in queue */
161 int isl38xx_in_queue(isl38xx_control_block *cb, int queue);
162
163 void isl38xx_disable_interrupts(void __iomem *);
164 void isl38xx_enable_common_interrupts(void __iomem *);
165
166 void isl38xx_handle_sleep_request(isl38xx_control_block *, int *,
167 void __iomem *);
168 void isl38xx_handle_wakeup(isl38xx_control_block *, int *, void __iomem *);
169 void isl38xx_trigger_device(int, void __iomem *);
170 void isl38xx_interface_reset(void __iomem *, dma_addr_t);
171
172 #endif /* _ISL_38XX_H */
This page took 0.066493 seconds and 6 git commands to generate.