blob: bd81446936fc34c5ecbc77cdd013416a0f1224f2 [file] [log] [blame]
Jayamohan Kallickal6733b392009-09-05 07:36:35 +05301/**
Jayamohan Kallickal65c5efa2014-08-08 00:59:59 -04002 * Copyright (C) 2005 - 2014 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_MGMT_
21#define _BEISCSI_MGMT_
22
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -050023#include <scsi/scsi_bsg_iscsi.h>
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053024#include "be_iscsi.h"
25#include "be_main.h"
26
Mike Christie0e438952012-04-03 23:41:51 -050027#define IP_ACTION_ADD 0x01
28#define IP_ACTION_DEL 0x02
29
30#define IP_V6_LEN 16
31#define IP_V4_LEN 4
32
John Soni Jose7a158002012-10-20 04:45:51 +053033/* UE Status and Mask register */
34#define PCICFG_UE_STATUS_LOW 0xA0
35#define PCICFG_UE_STATUS_HIGH 0xA4
36#define PCICFG_UE_STATUS_MASK_LOW 0xA8
37#define PCICFG_UE_STATUS_MASK_HI 0xAC
38
Jayamohan Kallickal6733b392009-09-05 07:36:35 +053039/**
40 * Pseudo amap definition in which each bit of the actual structure is defined
41 * as a byte: used to calculate offset/shift/mask of each field
42 */
43struct amap_mcc_sge {
44 u8 pa_lo[32]; /* dword 0 */
45 u8 pa_hi[32]; /* dword 1 */
46 u8 length[32]; /* DWORD 2 */
47} __packed;
48
49/**
50 * Pseudo amap definition in which each bit of the actual structure is defined
51 * as a byte: used to calculate offset/shift/mask of each field
52 */
53struct amap_mcc_wrb_payload {
54 union {
55 struct amap_mcc_sge sgl[19];
56 u8 embedded[59 * 32]; /* DWORDS 57 to 115 */
57 } u;
58} __packed;
59
60/**
61 * Pseudo amap definition in which each bit of the actual structure is defined
62 * as a byte: used to calculate offset/shift/mask of each field
63 */
64struct amap_mcc_wrb {
65 u8 embedded; /* DWORD 0 */
66 u8 rsvd0[2]; /* DWORD 0 */
67 u8 sge_count[5]; /* DWORD 0 */
68 u8 rsvd1[16]; /* DWORD 0 */
69 u8 special[8]; /* DWORD 0 */
70 u8 payload_length[32];
71 u8 tag[64]; /* DWORD 2 */
72 u8 rsvd2[32]; /* DWORD 4 */
73 struct amap_mcc_wrb_payload payload;
74};
75
76struct mcc_sge {
77 u32 pa_lo; /* dword 0 */
78 u32 pa_hi; /* dword 1 */
79 u32 length; /* DWORD 2 */
80} __packed;
81
82struct mcc_wrb_payload {
83 union {
84 struct mcc_sge sgl[19];
85 u32 embedded[59]; /* DWORDS 57 to 115 */
86 } u;
87} __packed;
88
89#define MCC_WRB_EMBEDDED_MASK 0x00000001
90
91struct mcc_wrb {
92 u32 dw[0]; /* DWORD 0 */
93 u32 payload_length;
94 u32 tag[2]; /* DWORD 2 */
95 u32 rsvd2[1]; /* DWORD 4 */
96 struct mcc_wrb_payload payload;
97};
98
Jayamohan Kallickal03a12312010-07-22 04:17:16 +053099int mgmt_epfw_cleanup(struct beiscsi_hba *phba, unsigned short chute);
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530100int mgmt_open_connection(struct beiscsi_hba *phba,
101 struct sockaddr *dst_addr,
102 struct beiscsi_endpoint *beiscsi_ep,
103 struct be_dma_mem *nonemb_cmd);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530104
Jayamohan Kallickal03a12312010-07-22 04:17:16 +0530105unsigned int mgmt_upload_connection(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530106 unsigned short cid,
107 unsigned int upload_flag);
Jayamohan Kallickal03a12312010-07-22 04:17:16 +0530108unsigned int mgmt_invalidate_icds(struct beiscsi_hba *phba,
Jayamohan Kallickal41831222010-02-20 08:02:39 +0530109 struct invalidate_command_table *inv_tbl,
Jayamohan Kallickal3cbb7a72010-07-22 04:27:47 +0530110 unsigned int num_invalidate, unsigned int cid,
111 struct be_dma_mem *nonemb_cmd);
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -0500112unsigned int mgmt_vendor_specific_fw_cmd(struct be_ctrl_info *ctrl,
113 struct beiscsi_hba *phba,
114 struct bsg_job *job,
115 struct be_dma_mem *nonemb_cmd);
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530116
John Soni Jose0a513dd2012-08-20 23:00:55 +0530117#define BEISCSI_NO_RST_ISSUE 0
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530118struct iscsi_invalidate_connection_params_in {
119 struct be_cmd_req_hdr hdr;
120 unsigned int session_handle;
121 unsigned short cid;
122 unsigned short unused;
123 unsigned short cleanup_type;
124 unsigned short save_cfg;
125} __packed;
126
127struct iscsi_invalidate_connection_params_out {
128 unsigned int session_handle;
129 unsigned short cid;
130 unsigned short unused;
131} __packed;
132
133union iscsi_invalidate_connection_params {
134 struct iscsi_invalidate_connection_params_in request;
135 struct iscsi_invalidate_connection_params_out response;
136} __packed;
137
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530138struct invalidate_commands_params_in {
139 struct be_cmd_req_hdr hdr;
140 unsigned int ref_handle;
141 unsigned int icd_count;
142 struct invalidate_command_table table[128];
143 unsigned short cleanup_type;
144 unsigned short unused;
145} __packed;
146
147struct invalidate_commands_params_out {
148 unsigned int ref_handle;
149 unsigned int icd_count;
150 unsigned int icd_status[128];
151} __packed;
152
153union invalidate_commands_params {
154 struct invalidate_commands_params_in request;
155 struct invalidate_commands_params_out response;
156} __packed;
157
158struct mgmt_hba_attributes {
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700159 u8 flashrom_version_string[BEISCSI_VER_STRLEN];
160 u8 manufacturer_name[BEISCSI_VER_STRLEN];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530161 u32 supported_modes;
162 u8 seeprom_version_lo;
163 u8 seeprom_version_hi;
164 u8 rsvd0[2];
165 u32 fw_cmd_data_struct_version;
166 u32 ep_fw_data_struct_version;
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700167 u8 ncsi_version_string[12];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530168 u32 default_extended_timeout;
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700169 u8 controller_model_number[BEISCSI_VER_STRLEN];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530170 u8 controller_description[64];
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700171 u8 controller_serial_number[BEISCSI_VER_STRLEN];
172 u8 ip_version_string[BEISCSI_VER_STRLEN];
173 u8 firmware_version_string[BEISCSI_VER_STRLEN];
174 u8 bios_version_string[BEISCSI_VER_STRLEN];
175 u8 redboot_version_string[BEISCSI_VER_STRLEN];
176 u8 driver_version_string[BEISCSI_VER_STRLEN];
177 u8 fw_on_flash_version_string[BEISCSI_VER_STRLEN];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530178 u32 functionalities_supported;
179 u16 max_cdblength;
180 u8 asic_revision;
181 u8 generational_guid[16];
182 u8 hba_port_count;
183 u16 default_link_down_timeout;
184 u8 iscsi_ver_min_max;
185 u8 multifunction_device;
186 u8 cache_valid;
187 u8 hba_status;
188 u8 max_domains_supported;
189 u8 phy_port;
190 u32 firmware_post_status;
191 u32 hba_mtu[8];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530192 u8 iscsi_features;
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700193 u8 asic_generation;
194 u8 future_u8[2];
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530195 u32 future_u32[3];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530196} __packed;
197
198struct mgmt_controller_attributes {
199 struct mgmt_hba_attributes hba_attribs;
200 u16 pci_vendor_id;
201 u16 pci_device_id;
202 u16 pci_sub_vendor_id;
203 u16 pci_sub_system_id;
204 u8 pci_bus_number;
205 u8 pci_device_number;
206 u8 pci_function_number;
207 u8 interface_type;
208 u64 unique_identifier;
209 u8 netfilters;
210 u8 rsvd0[3];
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700211 u32 future_u32[4];
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530212} __packed;
213
214struct be_mgmt_controller_attributes {
215 struct be_cmd_req_hdr hdr;
216 struct mgmt_controller_attributes params;
217} __packed;
218
219struct be_mgmt_controller_attributes_resp {
220 struct be_cmd_resp_hdr hdr;
221 struct mgmt_controller_attributes params;
222} __packed;
223
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -0500224struct be_bsg_vendor_cmd {
225 struct be_cmd_req_hdr hdr;
226 unsigned short region;
227 unsigned short offset;
228 unsigned short sector;
229} __packed;
230
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530231/* configuration management */
232
233#define GET_MGMT_CONTROLLER_WS(phba) (phba->pmgmt_ws)
234
235/* MGMT CMD flags */
236
237#define MGMT_CMDH_FREE (1<<0)
238
239/* --- MGMT_ERROR_CODES --- */
240/* Error Codes returned in the status field of the CMD response header */
241#define MGMT_STATUS_SUCCESS 0 /* The CMD completed without errors */
242#define MGMT_STATUS_FAILED 1 /* Error status in the Status field of */
243 /* the CMD_RESPONSE_HEADER */
244
245#define ISCSI_GET_PDU_TEMPLATE_ADDRESS(pc, pa) {\
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -0500246 pa->lo = phba->init_mem[ISCSI_MEM_GLOBAL_HEADER].mem_array[0].\
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530247 bus_address.u.a32.address_lo; \
Jayamohan Kallickal3ec78272012-04-03 23:41:38 -0500248 pa->hi = phba->init_mem[ISCSI_MEM_GLOBAL_HEADER].mem_array[0].\
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530249 bus_address.u.a32.address_hi; \
250}
251
Jayamohan Kallickalffce3e22012-04-03 23:41:50 -0500252#define BEISCSI_WRITE_FLASH 0
253#define BEISCSI_READ_FLASH 1
254
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530255struct beiscsi_endpoint {
256 struct beiscsi_hba *phba;
257 struct beiscsi_sess *sess;
258 struct beiscsi_conn *conn;
Jayamohan Kallickalc2462282010-01-05 05:05:34 +0530259 struct iscsi_endpoint *openiscsi_ep;
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530260 unsigned short ip_type;
261 char dst6_addr[ISCSI_ADDRESS_BUF_LEN];
262 unsigned long dst_addr;
263 unsigned short ep_cid;
264 unsigned int fw_handle;
265 u16 dst_tcpport;
266 u16 cid_vld;
267};
268
Jayamohan Kallickal03a12312010-07-22 04:17:16 +0530269int mgmt_get_fw_config(struct be_ctrl_info *ctrl,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530270 struct beiscsi_hba *phba);
271
Jayamohan Kallickal03a12312010-07-22 04:17:16 +0530272unsigned int mgmt_invalidate_connection(struct beiscsi_hba *phba,
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530273 struct beiscsi_endpoint *beiscsi_ep,
274 unsigned short cid,
275 unsigned short issue_reset,
276 unsigned short savecfg_flag);
Jayamohan Kallickalbfead3b2009-10-23 11:52:33 +0530277
Mike Christie0e438952012-04-03 23:41:51 -0500278int mgmt_set_ip(struct beiscsi_hba *phba,
279 struct iscsi_iface_param_info *ip_param,
280 struct iscsi_iface_param_info *subnet_param,
281 uint32_t boot_proto);
282
283unsigned int mgmt_get_boot_target(struct beiscsi_hba *phba);
284
John Soni Jose9aef4202012-08-20 23:00:08 +0530285unsigned int mgmt_reopen_session(struct beiscsi_hba *phba,
286 unsigned int reopen_type,
287 unsigned sess_handle);
288
Mike Christie0e438952012-04-03 23:41:51 -0500289unsigned int mgmt_get_session_info(struct beiscsi_hba *phba,
290 u32 boot_session_handle,
291 struct be_dma_mem *nonemb_cmd);
292
293int mgmt_get_nic_conf(struct beiscsi_hba *phba,
294 struct be_cmd_get_nic_conf_resp *mac);
295
296int mgmt_get_if_info(struct beiscsi_hba *phba, int ip_type,
Jayamohan Kallickal1f536d42013-09-28 15:35:56 -0700297 struct be_cmd_get_if_info_resp **if_info);
Mike Christie0e438952012-04-03 23:41:51 -0500298
299int mgmt_get_gateway(struct beiscsi_hba *phba, int ip_type,
300 struct be_cmd_get_def_gateway_resp *gateway);
301
302int mgmt_set_gateway(struct beiscsi_hba *phba,
303 struct iscsi_iface_param_info *gateway_param);
304
John Soni Jose9aef4202012-08-20 23:00:08 +0530305int be_mgmt_get_boot_shandle(struct beiscsi_hba *phba,
306 unsigned int *s_handle);
John Soni Jose6f722382012-08-20 23:00:43 +0530307
308unsigned int mgmt_get_all_if_id(struct beiscsi_hba *phba);
309
310int mgmt_set_vlan(struct beiscsi_hba *phba, uint16_t vlan_tag);
John Soni Jose5cac7592012-10-20 04:42:25 +0530311
312ssize_t beiscsi_drvr_ver_disp(struct device *dev,
313 struct device_attribute *attr, char *buf);
John Soni Joseacb96932012-10-20 04:44:35 +0530314
Jayamohan Kallickal22661e22013-04-05 20:38:28 -0700315ssize_t beiscsi_fw_ver_disp(struct device *dev,
316 struct device_attribute *attr, char *buf);
317
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700318ssize_t beiscsi_active_session_disp(struct device *dev,
319 struct device_attribute *attr, char *buf);
Jayamohan Kallickal7ad4dfe2013-04-05 20:38:29 -0700320
John Soni Jose26000db2012-10-20 04:45:06 +0530321ssize_t beiscsi_adap_family_disp(struct device *dev,
322 struct device_attribute *attr, char *buf);
323
Jayamohan Kallickal6103c1f2013-09-28 15:35:52 -0700324
325ssize_t beiscsi_free_session_disp(struct device *dev,
326 struct device_attribute *attr, char *buf);
327
Jayamohan Kallickald3fea9a2013-09-28 15:35:53 -0700328ssize_t beiscsi_phys_port_disp(struct device *dev,
329 struct device_attribute *attr, char *buf);
330
John Soni Joseacb96932012-10-20 04:44:35 +0530331void beiscsi_offload_cxn_v0(struct beiscsi_offload_params *params,
332 struct wrb_handle *pwrb_handle,
333 struct be_mem_descriptor *mem_descr);
334
335void beiscsi_offload_cxn_v2(struct beiscsi_offload_params *params,
336 struct wrb_handle *pwrb_handle);
John Soni Jose7a158002012-10-20 04:45:51 +0530337void beiscsi_ue_detect(struct beiscsi_hba *phba);
Jayamohan Kallickal73af08e2014-05-05 21:41:26 -0400338int be_cmd_modify_eq_delay(struct beiscsi_hba *phba,
339 struct be_set_eqd *, int num);
John Soni Joseacb96932012-10-20 04:44:35 +0530340
Jayamohan Kallickal6733b392009-09-05 07:36:35 +0530341#endif