1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef B43legacy_DMA_H_
3 #define B43legacy_DMA_H_
5 #include <linux/list.h>
6 #include <linux/spinlock.h>
7 #include <linux/workqueue.h>
8 #include <linux/linkage.h>
9 #include <linux/atomic.h>
11 #include "b43legacy.h"
14 /* DMA-Interrupt reasons. */
15 #define B43legacy_DMAIRQ_FATALMASK ((1 << 10) | (1 << 11) | (1 << 12) \
16 | (1 << 14) | (1 << 15))
17 #define B43legacy_DMAIRQ_NONFATALMASK (1 << 13)
18 #define B43legacy_DMAIRQ_RX_DONE (1 << 16)
21 /*** 32-bit DMA Engine. ***/
23 /* 32-bit DMA controller registers. */
24 #define B43legacy_DMA32_TXCTL 0x00
25 #define B43legacy_DMA32_TXENABLE 0x00000001
26 #define B43legacy_DMA32_TXSUSPEND 0x00000002
27 #define B43legacy_DMA32_TXLOOPBACK 0x00000004
28 #define B43legacy_DMA32_TXFLUSH 0x00000010
29 #define B43legacy_DMA32_TXADDREXT_MASK 0x00030000
30 #define B43legacy_DMA32_TXADDREXT_SHIFT 16
31 #define B43legacy_DMA32_TXRING 0x04
32 #define B43legacy_DMA32_TXINDEX 0x08
33 #define B43legacy_DMA32_TXSTATUS 0x0C
34 #define B43legacy_DMA32_TXDPTR 0x00000FFF
35 #define B43legacy_DMA32_TXSTATE 0x0000F000
36 #define B43legacy_DMA32_TXSTAT_DISABLED 0x00000000
37 #define B43legacy_DMA32_TXSTAT_ACTIVE 0x00001000
38 #define B43legacy_DMA32_TXSTAT_IDLEWAIT 0x00002000
39 #define B43legacy_DMA32_TXSTAT_STOPPED 0x00003000
40 #define B43legacy_DMA32_TXSTAT_SUSP 0x00004000
41 #define B43legacy_DMA32_TXERROR 0x000F0000
42 #define B43legacy_DMA32_TXERR_NOERR 0x00000000
43 #define B43legacy_DMA32_TXERR_PROT 0x00010000
44 #define B43legacy_DMA32_TXERR_UNDERRUN 0x00020000
45 #define B43legacy_DMA32_TXERR_BUFREAD 0x00030000
46 #define B43legacy_DMA32_TXERR_DESCREAD 0x00040000
47 #define B43legacy_DMA32_TXACTIVE 0xFFF00000
48 #define B43legacy_DMA32_RXCTL 0x10
49 #define B43legacy_DMA32_RXENABLE 0x00000001
50 #define B43legacy_DMA32_RXFROFF_MASK 0x000000FE
51 #define B43legacy_DMA32_RXFROFF_SHIFT 1
52 #define B43legacy_DMA32_RXDIRECTFIFO 0x00000100
53 #define B43legacy_DMA32_RXADDREXT_MASK 0x00030000
54 #define B43legacy_DMA32_RXADDREXT_SHIFT 16
55 #define B43legacy_DMA32_RXRING 0x14
56 #define B43legacy_DMA32_RXINDEX 0x18
57 #define B43legacy_DMA32_RXSTATUS 0x1C
58 #define B43legacy_DMA32_RXDPTR 0x00000FFF
59 #define B43legacy_DMA32_RXSTATE 0x0000F000
60 #define B43legacy_DMA32_RXSTAT_DISABLED 0x00000000
61 #define B43legacy_DMA32_RXSTAT_ACTIVE 0x00001000
62 #define B43legacy_DMA32_RXSTAT_IDLEWAIT 0x00002000
63 #define B43legacy_DMA32_RXSTAT_STOPPED 0x00003000
64 #define B43legacy_DMA32_RXERROR 0x000F0000
65 #define B43legacy_DMA32_RXERR_NOERR 0x00000000
66 #define B43legacy_DMA32_RXERR_PROT 0x00010000
67 #define B43legacy_DMA32_RXERR_OVERFLOW 0x00020000
68 #define B43legacy_DMA32_RXERR_BUFWRITE 0x00030000
69 #define B43legacy_DMA32_RXERR_DESCREAD 0x00040000
70 #define B43legacy_DMA32_RXACTIVE 0xFFF00000
72 /* 32-bit DMA descriptor. */
73 struct b43legacy_dmadesc32
{
77 #define B43legacy_DMA32_DCTL_BYTECNT 0x00001FFF
78 #define B43legacy_DMA32_DCTL_ADDREXT_MASK 0x00030000
79 #define B43legacy_DMA32_DCTL_ADDREXT_SHIFT 16
80 #define B43legacy_DMA32_DCTL_DTABLEEND 0x10000000
81 #define B43legacy_DMA32_DCTL_IRQ 0x20000000
82 #define B43legacy_DMA32_DCTL_FRAMEEND 0x40000000
83 #define B43legacy_DMA32_DCTL_FRAMESTART 0x80000000
86 /* Misc DMA constants */
87 #define B43legacy_DMA_RINGMEMSIZE PAGE_SIZE
88 #define B43legacy_DMA0_RX_FRAMEOFFSET 30
89 #define B43legacy_DMA3_RX_FRAMEOFFSET 0
92 /* DMA engine tuning knobs */
93 #define B43legacy_TXRING_SLOTS 128
94 #define B43legacy_RXRING_SLOTS 64
95 #define B43legacy_DMA0_RX_BUFFERSIZE (2304 + 100)
96 #define B43legacy_DMA3_RX_BUFFERSIZE 16
100 #ifdef CONFIG_B43LEGACY_DMA
104 struct b43legacy_private
;
105 struct b43legacy_txstatus
;
108 struct b43legacy_dmadesc_meta
{
109 /* The kernel DMA-able buffer. */
111 /* DMA base bus-address of the descriptor buffer. */
113 /* ieee80211 TX status. Only used once per 802.11 frag. */
114 bool is_last_fragment
;
117 enum b43legacy_dmatype
{
118 B43legacy_DMA_30BIT
= 30,
119 B43legacy_DMA_32BIT
= 32,
122 struct b43legacy_dmaring
{
123 /* Kernel virtual base address of the ring memory. */
125 /* Meta data about all descriptors. */
126 struct b43legacy_dmadesc_meta
*meta
;
127 /* Cache of TX headers for each slot.
128 * This is to avoid an allocation on each TX.
129 * This is NULL for an RX ring.
132 /* (Unadjusted) DMA base bus-address of the ring memory. */
134 /* Number of descriptor slots in the ring. */
136 /* Number of used descriptor slots. */
138 /* Currently used slot in the ring. */
140 /* Frameoffset in octets. */
142 /* Descriptor buffer size. */
144 /* The MMIO base register of the DMA controller. */
146 /* DMA controller index number (0-5). */
148 /* Boolean. Is this a TX ring? */
150 /* The type of DMA engine used. */
151 enum b43legacy_dmatype type
;
152 /* Boolean. Is this ring stopped at ieee80211 level? */
154 /* The QOS priority assigned to this ring. Only used for TX rings.
155 * This is the mac80211 "queue" value. */
157 struct b43legacy_wldev
*dev
;
158 #ifdef CONFIG_B43LEGACY_DEBUG
159 /* Maximum number of used slots. */
161 /* Last time we injected a ring overflow. */
162 unsigned long last_injected_overflow
;
163 #endif /* CONFIG_B43LEGACY_DEBUG*/
168 u32
b43legacy_dma_read(struct b43legacy_dmaring
*ring
,
171 return b43legacy_read32(ring
->dev
, ring
->mmio_base
+ offset
);
175 void b43legacy_dma_write(struct b43legacy_dmaring
*ring
,
176 u16 offset
, u32 value
)
178 b43legacy_write32(ring
->dev
, ring
->mmio_base
+ offset
, value
);
182 int b43legacy_dma_init(struct b43legacy_wldev
*dev
);
183 void b43legacy_dma_free(struct b43legacy_wldev
*dev
);
185 void b43legacy_dma_tx_suspend(struct b43legacy_wldev
*dev
);
186 void b43legacy_dma_tx_resume(struct b43legacy_wldev
*dev
);
188 int b43legacy_dma_tx(struct b43legacy_wldev
*dev
,
189 struct sk_buff
*skb
);
190 void b43legacy_dma_handle_txstatus(struct b43legacy_wldev
*dev
,
191 const struct b43legacy_txstatus
*status
);
193 void b43legacy_dma_rx(struct b43legacy_dmaring
*ring
);
195 #else /* CONFIG_B43LEGACY_DMA */
199 int b43legacy_dma_init(struct b43legacy_wldev
*dev
)
204 void b43legacy_dma_free(struct b43legacy_wldev
*dev
)
208 int b43legacy_dma_tx(struct b43legacy_wldev
*dev
,
214 void b43legacy_dma_handle_txstatus(struct b43legacy_wldev
*dev
,
215 const struct b43legacy_txstatus
*status
)
219 void b43legacy_dma_rx(struct b43legacy_dmaring
*ring
)
223 void b43legacy_dma_tx_suspend(struct b43legacy_wldev
*dev
)
227 void b43legacy_dma_tx_resume(struct b43legacy_wldev
*dev
)
231 #endif /* CONFIG_B43LEGACY_DMA */
232 #endif /* B43legacy_DMA_H_ */