1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
|
/*
* CDDL HEADER START
*
* Copyright(c) 2007-2009 Intel Corporation. All rights reserved.
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "igb_sw.h"
/* function prototypes */
static mblk_t *igb_rx_bind(igb_rx_data_t *, uint32_t, uint32_t);
static mblk_t *igb_rx_copy(igb_rx_data_t *, uint32_t, uint32_t);
static void igb_rx_assoc_hcksum(mblk_t *, uint32_t);
#ifndef IGB_DEBUG
#pragma inline(igb_rx_assoc_hcksum)
#endif
/*
* igb_rx_recycle - the call-back function to reclaim rx buffer
*
* This function is called when an mp is freed by the user thru
* freeb call (Only for mp constructed through desballoc call).
* It returns back the freed buffer to the free list.
*/
void
igb_rx_recycle(caddr_t arg)
{
igb_t *igb;
igb_rx_ring_t *rx_ring;
igb_rx_data_t *rx_data;
rx_control_block_t *recycle_rcb;
uint32_t free_index;
uint32_t ref_cnt;
recycle_rcb = (rx_control_block_t *)(uintptr_t)arg;
rx_data = recycle_rcb->rx_data;
rx_ring = rx_data->rx_ring;
igb = rx_ring->igb;
if (recycle_rcb->ref_cnt == 0) {
/*
* This case only happens when rx buffers are being freed
* in igb_stop() and freemsg() is called.
*/
return;
}
ASSERT(recycle_rcb->mp == NULL);
/*
* Using the recycled data buffer to generate a new mblk
*/
recycle_rcb->mp = desballoc((unsigned char *)
recycle_rcb->rx_buf.address,
recycle_rcb->rx_buf.size,
0, &recycle_rcb->free_rtn);
/*
* Put the recycled rx control block into free list
*/
mutex_enter(&rx_data->recycle_lock);
free_index = rx_data->rcb_tail;
ASSERT(rx_data->free_list[free_index] == NULL);
rx_data->free_list[free_index] = recycle_rcb;
rx_data->rcb_tail = NEXT_INDEX(free_index, 1, rx_data->free_list_size);
mutex_exit(&rx_data->recycle_lock);
/*
* The atomic operation on the number of the available rx control
* blocks in the free list is used to make the recycling mutual
* exclusive with the receiving.
*/
atomic_inc_32(&rx_data->rcb_free);
ASSERT(rx_data->rcb_free <= rx_data->free_list_size);
/*
* Considering the case that the interface is unplumbed
* and there are still some buffers held by the upper layer.
* When the buffer is returned back, we need to free it.
*/
ref_cnt = atomic_dec_32_nv(&recycle_rcb->ref_cnt);
if (ref_cnt == 0) {
if (recycle_rcb->mp != NULL) {
freemsg(recycle_rcb->mp);
recycle_rcb->mp = NULL;
}
igb_free_dma_buffer(&recycle_rcb->rx_buf);
mutex_enter(&igb->rx_pending_lock);
atomic_dec_32(&rx_data->rcb_pending);
atomic_dec_32(&igb->rcb_pending);
/*
* When there is not any buffer belonging to this rx_data
* held by the upper layer, the rx_data can be freed.
*/
if ((rx_data->flag & IGB_RX_STOPPED) &&
(rx_data->rcb_pending == 0))
igb_free_rx_ring_data(rx_data);
mutex_exit(&igb->rx_pending_lock);
}
}
/*
* igb_rx_copy - Use copy to process the received packet
*
* This function will use bcopy to process the packet
* and send the copied packet upstream
*/
static mblk_t *
igb_rx_copy(igb_rx_data_t *rx_data, uint32_t index, uint32_t pkt_len)
{
rx_control_block_t *current_rcb;
mblk_t *mp;
igb_t *igb = rx_data->rx_ring->igb;
current_rcb = rx_data->work_list[index];
DMA_SYNC(¤t_rcb->rx_buf, DDI_DMA_SYNC_FORKERNEL);
if (igb_check_dma_handle(
current_rcb->rx_buf.dma_handle) != DDI_FM_OK) {
ddi_fm_service_impact(igb->dip, DDI_SERVICE_DEGRADED);
atomic_or_32(&igb->igb_state, IGB_ERROR);
return (NULL);
}
/*
* Allocate buffer to receive this packet
*/
mp = allocb(pkt_len + IPHDR_ALIGN_ROOM, 0);
if (mp == NULL) {
igb_log(igb, IGB_LOG_INFO,
"igb_rx_copy: allocate buffer failed");
return (NULL);
}
/*
* Copy the data received into the new cluster
*/
mp->b_rptr += IPHDR_ALIGN_ROOM;
bcopy(current_rcb->rx_buf.address, mp->b_rptr, pkt_len);
mp->b_wptr = mp->b_rptr + pkt_len;
return (mp);
}
/*
* igb_rx_bind - Use existing DMA buffer to build mblk for receiving
*
* This function will use pre-bound DMA buffer to receive the packet
* and build mblk that will be sent upstream.
*/
static mblk_t *
igb_rx_bind(igb_rx_data_t *rx_data, uint32_t index, uint32_t pkt_len)
{
rx_control_block_t *current_rcb;
rx_control_block_t *free_rcb;
uint32_t free_index;
mblk_t *mp;
igb_t *igb = rx_data->rx_ring->igb;
/*
* If the free list is empty, we cannot proceed to send
* the current DMA buffer upstream. We'll have to return
* and use bcopy to process the packet.
*/
if (igb_atomic_reserve(&rx_data->rcb_free, 1) < 0)
return (NULL);
current_rcb = rx_data->work_list[index];
/*
* If the mp of the rx control block is NULL, try to do
* desballoc again.
*/
if (current_rcb->mp == NULL) {
current_rcb->mp = desballoc((unsigned char *)
current_rcb->rx_buf.address,
current_rcb->rx_buf.size,
0, ¤t_rcb->free_rtn);
/*
* If it is failed to built a mblk using the current
* DMA buffer, we have to return and use bcopy to
* process the packet.
*/
if (current_rcb->mp == NULL) {
atomic_inc_32(&rx_data->rcb_free);
return (NULL);
}
}
/*
* Sync up the data received
*/
DMA_SYNC(¤t_rcb->rx_buf, DDI_DMA_SYNC_FORKERNEL);
if (igb_check_dma_handle(
current_rcb->rx_buf.dma_handle) != DDI_FM_OK) {
ddi_fm_service_impact(igb->dip, DDI_SERVICE_DEGRADED);
atomic_or_32(&igb->igb_state, IGB_ERROR);
atomic_inc_32(&rx_data->rcb_free);
return (NULL);
}
mp = current_rcb->mp;
current_rcb->mp = NULL;
atomic_inc_32(¤t_rcb->ref_cnt);
mp->b_wptr = mp->b_rptr + pkt_len;
mp->b_next = mp->b_cont = NULL;
/*
* Strip off one free rx control block from the free list
*/
free_index = rx_data->rcb_head;
free_rcb = rx_data->free_list[free_index];
ASSERT(free_rcb != NULL);
rx_data->free_list[free_index] = NULL;
rx_data->rcb_head = NEXT_INDEX(free_index, 1, rx_data->free_list_size);
/*
* Put the rx control block to the work list
*/
rx_data->work_list[index] = free_rcb;
return (mp);
}
/*
* igb_rx_assoc_hcksum
*
* Check the rx hardware checksum status and associate the hcksum flags
*/
static void
igb_rx_assoc_hcksum(mblk_t *mp, uint32_t status_error)
{
uint32_t hcksum_flags = 0;
/* Ignore Checksum Indication */
if (status_error & E1000_RXD_STAT_IXSM)
return;
/*
* Check TCP/UDP checksum
*/
if (((status_error & E1000_RXD_STAT_TCPCS) ||
(status_error & E1000_RXD_STAT_UDPCS)) &&
!(status_error & E1000_RXDEXT_STATERR_TCPE))
hcksum_flags |= HCK_FULLCKSUM_OK;
/*
* Check IP Checksum
*/
if ((status_error & E1000_RXD_STAT_IPCS) &&
!(status_error & E1000_RXDEXT_STATERR_IPE))
hcksum_flags |= HCK_IPV4_HDRCKSUM_OK;
if (hcksum_flags != 0) {
mac_hcksum_set(mp, 0, 0, 0, 0, hcksum_flags);
}
}
mblk_t *
igb_rx_ring_poll(void *arg, int bytes)
{
igb_rx_ring_t *rx_ring = (igb_rx_ring_t *)arg;
mblk_t *mp = NULL;
ASSERT(bytes >= 0);
if ((bytes == 0) || (rx_ring->igb->igb_state & IGB_SUSPENDED) ||
!(rx_ring->igb->igb_state & IGB_STARTED))
return (NULL);
mutex_enter(&rx_ring->rx_lock);
mp = igb_rx(rx_ring, bytes);
mutex_exit(&rx_ring->rx_lock);
return (mp);
}
/*
* igb_rx - Receive the data of one ring
*
* This function goes throught h/w descriptor in one specified rx ring,
* receives the data if the descriptor status shows the data is ready.
* It returns a chain of mblks containing the received data, to be
* passed up to mac_rx().
*/
mblk_t *
igb_rx(igb_rx_ring_t *rx_ring, int poll_bytes)
{
union e1000_adv_rx_desc *current_rbd;
rx_control_block_t *current_rcb;
mblk_t *mp;
mblk_t *mblk_head;
mblk_t **mblk_tail;
uint32_t rx_next;
uint32_t rx_tail;
uint32_t pkt_len;
uint32_t status_error;
uint32_t pkt_num;
uint32_t total_bytes;
igb_t *igb = rx_ring->igb;
igb_rx_data_t *rx_data = rx_ring->rx_data;
mblk_head = NULL;
mblk_tail = &mblk_head;
if (igb->igb_state & IGB_ERROR)
return (NULL);
/*
* Sync the receive descriptors before
* accepting the packets
*/
DMA_SYNC(&rx_data->rbd_area, DDI_DMA_SYNC_FORKERNEL);
if (igb_check_dma_handle(
rx_data->rbd_area.dma_handle) != DDI_FM_OK) {
ddi_fm_service_impact(igb->dip, DDI_SERVICE_DEGRADED);
atomic_or_32(&igb->igb_state, IGB_ERROR);
return (NULL);
}
/*
* Get the start point of rx bd ring which should be examined
* during this cycle.
*/
rx_next = rx_data->rbd_next;
current_rbd = &rx_data->rbd_ring[rx_next];
pkt_num = 0;
total_bytes = 0;
status_error = current_rbd->wb.upper.status_error;
while (status_error & E1000_RXD_STAT_DD) {
/*
* If hardware has found the errors, but the error
* is hardware checksum error, here does not discard the
* packet, and let upper layer compute the checksum;
* Otherwise discard the packet.
*/
if ((status_error & E1000_RXDEXT_ERR_FRAME_ERR_MASK) ||
!(status_error & E1000_RXD_STAT_EOP)) {
IGB_DEBUG_STAT(rx_ring->stat_frame_error);
goto rx_discard;
}
IGB_DEBUG_STAT_COND(rx_ring->stat_cksum_error,
(status_error & E1000_RXDEXT_STATERR_TCPE) ||
(status_error & E1000_RXDEXT_STATERR_IPE));
pkt_len = current_rbd->wb.upper.length;
if ((poll_bytes != IGB_NO_POLL) &&
((pkt_len + total_bytes) > poll_bytes))
break;
IGB_DEBUG_STAT(rx_ring->stat_pkt_cnt);
total_bytes += pkt_len;
mp = NULL;
/*
* For packets with length more than the copy threshold,
* we'll firstly try to use the existed DMA buffer to built
* a mblk and send the mblk upstream.
*
* If the first method fails, or the packet length is less
* than the copy threshold, we'll allocate a new mblk and
* copy the packet data to the mblk.
*/
if (pkt_len > igb->rx_copy_thresh)
mp = igb_rx_bind(rx_data, rx_next, pkt_len);
if (mp == NULL)
mp = igb_rx_copy(rx_data, rx_next, pkt_len);
if (mp != NULL) {
/*
* Check h/w checksum offload status
*/
if (igb->rx_hcksum_enable)
igb_rx_assoc_hcksum(mp, status_error);
*mblk_tail = mp;
mblk_tail = &mp->b_next;
}
/* Update per-ring rx statistics */
rx_ring->rx_pkts++;
rx_ring->rx_bytes += pkt_len;
rx_discard:
/*
* Reset rx descriptor read bits
*/
current_rcb = rx_data->work_list[rx_next];
current_rbd->read.pkt_addr = current_rcb->rx_buf.dma_address;
current_rbd->read.hdr_addr = 0;
rx_next = NEXT_INDEX(rx_next, 1, rx_data->ring_size);
/*
* The receive function is in interrupt context, so here
* rx_limit_per_intr is used to avoid doing receiving too long
* per interrupt.
*/
if (++pkt_num > igb->rx_limit_per_intr) {
IGB_DEBUG_STAT(rx_ring->stat_exceed_pkt);
break;
}
current_rbd = &rx_data->rbd_ring[rx_next];
status_error = current_rbd->wb.upper.status_error;
}
DMA_SYNC(&rx_data->rbd_area, DDI_DMA_SYNC_FORDEV);
rx_data->rbd_next = rx_next;
/*
* Update the h/w tail accordingly
*/
rx_tail = PREV_INDEX(rx_next, 1, rx_data->ring_size);
E1000_WRITE_REG(&igb->hw, E1000_RDT(rx_ring->index), rx_tail);
if (igb_check_acc_handle(igb->osdep.reg_handle) != DDI_FM_OK) {
ddi_fm_service_impact(igb->dip, DDI_SERVICE_DEGRADED);
atomic_or_32(&igb->igb_state, IGB_ERROR);
}
return (mblk_head);
}
|