1 /* SPDX-License-Identifier: GPL-2.0 */
7 #include <linux/interrupt.h>
9 #include <linux/list.h>
10 #include <linux/skbuff.h>
13 /*** Registers for PIO queues up to revision 7. ***/
15 #define B43_PIO_TXCTL 0x00
16 #define B43_PIO_TXCTL_WRITELO 0x0001
17 #define B43_PIO_TXCTL_WRITEHI 0x0002
18 #define B43_PIO_TXCTL_EOF 0x0004
19 #define B43_PIO_TXCTL_FREADY 0x0008
20 #define B43_PIO_TXCTL_FLUSHREQ 0x0020
21 #define B43_PIO_TXCTL_FLUSHPEND 0x0040
22 #define B43_PIO_TXCTL_SUSPREQ 0x0080
23 #define B43_PIO_TXCTL_QSUSP 0x0100
24 #define B43_PIO_TXCTL_COMMCNT 0xFC00
25 #define B43_PIO_TXCTL_COMMCNT_SHIFT 10
26 #define B43_PIO_TXDATA 0x02
27 #define B43_PIO_TXQBUFSIZE 0x04
29 #define B43_PIO_RXCTL 0x00
30 #define B43_PIO_RXCTL_FRAMERDY 0x0001
31 #define B43_PIO_RXCTL_DATARDY 0x0002
32 #define B43_PIO_RXDATA 0x02
34 /*** Registers for PIO queues revision 8 and later. ***/
36 #define B43_PIO8_TXCTL 0x00
37 #define B43_PIO8_TXCTL_0_7 0x00000001
38 #define B43_PIO8_TXCTL_8_15 0x00000002
39 #define B43_PIO8_TXCTL_16_23 0x00000004
40 #define B43_PIO8_TXCTL_24_31 0x00000008
41 #define B43_PIO8_TXCTL_EOF 0x00000010
42 #define B43_PIO8_TXCTL_FREADY 0x00000080
43 #define B43_PIO8_TXCTL_SUSPREQ 0x00000100
44 #define B43_PIO8_TXCTL_QSUSP 0x00000200
45 #define B43_PIO8_TXCTL_FLUSHREQ 0x00000400
46 #define B43_PIO8_TXCTL_FLUSHPEND 0x00000800
47 #define B43_PIO8_TXDATA 0x04
49 #define B43_PIO8_RXCTL 0x00
50 #define B43_PIO8_RXCTL_FRAMERDY 0x00000001
51 #define B43_PIO8_RXCTL_DATARDY 0x00000002
52 #define B43_PIO8_RXDATA 0x04
55 /* The maximum number of TX-packets the HW can handle. */
56 #define B43_PIO_MAX_NR_TXPACKETS 32
59 struct b43_pio_txpacket
{
60 /* Pointer to the TX queue we belong to. */
61 struct b43_pio_txqueue
*queue
;
62 /* The TX data packet. */
64 /* Index in the (struct b43_pio_txqueue)->packets array. */
67 struct list_head list
;
70 struct b43_pio_txqueue
{
71 struct b43_wldev
*dev
;
74 /* The device queue buffer size in bytes. */
76 /* The number of used bytes in the device queue buffer. */
78 /* The number of packets that can still get queued.
79 * This is decremented on queueing a packet and incremented
80 * after receiving the transmit status. */
81 u16 free_packet_slots
;
83 /* True, if the mac80211 queue was stopped due to overflow at TX. */
85 /* Our b43 queue index number */
87 /* The mac80211 QoS queue priority. */
90 /* Buffer for TX packet meta data. */
91 struct b43_pio_txpacket packets
[B43_PIO_MAX_NR_TXPACKETS
];
92 struct list_head packets_list
;
94 /* Shortcut to the 802.11 core revision. This is to
95 * avoid horrible pointer dereferencing in the fastpaths. */
99 struct b43_pio_rxqueue
{
100 struct b43_wldev
*dev
;
103 /* Shortcut to the 802.11 core revision. This is to
104 * avoid horrible pointer dereferencing in the fastpaths. */
109 static inline u16
b43_piotx_read16(struct b43_pio_txqueue
*q
, u16 offset
)
111 return b43_read16(q
->dev
, q
->mmio_base
+ offset
);
114 static inline u32
b43_piotx_read32(struct b43_pio_txqueue
*q
, u16 offset
)
116 return b43_read32(q
->dev
, q
->mmio_base
+ offset
);
119 static inline void b43_piotx_write16(struct b43_pio_txqueue
*q
,
120 u16 offset
, u16 value
)
122 b43_write16(q
->dev
, q
->mmio_base
+ offset
, value
);
125 static inline void b43_piotx_write32(struct b43_pio_txqueue
*q
,
126 u16 offset
, u32 value
)
128 b43_write32(q
->dev
, q
->mmio_base
+ offset
, value
);
132 static inline u16
b43_piorx_read16(struct b43_pio_rxqueue
*q
, u16 offset
)
134 return b43_read16(q
->dev
, q
->mmio_base
+ offset
);
137 static inline u32
b43_piorx_read32(struct b43_pio_rxqueue
*q
, u16 offset
)
139 return b43_read32(q
->dev
, q
->mmio_base
+ offset
);
142 static inline void b43_piorx_write16(struct b43_pio_rxqueue
*q
,
143 u16 offset
, u16 value
)
145 b43_write16(q
->dev
, q
->mmio_base
+ offset
, value
);
148 static inline void b43_piorx_write32(struct b43_pio_rxqueue
*q
,
149 u16 offset
, u32 value
)
151 b43_write32(q
->dev
, q
->mmio_base
+ offset
, value
);
155 int b43_pio_init(struct b43_wldev
*dev
);
156 void b43_pio_free(struct b43_wldev
*dev
);
158 int b43_pio_tx(struct b43_wldev
*dev
, struct sk_buff
*skb
);
159 void b43_pio_handle_txstatus(struct b43_wldev
*dev
,
160 const struct b43_txstatus
*status
);
161 void b43_pio_rx(struct b43_pio_rxqueue
*q
);
163 void b43_pio_tx_suspend(struct b43_wldev
*dev
);
164 void b43_pio_tx_resume(struct b43_wldev
*dev
);
166 #endif /* B43_PIO_H_ */