1 #ifndef B43legacy_DMA_H_
2 #define B43legacy_DMA_H_
4 #include <linux/list.h>
5 #include <linux/spinlock.h>
6 #include <linux/workqueue.h>
7 #include <linux/linkage.h>
8 #include <linux/atomic.h>
10 #include "b43legacy.h"
13 /* DMA-Interrupt reasons. */
14 #define B43legacy_DMAIRQ_FATALMASK ((1 << 10) | (1 << 11) | (1 << 12) \
15 | (1 << 14) | (1 << 15))
16 #define B43legacy_DMAIRQ_NONFATALMASK (1 << 13)
17 #define B43legacy_DMAIRQ_RX_DONE (1 << 16)
20 /*** 32-bit DMA Engine. ***/
22 /* 32-bit DMA controller registers. */
23 #define B43legacy_DMA32_TXCTL 0x00
24 #define B43legacy_DMA32_TXENABLE 0x00000001
25 #define B43legacy_DMA32_TXSUSPEND 0x00000002
26 #define B43legacy_DMA32_TXLOOPBACK 0x00000004
27 #define B43legacy_DMA32_TXFLUSH 0x00000010
28 #define B43legacy_DMA32_TXADDREXT_MASK 0x00030000
29 #define B43legacy_DMA32_TXADDREXT_SHIFT 16
30 #define B43legacy_DMA32_TXRING 0x04
31 #define B43legacy_DMA32_TXINDEX 0x08
32 #define B43legacy_DMA32_TXSTATUS 0x0C
33 #define B43legacy_DMA32_TXDPTR 0x00000FFF
34 #define B43legacy_DMA32_TXSTATE 0x0000F000
35 #define B43legacy_DMA32_TXSTAT_DISABLED 0x00000000
36 #define B43legacy_DMA32_TXSTAT_ACTIVE 0x00001000
37 #define B43legacy_DMA32_TXSTAT_IDLEWAIT 0x00002000
38 #define B43legacy_DMA32_TXSTAT_STOPPED 0x00003000
39 #define B43legacy_DMA32_TXSTAT_SUSP 0x00004000
40 #define B43legacy_DMA32_TXERROR 0x000F0000
41 #define B43legacy_DMA32_TXERR_NOERR 0x00000000
42 #define B43legacy_DMA32_TXERR_PROT 0x00010000
43 #define B43legacy_DMA32_TXERR_UNDERRUN 0x00020000
44 #define B43legacy_DMA32_TXERR_BUFREAD 0x00030000
45 #define B43legacy_DMA32_TXERR_DESCREAD 0x00040000
46 #define B43legacy_DMA32_TXACTIVE 0xFFF00000
47 #define B43legacy_DMA32_RXCTL 0x10
48 #define B43legacy_DMA32_RXENABLE 0x00000001
49 #define B43legacy_DMA32_RXFROFF_MASK 0x000000FE
50 #define B43legacy_DMA32_RXFROFF_SHIFT 1
51 #define B43legacy_DMA32_RXDIRECTFIFO 0x00000100
52 #define B43legacy_DMA32_RXADDREXT_MASK 0x00030000
53 #define B43legacy_DMA32_RXADDREXT_SHIFT 16
54 #define B43legacy_DMA32_RXRING 0x14
55 #define B43legacy_DMA32_RXINDEX 0x18
56 #define B43legacy_DMA32_RXSTATUS 0x1C
57 #define B43legacy_DMA32_RXDPTR 0x00000FFF
58 #define B43legacy_DMA32_RXSTATE 0x0000F000
59 #define B43legacy_DMA32_RXSTAT_DISABLED 0x00000000
60 #define B43legacy_DMA32_RXSTAT_ACTIVE 0x00001000
61 #define B43legacy_DMA32_RXSTAT_IDLEWAIT 0x00002000
62 #define B43legacy_DMA32_RXSTAT_STOPPED 0x00003000
63 #define B43legacy_DMA32_RXERROR 0x000F0000
64 #define B43legacy_DMA32_RXERR_NOERR 0x00000000
65 #define B43legacy_DMA32_RXERR_PROT 0x00010000
66 #define B43legacy_DMA32_RXERR_OVERFLOW 0x00020000
67 #define B43legacy_DMA32_RXERR_BUFWRITE 0x00030000
68 #define B43legacy_DMA32_RXERR_DESCREAD 0x00040000
69 #define B43legacy_DMA32_RXACTIVE 0xFFF00000
71 /* 32-bit DMA descriptor. */
72 struct b43legacy_dmadesc32
{
76 #define B43legacy_DMA32_DCTL_BYTECNT 0x00001FFF
77 #define B43legacy_DMA32_DCTL_ADDREXT_MASK 0x00030000
78 #define B43legacy_DMA32_DCTL_ADDREXT_SHIFT 16
79 #define B43legacy_DMA32_DCTL_DTABLEEND 0x10000000
80 #define B43legacy_DMA32_DCTL_IRQ 0x20000000
81 #define B43legacy_DMA32_DCTL_FRAMEEND 0x40000000
82 #define B43legacy_DMA32_DCTL_FRAMESTART 0x80000000
85 /* Misc DMA constants */
86 #define B43legacy_DMA_RINGMEMSIZE PAGE_SIZE
87 #define B43legacy_DMA0_RX_FRAMEOFFSET 30
88 #define B43legacy_DMA3_RX_FRAMEOFFSET 0
91 /* DMA engine tuning knobs */
92 #define B43legacy_TXRING_SLOTS 128
93 #define B43legacy_RXRING_SLOTS 64
94 #define B43legacy_DMA0_RX_BUFFERSIZE (2304 + 100)
95 #define B43legacy_DMA3_RX_BUFFERSIZE 16
99 #ifdef CONFIG_B43LEGACY_DMA
103 struct b43legacy_private
;
104 struct b43legacy_txstatus
;
107 struct b43legacy_dmadesc_meta
{
108 /* The kernel DMA-able buffer. */
110 /* DMA base bus-address of the descriptor buffer. */
112 /* ieee80211 TX status. Only used once per 802.11 frag. */
113 bool is_last_fragment
;
116 enum b43legacy_dmatype
{
117 B43legacy_DMA_30BIT
= 30,
118 B43legacy_DMA_32BIT
= 32,
121 struct b43legacy_dmaring
{
122 /* Kernel virtual base address of the ring memory. */
124 /* Meta data about all descriptors. */
125 struct b43legacy_dmadesc_meta
*meta
;
126 /* Cache of TX headers for each slot.
127 * This is to avoid an allocation on each TX.
128 * This is NULL for an RX ring.
131 /* (Unadjusted) DMA base bus-address of the ring memory. */
133 /* Number of descriptor slots in the ring. */
135 /* Number of used descriptor slots. */
137 /* Currently used slot in the ring. */
139 /* Frameoffset in octets. */
141 /* Descriptor buffer size. */
143 /* The MMIO base register of the DMA controller. */
145 /* DMA controller index number (0-5). */
147 /* Boolean. Is this a TX ring? */
149 /* The type of DMA engine used. */
150 enum b43legacy_dmatype type
;
151 /* Boolean. Is this ring stopped at ieee80211 level? */
153 /* Lock, only used for TX. */
155 struct b43legacy_wldev
*dev
;
156 #ifdef CONFIG_B43LEGACY_DEBUG
157 /* Maximum number of used slots. */
159 /* Last time we injected a ring overflow. */
160 unsigned long last_injected_overflow
;
161 #endif /* CONFIG_B43LEGACY_DEBUG*/
166 u32
b43legacy_dma_read(struct b43legacy_dmaring
*ring
,
169 return b43legacy_read32(ring
->dev
, ring
->mmio_base
+ offset
);
173 void b43legacy_dma_write(struct b43legacy_dmaring
*ring
,
174 u16 offset
, u32 value
)
176 b43legacy_write32(ring
->dev
, ring
->mmio_base
+ offset
, value
);
180 int b43legacy_dma_init(struct b43legacy_wldev
*dev
);
181 void b43legacy_dma_free(struct b43legacy_wldev
*dev
);
183 void b43legacy_dma_tx_suspend(struct b43legacy_wldev
*dev
);
184 void b43legacy_dma_tx_resume(struct b43legacy_wldev
*dev
);
186 int b43legacy_dma_tx(struct b43legacy_wldev
*dev
,
187 struct sk_buff
*skb
);
188 void b43legacy_dma_handle_txstatus(struct b43legacy_wldev
*dev
,
189 const struct b43legacy_txstatus
*status
);
191 void b43legacy_dma_rx(struct b43legacy_dmaring
*ring
);
193 #else /* CONFIG_B43LEGACY_DMA */
197 int b43legacy_dma_init(struct b43legacy_wldev
*dev
)
202 void b43legacy_dma_free(struct b43legacy_wldev
*dev
)
206 int b43legacy_dma_tx(struct b43legacy_wldev
*dev
,
212 void b43legacy_dma_handle_txstatus(struct b43legacy_wldev
*dev
,
213 const struct b43legacy_txstatus
*status
)
217 void b43legacy_dma_rx(struct b43legacy_dmaring
*ring
)
221 void b43legacy_dma_tx_suspend(struct b43legacy_wldev
*dev
)
225 void b43legacy_dma_tx_resume(struct b43legacy_wldev
*dev
)
229 #endif /* CONFIG_B43LEGACY_DMA */
230 #endif /* B43legacy_DMA_H_ */