2 * QLogic iSCSI Offload Driver
3 * Copyright (c) 2016 Cavium Inc.
5 * This software is available under the terms of the GNU General Public License
6 * (GPL) Version 2, available from the file COPYING in the main directory of
13 #define __PREVENT_QED_HSI__
15 #include <scsi/scsi_transport_iscsi.h>
16 #include <scsi/libiscsi.h>
17 #include <scsi/scsi_host.h>
18 #include <linux/uio_driver.h>
21 #include <linux/qed/qed_if.h>
23 #include <linux/qed/qed_iscsi_if.h>
24 #include <linux/qed/qed_ll2_if.h>
25 #include "qedi_version.h"
26 #include "qedi_nvm_iscsi_cfg.h"
28 #define QEDI_MODULE_NAME "qedi"
33 #define GET_FIELD2(value, name) \
34 (((value) & (name ## _MASK)) >> (name ## _OFFSET))
38 * PCI function probe defines
40 #define QEDI_MODE_NORMAL 0
41 #define QEDI_MODE_RECOVERY 1
43 #define ISCSI_WQE_SET_PTU_INVALIDATE 1
44 #define QEDI_MAX_ISCSI_TASK 4096
45 #define QEDI_MAX_TASK_NUM 0x0FFF
46 #define QEDI_MAX_ISCSI_CONNS_PER_HBA 1024
47 #define QEDI_ISCSI_MAX_BDS_PER_CMD 255 /* Firmware max BDs is 255 */
48 #define MAX_OUSTANDING_TASKS_PER_CON 1024
50 #define QEDI_MAX_BD_LEN 0xffff
51 #define QEDI_BD_SPLIT_SZ 0x1000
52 #define QEDI_PAGE_SIZE 4096
53 #define QEDI_FAST_SGE_COUNT 4
54 /* MAX Length for cached SGL */
55 #define MAX_SGLEN_FOR_CACHESGL ((1U << 16) - 1)
57 #define MIN_NUM_CPUS_MSIX(x) min_t(u32, x->dev_info.num_cqs, \
60 #define QEDI_LOCAL_PORT_MIN 60000
61 #define QEDI_LOCAL_PORT_MAX 61024
62 #define QEDI_LOCAL_PORT_RANGE (QEDI_LOCAL_PORT_MAX - QEDI_LOCAL_PORT_MIN)
63 #define QEDI_LOCAL_PORT_INVALID 0xffff
65 #define RX_RING (TX_RX_RING - 1)
66 #define LL2_SINGLE_BUF_SIZE 0x400
67 #define QEDI_PAGE_SIZE 4096
68 #define QEDI_PAGE_ALIGN(addr) ALIGN(addr, QEDI_PAGE_SIZE)
69 #define QEDI_PAGE_MASK (~((QEDI_PAGE_SIZE) - 1))
71 #define QEDI_PAGE_SIZE 4096
72 #define QEDI_HW_DMA_BOUNDARY 0xfff
73 #define QEDI_PATH_HANDLE 0xFE0000000UL
80 struct qedi_nvm_iscsi_image
{
81 struct nvm_iscsi_cfg iscsi_cfg
;
85 struct qedi_uio_ctrl
{
113 #define QEDI_RX_DESC_CNT (QEDI_PAGE_SIZE / sizeof(struct qedi_rx_bd))
114 #define QEDI_MAX_RX_DESC_CNT (QEDI_RX_DESC_CNT - 1)
115 #define QEDI_NUM_RX_BD (QEDI_RX_DESC_CNT * 1)
116 #define QEDI_MAX_RX_BD (QEDI_NUM_RX_BD - 1)
118 #define QEDI_NEXT_RX_IDX(x) ((((x) & (QEDI_MAX_RX_DESC_CNT)) == \
119 (QEDI_MAX_RX_DESC_CNT - 1)) ? \
122 struct qedi_uio_dev
{
123 struct uio_info qedi_uinfo
;
125 struct list_head list
;
136 struct qedi_ctx
*qedi
;
137 struct pci_dev
*pdev
;
141 /* List to maintain the skb pointers */
142 struct skb_work_list
{
143 struct list_head list
;
148 /* Queue sizes in number of elements */
149 #define QEDI_SQ_SIZE MAX_OUSTANDING_TASKS_PER_CON
150 #define QEDI_CQ_SIZE 2048
151 #define QEDI_CMDQ_SIZE QEDI_MAX_ISCSI_TASK
152 #define QEDI_PROTO_CQ_PROD_IDX 0
154 struct qedi_glbl_q_params
{
155 u64 hw_p_cq
; /* Completion queue PBL */
156 u64 hw_p_rq
; /* Request queue PBL */
157 u64 hw_p_cmdq
; /* Command queue PBL */
160 struct global_queue
{
164 u32 cq_cons_idx
; /* Completion queue consumer index */
167 dma_addr_t cq_pbl_dma
;
172 struct qedi_fastpath
{
173 struct qed_sb_info
*sb_info
;
175 #define QEDI_NAME_SIZE 16
176 char name
[QEDI_NAME_SIZE
];
177 struct qedi_ctx
*qedi
;
180 /* Used to pass fastpath information needed to process CQEs */
181 struct qedi_io_work
{
182 struct list_head list
;
183 struct iscsi_cqe_solicited cqe
;
188 * struct iscsi_cid_queue - Per adapter iscsi cid queue
190 * @cid_que_base: queue base memory
191 * @cid_que: queue memory pointer
192 * @cid_q_prod_idx: produce index
193 * @cid_q_cons_idx: consumer index
194 * @cid_q_max_idx: max index. used to detect wrap around condition
195 * @cid_free_cnt: queue size
196 * @conn_cid_tbl: iscsi cid to conn structure mapping table
198 * Per adapter iSCSI CID Queue
200 struct iscsi_cid_queue
{
207 struct qedi_conn
**conn_cid_tbl
;
210 struct qedi_portid_tbl
{
211 spinlock_t lock
; /* Port id lock */
215 unsigned long *table
;
218 struct qedi_itt_map
{
220 struct qedi_cmd
*p_cmd
;
223 /* I/O tracing entry */
224 #define QEDI_IO_TRACE_SIZE 2048
226 #define QEDI_IO_TRACE_REQ 0
227 #define QEDI_IO_TRACE_RSP 1
231 u32 port_id
; /* Remote port fabric ID */
233 u8 op
; /* SCSI CDB */
235 unsigned int bufflen
; /* SCSI buffer length */
236 unsigned int sg_count
; /* Number of SG elements */
237 u8 fast_sgs
; /* number of fast sgls */
238 u8 slow_sgs
; /* number of slow sgls */
239 u8 cached_sgs
; /* number of cached sgls */
240 int result
; /* Result passed back to mid-layer */
241 unsigned long jiffies
; /* Time stamp when I/O logged */
242 int refcount
; /* Reference count for task id */
243 unsigned int blk_req_cpu
; /* CPU that the task is queued on by
246 unsigned int req_cpu
; /* CPU that the task is queued on */
247 unsigned int intr_cpu
; /* Interrupt CPU that the task is received on */
248 unsigned int blk_rsp_cpu
;/* CPU that task is actually processed and
249 * returned to blk layer
256 /* Number of entries in BDQ */
257 #define QEDI_BDQ_NUM 256
258 #define QEDI_BDQ_BUF_SIZE 256
260 /* DMA coherent buffers for BDQ */
261 struct qedi_bdq_buf
{
266 /* Main port level struct */
268 struct qedi_dbg_ctx dbg_ctx
;
269 struct Scsi_Host
*shost
;
270 struct pci_dev
*pdev
;
271 struct qed_dev
*cdev
;
272 struct qed_dev_iscsi_info dev_info
;
273 struct qed_int_info int_info
;
274 struct qedi_glbl_q_params
*p_cpuq
;
275 struct global_queue
**global_queues
;
276 /* uio declaration */
277 struct qedi_uio_dev
*udev
;
278 struct list_head ll2_skb_list
;
279 spinlock_t ll2_lock
; /* Light L2 lock */
280 spinlock_t hba_lock
; /* per port lock */
281 struct task_struct
*ll2_recv_thread
;
283 #define UIO_DEV_OPENED 1
284 #define QEDI_IOTHREAD_WAKE 2
285 #define QEDI_IN_RECOVERY 5
286 #define QEDI_IN_OFFLINE 6
292 /* Physical address of above array */
293 dma_addr_t hw_p_cpuq
;
295 struct qedi_bdq_buf bdq
[QEDI_BDQ_NUM
];
297 dma_addr_t bdq_pbl_dma
;
298 size_t bdq_pbl_mem_size
;
300 dma_addr_t bdq_pbl_list_dma
;
301 u8 bdq_pbl_list_num_entries
;
302 struct qedi_nvm_iscsi_image
*iscsi_image
;
303 dma_addr_t nvm_buf_dma
;
304 void __iomem
*bdq_primary_prod
;
305 void __iomem
*bdq_secondary_prod
;
311 u32 max_active_conns
;
313 struct iscsi_cid_queue cid_que
;
314 struct qedi_endpoint
**ep_tbl
;
315 struct qedi_portid_tbl lcl_port_tbl
;
317 /* Rx fast path intr context */
318 struct qed_sb_info
*sb_array
;
319 struct qedi_fastpath
*fp_array
;
320 struct qed_iscsi_tid tasks
;
322 #define QEDI_LINK_DOWN 0
323 #define QEDI_LINK_UP 1
326 #define QEDI_RESERVE_TASK_ID 0
327 #define MAX_ISCSI_TASK_ENTRIES 4096
328 #define QEDI_INVALID_TASK_ID (MAX_ISCSI_TASK_ENTRIES + 1)
329 unsigned long task_idx_map
[MAX_ISCSI_TASK_ENTRIES
/ BITS_PER_LONG
];
330 struct qedi_itt_map
*itt_map
;
331 u16 tid_reuse_count
[QEDI_MAX_ISCSI_TASK
];
332 struct qed_pf_params pf_params
;
334 struct workqueue_struct
*tmf_thread
;
335 struct workqueue_struct
*offload_thread
;
339 struct workqueue_struct
*dpc_wq
;
341 spinlock_t task_idx_lock
; /* To protect gbl context */
345 struct qedi_io_log io_trace_buf
[QEDI_IO_TRACE_SIZE
];
346 spinlock_t io_trace_lock
; /* prtect trace Log buf */
348 unsigned int intr_cpu
;
356 atomic_t num_offloads
;
357 #define SYSFS_FLAG_FW_SEL_BOOT 2
360 struct iscsi_boot_kset
*boot_kset
;
362 /* Used for iscsi statistics */
363 struct mutex stats_lock
;
367 struct list_head list
;
368 struct qedi_ctx
*qedi
;
374 struct qedi_percpu_s
{
375 struct task_struct
*iothread
;
376 struct list_head work_list
;
377 spinlock_t p_work_lock
; /* Per cpu worker lock */
380 static inline void *qedi_get_task_mem(struct qed_iscsi_tid
*info
, u32 tid
)
382 return (info
->blocks
[tid
/ info
->num_tids_per_block
] +
383 (tid
% info
->num_tids_per_block
) * info
->size
);
386 #define QEDI_U64_HI(val) ((u32)(((u64)(val)) >> 32))
387 #define QEDI_U64_LO(val) ((u32)(((u64)(val)) & 0xffffffff))
389 #endif /* _QEDI_H_ */