blob: 65040a584109163c4cd7f0eb49330cc861e52d24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Giridhar Malavalide7c5d02010-07-23 15:28:36 +05003 * Copyright (c) 2003-2010 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include "qla_def.h"
8
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/delay.h>
Christoph Hellwig39a11242006-02-14 18:46:22 +010012#include <linux/kthread.h>
Daniel Walkere1e82b62008-05-12 22:21:10 -070013#include <linux/mutex.h>
Andrew Vasquez3420d362009-10-13 15:16:45 -070014#include <linux/kobject.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#include <scsi/scsi_tcq.h>
18#include <scsi/scsicam.h>
19#include <scsi/scsi_transport.h>
20#include <scsi/scsi_transport_fc.h>
21
22/*
23 * Driver version
24 */
25char qla2x00_version_str[40];
26
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -070027static int apidev_major;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * SRB allocation cache
31 */
Christoph Lametere18b8902006-12-06 20:33:20 -080032static struct kmem_cache *srb_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Giridhar Malavalia9083012010-04-12 17:59:55 -070034/*
35 * CT6 CTX allocation cache
36 */
37static struct kmem_cache *ctx_cachep;
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039int ql2xlogintimeout = 20;
40module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
41MODULE_PARM_DESC(ql2xlogintimeout,
42 "Login timeout value in seconds.");
43
Andrew Vasqueza7b61842007-05-07 07:42:59 -070044int qlport_down_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
46MODULE_PARM_DESC(qlport_down_retry,
Jesper Juhl900d9f92006-06-30 02:33:07 -070047 "Maximum number of command retries to a port that returns "
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 "a PORT-DOWN status.");
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050int ql2xplogiabsentdevice;
51module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
52MODULE_PARM_DESC(ql2xplogiabsentdevice,
53 "Option to enable PLOGI to devices that are not present after "
Jesper Juhl900d9f92006-06-30 02:33:07 -070054 "a Fabric scan. This is needed for several broken switches. "
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057int ql2xloginretrycount = 0;
58module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
59MODULE_PARM_DESC(ql2xloginretrycount,
60 "Specify an alternate value for the NVRAM login retry count.");
61
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070062int ql2xallocfwdump = 1;
63module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
64MODULE_PARM_DESC(ql2xallocfwdump,
65 "Option to enable allocation of memory for a firmware dump "
66 "during HBA initialization. Memory allocation requirements "
67 "vary by ISP type. Default is 1 - allocate memory.");
68
Andrew Vasquez11010fe2006-10-06 09:54:59 -070069int ql2xextended_error_logging;
Andrew Vasquez27d94032007-03-12 10:41:30 -070070module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070071MODULE_PARM_DESC(ql2xextended_error_logging,
Andrew Vasquez01819442006-06-23 16:11:10 -070072 "Option to enable extended error logging, "
73 "Default is 0 - no logging. 1 - log errors.");
74
Giridhar Malavalia9083012010-04-12 17:59:55 -070075int ql2xshiftctondsd = 6;
76module_param(ql2xshiftctondsd, int, S_IRUGO|S_IRUSR);
77MODULE_PARM_DESC(ql2xshiftctondsd,
78 "Set to control shifting of command type processing "
79 "based on total number of SG elements.");
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static void qla2x00_free_device(scsi_qla_host_t *);
82
Andrew Vasquez7e47e5c2008-04-24 15:21:26 -070083int ql2xfdmienable=1;
Andrew Vasquezcca53352005-08-26 19:08:30 -070084module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
85MODULE_PARM_DESC(ql2xfdmienable,
Ferenc Wagner7794a5a2010-03-23 18:14:59 +010086 "Enables FDMI registrations. "
87 "0 - no FDMI. Default is 1 - perform FDMI.");
Andrew Vasquezcca53352005-08-26 19:08:30 -070088
Andrew Vasquezdf7baa52006-10-13 09:33:39 -070089#define MAX_Q_DEPTH 32
90static int ql2xmaxqdepth = MAX_Q_DEPTH;
91module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
92MODULE_PARM_DESC(ql2xmaxqdepth,
93 "Maximum queue depth to report for target devices.");
94
Arun Easibad75002010-05-04 15:01:30 -070095/* Do not change the value of this after module load */
96int ql2xenabledif = 1;
97module_param(ql2xenabledif, int, S_IRUGO|S_IWUSR);
98MODULE_PARM_DESC(ql2xenabledif,
99 " Enable T10-CRC-DIF "
100 " Default is 0 - No DIF Support. 1 - Enable it");
101
102int ql2xenablehba_err_chk;
103module_param(ql2xenablehba_err_chk, int, S_IRUGO|S_IWUSR);
104MODULE_PARM_DESC(ql2xenablehba_err_chk,
105 " Enable T10-CRC-DIF Error isolation by HBA"
106 " Default is 0 - Error isolation disabled, 1 - Enable it");
107
Andrew Vasqueze5896bd2008-07-10 16:55:52 -0700108int ql2xiidmaenable=1;
109module_param(ql2xiidmaenable, int, S_IRUGO|S_IRUSR);
110MODULE_PARM_DESC(ql2xiidmaenable,
111 "Enables iIDMA settings "
112 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
113
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800114int ql2xmaxqueues = 1;
115module_param(ql2xmaxqueues, int, S_IRUGO|S_IRUSR);
116MODULE_PARM_DESC(ql2xmaxqueues,
117 "Enables MQ settings "
Joe Perchesae682302010-08-10 18:01:21 -0700118 "Default is 1 for single queue. Set it to number "
119 "of queues in MQ mode.");
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700120
121int ql2xmultique_tag;
122module_param(ql2xmultique_tag, int, S_IRUGO|S_IRUSR);
123MODULE_PARM_DESC(ql2xmultique_tag,
124 "Enables CPU affinity settings for the driver "
125 "Default is 0 for no affinity of request and response IO. "
126 "Set it to 1 to turn on the cpu affinity.");
Andrew Vasqueze337d902009-04-06 22:33:49 -0700127
128int ql2xfwloadbin;
129module_param(ql2xfwloadbin, int, S_IRUGO|S_IRUSR);
130MODULE_PARM_DESC(ql2xfwloadbin,
131 "Option to specify location from which to load ISP firmware:\n"
132 " 2 -- load firmware via the request_firmware() (hotplug)\n"
133 " interface.\n"
134 " 1 -- load firmware from flash.\n"
135 " 0 -- use default semantics.\n");
136
Andrew Vasquezae97c912010-02-18 10:07:28 -0800137int ql2xetsenable;
138module_param(ql2xetsenable, int, S_IRUGO|S_IRUSR);
139MODULE_PARM_DESC(ql2xetsenable,
140 "Enables firmware ETS burst."
141 "Default is 0 - skip ETS enablement.");
142
Giridhar Malavali69078692010-05-28 15:08:28 -0700143int ql2xdbwr = 1;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700144module_param(ql2xdbwr, int, S_IRUGO|S_IRUSR);
145MODULE_PARM_DESC(ql2xdbwr,
146 "Option to specify scheme for request queue posting\n"
147 " 0 -- Regular doorbell.\n"
148 " 1 -- CAMRAM doorbell (faster).\n");
149
150int ql2xdontresethba;
151module_param(ql2xdontresethba, int, S_IRUGO|S_IRUSR);
152MODULE_PARM_DESC(ql2xdontresethba,
153 "Option to specify reset behaviour\n"
154 " 0 (Default) -- Reset on failure.\n"
155 " 1 -- Do not reset on failure.\n");
156
Giridhar Malavalif4c496c2010-05-04 15:01:33 -0700157int ql2xtargetreset = 1;
158module_param(ql2xtargetreset, int, S_IRUGO|S_IRUSR);
159MODULE_PARM_DESC(ql2xtargetreset,
160 "Enable target reset."
161 "Default is 1 - use hw defaults.");
162
Chad Dupuis4da26e12010-10-15 11:27:40 -0700163int ql2xgffidenable;
164module_param(ql2xgffidenable, int, S_IRUGO|S_IRUSR);
165MODULE_PARM_DESC(ql2xgffidenable,
166 "Enables GFF_ID checks of port type. "
167 "Default is 0 - Do not use GFF_ID information.");
Giridhar Malavalia9083012010-04-12 17:59:55 -0700168
Madhuranath Iyengar38222632010-05-04 15:01:29 -0700169int ql2xasynctmfenable;
170module_param(ql2xasynctmfenable, int, S_IRUGO|S_IRUSR);
171MODULE_PARM_DESC(ql2xasynctmfenable,
172 "Enables issue of TM IOCBs asynchronously via IOCB mechanism"
173 "Default is 0 - Issue TM IOCBs via mailbox mechanism.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700175 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 */
177static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -0500178static int qla2xxx_slave_alloc(struct scsi_device *);
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800179static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
180static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051e2005-04-17 15:02:26 -0500181static void qla2xxx_slave_destroy(struct scsi_device *);
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700182static int qla2xxx_queuecommand(struct scsi_cmnd *cmd,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700183 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int qla2xxx_eh_abort(struct scsi_cmnd *);
185static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700186static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
188static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Mike Christiee881a172009-10-15 17:46:39 -0700190static int qla2x00_change_queue_depth(struct scsi_device *, int, int);
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700191static int qla2x00_change_queue_type(struct scsi_device *, int);
192
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700193struct scsi_host_template qla2xxx_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700195 .name = QLA2XXX_DRIVER_NAME,
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700196 .queuecommand = qla2xxx_queuecommand,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700197
198 .eh_abort_handler = qla2xxx_eh_abort,
199 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700200 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700201 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
202 .eh_host_reset_handler = qla2xxx_eh_host_reset,
203
204 .slave_configure = qla2xxx_slave_configure,
205
206 .slave_alloc = qla2xxx_slave_alloc,
207 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezed677082007-03-12 10:41:27 -0700208 .scan_finished = qla2xxx_scan_finished,
209 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700210 .change_queue_depth = qla2x00_change_queue_depth,
211 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700212 .this_id = -1,
213 .cmd_per_lun = 3,
214 .use_clustering = ENABLE_CLUSTERING,
215 .sg_tablesize = SG_ALL,
216
217 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700218 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700219};
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700222struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* TODO Convert to inlines
225 *
226 * Timer routines
227 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700229__inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800230qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800232 init_timer(&vha->timer);
233 vha->timer.expires = jiffies + interval * HZ;
234 vha->timer.data = (unsigned long)vha;
235 vha->timer.function = (void (*)(unsigned long))func;
236 add_timer(&vha->timer);
237 vha->timer_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800241qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Giridhar Malavalia9083012010-04-12 17:59:55 -0700243 /* Currently used for 82XX only. */
244 if (vha->device_flags & DFLG_DEV_FAILED)
245 return;
246
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800247 mod_timer(&vha->timer, jiffies + interval * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Adrian Bunka824ebb2008-01-17 09:02:15 -0800250static __inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800251qla2x00_stop_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800253 del_timer_sync(&vha->timer);
254 vha->timer_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257static int qla2x00_do_dpc(void *data);
258
259static void qla2x00_rst_aen(scsi_qla_host_t *);
260
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800261static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
262 struct req_que **, struct rsp_que **);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800263static void qla2x00_mem_free(struct qla_hw_data *);
264static void qla2x00_sp_free_dma(srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/* -------------------------------------------------------------------------- */
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800267static int qla2x00_alloc_queues(struct qla_hw_data *ha)
268{
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700269 ha->req_q_map = kzalloc(sizeof(struct req_que *) * ha->max_req_queues,
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800270 GFP_KERNEL);
271 if (!ha->req_q_map) {
272 qla_printk(KERN_WARNING, ha,
273 "Unable to allocate memory for request queue ptrs\n");
274 goto fail_req_map;
275 }
276
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700277 ha->rsp_q_map = kzalloc(sizeof(struct rsp_que *) * ha->max_rsp_queues,
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800278 GFP_KERNEL);
279 if (!ha->rsp_q_map) {
280 qla_printk(KERN_WARNING, ha,
281 "Unable to allocate memory for response queue ptrs\n");
282 goto fail_rsp_map;
283 }
284 set_bit(0, ha->rsp_qid_map);
285 set_bit(0, ha->req_qid_map);
286 return 1;
287
288fail_rsp_map:
289 kfree(ha->req_q_map);
290 ha->req_q_map = NULL;
291fail_req_map:
292 return -ENOMEM;
293}
294
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700295static void qla2x00_free_req_que(struct qla_hw_data *ha, struct req_que *req)
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800296{
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800297 if (req && req->ring)
298 dma_free_coherent(&ha->pdev->dev,
299 (req->length + 1) * sizeof(request_t),
300 req->ring, req->dma);
301
302 kfree(req);
303 req = NULL;
304}
305
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700306static void qla2x00_free_rsp_que(struct qla_hw_data *ha, struct rsp_que *rsp)
307{
308 if (rsp && rsp->ring)
309 dma_free_coherent(&ha->pdev->dev,
310 (rsp->length + 1) * sizeof(response_t),
311 rsp->ring, rsp->dma);
312
313 kfree(rsp);
314 rsp = NULL;
315}
316
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800317static void qla2x00_free_queues(struct qla_hw_data *ha)
318{
319 struct req_que *req;
320 struct rsp_que *rsp;
321 int cnt;
322
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700323 for (cnt = 0; cnt < ha->max_req_queues; cnt++) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800324 req = ha->req_q_map[cnt];
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700325 qla2x00_free_req_que(ha, req);
326 }
327 kfree(ha->req_q_map);
328 ha->req_q_map = NULL;
329
330 for (cnt = 0; cnt < ha->max_rsp_queues; cnt++) {
331 rsp = ha->rsp_q_map[cnt];
332 qla2x00_free_rsp_que(ha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800333 }
334 kfree(ha->rsp_q_map);
335 ha->rsp_q_map = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800336}
337
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700338static int qla25xx_setup_mode(struct scsi_qla_host *vha)
339{
340 uint16_t options = 0;
341 int ques, req, ret;
342 struct qla_hw_data *ha = vha->hw;
343
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700344 if (!(ha->fw_attributes & BIT_6)) {
345 qla_printk(KERN_INFO, ha,
346 "Firmware is not multi-queue capable\n");
347 goto fail;
348 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700349 if (ql2xmultique_tag) {
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700350 /* create a request queue for IO */
351 options |= BIT_7;
352 req = qla25xx_create_req_que(ha, options, 0, 0, -1,
353 QLA_DEFAULT_QUE_QOS);
354 if (!req) {
355 qla_printk(KERN_WARNING, ha,
356 "Can't create request queue\n");
357 goto fail;
358 }
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700359 ha->wq = create_workqueue("qla2xxx_wq");
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700360 vha->req = ha->req_q_map[req];
361 options |= BIT_1;
362 for (ques = 1; ques < ha->max_rsp_queues; ques++) {
363 ret = qla25xx_create_rsp_que(ha, options, 0, 0, req);
364 if (!ret) {
365 qla_printk(KERN_WARNING, ha,
366 "Response Queue create failed\n");
367 goto fail2;
368 }
369 }
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700370 ha->flags.cpu_affinity_enabled = 1;
371
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700372 DEBUG2(qla_printk(KERN_INFO, ha,
373 "CPU affinity mode enabled, no. of response"
374 " queues:%d, no. of request queues:%d\n",
375 ha->max_rsp_queues, ha->max_req_queues));
376 }
377 return 0;
378fail2:
379 qla25xx_delete_queues(vha);
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700380 destroy_workqueue(ha->wq);
381 ha->wq = NULL;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700382fail:
383 ha->mqenable = 0;
Anirban Chakraborty7163ea82009-08-05 09:18:40 -0700384 kfree(ha->req_q_map);
385 kfree(ha->rsp_q_map);
386 ha->max_req_queues = ha->max_rsp_queues = 1;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700387 return 1;
388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800391qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800393 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 static char *pci_bus_modes[] = {
395 "33", "66", "100", "133",
396 };
397 uint16_t pci_bus;
398
399 strcpy(str, "PCI");
400 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
401 if (pci_bus) {
402 strcat(str, "-X (");
403 strcat(str, pci_bus_modes[pci_bus]);
404 } else {
405 pci_bus = (ha->pci_attr & BIT_8) >> 8;
406 strcat(str, " (");
407 strcat(str, pci_bus_modes[pci_bus]);
408 }
409 strcat(str, " MHz)");
410
411 return (str);
412}
413
Andrew Vasquezfca29702005-07-06 10:31:47 -0700414static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800415qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str)
Andrew Vasquezfca29702005-07-06 10:31:47 -0700416{
417 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800418 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700419 uint32_t pci_bus;
420 int pcie_reg;
421
422 pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
423 if (pcie_reg) {
424 char lwstr[6];
425 uint16_t pcie_lstat, lspeed, lwidth;
426
427 pcie_reg += 0x12;
428 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
429 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
430 lwidth = (pcie_lstat &
431 (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
432
433 strcpy(str, "PCIe (");
434 if (lspeed == 1)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700435 strcat(str, "2.5GT/s ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700436 else if (lspeed == 2)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700437 strcat(str, "5.0GT/s ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700438 else
439 strcat(str, "<unknown> ");
440 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
441 strcat(str, lwstr);
442
443 return str;
444 }
445
446 strcpy(str, "PCI");
447 pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
448 if (pci_bus == 0 || pci_bus == 8) {
449 strcat(str, " (");
450 strcat(str, pci_bus_modes[pci_bus >> 3]);
451 } else {
452 strcat(str, "-X ");
453 if (pci_bus & BIT_2)
454 strcat(str, "Mode 2");
455 else
456 strcat(str, "Mode 1");
457 strcat(str, " (");
458 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
459 }
460 strcat(str, " MHz)");
461
462 return str;
463}
464
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800465static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800466qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 char un_str[10];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800469 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
472 ha->fw_minor_version,
473 ha->fw_subminor_version);
474
475 if (ha->fw_attributes & BIT_9) {
476 strcat(str, "FLX");
477 return (str);
478 }
479
480 switch (ha->fw_attributes & 0xFF) {
481 case 0x7:
482 strcat(str, "EF");
483 break;
484 case 0x17:
485 strcat(str, "TP");
486 break;
487 case 0x37:
488 strcat(str, "IP");
489 break;
490 case 0x77:
491 strcat(str, "VI");
492 break;
493 default:
494 sprintf(un_str, "(%x)", ha->fw_attributes);
495 strcat(str, un_str);
496 break;
497 }
498 if (ha->fw_attributes & 0x100)
499 strcat(str, "X");
500
501 return (str);
502}
503
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800504static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800505qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str)
Andrew Vasquezfca29702005-07-06 10:31:47 -0700506{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800507 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700508
Andrew Vasquez3a03eb72009-01-05 11:18:11 -0800509 sprintf(str, "%d.%02d.%02d (%x)", ha->fw_major_version,
510 ha->fw_minor_version, ha->fw_subminor_version, ha->fw_attributes);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700511 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700512}
513
514static inline srb_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800515qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700516 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
517{
518 srb_t *sp;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800519 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700520
521 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
522 if (!sp)
523 return sp;
524
Giridhar Malavali083a4692010-05-28 15:08:18 -0700525 atomic_set(&sp->ref_count, 1);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700526 sp->fcport = fcport;
527 sp->cmd = cmd;
528 sp->flags = 0;
529 CMD_SP(cmd) = (void *)sp;
530 cmd->scsi_done = done;
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700531 sp->ctx = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700532
533 return sp;
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536static int
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700537qla2xxx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Andrew Vasquezfca29702005-07-06 10:31:47 -0700538{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800539 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700540 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400541 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800542 struct qla_hw_data *ha = vha->hw;
543 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700544 srb_t *sp;
545 int rval;
546
Andrew Vasquez85880802009-12-15 21:29:46 -0800547 if (ha->flags.eeh_busy) {
548 if (ha->flags.pci_channel_io_perm_failure)
Seokmann Jub9b12f72009-03-24 09:08:18 -0700549 cmd->result = DID_NO_CONNECT << 16;
Andrew Vasquez85880802009-12-15 21:29:46 -0800550 else
551 cmd->result = DID_REQUEUE << 16;
Seokmann Ju14e660e2007-09-20 14:07:36 -0700552 goto qc24_fail_command;
553 }
554
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400555 rval = fc_remote_port_chkready(rport);
556 if (rval) {
557 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700558 goto qc24_fail_command;
559 }
560
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800561 /* Close window on fcport/rport state-transitioning. */
Mike Christie7b594132008-08-17 15:24:40 -0500562 if (fcport->drport)
563 goto qc24_target_busy;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800564
Arun Easibad75002010-05-04 15:01:30 -0700565 if (!vha->flags.difdix_supported &&
566 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
567 DEBUG2(qla_printk(KERN_ERR, ha,
568 "DIF Cap Not Reg, fail DIF capable cmd's:%x\n",
569 cmd->cmnd[0]));
570 cmd->result = DID_NO_CONNECT << 16;
571 goto qc24_fail_command;
572 }
Andrew Vasquezfca29702005-07-06 10:31:47 -0700573 if (atomic_read(&fcport->state) != FCS_ONLINE) {
574 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800575 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700576 cmd->result = DID_NO_CONNECT << 16;
577 goto qc24_fail_command;
578 }
Mike Christie7b594132008-08-17 15:24:40 -0500579 goto qc24_target_busy;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700580 }
581
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800582 spin_unlock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700583
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800584 sp = qla2x00_get_new_sp(base_vha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700585 if (!sp)
586 goto qc24_host_busy_lock;
587
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800588 rval = ha->isp_ops->start_scsi(sp);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700589 if (rval != QLA_SUCCESS)
590 goto qc24_host_busy_free_sp;
591
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800592 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700593
594 return 0;
595
596qc24_host_busy_free_sp:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800597 qla2x00_sp_free_dma(sp);
598 mempool_free(sp, ha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700599
600qc24_host_busy_lock:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800601 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700602 return SCSI_MLQUEUE_HOST_BUSY;
603
Mike Christie7b594132008-08-17 15:24:40 -0500604qc24_target_busy:
605 return SCSI_MLQUEUE_TARGET_BUSY;
606
Andrew Vasquezfca29702005-07-06 10:31:47 -0700607qc24_fail_command:
608 done(cmd);
609
610 return 0;
611}
612
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
615 * qla2x00_eh_wait_on_command
616 * Waits for the command to be returned by the Firmware for some
617 * max time.
618 *
619 * Input:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 * cmd = Scsi Command to wait on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
622 * Return:
623 * Not Found : 0
624 * Found : 1
625 */
626static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800627qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700629#define ABORT_POLLING_PERIOD 1000
630#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500631 unsigned long wait_iter = ABORT_WAIT_ITER;
Andrew Vasquez85880802009-12-15 21:29:46 -0800632 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
633 struct qla_hw_data *ha = vha->hw;
f4f051e2005-04-17 15:02:26 -0500634 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Andrew Vasquez85880802009-12-15 21:29:46 -0800636 if (unlikely(pci_channel_offline(ha->pdev)) || ha->flags.eeh_busy) {
637 DEBUG17(qla_printk(KERN_WARNING, ha, "return:eh_wait\n"));
638 return ret;
639 }
640
Lalit Chandivaded9704322009-08-25 11:36:18 -0700641 while (CMD_SP(cmd) && wait_iter--) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700642 msleep(ABORT_POLLING_PERIOD);
f4f051e2005-04-17 15:02:26 -0500643 }
644 if (CMD_SP(cmd))
645 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
f4f051e2005-04-17 15:02:26 -0500647 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650/*
651 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700652 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 * <= MAX_RETRIES_OF_ISP_ABORT or
654 * finally HBA is disabled ie marked offline
655 *
656 * Input:
657 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700658 *
659 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * Does context switching-Release SPIN_LOCK
661 * (if any) before calling this routine.
662 *
663 * Return:
664 * Success (Adapter is online) : 0
665 * Failed (Adapter is offline/disabled) : 1
666 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800667int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800668qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700670 int return_status;
671 unsigned long wait_online;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800672 struct qla_hw_data *ha = vha->hw;
673 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700675 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800676 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
677 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
678 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
679 ha->dpc_active) && time_before(jiffies, wait_online)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 msleep(1000);
682 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800683 if (base_vha->flags.online)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700684 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 else
686 return_status = QLA_FUNCTION_FAILED;
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return (return_status);
689}
690
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700691/*
692 * qla2x00_wait_for_reset_ready
693 * Wait till the HBA is online after going through
694 * <= MAX_RETRIES_OF_ISP_ABORT or
695 * finally HBA is disabled ie marked offline or flash
696 * operations are in progress.
697 *
698 * Input:
699 * ha - pointer to host adapter structure
700 *
701 * Note:
702 * Does context switching-Release SPIN_LOCK
703 * (if any) before calling this routine.
704 *
705 * Return:
706 * Success (Adapter is online/no flash ops) : 0
707 * Failed (Adapter is offline/disabled/flash ops in progress) : 1
708 */
Andrew Vasquez3dbe7562010-07-23 15:28:37 +0500709static int
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700710qla2x00_wait_for_reset_ready(scsi_qla_host_t *vha)
711{
712 int return_status;
713 unsigned long wait_online;
714 struct qla_hw_data *ha = vha->hw;
715 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
716
717 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
718 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
719 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
720 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
721 ha->optrom_state != QLA_SWAITING ||
722 ha->dpc_active) && time_before(jiffies, wait_online))
723 msleep(1000);
724
725 if (base_vha->flags.online && ha->optrom_state == QLA_SWAITING)
726 return_status = QLA_SUCCESS;
727 else
728 return_status = QLA_FUNCTION_FAILED;
729
730 DEBUG2(printk("%s return_status=%d\n", __func__, return_status));
731
732 return return_status;
733}
734
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700735int
736qla2x00_wait_for_chip_reset(scsi_qla_host_t *vha)
737{
738 int return_status;
739 unsigned long wait_reset;
740 struct qla_hw_data *ha = vha->hw;
741 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
742
743 wait_reset = jiffies + (MAX_LOOP_TIMEOUT * HZ);
744 while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
745 test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
746 test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
747 ha->dpc_active) && time_before(jiffies, wait_reset)) {
748
749 msleep(1000);
750
751 if (!test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
752 ha->flags.chip_reset_done)
753 break;
754 }
755 if (ha->flags.chip_reset_done)
756 return_status = QLA_SUCCESS;
757 else
758 return_status = QLA_FUNCTION_FAILED;
759
760 return return_status;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*
764 * qla2x00_wait_for_loop_ready
765 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700766 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * Input:
768 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700769 *
770 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * Does context switching-Release SPIN_LOCK
772 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700773 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 *
775 * Return:
776 * Success (LOOP_READY) : 0
777 * Failed (LOOP_NOT_READY) : 1
778 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700779static inline int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800780qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
782 int return_status = QLA_SUCCESS;
783 unsigned long loop_timeout ;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800784 struct qla_hw_data *ha = vha->hw;
785 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700788 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800790 while ((!atomic_read(&base_vha->loop_down_timer) &&
791 atomic_read(&base_vha->loop_state) == LOOP_DOWN) ||
792 atomic_read(&base_vha->loop_state) != LOOP_READY) {
793 if (atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Ravi Anand57680082006-05-17 15:08:44 -0700794 return_status = QLA_FUNCTION_FAILED;
795 break;
796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 msleep(1000);
798 if (time_after_eq(jiffies, loop_timeout)) {
799 return_status = QLA_FUNCTION_FAILED;
800 break;
801 }
802 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700803 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Giridhar Malavali083a4692010-05-28 15:08:18 -0700806static void
807sp_get(struct srb *sp)
808{
809 atomic_inc(&sp->ref_count);
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/**************************************************************************
813* qla2xxx_eh_abort
814*
815* Description:
816* The abort function will abort the specified command.
817*
818* Input:
819* cmd = Linux SCSI command packet to be aborted.
820*
821* Returns:
822* Either SUCCESS or FAILED.
823*
824* Note:
Michael Reed2ea00202006-04-27 16:25:30 -0700825* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800827static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828qla2xxx_eh_abort(struct scsi_cmnd *cmd)
829{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800830 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
f4f051e2005-04-17 15:02:26 -0500831 srb_t *sp;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800832 int ret, i;
f4f051e2005-04-17 15:02:26 -0500833 unsigned int id, lun;
834 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700835 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700836 int wait = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800837 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700838 struct req_que *req = vha->req;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800839 srb_t *spt;
Giridhar Malavali083a4692010-05-28 15:08:18 -0700840 int got_ref = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Christof Schmitt65d430f2009-10-30 17:59:29 +0100842 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -0700843
f4f051e2005-04-17 15:02:26 -0500844 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700845 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Michael Reed2ea00202006-04-27 16:25:30 -0700847 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
f4f051e2005-04-17 15:02:26 -0500849 id = cmd->device->id;
850 lun = cmd->device->lun;
851 serial = cmd->serial_number;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800852 spt = (srb_t *) CMD_SP(cmd);
853 if (!spt)
854 return SUCCESS;
f4f051e2005-04-17 15:02:26 -0500855
856 /* Check active list for command command. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800857 spin_lock_irqsave(&ha->hardware_lock, flags);
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800858 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
859 sp = req->outstanding_cmds[i];
860
861 if (sp == NULL)
f4f051e2005-04-17 15:02:26 -0500862 continue;
Arun Easibad75002010-05-04 15:01:30 -0700863 if ((sp->ctx) && !(sp->flags & SRB_FCP_CMND_DMA_VALID) &&
864 !IS_PROT_IO(sp))
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700865 continue;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800866 if (sp->cmd != cmd)
867 continue;
f4f051e2005-04-17 15:02:26 -0500868
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800869 DEBUG2(printk("%s(%ld): aborting sp %p from RISC."
870 " pid=%ld.\n", __func__, vha->host_no, sp, serial));
f4f051e2005-04-17 15:02:26 -0500871
Giridhar Malavali083a4692010-05-28 15:08:18 -0700872 /* Get a reference to the sp and drop the lock.*/
873 sp_get(sp);
874 got_ref++;
875
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800876 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700877 if (ha->isp_ops->abort_command(sp)) {
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800878 DEBUG2(printk("%s(%ld): abort_command "
879 "mbx failed.\n", __func__, vha->host_no));
Andrew Vasquez2ac4b642009-01-22 09:45:35 -0800880 ret = FAILED;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800881 } else {
882 DEBUG3(printk("%s(%ld): abort_command "
883 "mbx success.\n", __func__, vha->host_no));
884 wait = 1;
f4f051e2005-04-17 15:02:26 -0500885 }
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800886 spin_lock_irqsave(&ha->hardware_lock, flags);
887 break;
f4f051e2005-04-17 15:02:26 -0500888 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800889 spin_unlock_irqrestore(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500890
891 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700892 if (wait) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800893 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700894 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500895 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800896 "%x.\n", vha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700897 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Giridhar Malavali083a4692010-05-28 15:08:18 -0700901 if (got_ref)
902 qla2x00_sp_compl(ha, sp);
903
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700904 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700905 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800906 vha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
f4f051e2005-04-17 15:02:26 -0500908 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500911int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800912qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500913 unsigned int l, enum nexus_wait_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800915 int cnt, match, status;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700916 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800917 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800918 struct req_que *req;
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500919 srb_t *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Andrew Vasquez523ec772008-04-03 13:13:24 -0700921 status = QLA_SUCCESS;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800922
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800923 spin_lock_irqsave(&ha->hardware_lock, flags);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700924 req = vha->req;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800925 for (cnt = 1; status == QLA_SUCCESS &&
926 cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
927 sp = req->outstanding_cmds[cnt];
928 if (!sp)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700929 continue;
Arun Easibad75002010-05-04 15:01:30 -0700930 if ((sp->ctx) && !IS_PROT_IO(sp))
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700931 continue;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800932 if (vha->vp_idx != sp->fcport->vha->vp_idx)
933 continue;
934 match = 0;
935 switch (type) {
936 case WAIT_HOST:
937 match = 1;
938 break;
939 case WAIT_TARGET:
940 match = sp->cmd->device->id == t;
941 break;
942 case WAIT_LUN:
943 match = (sp->cmd->device->id == t &&
944 sp->cmd->device->lun == l);
945 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800947 if (!match)
948 continue;
949
950 spin_unlock_irqrestore(&ha->hardware_lock, flags);
951 status = qla2x00_eh_wait_on_command(sp->cmd);
952 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800954 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700955
956 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
Andrew Vasquez523ec772008-04-03 13:13:24 -0700959static char *reset_errors[] = {
960 "HBA not online",
961 "HBA not ready",
962 "Task management failed",
963 "Waiting for command completions",
964};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Andrew Vasquez523ec772008-04-03 13:13:24 -0700966static int
967__qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700968 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int, int))
Andrew Vasquez523ec772008-04-03 13:13:24 -0700969{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800970 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700971 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
972 int err;
973
Christof Schmitt65d430f2009-10-30 17:59:29 +0100974 fc_block_scsi_eh(cmd);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700975
976 if (!fcport)
977 return FAILED;
978
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800979 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
980 vha->host_no, cmd->device->id, cmd->device->lun, name);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700981
982 err = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800983 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700984 goto eh_reset_failed;
985 err = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800986 if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700987 goto eh_reset_failed;
988 err = 2;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700989 if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1)
990 != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700991 goto eh_reset_failed;
992 err = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800993 if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500994 cmd->device->lun, type) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700995 goto eh_reset_failed;
996
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800997 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
998 vha->host_no, cmd->device->id, cmd->device->lun, name);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700999
1000 return SUCCESS;
1001
Giridhar Malavali4d78c972010-07-23 15:28:35 +05001002eh_reset_failed:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001003 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n"
1004 , vha->host_no, cmd->device->id, cmd->device->lun, name,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001005 reset_errors[err]);
1006 return FAILED;
1007}
1008
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001009static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
1011{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001012 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1013 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Andrew Vasquez523ec772008-04-03 13:13:24 -07001015 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
1016 ha->isp_ops->lun_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019static int
Andrew Vasquez523ec772008-04-03 13:13:24 -07001020qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001022 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1023 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Andrew Vasquez523ec772008-04-03 13:13:24 -07001025 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
1026 ha->isp_ops->target_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029/**************************************************************************
1030* qla2xxx_eh_bus_reset
1031*
1032* Description:
1033* The bus reset function will reset the bus and abort any executing
1034* commands.
1035*
1036* Input:
1037* cmd = Linux SCSI command packet of the command that cause the
1038* bus reset.
1039*
1040* Returns:
1041* SUCCESS/FAILURE (defined as macro in scsi.h).
1042*
1043**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001044static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1046{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001047 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -05001048 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001049 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -05001050 unsigned int id, lun;
1051 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Christof Schmitt65d430f2009-10-30 17:59:29 +01001053 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -07001054
f4f051e2005-04-17 15:02:26 -05001055 id = cmd->device->id;
1056 lun = cmd->device->lun;
1057 serial = cmd->serial_number;
1058
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -07001059 if (!fcport)
f4f051e2005-04-17 15:02:26 -05001060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001062 qla_printk(KERN_INFO, vha->hw,
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001063 "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001065 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -05001067 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
1069
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001070 if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) {
1071 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001072 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 }
f4f051e2005-04-17 15:02:26 -05001074 if (ret == FAILED)
1075 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Andrew Vasquez9a41a622005-09-20 13:25:53 -07001077 /* Flush outstanding commands. */
Giridhar Malavali4d78c972010-07-23 15:28:35 +05001078 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
Andrew Vasquez523ec772008-04-03 13:13:24 -07001079 QLA_SUCCESS)
Andrew Vasquez9a41a622005-09-20 13:25:53 -07001080 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
f4f051e2005-04-17 15:02:26 -05001082eh_bus_reset_done:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001083 qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -05001084 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
f4f051e2005-04-17 15:02:26 -05001086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
1089/**************************************************************************
1090* qla2xxx_eh_host_reset
1091*
1092* Description:
1093* The reset function will reset the Adapter.
1094*
1095* Input:
1096* cmd = Linux SCSI command packet of the command that cause the
1097* adapter reset.
1098*
1099* Returns:
1100* Either SUCCESS or FAILED.
1101*
1102* Note:
1103**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001104static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1106{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001107 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -05001108 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001109 struct qla_hw_data *ha = vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001110 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -05001111 unsigned int id, lun;
1112 unsigned long serial;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001113 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Christof Schmitt65d430f2009-10-30 17:59:29 +01001115 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -07001116
f4f051e2005-04-17 15:02:26 -05001117 id = cmd->device->id;
1118 lun = cmd->device->lun;
1119 serial = cmd->serial_number;
1120
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -07001121 if (!fcport)
f4f051e2005-04-17 15:02:26 -05001122 return ret;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 qla_printk(KERN_INFO, ha,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001125 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Lalit Chandivade86fbee82010-05-04 15:01:32 -07001127 if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001128 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /*
1131 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001132 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * be completed and then issue big hammer.Otherwise
1134 * it may cause I/O failure as big hammer marks the
1135 * devices as lost kicking of the port_down_timer
1136 * while dpc is stuck for the mailbox to complete.
1137 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001138 qla2x00_wait_for_loop_ready(vha);
1139 if (vha != base_vha) {
1140 if (qla2x00_vp_abort_isp(vha))
f4f051e2005-04-17 15:02:26 -05001141 goto eh_host_reset_lock;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001142 } else {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001143 if (IS_QLA82XX(vha->hw)) {
1144 if (!qla82xx_fcoe_ctx_reset(vha)) {
1145 /* Ctx reset success */
1146 ret = SUCCESS;
1147 goto eh_host_reset_lock;
1148 }
1149 /* fall thru if ctx reset failed */
1150 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001151 if (ha->wq)
1152 flush_workqueue(ha->wq);
1153
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001154 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001155 if (ha->isp_ops->abort_isp(base_vha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001156 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1157 /* failed. schedule dpc to try */
1158 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1159
1160 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
1161 goto eh_host_reset_lock;
1162 }
1163 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001166 /* Waiting for command to be returned to OS.*/
Giridhar Malavali4d78c972010-07-23 15:28:35 +05001167 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001168 QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001169 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
f4f051e2005-04-17 15:02:26 -05001171eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001172 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1173 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
f4f051e2005-04-17 15:02:26 -05001175 return ret;
1176}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178/*
1179* qla2x00_loop_reset
1180* Issue loop reset.
1181*
1182* Input:
1183* ha = adapter block pointer.
1184*
1185* Returns:
1186* 0 = success
1187*/
Andrew Vasqueza4722cf2008-01-17 09:02:12 -08001188int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001189qla2x00_loop_reset(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001191 int ret;
bdf79622005-04-17 15:06:53 -05001192 struct fc_port *fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001193 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Giridhar Malavalif4c496c2010-05-04 15:01:33 -07001195 if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) {
Andrew Vasquez55e5ed22010-02-18 10:07:25 -08001196 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1197 if (fcport->port_type != FCT_TARGET)
1198 continue;
1199
1200 ret = ha->isp_ops->target_reset(fcport, 0, 0);
1201 if (ret != QLA_SUCCESS) {
1202 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1203 "target_reset=%d d_id=%x.\n", __func__,
1204 vha->host_no, ret, fcport->d_id.b24));
1205 }
1206 }
1207 }
1208
Giridhar Malavalia9083012010-04-12 17:59:55 -07001209 if (ha->flags.enable_lip_full_login && !IS_QLA8XXX_TYPE(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001210 ret = qla2x00_full_login_lip(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001211 if (ret != QLA_SUCCESS) {
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001212 DEBUG2_3(printk("%s(%ld): failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001213 "full_login_lip=%d.\n", __func__, vha->host_no,
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001214 ret));
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001215 }
1216 atomic_set(&vha->loop_state, LOOP_DOWN);
1217 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1218 qla2x00_mark_all_devices_lost(vha, 0);
1219 qla2x00_wait_for_loop_ready(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07001222 if (ha->flags.enable_lip_reset) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001223 ret = qla2x00_lip_reset(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001224 if (ret != QLA_SUCCESS) {
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001225 DEBUG2_3(printk("%s(%ld): failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001226 "lip_reset=%d.\n", __func__, vha->host_no, ret));
1227 } else
1228 qla2x00_wait_for_loop_ready(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001229 }
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 /* Issue marker command only when we are going to start the I/O */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001232 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001234 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001237void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001238qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001239{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001240 int que, cnt;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001241 unsigned long flags;
1242 srb_t *sp;
Andrew Vasquezac280b62009-08-20 11:06:05 -07001243 struct srb_ctx *ctx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001244 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001245 struct req_que *req;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001246
1247 spin_lock_irqsave(&ha->hardware_lock, flags);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001248 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001249 req = ha->req_q_map[que];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001250 if (!req)
1251 continue;
1252 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1253 sp = req->outstanding_cmds[cnt];
Andrew Vasqueze612d462009-03-24 09:08:04 -07001254 if (sp) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001255 req->outstanding_cmds[cnt] = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001256 if (!sp->ctx ||
Arun Easibad75002010-05-04 15:01:30 -07001257 (sp->flags & SRB_FCP_CMND_DMA_VALID) ||
1258 IS_PROT_IO(sp)) {
Andrew Vasquezac280b62009-08-20 11:06:05 -07001259 sp->cmd->result = res;
1260 qla2x00_sp_compl(ha, sp);
1261 } else {
1262 ctx = sp->ctx;
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001263 if (ctx->type == SRB_LOGIN_CMD ||
1264 ctx->type == SRB_LOGOUT_CMD) {
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001265 ctx->u.iocb_cmd->free(sp);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001266 } else {
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001267 struct fc_bsg_job *bsg_job =
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001268 ctx->u.bsg_job;
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001269 if (bsg_job->request->msgcode
1270 == FC_BSG_HST_CT)
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001271 kfree(sp->fcport);
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001272 bsg_job->req->errors = 0;
1273 bsg_job->reply->result = res;
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001274 bsg_job->job_done(bsg_job);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001275 kfree(sp->ctx);
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001276 mempool_free(sp,
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001277 ha->srb_mempool);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001278 }
Andrew Vasquezac280b62009-08-20 11:06:05 -07001279 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001280 }
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001281 }
1282 }
1283 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1284}
1285
f4f051e2005-04-17 15:02:26 -05001286static int
1287qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
bdf79622005-04-17 15:06:53 -05001289 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001291 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001292 return -ENXIO;
1293
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001294 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001295
1296 return 0;
1297}
1298
1299static int
1300qla2xxx_slave_configure(struct scsi_device *sdev)
1301{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001302 scsi_qla_host_t *vha = shost_priv(sdev->host);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001303 struct req_que *req = vha->req;
8482e1182005-04-17 15:04:54 -05001304
f4f051e2005-04-17 15:02:26 -05001305 if (sdev->tagged_supported)
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001306 scsi_activate_tcq(sdev, req->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 else
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001308 scsi_deactivate_tcq(sdev, req->max_q_depth);
f4f051e2005-04-17 15:02:26 -05001309 return 0;
1310}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
f4f051e2005-04-17 15:02:26 -05001312static void
1313qla2xxx_slave_destroy(struct scsi_device *sdev)
1314{
1315 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001318static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth)
1319{
1320 fc_port_t *fcport = (struct fc_port *) sdev->hostdata;
1321
1322 if (!scsi_track_queue_full(sdev, qdepth))
1323 return;
1324
1325 DEBUG2(qla_printk(KERN_INFO, fcport->vha->hw,
1326 "scsi(%ld:%d:%d:%d): Queue depth adjusted-down to %d.\n",
1327 fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun,
1328 sdev->queue_depth));
1329}
1330
1331static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth)
1332{
1333 fc_port_t *fcport = sdev->hostdata;
1334 struct scsi_qla_host *vha = fcport->vha;
1335 struct qla_hw_data *ha = vha->hw;
1336 struct req_que *req = NULL;
1337
1338 req = vha->req;
1339 if (!req)
1340 return;
1341
1342 if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth)
1343 return;
1344
1345 if (sdev->ordered_tags)
1346 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth);
1347 else
1348 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth);
1349
1350 DEBUG2(qla_printk(KERN_INFO, ha,
1351 "scsi(%ld:%d:%d:%d): Queue depth adjusted-up to %d.\n",
1352 fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun,
1353 sdev->queue_depth));
1354}
1355
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001356static int
Mike Christiee881a172009-10-15 17:46:39 -07001357qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001358{
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001359 switch (reason) {
1360 case SCSI_QDEPTH_DEFAULT:
1361 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1362 break;
1363 case SCSI_QDEPTH_QFULL:
1364 qla2x00_handle_queue_full(sdev, qdepth);
1365 break;
1366 case SCSI_QDEPTH_RAMP_UP:
1367 qla2x00_adjust_sdev_qdepth_up(sdev, qdepth);
1368 break;
1369 default:
Roel Kluin08002af2010-01-29 11:25:19 +01001370 return -EOPNOTSUPP;
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001371 }
Mike Christiee881a172009-10-15 17:46:39 -07001372
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001373 return sdev->queue_depth;
1374}
1375
1376static int
1377qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1378{
1379 if (sdev->tagged_supported) {
1380 scsi_set_tag_type(sdev, tag_type);
1381 if (tag_type)
1382 scsi_activate_tcq(sdev, sdev->queue_depth);
1383 else
1384 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1385 } else
1386 tag_type = 0;
1387
1388 return tag_type;
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/**
1392 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1393 * @ha: HA context
1394 *
1395 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1396 * supported addressing method.
1397 */
1398static void
Andrew Vasquez53303c42009-01-22 09:45:37 -08001399qla2x00_config_dma_addressing(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001401 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Yang Hongyang6a355282009-04-06 19:01:13 -07001404 if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001405 /* Any upper-dword bits set? */
1406 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
Yang Hongyang6a355282009-04-06 19:01:13 -07001407 !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001408 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001410 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1411 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001412 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001415
Yang Hongyang284901a2009-04-06 19:01:15 -07001416 dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1417 pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001420static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001421qla2x00_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001422{
1423 unsigned long flags = 0;
1424 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1425
1426 spin_lock_irqsave(&ha->hardware_lock, flags);
1427 ha->interrupts_on = 1;
1428 /* enable risc and host interrupts */
1429 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1430 RD_REG_WORD(&reg->ictrl);
1431 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1432
1433}
1434
1435static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001436qla2x00_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001437{
1438 unsigned long flags = 0;
1439 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1440
1441 spin_lock_irqsave(&ha->hardware_lock, flags);
1442 ha->interrupts_on = 0;
1443 /* disable risc and host interrupts */
1444 WRT_REG_WORD(&reg->ictrl, 0);
1445 RD_REG_WORD(&reg->ictrl);
1446 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1447}
1448
1449static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001450qla24xx_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001451{
1452 unsigned long flags = 0;
1453 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1454
1455 spin_lock_irqsave(&ha->hardware_lock, flags);
1456 ha->interrupts_on = 1;
1457 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1458 RD_REG_DWORD(&reg->ictrl);
1459 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1460}
1461
1462static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001463qla24xx_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001464{
1465 unsigned long flags = 0;
1466 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1467
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001468 if (IS_NOPOLLING_TYPE(ha))
1469 return;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001470 spin_lock_irqsave(&ha->hardware_lock, flags);
1471 ha->interrupts_on = 0;
1472 WRT_REG_DWORD(&reg->ictrl, 0);
1473 RD_REG_DWORD(&reg->ictrl);
1474 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1475}
1476
1477static struct isp_operations qla2100_isp_ops = {
1478 .pci_config = qla2100_pci_config,
1479 .reset_chip = qla2x00_reset_chip,
1480 .chip_diag = qla2x00_chip_diag,
1481 .config_rings = qla2x00_config_rings,
1482 .reset_adapter = qla2x00_reset_adapter,
1483 .nvram_config = qla2x00_nvram_config,
1484 .update_fw_options = qla2x00_update_fw_options,
1485 .load_risc = qla2x00_load_risc,
1486 .pci_info_str = qla2x00_pci_info_str,
1487 .fw_version_str = qla2x00_fw_version_str,
1488 .intr_handler = qla2100_intr_handler,
1489 .enable_intrs = qla2x00_enable_intrs,
1490 .disable_intrs = qla2x00_disable_intrs,
1491 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001492 .target_reset = qla2x00_abort_target,
1493 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001494 .fabric_login = qla2x00_login_fabric,
1495 .fabric_logout = qla2x00_fabric_logout,
1496 .calc_req_entries = qla2x00_calc_iocbs_32,
1497 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1498 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1499 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1500 .read_nvram = qla2x00_read_nvram_data,
1501 .write_nvram = qla2x00_write_nvram_data,
1502 .fw_dump = qla2100_fw_dump,
1503 .beacon_on = NULL,
1504 .beacon_off = NULL,
1505 .beacon_blink = NULL,
1506 .read_optrom = qla2x00_read_optrom_data,
1507 .write_optrom = qla2x00_write_optrom_data,
1508 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001509 .start_scsi = qla2x00_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001510 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001511};
1512
1513static struct isp_operations qla2300_isp_ops = {
1514 .pci_config = qla2300_pci_config,
1515 .reset_chip = qla2x00_reset_chip,
1516 .chip_diag = qla2x00_chip_diag,
1517 .config_rings = qla2x00_config_rings,
1518 .reset_adapter = qla2x00_reset_adapter,
1519 .nvram_config = qla2x00_nvram_config,
1520 .update_fw_options = qla2x00_update_fw_options,
1521 .load_risc = qla2x00_load_risc,
1522 .pci_info_str = qla2x00_pci_info_str,
1523 .fw_version_str = qla2x00_fw_version_str,
1524 .intr_handler = qla2300_intr_handler,
1525 .enable_intrs = qla2x00_enable_intrs,
1526 .disable_intrs = qla2x00_disable_intrs,
1527 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001528 .target_reset = qla2x00_abort_target,
1529 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001530 .fabric_login = qla2x00_login_fabric,
1531 .fabric_logout = qla2x00_fabric_logout,
1532 .calc_req_entries = qla2x00_calc_iocbs_32,
1533 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1534 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1535 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1536 .read_nvram = qla2x00_read_nvram_data,
1537 .write_nvram = qla2x00_write_nvram_data,
1538 .fw_dump = qla2300_fw_dump,
1539 .beacon_on = qla2x00_beacon_on,
1540 .beacon_off = qla2x00_beacon_off,
1541 .beacon_blink = qla2x00_beacon_blink,
1542 .read_optrom = qla2x00_read_optrom_data,
1543 .write_optrom = qla2x00_write_optrom_data,
1544 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001545 .start_scsi = qla2x00_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001546 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001547};
1548
1549static struct isp_operations qla24xx_isp_ops = {
1550 .pci_config = qla24xx_pci_config,
1551 .reset_chip = qla24xx_reset_chip,
1552 .chip_diag = qla24xx_chip_diag,
1553 .config_rings = qla24xx_config_rings,
1554 .reset_adapter = qla24xx_reset_adapter,
1555 .nvram_config = qla24xx_nvram_config,
1556 .update_fw_options = qla24xx_update_fw_options,
1557 .load_risc = qla24xx_load_risc,
1558 .pci_info_str = qla24xx_pci_info_str,
1559 .fw_version_str = qla24xx_fw_version_str,
1560 .intr_handler = qla24xx_intr_handler,
1561 .enable_intrs = qla24xx_enable_intrs,
1562 .disable_intrs = qla24xx_disable_intrs,
1563 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001564 .target_reset = qla24xx_abort_target,
1565 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001566 .fabric_login = qla24xx_login_fabric,
1567 .fabric_logout = qla24xx_fabric_logout,
1568 .calc_req_entries = NULL,
1569 .build_iocbs = NULL,
1570 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1571 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1572 .read_nvram = qla24xx_read_nvram_data,
1573 .write_nvram = qla24xx_write_nvram_data,
1574 .fw_dump = qla24xx_fw_dump,
1575 .beacon_on = qla24xx_beacon_on,
1576 .beacon_off = qla24xx_beacon_off,
1577 .beacon_blink = qla24xx_beacon_blink,
1578 .read_optrom = qla24xx_read_optrom_data,
1579 .write_optrom = qla24xx_write_optrom_data,
1580 .get_flash_version = qla24xx_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001581 .start_scsi = qla24xx_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001582 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001583};
1584
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001585static struct isp_operations qla25xx_isp_ops = {
1586 .pci_config = qla25xx_pci_config,
1587 .reset_chip = qla24xx_reset_chip,
1588 .chip_diag = qla24xx_chip_diag,
1589 .config_rings = qla24xx_config_rings,
1590 .reset_adapter = qla24xx_reset_adapter,
1591 .nvram_config = qla24xx_nvram_config,
1592 .update_fw_options = qla24xx_update_fw_options,
1593 .load_risc = qla24xx_load_risc,
1594 .pci_info_str = qla24xx_pci_info_str,
1595 .fw_version_str = qla24xx_fw_version_str,
1596 .intr_handler = qla24xx_intr_handler,
1597 .enable_intrs = qla24xx_enable_intrs,
1598 .disable_intrs = qla24xx_disable_intrs,
1599 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001600 .target_reset = qla24xx_abort_target,
1601 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001602 .fabric_login = qla24xx_login_fabric,
1603 .fabric_logout = qla24xx_fabric_logout,
1604 .calc_req_entries = NULL,
1605 .build_iocbs = NULL,
1606 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1607 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1608 .read_nvram = qla25xx_read_nvram_data,
1609 .write_nvram = qla25xx_write_nvram_data,
1610 .fw_dump = qla25xx_fw_dump,
1611 .beacon_on = qla24xx_beacon_on,
1612 .beacon_off = qla24xx_beacon_off,
1613 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001614 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001615 .write_optrom = qla24xx_write_optrom_data,
1616 .get_flash_version = qla24xx_get_flash_version,
Arun Easibad75002010-05-04 15:01:30 -07001617 .start_scsi = qla24xx_dif_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001618 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001619};
1620
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001621static struct isp_operations qla81xx_isp_ops = {
1622 .pci_config = qla25xx_pci_config,
1623 .reset_chip = qla24xx_reset_chip,
1624 .chip_diag = qla24xx_chip_diag,
1625 .config_rings = qla24xx_config_rings,
1626 .reset_adapter = qla24xx_reset_adapter,
1627 .nvram_config = qla81xx_nvram_config,
1628 .update_fw_options = qla81xx_update_fw_options,
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08001629 .load_risc = qla81xx_load_risc,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001630 .pci_info_str = qla24xx_pci_info_str,
1631 .fw_version_str = qla24xx_fw_version_str,
1632 .intr_handler = qla24xx_intr_handler,
1633 .enable_intrs = qla24xx_enable_intrs,
1634 .disable_intrs = qla24xx_disable_intrs,
1635 .abort_command = qla24xx_abort_command,
1636 .target_reset = qla24xx_abort_target,
1637 .lun_reset = qla24xx_lun_reset,
1638 .fabric_login = qla24xx_login_fabric,
1639 .fabric_logout = qla24xx_fabric_logout,
1640 .calc_req_entries = NULL,
1641 .build_iocbs = NULL,
1642 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1643 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07001644 .read_nvram = NULL,
1645 .write_nvram = NULL,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001646 .fw_dump = qla81xx_fw_dump,
1647 .beacon_on = qla24xx_beacon_on,
1648 .beacon_off = qla24xx_beacon_off,
1649 .beacon_blink = qla24xx_beacon_blink,
1650 .read_optrom = qla25xx_read_optrom_data,
1651 .write_optrom = qla24xx_write_optrom_data,
1652 .get_flash_version = qla24xx_get_flash_version,
Arun Easiba77ef52010-05-28 15:08:27 -07001653 .start_scsi = qla24xx_dif_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001654 .abort_isp = qla2x00_abort_isp,
1655};
1656
1657static struct isp_operations qla82xx_isp_ops = {
1658 .pci_config = qla82xx_pci_config,
1659 .reset_chip = qla82xx_reset_chip,
1660 .chip_diag = qla24xx_chip_diag,
1661 .config_rings = qla82xx_config_rings,
1662 .reset_adapter = qla24xx_reset_adapter,
1663 .nvram_config = qla81xx_nvram_config,
1664 .update_fw_options = qla24xx_update_fw_options,
1665 .load_risc = qla82xx_load_risc,
1666 .pci_info_str = qla82xx_pci_info_str,
1667 .fw_version_str = qla24xx_fw_version_str,
1668 .intr_handler = qla82xx_intr_handler,
1669 .enable_intrs = qla82xx_enable_intrs,
1670 .disable_intrs = qla82xx_disable_intrs,
1671 .abort_command = qla24xx_abort_command,
1672 .target_reset = qla24xx_abort_target,
1673 .lun_reset = qla24xx_lun_reset,
1674 .fabric_login = qla24xx_login_fabric,
1675 .fabric_logout = qla24xx_fabric_logout,
1676 .calc_req_entries = NULL,
1677 .build_iocbs = NULL,
1678 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1679 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1680 .read_nvram = qla24xx_read_nvram_data,
1681 .write_nvram = qla24xx_write_nvram_data,
1682 .fw_dump = qla24xx_fw_dump,
1683 .beacon_on = qla24xx_beacon_on,
1684 .beacon_off = qla24xx_beacon_off,
1685 .beacon_blink = qla24xx_beacon_blink,
1686 .read_optrom = qla82xx_read_optrom_data,
1687 .write_optrom = qla82xx_write_optrom_data,
1688 .get_flash_version = qla24xx_get_flash_version,
1689 .start_scsi = qla82xx_start_scsi,
1690 .abort_isp = qla82xx_abort_isp,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001691};
1692
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001693static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001694qla2x00_set_isp_flags(struct qla_hw_data *ha)
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001695{
1696 ha->device_type = DT_EXTENDED_IDS;
1697 switch (ha->pdev->device) {
1698 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1699 ha->device_type |= DT_ISP2100;
1700 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001701 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001702 break;
1703 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1704 ha->device_type |= DT_ISP2200;
1705 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001706 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001707 break;
1708 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1709 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001710 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001711 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001712 break;
1713 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1714 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001715 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001716 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001717 break;
1718 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1719 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001720 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001721 if (ha->pdev->subsystem_vendor == 0x1028 &&
1722 ha->pdev->subsystem_device == 0x0170)
1723 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001724 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001725 break;
1726 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1727 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001728 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001729 break;
1730 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1731 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001732 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001733 break;
1734 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1735 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001736 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001737 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001738 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001739 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001740 break;
1741 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1742 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001743 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001744 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001745 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001746 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001747 break;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001748 case PCI_DEVICE_ID_QLOGIC_ISP8432:
1749 ha->device_type |= DT_ISP8432;
1750 ha->device_type |= DT_ZIO_SUPPORTED;
1751 ha->device_type |= DT_FWI2;
1752 ha->device_type |= DT_IIDMA;
1753 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1754 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001755 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1756 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001757 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001758 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001759 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001760 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1761 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001762 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001763 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001764 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001765 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1766 ha->device_type |= DT_ISP2532;
1767 ha->device_type |= DT_ZIO_SUPPORTED;
1768 ha->device_type |= DT_FWI2;
1769 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001770 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1771 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001772 case PCI_DEVICE_ID_QLOGIC_ISP8001:
1773 ha->device_type |= DT_ISP8001;
1774 ha->device_type |= DT_ZIO_SUPPORTED;
1775 ha->device_type |= DT_FWI2;
1776 ha->device_type |= DT_IIDMA;
1777 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1778 break;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001779 case PCI_DEVICE_ID_QLOGIC_ISP8021:
1780 ha->device_type |= DT_ISP8021;
1781 ha->device_type |= DT_ZIO_SUPPORTED;
1782 ha->device_type |= DT_FWI2;
1783 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1784 /* Initialize 82XX ISP flags */
1785 qla82xx_init_flags(ha);
1786 break;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001787 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07001788
Giridhar Malavalia9083012010-04-12 17:59:55 -07001789 if (IS_QLA82XX(ha))
1790 ha->port_no = !(ha->portnum & 1);
1791 else
1792 /* Get adapter physical port no from interrupt pin register. */
1793 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
1794
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07001795 if (ha->port_no & 1)
1796 ha->flags.port0 = 1;
1797 else
1798 ha->flags.port0 = 0;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001799}
1800
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001802qla2x00_iospace_config(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
Andrew Vasquez37765412008-01-17 09:02:09 -08001804 resource_size_t pio;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001805 uint16_t msix;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001806 int cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Giridhar Malavalia9083012010-04-12 17:59:55 -07001808 if (IS_QLA82XX(ha))
1809 return qla82xx_iospace_config(ha);
1810
Andrew Vasquez285d0322007-10-19 15:59:17 -07001811 if (pci_request_selected_regions(ha->pdev, ha->bars,
1812 QLA2XXX_DRIVER_NAME)) {
1813 qla_printk(KERN_WARNING, ha,
1814 "Failed to reserve PIO/MMIO regions (%s)\n",
1815 pci_name(ha->pdev));
1816
1817 goto iospace_error_exit;
1818 }
1819 if (!(ha->bars & 1))
1820 goto skip_pio;
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1823 pio = pci_resource_start(ha->pdev, 0);
Andrew Vasquez37765412008-01-17 09:02:09 -08001824 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1825 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 qla_printk(KERN_WARNING, ha,
1827 "Invalid PCI I/O region size (%s)...\n",
1828 pci_name(ha->pdev));
1829 pio = 0;
1830 }
1831 } else {
1832 qla_printk(KERN_WARNING, ha,
1833 "region #0 not a PIO resource (%s)...\n",
1834 pci_name(ha->pdev));
1835 pio = 0;
1836 }
Andrew Vasquez285d0322007-10-19 15:59:17 -07001837 ha->pio_address = pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Andrew Vasquez285d0322007-10-19 15:59:17 -07001839skip_pio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /* Use MMIO operations for all accesses. */
Andrew Vasquez37765412008-01-17 09:02:09 -08001841 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 qla_printk(KERN_ERR, ha,
Andrew Vasquez37765412008-01-17 09:02:09 -08001843 "region #1 not an MMIO resource (%s), aborting\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 pci_name(ha->pdev));
1845 goto iospace_error_exit;
1846 }
Andrew Vasquez37765412008-01-17 09:02:09 -08001847 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 qla_printk(KERN_ERR, ha,
1849 "Invalid PCI mem region size (%s), aborting\n",
1850 pci_name(ha->pdev));
1851 goto iospace_error_exit;
1852 }
1853
Andrew Vasquez37765412008-01-17 09:02:09 -08001854 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (!ha->iobase) {
1856 qla_printk(KERN_ERR, ha,
1857 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1858
1859 goto iospace_error_exit;
1860 }
1861
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001862 /* Determine queue resources */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001863 ha->max_req_queues = ha->max_rsp_queues = 1;
Michael Hernandezd84a47c2010-03-19 16:59:18 -07001864 if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) ||
1865 (ql2xmaxqueues > 1 && ql2xmultique_tag) ||
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001866 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001867 goto mqiobase_exit;
Michael Hernandezd84a47c2010-03-19 16:59:18 -07001868
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001869 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
1870 pci_resource_len(ha->pdev, 3));
1871 if (ha->mqiobase) {
1872 /* Read MSIX vector size of the board */
1873 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
1874 ha->msix_count = msix;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001875 /* Max queues are bounded by available msix vectors */
1876 /* queue 0 uses two msix vectors */
1877 if (ql2xmultique_tag) {
1878 cpus = num_online_cpus();
Anirban Chakraborty27dc9c52009-06-17 10:30:28 -07001879 ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ?
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001880 (cpus + 1) : (ha->msix_count - 1);
1881 ha->max_req_queues = 2;
1882 } else if (ql2xmaxqueues > 1) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001883 ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ?
1884 QLA_MQ_SIZE : ql2xmaxqueues;
1885 DEBUG2(qla_printk(KERN_INFO, ha, "QoS mode set, max no"
1886 " of request queues:%d\n", ha->max_req_queues));
1887 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001888 qla_printk(KERN_INFO, ha,
1889 "MSI-X vector count: %d\n", msix);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001890 } else
1891 qla_printk(KERN_INFO, ha, "BAR 3 not enabled\n");
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001892
1893mqiobase_exit:
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001894 ha->msix_count = ha->max_rsp_queues + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return (0);
1896
1897iospace_error_exit:
1898 return (-ENOMEM);
1899}
1900
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001901static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001902qla2xxx_scan_start(struct Scsi_Host *shost)
1903{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001904 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001905
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07001906 if (vha->hw->flags.running_gold_fw)
1907 return;
1908
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001909 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1910 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1911 set_bit(RSCN_UPDATE, &vha->dpc_flags);
1912 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001913}
1914
1915static int
1916qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1917{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001918 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001919
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001920 if (!vha->host)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001921 return 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001922 if (time > vha->hw->loop_reset_delay * HZ)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001923 return 1;
1924
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001925 return atomic_read(&vha->loop_state) == LOOP_READY;
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001926}
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928/*
1929 * PCI driver interface
1930 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001931static int __devinit
1932qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001934 int ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 struct Scsi_Host *host;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001936 scsi_qla_host_t *base_vha = NULL;
1937 struct qla_hw_data *ha;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001938 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001940 struct scsi_host_template *sht;
Anirban Chakrabortyc51da4e2008-11-10 15:53:20 -08001941 int bars, max_id, mem_only = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001942 uint16_t req_length = 0, rsp_length = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001943 struct req_que *req = NULL;
1944 struct rsp_que *rsp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Andrew Vasquez285d0322007-10-19 15:59:17 -07001946 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
Giridhar Malavalia5326f82009-03-24 09:07:56 -07001947 sht = &qla2xxx_driver_template;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001948 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1949 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001950 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
Andrew Vasquez285d0322007-10-19 15:59:17 -07001951 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1952 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001953 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
Giridhar Malavalia9083012010-04-12 17:59:55 -07001954 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
1955 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021) {
Andrew Vasquez285d0322007-10-19 15:59:17 -07001956 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001957 mem_only = 1;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001958 }
1959
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001960 if (mem_only) {
1961 if (pci_enable_device_mem(pdev))
1962 goto probe_out;
1963 } else {
1964 if (pci_enable_device(pdev))
1965 goto probe_out;
1966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Jesse Barnes09276782008-10-18 17:33:19 -07001968 /* This may fail but that's ok */
1969 pci_enable_pcie_error_reporting(pdev);
Seokmann Ju14e660e2007-09-20 14:07:36 -07001970
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001971 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
1972 if (!ha) {
1973 DEBUG(printk("Unable to allocate memory for ha\n"));
1974 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001976 ha->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 /* Clear our data area */
Andrew Vasquez285d0322007-10-19 15:59:17 -07001979 ha->bars = bars;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001980 ha->mem_only = mem_only;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001981 spin_lock_init(&ha->hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001983 /* Set ISP-type information. */
1984 qla2x00_set_isp_flags(ha);
Duane Grigsbyca79cf62009-12-15 21:29:47 -08001985
1986 /* Set EEH reset type to fundamental if required by hba */
1987 if ( IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) {
1988 pdev->needs_freset = 1;
Duane Grigsbyca79cf62009-12-15 21:29:47 -08001989 }
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 /* Configure PCI I/O space */
1992 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001993 if (ret)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001994 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001997 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1998 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002001 ha->init_cb_size = sizeof(init_cb_t);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07002002 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002003 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002005 /* Assign ISP specific operations. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002006 max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (IS_QLA2100(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002008 max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002010 req_length = REQUEST_ENTRY_CNT_2100;
2011 rsp_length = RESPONSE_ENTRY_CNT_2100;
2012 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002013 ha->gid_list_info_size = 4;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002014 ha->flash_conf_off = ~0;
2015 ha->flash_data_off = ~0;
2016 ha->nvram_conf_off = ~0;
2017 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002018 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 } else if (IS_QLA2200(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002021 req_length = REQUEST_ENTRY_CNT_2200;
2022 rsp_length = RESPONSE_ENTRY_CNT_2100;
2023 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002024 ha->gid_list_info_size = 4;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002025 ha->flash_conf_off = ~0;
2026 ha->flash_data_off = ~0;
2027 ha->nvram_conf_off = ~0;
2028 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002029 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002030 } else if (IS_QLA23XX(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002032 req_length = REQUEST_ENTRY_CNT_2200;
2033 rsp_length = RESPONSE_ENTRY_CNT_2300;
2034 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002035 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002036 if (IS_QLA2322(ha) || IS_QLA6322(ha))
2037 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002038 ha->flash_conf_off = ~0;
2039 ha->flash_data_off = ~0;
2040 ha->nvram_conf_off = ~0;
2041 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002042 ha->isp_ops = &qla2300_isp_ops;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002043 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07002044 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002045 req_length = REQUEST_ENTRY_CNT_24XX;
2046 rsp_length = RESPONSE_ENTRY_CNT_2300;
2047 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002048 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002049 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002050 ha->optrom_size = OPTROM_SIZE_24XX;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002051 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002052 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002053 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2054 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2055 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2056 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002057 } else if (IS_QLA25XX(ha)) {
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002058 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002059 req_length = REQUEST_ENTRY_CNT_24XX;
2060 rsp_length = RESPONSE_ENTRY_CNT_2300;
2061 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002062 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002063 ha->gid_list_info_size = 8;
2064 ha->optrom_size = OPTROM_SIZE_25XX;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002065 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002066 ha->isp_ops = &qla25xx_isp_ops;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002067 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2068 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2069 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2070 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2071 } else if (IS_QLA81XX(ha)) {
2072 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2073 req_length = REQUEST_ENTRY_CNT_24XX;
2074 rsp_length = RESPONSE_ENTRY_CNT_2300;
2075 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2076 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2077 ha->gid_list_info_size = 8;
2078 ha->optrom_size = OPTROM_SIZE_81XX;
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07002079 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002080 ha->isp_ops = &qla81xx_isp_ops;
2081 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2082 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2083 ha->nvram_conf_off = ~0;
2084 ha->nvram_data_off = ~0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002085 } else if (IS_QLA82XX(ha)) {
2086 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2087 req_length = REQUEST_ENTRY_CNT_82XX;
2088 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2089 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2090 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2091 ha->gid_list_info_size = 8;
2092 ha->optrom_size = OPTROM_SIZE_82XX;
2093 ha->isp_ops = &qla82xx_isp_ops;
2094 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2095 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2096 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2097 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -07002100 mutex_init(&ha->vport_lock);
Marcus Barrow0b05a1f2008-01-17 09:02:13 -08002101 init_completion(&ha->mbx_cmd_comp);
2102 complete(&ha->mbx_cmd_comp);
2103 init_completion(&ha->mbx_intr_comp);
Sarang Radke23f2ebd2010-05-28 15:08:21 -07002104 init_completion(&ha->dcbx_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002106 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Andrew Vasquez53303c42009-01-22 09:45:37 -08002108 qla2x00_config_dma_addressing(ha);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002109 ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002110 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 qla_printk(KERN_WARNING, ha,
2112 "[ERROR] Failed to allocate memory for adapter\n");
2113
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002114 goto probe_hw_failed;
2115 }
2116
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002117 req->max_q_depth = MAX_Q_DEPTH;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002118 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002119 req->max_q_depth = ql2xmaxqdepth;
2120
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002121
2122 base_vha = qla2x00_create_host(sht, ha);
2123 if (!base_vha) {
2124 qla_printk(KERN_WARNING, ha,
2125 "[ERROR] Failed to allocate memory for scsi_host\n");
2126
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002127 ret = -ENOMEM;
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002128 qla2x00_mem_free(ha);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002129 qla2x00_free_req_que(ha, req);
2130 qla2x00_free_rsp_que(ha, rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002131 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002134 pci_set_drvdata(pdev, base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002136 host = base_vha->host;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002137 base_vha->req = req;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002138 host->can_queue = req->length + 128;
2139 if (IS_QLA2XXX_MIDTYPE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002140 base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002141 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002142 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
2143 base_vha->vp_idx;
Giridhar Malavali58548cb2010-09-03 15:20:56 -07002144
2145 /* Set the SG table size based on ISP type */
2146 if (!IS_FWI2_CAPABLE(ha)) {
2147 if (IS_QLA2100(ha))
2148 host->sg_tablesize = 32;
2149 } else {
2150 if (!IS_QLA82XX(ha))
2151 host->sg_tablesize = QLA_SG_ALL;
2152 }
2153
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002154 host->max_id = max_id;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002155 host->this_id = 255;
2156 host->cmd_per_lun = 3;
Seokmann Ju711c1d92008-07-10 16:55:51 -07002157 host->unique_id = host->host_no;
Arun Easi0c470872010-07-23 15:28:38 +05002158 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif)
2159 host->max_cmd_len = 32;
2160 else
2161 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07002162 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002163 host->max_lun = MAX_LUNS;
2164 host->transportt = qla2xxx_transport_template;
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002165 sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002166
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002167 /* Set up the irqs */
2168 ret = qla2x00_request_irqs(ha, rsp);
2169 if (ret)
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002170 goto probe_init_failed;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08002171
2172 pci_save_state(pdev);
2173
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002174 /* Alloc arrays of request and response ring ptrs */
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002175que_init:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002176 if (!qla2x00_alloc_queues(ha)) {
2177 qla_printk(KERN_WARNING, ha,
2178 "[ERROR] Failed to allocate memory for queue"
2179 " pointers\n");
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002180 goto probe_init_failed;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002181 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07002182
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002183 ha->rsp_q_map[0] = rsp;
2184 ha->req_q_map[0] = req;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002185 rsp->req = req;
2186 req->rsp = rsp;
2187 set_bit(0, ha->req_qid_map);
2188 set_bit(0, ha->rsp_qid_map);
Andrew Vasquez08029992009-03-24 09:07:55 -07002189 /* FWI2-capable only. */
2190 req->req_q_in = &ha->iobase->isp24.req_q_in;
2191 req->req_q_out = &ha->iobase->isp24.req_q_out;
2192 rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
2193 rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002194 if (ha->mqenable) {
Andrew Vasquez08029992009-03-24 09:07:55 -07002195 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
2196 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
2197 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
2198 rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002199 }
2200
Giridhar Malavalia9083012010-04-12 17:59:55 -07002201 if (IS_QLA82XX(ha)) {
2202 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
2203 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
2204 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
2205 }
2206
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002207 if (qla2x00_initialize_adapter(base_vha)) {
2208 qla_printk(KERN_WARNING, ha,
2209 "Failed to initialize adapter\n");
2210
2211 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
2212 "Adapter flags %x.\n",
2213 base_vha->host_no, base_vha->device_flags));
2214
Giridhar Malavalia9083012010-04-12 17:59:55 -07002215 if (IS_QLA82XX(ha)) {
2216 qla82xx_idc_lock(ha);
2217 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
2218 QLA82XX_DEV_FAILED);
2219 qla82xx_idc_unlock(ha);
2220 qla_printk(KERN_INFO, ha, "HW State: FAILED\n");
2221 }
2222
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002223 ret = -ENODEV;
2224 goto probe_failed;
2225 }
2226
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002227 if (ha->mqenable) {
2228 if (qla25xx_setup_mode(base_vha)) {
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002229 qla_printk(KERN_WARNING, ha,
2230 "Can't create queues, falling back to single"
2231 " queue mode\n");
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002232 goto que_init;
2233 }
2234 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002235
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07002236 if (ha->flags.running_gold_fw)
2237 goto skip_dpc;
2238
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002239 /*
2240 * Startup the kernel thread for this host adapter
2241 */
2242 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
2243 "%s_dpc", base_vha->host_str);
2244 if (IS_ERR(ha->dpc_thread)) {
2245 qla_printk(KERN_WARNING, ha,
2246 "Unable to start DPC thread!\n");
2247 ret = PTR_ERR(ha->dpc_thread);
2248 goto probe_failed;
2249 }
2250
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07002251skip_dpc:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002252 list_add_tail(&base_vha->list, &ha->vp_list);
2253 base_vha->host->irq = ha->pdev->irq;
2254
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 /* Initialized the timer */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002256 qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002259 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Arun Easiba77ef52010-05-28 15:08:27 -07002261 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif) {
Arun Easibad75002010-05-04 15:01:30 -07002262 if (ha->fw_attributes & BIT_4) {
2263 base_vha->flags.difdix_supported = 1;
2264 DEBUG18(qla_printk(KERN_INFO, ha,
2265 "Registering for DIF/DIX type 1 and 3"
2266 " protection.\n"));
2267 scsi_host_set_prot(host,
2268 SHOST_DIF_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002269 | SHOST_DIF_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002270 | SHOST_DIF_TYPE3_PROTECTION
2271 | SHOST_DIX_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002272 | SHOST_DIX_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002273 | SHOST_DIX_TYPE3_PROTECTION);
2274 scsi_host_set_guard(host, SHOST_DIX_GUARD_CRC);
2275 } else
2276 base_vha->flags.difdix_supported = 0;
2277 }
2278
Giridhar Malavalia9083012010-04-12 17:59:55 -07002279 ha->isp_ops->enable_intrs(ha);
2280
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002281 ret = scsi_add_host(host, &pdev->dev);
2282 if (ret)
2283 goto probe_failed;
2284
Michael Reed14864002009-12-02 09:11:16 -06002285 base_vha->flags.init_done = 1;
2286 base_vha->flags.online = 1;
2287
Andrew Vasquez1e99e332006-11-22 08:24:48 -08002288 scsi_scan_host(host);
2289
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002290 qla2x00_alloc_sysfs_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002291
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002292 qla2x00_init_host_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002293
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002294 qla2x00_dfs_setup(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 qla_printk(KERN_INFO, ha, "\n"
2297 " QLogic Fibre Channel HBA Driver: %s\n"
2298 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08002299 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
2300 qla2x00_version_str, ha->model_number,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002301 ha->model_desc ? ha->model_desc : "", pdev->device,
2302 ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev),
2303 ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no,
2304 ha->isp_ops->fw_version_str(base_vha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return 0;
2307
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002308probe_init_failed:
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002309 qla2x00_free_req_que(ha, req);
2310 qla2x00_free_rsp_que(ha, rsp);
2311 ha->max_req_queues = ha->max_rsp_queues = 0;
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313probe_failed:
Andrew Vasquezb9978762009-03-24 09:08:05 -07002314 if (base_vha->timer_active)
2315 qla2x00_stop_timer(base_vha);
2316 base_vha->flags.online = 0;
2317 if (ha->dpc_thread) {
2318 struct task_struct *t = ha->dpc_thread;
2319
2320 ha->dpc_thread = NULL;
2321 kthread_stop(t);
2322 }
2323
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002324 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002326 scsi_host_put(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002328probe_hw_failed:
Giridhar Malavalia9083012010-04-12 17:59:55 -07002329 if (IS_QLA82XX(ha)) {
2330 qla82xx_idc_lock(ha);
2331 qla82xx_clear_drv_active(ha);
2332 qla82xx_idc_unlock(ha);
2333 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2334 if (!ql2xdbwr)
2335 iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2336 } else {
2337 if (ha->iobase)
2338 iounmap(ha->iobase);
2339 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002340 pci_release_selected_regions(ha->pdev, ha->bars);
2341 kfree(ha);
2342 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002344probe_out:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002345 pci_disable_device(pdev);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002346 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Adrian Bunk4c993f72008-01-14 00:55:16 -08002349static void
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002350qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Arun Easifeafb7b2010-09-03 14:57:00 -07002352 scsi_qla_host_t *base_vha, *vha;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002353 struct qla_hw_data *ha;
Arun Easifeafb7b2010-09-03 14:57:00 -07002354 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002356 base_vha = pci_get_drvdata(pdev);
2357 ha = base_vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Arun Easifeafb7b2010-09-03 14:57:00 -07002359 spin_lock_irqsave(&ha->vport_slock, flags);
2360 list_for_each_entry(vha, &ha->vp_list, list) {
2361 atomic_inc(&vha->vref_count);
2362
2363 if (vha && vha->fc_vport) {
2364 spin_unlock_irqrestore(&ha->vport_slock, flags);
2365
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002366 fc_vport_terminate(vha->fc_vport);
Arun Easifeafb7b2010-09-03 14:57:00 -07002367
2368 spin_lock_irqsave(&ha->vport_slock, flags);
2369 }
2370
2371 atomic_dec(&vha->vref_count);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002372 }
Arun Easifeafb7b2010-09-03 14:57:00 -07002373 spin_unlock_irqrestore(&ha->vport_slock, flags);
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002374
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002375 set_bit(UNLOADING, &base_vha->dpc_flags);
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002376
Andrew Vasquezb9978762009-03-24 09:08:05 -07002377 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
2378
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002379 qla2x00_dfs_remove(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002380
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002381 qla84xx_put_chip(base_vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002382
Andrew Vasquezb9978762009-03-24 09:08:05 -07002383 /* Disable timer */
2384 if (base_vha->timer_active)
2385 qla2x00_stop_timer(base_vha);
2386
2387 base_vha->flags.online = 0;
2388
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002389 /* Flush the work queue and remove it */
2390 if (ha->wq) {
2391 flush_workqueue(ha->wq);
2392 destroy_workqueue(ha->wq);
2393 ha->wq = NULL;
2394 }
2395
Andrew Vasquezb9978762009-03-24 09:08:05 -07002396 /* Kill the kernel thread for this host */
2397 if (ha->dpc_thread) {
2398 struct task_struct *t = ha->dpc_thread;
2399
2400 /*
2401 * qla2xxx_wake_dpc checks for ->dpc_thread
2402 * so we need to zero it out.
2403 */
2404 ha->dpc_thread = NULL;
2405 kthread_stop(t);
2406 }
2407
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002408 qla2x00_free_sysfs_attr(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002410 fc_remove_host(base_vha->host);
bdf79622005-04-17 15:06:53 -05002411
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002412 scsi_remove_host(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002414 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002416 scsi_host_put(base_vha->host);
2417
Giridhar Malavalia9083012010-04-12 17:59:55 -07002418 if (IS_QLA82XX(ha)) {
Giridhar Malavalib9637522010-05-28 15:08:15 -07002419 qla82xx_idc_lock(ha);
2420 qla82xx_clear_drv_active(ha);
2421 qla82xx_idc_unlock(ha);
2422
Giridhar Malavalia9083012010-04-12 17:59:55 -07002423 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2424 if (!ql2xdbwr)
2425 iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2426 } else {
2427 if (ha->iobase)
2428 iounmap(ha->iobase);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002429
Giridhar Malavalia9083012010-04-12 17:59:55 -07002430 if (ha->mqiobase)
2431 iounmap(ha->mqiobase);
2432 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002433
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002434 pci_release_selected_regions(ha->pdev, ha->bars);
2435 kfree(ha);
2436 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08002438 pci_disable_pcie_error_reporting(pdev);
2439
Bernhard Walle665db932007-03-28 00:49:49 +02002440 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 pci_set_drvdata(pdev, NULL);
2442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002445qla2x00_free_device(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002447 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Andrew Vasquez85880802009-12-15 21:29:46 -08002449 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
2450
2451 /* Disable timer */
2452 if (vha->timer_active)
2453 qla2x00_stop_timer(vha);
2454
2455 /* Kill the kernel thread for this host */
2456 if (ha->dpc_thread) {
2457 struct task_struct *t = ha->dpc_thread;
2458
2459 /*
2460 * qla2xxx_wake_dpc checks for ->dpc_thread
2461 * so we need to zero it out.
2462 */
2463 ha->dpc_thread = NULL;
2464 kthread_stop(t);
2465 }
2466
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002467 qla25xx_delete_queues(vha);
2468
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002469 if (ha->flags.fce_enabled)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002470 qla2x00_disable_fce_trace(vha, NULL, NULL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002471
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002472 if (ha->eft)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002473 qla2x00_disable_eft_trace(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002474
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002475 /* Stop currently executing firmware. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002476 qla2x00_try_to_stop_firmware(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Andrew Vasquez85880802009-12-15 21:29:46 -08002478 vha->flags.online = 0;
2479
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002480 /* turn-off interrupts on the card */
Giridhar Malavalia9083012010-04-12 17:59:55 -07002481 if (ha->interrupts_on) {
2482 vha->flags.init_done = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002483 ha->isp_ops->disable_intrs(ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07002484 }
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002485
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002486 qla2x00_free_irqs(vha);
2487
Chad Dupuis88670482010-07-23 15:28:30 +05002488 qla2x00_free_fcports(vha);
2489
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002490 qla2x00_mem_free(ha);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002491
2492 qla2x00_free_queues(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
Chad Dupuis88670482010-07-23 15:28:30 +05002495void qla2x00_free_fcports(struct scsi_qla_host *vha)
2496{
2497 fc_port_t *fcport, *tfcport;
2498
2499 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
2500 list_del(&fcport->list);
2501 kfree(fcport);
2502 fcport = NULL;
2503 }
2504}
2505
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002506static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002507qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002508 int defer)
2509{
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002510 struct fc_rport *rport;
Andrew Vasquez67becc02009-08-25 11:36:20 -07002511 scsi_qla_host_t *base_vha;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002512
2513 if (!fcport->rport)
2514 return;
2515
2516 rport = fcport->rport;
2517 if (defer) {
Andrew Vasquez67becc02009-08-25 11:36:20 -07002518 base_vha = pci_get_drvdata(vha->hw->pdev);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002519 spin_lock_irq(vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002520 fcport->drport = rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002521 spin_unlock_irq(vha->host->host_lock);
Andrew Vasquez67becc02009-08-25 11:36:20 -07002522 set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
2523 qla2xxx_wake_dpc(base_vha);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002524 } else
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002525 fc_remote_port_delete(rport);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002526}
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
2530 *
2531 * Input: ha = adapter block pointer. fcport = port structure pointer.
2532 *
2533 * Return: None.
2534 *
2535 * Context:
2536 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002537void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002538 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002540 if (atomic_read(&fcport->state) == FCS_ONLINE &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002541 vha->vp_idx == fcport->vp_idx) {
2542 atomic_set(&fcport->state, FCS_DEVICE_LOST);
2543 qla2x00_schedule_rport_del(vha, fcport, defer);
2544 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002545 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 * We may need to retry the login, so don't change the state of the
2547 * port but do the retries.
2548 */
2549 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
2550 atomic_set(&fcport->state, FCS_DEVICE_LOST);
2551
2552 if (!do_login)
2553 return;
2554
2555 if (fcport->login_retry == 0) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002556 fcport->login_retry = vha->hw->login_retry_count;
2557 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 DEBUG(printk("scsi(%ld): Port login retry: "
2560 "%02x%02x%02x%02x%02x%02x%02x%02x, "
2561 "id = 0x%04x retry cnt=%d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002562 vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 fcport->port_name[0],
2564 fcport->port_name[1],
2565 fcport->port_name[2],
2566 fcport->port_name[3],
2567 fcport->port_name[4],
2568 fcport->port_name[5],
2569 fcport->port_name[6],
2570 fcport->port_name[7],
2571 fcport->loop_id,
2572 fcport->login_retry));
2573 }
2574}
2575
2576/*
2577 * qla2x00_mark_all_devices_lost
2578 * Updates fcport state when device goes offline.
2579 *
2580 * Input:
2581 * ha = adapter block pointer.
2582 * fcport = port structure pointer.
2583 *
2584 * Return:
2585 * None.
2586 *
2587 * Context:
2588 */
2589void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002590qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
2592 fc_port_t *fcport;
2593
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002594 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002595 if (vha->vp_idx != 0 && vha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 continue;
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 /*
2599 * No point in marking the device as lost, if the device is
2600 * already DEAD.
2601 */
2602 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
2603 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002604 if (atomic_read(&fcport->state) == FCS_ONLINE) {
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002605 if (defer)
2606 qla2x00_schedule_rport_del(vha, fcport, defer);
2607 else if (vha->vp_idx == fcport->vp_idx)
2608 qla2x00_schedule_rport_del(vha, fcport, defer);
2609 }
2610 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
2612}
2613
2614/*
2615* qla2x00_mem_alloc
2616* Allocates adapter memory.
2617*
2618* Returns:
2619* 0 = success.
Andrew Vasqueze8711082008-01-31 12:33:48 -08002620* !0 = failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621*/
Andrew Vasqueze8711082008-01-31 12:33:48 -08002622static int
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002623qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
2624 struct req_que **req, struct rsp_que **rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627
Andrew Vasqueze8711082008-01-31 12:33:48 -08002628 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002629 &ha->init_cb_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002630 if (!ha->init_cb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002631 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002633 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2634 &ha->gid_list_dma, GFP_KERNEL);
2635 if (!ha->gid_list)
Andrew Vasqueze8711082008-01-31 12:33:48 -08002636 goto fail_free_init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Andrew Vasqueze8711082008-01-31 12:33:48 -08002638 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2639 if (!ha->srb_mempool)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002640 goto fail_free_gid_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Giridhar Malavalia9083012010-04-12 17:59:55 -07002642 if (IS_QLA82XX(ha)) {
2643 /* Allocate cache for CT6 Ctx. */
2644 if (!ctx_cachep) {
2645 ctx_cachep = kmem_cache_create("qla2xxx_ctx",
2646 sizeof(struct ct6_dsd), 0,
2647 SLAB_HWCACHE_ALIGN, NULL);
2648 if (!ctx_cachep)
2649 goto fail_free_gid_list;
2650 }
2651 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
2652 ctx_cachep);
2653 if (!ha->ctx_mempool)
2654 goto fail_free_srb_mempool;
2655 }
2656
Andrew Vasqueze8711082008-01-31 12:33:48 -08002657 /* Get memory for cached NVRAM */
2658 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2659 if (!ha->nvram)
Giridhar Malavalia9083012010-04-12 17:59:55 -07002660 goto fail_free_ctx_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002662 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
2663 ha->pdev->device);
2664 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2665 DMA_POOL_SIZE, 8, 0);
2666 if (!ha->s_dma_pool)
2667 goto fail_free_nvram;
2668
Arun Easibad75002010-05-04 15:01:30 -07002669 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002670 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2671 DSD_LIST_DMA_POOL_SIZE, 8, 0);
2672 if (!ha->dl_dma_pool) {
2673 qla_printk(KERN_WARNING, ha,
2674 "Memory Allocation failed - dl_dma_pool\n");
2675 goto fail_s_dma_pool;
2676 }
2677
2678 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2679 FCP_CMND_DMA_POOL_SIZE, 8, 0);
2680 if (!ha->fcp_cmnd_dma_pool) {
2681 qla_printk(KERN_WARNING, ha,
2682 "Memory Allocation failed - fcp_cmnd_dma_pool\n");
2683 goto fail_dl_dma_pool;
2684 }
2685 }
2686
Andrew Vasqueze8711082008-01-31 12:33:48 -08002687 /* Allocate memory for SNS commands */
2688 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002689 /* Get consistent memory allocated for SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002690 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002691 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002692 if (!ha->sns_cmd)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002693 goto fail_dma_pool;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002694 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002695 /* Get consistent memory allocated for MS IOCB */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002696 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002697 &ha->ms_iocb_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002698 if (!ha->ms_iocb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002699 goto fail_dma_pool;
2700 /* Get consistent memory allocated for CT SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002701 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002702 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002703 if (!ha->ct_sns)
2704 goto fail_free_ms_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
2706
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002707 /* Allocate memory for request ring */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002708 *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
2709 if (!*req) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002710 DEBUG(printk("Unable to allocate memory for req\n"));
2711 goto fail_req;
2712 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002713 (*req)->length = req_len;
2714 (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
2715 ((*req)->length + 1) * sizeof(request_t),
2716 &(*req)->dma, GFP_KERNEL);
2717 if (!(*req)->ring) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002718 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2719 goto fail_req_ring;
2720 }
2721 /* Allocate memory for response ring */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002722 *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
2723 if (!*rsp) {
2724 qla_printk(KERN_WARNING, ha,
2725 "Unable to allocate memory for rsp\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002726 goto fail_rsp;
2727 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002728 (*rsp)->hw = ha;
2729 (*rsp)->length = rsp_len;
2730 (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
2731 ((*rsp)->length + 1) * sizeof(response_t),
2732 &(*rsp)->dma, GFP_KERNEL);
2733 if (!(*rsp)->ring) {
2734 qla_printk(KERN_WARNING, ha,
2735 "Unable to allocate memory for rsp_ring\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002736 goto fail_rsp_ring;
2737 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002738 (*req)->rsp = *rsp;
2739 (*rsp)->req = *req;
2740 /* Allocate memory for NVRAM data for vports */
2741 if (ha->nvram_npiv_size) {
2742 ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) *
2743 ha->nvram_npiv_size, GFP_KERNEL);
2744 if (!ha->npiv_info) {
2745 qla_printk(KERN_WARNING, ha,
2746 "Unable to allocate memory for npiv info\n");
2747 goto fail_npiv_info;
2748 }
2749 } else
2750 ha->npiv_info = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002751
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002752 /* Get consistent memory allocated for EX-INIT-CB. */
Giridhar Malavalia9083012010-04-12 17:59:55 -07002753 if (IS_QLA8XXX_TYPE(ha)) {
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002754 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2755 &ha->ex_init_cb_dma);
2756 if (!ha->ex_init_cb)
2757 goto fail_ex_init_cb;
2758 }
2759
Giridhar Malavalia9083012010-04-12 17:59:55 -07002760 INIT_LIST_HEAD(&ha->gbl_dsd_list);
2761
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002762 /* Get consistent memory allocated for Async Port-Database. */
2763 if (!IS_FWI2_CAPABLE(ha)) {
2764 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2765 &ha->async_pd_dma);
2766 if (!ha->async_pd)
2767 goto fail_async_pd;
2768 }
2769
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002770 INIT_LIST_HEAD(&ha->vp_list);
2771 return 1;
2772
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002773fail_async_pd:
2774 dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002775fail_ex_init_cb:
2776 kfree(ha->npiv_info);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002777fail_npiv_info:
2778 dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
2779 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
2780 (*rsp)->ring = NULL;
2781 (*rsp)->dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002782fail_rsp_ring:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002783 kfree(*rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002784fail_rsp:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002785 dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
2786 sizeof(request_t), (*req)->ring, (*req)->dma);
2787 (*req)->ring = NULL;
2788 (*req)->dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002789fail_req_ring:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002790 kfree(*req);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002791fail_req:
2792 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2793 ha->ct_sns, ha->ct_sns_dma);
2794 ha->ct_sns = NULL;
2795 ha->ct_sns_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002796fail_free_ms_iocb:
2797 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2798 ha->ms_iocb = NULL;
2799 ha->ms_iocb_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002800fail_dma_pool:
Arun Easibad75002010-05-04 15:01:30 -07002801 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002802 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
2803 ha->fcp_cmnd_dma_pool = NULL;
2804 }
2805fail_dl_dma_pool:
Arun Easibad75002010-05-04 15:01:30 -07002806 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002807 dma_pool_destroy(ha->dl_dma_pool);
2808 ha->dl_dma_pool = NULL;
2809 }
2810fail_s_dma_pool:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002811 dma_pool_destroy(ha->s_dma_pool);
2812 ha->s_dma_pool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002813fail_free_nvram:
2814 kfree(ha->nvram);
2815 ha->nvram = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002816fail_free_ctx_mempool:
2817 mempool_destroy(ha->ctx_mempool);
2818 ha->ctx_mempool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002819fail_free_srb_mempool:
2820 mempool_destroy(ha->srb_mempool);
2821 ha->srb_mempool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002822fail_free_gid_list:
2823 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002824 ha->gid_list_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002825 ha->gid_list = NULL;
2826 ha->gid_list_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002827fail_free_init_cb:
2828 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2829 ha->init_cb_dma);
2830 ha->init_cb = NULL;
2831 ha->init_cb_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002832fail:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002833 DEBUG(printk("%s: Memory allocation failure\n", __func__));
Andrew Vasqueze8711082008-01-31 12:33:48 -08002834 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837/*
2838* qla2x00_mem_free
2839* Frees all adapter allocated memory.
2840*
2841* Input:
2842* ha = adapter block pointer.
2843*/
Adrian Bunka824ebb2008-01-17 09:02:15 -08002844static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002845qla2x00_mem_free(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
Andrew Vasqueze8711082008-01-31 12:33:48 -08002847 if (ha->srb_mempool)
2848 mempool_destroy(ha->srb_mempool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002850 if (ha->fce)
2851 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002852 ha->fce_dma);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002853
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002854 if (ha->fw_dump) {
2855 if (ha->eft)
2856 dma_free_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002857 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002858 vfree(ha->fw_dump);
2859 }
2860
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -07002861 if (ha->dcbx_tlv)
2862 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
2863 ha->dcbx_tlv, ha->dcbx_tlv_dma);
2864
Andrew Vasquezce0423f2009-06-03 09:55:13 -07002865 if (ha->xgmac_data)
2866 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
2867 ha->xgmac_data, ha->xgmac_data_dma);
2868
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 if (ha->sns_cmd)
2870 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002871 ha->sns_cmd, ha->sns_cmd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 if (ha->ct_sns)
2874 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002875 ha->ct_sns, ha->ct_sns_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Andrew Vasquez88729e52006-06-23 16:10:50 -07002877 if (ha->sfp_data)
2878 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2879
Joe Carnuccioad0ecd62009-03-24 09:08:12 -07002880 if (ha->edc_data)
2881 dma_pool_free(ha->s_dma_pool, ha->edc_data, ha->edc_data_dma);
2882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 if (ha->ms_iocb)
2884 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2885
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002886 if (ha->ex_init_cb)
Giridhar Malavalia9083012010-04-12 17:59:55 -07002887 dma_pool_free(ha->s_dma_pool,
2888 ha->ex_init_cb, ha->ex_init_cb_dma);
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002889
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002890 if (ha->async_pd)
2891 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (ha->s_dma_pool)
2894 dma_pool_destroy(ha->s_dma_pool);
2895
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 if (ha->gid_list)
2897 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002898 ha->gid_list_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Giridhar Malavalia9083012010-04-12 17:59:55 -07002900 if (IS_QLA82XX(ha)) {
2901 if (!list_empty(&ha->gbl_dsd_list)) {
2902 struct dsd_dma *dsd_ptr, *tdsd_ptr;
2903
2904 /* clean up allocated prev pool */
2905 list_for_each_entry_safe(dsd_ptr,
2906 tdsd_ptr, &ha->gbl_dsd_list, list) {
2907 dma_pool_free(ha->dl_dma_pool,
2908 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma);
2909 list_del(&dsd_ptr->list);
2910 kfree(dsd_ptr);
2911 }
2912 }
2913 }
2914
2915 if (ha->dl_dma_pool)
2916 dma_pool_destroy(ha->dl_dma_pool);
2917
2918 if (ha->fcp_cmnd_dma_pool)
2919 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
2920
2921 if (ha->ctx_mempool)
2922 mempool_destroy(ha->ctx_mempool);
2923
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002924 if (ha->init_cb)
2925 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
Giridhar Malavalia9083012010-04-12 17:59:55 -07002926 ha->init_cb, ha->init_cb_dma);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002927 vfree(ha->optrom_buffer);
2928 kfree(ha->nvram);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002929 kfree(ha->npiv_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Andrew Vasqueze8711082008-01-31 12:33:48 -08002931 ha->srb_mempool = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002932 ha->ctx_mempool = NULL;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002933 ha->eft = NULL;
2934 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 ha->sns_cmd = NULL;
2936 ha->sns_cmd_dma = 0;
2937 ha->ct_sns = NULL;
2938 ha->ct_sns_dma = 0;
2939 ha->ms_iocb = NULL;
2940 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 ha->init_cb = NULL;
2942 ha->init_cb_dma = 0;
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002943 ha->ex_init_cb = NULL;
2944 ha->ex_init_cb_dma = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002945 ha->async_pd = NULL;
2946 ha->async_pd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 ha->s_dma_pool = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002949 ha->dl_dma_pool = NULL;
2950 ha->fcp_cmnd_dma_pool = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 ha->gid_list = NULL;
2953 ha->gid_list_dma = 0;
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002956 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 ha->fw_dump_reading = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002958}
2959
2960struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
2961 struct qla_hw_data *ha)
2962{
2963 struct Scsi_Host *host;
2964 struct scsi_qla_host *vha = NULL;
2965
2966 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
2967 if (host == NULL) {
2968 printk(KERN_WARNING
2969 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2970 goto fail;
2971 }
2972
2973 /* Clear our data area */
2974 vha = shost_priv(host);
2975 memset(vha, 0, sizeof(scsi_qla_host_t));
2976
2977 vha->host = host;
2978 vha->host_no = host->host_no;
2979 vha->hw = ha;
2980
2981 INIT_LIST_HEAD(&vha->vp_fcports);
2982 INIT_LIST_HEAD(&vha->work_list);
2983 INIT_LIST_HEAD(&vha->list);
2984
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07002985 spin_lock_init(&vha->work_lock);
2986
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002987 sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
2988 return vha;
2989
2990fail:
2991 return vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
Adrian Bunk01ef66b2008-04-24 15:21:27 -07002994static struct qla_work_evt *
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07002995qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
Andrew Vasquez0971de72008-04-03 13:13:18 -07002996{
2997 struct qla_work_evt *e;
Arun Easifeafb7b2010-09-03 14:57:00 -07002998 uint8_t bail;
2999
3000 QLA_VHA_MARK_BUSY(vha, bail);
3001 if (bail)
3002 return NULL;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003003
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003004 e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
Arun Easifeafb7b2010-09-03 14:57:00 -07003005 if (!e) {
3006 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003007 return NULL;
Arun Easifeafb7b2010-09-03 14:57:00 -07003008 }
Andrew Vasquez0971de72008-04-03 13:13:18 -07003009
3010 INIT_LIST_HEAD(&e->list);
3011 e->type = type;
3012 e->flags = QLA_EVT_FLAG_FREE;
3013 return e;
3014}
3015
Adrian Bunk01ef66b2008-04-24 15:21:27 -07003016static int
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003017qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
Andrew Vasquez0971de72008-04-03 13:13:18 -07003018{
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003019 unsigned long flags;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003020
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003021 spin_lock_irqsave(&vha->work_lock, flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003022 list_add_tail(&e->list, &vha->work_list);
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003023 spin_unlock_irqrestore(&vha->work_lock, flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003024 qla2xxx_wake_dpc(vha);
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003025
Andrew Vasquez0971de72008-04-03 13:13:18 -07003026 return QLA_SUCCESS;
3027}
3028
3029int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003030qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
Andrew Vasquez0971de72008-04-03 13:13:18 -07003031 u32 data)
3032{
3033 struct qla_work_evt *e;
3034
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003035 e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003036 if (!e)
3037 return QLA_FUNCTION_FAILED;
3038
3039 e->u.aen.code = code;
3040 e->u.aen.data = data;
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003041 return qla2x00_post_work(vha, e);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003042}
3043
Andrew Vasquez8a659572009-02-08 20:50:12 -08003044int
3045qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
3046{
3047 struct qla_work_evt *e;
3048
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003049 e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
Andrew Vasquez8a659572009-02-08 20:50:12 -08003050 if (!e)
3051 return QLA_FUNCTION_FAILED;
3052
3053 memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003054 return qla2x00_post_work(vha, e);
Andrew Vasquez8a659572009-02-08 20:50:12 -08003055}
3056
Andrew Vasquezac280b62009-08-20 11:06:05 -07003057#define qla2x00_post_async_work(name, type) \
3058int qla2x00_post_async_##name##_work( \
3059 struct scsi_qla_host *vha, \
3060 fc_port_t *fcport, uint16_t *data) \
3061{ \
3062 struct qla_work_evt *e; \
3063 \
3064 e = qla2x00_alloc_work(vha, type); \
3065 if (!e) \
3066 return QLA_FUNCTION_FAILED; \
3067 \
3068 e->u.logio.fcport = fcport; \
3069 if (data) { \
3070 e->u.logio.data[0] = data[0]; \
3071 e->u.logio.data[1] = data[1]; \
3072 } \
3073 return qla2x00_post_work(vha, e); \
3074}
3075
3076qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
3077qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE);
3078qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
3079qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003080qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
3081qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE);
Andrew Vasquezac280b62009-08-20 11:06:05 -07003082
Andrew Vasquez3420d362009-10-13 15:16:45 -07003083int
3084qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
3085{
3086 struct qla_work_evt *e;
3087
3088 e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
3089 if (!e)
3090 return QLA_FUNCTION_FAILED;
3091
3092 e->u.uevent.code = code;
3093 return qla2x00_post_work(vha, e);
3094}
3095
3096static void
3097qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
3098{
3099 char event_string[40];
3100 char *envp[] = { event_string, NULL };
3101
3102 switch (code) {
3103 case QLA_UEVENT_CODE_FW_DUMP:
3104 snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld",
3105 vha->host_no);
3106 break;
3107 default:
3108 /* do nothing */
3109 break;
3110 }
3111 kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
3112}
3113
Andrew Vasquezac280b62009-08-20 11:06:05 -07003114void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003115qla2x00_do_work(struct scsi_qla_host *vha)
Andrew Vasquez0971de72008-04-03 13:13:18 -07003116{
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003117 struct qla_work_evt *e, *tmp;
3118 unsigned long flags;
3119 LIST_HEAD(work);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003120
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003121 spin_lock_irqsave(&vha->work_lock, flags);
3122 list_splice_init(&vha->work_list, &work);
3123 spin_unlock_irqrestore(&vha->work_lock, flags);
3124
3125 list_for_each_entry_safe(e, tmp, &work, list) {
Andrew Vasquez0971de72008-04-03 13:13:18 -07003126 list_del_init(&e->list);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003127
3128 switch (e->type) {
3129 case QLA_EVT_AEN:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003130 fc_host_post_event(vha->host, fc_get_event_number(),
Andrew Vasquez0971de72008-04-03 13:13:18 -07003131 e->u.aen.code, e->u.aen.data);
3132 break;
Andrew Vasquez8a659572009-02-08 20:50:12 -08003133 case QLA_EVT_IDC_ACK:
3134 qla81xx_idc_ack(vha, e->u.idc_ack.mb);
3135 break;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003136 case QLA_EVT_ASYNC_LOGIN:
3137 qla2x00_async_login(vha, e->u.logio.fcport,
3138 e->u.logio.data);
3139 break;
3140 case QLA_EVT_ASYNC_LOGIN_DONE:
3141 qla2x00_async_login_done(vha, e->u.logio.fcport,
3142 e->u.logio.data);
3143 break;
3144 case QLA_EVT_ASYNC_LOGOUT:
3145 qla2x00_async_logout(vha, e->u.logio.fcport);
3146 break;
3147 case QLA_EVT_ASYNC_LOGOUT_DONE:
3148 qla2x00_async_logout_done(vha, e->u.logio.fcport,
3149 e->u.logio.data);
3150 break;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003151 case QLA_EVT_ASYNC_ADISC:
3152 qla2x00_async_adisc(vha, e->u.logio.fcport,
3153 e->u.logio.data);
3154 break;
3155 case QLA_EVT_ASYNC_ADISC_DONE:
3156 qla2x00_async_adisc_done(vha, e->u.logio.fcport,
3157 e->u.logio.data);
3158 break;
Andrew Vasquez3420d362009-10-13 15:16:45 -07003159 case QLA_EVT_UEVENT:
3160 qla2x00_uevent_emit(vha, e->u.uevent.code);
3161 break;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003162 }
3163 if (e->flags & QLA_EVT_FLAG_FREE)
3164 kfree(e);
Arun Easifeafb7b2010-09-03 14:57:00 -07003165
3166 /* For each work completed decrement vha ref count */
3167 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003168 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003169}
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003170
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003171/* Relogins all the fcports of a vport
3172 * Context: dpc thread
3173 */
3174void qla2x00_relogin(struct scsi_qla_host *vha)
3175{
3176 fc_port_t *fcport;
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08003177 int status;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003178 uint16_t next_loopid = 0;
3179 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003180 uint16_t data[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003181
3182 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3183 /*
3184 * If the port is not ONLINE then try to login
3185 * to it if we haven't run out of retries.
3186 */
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003187 if (atomic_read(&fcport->state) != FCS_ONLINE &&
3188 fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) {
Andrew Vasquezac280b62009-08-20 11:06:05 -07003189 fcport->login_retry--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003190 if (fcport->flags & FCF_FABRIC_DEVICE) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003191 if (fcport->flags & FCF_FCP2_DEVICE)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003192 ha->isp_ops->fabric_logout(vha,
3193 fcport->loop_id,
3194 fcport->d_id.b.domain,
3195 fcport->d_id.b.area,
3196 fcport->d_id.b.al_pa);
3197
Andrew Vasquezac280b62009-08-20 11:06:05 -07003198 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003199 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003200 data[0] = 0;
3201 data[1] = QLA_LOGIO_LOGIN_RETRIED;
3202 status = qla2x00_post_async_login_work(
3203 vha, fcport, data);
3204 if (status == QLA_SUCCESS)
3205 continue;
3206 /* Attempt a retry. */
3207 status = 1;
3208 } else
3209 status = qla2x00_fabric_login(vha,
3210 fcport, &next_loopid);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003211 } else
3212 status = qla2x00_local_device_login(vha,
3213 fcport);
3214
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003215 if (status == QLA_SUCCESS) {
3216 fcport->old_loop_id = fcport->loop_id;
3217
3218 DEBUG(printk("scsi(%ld): port login OK: logged "
3219 "in ID 0x%x\n", vha->host_no, fcport->loop_id));
3220
3221 qla2x00_update_fcport(vha, fcport);
3222
3223 } else if (status == 1) {
3224 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
3225 /* retry the login again */
3226 DEBUG(printk("scsi(%ld): Retrying"
3227 " %d login again loop_id 0x%x\n",
3228 vha->host_no, fcport->login_retry,
3229 fcport->loop_id));
3230 } else {
3231 fcport->login_retry = 0;
3232 }
3233
3234 if (fcport->login_retry == 0 && status != QLA_SUCCESS)
3235 fcport->loop_id = FC_NO_LOOP_ID;
3236 }
3237 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3238 break;
3239 }
Andrew Vasquez0971de72008-04-03 13:13:18 -07003240}
3241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242/**************************************************************************
3243* qla2x00_do_dpc
3244* This kernel thread is a task that is schedule by the interrupt handler
3245* to perform the background processing for interrupts.
3246*
3247* Notes:
3248* This task always run in the context of a kernel thread. It
3249* is kick-off by the driver's detect code and starts up
3250* up one per adapter. It immediately goes to sleep and waits for
3251* some fibre event. When either the interrupt handler or
3252* the timer routine detects a event it will one of the task
3253* bits then wake us up.
3254**************************************************************************/
3255static int
3256qla2x00_do_dpc(void *data)
3257{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003258 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003259 scsi_qla_host_t *base_vha;
3260 struct qla_hw_data *ha;
Seokmann Ju99363ef2008-01-31 12:33:51 -08003261
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003262 ha = (struct qla_hw_data *)data;
3263 base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 set_user_nice(current, -20);
3266
Christoph Hellwig39a11242006-02-14 18:46:22 +01003267 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
3269
Christoph Hellwig39a11242006-02-14 18:46:22 +01003270 set_current_state(TASK_INTERRUPTIBLE);
3271 schedule();
3272 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
3274 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
3275
3276 /* Initialization not yet finished. Don't do anything yet. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003277 if (!base_vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 continue;
3279
Andrew Vasquez85880802009-12-15 21:29:46 -08003280 if (ha->flags.eeh_busy) {
3281 DEBUG17(qla_printk(KERN_WARNING, ha,
3282 "qla2x00_do_dpc: dpc_flags: %lx\n",
3283 base_vha->dpc_flags));
3284 continue;
3285 }
3286
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003287 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
3289 ha->dpc_active = 1;
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 ha->dpc_active = 0;
3293 continue;
3294 }
3295
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003296 qla2x00_do_work(base_vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003297
Giridhar Malavalia9083012010-04-12 17:59:55 -07003298 if (IS_QLA82XX(ha)) {
3299 if (test_and_clear_bit(ISP_UNRECOVERABLE,
3300 &base_vha->dpc_flags)) {
3301 qla82xx_idc_lock(ha);
3302 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3303 QLA82XX_DEV_FAILED);
3304 qla82xx_idc_unlock(ha);
3305 qla_printk(KERN_INFO, ha,
3306 "HW State: FAILED\n");
3307 qla82xx_device_state_handler(base_vha);
3308 continue;
3309 }
3310
3311 if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
3312 &base_vha->dpc_flags)) {
3313
3314 DEBUG(printk(KERN_INFO
3315 "scsi(%ld): dpc: sched "
3316 "qla82xx_fcoe_ctx_reset ha = %p\n",
3317 base_vha->host_no, ha));
3318 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
3319 &base_vha->dpc_flags))) {
3320 if (qla82xx_fcoe_ctx_reset(base_vha)) {
3321 /* FCoE-ctx reset failed.
3322 * Escalate to chip-reset
3323 */
3324 set_bit(ISP_ABORT_NEEDED,
3325 &base_vha->dpc_flags);
3326 }
3327 clear_bit(ABORT_ISP_ACTIVE,
3328 &base_vha->dpc_flags);
3329 }
3330
3331 DEBUG(printk("scsi(%ld): dpc:"
3332 " qla82xx_fcoe_ctx_reset end\n",
3333 base_vha->host_no));
3334 }
3335 }
3336
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003337 if (test_and_clear_bit(ISP_ABORT_NEEDED,
3338 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340 DEBUG(printk("scsi(%ld): dpc: sched "
3341 "qla2x00_abort_isp ha = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003342 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003344 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
Giridhar Malavalia9083012010-04-12 17:59:55 -07003346 if (ha->isp_ops->abort_isp(base_vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 /* failed. retry later */
3348 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003349 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003351 clear_bit(ABORT_ISP_ACTIVE,
3352 &base_vha->dpc_flags);
Seokmann Ju99363ef2008-01-31 12:33:51 -08003353 }
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003356 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 }
3358
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003359 if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) {
3360 qla2x00_update_fcports(base_vha);
3361 clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07003362 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003363
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003364 if (test_and_clear_bit(RESET_MARKER_NEEDED,
3365 &base_vha->dpc_flags) &&
3366 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
3368 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003369 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003371 qla2x00_rst_aen(base_vha);
3372 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 }
3374
3375 /* Retry each device up to login retry count */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003376 if ((test_and_clear_bit(RELOGIN_NEEDED,
3377 &base_vha->dpc_flags)) &&
3378 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
3379 atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
3381 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003382 base_vha->host_no));
3383 qla2x00_relogin(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003386 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 }
3388
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003389 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
3390 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
3392 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003393 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003396 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003398 rval = qla2x00_loop_resync(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003400 clear_bit(LOOP_RESYNC_ACTIVE,
3401 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 }
3403
3404 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003405 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 }
3407
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003408 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
3409 atomic_read(&base_vha->loop_state) == LOOP_READY) {
3410 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
3411 qla2xxx_flash_npiv_conf(base_vha);
Andrew Vasquez272976c2008-09-11 21:22:50 -07003412 }
3413
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003415 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003417 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
3418 &base_vha->dpc_flags))
3419 ha->isp_ops->beacon_blink(base_vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003420
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003421 qla2x00_do_dpc_all_vps(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 ha->dpc_active = 0;
3424 } /* End of while(1) */
3425
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003426 DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427
3428 /*
3429 * Make sure that nobody tries to wake us up again.
3430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 ha->dpc_active = 0;
3432
Andrew Vasquezac280b62009-08-20 11:06:05 -07003433 /* Cleanup any residual CTX SRBs. */
3434 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
3435
Christoph Hellwig39a11242006-02-14 18:46:22 +01003436 return 0;
3437}
3438
3439void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003440qla2xxx_wake_dpc(struct scsi_qla_host *vha)
Christoph Hellwig39a11242006-02-14 18:46:22 +01003441{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003442 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07003443 struct task_struct *t = ha->dpc_thread;
3444
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003445 if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07003446 wake_up_process(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447}
3448
3449/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450* qla2x00_rst_aen
3451* Processes asynchronous reset.
3452*
3453* Input:
3454* ha = adapter block pointer.
3455*/
3456static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003457qla2x00_rst_aen(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003459 if (vha->flags.online && !vha->flags.reset_active &&
3460 !atomic_read(&vha->loop_down_timer) &&
3461 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003463 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 /*
3466 * Issue marker command only when we are going to start
3467 * the I/O.
3468 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003469 vha->marker_needed = 1;
3470 } while (!atomic_read(&vha->loop_down_timer) &&
3471 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 }
3473}
3474
f4f051e2005-04-17 15:02:26 -05003475static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003476qla2x00_sp_free_dma(srb_t *sp)
f4f051e2005-04-17 15:02:26 -05003477{
3478 struct scsi_cmnd *cmd = sp->cmd;
Arun Easibad75002010-05-04 15:01:30 -07003479 struct qla_hw_data *ha = sp->fcport->vha->hw;
f4f051e2005-04-17 15:02:26 -05003480
3481 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09003482 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05003483 sp->flags &= ~SRB_DMA_VALID;
3484 }
Arun Easibad75002010-05-04 15:01:30 -07003485
3486 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
3487 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
3488 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
3489 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
3490 }
3491
3492 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
3493 /* List assured to be having elements */
3494 qla2x00_clean_dsd_pool(ha, sp);
3495 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
3496 }
3497
3498 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
3499 dma_pool_free(ha->dl_dma_pool, sp->ctx,
3500 ((struct crc_context *)sp->ctx)->crc_ctx_dma);
3501 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
3502 }
3503
Andrew Vasquezfca29702005-07-06 10:31:47 -07003504 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05003505}
3506
Andrew Vasquez3dbe7562010-07-23 15:28:37 +05003507static void
Giridhar Malavali083a4692010-05-28 15:08:18 -07003508qla2x00_sp_final_compl(struct qla_hw_data *ha, srb_t *sp)
f4f051e2005-04-17 15:02:26 -05003509{
3510 struct scsi_cmnd *cmd = sp->cmd;
3511
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003512 qla2x00_sp_free_dma(sp);
f4f051e2005-04-17 15:02:26 -05003513
Giridhar Malavalia9083012010-04-12 17:59:55 -07003514 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
3515 struct ct6_dsd *ctx = sp->ctx;
3516 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx->fcp_cmnd,
3517 ctx->fcp_cmnd_dma);
3518 list_splice(&ctx->dsd_list, &ha->gbl_dsd_list);
3519 ha->gbl_dsd_inuse -= ctx->dsd_use_cnt;
3520 ha->gbl_dsd_avail += ctx->dsd_use_cnt;
3521 mempool_free(sp->ctx, ha->ctx_mempool);
3522 sp->ctx = NULL;
3523 }
f4f051e2005-04-17 15:02:26 -05003524
Giridhar Malavalia9083012010-04-12 17:59:55 -07003525 mempool_free(sp, ha->srb_mempool);
f4f051e2005-04-17 15:02:26 -05003526 cmd->scsi_done(cmd);
3527}
bdf79622005-04-17 15:06:53 -05003528
Giridhar Malavali083a4692010-05-28 15:08:18 -07003529void
3530qla2x00_sp_compl(struct qla_hw_data *ha, srb_t *sp)
3531{
3532 if (atomic_read(&sp->ref_count) == 0) {
3533 DEBUG2(qla_printk(KERN_WARNING, ha,
3534 "SP reference-count to ZERO -- sp=%p\n", sp));
3535 DEBUG2(BUG());
3536 return;
3537 }
3538 if (!atomic_dec_and_test(&sp->ref_count))
3539 return;
3540 qla2x00_sp_final_compl(ha, sp);
3541}
3542
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543/**************************************************************************
3544* qla2x00_timer
3545*
3546* Description:
3547* One second timer
3548*
3549* Context: Interrupt
3550***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003551void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003552qla2x00_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 unsigned long cpu_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 int start_dpc = 0;
3556 int index;
3557 srb_t *sp;
Andrew Vasquez85880802009-12-15 21:29:46 -08003558 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003559 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003560 struct req_que *req;
Andrew Vasquez85880802009-12-15 21:29:46 -08003561
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003562 if (ha->flags.eeh_busy) {
3563 qla2x00_restart_timer(vha, WATCH_INTERVAL);
3564 return;
3565 }
3566
Giridhar Malavalia9083012010-04-12 17:59:55 -07003567 if (IS_QLA82XX(ha))
3568 qla82xx_watchdog(vha);
3569
Andrew Vasquez85880802009-12-15 21:29:46 -08003570 /* Hardware read to raise pending EEH errors during mailbox waits. */
3571 if (!pci_channel_offline(ha->pdev))
3572 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 /* Loop down handler. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003575 if (atomic_read(&vha->loop_down_timer) > 0 &&
3576 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
3577 && vha->flags.online) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003579 if (atomic_read(&vha->loop_down_timer) ==
3580 vha->loop_down_abort_time) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
3582 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
3583 "queues before time expire\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003584 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003586 if (!IS_QLA2100(ha) && vha->link_down_timeout)
3587 atomic_set(&vha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003589 /*
3590 * Schedule an ISP abort to return any FCP2-device
3591 * commands.
3592 */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003593 /* NPIV - scan physical port only */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003594 if (!vha->vp_idx) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003595 spin_lock_irqsave(&ha->hardware_lock,
3596 cpu_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003597 req = ha->req_q_map[0];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003598 for (index = 1;
3599 index < MAX_OUTSTANDING_COMMANDS;
3600 index++) {
3601 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05003602
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003603 sp = req->outstanding_cmds[index];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003604 if (!sp)
3605 continue;
Arun Easibad75002010-05-04 15:01:30 -07003606 if (sp->ctx && !IS_PROT_IO(sp))
Andrew Vasquezcf53b062009-08-20 11:06:04 -07003607 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003608 sfcp = sp->fcport;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003609 if (!(sfcp->flags & FCF_FCP2_DEVICE))
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003610 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003612 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003613 &vha->dpc_flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003614 break;
3615 }
3616 spin_unlock_irqrestore(&ha->hardware_lock,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003617 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 start_dpc++;
3620 }
3621
3622 /* if the loop has been down for 4 minutes, reinit adapter */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003623 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07003624 if (!(vha->device_flags & DFLG_NO_CABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 DEBUG(printk("scsi(%ld): Loop down - "
3626 "aborting ISP.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003627 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 qla_printk(KERN_WARNING, ha,
3629 "Loop down - aborting ISP.\n");
3630
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003631 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 }
3633 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07003634 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003635 vha->host_no,
3636 atomic_read(&vha->loop_down_timer)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
3638
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003639 /* Check if beacon LED needs to be blinked */
3640 if (ha->beacon_blink_led == 1) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003641 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003642 start_dpc++;
3643 }
3644
Andrew Vasquez550bf572008-04-24 15:21:23 -07003645 /* Process any deferred work. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003646 if (!list_empty(&vha->work_list))
Andrew Vasquez550bf572008-04-24 15:21:23 -07003647 start_dpc++;
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 /* Schedule the DPC routine if needed */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003650 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
3651 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
3652 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 start_dpc ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003654 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
3655 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
Giridhar Malavalia9083012010-04-12 17:59:55 -07003656 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
3657 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003658 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
3659 test_bit(RELOGIN_NEEDED, &vha->dpc_flags)))
3660 qla2xxx_wake_dpc(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003662 qla2x00_restart_timer(vha, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663}
3664
Andrew Vasquez54333832005-11-09 15:49:04 -08003665/* Firmware interface routines. */
3666
Giridhar Malavalia9083012010-04-12 17:59:55 -07003667#define FW_BLOBS 8
Andrew Vasquez54333832005-11-09 15:49:04 -08003668#define FW_ISP21XX 0
3669#define FW_ISP22XX 1
3670#define FW_ISP2300 2
3671#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003672#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003673#define FW_ISP25XX 5
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003674#define FW_ISP81XX 6
Giridhar Malavalia9083012010-04-12 17:59:55 -07003675#define FW_ISP82XX 7
Andrew Vasquez54333832005-11-09 15:49:04 -08003676
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003677#define FW_FILE_ISP21XX "ql2100_fw.bin"
3678#define FW_FILE_ISP22XX "ql2200_fw.bin"
3679#define FW_FILE_ISP2300 "ql2300_fw.bin"
3680#define FW_FILE_ISP2322 "ql2322_fw.bin"
3681#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003682#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003683#define FW_FILE_ISP81XX "ql8100_fw.bin"
Giridhar Malavalia9083012010-04-12 17:59:55 -07003684#define FW_FILE_ISP82XX "ql8200_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003685
Daniel Walkere1e82b62008-05-12 22:21:10 -07003686static DEFINE_MUTEX(qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003687
3688static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003689 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
3690 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
3691 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
3692 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
3693 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003694 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003695 { .name = FW_FILE_ISP81XX, },
Giridhar Malavalia9083012010-04-12 17:59:55 -07003696 { .name = FW_FILE_ISP82XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08003697};
3698
3699struct fw_blob *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003700qla2x00_request_firmware(scsi_qla_host_t *vha)
Andrew Vasquez54333832005-11-09 15:49:04 -08003701{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003702 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez54333832005-11-09 15:49:04 -08003703 struct fw_blob *blob;
3704
3705 blob = NULL;
3706 if (IS_QLA2100(ha)) {
3707 blob = &qla_fw_blobs[FW_ISP21XX];
3708 } else if (IS_QLA2200(ha)) {
3709 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003710 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003711 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003712 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003713 blob = &qla_fw_blobs[FW_ISP2322];
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003714 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003715 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003716 } else if (IS_QLA25XX(ha)) {
3717 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003718 } else if (IS_QLA81XX(ha)) {
3719 blob = &qla_fw_blobs[FW_ISP81XX];
Giridhar Malavalia9083012010-04-12 17:59:55 -07003720 } else if (IS_QLA82XX(ha)) {
3721 blob = &qla_fw_blobs[FW_ISP82XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08003722 }
3723
Daniel Walkere1e82b62008-05-12 22:21:10 -07003724 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003725 if (blob->fw)
3726 goto out;
3727
3728 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
3729 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003730 "(%s).\n", vha->host_no, blob->name));
Andrew Vasquez54333832005-11-09 15:49:04 -08003731 blob->fw = NULL;
3732 blob = NULL;
3733 goto out;
3734 }
3735
3736out:
Daniel Walkere1e82b62008-05-12 22:21:10 -07003737 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003738 return blob;
3739}
3740
3741static void
3742qla2x00_release_firmware(void)
3743{
3744 int idx;
3745
Daniel Walkere1e82b62008-05-12 22:21:10 -07003746 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003747 for (idx = 0; idx < FW_BLOBS; idx++)
3748 if (qla_fw_blobs[idx].fw)
3749 release_firmware(qla_fw_blobs[idx].fw);
Daniel Walkere1e82b62008-05-12 22:21:10 -07003750 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003751}
3752
Seokmann Ju14e660e2007-09-20 14:07:36 -07003753static pci_ers_result_t
3754qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
3755{
Andrew Vasquez85880802009-12-15 21:29:46 -08003756 scsi_qla_host_t *vha = pci_get_drvdata(pdev);
3757 struct qla_hw_data *ha = vha->hw;
3758
3759 DEBUG2(qla_printk(KERN_WARNING, ha, "error_detected:state %x\n",
3760 state));
Seokmann Jub9b12f72009-03-24 09:08:18 -07003761
Seokmann Ju14e660e2007-09-20 14:07:36 -07003762 switch (state) {
3763 case pci_channel_io_normal:
Andrew Vasquez85880802009-12-15 21:29:46 -08003764 ha->flags.eeh_busy = 0;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003765 return PCI_ERS_RESULT_CAN_RECOVER;
3766 case pci_channel_io_frozen:
Andrew Vasquez85880802009-12-15 21:29:46 -08003767 ha->flags.eeh_busy = 1;
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003768 /* For ISP82XX complete any pending mailbox cmd */
3769 if (IS_QLA82XX(ha)) {
3770 ha->flags.fw_hung = 1;
3771 if (ha->flags.mbox_busy) {
3772 ha->flags.mbox_int = 1;
3773 DEBUG2(qla_printk(KERN_ERR, ha,
3774 "Due to pci channel io frozen, doing premature "
3775 "completion of mbx command\n"));
3776 complete(&ha->mbx_intr_comp);
3777 }
3778 }
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003779 qla2x00_free_irqs(vha);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003780 pci_disable_device(pdev);
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07003781 /* Return back all IOs */
3782 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003783 return PCI_ERS_RESULT_NEED_RESET;
3784 case pci_channel_io_perm_failure:
Andrew Vasquez85880802009-12-15 21:29:46 -08003785 ha->flags.pci_channel_io_perm_failure = 1;
3786 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003787 return PCI_ERS_RESULT_DISCONNECT;
3788 }
3789 return PCI_ERS_RESULT_NEED_RESET;
3790}
3791
3792static pci_ers_result_t
3793qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
3794{
3795 int risc_paused = 0;
3796 uint32_t stat;
3797 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003798 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
3799 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003800 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
3801 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
3802
Saurav Kashyapbcc5b6d2010-09-03 15:20:57 -07003803 if (IS_QLA82XX(ha))
3804 return PCI_ERS_RESULT_RECOVERED;
3805
Seokmann Ju14e660e2007-09-20 14:07:36 -07003806 spin_lock_irqsave(&ha->hardware_lock, flags);
3807 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
3808 stat = RD_REG_DWORD(&reg->hccr);
3809 if (stat & HCCR_RISC_PAUSE)
3810 risc_paused = 1;
3811 } else if (IS_QLA23XX(ha)) {
3812 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
3813 if (stat & HSR_RISC_PAUSED)
3814 risc_paused = 1;
3815 } else if (IS_FWI2_CAPABLE(ha)) {
3816 stat = RD_REG_DWORD(&reg24->host_status);
3817 if (stat & HSRX_RISC_PAUSED)
3818 risc_paused = 1;
3819 }
3820 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3821
3822 if (risc_paused) {
3823 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
3824 "Dumping firmware!\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003825 ha->isp_ops->fw_dump(base_vha, 0);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003826
3827 return PCI_ERS_RESULT_NEED_RESET;
3828 } else
3829 return PCI_ERS_RESULT_RECOVERED;
3830}
3831
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003832uint32_t qla82xx_error_recovery(scsi_qla_host_t *base_vha)
3833{
3834 uint32_t rval = QLA_FUNCTION_FAILED;
3835 uint32_t drv_active = 0;
3836 struct qla_hw_data *ha = base_vha->hw;
3837 int fn;
3838 struct pci_dev *other_pdev = NULL;
3839
3840 DEBUG17(qla_printk(KERN_INFO, ha,
3841 "scsi(%ld): In qla82xx_error_recovery\n", base_vha->host_no));
3842
3843 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
3844
3845 if (base_vha->flags.online) {
3846 /* Abort all outstanding commands,
3847 * so as to be requeued later */
3848 qla2x00_abort_isp_cleanup(base_vha);
3849 }
3850
3851
3852 fn = PCI_FUNC(ha->pdev->devfn);
3853 while (fn > 0) {
3854 fn--;
3855 DEBUG17(qla_printk(KERN_INFO, ha,
3856 "Finding pci device at function = 0x%x\n", fn));
3857 other_pdev =
3858 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
3859 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
3860 fn));
3861
3862 if (!other_pdev)
3863 continue;
3864 if (atomic_read(&other_pdev->enable_cnt)) {
3865 DEBUG17(qla_printk(KERN_INFO, ha,
3866 "Found PCI func availabe and enabled at 0x%x\n",
3867 fn));
3868 pci_dev_put(other_pdev);
3869 break;
3870 }
3871 pci_dev_put(other_pdev);
3872 }
3873
3874 if (!fn) {
3875 /* Reset owner */
3876 DEBUG17(qla_printk(KERN_INFO, ha,
3877 "This devfn is reset owner = 0x%x\n", ha->pdev->devfn));
3878 qla82xx_idc_lock(ha);
3879
3880 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3881 QLA82XX_DEV_INITIALIZING);
3882
3883 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
3884 QLA82XX_IDC_VERSION);
3885
3886 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
3887 DEBUG17(qla_printk(KERN_INFO, ha,
3888 "drv_active = 0x%x\n", drv_active));
3889
3890 qla82xx_idc_unlock(ha);
3891 /* Reset if device is not already reset
3892 * drv_active would be 0 if a reset has already been done
3893 */
3894 if (drv_active)
3895 rval = qla82xx_start_firmware(base_vha);
3896 else
3897 rval = QLA_SUCCESS;
3898 qla82xx_idc_lock(ha);
3899
3900 if (rval != QLA_SUCCESS) {
3901 qla_printk(KERN_INFO, ha, "HW State: FAILED\n");
3902 qla82xx_clear_drv_active(ha);
3903 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3904 QLA82XX_DEV_FAILED);
3905 } else {
3906 qla_printk(KERN_INFO, ha, "HW State: READY\n");
3907 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3908 QLA82XX_DEV_READY);
3909 qla82xx_idc_unlock(ha);
3910 ha->flags.fw_hung = 0;
3911 rval = qla82xx_restart_isp(base_vha);
3912 qla82xx_idc_lock(ha);
3913 /* Clear driver state register */
3914 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0);
3915 qla82xx_set_drv_active(base_vha);
3916 }
3917 qla82xx_idc_unlock(ha);
3918 } else {
3919 DEBUG17(qla_printk(KERN_INFO, ha,
3920 "This devfn is not reset owner = 0x%x\n", ha->pdev->devfn));
3921 if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) ==
3922 QLA82XX_DEV_READY)) {
3923 ha->flags.fw_hung = 0;
3924 rval = qla82xx_restart_isp(base_vha);
3925 qla82xx_idc_lock(ha);
3926 qla82xx_set_drv_active(base_vha);
3927 qla82xx_idc_unlock(ha);
3928 }
3929 }
3930 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
3931
3932 return rval;
3933}
3934
Seokmann Ju14e660e2007-09-20 14:07:36 -07003935static pci_ers_result_t
3936qla2xxx_pci_slot_reset(struct pci_dev *pdev)
3937{
3938 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003939 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
3940 struct qla_hw_data *ha = base_vha->hw;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003941 struct rsp_que *rsp;
3942 int rc, retries = 10;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003943
Andrew Vasquez85880802009-12-15 21:29:46 -08003944 DEBUG17(qla_printk(KERN_WARNING, ha, "slot_reset\n"));
3945
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003946 /* Workaround: qla2xxx driver which access hardware earlier
3947 * needs error state to be pci_channel_io_online.
3948 * Otherwise mailbox command timesout.
3949 */
3950 pdev->error_state = pci_channel_io_normal;
3951
3952 pci_restore_state(pdev);
3953
Richard Lary8c1496b2010-02-18 10:07:29 -08003954 /* pci_restore_state() clears the saved_state flag of the device
3955 * save restored state which resets saved_state flag
3956 */
3957 pci_save_state(pdev);
3958
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11003959 if (ha->mem_only)
3960 rc = pci_enable_device_mem(pdev);
3961 else
3962 rc = pci_enable_device(pdev);
3963
3964 if (rc) {
Seokmann Ju14e660e2007-09-20 14:07:36 -07003965 qla_printk(KERN_WARNING, ha,
3966 "Can't re-enable PCI device after reset.\n");
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003967 goto exit_slot_reset;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003968 }
Seokmann Ju14e660e2007-09-20 14:07:36 -07003969
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003970 rsp = ha->rsp_q_map[0];
3971 if (qla2x00_request_irqs(ha, rsp))
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003972 goto exit_slot_reset;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003973
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003974 if (ha->isp_ops->pci_config(base_vha))
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003975 goto exit_slot_reset;
3976
3977 if (IS_QLA82XX(ha)) {
3978 if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) {
3979 ret = PCI_ERS_RESULT_RECOVERED;
3980 goto exit_slot_reset;
3981 } else
3982 goto exit_slot_reset;
3983 }
Seokmann Ju14e660e2007-09-20 14:07:36 -07003984
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003985 while (ha->flags.mbox_busy && retries--)
3986 msleep(1000);
Andrew Vasquez85880802009-12-15 21:29:46 -08003987
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003988 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07003989 if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS)
Seokmann Ju14e660e2007-09-20 14:07:36 -07003990 ret = PCI_ERS_RESULT_RECOVERED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003991 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003992
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003993
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003994exit_slot_reset:
Andrew Vasquez85880802009-12-15 21:29:46 -08003995 DEBUG17(qla_printk(KERN_WARNING, ha,
3996 "slot_reset-return:ret=%x\n", ret));
3997
Seokmann Ju14e660e2007-09-20 14:07:36 -07003998 return ret;
3999}
4000
4001static void
4002qla2xxx_pci_resume(struct pci_dev *pdev)
4003{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004004 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
4005 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07004006 int ret;
4007
Andrew Vasquez85880802009-12-15 21:29:46 -08004008 DEBUG17(qla_printk(KERN_WARNING, ha, "pci_resume\n"));
4009
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004010 ret = qla2x00_wait_for_hba_online(base_vha);
Seokmann Ju14e660e2007-09-20 14:07:36 -07004011 if (ret != QLA_SUCCESS) {
4012 qla_printk(KERN_ERR, ha,
4013 "the device failed to resume I/O "
4014 "from slot/link_reset");
4015 }
Andrew Vasquez85880802009-12-15 21:29:46 -08004016
Lalit Chandivade3e46f032010-05-04 15:01:23 -07004017 pci_cleanup_aer_uncorrect_error_status(pdev);
4018
Andrew Vasquez85880802009-12-15 21:29:46 -08004019 ha->flags.eeh_busy = 0;
Seokmann Ju14e660e2007-09-20 14:07:36 -07004020}
4021
4022static struct pci_error_handlers qla2xxx_err_handler = {
4023 .error_detected = qla2xxx_pci_error_detected,
4024 .mmio_enabled = qla2xxx_pci_mmio_enabled,
4025 .slot_reset = qla2xxx_pci_slot_reset,
4026 .resume = qla2xxx_pci_resume,
4027};
4028
Andrew Vasquez54333832005-11-09 15:49:04 -08004029static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07004030 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
4031 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
4032 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
4033 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
4034 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
4035 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
4036 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
4037 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
4038 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004039 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
Andrew Vasquez47f5e062006-05-17 15:09:39 -07004040 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
4041 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07004042 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004043 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
Giridhar Malavalia9083012010-04-12 17:59:55 -07004044 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
Andrew Vasquez54333832005-11-09 15:49:04 -08004045 { 0 },
4046};
4047MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
4048
Andrew Vasquezfca29702005-07-06 10:31:47 -07004049static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07004050 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06004051 .driver = {
4052 .owner = THIS_MODULE,
4053 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07004054 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004055 .probe = qla2x00_probe_one,
Adrian Bunk4c993f72008-01-14 00:55:16 -08004056 .remove = qla2x00_remove_one,
Seokmann Ju14e660e2007-09-20 14:07:36 -07004057 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07004058};
4059
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004060static struct file_operations apidev_fops = {
4061 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02004062 .llseek = noop_llseek,
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004063};
4064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065/**
4066 * qla2x00_module_init - Module initialization.
4067 **/
4068static int __init
4069qla2x00_module_init(void)
4070{
Andrew Vasquezfca29702005-07-06 10:31:47 -07004071 int ret = 0;
4072
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04004074 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09004075 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 if (srb_cachep == NULL) {
4077 printk(KERN_ERR
4078 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
4079 return -ENOMEM;
4080 }
4081
4082 /* Derive version string. */
4083 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07004084 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07004085 strcat(qla2x00_version_str, "-debug");
4086
Andrew Vasquez1c97a122005-04-21 16:13:36 -04004087 qla2xxx_transport_template =
4088 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004089 if (!qla2xxx_transport_template) {
4090 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004092 }
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004093
4094 apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
4095 if (apidev_major < 0) {
4096 printk(KERN_WARNING "qla2xxx: Unable to register char device "
4097 "%s\n", QLA2XXX_APIDEV);
4098 }
4099
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004100 qla2xxx_transport_vport_template =
4101 fc_attach_transport(&qla2xxx_transport_vport_functions);
4102 if (!qla2xxx_transport_vport_template) {
4103 kmem_cache_destroy(srb_cachep);
4104 fc_release_transport(qla2xxx_transport_template);
4105 return -ENODEV;
4106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Andrew Vasquezfd9a29f02008-05-12 22:21:08 -07004108 printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
4109 qla2x00_version_str);
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004110 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07004111 if (ret) {
4112 kmem_cache_destroy(srb_cachep);
4113 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004114 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07004115 }
4116 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117}
4118
4119/**
4120 * qla2x00_module_exit - Module cleanup.
4121 **/
4122static void __exit
4123qla2x00_module_exit(void)
4124{
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004125 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004126 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08004127 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04004128 kmem_cache_destroy(srb_cachep);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004129 if (ctx_cachep)
4130 kmem_cache_destroy(ctx_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004132 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
4135module_init(qla2x00_module_init);
4136module_exit(qla2x00_module_exit);
4137
4138MODULE_AUTHOR("QLogic Corporation");
4139MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
4140MODULE_LICENSE("GPL");
4141MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07004142MODULE_FIRMWARE(FW_FILE_ISP21XX);
4143MODULE_FIRMWARE(FW_FILE_ISP22XX);
4144MODULE_FIRMWARE(FW_FILE_ISP2300);
4145MODULE_FIRMWARE(FW_FILE_ISP2322);
4146MODULE_FIRMWARE(FW_FILE_ISP24XX);
Andrew Vasquez61623fc2008-01-31 12:33:45 -08004147MODULE_FIRMWARE(FW_FILE_ISP25XX);