blob: 39bc1857adc5482ff50c7f4ab12af7cae010d138 [file] [log] [blame]
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301/**
Jayamohan Kallickal533c1652013-04-05 20:38:34 -07002 * Copyright (C) 2005 - 2013 Emulex
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05303 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation. The full GNU General
8 * Public License is included in this distribution in the file called COPYING.
9 *
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070010 * Written by: Jayamohan Kallickal (jayamohan.kallickal@emulex.com)
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053011 *
12 * Contact Information:
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070013 * linux-drivers@emulex.com
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053014 *
Jayamohan Kallickal255fa9a2011-03-25 14:23:57 -070015 * Emulex
16 * 3333 Susan Street
17 * Costa Mesa, CA 92626
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053018 */
19
20#ifndef _BEISCSI_MAIN_
21#define _BEISCSI_MAIN_
22
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053023#include <linux/kernel.h>
24#include <linux/pci.h>
Randy Dunlap82c57022010-05-04 10:29:52 -070025#include <linux/if_ether.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053026#include <linux/in.h>
John Soni Jose99bc5d52012-08-20 23:00:18 +053027#include <linux/ctype.h>
28#include <linux/module.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053029#include <scsi/scsi.h>
30#include <scsi/scsi_cmnd.h>
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_host.h>
33#include <scsi/iscsi_proto.h>
34#include <scsi/libiscsi.h>
35#include <scsi/scsi_transport_iscsi.h>
36
37#include "be.h"
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053038#define DRV_NAME "be2iscsi"
Jayamohan Kallickal96e58ce2013-04-05 20:38:38 -070039#define BUILD_STR "10.0.467.0"
Jayamohan Kallickal2f635882012-04-03 23:41:45 -050040#define BE_NAME "Emulex OneConnect" \
41 "Open-iSCSI Driver version" BUILD_STR
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053042#define DRV_DESC BE_NAME " " "Driver"
43
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +053044#define BE_VENDOR_ID 0x19A2
John Soni Jose139a1b12012-10-20 04:43:20 +053045#define ELX_VENDOR_ID 0x10DF
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +053046/* DEVICE ID's for BE2 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053047#define BE_DEVICE_ID1 0x212
48#define OC_DEVICE_ID1 0x702
49#define OC_DEVICE_ID2 0x703
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +053050
51/* DEVICE ID's for BE3 */
52#define BE_DEVICE_ID2 0x222
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +053053#define OC_DEVICE_ID3 0x712
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053054
John Soni Jose139a1b12012-10-20 04:43:20 +053055/* DEVICE ID for SKH */
56#define OC_SKH_ID1 0x722
57
Jayamohan Kallickal7da50872010-01-05 05:04:12 +053058#define BE2_IO_DEPTH 1024
59#define BE2_MAX_SESSIONS 256
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053060#define BE2_CMDS_PER_CXN 128
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053061#define BE2_TMFS 16
62#define BE2_NOPOUT_REQ 16
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053063#define BE2_SGE 32
64#define BE2_DEFPDU_HDR_SZ 64
65#define BE2_DEFPDU_DATA_SZ 8192
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053066
John Soni Jose22abeef2012-10-20 04:43:32 +053067#define MAX_CPUS 64
68#define BEISCSI_MAX_NUM_CPUS 7
Jayamohan Kallickalbf9131c2013-04-05 20:38:24 -070069#define OC_SKH_MAX_NUM_CPUS 31
John Soni Jose22abeef2012-10-20 04:43:32 +053070
Jayamohan Kallickal22661e22013-04-05 20:38:28 -070071#define BEISCSI_VER_STRLEN 32
John Soni Jose22abeef2012-10-20 04:43:32 +053072
Jayamohan Kallickalaa359032010-01-07 01:51:04 +053073#define BEISCSI_SGLIST_ELEMENTS 30
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053074
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053075#define BEISCSI_CMD_PER_LUN 128 /* scsi_host->cmd_per_lun */
Jayamohan Kallickale919dee2010-07-22 04:30:32 +053076#define BEISCSI_MAX_SECTORS 2048 /* scsi_host->max_sectors */
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -070077#define BEISCSI_TEMPLATE_HDR_PER_CXN_SIZE 128 /* Template size per cxn */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053078
79#define BEISCSI_MAX_CMD_LEN 16 /* scsi_host->max_cmd_len */
80#define BEISCSI_NUM_MAX_LUN 256 /* scsi_host->max_lun */
81#define BEISCSI_NUM_DEVICES_SUPPORTED 0x01
82#define BEISCSI_MAX_FRAGS_INIT 192
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +053083#define BE_NUM_MSIX_ENTRIES 1
Jayamohan Kallickale9b91192010-07-22 04:24:53 +053084
85#define MPU_EP_CONTROL 0
86#define MPU_EP_SEMAPHORE 0xac
87#define BE2_SOFT_RESET 0x5c
88#define BE2_PCI_ONLINE0 0xb0
89#define BE2_PCI_ONLINE1 0xb4
90#define BE2_SET_RESET 0x80
91#define BE2_MPU_IRAM_ONLINE 0x00000080
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053092
93#define BE_SENSE_INFO_SIZE 258
94#define BE_ISCSI_PDU_HEADER_SIZE 64
95#define BE_MIN_MEM_SIZE 16384
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +053096#define MAX_CMD_SZ 65536
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053097#define IIOC_SCSI_DATA 0x05 /* Write Operation */
98
John Soni Jose9aef4202012-08-20 23:00:08 +053099#define INVALID_SESS_HANDLE 0xFFFFFFFF
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530100
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530101#define BE_ADAPTER_UP 0x00000000
102#define BE_ADAPTER_LINK_DOWN 0x00000001
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530103/**
104 * hardware needs the async PDU buffers to be posted in multiples of 8
105 * So have atleast 8 of them by default
106 */
107
108#define HWI_GET_ASYNC_PDU_CTX(phwi) (phwi->phwi_ctxt->pasync_ctx)
109
110/********* Memory BAR register ************/
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530111#define PCICFG_MEMBAR_CTRL_INT_CTRL_OFFSET 0xfc
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530112/**
113 * Host Interrupt Enable, if set interrupts are enabled although "PCI Interrupt
114 * Disable" may still globally block interrupts in addition to individual
115 * interrupt masks; a mechanism for the device driver to block all interrupts
116 * atomically without having to arbitrate for the PCI Interrupt Disable bit
117 * with the OS.
118 */
119#define MEMBAR_CTRL_INT_CTRL_HOSTINTR_MASK (1 << 29) /* bit 29 */
120
121/********* ISR0 Register offset **********/
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530122#define CEV_ISR0_OFFSET 0xC18
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530123#define CEV_ISR_SIZE 4
124
125/**
126 * Macros for reading/writing a protection domain or CSR registers
127 * in BladeEngine.
128 */
129
130#define DB_TXULP0_OFFSET 0x40
131#define DB_RXULP0_OFFSET 0xA0
132/********* Event Q door bell *************/
133#define DB_EQ_OFFSET DB_CQ_OFFSET
134#define DB_EQ_RING_ID_MASK 0x1FF /* bits 0 - 8 */
135/* Clear the interrupt for this eq */
136#define DB_EQ_CLR_SHIFT (9) /* bit 9 */
137/* Must be 1 */
138#define DB_EQ_EVNT_SHIFT (10) /* bit 10 */
139/* Number of event entries processed */
140#define DB_EQ_NUM_POPPED_SHIFT (16) /* bits 16 - 28 */
141/* Rearm bit */
142#define DB_EQ_REARM_SHIFT (29) /* bit 29 */
143
144/********* Compl Q door bell *************/
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530145#define DB_CQ_OFFSET 0x120
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530146#define DB_CQ_RING_ID_MASK 0x3FF /* bits 0 - 9 */
147/* Number of event entries processed */
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530148#define DB_CQ_NUM_POPPED_SHIFT (16) /* bits 16 - 28 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530149/* Rearm bit */
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530150#define DB_CQ_REARM_SHIFT (29) /* bit 29 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530151
152#define GET_HWI_CONTROLLER_WS(pc) (pc->phwi_ctrlr)
153#define HWI_GET_DEF_BUFQ_ID(pc) (((struct hwi_controller *)\
154 (GET_HWI_CONTROLLER_WS(pc)))->default_pdu_data.id)
155#define HWI_GET_DEF_HDRQ_ID(pc) (((struct hwi_controller *)\
156 (GET_HWI_CONTROLLER_WS(pc)))->default_pdu_hdr.id)
157
158#define PAGES_REQUIRED(x) \
159 ((x < PAGE_SIZE) ? 1 : ((x + PAGE_SIZE - 1) / PAGE_SIZE))
160
Jayamohan Kallickal8fcfb212011-08-24 16:05:30 -0700161#define BEISCSI_MSI_NAME 20 /* size of msi_name string */
162
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530163enum be_mem_enum {
164 HWI_MEM_ADDN_CONTEXT,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530165 HWI_MEM_WRB,
166 HWI_MEM_WRBH,
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530167 HWI_MEM_SGLH,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530168 HWI_MEM_SGE,
Jayamohan Kallickal15a90fe2013-09-28 15:35:38 -0700169 HWI_MEM_TEMPLATE_HDR,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530170 HWI_MEM_ASYNC_HEADER_BUF, /* 5 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530171 HWI_MEM_ASYNC_DATA_BUF,
172 HWI_MEM_ASYNC_HEADER_RING,
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530173 HWI_MEM_ASYNC_DATA_RING,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530174 HWI_MEM_ASYNC_HEADER_HANDLE,
Jayamohan Kallickal457ff3b2010-07-22 04:16:00 +0530175 HWI_MEM_ASYNC_DATA_HANDLE, /* 10 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530176 HWI_MEM_ASYNC_PDU_CONTEXT,
177 ISCSI_MEM_GLOBAL_HEADER,
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530178 SE_MEM_MAX
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530179};
180
181struct be_bus_address32 {
182 unsigned int address_lo;
183 unsigned int address_hi;
184};
185
186struct be_bus_address64 {
187 unsigned long long address;
188};
189
190struct be_bus_address {
191 union {
192 struct be_bus_address32 a32;
193 struct be_bus_address64 a64;
194 } u;
195};
196
197struct mem_array {
198 struct be_bus_address bus_address; /* Bus address of location */
199 void *virtual_address; /* virtual address to the location */
200 unsigned int size; /* Size required by memory block */
201};
202
203struct be_mem_descriptor {
204 unsigned int index; /* Index of this memory parameter */
205 unsigned int category; /* type indicates cached/non-cached */
206 unsigned int num_elements; /* number of elements in this
207 * descriptor
208 */
209 unsigned int alignment_mask; /* Alignment mask for this block */
210 unsigned int size_in_bytes; /* Size required by memory block */
211 struct mem_array *mem_array;
212};
213
214struct sgl_handle {
215 unsigned int sgl_index;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530216 unsigned int type;
217 unsigned int cid;
218 struct iscsi_task *task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530219 struct iscsi_sge *pfrag;
220};
221
222struct hba_parameters {
223 unsigned int ios_per_ctrl;
224 unsigned int cxns_per_ctrl;
225 unsigned int asyncpdus_per_ctrl;
226 unsigned int icds_per_ctrl;
227 unsigned int num_sge_per_io;
228 unsigned int defpdu_hdr_sz;
229 unsigned int defpdu_data_sz;
230 unsigned int num_cq_entries;
231 unsigned int num_eq_entries;
232 unsigned int wrbs_per_cxn;
233 unsigned int crashmode;
234 unsigned int hba_num;
235
236 unsigned int mgmt_ws_sz;
237 unsigned int hwi_ws_sz;
238
239 unsigned int eto;
240 unsigned int ldto;
241
242 unsigned int dbg_flags;
243 unsigned int num_cxn;
244
245 unsigned int eq_timer;
246 /**
247 * These are calculated from other params. They're here
248 * for debug purposes
249 */
250 unsigned int num_mcc_pages;
251 unsigned int num_mcc_cq_pages;
252 unsigned int num_cq_pages;
253 unsigned int num_eq_pages;
254
255 unsigned int num_async_pdu_buf_pages;
256 unsigned int num_async_pdu_buf_sgl_pages;
257 unsigned int num_async_pdu_buf_cq_pages;
258
259 unsigned int num_async_pdu_hdr_pages;
260 unsigned int num_async_pdu_hdr_sgl_pages;
261 unsigned int num_async_pdu_hdr_cq_pages;
262
263 unsigned int num_sge;
264};
265
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530266struct invalidate_command_table {
267 unsigned short icd;
268 unsigned short cid;
269} __packed;
270
Jayamohan Kallickal2c9dfd32013-04-05 20:38:26 -0700271#define chip_be2(phba) (phba->generation == BE_GEN2)
272#define chip_be3_r(phba) (phba->generation == BE_GEN3)
273#define is_chip_be2_be3r(phba) (chip_be3_r(phba) || (chip_be2(phba)))
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700274
275#define BEISCSI_ULP0 0
276#define BEISCSI_ULP1 1
277#define BEISCSI_ULP_COUNT 2
278#define BEISCSI_ULP0_LOADED 0x01
279#define BEISCSI_ULP1_LOADED 0x02
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530280struct beiscsi_hba {
281 struct hba_parameters params;
282 struct hwi_controller *phwi_ctrlr;
283 unsigned int mem_req[SE_MEM_MAX];
284 /* PCI BAR mapped addresses */
285 u8 __iomem *csr_va; /* CSR */
286 u8 __iomem *db_va; /* Door Bell */
287 u8 __iomem *pci_va; /* PCI Config */
288 struct be_bus_address csr_pa; /* CSR */
289 struct be_bus_address db_pa; /* CSR */
290 struct be_bus_address pci_pa; /* CSR */
291 /* PCI representation of our HBA */
292 struct pci_dev *pcidev;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530293 unsigned short asic_revision;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530294 unsigned int num_cpus;
295 unsigned int nxt_cqid;
John Soni Jose22abeef2012-10-20 04:43:32 +0530296 struct msix_entry msix_entries[MAX_CPUS];
297 char *msi_name[MAX_CPUS];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530298 bool msix_enabled;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530299 struct be_mem_descriptor *init_mem;
300
301 unsigned short io_sgl_alloc_index;
302 unsigned short io_sgl_free_index;
303 unsigned short io_sgl_hndl_avbl;
304 struct sgl_handle **io_sgl_hndl_base;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530305 struct sgl_handle **sgl_hndl_array;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530306
307 unsigned short eh_sgl_alloc_index;
308 unsigned short eh_sgl_free_index;
309 unsigned short eh_sgl_hndl_avbl;
310 struct sgl_handle **eh_sgl_hndl_base;
311 spinlock_t io_sgl_lock;
312 spinlock_t mgmt_sgl_lock;
313 spinlock_t isr_lock;
Jayamohan Kallickal8f09a3b2013-09-28 15:35:42 -0700314 spinlock_t async_pdu_lock;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530315 unsigned int age;
316 unsigned short avlbl_cids;
317 unsigned short cid_alloc;
318 unsigned short cid_free;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530319 struct list_head hba_queue;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700320#define BE_MAX_SESSION 2048
321#define BE_SET_CID_TO_CRI(cri_index, cid) \
322 (phba->cid_to_cri_map[cid] = cri_index)
323#define BE_GET_CRI_FROM_CID(cid) (phba->cid_to_cri_map[cid])
324 unsigned short cid_to_cri_map[BE_MAX_SESSION];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530325 unsigned short *cid_array;
326 struct iscsi_endpoint **ep_array;
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700327 struct beiscsi_conn **conn_table;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530328 struct iscsi_boot_kset *boot_kset;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530329 struct Scsi_Host *shost;
Mike Christie0e438952012-04-03 23:41:51 -0500330 struct iscsi_iface *ipv4_iface;
331 struct iscsi_iface *ipv6_iface;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530332 struct {
333 /**
334 * group together since they are used most frequently
335 * for cid to cri conversion
336 */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530337 unsigned int phys_port;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700338 unsigned int iscsi_cid_start[BEISCSI_ULP_COUNT];
339#define BEISCSI_GET_CID_COUNT(phba, ulp_num) \
340 (phba->fw_config.iscsi_cid_count[ulp_num])
341 unsigned int iscsi_cid_count[BEISCSI_ULP_COUNT];
342 unsigned int iscsi_icd_count[BEISCSI_ULP_COUNT];
343 unsigned int iscsi_icd_start[BEISCSI_ULP_COUNT];
344 unsigned int iscsi_chain_start[BEISCSI_ULP_COUNT];
345 unsigned int iscsi_chain_count[BEISCSI_ULP_COUNT];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530346
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530347 unsigned short iscsi_features;
Jayamohan Kallickal843ae752013-09-28 15:35:44 -0700348 uint16_t dual_ulp_aware;
349 unsigned long ulp_supported;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530350 } fw_config;
351
John Soni Josee175def2012-10-20 04:45:40 +0530352 unsigned int state;
353 bool fw_timeout;
354 bool ue_detected;
355 struct delayed_work beiscsi_hw_check_task;
356
Jayamohan Kallickal6c831852013-09-28 15:35:40 -0700357 bool mac_addr_set;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530358 u8 mac_address[ETH_ALEN];
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700359 char fw_ver_str[BEISCSI_VER_STRLEN];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530360 char wq_name[20];
361 struct workqueue_struct *wq; /* The actuak work queue */
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530362 struct be_ctrl_info ctrl;
Jayamohan Kallickalf98c96b2010-02-11 05:11:15 +0530363 unsigned int generation;
Mike Christie0e438952012-04-03 23:41:51 -0500364 unsigned int interface_handle;
Jayamohan Kallickalc7acc5b2010-07-22 04:29:18 +0530365 struct mgmt_session_info boot_sess;
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530366 struct invalidate_command_table inv_tbl[128];
367
John Soni Jose99bc5d52012-08-20 23:00:18 +0530368 unsigned int attr_log_enable;
John Soni Jose09a10932012-10-20 04:44:23 +0530369 int (*iotask_fn)(struct iscsi_task *,
370 struct scatterlist *sg,
371 uint32_t num_sg, uint32_t xferlen,
372 uint32_t writedir);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530373};
374
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +0530375struct beiscsi_session {
376 struct pci_pool *bhs_pool;
377};
378
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530379/**
380 * struct beiscsi_conn - iscsi connection structure
381 */
382struct beiscsi_conn {
383 struct iscsi_conn *conn;
384 struct beiscsi_hba *phba;
385 u32 exp_statsn;
386 u32 beiscsi_conn_cid;
387 struct beiscsi_endpoint *ep;
388 unsigned short login_in_progress;
Jayamohan Kallickald2cecf02010-07-22 04:25:40 +0530389 struct wrb_handle *plogin_wrb_handle;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530390 struct sgl_handle *plogin_sgl_handle;
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +0530391 struct beiscsi_session *beiscsi_sess;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530392 struct iscsi_task *task;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530393};
394
395/* This structure is used by the chip */
396struct pdu_data_out {
397 u32 dw[12];
398};
399/**
400 * Pseudo amap definition in which each bit of the actual structure is defined
401 * as a byte: used to calculate offset/shift/mask of each field
402 */
403struct amap_pdu_data_out {
404 u8 opcode[6]; /* opcode */
405 u8 rsvd0[2]; /* should be 0 */
406 u8 rsvd1[7];
407 u8 final_bit; /* F bit */
408 u8 rsvd2[16];
409 u8 ahs_length[8]; /* no AHS */
410 u8 data_len_hi[8];
411 u8 data_len_lo[16]; /* DataSegmentLength */
412 u8 lun[64];
413 u8 itt[32]; /* ITT; initiator task tag */
414 u8 ttt[32]; /* TTT; valid for R2T or 0xffffffff */
415 u8 rsvd3[32];
416 u8 exp_stat_sn[32];
417 u8 rsvd4[32];
418 u8 data_sn[32];
419 u8 buffer_offset[32];
420 u8 rsvd5[32];
421};
422
423struct be_cmd_bhs {
Nicholas Bellinger12352182011-05-27 11:16:33 +0000424 struct iscsi_scsi_req iscsi_hdr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530425 unsigned char pad1[16];
426 struct pdu_data_out iscsi_data_pdu;
427 unsigned char pad2[BE_SENSE_INFO_SIZE -
428 sizeof(struct pdu_data_out)];
429};
430
431struct beiscsi_io_task {
432 struct wrb_handle *pwrb_handle;
433 struct sgl_handle *psgl_handle;
434 struct beiscsi_conn *conn;
435 struct scsi_cmnd *scsi_cmnd;
436 unsigned int cmd_sn;
437 unsigned int flags;
438 unsigned short cid;
439 unsigned short header_len;
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530440 itt_t libiscsi_itt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530441 struct be_cmd_bhs *cmd_bhs;
442 struct be_bus_address bhs_pa;
443 unsigned short bhs_len;
John Soni Josed629c472012-10-20 04:42:00 +0530444 dma_addr_t mtask_addr;
445 uint32_t mtask_data_count;
John Soni Jose09a10932012-10-20 04:44:23 +0530446 uint8_t wrb_type;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530447};
448
449struct be_nonio_bhs {
450 struct iscsi_hdr iscsi_hdr;
451 unsigned char pad1[16];
452 struct pdu_data_out iscsi_data_pdu;
453 unsigned char pad2[BE_SENSE_INFO_SIZE -
454 sizeof(struct pdu_data_out)];
455};
456
457struct be_status_bhs {
Nicholas Bellinger12352182011-05-27 11:16:33 +0000458 struct iscsi_scsi_req iscsi_hdr;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530459 unsigned char pad1[16];
460 /**
461 * The plus 2 below is to hold the sense info length that gets
462 * DMA'ed by RxULP
463 */
464 unsigned char sense_info[BE_SENSE_INFO_SIZE];
465};
466
467struct iscsi_sge {
468 u32 dw[4];
469};
470
471/**
472 * Pseudo amap definition in which each bit of the actual structure is defined
473 * as a byte: used to calculate offset/shift/mask of each field
474 */
475struct amap_iscsi_sge {
476 u8 addr_hi[32];
477 u8 addr_lo[32];
478 u8 sge_offset[22]; /* DWORD 2 */
479 u8 rsvd0[9]; /* DWORD 2 */
480 u8 last_sge; /* DWORD 2 */
481 u8 len[17]; /* DWORD 3 */
482 u8 rsvd1[15]; /* DWORD 3 */
483};
484
485struct beiscsi_offload_params {
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700486 u32 dw[6];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530487};
488
489#define OFFLD_PARAMS_ERL 0x00000003
490#define OFFLD_PARAMS_DDE 0x00000004
491#define OFFLD_PARAMS_HDE 0x00000008
492#define OFFLD_PARAMS_IR2T 0x00000010
493#define OFFLD_PARAMS_IMD 0x00000020
John Soni Joseacb96932012-10-20 04:44:35 +0530494#define OFFLD_PARAMS_DATA_SEQ_INORDER 0x00000040
495#define OFFLD_PARAMS_PDU_SEQ_INORDER 0x00000080
496#define OFFLD_PARAMS_MAX_R2T 0x00FFFF00
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530497
498/**
499 * Pseudo amap definition in which each bit of the actual structure is defined
500 * as a byte: used to calculate offset/shift/mask of each field
501 */
502struct amap_beiscsi_offload_params {
503 u8 max_burst_length[32];
504 u8 max_send_data_segment_length[32];
505 u8 first_burst_length[32];
506 u8 erl[2];
507 u8 dde[1];
508 u8 hde[1];
509 u8 ir2t[1];
510 u8 imd[1];
John Soni Joseacb96932012-10-20 04:44:35 +0530511 u8 data_seq_inorder[1];
512 u8 pdu_seq_inorder[1];
513 u8 max_r2t[16];
514 u8 pad[8];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530515 u8 exp_statsn[32];
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700516 u8 max_recv_data_segment_length[32];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530517};
518
519/* void hwi_complete_drvr_msgs(struct beiscsi_conn *beiscsi_conn,
520 struct beiscsi_hba *phba, struct sol_cqe *psol);*/
521
522struct async_pdu_handle {
523 struct list_head link;
524 struct be_bus_address pa;
525 void *pbuffer;
526 unsigned int consumed;
527 unsigned char index;
528 unsigned char is_header;
529 unsigned short cri;
530 unsigned long buffer_len;
531};
532
533struct hwi_async_entry {
534 struct {
535 unsigned char hdr_received;
536 unsigned char hdr_len;
537 unsigned short bytes_received;
538 unsigned int bytes_needed;
539 struct list_head list;
540 } wait_queue;
541
542 struct list_head header_busy_list;
543 struct list_head data_busy_list;
544};
545
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530546struct hwi_async_pdu_context {
547 struct {
548 struct be_bus_address pa_base;
549 void *va_base;
550 void *ring_base;
551 struct async_pdu_handle *handle_base;
552
553 unsigned int host_write_ptr;
554 unsigned int ep_read_ptr;
555 unsigned int writables;
556
557 unsigned int free_entries;
558 unsigned int busy_entries;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530559
560 struct list_head free_list;
561 } async_header;
562
563 struct {
564 struct be_bus_address pa_base;
565 void *va_base;
566 void *ring_base;
567 struct async_pdu_handle *handle_base;
568
569 unsigned int host_write_ptr;
570 unsigned int ep_read_ptr;
571 unsigned int writables;
572
573 unsigned int free_entries;
574 unsigned int busy_entries;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530575 struct list_head free_list;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530576 } async_data;
577
Jayamohan Kallickaldc63aac2012-04-03 23:41:36 -0500578 unsigned int buffer_size;
579 unsigned int num_entries;
580
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530581 /**
582 * This is a varying size list! Do not add anything
583 * after this entry!!
584 */
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700585 struct hwi_async_entry *async_entry;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530586};
587
588#define PDUCQE_CODE_MASK 0x0000003F
589#define PDUCQE_DPL_MASK 0xFFFF0000
590#define PDUCQE_INDEX_MASK 0x0000FFFF
591
592struct i_t_dpdu_cqe {
593 u32 dw[4];
594} __packed;
595
596/**
597 * Pseudo amap definition in which each bit of the actual structure is defined
598 * as a byte: used to calculate offset/shift/mask of each field
599 */
600struct amap_i_t_dpdu_cqe {
601 u8 db_addr_hi[32];
602 u8 db_addr_lo[32];
603 u8 code[6];
604 u8 cid[10];
605 u8 dpl[16];
606 u8 index[16];
607 u8 num_cons[10];
608 u8 rsvd0[4];
609 u8 final;
610 u8 valid;
611} __packed;
612
John Soni Jose73133262012-10-20 04:44:49 +0530613struct amap_i_t_dpdu_cqe_v2 {
614 u8 db_addr_hi[32]; /* DWORD 0 */
615 u8 db_addr_lo[32]; /* DWORD 1 */
616 u8 code[6]; /* DWORD 2 */
617 u8 num_cons; /* DWORD 2*/
618 u8 rsvd0[8]; /* DWORD 2 */
619 u8 dpl[17]; /* DWORD 2 */
620 u8 index[16]; /* DWORD 3 */
621 u8 cid[13]; /* DWORD 3 */
622 u8 rsvd1; /* DWORD 3 */
623 u8 final; /* DWORD 3 */
624 u8 valid; /* DWORD 3 */
625} __packed;
626
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530627#define CQE_VALID_MASK 0x80000000
628#define CQE_CODE_MASK 0x0000003F
629#define CQE_CID_MASK 0x0000FFC0
630
631#define EQE_VALID_MASK 0x00000001
632#define EQE_MAJORCODE_MASK 0x0000000E
633#define EQE_RESID_MASK 0xFFFF0000
634
635struct be_eq_entry {
636 u32 dw[1];
637} __packed;
638
639/**
640 * Pseudo amap definition in which each bit of the actual structure is defined
641 * as a byte: used to calculate offset/shift/mask of each field
642 */
643struct amap_eq_entry {
644 u8 valid; /* DWORD 0 */
645 u8 major_code[3]; /* DWORD 0 */
646 u8 minor_code[12]; /* DWORD 0 */
647 u8 resource_id[16]; /* DWORD 0 */
648
649} __packed;
650
651struct cq_db {
652 u32 dw[1];
653} __packed;
654
655/**
656 * Pseudo amap definition in which each bit of the actual structure is defined
657 * as a byte: used to calculate offset/shift/mask of each field
658 */
659struct amap_cq_db {
660 u8 qid[10];
661 u8 event[1];
662 u8 rsvd0[5];
663 u8 num_popped[13];
664 u8 rearm[1];
665 u8 rsvd1[2];
666} __packed;
667
668void beiscsi_process_eq(struct beiscsi_hba *phba);
669
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530670struct iscsi_wrb {
671 u32 dw[16];
672} __packed;
673
674#define WRB_TYPE_MASK 0xF0000000
John Soni Jose09a10932012-10-20 04:44:23 +0530675#define SKH_WRB_TYPE_OFFSET 27
676#define BE_WRB_TYPE_OFFSET 28
677
678#define ADAPTER_SET_WRB_TYPE(pwrb, wrb_type, type_offset) \
679 (pwrb->dw[0] |= (wrb_type << type_offset))
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530680
681/**
682 * Pseudo amap definition in which each bit of the actual structure is defined
683 * as a byte: used to calculate offset/shift/mask of each field
684 */
685struct amap_iscsi_wrb {
686 u8 lun[14]; /* DWORD 0 */
687 u8 lt; /* DWORD 0 */
688 u8 invld; /* DWORD 0 */
689 u8 wrb_idx[8]; /* DWORD 0 */
690 u8 dsp; /* DWORD 0 */
691 u8 dmsg; /* DWORD 0 */
692 u8 undr_run; /* DWORD 0 */
693 u8 over_run; /* DWORD 0 */
694 u8 type[4]; /* DWORD 0 */
695 u8 ptr2nextwrb[8]; /* DWORD 1 */
696 u8 r2t_exp_dtl[24]; /* DWORD 1 */
697 u8 sgl_icd_idx[12]; /* DWORD 2 */
698 u8 rsvd0[20]; /* DWORD 2 */
699 u8 exp_data_sn[32]; /* DWORD 3 */
700 u8 iscsi_bhs_addr_hi[32]; /* DWORD 4 */
701 u8 iscsi_bhs_addr_lo[32]; /* DWORD 5 */
702 u8 cmdsn_itt[32]; /* DWORD 6 */
703 u8 dif_ref_tag[32]; /* DWORD 7 */
704 u8 sge0_addr_hi[32]; /* DWORD 8 */
705 u8 sge0_addr_lo[32]; /* DWORD 9 */
706 u8 sge0_offset[22]; /* DWORD 10 */
707 u8 pbs; /* DWORD 10 */
708 u8 dif_mode[2]; /* DWORD 10 */
709 u8 rsvd1[6]; /* DWORD 10 */
710 u8 sge0_last; /* DWORD 10 */
711 u8 sge0_len[17]; /* DWORD 11 */
712 u8 dif_meta_tag[14]; /* DWORD 11 */
713 u8 sge0_in_ddr; /* DWORD 11 */
714 u8 sge1_addr_hi[32]; /* DWORD 12 */
715 u8 sge1_addr_lo[32]; /* DWORD 13 */
716 u8 sge1_r2t_offset[22]; /* DWORD 14 */
717 u8 rsvd2[9]; /* DWORD 14 */
718 u8 sge1_last; /* DWORD 14 */
719 u8 sge1_len[17]; /* DWORD 15 */
720 u8 ref_sgl_icd_idx[12]; /* DWORD 15 */
721 u8 rsvd3[2]; /* DWORD 15 */
722 u8 sge1_in_ddr; /* DWORD 15 */
723
724} __packed;
725
John Soni Jose09a10932012-10-20 04:44:23 +0530726struct amap_iscsi_wrb_v2 {
727 u8 r2t_exp_dtl[25]; /* DWORD 0 */
728 u8 rsvd0[2]; /* DWORD 0*/
729 u8 type[5]; /* DWORD 0 */
730 u8 ptr2nextwrb[8]; /* DWORD 1 */
731 u8 wrb_idx[8]; /* DWORD 1 */
732 u8 lun[16]; /* DWORD 1 */
733 u8 sgl_idx[16]; /* DWORD 2 */
734 u8 ref_sgl_icd_idx[16]; /* DWORD 2 */
735 u8 exp_data_sn[32]; /* DWORD 3 */
736 u8 iscsi_bhs_addr_hi[32]; /* DWORD 4 */
737 u8 iscsi_bhs_addr_lo[32]; /* DWORD 5 */
738 u8 cq_id[16]; /* DWORD 6 */
739 u8 rsvd1[16]; /* DWORD 6 */
740 u8 cmdsn_itt[32]; /* DWORD 7 */
741 u8 sge0_addr_hi[32]; /* DWORD 8 */
742 u8 sge0_addr_lo[32]; /* DWORD 9 */
743 u8 sge0_offset[24]; /* DWORD 10 */
744 u8 rsvd2[7]; /* DWORD 10 */
745 u8 sge0_last; /* DWORD 10 */
746 u8 sge0_len[17]; /* DWORD 11 */
747 u8 rsvd3[7]; /* DWORD 11 */
748 u8 diff_enbl; /* DWORD 11 */
749 u8 u_run; /* DWORD 11 */
750 u8 o_run; /* DWORD 11 */
751 u8 invalid; /* DWORD 11 */
752 u8 dsp; /* DWORD 11 */
753 u8 dmsg; /* DWORD 11 */
754 u8 rsvd4; /* DWORD 11 */
755 u8 lt; /* DWORD 11 */
756 u8 sge1_addr_hi[32]; /* DWORD 12 */
757 u8 sge1_addr_lo[32]; /* DWORD 13 */
758 u8 sge1_r2t_offset[24]; /* DWORD 14 */
759 u8 rsvd5[7]; /* DWORD 14 */
760 u8 sge1_last; /* DWORD 14 */
761 u8 sge1_len[17]; /* DWORD 15 */
762 u8 rsvd6[15]; /* DWORD 15 */
763} __packed;
764
765
Jayamohan Kallickald5431482010-01-05 05:06:21 +0530766struct wrb_handle *alloc_wrb_handle(struct beiscsi_hba *phba, unsigned int cid);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530767void
768free_mgmt_sgl_handle(struct beiscsi_hba *phba, struct sgl_handle *psgl_handle);
769
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +0530770void beiscsi_process_all_cqs(struct work_struct *work);
Jayamohan Kallickal4a4a11b2013-04-05 20:38:31 -0700771void beiscsi_free_mgmt_task_handles(struct beiscsi_conn *beiscsi_conn,
772 struct iscsi_task *task);
Jayamohan Kallickal756d29c2010-01-05 05:10:46 +0530773
John Soni Jose7a158002012-10-20 04:45:51 +0530774static inline bool beiscsi_error(struct beiscsi_hba *phba)
775{
776 return phba->ue_detected || phba->fw_timeout;
777}
778
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530779struct pdu_nop_out {
780 u32 dw[12];
781};
782
783/**
784 * Pseudo amap definition in which each bit of the actual structure is defined
785 * as a byte: used to calculate offset/shift/mask of each field
786 */
787struct amap_pdu_nop_out {
788 u8 opcode[6]; /* opcode 0x00 */
789 u8 i_bit; /* I Bit */
790 u8 x_bit; /* reserved; should be 0 */
791 u8 fp_bit_filler1[7];
792 u8 f_bit; /* always 1 */
793 u8 reserved1[16];
794 u8 ahs_length[8]; /* no AHS */
795 u8 data_len_hi[8];
796 u8 data_len_lo[16]; /* DataSegmentLength */
797 u8 lun[64];
798 u8 itt[32]; /* initiator id for ping or 0xffffffff */
799 u8 ttt[32]; /* target id for ping or 0xffffffff */
800 u8 cmd_sn[32];
801 u8 exp_stat_sn[32];
802 u8 reserved5[128];
803};
804
805#define PDUBASE_OPCODE_MASK 0x0000003F
806#define PDUBASE_DATALENHI_MASK 0x0000FF00
807#define PDUBASE_DATALENLO_MASK 0xFFFF0000
808
809struct pdu_base {
810 u32 dw[16];
811} __packed;
812
813/**
814 * Pseudo amap definition in which each bit of the actual structure is defined
815 * as a byte: used to calculate offset/shift/mask of each field
816 */
817struct amap_pdu_base {
818 u8 opcode[6];
819 u8 i_bit; /* immediate bit */
820 u8 x_bit; /* reserved, always 0 */
821 u8 reserved1[24]; /* opcode-specific fields */
822 u8 ahs_length[8]; /* length units is 4 byte words */
823 u8 data_len_hi[8];
824 u8 data_len_lo[16]; /* DatasegmentLength */
825 u8 lun[64]; /* lun or opcode-specific fields */
826 u8 itt[32]; /* initiator task tag */
827 u8 reserved4[224];
828};
829
830struct iscsi_target_context_update_wrb {
831 u32 dw[16];
832} __packed;
833
834/**
835 * Pseudo amap definition in which each bit of the actual structure is defined
836 * as a byte: used to calculate offset/shift/mask of each field
837 */
John Soni Joseacb96932012-10-20 04:44:35 +0530838#define BE_TGT_CTX_UPDT_CMD 0x07
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530839struct amap_iscsi_target_context_update_wrb {
840 u8 lun[14]; /* DWORD 0 */
841 u8 lt; /* DWORD 0 */
842 u8 invld; /* DWORD 0 */
843 u8 wrb_idx[8]; /* DWORD 0 */
844 u8 dsp; /* DWORD 0 */
845 u8 dmsg; /* DWORD 0 */
846 u8 undr_run; /* DWORD 0 */
847 u8 over_run; /* DWORD 0 */
848 u8 type[4]; /* DWORD 0 */
849 u8 ptr2nextwrb[8]; /* DWORD 1 */
850 u8 max_burst_length[19]; /* DWORD 1 */
851 u8 rsvd0[5]; /* DWORD 1 */
852 u8 rsvd1[15]; /* DWORD 2 */
853 u8 max_send_data_segment_length[17]; /* DWORD 2 */
854 u8 first_burst_length[14]; /* DWORD 3 */
855 u8 rsvd2[2]; /* DWORD 3 */
856 u8 tx_wrbindex_drv_msg[8]; /* DWORD 3 */
857 u8 rsvd3[5]; /* DWORD 3 */
858 u8 session_state[3]; /* DWORD 3 */
859 u8 rsvd4[16]; /* DWORD 4 */
860 u8 tx_jumbo; /* DWORD 4 */
861 u8 hde; /* DWORD 4 */
862 u8 dde; /* DWORD 4 */
863 u8 erl[2]; /* DWORD 4 */
864 u8 domain_id[5]; /* DWORD 4 */
865 u8 mode; /* DWORD 4 */
866 u8 imd; /* DWORD 4 */
867 u8 ir2t; /* DWORD 4 */
868 u8 notpredblq[2]; /* DWORD 4 */
869 u8 compltonack; /* DWORD 4 */
870 u8 stat_sn[32]; /* DWORD 5 */
871 u8 pad_buffer_addr_hi[32]; /* DWORD 6 */
872 u8 pad_buffer_addr_lo[32]; /* DWORD 7 */
873 u8 pad_addr_hi[32]; /* DWORD 8 */
874 u8 pad_addr_lo[32]; /* DWORD 9 */
875 u8 rsvd5[32]; /* DWORD 10 */
876 u8 rsvd6[32]; /* DWORD 11 */
877 u8 rsvd7[32]; /* DWORD 12 */
878 u8 rsvd8[32]; /* DWORD 13 */
879 u8 rsvd9[32]; /* DWORD 14 */
880 u8 rsvd10[32]; /* DWORD 15 */
881
882} __packed;
883
John Soni Joseacb96932012-10-20 04:44:35 +0530884#define BEISCSI_MAX_RECV_DATASEG_LEN (64 * 1024)
885#define BEISCSI_MAX_CXNS 1
886struct amap_iscsi_target_context_update_wrb_v2 {
887 u8 max_burst_length[24]; /* DWORD 0 */
888 u8 rsvd0[3]; /* DWORD 0 */
889 u8 type[5]; /* DWORD 0 */
890 u8 ptr2nextwrb[8]; /* DWORD 1 */
891 u8 wrb_idx[8]; /* DWORD 1 */
892 u8 rsvd1[16]; /* DWORD 1 */
893 u8 max_send_data_segment_length[24]; /* DWORD 2 */
894 u8 rsvd2[8]; /* DWORD 2 */
895 u8 first_burst_length[24]; /* DWORD 3 */
896 u8 rsvd3[8]; /* DOWRD 3 */
897 u8 max_r2t[16]; /* DWORD 4 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700898 u8 rsvd4; /* DWORD 4 */
John Soni Joseacb96932012-10-20 04:44:35 +0530899 u8 hde; /* DWORD 4 */
900 u8 dde; /* DWORD 4 */
901 u8 erl[2]; /* DWORD 4 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700902 u8 rsvd5[6]; /* DWORD 4 */
John Soni Joseacb96932012-10-20 04:44:35 +0530903 u8 imd; /* DWORD 4 */
904 u8 ir2t; /* DWORD 4 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700905 u8 rsvd6[3]; /* DWORD 4 */
John Soni Joseacb96932012-10-20 04:44:35 +0530906 u8 stat_sn[32]; /* DWORD 5 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700907 u8 rsvd7[32]; /* DWORD 6 */
908 u8 rsvd8[32]; /* DWORD 7 */
John Soni Joseacb96932012-10-20 04:44:35 +0530909 u8 max_recv_dataseg_len[24]; /* DWORD 8 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700910 u8 rsvd9[8]; /* DWORD 8 */
911 u8 rsvd10[32]; /* DWORD 9 */
912 u8 rsvd11[32]; /* DWORD 10 */
John Soni Joseacb96932012-10-20 04:44:35 +0530913 u8 max_cxns[16]; /* DWORD 11 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700914 u8 rsvd12[11]; /* DWORD 11*/
John Soni Joseacb96932012-10-20 04:44:35 +0530915 u8 invld; /* DWORD 11 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700916 u8 rsvd13;/* DWORD 11*/
John Soni Joseacb96932012-10-20 04:44:35 +0530917 u8 dmsg; /* DWORD 11 */
918 u8 data_seq_inorder; /* DWORD 11 */
919 u8 pdu_seq_inorder; /* DWORD 11 */
Jayamohan Kallickal73316132013-09-28 15:35:41 -0700920 u8 rsvd14[32]; /*DWORD 12 */
921 u8 rsvd15[32]; /* DWORD 13 */
922 u8 rsvd16[32]; /* DWORD 14 */
923 u8 rsvd17[32]; /* DWORD 15 */
John Soni Joseacb96932012-10-20 04:44:35 +0530924} __packed;
925
926
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530927struct be_ring {
928 u32 pages; /* queue size in pages */
929 u32 id; /* queue id assigned by beklib */
930 u32 num; /* number of elements in queue */
931 u32 cidx; /* consumer index */
932 u32 pidx; /* producer index -- not used by most rings */
933 u32 item_size; /* size in bytes of one object */
934
935 void *va; /* The virtual address of the ring. This
936 * should be last to allow 32 & 64 bit debugger
937 * extensions to work.
938 */
939};
940
941struct hwi_wrb_context {
942 struct list_head wrb_handle_list;
943 struct list_head wrb_handle_drvr_list;
944 struct wrb_handle **pwrb_handle_base;
945 struct wrb_handle **pwrb_handle_basestd;
946 struct iscsi_wrb *plast_wrb;
947 unsigned short alloc_index;
948 unsigned short free_index;
949 unsigned short wrb_handles_available;
950 unsigned short cid;
951};
952
953struct hwi_controller {
954 struct list_head io_sgl_list;
955 struct list_head eh_sgl_list;
956 struct sgl_handle *psgl_handle_base;
957 unsigned int wrb_mem_index;
958
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700959 struct hwi_wrb_context *wrb_context;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530960 struct mcc_wrb *pmcc_wrb_base;
961 struct be_ring default_pdu_hdr;
962 struct be_ring default_pdu_data;
963 struct hwi_context_memory *phwi_ctxt;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530964};
965
966enum hwh_type_enum {
967 HWH_TYPE_IO = 1,
968 HWH_TYPE_LOGOUT = 2,
969 HWH_TYPE_TMF = 3,
970 HWH_TYPE_NOP = 4,
971 HWH_TYPE_IO_RD = 5,
972 HWH_TYPE_LOGIN = 11,
973 HWH_TYPE_INVALID = 0xFFFFFFFF
974};
975
976struct wrb_handle {
977 enum hwh_type_enum type;
978 unsigned short wrb_index;
979 unsigned short nxt_wrb_index;
980
981 struct iscsi_task *pio_handle;
982 struct iscsi_wrb *pwrb;
983};
984
985struct hwi_context_memory {
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530986 /* Adaptive interrupt coalescing (AIC) info */
987 u16 min_eqd; /* in usecs */
988 u16 max_eqd; /* in usecs */
989 u16 cur_eqd; /* in usecs */
990 struct be_eq_obj be_eq[MAX_CPUS];
John Soni Jose22abeef2012-10-20 04:43:32 +0530991 struct be_queue_info be_cq[MAX_CPUS - 1];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530992
993 struct be_queue_info be_def_hdrq;
994 struct be_queue_info be_def_dataq;
995
Jayamohan Kallickala7909b32013-04-05 20:38:32 -0700996 struct be_queue_info *be_wrbq;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530997 struct hwi_async_pdu_context *pasync_ctx;
998};
999
John Soni Jose99bc5d52012-08-20 23:00:18 +05301000/* Logging related definitions */
1001#define BEISCSI_LOG_INIT 0x0001 /* Initialization events */
1002#define BEISCSI_LOG_MBOX 0x0002 /* Mailbox Events */
1003#define BEISCSI_LOG_MISC 0x0004 /* Miscllaneous Events */
1004#define BEISCSI_LOG_EH 0x0008 /* Error Handler */
1005#define BEISCSI_LOG_IO 0x0010 /* IO Code Path */
1006#define BEISCSI_LOG_CONFIG 0x0020 /* CONFIG Code Path */
1007
1008#define beiscsi_log(phba, level, mask, fmt, arg...) \
1009do { \
1010 uint32_t log_value = phba->attr_log_enable; \
1011 if (((mask) & log_value) || (level[1] <= '3')) \
1012 shost_printk(level, phba->shost, \
1013 fmt, __LINE__, ##arg); \
1014} while (0)
1015
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301016#endif