2 * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 #include <linux/pci.h>
24 #include <linux/netdevice.h>
29 /* Receive queue control */
31 u64 ring_base
; /* 0x00 */
32 u32 ring_size
; /* 0x08 */
34 u32 posted_index
; /* 0x10 */
36 u32 cq_index
; /* 0x18 */
38 u32 enable
; /* 0x20 */
40 u32 running
; /* 0x28 */
42 u32 fetch_index
; /* 0x30 */
44 u32 error_interrupt_enable
; /* 0x38 */
46 u32 error_interrupt_offset
; /* 0x40 */
48 u32 error_status
; /* 0x48 */
50 u32 dropped_packet_count
; /* 0x50 */
52 u32 dropped_packet_count_rc
; /* 0x58 */
56 /* Break the vnic_rq_buf allocations into blocks of 32/64 entries */
57 #define VNIC_RQ_BUF_MIN_BLK_ENTRIES 32
58 #define VNIC_RQ_BUF_DFLT_BLK_ENTRIES 64
59 #define VNIC_RQ_BUF_BLK_ENTRIES(entries) \
60 ((unsigned int)((entries < VNIC_RQ_BUF_DFLT_BLK_ENTRIES) ? \
61 VNIC_RQ_BUF_MIN_BLK_ENTRIES : VNIC_RQ_BUF_DFLT_BLK_ENTRIES))
62 #define VNIC_RQ_BUF_BLK_SZ(entries) \
63 (VNIC_RQ_BUF_BLK_ENTRIES(entries) * sizeof(struct vnic_rq_buf))
64 #define VNIC_RQ_BUF_BLKS_NEEDED(entries) \
65 DIV_ROUND_UP(entries, VNIC_RQ_BUF_BLK_ENTRIES(entries))
66 #define VNIC_RQ_BUF_BLKS_MAX VNIC_RQ_BUF_BLKS_NEEDED(4096)
69 struct vnic_rq_buf
*next
;
72 unsigned int os_buf_index
;
79 enum enic_poll_state
{
87 struct vnic_dev
*vdev
;
88 struct vnic_rq_ctrl __iomem
*ctrl
; /* memory-mapped */
89 struct vnic_dev_ring ring
;
90 struct vnic_rq_buf
*bufs
[VNIC_RQ_BUF_BLKS_MAX
];
91 struct vnic_rq_buf
*to_use
;
92 struct vnic_rq_buf
*to_clean
;
94 unsigned int pkts_outstanding
;
97 static inline unsigned int vnic_rq_desc_avail(struct vnic_rq
*rq
)
99 /* how many does SW own? */
100 return rq
->ring
.desc_avail
;
103 static inline unsigned int vnic_rq_desc_used(struct vnic_rq
*rq
)
105 /* how many does HW own? */
106 return rq
->ring
.desc_count
- rq
->ring
.desc_avail
- 1;
109 static inline void *vnic_rq_next_desc(struct vnic_rq
*rq
)
111 return rq
->to_use
->desc
;
114 static inline unsigned int vnic_rq_next_index(struct vnic_rq
*rq
)
116 return rq
->to_use
->index
;
119 static inline void vnic_rq_post(struct vnic_rq
*rq
,
120 void *os_buf
, unsigned int os_buf_index
,
121 dma_addr_t dma_addr
, unsigned int len
,
124 struct vnic_rq_buf
*buf
= rq
->to_use
;
126 buf
->os_buf
= os_buf
;
127 buf
->os_buf_index
= os_buf_index
;
128 buf
->dma_addr
= dma_addr
;
134 rq
->ring
.desc_avail
--;
136 /* Move the posted_index every nth descriptor
139 #ifndef VNIC_RQ_RETURN_RATE
140 #define VNIC_RQ_RETURN_RATE 0xf /* keep 2^n - 1 */
143 if ((buf
->index
& VNIC_RQ_RETURN_RATE
) == 0) {
144 /* Adding write memory barrier prevents compiler and/or CPU
145 * reordering, thus avoiding descriptor posting before
146 * descriptor is initialized. Otherwise, hardware can read
147 * stale descriptor fields.
150 iowrite32(buf
->index
, &rq
->ctrl
->posted_index
);
154 static inline void vnic_rq_return_descs(struct vnic_rq
*rq
, unsigned int count
)
156 rq
->ring
.desc_avail
+= count
;
159 enum desc_return_options
{
161 VNIC_RQ_DEFER_RETURN_DESC
,
164 static inline void vnic_rq_service(struct vnic_rq
*rq
,
165 struct cq_desc
*cq_desc
, u16 completed_index
,
166 int desc_return
, void (*buf_service
)(struct vnic_rq
*rq
,
167 struct cq_desc
*cq_desc
, struct vnic_rq_buf
*buf
,
168 int skipped
, void *opaque
), void *opaque
)
170 struct vnic_rq_buf
*buf
;
176 skipped
= (buf
->index
!= completed_index
);
178 (*buf_service
)(rq
, cq_desc
, buf
, skipped
, opaque
);
180 if (desc_return
== VNIC_RQ_RETURN_DESC
)
181 rq
->ring
.desc_avail
++;
183 rq
->to_clean
= buf
->next
;
192 static inline int vnic_rq_fill(struct vnic_rq
*rq
,
193 int (*buf_fill
)(struct vnic_rq
*rq
))
197 while (vnic_rq_desc_avail(rq
) > 0) {
199 err
= (*buf_fill
)(rq
);
207 void vnic_rq_free(struct vnic_rq
*rq
);
208 int vnic_rq_alloc(struct vnic_dev
*vdev
, struct vnic_rq
*rq
, unsigned int index
,
209 unsigned int desc_count
, unsigned int desc_size
);
210 void vnic_rq_init(struct vnic_rq
*rq
, unsigned int cq_index
,
211 unsigned int error_interrupt_enable
,
212 unsigned int error_interrupt_offset
);
213 unsigned int vnic_rq_error_status(struct vnic_rq
*rq
);
214 void vnic_rq_enable(struct vnic_rq
*rq
);
215 int vnic_rq_disable(struct vnic_rq
*rq
);
216 void vnic_rq_clean(struct vnic_rq
*rq
,
217 void (*buf_clean
)(struct vnic_rq
*rq
, struct vnic_rq_buf
*buf
));
219 #endif /* _VNIC_RQ_H_ */