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 ***********************************************************************/
19 * \brief Host Driver: Implementation of Octeon input queues. "Input" is
20 * with respect to the Octeon device on the NIC. From this driver's
21 * point of view they are egress queues.
24 #ifndef __OCTEON_IQ_H__
25 #define __OCTEON_IQ_H__
27 #define IQ_STATUS_RUNNING 1
30 #define IQ_SEND_STOP 1
31 #define IQ_SEND_FAILED -1
33 /*------------------------- INSTRUCTION QUEUE --------------------------*/
37 #define REQTYPE_NONE 0
38 #define REQTYPE_NORESP_NET 1
39 #define REQTYPE_NORESP_NET_SG 2
40 #define REQTYPE_RESP_NET 3
41 #define REQTYPE_RESP_NET_SG 4
42 #define REQTYPE_SOFT_COMMAND 5
43 #define REQTYPE_LAST 5
45 struct octeon_request_list
{
52 /** Input Queue statistics. Each input queue has four stats fields. */
54 u64 instr_posted
; /**< Instructions posted to this queue. */
55 u64 instr_processed
; /**< Instructions processed in this queue. */
56 u64 instr_dropped
; /**< Instructions that could not be processed */
57 u64 bytes_sent
; /**< Bytes sent through this queue. */
58 u64 sgentry_sent
;/**< Gather entries sent through this queue. */
59 u64 tx_done
;/**< Num of packets sent to network. */
60 u64 tx_iq_busy
;/**< Numof times this iq was found to be full. */
61 u64 tx_dropped
;/**< Numof pkts dropped dueto xmitpath errors. */
62 u64 tx_tot_bytes
;/**< Total count of bytes sento to network. */
63 u64 tx_gso
; /* count of tso */
64 u64 tx_vxlan
; /* tunnel */
69 #define OCT_IQ_STATS_SIZE (sizeof(struct oct_iq_stats))
71 /** The instruction (input) queue.
72 * The input queue is used to post raw (instruction) mode data or packet
73 * data to Octeon device from the host. Each input queue (upto 4) for
74 * a Octeon device has one such structure to represent it.
76 struct octeon_instr_queue
{
77 struct octeon_device
*oct_dev
;
79 /** A spinlock to protect access to the input ring. */
82 /** A spinlock to protect while posting on the ring. */
87 /** A spinlock to protect access to the input ring.*/
88 spinlock_t iq_flush_running_lock
;
90 /** Flag that indicates if the queue uses 64 byte commands. */
94 union oct_txpciq txpciq
;
98 /* Controls whether extra flushing of IQ is done on Tx */
103 /** Maximum no. of instructions in this queue. */
106 /** Index in input ring where the driver should write the next packet */
107 u32 host_write_index
;
109 /** Index in input ring where Octeon is expected to read the next
112 u32 octeon_read_index
;
114 /** This index aids in finding the window in the queue where Octeon
115 * has read the commands.
119 /** This field keeps track of the instructions pending in this queue. */
120 atomic_t instr_pending
;
124 /** Pointer to the Virtual Base addr of the input ring. */
127 struct octeon_request_list
*request_list
;
129 /** Octeon doorbell register for the ring. */
130 void __iomem
*doorbell_reg
;
132 /** Octeon instruction count register for this ring. */
133 void __iomem
*inst_cnt_reg
;
135 /** Number of instructions pending to be posted to Octeon. */
138 /** The max. number of instructions that can be held pending by the
143 /** The last time that the doorbell was rung. */
146 /** The doorbell timeout. If the doorbell was not rung for this time and
147 * fill_cnt is non-zero, ring the doorbell again.
151 /** Statistics for this input queue. */
152 struct oct_iq_stats stats
;
154 /** DMA mapped base address of the input descriptor ring. */
155 dma_addr_t base_addr_dma
;
157 /** Application context */
160 /* network stack queue index */
163 /*os ifidx associated with this queue */
168 /*---------------------- INSTRUCTION FORMAT ----------------------------*/
170 /** 32-byte instruction format.
171 * Format of instruction for a 32-byte mode input queue.
173 struct octeon_instr_32B
{
174 /** Pointer where the input data is available. */
177 /** Instruction Header. */
180 /** Pointer where the response for a RAW mode packet will be written
185 /** Input Request Header. Additional info about the input. */
190 #define OCT_32B_INSTR_SIZE (sizeof(struct octeon_instr_32B))
192 /** 64-byte instruction format.
193 * Format of instruction for a 64-byte mode input queue.
195 struct octeon_instr2_64B
{
196 /** Pointer where the input data is available. */
199 /** Instruction Header. */
202 /** Input Request Header. */
205 /** opcode/subcode specific parameters */
208 /** Return Data Parameters */
211 /** Pointer where the response for a RAW mode packet will be written
219 struct octeon_instr3_64B
{
220 /** Pointer where the input data is available. */
223 /** Instruction Header. */
226 /** Instruction Header. */
229 /** Input Request Header. */
232 /** opcode/subcode specific parameters */
235 /** Return Data Parameters */
238 /** Pointer where the response for a RAW mode packet will be written
245 union octeon_instr_64B
{
246 struct octeon_instr2_64B cmd2
;
247 struct octeon_instr3_64B cmd3
;
250 #define OCT_64B_INSTR_SIZE (sizeof(union octeon_instr_64B))
252 /** The size of each buffer in soft command buffer pool
254 #define SOFT_COMMAND_BUFFER_SIZE 2048
256 struct octeon_soft_command
{
257 /** Soft command buffer info. */
258 struct list_head node
;
262 /** Command and return status */
263 union octeon_instr_64B cmd
;
265 #define COMPLETION_WORD_INIT 0xffffffffffffffffULL
268 /** Data buffer info */
273 /** Return buffer info */
278 /** Context buffer info */
282 /** Time out and callback */
286 void (*callback
)(struct octeon_device
*, u32
, void *);
290 /** Maximum number of buffers to allocate into soft command buffer pool
292 #define MAX_SOFT_COMMAND_BUFFERS 256
294 /** Head of a soft command buffer pool.
296 struct octeon_sc_buffer_pool
{
297 /** List structure to add delete pending entries to */
298 struct list_head head
;
300 /** A lock for this response list */
303 atomic_t alloc_buf_count
;
306 #define INCR_INSTRQUEUE_PKT_COUNT(octeon_dev_ptr, iq_no, field, count) \
307 (((octeon_dev_ptr)->instr_queue[iq_no]->stats.field) += count)
309 int octeon_setup_sc_buffer_pool(struct octeon_device
*oct
);
310 int octeon_free_sc_buffer_pool(struct octeon_device
*oct
);
311 struct octeon_soft_command
*
312 octeon_alloc_soft_command(struct octeon_device
*oct
,
313 u32 datasize
, u32 rdatasize
,
315 void octeon_free_soft_command(struct octeon_device
*oct
,
316 struct octeon_soft_command
*sc
);
319 * octeon_init_instr_queue()
320 * @param octeon_dev - pointer to the octeon device structure.
321 * @param txpciq - queue to be initialized (0 <= q_no <= 3).
323 * Called at driver init time for each input queue. iq_conf has the
324 * configuration parameters for the queue.
326 * @return Success: 0 Failure: 1
328 int octeon_init_instr_queue(struct octeon_device
*octeon_dev
,
329 union oct_txpciq txpciq
,
333 * octeon_delete_instr_queue()
334 * @param octeon_dev - pointer to the octeon device structure.
335 * @param iq_no - queue to be deleted (0 <= q_no <= 3).
337 * Called at driver unload time for each input queue. Deletes all
338 * allocated resources for the input queue.
340 * @return Success: 0 Failure: 1
342 int octeon_delete_instr_queue(struct octeon_device
*octeon_dev
, u32 iq_no
);
344 int lio_wait_for_instr_fetch(struct octeon_device
*oct
);
347 octeon_ring_doorbell_locked(struct octeon_device
*oct
, u32 iq_no
);
350 octeon_register_reqtype_free_fn(struct octeon_device
*oct
, int reqtype
,
354 lio_process_iq_request_list(struct octeon_device
*oct
,
355 struct octeon_instr_queue
*iq
, u32 napi_budget
);
357 int octeon_send_command(struct octeon_device
*oct
, u32 iq_no
,
358 u32 force_db
, void *cmd
, void *buf
,
359 u32 datasize
, u32 reqtype
);
361 void octeon_prepare_soft_command(struct octeon_device
*oct
,
362 struct octeon_soft_command
*sc
,
363 u8 opcode
, u8 subcode
,
364 u32 irh_ossp
, u64 ossp0
,
367 int octeon_send_soft_command(struct octeon_device
*oct
,
368 struct octeon_soft_command
*sc
);
370 int octeon_setup_iq(struct octeon_device
*oct
, int ifidx
,
371 int q_index
, union oct_txpciq iq_no
, u32 num_descs
,
374 octeon_flush_iq(struct octeon_device
*oct
, struct octeon_instr_queue
*iq
,
376 #endif /* __OCTEON_IQ_H__ */