blob: df2c1e7ab652e799c2d4ac066f20da42601273e9 [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 *);
Jeff Garzikf2812332010-11-16 02:10:29 -0500182static int qla2xxx_queuecommand(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static int qla2xxx_eh_abort(struct scsi_cmnd *);
184static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700185static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
187static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Mike Christiee881a172009-10-15 17:46:39 -0700189static int qla2x00_change_queue_depth(struct scsi_device *, int, int);
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700190static int qla2x00_change_queue_type(struct scsi_device *, int);
191
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700192struct scsi_host_template qla2xxx_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700194 .name = QLA2XXX_DRIVER_NAME,
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700195 .queuecommand = qla2xxx_queuecommand,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700196
197 .eh_abort_handler = qla2xxx_eh_abort,
198 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700199 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700200 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
201 .eh_host_reset_handler = qla2xxx_eh_host_reset,
202
203 .slave_configure = qla2xxx_slave_configure,
204
205 .slave_alloc = qla2xxx_slave_alloc,
206 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquezed677082007-03-12 10:41:27 -0700207 .scan_finished = qla2xxx_scan_finished,
208 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700209 .change_queue_depth = qla2x00_change_queue_depth,
210 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700211 .this_id = -1,
212 .cmd_per_lun = 3,
213 .use_clustering = ENABLE_CLUSTERING,
214 .sg_tablesize = SG_ALL,
215
216 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700217 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700218};
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700221struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/* TODO Convert to inlines
224 *
225 * Timer routines
226 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700228__inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800229qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800231 init_timer(&vha->timer);
232 vha->timer.expires = jiffies + interval * HZ;
233 vha->timer.data = (unsigned long)vha;
234 vha->timer.function = (void (*)(unsigned long))func;
235 add_timer(&vha->timer);
236 vha->timer_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800240qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Giridhar Malavalia9083012010-04-12 17:59:55 -0700242 /* Currently used for 82XX only. */
243 if (vha->device_flags & DFLG_DEV_FAILED)
244 return;
245
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800246 mod_timer(&vha->timer, jiffies + interval * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
Adrian Bunka824ebb2008-01-17 09:02:15 -0800249static __inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800250qla2x00_stop_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800252 del_timer_sync(&vha->timer);
253 vha->timer_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256static int qla2x00_do_dpc(void *data);
257
258static void qla2x00_rst_aen(scsi_qla_host_t *);
259
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800260static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t,
261 struct req_que **, struct rsp_que **);
Madhuranath Iyengare30d1752010-10-15 11:27:46 -0700262static void qla2x00_free_fw_dump(struct qla_hw_data *);
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
Jeff Garzikf2812332010-11-16 02:10:29 -0500537qla2xxx_queuecommand_lck(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
Giridhar Malavali38170fa2010-10-15 11:27:49 -0700547 spin_unlock_irq(vha->host->host_lock);
Andrew Vasquez85880802009-12-15 21:29:46 -0800548 if (ha->flags.eeh_busy) {
549 if (ha->flags.pci_channel_io_perm_failure)
Seokmann Jub9b12f72009-03-24 09:08:18 -0700550 cmd->result = DID_NO_CONNECT << 16;
Andrew Vasquez85880802009-12-15 21:29:46 -0800551 else
552 cmd->result = DID_REQUEUE << 16;
Seokmann Ju14e660e2007-09-20 14:07:36 -0700553 goto qc24_fail_command;
554 }
555
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400556 rval = fc_remote_port_chkready(rport);
557 if (rval) {
558 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700559 goto qc24_fail_command;
560 }
561
Arun Easibad75002010-05-04 15:01:30 -0700562 if (!vha->flags.difdix_supported &&
563 scsi_get_prot_op(cmd) != SCSI_PROT_NORMAL) {
564 DEBUG2(qla_printk(KERN_ERR, ha,
565 "DIF Cap Not Reg, fail DIF capable cmd's:%x\n",
566 cmd->cmnd[0]));
567 cmd->result = DID_NO_CONNECT << 16;
568 goto qc24_fail_command;
569 }
Andrew Vasquezfca29702005-07-06 10:31:47 -0700570 if (atomic_read(&fcport->state) != FCS_ONLINE) {
571 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Giridhar Malavali38170fa2010-10-15 11:27:49 -0700572 atomic_read(&fcport->state) == FCS_DEVICE_LOST ||
573 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700574 cmd->result = DID_NO_CONNECT << 16;
575 goto qc24_fail_command;
576 }
Mike Christie7b594132008-08-17 15:24:40 -0500577 goto qc24_target_busy;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700578 }
579
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800580 sp = qla2x00_get_new_sp(base_vha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700581 if (!sp)
582 goto qc24_host_busy_lock;
583
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800584 rval = ha->isp_ops->start_scsi(sp);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700585 if (rval != QLA_SUCCESS)
586 goto qc24_host_busy_free_sp;
587
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800588 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700589
590 return 0;
591
592qc24_host_busy_free_sp:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800593 qla2x00_sp_free_dma(sp);
594 mempool_free(sp, ha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700595
596qc24_host_busy_lock:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800597 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700598 return SCSI_MLQUEUE_HOST_BUSY;
599
Mike Christie7b594132008-08-17 15:24:40 -0500600qc24_target_busy:
Giridhar Malavali38170fa2010-10-15 11:27:49 -0700601 spin_lock_irq(vha->host->host_lock);
Mike Christie7b594132008-08-17 15:24:40 -0500602 return SCSI_MLQUEUE_TARGET_BUSY;
603
Andrew Vasquezfca29702005-07-06 10:31:47 -0700604qc24_fail_command:
Giridhar Malavali38170fa2010-10-15 11:27:49 -0700605 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700606 done(cmd);
607
608 return 0;
609}
610
Jeff Garzikf2812332010-11-16 02:10:29 -0500611static DEF_SCSI_QCMD(qla2xxx_queuecommand)
612
Andrew Vasquezfca29702005-07-06 10:31:47 -0700613
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;
Saurav Kashyap69abf612010-11-23 16:52:49 -0800832 int ret = SUCCESS;
f4f051e2005-04-17 15:02:26 -0500833 unsigned int id, lun;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700834 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700835 int wait = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800836 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Christof Schmitt65d430f2009-10-30 17:59:29 +0100838 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -0700839
f4f051e2005-04-17 15:02:26 -0500840 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700841 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
f4f051e2005-04-17 15:02:26 -0500843 id = cmd->device->id;
844 lun = cmd->device->lun;
f4f051e2005-04-17 15:02:26 -0500845
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800846 spin_lock_irqsave(&ha->hardware_lock, flags);
Mike Christie170babc2010-10-15 11:27:47 -0700847 sp = (srb_t *) CMD_SP(cmd);
848 if (!sp) {
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800849 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Mike Christie170babc2010-10-15 11:27:47 -0700850 return SUCCESS;
f4f051e2005-04-17 15:02:26 -0500851 }
Mike Christie170babc2010-10-15 11:27:47 -0700852
853 DEBUG2(printk("%s(%ld): aborting sp %p from RISC.",
854 __func__, vha->host_no, sp));
855
856 /* Get a reference to the sp and drop the lock.*/
857 sp_get(sp);
858
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800859 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Mike Christie170babc2010-10-15 11:27:47 -0700860 if (ha->isp_ops->abort_command(sp)) {
861 DEBUG2(printk("%s(%ld): abort_command "
862 "mbx failed.\n", __func__, vha->host_no));
863 ret = FAILED;
864 } else {
865 DEBUG3(printk("%s(%ld): abort_command "
866 "mbx success.\n", __func__, vha->host_no));
867 wait = 1;
868 }
869 qla2x00_sp_compl(ha, sp);
f4f051e2005-04-17 15:02:26 -0500870
871 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700872 if (wait) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800873 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700874 qla_printk(KERN_ERR, ha,
Madhuranath Iyengar09d1dc22010-10-15 11:27:44 -0700875 "scsi(%ld:%d:%d): Abort handler timed out -- %x.\n",
876 vha->host_no, id, lun, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700877 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700881 qla_printk(KERN_INFO, ha,
Madhuranath Iyengar09d1dc22010-10-15 11:27:44 -0700882 "scsi(%ld:%d:%d): Abort command issued -- %d %x.\n",
883 vha->host_no, id, lun, wait, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
f4f051e2005-04-17 15:02:26 -0500885 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500888int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800889qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500890 unsigned int l, enum nexus_wait_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800892 int cnt, match, status;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700893 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800894 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800895 struct req_que *req;
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500896 srb_t *sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Andrew Vasquez523ec772008-04-03 13:13:24 -0700898 status = QLA_SUCCESS;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800899
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800900 spin_lock_irqsave(&ha->hardware_lock, flags);
Anirban Chakraborty67c2e932009-04-06 22:33:42 -0700901 req = vha->req;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800902 for (cnt = 1; status == QLA_SUCCESS &&
903 cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
904 sp = req->outstanding_cmds[cnt];
905 if (!sp)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700906 continue;
Arun Easibad75002010-05-04 15:01:30 -0700907 if ((sp->ctx) && !IS_PROT_IO(sp))
Andrew Vasquezcf53b062009-08-20 11:06:04 -0700908 continue;
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800909 if (vha->vp_idx != sp->fcport->vha->vp_idx)
910 continue;
911 match = 0;
912 switch (type) {
913 case WAIT_HOST:
914 match = 1;
915 break;
916 case WAIT_TARGET:
917 match = sp->cmd->device->id == t;
918 break;
919 case WAIT_LUN:
920 match = (sp->cmd->device->id == t &&
921 sp->cmd->device->lun == l);
922 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Anirban Chakraborty17d98632008-12-18 10:06:15 -0800924 if (!match)
925 continue;
926
927 spin_unlock_irqrestore(&ha->hardware_lock, flags);
928 status = qla2x00_eh_wait_on_command(sp->cmd);
929 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800931 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700932
933 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
Andrew Vasquez523ec772008-04-03 13:13:24 -0700936static char *reset_errors[] = {
937 "HBA not online",
938 "HBA not ready",
939 "Task management failed",
940 "Waiting for command completions",
941};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Andrew Vasquez523ec772008-04-03 13:13:24 -0700943static int
944__qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700945 struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int, int))
Andrew Vasquez523ec772008-04-03 13:13:24 -0700946{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800947 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700948 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
949 int err;
950
Christof Schmitt65d430f2009-10-30 17:59:29 +0100951 fc_block_scsi_eh(cmd);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700952
953 if (!fcport)
954 return FAILED;
955
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800956 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
957 vha->host_no, cmd->device->id, cmd->device->lun, name);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700958
959 err = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800960 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700961 goto eh_reset_failed;
962 err = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800963 if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700964 goto eh_reset_failed;
965 err = 2;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700966 if (do_reset(fcport, cmd->device->lun, cmd->request->cpu + 1)
967 != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700968 goto eh_reset_failed;
969 err = 3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800970 if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500971 cmd->device->lun, type) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700972 goto eh_reset_failed;
973
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800974 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
975 vha->host_no, cmd->device->id, cmd->device->lun, name);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700976
977 return SUCCESS;
978
Giridhar Malavali4d78c972010-07-23 15:28:35 +0500979eh_reset_failed:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800980 qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n"
981 , vha->host_no, cmd->device->id, cmd->device->lun, name,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700982 reset_errors[err]);
983 return FAILED;
984}
985
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800986static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
988{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800989 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
990 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Andrew Vasquez523ec772008-04-03 13:13:24 -0700992 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
993 ha->isp_ops->lun_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996static int
Andrew Vasquez523ec772008-04-03 13:13:24 -0700997qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800999 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
1000 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Andrew Vasquez523ec772008-04-03 13:13:24 -07001002 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
1003 ha->isp_ops->target_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006/**************************************************************************
1007* qla2xxx_eh_bus_reset
1008*
1009* Description:
1010* The bus reset function will reset the bus and abort any executing
1011* commands.
1012*
1013* Input:
1014* cmd = Linux SCSI command packet of the command that cause the
1015* bus reset.
1016*
1017* Returns:
1018* SUCCESS/FAILURE (defined as macro in scsi.h).
1019*
1020**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001021static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
1023{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001024 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -05001025 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001026 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -05001027 unsigned int id, lun;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Christof Schmitt65d430f2009-10-30 17:59:29 +01001029 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -07001030
f4f051e2005-04-17 15:02:26 -05001031 id = cmd->device->id;
1032 lun = cmd->device->lun;
f4f051e2005-04-17 15:02:26 -05001033
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -07001034 if (!fcport)
f4f051e2005-04-17 15:02:26 -05001035 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001037 qla_printk(KERN_INFO, vha->hw,
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001038 "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001040 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -05001042 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001045 if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) {
1046 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001047 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 }
f4f051e2005-04-17 15:02:26 -05001049 if (ret == FAILED)
1050 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Andrew Vasquez9a41a622005-09-20 13:25:53 -07001052 /* Flush outstanding commands. */
Giridhar Malavali4d78c972010-07-23 15:28:35 +05001053 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
Andrew Vasquez523ec772008-04-03 13:13:24 -07001054 QLA_SUCCESS)
Andrew Vasquez9a41a622005-09-20 13:25:53 -07001055 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
f4f051e2005-04-17 15:02:26 -05001057eh_bus_reset_done:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001058 qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -05001059 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
f4f051e2005-04-17 15:02:26 -05001061 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064/**************************************************************************
1065* qla2xxx_eh_host_reset
1066*
1067* Description:
1068* The reset function will reset the Adapter.
1069*
1070* Input:
1071* cmd = Linux SCSI command packet of the command that cause the
1072* adapter reset.
1073*
1074* Returns:
1075* Either SUCCESS or FAILED.
1076*
1077* Note:
1078**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -08001079static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
1081{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001082 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -05001083 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001084 struct qla_hw_data *ha = vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001085 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -05001086 unsigned int id, lun;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001087 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Christof Schmitt65d430f2009-10-30 17:59:29 +01001089 fc_block_scsi_eh(cmd);
Andrew Vasquez07db5182006-10-02 12:00:49 -07001090
f4f051e2005-04-17 15:02:26 -05001091 id = cmd->device->id;
1092 lun = cmd->device->lun;
f4f051e2005-04-17 15:02:26 -05001093
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -07001094 if (!fcport)
f4f051e2005-04-17 15:02:26 -05001095 return ret;
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 qla_printk(KERN_INFO, ha,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001098 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Lalit Chandivade86fbee82010-05-04 15:01:32 -07001100 if (qla2x00_wait_for_reset_ready(vha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001101 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /*
1104 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001105 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 * be completed and then issue big hammer.Otherwise
1107 * it may cause I/O failure as big hammer marks the
1108 * devices as lost kicking of the port_down_timer
1109 * while dpc is stuck for the mailbox to complete.
1110 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001111 qla2x00_wait_for_loop_ready(vha);
1112 if (vha != base_vha) {
1113 if (qla2x00_vp_abort_isp(vha))
f4f051e2005-04-17 15:02:26 -05001114 goto eh_host_reset_lock;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001115 } else {
Giridhar Malavalia9083012010-04-12 17:59:55 -07001116 if (IS_QLA82XX(vha->hw)) {
1117 if (!qla82xx_fcoe_ctx_reset(vha)) {
1118 /* Ctx reset success */
1119 ret = SUCCESS;
1120 goto eh_host_reset_lock;
1121 }
1122 /* fall thru if ctx reset failed */
1123 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001124 if (ha->wq)
1125 flush_workqueue(ha->wq);
1126
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001127 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07001128 if (ha->isp_ops->abort_isp(base_vha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001129 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1130 /* failed. schedule dpc to try */
1131 set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1132
1133 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
1134 goto eh_host_reset_lock;
1135 }
1136 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001139 /* Waiting for command to be returned to OS.*/
Giridhar Malavali4d78c972010-07-23 15:28:35 +05001140 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001141 QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001142 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
f4f051e2005-04-17 15:02:26 -05001144eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001145 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1146 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
f4f051e2005-04-17 15:02:26 -05001148 return ret;
1149}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151/*
1152* qla2x00_loop_reset
1153* Issue loop reset.
1154*
1155* Input:
1156* ha = adapter block pointer.
1157*
1158* Returns:
1159* 0 = success
1160*/
Andrew Vasqueza4722cf2008-01-17 09:02:12 -08001161int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001162qla2x00_loop_reset(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001164 int ret;
bdf79622005-04-17 15:06:53 -05001165 struct fc_port *fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001166 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Giridhar Malavalif4c496c2010-05-04 15:01:33 -07001168 if (ql2xtargetreset == 1 && ha->flags.enable_target_reset) {
Andrew Vasquez55e5ed22010-02-18 10:07:25 -08001169 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1170 if (fcport->port_type != FCT_TARGET)
1171 continue;
1172
1173 ret = ha->isp_ops->target_reset(fcport, 0, 0);
1174 if (ret != QLA_SUCCESS) {
1175 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1176 "target_reset=%d d_id=%x.\n", __func__,
1177 vha->host_no, ret, fcport->d_id.b24));
1178 }
1179 }
1180 }
1181
Giridhar Malavalia9083012010-04-12 17:59:55 -07001182 if (ha->flags.enable_lip_full_login && !IS_QLA8XXX_TYPE(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001183 ret = qla2x00_full_login_lip(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001184 if (ret != QLA_SUCCESS) {
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001185 DEBUG2_3(printk("%s(%ld): failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001186 "full_login_lip=%d.\n", __func__, vha->host_no,
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001187 ret));
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001188 }
1189 atomic_set(&vha->loop_state, LOOP_DOWN);
1190 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1191 qla2x00_mark_all_devices_lost(vha, 0);
1192 qla2x00_wait_for_loop_ready(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
1194
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07001195 if (ha->flags.enable_lip_reset) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001196 ret = qla2x00_lip_reset(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001197 if (ret != QLA_SUCCESS) {
Anirban Chakraborty749af3d2008-11-14 13:48:12 -08001198 DEBUG2_3(printk("%s(%ld): failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001199 "lip_reset=%d.\n", __func__, vha->host_no, ret));
1200 } else
1201 qla2x00_wait_for_loop_ready(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001202 }
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* Issue marker command only when we are going to start the I/O */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001205 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001207 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001210void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001211qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001212{
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001213 int que, cnt;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001214 unsigned long flags;
1215 srb_t *sp;
Andrew Vasquezac280b62009-08-20 11:06:05 -07001216 struct srb_ctx *ctx;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001217 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001218 struct req_que *req;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001219
1220 spin_lock_irqsave(&ha->hardware_lock, flags);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001221 for (que = 0; que < ha->max_req_queues; que++) {
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -08001222 req = ha->req_q_map[que];
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001223 if (!req)
1224 continue;
1225 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1226 sp = req->outstanding_cmds[cnt];
Andrew Vasqueze612d462009-03-24 09:08:04 -07001227 if (sp) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001228 req->outstanding_cmds[cnt] = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001229 if (!sp->ctx ||
Arun Easibad75002010-05-04 15:01:30 -07001230 (sp->flags & SRB_FCP_CMND_DMA_VALID) ||
1231 IS_PROT_IO(sp)) {
Andrew Vasquezac280b62009-08-20 11:06:05 -07001232 sp->cmd->result = res;
1233 qla2x00_sp_compl(ha, sp);
1234 } else {
1235 ctx = sp->ctx;
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001236 if (ctx->type == SRB_LOGIN_CMD ||
1237 ctx->type == SRB_LOGOUT_CMD) {
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001238 ctx->u.iocb_cmd->free(sp);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001239 } else {
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001240 struct fc_bsg_job *bsg_job =
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001241 ctx->u.bsg_job;
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001242 if (bsg_job->request->msgcode
1243 == FC_BSG_HST_CT)
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001244 kfree(sp->fcport);
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001245 bsg_job->req->errors = 0;
1246 bsg_job->reply->result = res;
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001247 bsg_job->job_done(bsg_job);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001248 kfree(sp->ctx);
Andrew Vasquez6c452a42010-03-19 17:04:02 -07001249 mempool_free(sp,
Madhuranath Iyengar49163922010-05-04 15:01:28 -07001250 ha->srb_mempool);
Giridhar Malavalidb3ad7f2010-02-18 10:07:24 -08001251 }
Andrew Vasquezac280b62009-08-20 11:06:05 -07001252 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001253 }
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001254 }
1255 }
1256 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1257}
1258
f4f051e2005-04-17 15:02:26 -05001259static int
1260qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
bdf79622005-04-17 15:06:53 -05001262 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001264 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001265 return -ENXIO;
1266
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001267 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001268
1269 return 0;
1270}
1271
1272static int
1273qla2xxx_slave_configure(struct scsi_device *sdev)
1274{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001275 scsi_qla_host_t *vha = shost_priv(sdev->host);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001276 struct req_que *req = vha->req;
8482e1182005-04-17 15:04:54 -05001277
f4f051e2005-04-17 15:02:26 -05001278 if (sdev->tagged_supported)
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001279 scsi_activate_tcq(sdev, req->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 else
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001281 scsi_deactivate_tcq(sdev, req->max_q_depth);
f4f051e2005-04-17 15:02:26 -05001282 return 0;
1283}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
f4f051e2005-04-17 15:02:26 -05001285static void
1286qla2xxx_slave_destroy(struct scsi_device *sdev)
1287{
1288 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001291static void qla2x00_handle_queue_full(struct scsi_device *sdev, int qdepth)
1292{
1293 fc_port_t *fcport = (struct fc_port *) sdev->hostdata;
1294
1295 if (!scsi_track_queue_full(sdev, qdepth))
1296 return;
1297
1298 DEBUG2(qla_printk(KERN_INFO, fcport->vha->hw,
1299 "scsi(%ld:%d:%d:%d): Queue depth adjusted-down to %d.\n",
1300 fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun,
1301 sdev->queue_depth));
1302}
1303
1304static void qla2x00_adjust_sdev_qdepth_up(struct scsi_device *sdev, int qdepth)
1305{
1306 fc_port_t *fcport = sdev->hostdata;
1307 struct scsi_qla_host *vha = fcport->vha;
1308 struct qla_hw_data *ha = vha->hw;
1309 struct req_que *req = NULL;
1310
1311 req = vha->req;
1312 if (!req)
1313 return;
1314
1315 if (req->max_q_depth <= sdev->queue_depth || req->max_q_depth < qdepth)
1316 return;
1317
1318 if (sdev->ordered_tags)
1319 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, qdepth);
1320 else
1321 scsi_adjust_queue_depth(sdev, MSG_SIMPLE_TAG, qdepth);
1322
1323 DEBUG2(qla_printk(KERN_INFO, ha,
1324 "scsi(%ld:%d:%d:%d): Queue depth adjusted-up to %d.\n",
1325 fcport->vha->host_no, sdev->channel, sdev->id, sdev->lun,
1326 sdev->queue_depth));
1327}
1328
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001329static int
Mike Christiee881a172009-10-15 17:46:39 -07001330qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason)
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001331{
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001332 switch (reason) {
1333 case SCSI_QDEPTH_DEFAULT:
1334 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1335 break;
1336 case SCSI_QDEPTH_QFULL:
1337 qla2x00_handle_queue_full(sdev, qdepth);
1338 break;
1339 case SCSI_QDEPTH_RAMP_UP:
1340 qla2x00_adjust_sdev_qdepth_up(sdev, qdepth);
1341 break;
1342 default:
Roel Kluin08002af2010-01-29 11:25:19 +01001343 return -EOPNOTSUPP;
Giridhar Malavalic45dd302009-12-02 10:36:54 -08001344 }
Mike Christiee881a172009-10-15 17:46:39 -07001345
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001346 return sdev->queue_depth;
1347}
1348
1349static int
1350qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1351{
1352 if (sdev->tagged_supported) {
1353 scsi_set_tag_type(sdev, tag_type);
1354 if (tag_type)
1355 scsi_activate_tcq(sdev, sdev->queue_depth);
1356 else
1357 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1358 } else
1359 tag_type = 0;
1360
1361 return tag_type;
1362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/**
1365 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1366 * @ha: HA context
1367 *
1368 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1369 * supported addressing method.
1370 */
1371static void
Andrew Vasquez53303c42009-01-22 09:45:37 -08001372qla2x00_config_dma_addressing(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001374 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Yang Hongyang6a355282009-04-06 19:01:13 -07001377 if (!dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(64))) {
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001378 /* Any upper-dword bits set? */
1379 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
Yang Hongyang6a355282009-04-06 19:01:13 -07001380 !pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(64))) {
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001381 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001383 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1384 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001385 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001388
Yang Hongyang284901a2009-04-06 19:01:15 -07001389 dma_set_mask(&ha->pdev->dev, DMA_BIT_MASK(32));
1390 pci_set_consistent_dma_mask(ha->pdev, DMA_BIT_MASK(32));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001393static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001394qla2x00_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001395{
1396 unsigned long flags = 0;
1397 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1398
1399 spin_lock_irqsave(&ha->hardware_lock, flags);
1400 ha->interrupts_on = 1;
1401 /* enable risc and host interrupts */
1402 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1403 RD_REG_WORD(&reg->ictrl);
1404 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1405
1406}
1407
1408static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001409qla2x00_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001410{
1411 unsigned long flags = 0;
1412 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1413
1414 spin_lock_irqsave(&ha->hardware_lock, flags);
1415 ha->interrupts_on = 0;
1416 /* disable risc and host interrupts */
1417 WRT_REG_WORD(&reg->ictrl, 0);
1418 RD_REG_WORD(&reg->ictrl);
1419 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1420}
1421
1422static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001423qla24xx_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001424{
1425 unsigned long flags = 0;
1426 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1427
1428 spin_lock_irqsave(&ha->hardware_lock, flags);
1429 ha->interrupts_on = 1;
1430 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1431 RD_REG_DWORD(&reg->ictrl);
1432 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1433}
1434
1435static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001436qla24xx_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001437{
1438 unsigned long flags = 0;
1439 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1440
Andrew Vasquez124f85e2009-01-05 11:18:06 -08001441 if (IS_NOPOLLING_TYPE(ha))
1442 return;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001443 spin_lock_irqsave(&ha->hardware_lock, flags);
1444 ha->interrupts_on = 0;
1445 WRT_REG_DWORD(&reg->ictrl, 0);
1446 RD_REG_DWORD(&reg->ictrl);
1447 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1448}
1449
1450static struct isp_operations qla2100_isp_ops = {
1451 .pci_config = qla2100_pci_config,
1452 .reset_chip = qla2x00_reset_chip,
1453 .chip_diag = qla2x00_chip_diag,
1454 .config_rings = qla2x00_config_rings,
1455 .reset_adapter = qla2x00_reset_adapter,
1456 .nvram_config = qla2x00_nvram_config,
1457 .update_fw_options = qla2x00_update_fw_options,
1458 .load_risc = qla2x00_load_risc,
1459 .pci_info_str = qla2x00_pci_info_str,
1460 .fw_version_str = qla2x00_fw_version_str,
1461 .intr_handler = qla2100_intr_handler,
1462 .enable_intrs = qla2x00_enable_intrs,
1463 .disable_intrs = qla2x00_disable_intrs,
1464 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001465 .target_reset = qla2x00_abort_target,
1466 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001467 .fabric_login = qla2x00_login_fabric,
1468 .fabric_logout = qla2x00_fabric_logout,
1469 .calc_req_entries = qla2x00_calc_iocbs_32,
1470 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1471 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1472 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1473 .read_nvram = qla2x00_read_nvram_data,
1474 .write_nvram = qla2x00_write_nvram_data,
1475 .fw_dump = qla2100_fw_dump,
1476 .beacon_on = NULL,
1477 .beacon_off = NULL,
1478 .beacon_blink = NULL,
1479 .read_optrom = qla2x00_read_optrom_data,
1480 .write_optrom = qla2x00_write_optrom_data,
1481 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001482 .start_scsi = qla2x00_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001483 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001484};
1485
1486static struct isp_operations qla2300_isp_ops = {
1487 .pci_config = qla2300_pci_config,
1488 .reset_chip = qla2x00_reset_chip,
1489 .chip_diag = qla2x00_chip_diag,
1490 .config_rings = qla2x00_config_rings,
1491 .reset_adapter = qla2x00_reset_adapter,
1492 .nvram_config = qla2x00_nvram_config,
1493 .update_fw_options = qla2x00_update_fw_options,
1494 .load_risc = qla2x00_load_risc,
1495 .pci_info_str = qla2x00_pci_info_str,
1496 .fw_version_str = qla2x00_fw_version_str,
1497 .intr_handler = qla2300_intr_handler,
1498 .enable_intrs = qla2x00_enable_intrs,
1499 .disable_intrs = qla2x00_disable_intrs,
1500 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001501 .target_reset = qla2x00_abort_target,
1502 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001503 .fabric_login = qla2x00_login_fabric,
1504 .fabric_logout = qla2x00_fabric_logout,
1505 .calc_req_entries = qla2x00_calc_iocbs_32,
1506 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1507 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1508 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1509 .read_nvram = qla2x00_read_nvram_data,
1510 .write_nvram = qla2x00_write_nvram_data,
1511 .fw_dump = qla2300_fw_dump,
1512 .beacon_on = qla2x00_beacon_on,
1513 .beacon_off = qla2x00_beacon_off,
1514 .beacon_blink = qla2x00_beacon_blink,
1515 .read_optrom = qla2x00_read_optrom_data,
1516 .write_optrom = qla2x00_write_optrom_data,
1517 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001518 .start_scsi = qla2x00_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001519 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001520};
1521
1522static struct isp_operations qla24xx_isp_ops = {
1523 .pci_config = qla24xx_pci_config,
1524 .reset_chip = qla24xx_reset_chip,
1525 .chip_diag = qla24xx_chip_diag,
1526 .config_rings = qla24xx_config_rings,
1527 .reset_adapter = qla24xx_reset_adapter,
1528 .nvram_config = qla24xx_nvram_config,
1529 .update_fw_options = qla24xx_update_fw_options,
1530 .load_risc = qla24xx_load_risc,
1531 .pci_info_str = qla24xx_pci_info_str,
1532 .fw_version_str = qla24xx_fw_version_str,
1533 .intr_handler = qla24xx_intr_handler,
1534 .enable_intrs = qla24xx_enable_intrs,
1535 .disable_intrs = qla24xx_disable_intrs,
1536 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001537 .target_reset = qla24xx_abort_target,
1538 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001539 .fabric_login = qla24xx_login_fabric,
1540 .fabric_logout = qla24xx_fabric_logout,
1541 .calc_req_entries = NULL,
1542 .build_iocbs = NULL,
1543 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1544 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1545 .read_nvram = qla24xx_read_nvram_data,
1546 .write_nvram = qla24xx_write_nvram_data,
1547 .fw_dump = qla24xx_fw_dump,
1548 .beacon_on = qla24xx_beacon_on,
1549 .beacon_off = qla24xx_beacon_off,
1550 .beacon_blink = qla24xx_beacon_blink,
1551 .read_optrom = qla24xx_read_optrom_data,
1552 .write_optrom = qla24xx_write_optrom_data,
1553 .get_flash_version = qla24xx_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001554 .start_scsi = qla24xx_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001555 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001556};
1557
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001558static struct isp_operations qla25xx_isp_ops = {
1559 .pci_config = qla25xx_pci_config,
1560 .reset_chip = qla24xx_reset_chip,
1561 .chip_diag = qla24xx_chip_diag,
1562 .config_rings = qla24xx_config_rings,
1563 .reset_adapter = qla24xx_reset_adapter,
1564 .nvram_config = qla24xx_nvram_config,
1565 .update_fw_options = qla24xx_update_fw_options,
1566 .load_risc = qla24xx_load_risc,
1567 .pci_info_str = qla24xx_pci_info_str,
1568 .fw_version_str = qla24xx_fw_version_str,
1569 .intr_handler = qla24xx_intr_handler,
1570 .enable_intrs = qla24xx_enable_intrs,
1571 .disable_intrs = qla24xx_disable_intrs,
1572 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001573 .target_reset = qla24xx_abort_target,
1574 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001575 .fabric_login = qla24xx_login_fabric,
1576 .fabric_logout = qla24xx_fabric_logout,
1577 .calc_req_entries = NULL,
1578 .build_iocbs = NULL,
1579 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1580 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1581 .read_nvram = qla25xx_read_nvram_data,
1582 .write_nvram = qla25xx_write_nvram_data,
1583 .fw_dump = qla25xx_fw_dump,
1584 .beacon_on = qla24xx_beacon_on,
1585 .beacon_off = qla24xx_beacon_off,
1586 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001587 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001588 .write_optrom = qla24xx_write_optrom_data,
1589 .get_flash_version = qla24xx_get_flash_version,
Arun Easibad75002010-05-04 15:01:30 -07001590 .start_scsi = qla24xx_dif_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001591 .abort_isp = qla2x00_abort_isp,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001592};
1593
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001594static struct isp_operations qla81xx_isp_ops = {
1595 .pci_config = qla25xx_pci_config,
1596 .reset_chip = qla24xx_reset_chip,
1597 .chip_diag = qla24xx_chip_diag,
1598 .config_rings = qla24xx_config_rings,
1599 .reset_adapter = qla24xx_reset_adapter,
1600 .nvram_config = qla81xx_nvram_config,
1601 .update_fw_options = qla81xx_update_fw_options,
Andrew Vasquezeaac30b2009-01-22 09:45:32 -08001602 .load_risc = qla81xx_load_risc,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001603 .pci_info_str = qla24xx_pci_info_str,
1604 .fw_version_str = qla24xx_fw_version_str,
1605 .intr_handler = qla24xx_intr_handler,
1606 .enable_intrs = qla24xx_enable_intrs,
1607 .disable_intrs = qla24xx_disable_intrs,
1608 .abort_command = qla24xx_abort_command,
1609 .target_reset = qla24xx_abort_target,
1610 .lun_reset = qla24xx_lun_reset,
1611 .fabric_login = qla24xx_login_fabric,
1612 .fabric_logout = qla24xx_fabric_logout,
1613 .calc_req_entries = NULL,
1614 .build_iocbs = NULL,
1615 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1616 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
Andrew Vasquez3d79038f2009-03-24 09:08:14 -07001617 .read_nvram = NULL,
1618 .write_nvram = NULL,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001619 .fw_dump = qla81xx_fw_dump,
1620 .beacon_on = qla24xx_beacon_on,
1621 .beacon_off = qla24xx_beacon_off,
1622 .beacon_blink = qla24xx_beacon_blink,
1623 .read_optrom = qla25xx_read_optrom_data,
1624 .write_optrom = qla24xx_write_optrom_data,
1625 .get_flash_version = qla24xx_get_flash_version,
Arun Easiba77ef52010-05-28 15:08:27 -07001626 .start_scsi = qla24xx_dif_start_scsi,
Giridhar Malavalia9083012010-04-12 17:59:55 -07001627 .abort_isp = qla2x00_abort_isp,
1628};
1629
1630static struct isp_operations qla82xx_isp_ops = {
1631 .pci_config = qla82xx_pci_config,
1632 .reset_chip = qla82xx_reset_chip,
1633 .chip_diag = qla24xx_chip_diag,
1634 .config_rings = qla82xx_config_rings,
1635 .reset_adapter = qla24xx_reset_adapter,
1636 .nvram_config = qla81xx_nvram_config,
1637 .update_fw_options = qla24xx_update_fw_options,
1638 .load_risc = qla82xx_load_risc,
1639 .pci_info_str = qla82xx_pci_info_str,
1640 .fw_version_str = qla24xx_fw_version_str,
1641 .intr_handler = qla82xx_intr_handler,
1642 .enable_intrs = qla82xx_enable_intrs,
1643 .disable_intrs = qla82xx_disable_intrs,
1644 .abort_command = qla24xx_abort_command,
1645 .target_reset = qla24xx_abort_target,
1646 .lun_reset = qla24xx_lun_reset,
1647 .fabric_login = qla24xx_login_fabric,
1648 .fabric_logout = qla24xx_fabric_logout,
1649 .calc_req_entries = NULL,
1650 .build_iocbs = NULL,
1651 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1652 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1653 .read_nvram = qla24xx_read_nvram_data,
1654 .write_nvram = qla24xx_write_nvram_data,
1655 .fw_dump = qla24xx_fw_dump,
1656 .beacon_on = qla24xx_beacon_on,
1657 .beacon_off = qla24xx_beacon_off,
1658 .beacon_blink = qla24xx_beacon_blink,
1659 .read_optrom = qla82xx_read_optrom_data,
1660 .write_optrom = qla82xx_write_optrom_data,
1661 .get_flash_version = qla24xx_get_flash_version,
1662 .start_scsi = qla82xx_start_scsi,
1663 .abort_isp = qla82xx_abort_isp,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001664};
1665
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001666static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001667qla2x00_set_isp_flags(struct qla_hw_data *ha)
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001668{
1669 ha->device_type = DT_EXTENDED_IDS;
1670 switch (ha->pdev->device) {
1671 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1672 ha->device_type |= DT_ISP2100;
1673 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001674 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001675 break;
1676 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1677 ha->device_type |= DT_ISP2200;
1678 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001679 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001680 break;
1681 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1682 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001683 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001684 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001685 break;
1686 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1687 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001688 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001689 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001690 break;
1691 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1692 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001693 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001694 if (ha->pdev->subsystem_vendor == 0x1028 &&
1695 ha->pdev->subsystem_device == 0x0170)
1696 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001697 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001698 break;
1699 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1700 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001701 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001702 break;
1703 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1704 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001705 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001706 break;
1707 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1708 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001709 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001710 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001711 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001712 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001713 break;
1714 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1715 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001716 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001717 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001718 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001719 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001720 break;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001721 case PCI_DEVICE_ID_QLOGIC_ISP8432:
1722 ha->device_type |= DT_ISP8432;
1723 ha->device_type |= DT_ZIO_SUPPORTED;
1724 ha->device_type |= DT_FWI2;
1725 ha->device_type |= DT_IIDMA;
1726 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1727 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001728 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1729 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001730 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001731 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001732 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001733 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1734 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001735 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001736 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001737 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001738 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1739 ha->device_type |= DT_ISP2532;
1740 ha->device_type |= DT_ZIO_SUPPORTED;
1741 ha->device_type |= DT_FWI2;
1742 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001743 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1744 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001745 case PCI_DEVICE_ID_QLOGIC_ISP8001:
1746 ha->device_type |= DT_ISP8001;
1747 ha->device_type |= DT_ZIO_SUPPORTED;
1748 ha->device_type |= DT_FWI2;
1749 ha->device_type |= DT_IIDMA;
1750 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1751 break;
Giridhar Malavalia9083012010-04-12 17:59:55 -07001752 case PCI_DEVICE_ID_QLOGIC_ISP8021:
1753 ha->device_type |= DT_ISP8021;
1754 ha->device_type |= DT_ZIO_SUPPORTED;
1755 ha->device_type |= DT_FWI2;
1756 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1757 /* Initialize 82XX ISP flags */
1758 qla82xx_init_flags(ha);
1759 break;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001760 }
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07001761
Giridhar Malavalia9083012010-04-12 17:59:55 -07001762 if (IS_QLA82XX(ha))
1763 ha->port_no = !(ha->portnum & 1);
1764 else
1765 /* Get adapter physical port no from interrupt pin register. */
1766 pci_read_config_byte(ha->pdev, PCI_INTERRUPT_PIN, &ha->port_no);
1767
Anirban Chakrabortye5b68a62009-04-06 22:33:50 -07001768 if (ha->port_no & 1)
1769 ha->flags.port0 = 1;
1770 else
1771 ha->flags.port0 = 0;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001772}
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001775qla2x00_iospace_config(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Andrew Vasquez37765412008-01-17 09:02:09 -08001777 resource_size_t pio;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001778 uint16_t msix;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001779 int cpus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Giridhar Malavalia9083012010-04-12 17:59:55 -07001781 if (IS_QLA82XX(ha))
1782 return qla82xx_iospace_config(ha);
1783
Andrew Vasquez285d0322007-10-19 15:59:17 -07001784 if (pci_request_selected_regions(ha->pdev, ha->bars,
1785 QLA2XXX_DRIVER_NAME)) {
1786 qla_printk(KERN_WARNING, ha,
1787 "Failed to reserve PIO/MMIO regions (%s)\n",
1788 pci_name(ha->pdev));
1789
1790 goto iospace_error_exit;
1791 }
1792 if (!(ha->bars & 1))
1793 goto skip_pio;
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1796 pio = pci_resource_start(ha->pdev, 0);
Andrew Vasquez37765412008-01-17 09:02:09 -08001797 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1798 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 qla_printk(KERN_WARNING, ha,
1800 "Invalid PCI I/O region size (%s)...\n",
1801 pci_name(ha->pdev));
1802 pio = 0;
1803 }
1804 } else {
1805 qla_printk(KERN_WARNING, ha,
1806 "region #0 not a PIO resource (%s)...\n",
1807 pci_name(ha->pdev));
1808 pio = 0;
1809 }
Andrew Vasquez285d0322007-10-19 15:59:17 -07001810 ha->pio_address = pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Andrew Vasquez285d0322007-10-19 15:59:17 -07001812skip_pio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 /* Use MMIO operations for all accesses. */
Andrew Vasquez37765412008-01-17 09:02:09 -08001814 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 qla_printk(KERN_ERR, ha,
Andrew Vasquez37765412008-01-17 09:02:09 -08001816 "region #1 not an MMIO resource (%s), aborting\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 pci_name(ha->pdev));
1818 goto iospace_error_exit;
1819 }
Andrew Vasquez37765412008-01-17 09:02:09 -08001820 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 qla_printk(KERN_ERR, ha,
1822 "Invalid PCI mem region size (%s), aborting\n",
1823 pci_name(ha->pdev));
1824 goto iospace_error_exit;
1825 }
1826
Andrew Vasquez37765412008-01-17 09:02:09 -08001827 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (!ha->iobase) {
1829 qla_printk(KERN_ERR, ha,
1830 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1831
1832 goto iospace_error_exit;
1833 }
1834
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001835 /* Determine queue resources */
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001836 ha->max_req_queues = ha->max_rsp_queues = 1;
Michael Hernandezd84a47c2010-03-19 16:59:18 -07001837 if ((ql2xmaxqueues <= 1 && !ql2xmultique_tag) ||
1838 (ql2xmaxqueues > 1 && ql2xmultique_tag) ||
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001839 (!IS_QLA25XX(ha) && !IS_QLA81XX(ha)))
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001840 goto mqiobase_exit;
Michael Hernandezd84a47c2010-03-19 16:59:18 -07001841
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001842 ha->mqiobase = ioremap(pci_resource_start(ha->pdev, 3),
1843 pci_resource_len(ha->pdev, 3));
1844 if (ha->mqiobase) {
1845 /* Read MSIX vector size of the board */
1846 pci_read_config_word(ha->pdev, QLA_PCI_MSIX_CONTROL, &msix);
1847 ha->msix_count = msix;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001848 /* Max queues are bounded by available msix vectors */
1849 /* queue 0 uses two msix vectors */
1850 if (ql2xmultique_tag) {
1851 cpus = num_online_cpus();
Anirban Chakraborty27dc9c52009-06-17 10:30:28 -07001852 ha->max_rsp_queues = (ha->msix_count - 1 > cpus) ?
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001853 (cpus + 1) : (ha->msix_count - 1);
1854 ha->max_req_queues = 2;
1855 } else if (ql2xmaxqueues > 1) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001856 ha->max_req_queues = ql2xmaxqueues > QLA_MQ_SIZE ?
1857 QLA_MQ_SIZE : ql2xmaxqueues;
1858 DEBUG2(qla_printk(KERN_INFO, ha, "QoS mode set, max no"
1859 " of request queues:%d\n", ha->max_req_queues));
1860 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07001861 qla_printk(KERN_INFO, ha,
1862 "MSI-X vector count: %d\n", msix);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001863 } else
1864 qla_printk(KERN_INFO, ha, "BAR 3 not enabled\n");
Anirban Chakraborty17d98632008-12-18 10:06:15 -08001865
1866mqiobase_exit:
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001867 ha->msix_count = ha->max_rsp_queues + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return (0);
1869
1870iospace_error_exit:
1871 return (-ENOMEM);
1872}
1873
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001874static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001875qla2xxx_scan_start(struct Scsi_Host *shost)
1876{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001877 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001878
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07001879 if (vha->hw->flags.running_gold_fw)
1880 return;
1881
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001882 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1883 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1884 set_bit(RSCN_UPDATE, &vha->dpc_flags);
1885 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001886}
1887
1888static int
1889qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1890{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001891 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001892
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001893 if (!vha->host)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001894 return 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001895 if (time > vha->hw->loop_reset_delay * HZ)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001896 return 1;
1897
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001898 return atomic_read(&vha->loop_state) == LOOP_READY;
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001899}
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901/*
1902 * PCI driver interface
1903 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001904static int __devinit
1905qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001907 int ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 struct Scsi_Host *host;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001909 scsi_qla_host_t *base_vha = NULL;
1910 struct qla_hw_data *ha;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001911 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001913 struct scsi_host_template *sht;
Anirban Chakrabortyc51da4e2008-11-10 15:53:20 -08001914 int bars, max_id, mem_only = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001915 uint16_t req_length = 0, rsp_length = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001916 struct req_que *req = NULL;
1917 struct rsp_que *rsp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Andrew Vasquez285d0322007-10-19 15:59:17 -07001919 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
Giridhar Malavalia5326f82009-03-24 09:07:56 -07001920 sht = &qla2xxx_driver_template;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001921 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1922 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001923 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
Andrew Vasquez285d0322007-10-19 15:59:17 -07001924 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1925 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001926 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532 ||
Giridhar Malavalia9083012010-04-12 17:59:55 -07001927 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8001 ||
1928 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8021) {
Andrew Vasquez285d0322007-10-19 15:59:17 -07001929 bars = pci_select_bars(pdev, IORESOURCE_MEM);
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001930 mem_only = 1;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001931 }
1932
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001933 if (mem_only) {
1934 if (pci_enable_device_mem(pdev))
1935 goto probe_out;
1936 } else {
1937 if (pci_enable_device(pdev))
1938 goto probe_out;
1939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Jesse Barnes09276782008-10-18 17:33:19 -07001941 /* This may fail but that's ok */
1942 pci_enable_pcie_error_reporting(pdev);
Seokmann Ju14e660e2007-09-20 14:07:36 -07001943
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001944 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
1945 if (!ha) {
1946 DEBUG(printk("Unable to allocate memory for ha\n"));
1947 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001949 ha->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 /* Clear our data area */
Andrew Vasquez285d0322007-10-19 15:59:17 -07001952 ha->bars = bars;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001953 ha->mem_only = mem_only;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001954 spin_lock_init(&ha->hardware_lock);
Andrew Vasquez339aa702010-10-15 11:27:45 -07001955 spin_lock_init(&ha->vport_slock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001957 /* Set ISP-type information. */
1958 qla2x00_set_isp_flags(ha);
Duane Grigsbyca79cf62009-12-15 21:29:47 -08001959
1960 /* Set EEH reset type to fundamental if required by hba */
1961 if ( IS_QLA24XX(ha) || IS_QLA25XX(ha) || IS_QLA81XX(ha)) {
1962 pdev->needs_freset = 1;
Duane Grigsbyca79cf62009-12-15 21:29:47 -08001963 }
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* Configure PCI I/O space */
1966 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001967 if (ret)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001968 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001971 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1972 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001975 ha->init_cb_size = sizeof(init_cb_t);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001976 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001977 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001979 /* Assign ISP specific operations. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001980 max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if (IS_QLA2100(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001982 max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001984 req_length = REQUEST_ENTRY_CNT_2100;
1985 rsp_length = RESPONSE_ENTRY_CNT_2100;
1986 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001987 ha->gid_list_info_size = 4;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001988 ha->flash_conf_off = ~0;
1989 ha->flash_data_off = ~0;
1990 ha->nvram_conf_off = ~0;
1991 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001992 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 } else if (IS_QLA2200(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001995 req_length = REQUEST_ENTRY_CNT_2200;
1996 rsp_length = RESPONSE_ENTRY_CNT_2100;
1997 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001998 ha->gid_list_info_size = 4;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001999 ha->flash_conf_off = ~0;
2000 ha->flash_data_off = ~0;
2001 ha->nvram_conf_off = ~0;
2002 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002003 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002004 } else if (IS_QLA23XX(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002006 req_length = REQUEST_ENTRY_CNT_2200;
2007 rsp_length = RESPONSE_ENTRY_CNT_2300;
2008 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002009 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002010 if (IS_QLA2322(ha) || IS_QLA6322(ha))
2011 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002012 ha->flash_conf_off = ~0;
2013 ha->flash_data_off = ~0;
2014 ha->nvram_conf_off = ~0;
2015 ha->nvram_data_off = ~0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002016 ha->isp_ops = &qla2300_isp_ops;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002017 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07002018 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002019 req_length = REQUEST_ENTRY_CNT_24XX;
2020 rsp_length = RESPONSE_ENTRY_CNT_2300;
2021 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002022 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezfca29702005-07-06 10:31:47 -07002023 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002024 ha->optrom_size = OPTROM_SIZE_24XX;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002025 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002026 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002027 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2028 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2029 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2030 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002031 } else if (IS_QLA25XX(ha)) {
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002032 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002033 req_length = REQUEST_ENTRY_CNT_24XX;
2034 rsp_length = RESPONSE_ENTRY_CNT_2300;
2035 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002036 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002037 ha->gid_list_info_size = 8;
2038 ha->optrom_size = OPTROM_SIZE_25XX;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002039 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002040 ha->isp_ops = &qla25xx_isp_ops;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002041 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2042 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2043 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2044 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
2045 } else if (IS_QLA81XX(ha)) {
2046 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2047 req_length = REQUEST_ENTRY_CNT_24XX;
2048 rsp_length = RESPONSE_ENTRY_CNT_2300;
2049 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2050 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2051 ha->gid_list_info_size = 8;
2052 ha->optrom_size = OPTROM_SIZE_81XX;
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07002053 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002054 ha->isp_ops = &qla81xx_isp_ops;
2055 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF_81XX;
2056 ha->flash_data_off = FARX_ACCESS_FLASH_DATA_81XX;
2057 ha->nvram_conf_off = ~0;
2058 ha->nvram_data_off = ~0;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002059 } else if (IS_QLA82XX(ha)) {
2060 ha->mbx_count = MAILBOX_REGISTER_COUNT;
2061 req_length = REQUEST_ENTRY_CNT_82XX;
2062 rsp_length = RESPONSE_ENTRY_CNT_82XX;
2063 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
2064 ha->init_cb_size = sizeof(struct mid_init_cb_81xx);
2065 ha->gid_list_info_size = 8;
2066 ha->optrom_size = OPTROM_SIZE_82XX;
Andrew Vasquez087c6212010-11-23 16:52:48 -08002067 ha->nvram_npiv_size = QLA_MAX_VPORTS_QLA25XX;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002068 ha->isp_ops = &qla82xx_isp_ops;
2069 ha->flash_conf_off = FARX_ACCESS_FLASH_CONF;
2070 ha->flash_data_off = FARX_ACCESS_FLASH_DATA;
2071 ha->nvram_conf_off = FARX_ACCESS_NVRAM_CONF;
2072 ha->nvram_data_off = FARX_ACCESS_NVRAM_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -07002075 mutex_init(&ha->vport_lock);
Marcus Barrow0b05a1f2008-01-17 09:02:13 -08002076 init_completion(&ha->mbx_cmd_comp);
2077 complete(&ha->mbx_cmd_comp);
2078 init_completion(&ha->mbx_intr_comp);
Sarang Radke23f2ebd2010-05-28 15:08:21 -07002079 init_completion(&ha->dcbx_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002081 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Andrew Vasquez53303c42009-01-22 09:45:37 -08002083 qla2x00_config_dma_addressing(ha);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002084 ret = qla2x00_mem_alloc(ha, req_length, rsp_length, &req, &rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002085 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 qla_printk(KERN_WARNING, ha,
2087 "[ERROR] Failed to allocate memory for adapter\n");
2088
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002089 goto probe_hw_failed;
2090 }
2091
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002092 req->max_q_depth = MAX_Q_DEPTH;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002093 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002094 req->max_q_depth = ql2xmaxqdepth;
2095
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002096
2097 base_vha = qla2x00_create_host(sht, ha);
2098 if (!base_vha) {
2099 qla_printk(KERN_WARNING, ha,
2100 "[ERROR] Failed to allocate memory for scsi_host\n");
2101
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002102 ret = -ENOMEM;
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002103 qla2x00_mem_free(ha);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002104 qla2x00_free_req_que(ha, req);
2105 qla2x00_free_rsp_que(ha, rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002106 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002109 pci_set_drvdata(pdev, base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002111 host = base_vha->host;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002112 base_vha->req = req;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002113 host->can_queue = req->length + 128;
2114 if (IS_QLA2XXX_MIDTYPE(ha))
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002115 base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002116 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002117 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
2118 base_vha->vp_idx;
Giridhar Malavali58548cb2010-09-03 15:20:56 -07002119
2120 /* Set the SG table size based on ISP type */
2121 if (!IS_FWI2_CAPABLE(ha)) {
2122 if (IS_QLA2100(ha))
2123 host->sg_tablesize = 32;
2124 } else {
2125 if (!IS_QLA82XX(ha))
2126 host->sg_tablesize = QLA_SG_ALL;
2127 }
2128
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002129 host->max_id = max_id;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002130 host->this_id = 255;
2131 host->cmd_per_lun = 3;
Seokmann Ju711c1d92008-07-10 16:55:51 -07002132 host->unique_id = host->host_no;
Arun Easi0c470872010-07-23 15:28:38 +05002133 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif)
2134 host->max_cmd_len = 32;
2135 else
2136 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07002137 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002138 host->max_lun = MAX_LUNS;
2139 host->transportt = qla2xxx_transport_template;
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002140 sht->vendor_id = (SCSI_NL_VID_TYPE_PCI | PCI_VENDOR_ID_QLOGIC);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002141
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002142 /* Set up the irqs */
2143 ret = qla2x00_request_irqs(ha, rsp);
2144 if (ret)
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002145 goto probe_init_failed;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08002146
2147 pci_save_state(pdev);
2148
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002149 /* Alloc arrays of request and response ring ptrs */
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002150que_init:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002151 if (!qla2x00_alloc_queues(ha)) {
2152 qla_printk(KERN_WARNING, ha,
2153 "[ERROR] Failed to allocate memory for queue"
2154 " pointers\n");
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002155 goto probe_init_failed;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002156 }
Giridhar Malavalia9083012010-04-12 17:59:55 -07002157
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002158 ha->rsp_q_map[0] = rsp;
2159 ha->req_q_map[0] = req;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002160 rsp->req = req;
2161 req->rsp = rsp;
2162 set_bit(0, ha->req_qid_map);
2163 set_bit(0, ha->rsp_qid_map);
Andrew Vasquez08029992009-03-24 09:07:55 -07002164 /* FWI2-capable only. */
2165 req->req_q_in = &ha->iobase->isp24.req_q_in;
2166 req->req_q_out = &ha->iobase->isp24.req_q_out;
2167 rsp->rsp_q_in = &ha->iobase->isp24.rsp_q_in;
2168 rsp->rsp_q_out = &ha->iobase->isp24.rsp_q_out;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002169 if (ha->mqenable) {
Andrew Vasquez08029992009-03-24 09:07:55 -07002170 req->req_q_in = &ha->mqiobase->isp25mq.req_q_in;
2171 req->req_q_out = &ha->mqiobase->isp25mq.req_q_out;
2172 rsp->rsp_q_in = &ha->mqiobase->isp25mq.rsp_q_in;
2173 rsp->rsp_q_out = &ha->mqiobase->isp25mq.rsp_q_out;
Anirban Chakraborty17d98632008-12-18 10:06:15 -08002174 }
2175
Giridhar Malavalia9083012010-04-12 17:59:55 -07002176 if (IS_QLA82XX(ha)) {
2177 req->req_q_out = &ha->iobase->isp82.req_q_out[0];
2178 rsp->rsp_q_in = &ha->iobase->isp82.rsp_q_in[0];
2179 rsp->rsp_q_out = &ha->iobase->isp82.rsp_q_out[0];
2180 }
2181
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002182 if (qla2x00_initialize_adapter(base_vha)) {
2183 qla_printk(KERN_WARNING, ha,
2184 "Failed to initialize adapter\n");
2185
2186 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
2187 "Adapter flags %x.\n",
2188 base_vha->host_no, base_vha->device_flags));
2189
Giridhar Malavalia9083012010-04-12 17:59:55 -07002190 if (IS_QLA82XX(ha)) {
2191 qla82xx_idc_lock(ha);
2192 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
2193 QLA82XX_DEV_FAILED);
2194 qla82xx_idc_unlock(ha);
2195 qla_printk(KERN_INFO, ha, "HW State: FAILED\n");
2196 }
2197
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002198 ret = -ENODEV;
2199 goto probe_failed;
2200 }
2201
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002202 if (ha->mqenable) {
2203 if (qla25xx_setup_mode(base_vha)) {
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002204 qla_printk(KERN_WARNING, ha,
2205 "Can't create queues, falling back to single"
2206 " queue mode\n");
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002207 goto que_init;
2208 }
2209 }
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002210
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07002211 if (ha->flags.running_gold_fw)
2212 goto skip_dpc;
2213
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002214 /*
2215 * Startup the kernel thread for this host adapter
2216 */
2217 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
2218 "%s_dpc", base_vha->host_str);
2219 if (IS_ERR(ha->dpc_thread)) {
2220 qla_printk(KERN_WARNING, ha,
2221 "Unable to start DPC thread!\n");
2222 ret = PTR_ERR(ha->dpc_thread);
2223 goto probe_failed;
2224 }
2225
Andrew Vasquezcbc8eb62009-06-03 09:55:17 -07002226skip_dpc:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002227 list_add_tail(&base_vha->list, &ha->vp_list);
2228 base_vha->host->irq = ha->pdev->irq;
2229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 /* Initialized the timer */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002231 qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002234 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Arun Easiba77ef52010-05-28 15:08:27 -07002236 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif) {
Arun Easibad75002010-05-04 15:01:30 -07002237 if (ha->fw_attributes & BIT_4) {
2238 base_vha->flags.difdix_supported = 1;
2239 DEBUG18(qla_printk(KERN_INFO, ha,
2240 "Registering for DIF/DIX type 1 and 3"
2241 " protection.\n"));
2242 scsi_host_set_prot(host,
2243 SHOST_DIF_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002244 | SHOST_DIF_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002245 | SHOST_DIF_TYPE3_PROTECTION
2246 | SHOST_DIX_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002247 | SHOST_DIX_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002248 | SHOST_DIX_TYPE3_PROTECTION);
2249 scsi_host_set_guard(host, SHOST_DIX_GUARD_CRC);
2250 } else
2251 base_vha->flags.difdix_supported = 0;
2252 }
2253
Giridhar Malavalia9083012010-04-12 17:59:55 -07002254 ha->isp_ops->enable_intrs(ha);
2255
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002256 ret = scsi_add_host(host, &pdev->dev);
2257 if (ret)
2258 goto probe_failed;
2259
Michael Reed14864002009-12-02 09:11:16 -06002260 base_vha->flags.init_done = 1;
2261 base_vha->flags.online = 1;
2262
Andrew Vasquez1e99e332006-11-22 08:24:48 -08002263 scsi_scan_host(host);
2264
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002265 qla2x00_alloc_sysfs_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002266
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002267 qla2x00_init_host_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002268
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002269 qla2x00_dfs_setup(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002270
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 qla_printk(KERN_INFO, ha, "\n"
2272 " QLogic Fibre Channel HBA Driver: %s\n"
2273 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08002274 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
2275 qla2x00_version_str, ha->model_number,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002276 ha->model_desc ? ha->model_desc : "", pdev->device,
2277 ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev),
2278 ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no,
2279 ha->isp_ops->fw_version_str(base_vha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return 0;
2282
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002283probe_init_failed:
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002284 qla2x00_free_req_que(ha, req);
2285 qla2x00_free_rsp_que(ha, rsp);
2286 ha->max_req_queues = ha->max_rsp_queues = 0;
Anirban Chakraborty6e9f21f2009-01-22 09:45:28 -08002287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288probe_failed:
Andrew Vasquezb9978762009-03-24 09:08:05 -07002289 if (base_vha->timer_active)
2290 qla2x00_stop_timer(base_vha);
2291 base_vha->flags.online = 0;
2292 if (ha->dpc_thread) {
2293 struct task_struct *t = ha->dpc_thread;
2294
2295 ha->dpc_thread = NULL;
2296 kthread_stop(t);
2297 }
2298
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002299 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002301 scsi_host_put(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002303probe_hw_failed:
Giridhar Malavalia9083012010-04-12 17:59:55 -07002304 if (IS_QLA82XX(ha)) {
2305 qla82xx_idc_lock(ha);
2306 qla82xx_clear_drv_active(ha);
2307 qla82xx_idc_unlock(ha);
2308 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2309 if (!ql2xdbwr)
2310 iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2311 } else {
2312 if (ha->iobase)
2313 iounmap(ha->iobase);
2314 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002315 pci_release_selected_regions(ha->pdev, ha->bars);
2316 kfree(ha);
2317 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002319probe_out:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002320 pci_disable_device(pdev);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07002321 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Adrian Bunk4c993f72008-01-14 00:55:16 -08002324static void
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07002325qla2x00_shutdown(struct pci_dev *pdev)
2326{
2327 scsi_qla_host_t *vha;
2328 struct qla_hw_data *ha;
2329
2330 vha = pci_get_drvdata(pdev);
2331 ha = vha->hw;
2332
2333 /* Turn-off FCE trace */
2334 if (ha->flags.fce_enabled) {
2335 qla2x00_disable_fce_trace(vha, NULL, NULL);
2336 ha->flags.fce_enabled = 0;
2337 }
2338
2339 /* Turn-off EFT trace */
2340 if (ha->eft)
2341 qla2x00_disable_eft_trace(vha);
2342
2343 /* Stop currently executing firmware. */
2344 qla2x00_try_to_stop_firmware(vha);
2345
2346 /* Turn adapter off line */
2347 vha->flags.online = 0;
2348
2349 /* turn-off interrupts on the card */
2350 if (ha->interrupts_on) {
2351 vha->flags.init_done = 0;
2352 ha->isp_ops->disable_intrs(ha);
2353 }
2354
2355 qla2x00_free_irqs(vha);
2356
2357 qla2x00_free_fw_dump(ha);
2358}
2359
2360static void
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002361qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Arun Easifeafb7b2010-09-03 14:57:00 -07002363 scsi_qla_host_t *base_vha, *vha;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002364 struct qla_hw_data *ha;
Arun Easifeafb7b2010-09-03 14:57:00 -07002365 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002367 base_vha = pci_get_drvdata(pdev);
2368 ha = base_vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Arun Easifeafb7b2010-09-03 14:57:00 -07002370 spin_lock_irqsave(&ha->vport_slock, flags);
2371 list_for_each_entry(vha, &ha->vp_list, list) {
2372 atomic_inc(&vha->vref_count);
2373
2374 if (vha && vha->fc_vport) {
2375 spin_unlock_irqrestore(&ha->vport_slock, flags);
2376
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002377 fc_vport_terminate(vha->fc_vport);
Arun Easifeafb7b2010-09-03 14:57:00 -07002378
2379 spin_lock_irqsave(&ha->vport_slock, flags);
2380 }
2381
2382 atomic_dec(&vha->vref_count);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002383 }
Arun Easifeafb7b2010-09-03 14:57:00 -07002384 spin_unlock_irqrestore(&ha->vport_slock, flags);
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002385
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002386 set_bit(UNLOADING, &base_vha->dpc_flags);
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002387
Andrew Vasquezb9978762009-03-24 09:08:05 -07002388 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
2389
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002390 qla2x00_dfs_remove(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002391
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002392 qla84xx_put_chip(base_vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002393
Andrew Vasquezb9978762009-03-24 09:08:05 -07002394 /* Disable timer */
2395 if (base_vha->timer_active)
2396 qla2x00_stop_timer(base_vha);
2397
2398 base_vha->flags.online = 0;
2399
Anirban Chakraborty68ca9492009-04-06 22:33:41 -07002400 /* Flush the work queue and remove it */
2401 if (ha->wq) {
2402 flush_workqueue(ha->wq);
2403 destroy_workqueue(ha->wq);
2404 ha->wq = NULL;
2405 }
2406
Andrew Vasquezb9978762009-03-24 09:08:05 -07002407 /* Kill the kernel thread for this host */
2408 if (ha->dpc_thread) {
2409 struct task_struct *t = ha->dpc_thread;
2410
2411 /*
2412 * qla2xxx_wake_dpc checks for ->dpc_thread
2413 * so we need to zero it out.
2414 */
2415 ha->dpc_thread = NULL;
2416 kthread_stop(t);
2417 }
2418
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002419 qla2x00_free_sysfs_attr(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002421 fc_remove_host(base_vha->host);
bdf79622005-04-17 15:06:53 -05002422
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002423 scsi_remove_host(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002425 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002427 scsi_host_put(base_vha->host);
2428
Giridhar Malavalia9083012010-04-12 17:59:55 -07002429 if (IS_QLA82XX(ha)) {
Giridhar Malavalib9637522010-05-28 15:08:15 -07002430 qla82xx_idc_lock(ha);
2431 qla82xx_clear_drv_active(ha);
2432 qla82xx_idc_unlock(ha);
2433
Giridhar Malavalia9083012010-04-12 17:59:55 -07002434 iounmap((device_reg_t __iomem *)ha->nx_pcibase);
2435 if (!ql2xdbwr)
2436 iounmap((device_reg_t __iomem *)ha->nxdb_wr_ptr);
2437 } else {
2438 if (ha->iobase)
2439 iounmap(ha->iobase);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002440
Giridhar Malavalia9083012010-04-12 17:59:55 -07002441 if (ha->mqiobase)
2442 iounmap(ha->mqiobase);
2443 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002444
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002445 pci_release_selected_regions(ha->pdev, ha->bars);
2446 kfree(ha);
2447 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08002449 pci_disable_pcie_error_reporting(pdev);
2450
Bernhard Walle665db932007-03-28 00:49:49 +02002451 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 pci_set_drvdata(pdev, NULL);
2453}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002456qla2x00_free_device(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002458 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Andrew Vasquez85880802009-12-15 21:29:46 -08002460 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
2461
2462 /* Disable timer */
2463 if (vha->timer_active)
2464 qla2x00_stop_timer(vha);
2465
2466 /* Kill the kernel thread for this host */
2467 if (ha->dpc_thread) {
2468 struct task_struct *t = ha->dpc_thread;
2469
2470 /*
2471 * qla2xxx_wake_dpc checks for ->dpc_thread
2472 * so we need to zero it out.
2473 */
2474 ha->dpc_thread = NULL;
2475 kthread_stop(t);
2476 }
2477
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002478 qla25xx_delete_queues(vha);
2479
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002480 if (ha->flags.fce_enabled)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002481 qla2x00_disable_fce_trace(vha, NULL, NULL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002482
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002483 if (ha->eft)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002484 qla2x00_disable_eft_trace(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002485
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002486 /* Stop currently executing firmware. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002487 qla2x00_try_to_stop_firmware(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Andrew Vasquez85880802009-12-15 21:29:46 -08002489 vha->flags.online = 0;
2490
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002491 /* turn-off interrupts on the card */
Giridhar Malavalia9083012010-04-12 17:59:55 -07002492 if (ha->interrupts_on) {
2493 vha->flags.init_done = 0;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002494 ha->isp_ops->disable_intrs(ha);
Giridhar Malavalia9083012010-04-12 17:59:55 -07002495 }
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002496
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002497 qla2x00_free_irqs(vha);
2498
Chad Dupuis88670482010-07-23 15:28:30 +05002499 qla2x00_free_fcports(vha);
2500
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07002501 qla2x00_mem_free(ha);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002502
2503 qla2x00_free_queues(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Chad Dupuis88670482010-07-23 15:28:30 +05002506void qla2x00_free_fcports(struct scsi_qla_host *vha)
2507{
2508 fc_port_t *fcport, *tfcport;
2509
2510 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
2511 list_del(&fcport->list);
2512 kfree(fcport);
2513 fcport = NULL;
2514 }
2515}
2516
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002517static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002518qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002519 int defer)
2520{
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002521 struct fc_rport *rport;
Andrew Vasquez67becc02009-08-25 11:36:20 -07002522 scsi_qla_host_t *base_vha;
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002523
2524 if (!fcport->rport)
2525 return;
2526
2527 rport = fcport->rport;
2528 if (defer) {
Andrew Vasquez67becc02009-08-25 11:36:20 -07002529 base_vha = pci_get_drvdata(vha->hw->pdev);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002530 spin_lock_irq(vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002531 fcport->drport = rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002532 spin_unlock_irq(vha->host->host_lock);
Andrew Vasquez67becc02009-08-25 11:36:20 -07002533 set_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
2534 qla2xxx_wake_dpc(base_vha);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002535 } else
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002536 fc_remote_port_delete(rport);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002537}
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
2541 *
2542 * Input: ha = adapter block pointer. fcport = port structure pointer.
2543 *
2544 * Return: None.
2545 *
2546 * Context:
2547 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002548void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002549 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002551 if (atomic_read(&fcport->state) == FCS_ONLINE &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002552 vha->vp_idx == fcport->vp_idx) {
2553 atomic_set(&fcport->state, FCS_DEVICE_LOST);
2554 qla2x00_schedule_rport_del(vha, fcport, defer);
2555 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002556 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 * We may need to retry the login, so don't change the state of the
2558 * port but do the retries.
2559 */
2560 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
2561 atomic_set(&fcport->state, FCS_DEVICE_LOST);
2562
2563 if (!do_login)
2564 return;
2565
2566 if (fcport->login_retry == 0) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002567 fcport->login_retry = vha->hw->login_retry_count;
2568 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 DEBUG(printk("scsi(%ld): Port login retry: "
2571 "%02x%02x%02x%02x%02x%02x%02x%02x, "
2572 "id = 0x%04x retry cnt=%d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002573 vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 fcport->port_name[0],
2575 fcport->port_name[1],
2576 fcport->port_name[2],
2577 fcport->port_name[3],
2578 fcport->port_name[4],
2579 fcport->port_name[5],
2580 fcport->port_name[6],
2581 fcport->port_name[7],
2582 fcport->loop_id,
2583 fcport->login_retry));
2584 }
2585}
2586
2587/*
2588 * qla2x00_mark_all_devices_lost
2589 * Updates fcport state when device goes offline.
2590 *
2591 * Input:
2592 * ha = adapter block pointer.
2593 * fcport = port structure pointer.
2594 *
2595 * Return:
2596 * None.
2597 *
2598 * Context:
2599 */
2600void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002601qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
2603 fc_port_t *fcport;
2604
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002605 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002606 if (vha->vp_idx != 0 && vha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 continue;
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002608
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 /*
2610 * No point in marking the device as lost, if the device is
2611 * already DEAD.
2612 */
2613 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
2614 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002615 if (atomic_read(&fcport->state) == FCS_ONLINE) {
Giridhar Malavali38170fa2010-10-15 11:27:49 -07002616 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002617 if (defer)
2618 qla2x00_schedule_rport_del(vha, fcport, defer);
2619 else if (vha->vp_idx == fcport->vp_idx)
2620 qla2x00_schedule_rport_del(vha, fcport, defer);
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623}
2624
2625/*
2626* qla2x00_mem_alloc
2627* Allocates adapter memory.
2628*
2629* Returns:
2630* 0 = success.
Andrew Vasqueze8711082008-01-31 12:33:48 -08002631* !0 = failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632*/
Andrew Vasqueze8711082008-01-31 12:33:48 -08002633static int
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002634qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len,
2635 struct req_que **req, struct rsp_que **rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
2637 char name[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Andrew Vasqueze8711082008-01-31 12:33:48 -08002639 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002640 &ha->init_cb_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002641 if (!ha->init_cb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002642 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002644 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2645 &ha->gid_list_dma, GFP_KERNEL);
2646 if (!ha->gid_list)
Andrew Vasqueze8711082008-01-31 12:33:48 -08002647 goto fail_free_init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Andrew Vasqueze8711082008-01-31 12:33:48 -08002649 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2650 if (!ha->srb_mempool)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002651 goto fail_free_gid_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
Giridhar Malavalia9083012010-04-12 17:59:55 -07002653 if (IS_QLA82XX(ha)) {
2654 /* Allocate cache for CT6 Ctx. */
2655 if (!ctx_cachep) {
2656 ctx_cachep = kmem_cache_create("qla2xxx_ctx",
2657 sizeof(struct ct6_dsd), 0,
2658 SLAB_HWCACHE_ALIGN, NULL);
2659 if (!ctx_cachep)
2660 goto fail_free_gid_list;
2661 }
2662 ha->ctx_mempool = mempool_create_slab_pool(SRB_MIN_REQ,
2663 ctx_cachep);
2664 if (!ha->ctx_mempool)
2665 goto fail_free_srb_mempool;
2666 }
2667
Andrew Vasqueze8711082008-01-31 12:33:48 -08002668 /* Get memory for cached NVRAM */
2669 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2670 if (!ha->nvram)
Giridhar Malavalia9083012010-04-12 17:59:55 -07002671 goto fail_free_ctx_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002673 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
2674 ha->pdev->device);
2675 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2676 DMA_POOL_SIZE, 8, 0);
2677 if (!ha->s_dma_pool)
2678 goto fail_free_nvram;
2679
Arun Easibad75002010-05-04 15:01:30 -07002680 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002681 ha->dl_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2682 DSD_LIST_DMA_POOL_SIZE, 8, 0);
2683 if (!ha->dl_dma_pool) {
2684 qla_printk(KERN_WARNING, ha,
2685 "Memory Allocation failed - dl_dma_pool\n");
2686 goto fail_s_dma_pool;
2687 }
2688
2689 ha->fcp_cmnd_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2690 FCP_CMND_DMA_POOL_SIZE, 8, 0);
2691 if (!ha->fcp_cmnd_dma_pool) {
2692 qla_printk(KERN_WARNING, ha,
2693 "Memory Allocation failed - fcp_cmnd_dma_pool\n");
2694 goto fail_dl_dma_pool;
2695 }
2696 }
2697
Andrew Vasqueze8711082008-01-31 12:33:48 -08002698 /* Allocate memory for SNS commands */
2699 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002700 /* Get consistent memory allocated for SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002701 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002702 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002703 if (!ha->sns_cmd)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002704 goto fail_dma_pool;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002705 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002706 /* Get consistent memory allocated for MS IOCB */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002707 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002708 &ha->ms_iocb_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002709 if (!ha->ms_iocb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002710 goto fail_dma_pool;
2711 /* Get consistent memory allocated for CT SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002712 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002713 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002714 if (!ha->ct_sns)
2715 goto fail_free_ms_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002718 /* Allocate memory for request ring */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002719 *req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
2720 if (!*req) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002721 DEBUG(printk("Unable to allocate memory for req\n"));
2722 goto fail_req;
2723 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002724 (*req)->length = req_len;
2725 (*req)->ring = dma_alloc_coherent(&ha->pdev->dev,
2726 ((*req)->length + 1) * sizeof(request_t),
2727 &(*req)->dma, GFP_KERNEL);
2728 if (!(*req)->ring) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002729 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2730 goto fail_req_ring;
2731 }
2732 /* Allocate memory for response ring */
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002733 *rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
2734 if (!*rsp) {
2735 qla_printk(KERN_WARNING, ha,
2736 "Unable to allocate memory for rsp\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002737 goto fail_rsp;
2738 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002739 (*rsp)->hw = ha;
2740 (*rsp)->length = rsp_len;
2741 (*rsp)->ring = dma_alloc_coherent(&ha->pdev->dev,
2742 ((*rsp)->length + 1) * sizeof(response_t),
2743 &(*rsp)->dma, GFP_KERNEL);
2744 if (!(*rsp)->ring) {
2745 qla_printk(KERN_WARNING, ha,
2746 "Unable to allocate memory for rsp_ring\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002747 goto fail_rsp_ring;
2748 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002749 (*req)->rsp = *rsp;
2750 (*rsp)->req = *req;
2751 /* Allocate memory for NVRAM data for vports */
2752 if (ha->nvram_npiv_size) {
2753 ha->npiv_info = kzalloc(sizeof(struct qla_npiv_entry) *
2754 ha->nvram_npiv_size, GFP_KERNEL);
2755 if (!ha->npiv_info) {
2756 qla_printk(KERN_WARNING, ha,
2757 "Unable to allocate memory for npiv info\n");
2758 goto fail_npiv_info;
2759 }
2760 } else
2761 ha->npiv_info = NULL;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002762
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002763 /* Get consistent memory allocated for EX-INIT-CB. */
Giridhar Malavalia9083012010-04-12 17:59:55 -07002764 if (IS_QLA8XXX_TYPE(ha)) {
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002765 ha->ex_init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2766 &ha->ex_init_cb_dma);
2767 if (!ha->ex_init_cb)
2768 goto fail_ex_init_cb;
2769 }
2770
Giridhar Malavalia9083012010-04-12 17:59:55 -07002771 INIT_LIST_HEAD(&ha->gbl_dsd_list);
2772
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002773 /* Get consistent memory allocated for Async Port-Database. */
2774 if (!IS_FWI2_CAPABLE(ha)) {
2775 ha->async_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2776 &ha->async_pd_dma);
2777 if (!ha->async_pd)
2778 goto fail_async_pd;
2779 }
2780
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002781 INIT_LIST_HEAD(&ha->vp_list);
2782 return 1;
2783
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002784fail_async_pd:
2785 dma_pool_free(ha->s_dma_pool, ha->ex_init_cb, ha->ex_init_cb_dma);
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002786fail_ex_init_cb:
2787 kfree(ha->npiv_info);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002788fail_npiv_info:
2789 dma_free_coherent(&ha->pdev->dev, ((*rsp)->length + 1) *
2790 sizeof(response_t), (*rsp)->ring, (*rsp)->dma);
2791 (*rsp)->ring = NULL;
2792 (*rsp)->dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002793fail_rsp_ring:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002794 kfree(*rsp);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002795fail_rsp:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002796 dma_free_coherent(&ha->pdev->dev, ((*req)->length + 1) *
2797 sizeof(request_t), (*req)->ring, (*req)->dma);
2798 (*req)->ring = NULL;
2799 (*req)->dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002800fail_req_ring:
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002801 kfree(*req);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002802fail_req:
2803 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2804 ha->ct_sns, ha->ct_sns_dma);
2805 ha->ct_sns = NULL;
2806 ha->ct_sns_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002807fail_free_ms_iocb:
2808 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2809 ha->ms_iocb = NULL;
2810 ha->ms_iocb_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002811fail_dma_pool:
Arun Easibad75002010-05-04 15:01:30 -07002812 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002813 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
2814 ha->fcp_cmnd_dma_pool = NULL;
2815 }
2816fail_dl_dma_pool:
Arun Easibad75002010-05-04 15:01:30 -07002817 if (IS_QLA82XX(ha) || ql2xenabledif) {
Giridhar Malavalia9083012010-04-12 17:59:55 -07002818 dma_pool_destroy(ha->dl_dma_pool);
2819 ha->dl_dma_pool = NULL;
2820 }
2821fail_s_dma_pool:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002822 dma_pool_destroy(ha->s_dma_pool);
2823 ha->s_dma_pool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002824fail_free_nvram:
2825 kfree(ha->nvram);
2826 ha->nvram = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002827fail_free_ctx_mempool:
2828 mempool_destroy(ha->ctx_mempool);
2829 ha->ctx_mempool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002830fail_free_srb_mempool:
2831 mempool_destroy(ha->srb_mempool);
2832 ha->srb_mempool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002833fail_free_gid_list:
2834 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002835 ha->gid_list_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002836 ha->gid_list = NULL;
2837 ha->gid_list_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002838fail_free_init_cb:
2839 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2840 ha->init_cb_dma);
2841 ha->init_cb = NULL;
2842 ha->init_cb_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002843fail:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002844 DEBUG(printk("%s: Memory allocation failure\n", __func__));
Andrew Vasqueze8711082008-01-31 12:33:48 -08002845 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846}
2847
2848/*
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07002849* qla2x00_free_fw_dump
2850* Frees fw dump stuff.
2851*
2852* Input:
2853* ha = adapter block pointer.
2854*/
2855static void
2856qla2x00_free_fw_dump(struct qla_hw_data *ha)
2857{
2858 if (ha->fce)
2859 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2860 ha->fce_dma);
2861
2862 if (ha->fw_dump) {
2863 if (ha->eft)
2864 dma_free_coherent(&ha->pdev->dev,
2865 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2866 vfree(ha->fw_dump);
2867 }
2868 ha->fce = NULL;
2869 ha->fce_dma = 0;
2870 ha->eft = NULL;
2871 ha->eft_dma = 0;
2872 ha->fw_dump = NULL;
2873 ha->fw_dumped = 0;
2874 ha->fw_dump_reading = 0;
2875}
2876
2877/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878* qla2x00_mem_free
2879* Frees all adapter allocated memory.
2880*
2881* Input:
2882* ha = adapter block pointer.
2883*/
Adrian Bunka824ebb2008-01-17 09:02:15 -08002884static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002885qla2x00_mem_free(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07002887 qla2x00_free_fw_dump(ha);
2888
Andrew Vasqueze8711082008-01-31 12:33:48 -08002889 if (ha->srb_mempool)
2890 mempool_destroy(ha->srb_mempool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -07002892 if (ha->dcbx_tlv)
2893 dma_free_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
2894 ha->dcbx_tlv, ha->dcbx_tlv_dma);
2895
Andrew Vasquezce0423f2009-06-03 09:55:13 -07002896 if (ha->xgmac_data)
2897 dma_free_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
2898 ha->xgmac_data, ha->xgmac_data_dma);
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (ha->sns_cmd)
2901 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002902 ha->sns_cmd, ha->sns_cmd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 if (ha->ct_sns)
2905 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002906 ha->ct_sns, ha->ct_sns_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Andrew Vasquez88729e52006-06-23 16:10:50 -07002908 if (ha->sfp_data)
2909 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2910
Joe Carnuccioad0ecd62009-03-24 09:08:12 -07002911 if (ha->edc_data)
2912 dma_pool_free(ha->s_dma_pool, ha->edc_data, ha->edc_data_dma);
2913
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (ha->ms_iocb)
2915 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2916
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002917 if (ha->ex_init_cb)
Giridhar Malavalia9083012010-04-12 17:59:55 -07002918 dma_pool_free(ha->s_dma_pool,
2919 ha->ex_init_cb, ha->ex_init_cb_dma);
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002920
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002921 if (ha->async_pd)
2922 dma_pool_free(ha->s_dma_pool, ha->async_pd, ha->async_pd_dma);
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if (ha->s_dma_pool)
2925 dma_pool_destroy(ha->s_dma_pool);
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (ha->gid_list)
2928 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002929 ha->gid_list_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Giridhar Malavalia9083012010-04-12 17:59:55 -07002931 if (IS_QLA82XX(ha)) {
2932 if (!list_empty(&ha->gbl_dsd_list)) {
2933 struct dsd_dma *dsd_ptr, *tdsd_ptr;
2934
2935 /* clean up allocated prev pool */
2936 list_for_each_entry_safe(dsd_ptr,
2937 tdsd_ptr, &ha->gbl_dsd_list, list) {
2938 dma_pool_free(ha->dl_dma_pool,
2939 dsd_ptr->dsd_addr, dsd_ptr->dsd_list_dma);
2940 list_del(&dsd_ptr->list);
2941 kfree(dsd_ptr);
2942 }
2943 }
2944 }
2945
2946 if (ha->dl_dma_pool)
2947 dma_pool_destroy(ha->dl_dma_pool);
2948
2949 if (ha->fcp_cmnd_dma_pool)
2950 dma_pool_destroy(ha->fcp_cmnd_dma_pool);
2951
2952 if (ha->ctx_mempool)
2953 mempool_destroy(ha->ctx_mempool);
2954
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002955 if (ha->init_cb)
2956 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
Giridhar Malavalia9083012010-04-12 17:59:55 -07002957 ha->init_cb, ha->init_cb_dma);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002958 vfree(ha->optrom_buffer);
2959 kfree(ha->nvram);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002960 kfree(ha->npiv_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Andrew Vasqueze8711082008-01-31 12:33:48 -08002962 ha->srb_mempool = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002963 ha->ctx_mempool = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 ha->sns_cmd = NULL;
2965 ha->sns_cmd_dma = 0;
2966 ha->ct_sns = NULL;
2967 ha->ct_sns_dma = 0;
2968 ha->ms_iocb = NULL;
2969 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 ha->init_cb = NULL;
2971 ha->init_cb_dma = 0;
Andrew Vasquezb64b0e82009-03-24 09:08:01 -07002972 ha->ex_init_cb = NULL;
2973 ha->ex_init_cb_dma = 0;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07002974 ha->async_pd = NULL;
2975 ha->async_pd_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977 ha->s_dma_pool = NULL;
Giridhar Malavalia9083012010-04-12 17:59:55 -07002978 ha->dl_dma_pool = NULL;
2979 ha->fcp_cmnd_dma_pool = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 ha->gid_list = NULL;
2982 ha->gid_list_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002983}
2984
2985struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
2986 struct qla_hw_data *ha)
2987{
2988 struct Scsi_Host *host;
2989 struct scsi_qla_host *vha = NULL;
2990
2991 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
2992 if (host == NULL) {
2993 printk(KERN_WARNING
2994 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2995 goto fail;
2996 }
2997
2998 /* Clear our data area */
2999 vha = shost_priv(host);
3000 memset(vha, 0, sizeof(scsi_qla_host_t));
3001
3002 vha->host = host;
3003 vha->host_no = host->host_no;
3004 vha->hw = ha;
3005
3006 INIT_LIST_HEAD(&vha->vp_fcports);
3007 INIT_LIST_HEAD(&vha->work_list);
3008 INIT_LIST_HEAD(&vha->list);
3009
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003010 spin_lock_init(&vha->work_lock);
3011
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003012 sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
3013 return vha;
3014
3015fail:
3016 return vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017}
3018
Adrian Bunk01ef66b2008-04-24 15:21:27 -07003019static struct qla_work_evt *
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003020qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type)
Andrew Vasquez0971de72008-04-03 13:13:18 -07003021{
3022 struct qla_work_evt *e;
Arun Easifeafb7b2010-09-03 14:57:00 -07003023 uint8_t bail;
3024
3025 QLA_VHA_MARK_BUSY(vha, bail);
3026 if (bail)
3027 return NULL;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003028
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003029 e = kzalloc(sizeof(struct qla_work_evt), GFP_ATOMIC);
Arun Easifeafb7b2010-09-03 14:57:00 -07003030 if (!e) {
3031 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003032 return NULL;
Arun Easifeafb7b2010-09-03 14:57:00 -07003033 }
Andrew Vasquez0971de72008-04-03 13:13:18 -07003034
3035 INIT_LIST_HEAD(&e->list);
3036 e->type = type;
3037 e->flags = QLA_EVT_FLAG_FREE;
3038 return e;
3039}
3040
Adrian Bunk01ef66b2008-04-24 15:21:27 -07003041static int
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003042qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e)
Andrew Vasquez0971de72008-04-03 13:13:18 -07003043{
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003044 unsigned long flags;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003045
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003046 spin_lock_irqsave(&vha->work_lock, flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003047 list_add_tail(&e->list, &vha->work_list);
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003048 spin_unlock_irqrestore(&vha->work_lock, flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003049 qla2xxx_wake_dpc(vha);
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003050
Andrew Vasquez0971de72008-04-03 13:13:18 -07003051 return QLA_SUCCESS;
3052}
3053
3054int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003055qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
Andrew Vasquez0971de72008-04-03 13:13:18 -07003056 u32 data)
3057{
3058 struct qla_work_evt *e;
3059
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003060 e = qla2x00_alloc_work(vha, QLA_EVT_AEN);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003061 if (!e)
3062 return QLA_FUNCTION_FAILED;
3063
3064 e->u.aen.code = code;
3065 e->u.aen.data = data;
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003066 return qla2x00_post_work(vha, e);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003067}
3068
Andrew Vasquez8a659572009-02-08 20:50:12 -08003069int
3070qla2x00_post_idc_ack_work(struct scsi_qla_host *vha, uint16_t *mb)
3071{
3072 struct qla_work_evt *e;
3073
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003074 e = qla2x00_alloc_work(vha, QLA_EVT_IDC_ACK);
Andrew Vasquez8a659572009-02-08 20:50:12 -08003075 if (!e)
3076 return QLA_FUNCTION_FAILED;
3077
3078 memcpy(e->u.idc_ack.mb, mb, QLA_IDC_ACK_REGS * sizeof(uint16_t));
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003079 return qla2x00_post_work(vha, e);
Andrew Vasquez8a659572009-02-08 20:50:12 -08003080}
3081
Andrew Vasquezac280b62009-08-20 11:06:05 -07003082#define qla2x00_post_async_work(name, type) \
3083int qla2x00_post_async_##name##_work( \
3084 struct scsi_qla_host *vha, \
3085 fc_port_t *fcport, uint16_t *data) \
3086{ \
3087 struct qla_work_evt *e; \
3088 \
3089 e = qla2x00_alloc_work(vha, type); \
3090 if (!e) \
3091 return QLA_FUNCTION_FAILED; \
3092 \
3093 e->u.logio.fcport = fcport; \
3094 if (data) { \
3095 e->u.logio.data[0] = data[0]; \
3096 e->u.logio.data[1] = data[1]; \
3097 } \
3098 return qla2x00_post_work(vha, e); \
3099}
3100
3101qla2x00_post_async_work(login, QLA_EVT_ASYNC_LOGIN);
3102qla2x00_post_async_work(login_done, QLA_EVT_ASYNC_LOGIN_DONE);
3103qla2x00_post_async_work(logout, QLA_EVT_ASYNC_LOGOUT);
3104qla2x00_post_async_work(logout_done, QLA_EVT_ASYNC_LOGOUT_DONE);
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003105qla2x00_post_async_work(adisc, QLA_EVT_ASYNC_ADISC);
3106qla2x00_post_async_work(adisc_done, QLA_EVT_ASYNC_ADISC_DONE);
Andrew Vasquezac280b62009-08-20 11:06:05 -07003107
Andrew Vasquez3420d362009-10-13 15:16:45 -07003108int
3109qla2x00_post_uevent_work(struct scsi_qla_host *vha, u32 code)
3110{
3111 struct qla_work_evt *e;
3112
3113 e = qla2x00_alloc_work(vha, QLA_EVT_UEVENT);
3114 if (!e)
3115 return QLA_FUNCTION_FAILED;
3116
3117 e->u.uevent.code = code;
3118 return qla2x00_post_work(vha, e);
3119}
3120
3121static void
3122qla2x00_uevent_emit(struct scsi_qla_host *vha, u32 code)
3123{
3124 char event_string[40];
3125 char *envp[] = { event_string, NULL };
3126
3127 switch (code) {
3128 case QLA_UEVENT_CODE_FW_DUMP:
3129 snprintf(event_string, sizeof(event_string), "FW_DUMP=%ld",
3130 vha->host_no);
3131 break;
3132 default:
3133 /* do nothing */
3134 break;
3135 }
3136 kobject_uevent_env(&vha->hw->pdev->dev.kobj, KOBJ_CHANGE, envp);
3137}
3138
Andrew Vasquezac280b62009-08-20 11:06:05 -07003139void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003140qla2x00_do_work(struct scsi_qla_host *vha)
Andrew Vasquez0971de72008-04-03 13:13:18 -07003141{
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003142 struct qla_work_evt *e, *tmp;
3143 unsigned long flags;
3144 LIST_HEAD(work);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003145
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003146 spin_lock_irqsave(&vha->work_lock, flags);
3147 list_splice_init(&vha->work_list, &work);
3148 spin_unlock_irqrestore(&vha->work_lock, flags);
3149
3150 list_for_each_entry_safe(e, tmp, &work, list) {
Andrew Vasquez0971de72008-04-03 13:13:18 -07003151 list_del_init(&e->list);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003152
3153 switch (e->type) {
3154 case QLA_EVT_AEN:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003155 fc_host_post_event(vha->host, fc_get_event_number(),
Andrew Vasquez0971de72008-04-03 13:13:18 -07003156 e->u.aen.code, e->u.aen.data);
3157 break;
Andrew Vasquez8a659572009-02-08 20:50:12 -08003158 case QLA_EVT_IDC_ACK:
3159 qla81xx_idc_ack(vha, e->u.idc_ack.mb);
3160 break;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003161 case QLA_EVT_ASYNC_LOGIN:
3162 qla2x00_async_login(vha, e->u.logio.fcport,
3163 e->u.logio.data);
3164 break;
3165 case QLA_EVT_ASYNC_LOGIN_DONE:
3166 qla2x00_async_login_done(vha, e->u.logio.fcport,
3167 e->u.logio.data);
3168 break;
3169 case QLA_EVT_ASYNC_LOGOUT:
3170 qla2x00_async_logout(vha, e->u.logio.fcport);
3171 break;
3172 case QLA_EVT_ASYNC_LOGOUT_DONE:
3173 qla2x00_async_logout_done(vha, e->u.logio.fcport,
3174 e->u.logio.data);
3175 break;
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003176 case QLA_EVT_ASYNC_ADISC:
3177 qla2x00_async_adisc(vha, e->u.logio.fcport,
3178 e->u.logio.data);
3179 break;
3180 case QLA_EVT_ASYNC_ADISC_DONE:
3181 qla2x00_async_adisc_done(vha, e->u.logio.fcport,
3182 e->u.logio.data);
3183 break;
Andrew Vasquez3420d362009-10-13 15:16:45 -07003184 case QLA_EVT_UEVENT:
3185 qla2x00_uevent_emit(vha, e->u.uevent.code);
3186 break;
Andrew Vasquez0971de72008-04-03 13:13:18 -07003187 }
3188 if (e->flags & QLA_EVT_FLAG_FREE)
3189 kfree(e);
Arun Easifeafb7b2010-09-03 14:57:00 -07003190
3191 /* For each work completed decrement vha ref count */
3192 QLA_VHA_MARK_NOT_BUSY(vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003193 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003194}
Andrew Vasquezf999f4c2009-06-03 09:55:28 -07003195
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003196/* Relogins all the fcports of a vport
3197 * Context: dpc thread
3198 */
3199void qla2x00_relogin(struct scsi_qla_host *vha)
3200{
3201 fc_port_t *fcport;
Andrew Vasquezc6b2fca2009-03-05 11:07:03 -08003202 int status;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003203 uint16_t next_loopid = 0;
3204 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003205 uint16_t data[2];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003206
3207 list_for_each_entry(fcport, &vha->vp_fcports, list) {
3208 /*
3209 * If the port is not ONLINE then try to login
3210 * to it if we haven't run out of retries.
3211 */
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003212 if (atomic_read(&fcport->state) != FCS_ONLINE &&
3213 fcport->login_retry && !(fcport->flags & FCF_ASYNC_SENT)) {
Andrew Vasquezac280b62009-08-20 11:06:05 -07003214 fcport->login_retry--;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003215 if (fcport->flags & FCF_FABRIC_DEVICE) {
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003216 if (fcport->flags & FCF_FCP2_DEVICE)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003217 ha->isp_ops->fabric_logout(vha,
3218 fcport->loop_id,
3219 fcport->d_id.b.domain,
3220 fcport->d_id.b.area,
3221 fcport->d_id.b.al_pa);
3222
Andrew Vasquezac280b62009-08-20 11:06:05 -07003223 if (IS_ALOGIO_CAPABLE(ha)) {
Andrew Vasquez5ff1d582010-05-04 15:01:26 -07003224 fcport->flags |= FCF_ASYNC_SENT;
Andrew Vasquezac280b62009-08-20 11:06:05 -07003225 data[0] = 0;
3226 data[1] = QLA_LOGIO_LOGIN_RETRIED;
3227 status = qla2x00_post_async_login_work(
3228 vha, fcport, data);
3229 if (status == QLA_SUCCESS)
3230 continue;
3231 /* Attempt a retry. */
3232 status = 1;
3233 } else
3234 status = qla2x00_fabric_login(vha,
3235 fcport, &next_loopid);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003236 } else
3237 status = qla2x00_local_device_login(vha,
3238 fcport);
3239
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003240 if (status == QLA_SUCCESS) {
3241 fcport->old_loop_id = fcport->loop_id;
3242
3243 DEBUG(printk("scsi(%ld): port login OK: logged "
3244 "in ID 0x%x\n", vha->host_no, fcport->loop_id));
3245
3246 qla2x00_update_fcport(vha, fcport);
3247
3248 } else if (status == 1) {
3249 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
3250 /* retry the login again */
3251 DEBUG(printk("scsi(%ld): Retrying"
3252 " %d login again loop_id 0x%x\n",
3253 vha->host_no, fcport->login_retry,
3254 fcport->loop_id));
3255 } else {
3256 fcport->login_retry = 0;
3257 }
3258
3259 if (fcport->login_retry == 0 && status != QLA_SUCCESS)
3260 fcport->loop_id = FC_NO_LOOP_ID;
3261 }
3262 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
3263 break;
3264 }
Andrew Vasquez0971de72008-04-03 13:13:18 -07003265}
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267/**************************************************************************
3268* qla2x00_do_dpc
3269* This kernel thread is a task that is schedule by the interrupt handler
3270* to perform the background processing for interrupts.
3271*
3272* Notes:
3273* This task always run in the context of a kernel thread. It
3274* is kick-off by the driver's detect code and starts up
3275* up one per adapter. It immediately goes to sleep and waits for
3276* some fibre event. When either the interrupt handler or
3277* the timer routine detects a event it will one of the task
3278* bits then wake us up.
3279**************************************************************************/
3280static int
3281qla2x00_do_dpc(void *data)
3282{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003283 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003284 scsi_qla_host_t *base_vha;
3285 struct qla_hw_data *ha;
Seokmann Ju99363ef2008-01-31 12:33:51 -08003286
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003287 ha = (struct qla_hw_data *)data;
3288 base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 set_user_nice(current, -20);
3291
Christoph Hellwig39a11242006-02-14 18:46:22 +01003292 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
3294
Christoph Hellwig39a11242006-02-14 18:46:22 +01003295 set_current_state(TASK_INTERRUPTIBLE);
3296 schedule();
3297 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
3300
3301 /* Initialization not yet finished. Don't do anything yet. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003302 if (!base_vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 continue;
3304
Andrew Vasquez85880802009-12-15 21:29:46 -08003305 if (ha->flags.eeh_busy) {
3306 DEBUG17(qla_printk(KERN_WARNING, ha,
3307 "qla2x00_do_dpc: dpc_flags: %lx\n",
3308 base_vha->dpc_flags));
3309 continue;
3310 }
3311
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003312 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
3314 ha->dpc_active = 1;
3315
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 ha->dpc_active = 0;
3318 continue;
3319 }
3320
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003321 qla2x00_do_work(base_vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07003322
Giridhar Malavalia9083012010-04-12 17:59:55 -07003323 if (IS_QLA82XX(ha)) {
3324 if (test_and_clear_bit(ISP_UNRECOVERABLE,
3325 &base_vha->dpc_flags)) {
3326 qla82xx_idc_lock(ha);
3327 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3328 QLA82XX_DEV_FAILED);
3329 qla82xx_idc_unlock(ha);
3330 qla_printk(KERN_INFO, ha,
3331 "HW State: FAILED\n");
3332 qla82xx_device_state_handler(base_vha);
3333 continue;
3334 }
3335
3336 if (test_and_clear_bit(FCOE_CTX_RESET_NEEDED,
3337 &base_vha->dpc_flags)) {
3338
3339 DEBUG(printk(KERN_INFO
3340 "scsi(%ld): dpc: sched "
3341 "qla82xx_fcoe_ctx_reset ha = %p\n",
3342 base_vha->host_no, ha));
3343 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
3344 &base_vha->dpc_flags))) {
3345 if (qla82xx_fcoe_ctx_reset(base_vha)) {
3346 /* FCoE-ctx reset failed.
3347 * Escalate to chip-reset
3348 */
3349 set_bit(ISP_ABORT_NEEDED,
3350 &base_vha->dpc_flags);
3351 }
3352 clear_bit(ABORT_ISP_ACTIVE,
3353 &base_vha->dpc_flags);
3354 }
3355
3356 DEBUG(printk("scsi(%ld): dpc:"
3357 " qla82xx_fcoe_ctx_reset end\n",
3358 base_vha->host_no));
3359 }
3360 }
3361
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003362 if (test_and_clear_bit(ISP_ABORT_NEEDED,
3363 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
3365 DEBUG(printk("scsi(%ld): dpc: sched "
3366 "qla2x00_abort_isp ha = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003367 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003369 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Giridhar Malavalia9083012010-04-12 17:59:55 -07003371 if (ha->isp_ops->abort_isp(base_vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 /* failed. retry later */
3373 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003374 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003376 clear_bit(ABORT_ISP_ACTIVE,
3377 &base_vha->dpc_flags);
Seokmann Ju99363ef2008-01-31 12:33:51 -08003378 }
3379
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003381 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 }
3383
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003384 if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) {
3385 qla2x00_update_fcports(base_vha);
3386 clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07003387 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08003388
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003389 if (test_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags)) {
3390 DEBUG(printk(KERN_INFO "scsi(%ld): dpc: sched "
3391 "qla2x00_quiesce_needed ha = %p\n",
3392 base_vha->host_no, ha));
3393 qla82xx_device_state_handler(base_vha);
3394 clear_bit(ISP_QUIESCE_NEEDED, &base_vha->dpc_flags);
3395 if (!ha->flags.quiesce_owner) {
3396 qla2x00_perform_loop_resync(base_vha);
3397
3398 qla82xx_idc_lock(ha);
3399 qla82xx_clear_qsnt_ready(base_vha);
3400 qla82xx_idc_unlock(ha);
3401 }
3402 }
3403
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003404 if (test_and_clear_bit(RESET_MARKER_NEEDED,
3405 &base_vha->dpc_flags) &&
3406 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
3408 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003409 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003411 qla2x00_rst_aen(base_vha);
3412 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 }
3414
3415 /* Retry each device up to login retry count */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003416 if ((test_and_clear_bit(RELOGIN_NEEDED,
3417 &base_vha->dpc_flags)) &&
3418 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
3419 atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
3421 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003422 base_vha->host_no));
3423 qla2x00_relogin(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003426 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 }
3428
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003429 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
3430 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
3432 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003433 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003436 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003438 rval = qla2x00_loop_resync(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003440 clear_bit(LOOP_RESYNC_ACTIVE,
3441 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
3443
3444 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003445 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 }
3447
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003448 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
3449 atomic_read(&base_vha->loop_state) == LOOP_READY) {
3450 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
3451 qla2xxx_flash_npiv_conf(base_vha);
Andrew Vasquez272976c2008-09-11 21:22:50 -07003452 }
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07003455 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003457 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
3458 &base_vha->dpc_flags))
3459 ha->isp_ops->beacon_blink(base_vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003460
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003461 qla2x00_do_dpc_all_vps(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003462
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 ha->dpc_active = 0;
3464 } /* End of while(1) */
3465
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003466 DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
3468 /*
3469 * Make sure that nobody tries to wake us up again.
3470 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 ha->dpc_active = 0;
3472
Andrew Vasquezac280b62009-08-20 11:06:05 -07003473 /* Cleanup any residual CTX SRBs. */
3474 qla2x00_abort_all_cmds(base_vha, DID_NO_CONNECT << 16);
3475
Christoph Hellwig39a11242006-02-14 18:46:22 +01003476 return 0;
3477}
3478
3479void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003480qla2xxx_wake_dpc(struct scsi_qla_host *vha)
Christoph Hellwig39a11242006-02-14 18:46:22 +01003481{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003482 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07003483 struct task_struct *t = ha->dpc_thread;
3484
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003485 if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07003486 wake_up_process(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487}
3488
3489/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490* qla2x00_rst_aen
3491* Processes asynchronous reset.
3492*
3493* Input:
3494* ha = adapter block pointer.
3495*/
3496static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003497qla2x00_rst_aen(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003499 if (vha->flags.online && !vha->flags.reset_active &&
3500 !atomic_read(&vha->loop_down_timer) &&
3501 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003503 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
3505 /*
3506 * Issue marker command only when we are going to start
3507 * the I/O.
3508 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003509 vha->marker_needed = 1;
3510 } while (!atomic_read(&vha->loop_down_timer) &&
3511 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 }
3513}
3514
f4f051e2005-04-17 15:02:26 -05003515static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003516qla2x00_sp_free_dma(srb_t *sp)
f4f051e2005-04-17 15:02:26 -05003517{
3518 struct scsi_cmnd *cmd = sp->cmd;
Arun Easibad75002010-05-04 15:01:30 -07003519 struct qla_hw_data *ha = sp->fcport->vha->hw;
f4f051e2005-04-17 15:02:26 -05003520
3521 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09003522 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05003523 sp->flags &= ~SRB_DMA_VALID;
3524 }
Arun Easibad75002010-05-04 15:01:30 -07003525
3526 if (sp->flags & SRB_CRC_PROT_DMA_VALID) {
3527 dma_unmap_sg(&ha->pdev->dev, scsi_prot_sglist(cmd),
3528 scsi_prot_sg_count(cmd), cmd->sc_data_direction);
3529 sp->flags &= ~SRB_CRC_PROT_DMA_VALID;
3530 }
3531
3532 if (sp->flags & SRB_CRC_CTX_DSD_VALID) {
3533 /* List assured to be having elements */
3534 qla2x00_clean_dsd_pool(ha, sp);
3535 sp->flags &= ~SRB_CRC_CTX_DSD_VALID;
3536 }
3537
3538 if (sp->flags & SRB_CRC_CTX_DMA_VALID) {
3539 dma_pool_free(ha->dl_dma_pool, sp->ctx,
3540 ((struct crc_context *)sp->ctx)->crc_ctx_dma);
3541 sp->flags &= ~SRB_CRC_CTX_DMA_VALID;
3542 }
3543
Andrew Vasquezfca29702005-07-06 10:31:47 -07003544 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05003545}
3546
Andrew Vasquez3dbe7562010-07-23 15:28:37 +05003547static void
Giridhar Malavali083a4692010-05-28 15:08:18 -07003548qla2x00_sp_final_compl(struct qla_hw_data *ha, srb_t *sp)
f4f051e2005-04-17 15:02:26 -05003549{
3550 struct scsi_cmnd *cmd = sp->cmd;
3551
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003552 qla2x00_sp_free_dma(sp);
f4f051e2005-04-17 15:02:26 -05003553
Giridhar Malavalia9083012010-04-12 17:59:55 -07003554 if (sp->flags & SRB_FCP_CMND_DMA_VALID) {
3555 struct ct6_dsd *ctx = sp->ctx;
3556 dma_pool_free(ha->fcp_cmnd_dma_pool, ctx->fcp_cmnd,
3557 ctx->fcp_cmnd_dma);
3558 list_splice(&ctx->dsd_list, &ha->gbl_dsd_list);
3559 ha->gbl_dsd_inuse -= ctx->dsd_use_cnt;
3560 ha->gbl_dsd_avail += ctx->dsd_use_cnt;
3561 mempool_free(sp->ctx, ha->ctx_mempool);
3562 sp->ctx = NULL;
3563 }
f4f051e2005-04-17 15:02:26 -05003564
Giridhar Malavalia9083012010-04-12 17:59:55 -07003565 mempool_free(sp, ha->srb_mempool);
f4f051e2005-04-17 15:02:26 -05003566 cmd->scsi_done(cmd);
3567}
bdf79622005-04-17 15:06:53 -05003568
Giridhar Malavali083a4692010-05-28 15:08:18 -07003569void
3570qla2x00_sp_compl(struct qla_hw_data *ha, srb_t *sp)
3571{
3572 if (atomic_read(&sp->ref_count) == 0) {
3573 DEBUG2(qla_printk(KERN_WARNING, ha,
3574 "SP reference-count to ZERO -- sp=%p\n", sp));
3575 DEBUG2(BUG());
3576 return;
3577 }
3578 if (!atomic_dec_and_test(&sp->ref_count))
3579 return;
3580 qla2x00_sp_final_compl(ha, sp);
3581}
3582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583/**************************************************************************
3584* qla2x00_timer
3585*
3586* Description:
3587* One second timer
3588*
3589* Context: Interrupt
3590***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003591void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003592qla2x00_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 unsigned long cpu_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 int start_dpc = 0;
3596 int index;
3597 srb_t *sp;
Andrew Vasquez85880802009-12-15 21:29:46 -08003598 uint16_t w;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003599 struct qla_hw_data *ha = vha->hw;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003600 struct req_que *req;
Andrew Vasquez85880802009-12-15 21:29:46 -08003601
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003602 if (ha->flags.eeh_busy) {
3603 qla2x00_restart_timer(vha, WATCH_INTERVAL);
3604 return;
3605 }
3606
Andrew Vasquez85880802009-12-15 21:29:46 -08003607 /* Hardware read to raise pending EEH errors during mailbox waits. */
3608 if (!pci_channel_offline(ha->pdev))
3609 pci_read_config_word(ha->pdev, PCI_VENDOR_ID, &w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Saurav Kashyap579d12b2010-12-21 16:00:14 -08003611 if (IS_QLA82XX(ha)) {
3612 if (test_bit(ISP_QUIESCE_NEEDED, &vha->dpc_flags))
3613 start_dpc++;
3614 qla82xx_watchdog(vha);
3615 }
3616
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 /* Loop down handler. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003618 if (atomic_read(&vha->loop_down_timer) > 0 &&
3619 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
3620 && vha->flags.online) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003622 if (atomic_read(&vha->loop_down_timer) ==
3623 vha->loop_down_abort_time) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
3626 "queues before time expire\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003627 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003629 if (!IS_QLA2100(ha) && vha->link_down_timeout)
3630 atomic_set(&vha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003632 /*
3633 * Schedule an ISP abort to return any FCP2-device
3634 * commands.
3635 */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003636 /* NPIV - scan physical port only */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003637 if (!vha->vp_idx) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003638 spin_lock_irqsave(&ha->hardware_lock,
3639 cpu_flags);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08003640 req = ha->req_q_map[0];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003641 for (index = 1;
3642 index < MAX_OUTSTANDING_COMMANDS;
3643 index++) {
3644 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05003645
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003646 sp = req->outstanding_cmds[index];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003647 if (!sp)
3648 continue;
Arun Easibad75002010-05-04 15:01:30 -07003649 if (sp->ctx && !IS_PROT_IO(sp))
Andrew Vasquezcf53b062009-08-20 11:06:04 -07003650 continue;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003651 sfcp = sp->fcport;
Andrew Vasquezf08b7252010-01-12 12:59:48 -08003652 if (!(sfcp->flags & FCF_FCP2_DEVICE))
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003653 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003655 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003656 &vha->dpc_flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003657 break;
3658 }
3659 spin_unlock_irqrestore(&ha->hardware_lock,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003660 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 start_dpc++;
3663 }
3664
3665 /* if the loop has been down for 4 minutes, reinit adapter */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003666 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07003667 if (!(vha->device_flags & DFLG_NO_CABLE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 DEBUG(printk("scsi(%ld): Loop down - "
3669 "aborting ISP.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003670 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 qla_printk(KERN_WARNING, ha,
3672 "Loop down - aborting ISP.\n");
3673
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003674 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 }
3676 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07003677 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003678 vha->host_no,
3679 atomic_read(&vha->loop_down_timer)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 }
3681
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003682 /* Check if beacon LED needs to be blinked */
3683 if (ha->beacon_blink_led == 1) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003684 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08003685 start_dpc++;
3686 }
3687
Andrew Vasquez550bf572008-04-24 15:21:23 -07003688 /* Process any deferred work. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003689 if (!list_empty(&vha->work_list))
Andrew Vasquez550bf572008-04-24 15:21:23 -07003690 start_dpc++;
3691
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 /* Schedule the DPC routine if needed */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003693 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
3694 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
3695 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 start_dpc ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003697 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
3698 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
Giridhar Malavalia9083012010-04-12 17:59:55 -07003699 test_bit(ISP_UNRECOVERABLE, &vha->dpc_flags) ||
3700 test_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags) ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003701 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
3702 test_bit(RELOGIN_NEEDED, &vha->dpc_flags)))
3703 qla2xxx_wake_dpc(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003705 qla2x00_restart_timer(vha, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706}
3707
Andrew Vasquez54333832005-11-09 15:49:04 -08003708/* Firmware interface routines. */
3709
Giridhar Malavalia9083012010-04-12 17:59:55 -07003710#define FW_BLOBS 8
Andrew Vasquez54333832005-11-09 15:49:04 -08003711#define FW_ISP21XX 0
3712#define FW_ISP22XX 1
3713#define FW_ISP2300 2
3714#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003715#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003716#define FW_ISP25XX 5
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003717#define FW_ISP81XX 6
Giridhar Malavalia9083012010-04-12 17:59:55 -07003718#define FW_ISP82XX 7
Andrew Vasquez54333832005-11-09 15:49:04 -08003719
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003720#define FW_FILE_ISP21XX "ql2100_fw.bin"
3721#define FW_FILE_ISP22XX "ql2200_fw.bin"
3722#define FW_FILE_ISP2300 "ql2300_fw.bin"
3723#define FW_FILE_ISP2322 "ql2322_fw.bin"
3724#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003725#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003726#define FW_FILE_ISP81XX "ql8100_fw.bin"
Giridhar Malavalia9083012010-04-12 17:59:55 -07003727#define FW_FILE_ISP82XX "ql8200_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003728
Daniel Walkere1e82b62008-05-12 22:21:10 -07003729static DEFINE_MUTEX(qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003730
3731static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003732 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
3733 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
3734 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
3735 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
3736 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003737 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003738 { .name = FW_FILE_ISP81XX, },
Giridhar Malavalia9083012010-04-12 17:59:55 -07003739 { .name = FW_FILE_ISP82XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08003740};
3741
3742struct fw_blob *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003743qla2x00_request_firmware(scsi_qla_host_t *vha)
Andrew Vasquez54333832005-11-09 15:49:04 -08003744{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003745 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez54333832005-11-09 15:49:04 -08003746 struct fw_blob *blob;
3747
3748 blob = NULL;
3749 if (IS_QLA2100(ha)) {
3750 blob = &qla_fw_blobs[FW_ISP21XX];
3751 } else if (IS_QLA2200(ha)) {
3752 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003753 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003754 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08003755 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003756 blob = &qla_fw_blobs[FW_ISP2322];
Harihara Kadayam4d4df192008-04-03 13:13:26 -07003757 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08003758 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07003759 } else if (IS_QLA25XX(ha)) {
3760 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08003761 } else if (IS_QLA81XX(ha)) {
3762 blob = &qla_fw_blobs[FW_ISP81XX];
Giridhar Malavalia9083012010-04-12 17:59:55 -07003763 } else if (IS_QLA82XX(ha)) {
3764 blob = &qla_fw_blobs[FW_ISP82XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08003765 }
3766
Daniel Walkere1e82b62008-05-12 22:21:10 -07003767 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003768 if (blob->fw)
3769 goto out;
3770
3771 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
3772 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003773 "(%s).\n", vha->host_no, blob->name));
Andrew Vasquez54333832005-11-09 15:49:04 -08003774 blob->fw = NULL;
3775 blob = NULL;
3776 goto out;
3777 }
3778
3779out:
Daniel Walkere1e82b62008-05-12 22:21:10 -07003780 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003781 return blob;
3782}
3783
3784static void
3785qla2x00_release_firmware(void)
3786{
3787 int idx;
3788
Daniel Walkere1e82b62008-05-12 22:21:10 -07003789 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003790 for (idx = 0; idx < FW_BLOBS; idx++)
3791 if (qla_fw_blobs[idx].fw)
3792 release_firmware(qla_fw_blobs[idx].fw);
Daniel Walkere1e82b62008-05-12 22:21:10 -07003793 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08003794}
3795
Seokmann Ju14e660e2007-09-20 14:07:36 -07003796static pci_ers_result_t
3797qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
3798{
Andrew Vasquez85880802009-12-15 21:29:46 -08003799 scsi_qla_host_t *vha = pci_get_drvdata(pdev);
3800 struct qla_hw_data *ha = vha->hw;
3801
3802 DEBUG2(qla_printk(KERN_WARNING, ha, "error_detected:state %x\n",
3803 state));
Seokmann Jub9b12f72009-03-24 09:08:18 -07003804
Seokmann Ju14e660e2007-09-20 14:07:36 -07003805 switch (state) {
3806 case pci_channel_io_normal:
Andrew Vasquez85880802009-12-15 21:29:46 -08003807 ha->flags.eeh_busy = 0;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003808 return PCI_ERS_RESULT_CAN_RECOVER;
3809 case pci_channel_io_frozen:
Andrew Vasquez85880802009-12-15 21:29:46 -08003810 ha->flags.eeh_busy = 1;
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003811 /* For ISP82XX complete any pending mailbox cmd */
3812 if (IS_QLA82XX(ha)) {
3813 ha->flags.fw_hung = 1;
3814 if (ha->flags.mbox_busy) {
3815 ha->flags.mbox_int = 1;
3816 DEBUG2(qla_printk(KERN_ERR, ha,
3817 "Due to pci channel io frozen, doing premature "
3818 "completion of mbx command\n"));
3819 complete(&ha->mbx_intr_comp);
3820 }
3821 }
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003822 qla2x00_free_irqs(vha);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003823 pci_disable_device(pdev);
Lalit Chandivadebddd2d62010-09-03 15:20:53 -07003824 /* Return back all IOs */
3825 qla2x00_abort_all_cmds(vha, DID_RESET << 16);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003826 return PCI_ERS_RESULT_NEED_RESET;
3827 case pci_channel_io_perm_failure:
Andrew Vasquez85880802009-12-15 21:29:46 -08003828 ha->flags.pci_channel_io_perm_failure = 1;
3829 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003830 return PCI_ERS_RESULT_DISCONNECT;
3831 }
3832 return PCI_ERS_RESULT_NEED_RESET;
3833}
3834
3835static pci_ers_result_t
3836qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
3837{
3838 int risc_paused = 0;
3839 uint32_t stat;
3840 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003841 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
3842 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003843 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
3844 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
3845
Saurav Kashyapbcc5b6d2010-09-03 15:20:57 -07003846 if (IS_QLA82XX(ha))
3847 return PCI_ERS_RESULT_RECOVERED;
3848
Seokmann Ju14e660e2007-09-20 14:07:36 -07003849 spin_lock_irqsave(&ha->hardware_lock, flags);
3850 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
3851 stat = RD_REG_DWORD(&reg->hccr);
3852 if (stat & HCCR_RISC_PAUSE)
3853 risc_paused = 1;
3854 } else if (IS_QLA23XX(ha)) {
3855 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
3856 if (stat & HSR_RISC_PAUSED)
3857 risc_paused = 1;
3858 } else if (IS_FWI2_CAPABLE(ha)) {
3859 stat = RD_REG_DWORD(&reg24->host_status);
3860 if (stat & HSRX_RISC_PAUSED)
3861 risc_paused = 1;
3862 }
3863 spin_unlock_irqrestore(&ha->hardware_lock, flags);
3864
3865 if (risc_paused) {
3866 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
3867 "Dumping firmware!\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003868 ha->isp_ops->fw_dump(base_vha, 0);
Seokmann Ju14e660e2007-09-20 14:07:36 -07003869
3870 return PCI_ERS_RESULT_NEED_RESET;
3871 } else
3872 return PCI_ERS_RESULT_RECOVERED;
3873}
3874
Lalit Chandivadea5b36322010-09-03 15:20:50 -07003875uint32_t qla82xx_error_recovery(scsi_qla_host_t *base_vha)
3876{
3877 uint32_t rval = QLA_FUNCTION_FAILED;
3878 uint32_t drv_active = 0;
3879 struct qla_hw_data *ha = base_vha->hw;
3880 int fn;
3881 struct pci_dev *other_pdev = NULL;
3882
3883 DEBUG17(qla_printk(KERN_INFO, ha,
3884 "scsi(%ld): In qla82xx_error_recovery\n", base_vha->host_no));
3885
3886 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
3887
3888 if (base_vha->flags.online) {
3889 /* Abort all outstanding commands,
3890 * so as to be requeued later */
3891 qla2x00_abort_isp_cleanup(base_vha);
3892 }
3893
3894
3895 fn = PCI_FUNC(ha->pdev->devfn);
3896 while (fn > 0) {
3897 fn--;
3898 DEBUG17(qla_printk(KERN_INFO, ha,
3899 "Finding pci device at function = 0x%x\n", fn));
3900 other_pdev =
3901 pci_get_domain_bus_and_slot(pci_domain_nr(ha->pdev->bus),
3902 ha->pdev->bus->number, PCI_DEVFN(PCI_SLOT(ha->pdev->devfn),
3903 fn));
3904
3905 if (!other_pdev)
3906 continue;
3907 if (atomic_read(&other_pdev->enable_cnt)) {
3908 DEBUG17(qla_printk(KERN_INFO, ha,
3909 "Found PCI func availabe and enabled at 0x%x\n",
3910 fn));
3911 pci_dev_put(other_pdev);
3912 break;
3913 }
3914 pci_dev_put(other_pdev);
3915 }
3916
3917 if (!fn) {
3918 /* Reset owner */
3919 DEBUG17(qla_printk(KERN_INFO, ha,
3920 "This devfn is reset owner = 0x%x\n", ha->pdev->devfn));
3921 qla82xx_idc_lock(ha);
3922
3923 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3924 QLA82XX_DEV_INITIALIZING);
3925
3926 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_IDC_VERSION,
3927 QLA82XX_IDC_VERSION);
3928
3929 drv_active = qla82xx_rd_32(ha, QLA82XX_CRB_DRV_ACTIVE);
3930 DEBUG17(qla_printk(KERN_INFO, ha,
3931 "drv_active = 0x%x\n", drv_active));
3932
3933 qla82xx_idc_unlock(ha);
3934 /* Reset if device is not already reset
3935 * drv_active would be 0 if a reset has already been done
3936 */
3937 if (drv_active)
3938 rval = qla82xx_start_firmware(base_vha);
3939 else
3940 rval = QLA_SUCCESS;
3941 qla82xx_idc_lock(ha);
3942
3943 if (rval != QLA_SUCCESS) {
3944 qla_printk(KERN_INFO, ha, "HW State: FAILED\n");
3945 qla82xx_clear_drv_active(ha);
3946 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3947 QLA82XX_DEV_FAILED);
3948 } else {
3949 qla_printk(KERN_INFO, ha, "HW State: READY\n");
3950 qla82xx_wr_32(ha, QLA82XX_CRB_DEV_STATE,
3951 QLA82XX_DEV_READY);
3952 qla82xx_idc_unlock(ha);
3953 ha->flags.fw_hung = 0;
3954 rval = qla82xx_restart_isp(base_vha);
3955 qla82xx_idc_lock(ha);
3956 /* Clear driver state register */
3957 qla82xx_wr_32(ha, QLA82XX_CRB_DRV_STATE, 0);
3958 qla82xx_set_drv_active(base_vha);
3959 }
3960 qla82xx_idc_unlock(ha);
3961 } else {
3962 DEBUG17(qla_printk(KERN_INFO, ha,
3963 "This devfn is not reset owner = 0x%x\n", ha->pdev->devfn));
3964 if ((qla82xx_rd_32(ha, QLA82XX_CRB_DEV_STATE) ==
3965 QLA82XX_DEV_READY)) {
3966 ha->flags.fw_hung = 0;
3967 rval = qla82xx_restart_isp(base_vha);
3968 qla82xx_idc_lock(ha);
3969 qla82xx_set_drv_active(base_vha);
3970 qla82xx_idc_unlock(ha);
3971 }
3972 }
3973 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
3974
3975 return rval;
3976}
3977
Seokmann Ju14e660e2007-09-20 14:07:36 -07003978static pci_ers_result_t
3979qla2xxx_pci_slot_reset(struct pci_dev *pdev)
3980{
3981 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08003982 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
3983 struct qla_hw_data *ha = base_vha->hw;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003984 struct rsp_que *rsp;
3985 int rc, retries = 10;
Seokmann Ju14e660e2007-09-20 14:07:36 -07003986
Andrew Vasquez85880802009-12-15 21:29:46 -08003987 DEBUG17(qla_printk(KERN_WARNING, ha, "slot_reset\n"));
3988
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08003989 /* Workaround: qla2xxx driver which access hardware earlier
3990 * needs error state to be pci_channel_io_online.
3991 * Otherwise mailbox command timesout.
3992 */
3993 pdev->error_state = pci_channel_io_normal;
3994
3995 pci_restore_state(pdev);
3996
Richard Lary8c1496b2010-02-18 10:07:29 -08003997 /* pci_restore_state() clears the saved_state flag of the device
3998 * save restored state which resets saved_state flag
3999 */
4000 pci_save_state(pdev);
4001
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11004002 if (ha->mem_only)
4003 rc = pci_enable_device_mem(pdev);
4004 else
4005 rc = pci_enable_device(pdev);
4006
4007 if (rc) {
Seokmann Ju14e660e2007-09-20 14:07:36 -07004008 qla_printk(KERN_WARNING, ha,
4009 "Can't re-enable PCI device after reset.\n");
Lalit Chandivadea5b36322010-09-03 15:20:50 -07004010 goto exit_slot_reset;
Seokmann Ju14e660e2007-09-20 14:07:36 -07004011 }
Seokmann Ju14e660e2007-09-20 14:07:36 -07004012
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08004013 rsp = ha->rsp_q_map[0];
4014 if (qla2x00_request_irqs(ha, rsp))
Lalit Chandivadea5b36322010-09-03 15:20:50 -07004015 goto exit_slot_reset;
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08004016
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004017 if (ha->isp_ops->pci_config(base_vha))
Lalit Chandivadea5b36322010-09-03 15:20:50 -07004018 goto exit_slot_reset;
4019
4020 if (IS_QLA82XX(ha)) {
4021 if (qla82xx_error_recovery(base_vha) == QLA_SUCCESS) {
4022 ret = PCI_ERS_RESULT_RECOVERED;
4023 goto exit_slot_reset;
4024 } else
4025 goto exit_slot_reset;
4026 }
Seokmann Ju14e660e2007-09-20 14:07:36 -07004027
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08004028 while (ha->flags.mbox_busy && retries--)
4029 msleep(1000);
Andrew Vasquez85880802009-12-15 21:29:46 -08004030
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004031 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004032 if (ha->isp_ops->abort_isp(base_vha) == QLA_SUCCESS)
Seokmann Ju14e660e2007-09-20 14:07:36 -07004033 ret = PCI_ERS_RESULT_RECOVERED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004034 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Seokmann Ju14e660e2007-09-20 14:07:36 -07004035
Joe Carnuccio90a86fc2010-01-12 13:02:46 -08004036
Lalit Chandivadea5b36322010-09-03 15:20:50 -07004037exit_slot_reset:
Andrew Vasquez85880802009-12-15 21:29:46 -08004038 DEBUG17(qla_printk(KERN_WARNING, ha,
4039 "slot_reset-return:ret=%x\n", ret));
4040
Seokmann Ju14e660e2007-09-20 14:07:36 -07004041 return ret;
4042}
4043
4044static void
4045qla2xxx_pci_resume(struct pci_dev *pdev)
4046{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004047 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
4048 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07004049 int ret;
4050
Andrew Vasquez85880802009-12-15 21:29:46 -08004051 DEBUG17(qla_printk(KERN_WARNING, ha, "pci_resume\n"));
4052
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08004053 ret = qla2x00_wait_for_hba_online(base_vha);
Seokmann Ju14e660e2007-09-20 14:07:36 -07004054 if (ret != QLA_SUCCESS) {
4055 qla_printk(KERN_ERR, ha,
4056 "the device failed to resume I/O "
4057 "from slot/link_reset");
4058 }
Andrew Vasquez85880802009-12-15 21:29:46 -08004059
Lalit Chandivade3e46f032010-05-04 15:01:23 -07004060 pci_cleanup_aer_uncorrect_error_status(pdev);
4061
Andrew Vasquez85880802009-12-15 21:29:46 -08004062 ha->flags.eeh_busy = 0;
Seokmann Ju14e660e2007-09-20 14:07:36 -07004063}
4064
4065static struct pci_error_handlers qla2xxx_err_handler = {
4066 .error_detected = qla2xxx_pci_error_detected,
4067 .mmio_enabled = qla2xxx_pci_mmio_enabled,
4068 .slot_reset = qla2xxx_pci_slot_reset,
4069 .resume = qla2xxx_pci_resume,
4070};
4071
Andrew Vasquez54333832005-11-09 15:49:04 -08004072static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07004073 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
4074 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
4075 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
4076 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
4077 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
4078 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
4079 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
4080 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
4081 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
Harihara Kadayam4d4df192008-04-03 13:13:26 -07004082 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
Andrew Vasquez47f5e062006-05-17 15:09:39 -07004083 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
4084 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07004085 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08004086 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8001) },
Giridhar Malavalia9083012010-04-12 17:59:55 -07004087 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8021) },
Andrew Vasquez54333832005-11-09 15:49:04 -08004088 { 0 },
4089};
4090MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
4091
Andrew Vasquezfca29702005-07-06 10:31:47 -07004092static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07004093 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06004094 .driver = {
4095 .owner = THIS_MODULE,
4096 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07004097 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004098 .probe = qla2x00_probe_one,
Adrian Bunk4c993f72008-01-14 00:55:16 -08004099 .remove = qla2x00_remove_one,
Madhuranath Iyengare30d1752010-10-15 11:27:46 -07004100 .shutdown = qla2x00_shutdown,
Seokmann Ju14e660e2007-09-20 14:07:36 -07004101 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07004102};
4103
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004104static struct file_operations apidev_fops = {
4105 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +02004106 .llseek = noop_llseek,
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004107};
4108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109/**
4110 * qla2x00_module_init - Module initialization.
4111 **/
4112static int __init
4113qla2x00_module_init(void)
4114{
Andrew Vasquezfca29702005-07-06 10:31:47 -07004115 int ret = 0;
4116
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04004118 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09004119 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 if (srb_cachep == NULL) {
4121 printk(KERN_ERR
4122 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
4123 return -ENOMEM;
4124 }
4125
4126 /* Derive version string. */
4127 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07004128 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07004129 strcat(qla2x00_version_str, "-debug");
4130
Andrew Vasquez1c97a122005-04-21 16:13:36 -04004131 qla2xxx_transport_template =
4132 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004133 if (!qla2xxx_transport_template) {
4134 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004136 }
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004137
4138 apidev_major = register_chrdev(0, QLA2XXX_APIDEV, &apidev_fops);
4139 if (apidev_major < 0) {
4140 printk(KERN_WARNING "qla2xxx: Unable to register char device "
4141 "%s\n", QLA2XXX_APIDEV);
4142 }
4143
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004144 qla2xxx_transport_vport_template =
4145 fc_attach_transport(&qla2xxx_transport_vport_functions);
4146 if (!qla2xxx_transport_vport_template) {
4147 kmem_cache_destroy(srb_cachep);
4148 fc_release_transport(qla2xxx_transport_template);
4149 return -ENODEV;
4150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151
Andrew Vasquezfd9a29f02008-05-12 22:21:08 -07004152 printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
4153 qla2x00_version_str);
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004154 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07004155 if (ret) {
4156 kmem_cache_destroy(srb_cachep);
4157 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004158 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07004159 }
4160 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161}
4162
4163/**
4164 * qla2x00_module_exit - Module cleanup.
4165 **/
4166static void __exit
4167qla2x00_module_exit(void)
4168{
Harish Zunjarrao6a03b4c2010-05-04 15:01:24 -07004169 unregister_chrdev(apidev_major, QLA2XXX_APIDEV);
Andrew Vasquez7ee61392006-06-23 16:11:22 -07004170 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08004171 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04004172 kmem_cache_destroy(srb_cachep);
Giridhar Malavalia9083012010-04-12 17:59:55 -07004173 if (ctx_cachep)
4174 kmem_cache_destroy(ctx_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004176 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177}
4178
4179module_init(qla2x00_module_init);
4180module_exit(qla2x00_module_exit);
4181
4182MODULE_AUTHOR("QLogic Corporation");
4183MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
4184MODULE_LICENSE("GPL");
4185MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07004186MODULE_FIRMWARE(FW_FILE_ISP21XX);
4187MODULE_FIRMWARE(FW_FILE_ISP22XX);
4188MODULE_FIRMWARE(FW_FILE_ISP2300);
4189MODULE_FIRMWARE(FW_FILE_ISP2322);
4190MODULE_FIRMWARE(FW_FILE_ISP24XX);
Andrew Vasquez61623fc2008-01-31 12:33:45 -08004191MODULE_FIRMWARE(FW_FILE_ISP25XX);