1 /**********************************************************************
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
7 * Copyright (c) 2003-2016 Cavium, Inc.
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more details.
17 ***********************************************************************/
18 #include <linux/pci.h>
19 #include <linux/netdevice.h>
20 #include <linux/vmalloc.h>
21 #include "liquidio_common.h"
22 #include "octeon_droq.h"
23 #include "octeon_iq.h"
24 #include "response_manager.h"
25 #include "octeon_device.h"
26 #include "octeon_main.h"
27 #include "octeon_network.h"
28 #include "cn66xx_regs.h"
29 #include "cn66xx_device.h"
30 #include "cn23xx_pf_device.h"
31 #include "cn23xx_vf_device.h"
34 struct list_head list
;
39 struct list_head list
;
40 struct octeon_recv_info
*rinfo
;
41 octeon_dispatch_fn_t disp_fn
;
44 /** Get the argument that the user set when registering dispatch
45 * function for a given opcode/subcode.
46 * @param octeon_dev - the octeon device pointer.
47 * @param opcode - the opcode for which the dispatch argument
49 * @param subcode - the subcode for which the dispatch argument
51 * @return Success: void * (argument to the dispatch function)
52 * @return Failure: NULL
55 void *octeon_get_dispatch_arg(struct octeon_device
*octeon_dev
,
56 u16 opcode
, u16 subcode
)
59 struct list_head
*dispatch
;
61 u16 combined_opcode
= OPCODE_SUBCODE(opcode
, subcode
);
63 idx
= combined_opcode
& OCTEON_OPCODE_MASK
;
65 spin_lock_bh(&octeon_dev
->dispatch
.lock
);
67 if (octeon_dev
->dispatch
.count
== 0) {
68 spin_unlock_bh(&octeon_dev
->dispatch
.lock
);
72 if (octeon_dev
->dispatch
.dlist
[idx
].opcode
== combined_opcode
) {
73 fn_arg
= octeon_dev
->dispatch
.dlist
[idx
].arg
;
75 list_for_each(dispatch
,
76 &octeon_dev
->dispatch
.dlist
[idx
].list
) {
77 if (((struct octeon_dispatch
*)dispatch
)->opcode
==
79 fn_arg
= ((struct octeon_dispatch
*)
86 spin_unlock_bh(&octeon_dev
->dispatch
.lock
);
90 /** Check for packets on Droq. This function should be called with lock held.
91 * @param droq - Droq on which count is checked.
92 * @return Returns packet count.
94 u32
octeon_droq_check_hw_for_pkts(struct octeon_droq
*droq
)
99 pkt_count
= readl(droq
->pkts_sent_reg
);
101 last_count
= pkt_count
- droq
->pkt_count
;
102 droq
->pkt_count
= pkt_count
;
104 /* we shall write to cnts at napi irq enable or end of droq tasklet */
106 atomic_add(last_count
, &droq
->pkts_pending
);
111 static void octeon_droq_compute_max_packet_bufs(struct octeon_droq
*droq
)
115 /* max_empty_descs is the max. no. of descs that can have no buffers.
116 * If the empty desc count goes beyond this value, we cannot safely
117 * read in a 64K packet sent by Octeon
118 * (64K is max pkt size from Octeon)
120 droq
->max_empty_descs
= 0;
123 droq
->max_empty_descs
++;
124 count
+= droq
->buffer_size
;
125 } while (count
< (64 * 1024));
127 droq
->max_empty_descs
= droq
->max_count
- droq
->max_empty_descs
;
130 static void octeon_droq_reset_indices(struct octeon_droq
*droq
)
134 droq
->refill_idx
= 0;
135 droq
->refill_count
= 0;
136 atomic_set(&droq
->pkts_pending
, 0);
140 octeon_droq_destroy_ring_buffers(struct octeon_device
*oct
,
141 struct octeon_droq
*droq
)
144 struct octeon_skb_page_info
*pg_info
;
146 for (i
= 0; i
< droq
->max_count
; i
++) {
147 pg_info
= &droq
->recv_buf_list
[i
].pg_info
;
152 lio_unmap_ring(oct
->pci_dev
,
157 recv_buffer_destroy(droq
->recv_buf_list
[i
].buffer
,
160 droq
->recv_buf_list
[i
].buffer
= NULL
;
163 octeon_droq_reset_indices(droq
);
167 octeon_droq_setup_ring_buffers(struct octeon_device
*oct
,
168 struct octeon_droq
*droq
)
172 struct octeon_droq_desc
*desc_ring
= droq
->desc_ring
;
174 for (i
= 0; i
< droq
->max_count
; i
++) {
175 buf
= recv_buffer_alloc(oct
, &droq
->recv_buf_list
[i
].pg_info
);
178 dev_err(&oct
->pci_dev
->dev
, "%s buffer alloc failed\n",
180 droq
->stats
.rx_alloc_failure
++;
184 droq
->recv_buf_list
[i
].buffer
= buf
;
185 droq
->recv_buf_list
[i
].data
= get_rbd(buf
);
186 desc_ring
[i
].info_ptr
= 0;
187 desc_ring
[i
].buffer_ptr
=
188 lio_map_ring(droq
->recv_buf_list
[i
].buffer
);
191 octeon_droq_reset_indices(droq
);
193 octeon_droq_compute_max_packet_bufs(droq
);
198 int octeon_delete_droq(struct octeon_device
*oct
, u32 q_no
)
200 struct octeon_droq
*droq
= oct
->droq
[q_no
];
202 dev_dbg(&oct
->pci_dev
->dev
, "%s[%d]\n", __func__
, q_no
);
204 octeon_droq_destroy_ring_buffers(oct
, droq
);
205 vfree(droq
->recv_buf_list
);
208 lio_dma_free(oct
, (droq
->max_count
* OCT_DROQ_DESC_SIZE
),
209 droq
->desc_ring
, droq
->desc_ring_dma
);
211 memset(droq
, 0, OCT_DROQ_SIZE
);
212 oct
->io_qmask
.oq
&= ~(1ULL << q_no
);
213 vfree(oct
->droq
[q_no
]);
214 oct
->droq
[q_no
] = NULL
;
220 int octeon_init_droq(struct octeon_device
*oct
,
226 struct octeon_droq
*droq
;
227 u32 desc_ring_size
= 0, c_num_descs
= 0, c_buf_size
= 0;
228 u32 c_pkts_per_intr
= 0, c_refill_threshold
= 0;
229 int numa_node
= dev_to_node(&oct
->pci_dev
->dev
);
231 dev_dbg(&oct
->pci_dev
->dev
, "%s[%d]\n", __func__
, q_no
);
233 droq
= oct
->droq
[q_no
];
234 memset(droq
, 0, OCT_DROQ_SIZE
);
239 droq
->app_ctx
= app_ctx
;
241 droq
->app_ctx
= (void *)(size_t)q_no
;
243 c_num_descs
= num_descs
;
244 c_buf_size
= desc_size
;
245 if (OCTEON_CN6XXX(oct
)) {
246 struct octeon_config
*conf6x
= CHIP_CONF(oct
, cn6xxx
);
248 c_pkts_per_intr
= (u32
)CFG_GET_OQ_PKTS_PER_INTR(conf6x
);
250 (u32
)CFG_GET_OQ_REFILL_THRESHOLD(conf6x
);
251 } else if (OCTEON_CN23XX_PF(oct
)) {
252 struct octeon_config
*conf23
= CHIP_CONF(oct
, cn23xx_pf
);
254 c_pkts_per_intr
= (u32
)CFG_GET_OQ_PKTS_PER_INTR(conf23
);
255 c_refill_threshold
= (u32
)CFG_GET_OQ_REFILL_THRESHOLD(conf23
);
256 } else if (OCTEON_CN23XX_VF(oct
)) {
257 struct octeon_config
*conf23
= CHIP_CONF(oct
, cn23xx_vf
);
259 c_pkts_per_intr
= (u32
)CFG_GET_OQ_PKTS_PER_INTR(conf23
);
260 c_refill_threshold
= (u32
)CFG_GET_OQ_REFILL_THRESHOLD(conf23
);
265 droq
->max_count
= c_num_descs
;
266 droq
->buffer_size
= c_buf_size
;
268 desc_ring_size
= droq
->max_count
* OCT_DROQ_DESC_SIZE
;
269 droq
->desc_ring
= lio_dma_alloc(oct
, desc_ring_size
,
270 (dma_addr_t
*)&droq
->desc_ring_dma
);
272 if (!droq
->desc_ring
) {
273 dev_err(&oct
->pci_dev
->dev
,
274 "Output queue %d ring alloc failed\n", q_no
);
278 dev_dbg(&oct
->pci_dev
->dev
, "droq[%d]: desc_ring: virt: 0x%p, dma: %lx\n",
279 q_no
, droq
->desc_ring
, droq
->desc_ring_dma
);
280 dev_dbg(&oct
->pci_dev
->dev
, "droq[%d]: num_desc: %d\n", q_no
,
283 droq
->recv_buf_list
= (struct octeon_recv_buffer
*)
284 vzalloc_node(array_size(droq
->max_count
, OCT_DROQ_RECVBUF_SIZE
),
286 if (!droq
->recv_buf_list
)
287 droq
->recv_buf_list
= (struct octeon_recv_buffer
*)
288 vzalloc(array_size(droq
->max_count
,
289 OCT_DROQ_RECVBUF_SIZE
));
290 if (!droq
->recv_buf_list
) {
291 dev_err(&oct
->pci_dev
->dev
, "Output queue recv buf list alloc failed\n");
295 if (octeon_droq_setup_ring_buffers(oct
, droq
))
298 droq
->pkts_per_intr
= c_pkts_per_intr
;
299 droq
->refill_threshold
= c_refill_threshold
;
301 dev_dbg(&oct
->pci_dev
->dev
, "DROQ INIT: max_empty_descs: %d\n",
302 droq
->max_empty_descs
);
304 INIT_LIST_HEAD(&droq
->dispatch_list
);
306 /* For 56xx Pass1, this function won't be called, so no checks. */
307 oct
->fn_list
.setup_oq_regs(oct
, q_no
);
309 oct
->io_qmask
.oq
|= BIT_ULL(q_no
);
314 octeon_delete_droq(oct
, q_no
);
318 /* octeon_create_recv_info
320 * octeon_dev - pointer to the octeon device structure
321 * droq - droq in which the packet arrived.
322 * buf_cnt - no. of buffers used by the packet.
323 * idx - index in the descriptor for the first buffer in the packet.
325 * Allocates a recv_info_t and copies the buffer addresses for packet data
326 * into the recv_pkt space which starts at an 8B offset from recv_info_t.
327 * Flags the descriptors for refill later. If available descriptors go
328 * below the threshold to receive a 64K pkt, new buffers are first allocated
329 * before the recv_pkt_t is created.
330 * This routine will be called in interrupt context.
332 * Success: Pointer to recv_info_t
335 static inline struct octeon_recv_info
*octeon_create_recv_info(
336 struct octeon_device
*octeon_dev
,
337 struct octeon_droq
*droq
,
341 struct octeon_droq_info
*info
;
342 struct octeon_recv_pkt
*recv_pkt
;
343 struct octeon_recv_info
*recv_info
;
345 struct octeon_skb_page_info
*pg_info
;
347 info
= (struct octeon_droq_info
*)droq
->recv_buf_list
[idx
].data
;
349 recv_info
= octeon_alloc_recv_info(sizeof(struct __dispatch
));
353 recv_pkt
= recv_info
->recv_pkt
;
354 recv_pkt
->rh
= info
->rh
;
355 recv_pkt
->length
= (u32
)info
->length
;
356 recv_pkt
->buffer_count
= (u16
)buf_cnt
;
357 recv_pkt
->octeon_id
= (u16
)octeon_dev
->octeon_id
;
360 bytes_left
= (u32
)info
->length
;
364 pg_info
= &droq
->recv_buf_list
[idx
].pg_info
;
366 lio_unmap_ring(octeon_dev
->pci_dev
,
368 pg_info
->page
= NULL
;
372 recv_pkt
->buffer_size
[i
] =
374 droq
->buffer_size
) ? droq
->buffer_size
: bytes_left
;
376 recv_pkt
->buffer_ptr
[i
] = droq
->recv_buf_list
[idx
].buffer
;
377 droq
->recv_buf_list
[idx
].buffer
= NULL
;
379 idx
= incr_index(idx
, 1, droq
->max_count
);
380 bytes_left
-= droq
->buffer_size
;
388 /* If we were not able to refill all buffers, try to move around
389 * the buffers that were not dispatched.
392 octeon_droq_refill_pullup_descs(struct octeon_droq
*droq
,
393 struct octeon_droq_desc
*desc_ring
)
395 u32 desc_refilled
= 0;
397 u32 refill_index
= droq
->refill_idx
;
399 while (refill_index
!= droq
->read_idx
) {
400 if (droq
->recv_buf_list
[refill_index
].buffer
) {
401 droq
->recv_buf_list
[droq
->refill_idx
].buffer
=
402 droq
->recv_buf_list
[refill_index
].buffer
;
403 droq
->recv_buf_list
[droq
->refill_idx
].data
=
404 droq
->recv_buf_list
[refill_index
].data
;
405 desc_ring
[droq
->refill_idx
].buffer_ptr
=
406 desc_ring
[refill_index
].buffer_ptr
;
407 droq
->recv_buf_list
[refill_index
].buffer
= NULL
;
408 desc_ring
[refill_index
].buffer_ptr
= 0;
410 droq
->refill_idx
= incr_index(droq
->refill_idx
,
414 droq
->refill_count
--;
415 } while (droq
->recv_buf_list
[droq
->refill_idx
].buffer
);
417 refill_index
= incr_index(refill_index
, 1, droq
->max_count
);
419 return desc_refilled
;
422 /* octeon_droq_refill
424 * droq - droq in which descriptors require new buffers.
426 * Called during normal DROQ processing in interrupt mode or by the poll
427 * thread to refill the descriptors from which buffers were dispatched
428 * to upper layers. Attempts to allocate new buffers. If that fails, moves
429 * up buffers (that were not dispatched) to form a contiguous ring.
431 * No of descriptors refilled.
434 octeon_droq_refill(struct octeon_device
*octeon_dev
, struct octeon_droq
*droq
)
436 struct octeon_droq_desc
*desc_ring
;
439 u32 desc_refilled
= 0;
440 struct octeon_skb_page_info
*pg_info
;
442 desc_ring
= droq
->desc_ring
;
444 while (droq
->refill_count
&& (desc_refilled
< droq
->max_count
)) {
445 /* If a valid buffer exists (happens if there is no dispatch),
446 * reuse the buffer, else allocate.
448 if (!droq
->recv_buf_list
[droq
->refill_idx
].buffer
) {
450 &droq
->recv_buf_list
[droq
->refill_idx
].pg_info
;
451 /* Either recycle the existing pages or go for
455 buf
= recv_buffer_reuse(octeon_dev
, pg_info
);
457 buf
= recv_buffer_alloc(octeon_dev
, pg_info
);
458 /* If a buffer could not be allocated, no point in
462 droq
->stats
.rx_alloc_failure
++;
465 droq
->recv_buf_list
[droq
->refill_idx
].buffer
=
469 data
= get_rbd(droq
->recv_buf_list
470 [droq
->refill_idx
].buffer
);
473 droq
->recv_buf_list
[droq
->refill_idx
].data
= data
;
475 desc_ring
[droq
->refill_idx
].buffer_ptr
=
476 lio_map_ring(droq
->recv_buf_list
[
477 droq
->refill_idx
].buffer
);
479 droq
->refill_idx
= incr_index(droq
->refill_idx
, 1,
482 droq
->refill_count
--;
485 if (droq
->refill_count
)
487 octeon_droq_refill_pullup_descs(droq
, desc_ring
);
489 /* if droq->refill_count
490 * The refill count would not change in pass two. We only moved buffers
491 * to close the gap in the ring, but we would still have the same no. of
494 return desc_refilled
;
497 /** check if we can allocate packets to get out of oom.
498 * @param droq - Droq being checked.
499 * @return 1 if fails to refill minimum
501 int octeon_retry_droq_refill(struct octeon_droq
*droq
)
503 struct octeon_device
*oct
= droq
->oct_dev
;
504 int desc_refilled
, reschedule
= 1;
507 pkts_credit
= readl(droq
->pkts_credit_reg
);
508 desc_refilled
= octeon_droq_refill(oct
, droq
);
510 /* Flush the droq descriptor data to memory to be sure
511 * that when we update the credits the data in memory
515 writel(desc_refilled
, droq
->pkts_credit_reg
);
517 if (pkts_credit
+ desc_refilled
>= CN23XX_SLI_DEF_BP
)
525 octeon_droq_get_bufcount(u32 buf_size
, u32 total_len
)
527 return DIV_ROUND_UP(total_len
, buf_size
);
531 octeon_droq_dispatch_pkt(struct octeon_device
*oct
,
532 struct octeon_droq
*droq
,
534 struct octeon_droq_info
*info
)
537 octeon_dispatch_fn_t disp_fn
;
538 struct octeon_recv_info
*rinfo
;
540 cnt
= octeon_droq_get_bufcount(droq
->buffer_size
, (u32
)info
->length
);
542 disp_fn
= octeon_get_dispatch(oct
, (u16
)rh
->r
.opcode
,
545 rinfo
= octeon_create_recv_info(oct
, droq
, cnt
, droq
->read_idx
);
547 struct __dispatch
*rdisp
= rinfo
->rsvd
;
549 rdisp
->rinfo
= rinfo
;
550 rdisp
->disp_fn
= disp_fn
;
551 rinfo
->recv_pkt
->rh
= *rh
;
552 list_add_tail(&rdisp
->list
,
553 &droq
->dispatch_list
);
555 droq
->stats
.dropped_nomem
++;
558 dev_err(&oct
->pci_dev
->dev
, "DROQ: No dispatch function (opcode %u/%u)\n",
559 (unsigned int)rh
->r
.opcode
,
560 (unsigned int)rh
->r
.subcode
);
561 droq
->stats
.dropped_nodispatch
++;
567 static inline void octeon_droq_drop_packets(struct octeon_device
*oct
,
568 struct octeon_droq
*droq
,
572 struct octeon_droq_info
*info
;
574 for (i
= 0; i
< cnt
; i
++) {
575 info
= (struct octeon_droq_info
*)
576 droq
->recv_buf_list
[droq
->read_idx
].data
;
577 octeon_swap_8B_data((u64
*)info
, 2);
580 info
->length
+= OCTNET_FRM_LENGTH_SIZE
;
581 droq
->stats
.bytes_received
+= info
->length
;
582 buf_cnt
= octeon_droq_get_bufcount(droq
->buffer_size
,
585 dev_err(&oct
->pci_dev
->dev
, "DROQ: In drop: pkt with len 0\n");
589 droq
->read_idx
= incr_index(droq
->read_idx
, buf_cnt
,
591 droq
->refill_count
+= buf_cnt
;
596 octeon_droq_fast_process_packets(struct octeon_device
*oct
,
597 struct octeon_droq
*droq
,
600 u32 pkt
, total_len
= 0, pkt_count
, retval
;
601 struct octeon_droq_info
*info
;
604 pkt_count
= pkts_to_process
;
606 for (pkt
= 0; pkt
< pkt_count
; pkt
++) {
608 struct sk_buff
*nicbuf
= NULL
;
609 struct octeon_skb_page_info
*pg_info
;
612 info
= (struct octeon_droq_info
*)
613 droq
->recv_buf_list
[droq
->read_idx
].data
;
614 octeon_swap_8B_data((u64
*)info
, 2);
617 dev_err(&oct
->pci_dev
->dev
,
618 "DROQ[%d] idx: %d len:0, pkt_cnt: %d\n",
619 droq
->q_no
, droq
->read_idx
, pkt_count
);
620 print_hex_dump_bytes("", DUMP_PREFIX_ADDRESS
,
626 /* Len of resp hdr in included in the received data len. */
629 info
->length
+= OCTNET_FRM_LENGTH_SIZE
;
630 rh
->r_dh
.len
+= (ROUNDUP8(OCT_DROQ_INFO_SIZE
) / sizeof(u64
));
631 total_len
+= (u32
)info
->length
;
632 if (opcode_slow_path(rh
)) {
635 buf_cnt
= octeon_droq_dispatch_pkt(oct
, droq
, rh
, info
);
636 droq
->read_idx
= incr_index(droq
->read_idx
,
637 buf_cnt
, droq
->max_count
);
638 droq
->refill_count
+= buf_cnt
;
640 if (info
->length
<= droq
->buffer_size
) {
641 pkt_len
= (u32
)info
->length
;
642 nicbuf
= droq
->recv_buf_list
[
643 droq
->read_idx
].buffer
;
644 pg_info
= &droq
->recv_buf_list
[
645 droq
->read_idx
].pg_info
;
646 if (recv_buffer_recycle(oct
, pg_info
))
647 pg_info
->page
= NULL
;
648 droq
->recv_buf_list
[droq
->read_idx
].buffer
=
651 droq
->read_idx
= incr_index(droq
->read_idx
, 1,
653 droq
->refill_count
++;
655 nicbuf
= octeon_fast_packet_alloc((u32
)
658 /* nicbuf allocation can fail. We'll handle it
661 while (pkt_len
< info
->length
) {
662 int cpy_len
, idx
= droq
->read_idx
;
664 cpy_len
= ((pkt_len
+ droq
->buffer_size
)
666 ((u32
)info
->length
- pkt_len
) :
670 octeon_fast_packet_next(droq
,
674 buf
= droq
->recv_buf_list
[
676 recv_buffer_fast_free(buf
);
677 droq
->recv_buf_list
[idx
].buffer
680 droq
->stats
.rx_alloc_failure
++;
685 incr_index(droq
->read_idx
, 1,
687 droq
->refill_count
++;
692 if (droq
->ops
.fptr
) {
693 droq
->ops
.fptr(oct
->octeon_id
,
698 recv_buffer_free(nicbuf
);
703 if (droq
->refill_count
>= droq
->refill_threshold
) {
704 int desc_refilled
= octeon_droq_refill(oct
, droq
);
707 /* Flush the droq descriptor data to memory to
708 * be sure that when we update the credits the
709 * data in memory is accurate.
712 writel(desc_refilled
, droq
->pkts_credit_reg
);
715 } /* for (each packet)... */
717 /* Increment refill_count by the number of buffers processed. */
718 droq
->stats
.pkts_received
+= pkt
;
719 droq
->stats
.bytes_received
+= total_len
;
722 if ((droq
->ops
.drop_on_max
) && (pkts_to_process
- pkt
)) {
723 octeon_droq_drop_packets(oct
, droq
, (pkts_to_process
- pkt
));
725 droq
->stats
.dropped_toomany
+= (pkts_to_process
- pkt
);
726 retval
= pkts_to_process
;
729 atomic_sub(retval
, &droq
->pkts_pending
);
731 if (droq
->refill_count
>= droq
->refill_threshold
&&
732 readl(droq
->pkts_credit_reg
) < CN23XX_SLI_DEF_BP
) {
733 octeon_droq_check_hw_for_pkts(droq
);
735 /* Make sure there are no pkts_pending */
736 if (!atomic_read(&droq
->pkts_pending
))
737 octeon_schedule_rxq_oom_work(oct
, droq
);
744 octeon_droq_process_packets(struct octeon_device
*oct
,
745 struct octeon_droq
*droq
,
749 struct list_head
*tmp
, *tmp2
;
751 octeon_droq_check_hw_for_pkts(droq
);
752 pkt_count
= atomic_read(&droq
->pkts_pending
);
757 if (pkt_count
> budget
)
760 octeon_droq_fast_process_packets(oct
, droq
, pkt_count
);
762 list_for_each_safe(tmp
, tmp2
, &droq
->dispatch_list
) {
763 struct __dispatch
*rdisp
= (struct __dispatch
*)tmp
;
766 rdisp
->disp_fn(rdisp
->rinfo
,
767 octeon_get_dispatch_arg
769 (u16
)rdisp
->rinfo
->recv_pkt
->rh
.r
.opcode
,
770 (u16
)rdisp
->rinfo
->recv_pkt
->rh
.r
.subcode
));
773 /* If there are packets pending. schedule tasklet again */
774 if (atomic_read(&droq
->pkts_pending
))
781 * Utility function to poll for packets. check_hw_for_packets must be
782 * called before calling this routine.
786 octeon_droq_process_poll_pkts(struct octeon_device
*oct
,
787 struct octeon_droq
*droq
, u32 budget
)
789 struct list_head
*tmp
, *tmp2
;
790 u32 pkts_available
= 0, pkts_processed
= 0;
791 u32 total_pkts_processed
= 0;
793 if (budget
> droq
->max_count
)
794 budget
= droq
->max_count
;
796 while (total_pkts_processed
< budget
) {
797 octeon_droq_check_hw_for_pkts(droq
);
799 pkts_available
= min((budget
- total_pkts_processed
),
800 (u32
)(atomic_read(&droq
->pkts_pending
)));
802 if (pkts_available
== 0)
806 octeon_droq_fast_process_packets(oct
, droq
,
809 total_pkts_processed
+= pkts_processed
;
812 list_for_each_safe(tmp
, tmp2
, &droq
->dispatch_list
) {
813 struct __dispatch
*rdisp
= (struct __dispatch
*)tmp
;
816 rdisp
->disp_fn(rdisp
->rinfo
,
817 octeon_get_dispatch_arg
819 (u16
)rdisp
->rinfo
->recv_pkt
->rh
.r
.opcode
,
820 (u16
)rdisp
->rinfo
->recv_pkt
->rh
.r
.subcode
));
823 return total_pkts_processed
;
826 /* Enable Pkt Interrupt */
828 octeon_enable_irq(struct octeon_device
*oct
, u32 q_no
)
830 switch (oct
->chip_id
) {
832 case OCTEON_CN68XX
: {
833 struct octeon_cn6xxx
*cn6xxx
=
834 (struct octeon_cn6xxx
*)oct
->chip
;
839 (&cn6xxx
->lock_for_droq_int_enb_reg
, flags
);
840 value
= octeon_read_csr(oct
, CN6XXX_SLI_PKT_TIME_INT_ENB
);
841 value
|= (1 << q_no
);
842 octeon_write_csr(oct
, CN6XXX_SLI_PKT_TIME_INT_ENB
, value
);
843 value
= octeon_read_csr(oct
, CN6XXX_SLI_PKT_CNT_INT_ENB
);
844 value
|= (1 << q_no
);
845 octeon_write_csr(oct
, CN6XXX_SLI_PKT_CNT_INT_ENB
, value
);
847 /* don't bother flushing the enables */
849 spin_unlock_irqrestore
850 (&cn6xxx
->lock_for_droq_int_enb_reg
, flags
);
853 case OCTEON_CN23XX_PF_VID
:
854 lio_enable_irq(oct
->droq
[q_no
], oct
->instr_queue
[q_no
]);
857 case OCTEON_CN23XX_VF_VID
:
858 lio_enable_irq(oct
->droq
[q_no
], oct
->instr_queue
[q_no
]);
861 dev_err(&oct
->pci_dev
->dev
, "%s Unknown Chip\n", __func__
);
868 int octeon_register_droq_ops(struct octeon_device
*oct
, u32 q_no
,
869 struct octeon_droq_ops
*ops
)
871 struct octeon_config
*oct_cfg
= NULL
;
872 struct octeon_droq
*droq
;
874 oct_cfg
= octeon_get_conf(oct
);
880 dev_err(&oct
->pci_dev
->dev
, "%s: droq_ops pointer is NULL\n",
885 if (q_no
>= CFG_GET_OQ_MAX_Q(oct_cfg
)) {
886 dev_err(&oct
->pci_dev
->dev
, "%s: droq id (%d) exceeds MAX (%d)\n",
887 __func__
, q_no
, (oct
->num_oqs
- 1));
891 droq
= oct
->droq
[q_no
];
892 memcpy(&droq
->ops
, ops
, sizeof(struct octeon_droq_ops
));
897 int octeon_unregister_droq_ops(struct octeon_device
*oct
, u32 q_no
)
899 struct octeon_config
*oct_cfg
= NULL
;
900 struct octeon_droq
*droq
;
902 oct_cfg
= octeon_get_conf(oct
);
907 if (q_no
>= CFG_GET_OQ_MAX_Q(oct_cfg
)) {
908 dev_err(&oct
->pci_dev
->dev
, "%s: droq id (%d) exceeds MAX (%d)\n",
909 __func__
, q_no
, oct
->num_oqs
- 1);
913 droq
= oct
->droq
[q_no
];
916 dev_info(&oct
->pci_dev
->dev
,
917 "Droq id (%d) not available.\n", q_no
);
921 droq
->ops
.fptr
= NULL
;
922 droq
->ops
.farg
= NULL
;
923 droq
->ops
.drop_on_max
= 0;
928 int octeon_create_droq(struct octeon_device
*oct
,
929 u32 q_no
, u32 num_descs
,
930 u32 desc_size
, void *app_ctx
)
932 struct octeon_droq
*droq
;
933 int numa_node
= dev_to_node(&oct
->pci_dev
->dev
);
935 if (oct
->droq
[q_no
]) {
936 dev_dbg(&oct
->pci_dev
->dev
, "Droq already in use. Cannot create droq %d again\n",
941 /* Allocate the DS for the new droq. */
942 droq
= vmalloc_node(sizeof(*droq
), numa_node
);
944 droq
= vmalloc(sizeof(*droq
));
948 memset(droq
, 0, sizeof(struct octeon_droq
));
950 /*Disable the pkt o/p for this Q */
951 octeon_set_droq_pkt_op(oct
, q_no
, 0);
952 oct
->droq
[q_no
] = droq
;
954 /* Initialize the Droq */
955 if (octeon_init_droq(oct
, q_no
, num_descs
, desc_size
, app_ctx
)) {
956 vfree(oct
->droq
[q_no
]);
957 oct
->droq
[q_no
] = NULL
;
963 dev_dbg(&oct
->pci_dev
->dev
, "%s: Total number of OQ: %d\n", __func__
,
966 /* Global Droq register settings */
968 /* As of now not required, as setting are done for all 32 Droqs at