scsi: qla2xxx: Utilize pci_alloc_irq_vectors/pci_free_irq_vectors calls.
[linux-2.6-block.git] / drivers / scsi / qla2xxx / qla_mid.c
CommitLineData
2c3dfe3f 1/*
01e58d8e 2 * QLogic Fibre Channel HBA Driver
bd21eaf9 3 * Copyright (c) 2003-2014 QLogic Corporation
2c3dfe3f 4 *
01e58d8e 5 * See LICENSE.qla2xxx for copyright and licensing details.
2c3dfe3f
SJ
6 */
7#include "qla_def.h"
7b867cf7 8#include "qla_gbl.h"
2d70c103 9#include "qla_target.h"
2c3dfe3f 10
2c3dfe3f
SJ
11#include <linux/moduleparam.h>
12#include <linux/vmalloc.h>
5a0e3ad6 13#include <linux/slab.h>
2c3dfe3f
SJ
14#include <linux/list.h>
15
16#include <scsi/scsi_tcq.h>
17#include <scsi/scsicam.h>
18#include <linux/delay.h>
19
2c3dfe3f
SJ
20void
21qla2x00_vp_stop_timer(scsi_qla_host_t *vha)
22{
7b867cf7 23 if (vha->vp_idx && vha->timer_active) {
2c3dfe3f
SJ
24 del_timer_sync(&vha->timer);
25 vha->timer_active = 0;
26 }
27}
28
a824ebb3 29static uint32_t
2c3dfe3f
SJ
30qla24xx_allocate_vp_id(scsi_qla_host_t *vha)
31{
32 uint32_t vp_id;
7b867cf7 33 struct qla_hw_data *ha = vha->hw;
feafb7b1 34 unsigned long flags;
2c3dfe3f
SJ
35
36 /* Find an empty slot and assign an vp_id */
6c2f527c 37 mutex_lock(&ha->vport_lock);
eb66dc60
AV
38 vp_id = find_first_zero_bit(ha->vp_idx_map, ha->max_npiv_vports + 1);
39 if (vp_id > ha->max_npiv_vports) {
7c3df132
SK
40 ql_dbg(ql_dbg_vport, vha, 0xa000,
41 "vp_id %d is bigger than max-supported %d.\n",
42 vp_id, ha->max_npiv_vports);
6c2f527c 43 mutex_unlock(&ha->vport_lock);
2c3dfe3f
SJ
44 return vp_id;
45 }
46
eb66dc60 47 set_bit(vp_id, ha->vp_idx_map);
2c3dfe3f
SJ
48 ha->num_vhosts++;
49 vha->vp_idx = vp_id;
feafb7b1
AE
50
51 spin_lock_irqsave(&ha->vport_slock, flags);
7b867cf7 52 list_add_tail(&vha->list, &ha->vp_list);
2d70c103
NB
53
54 qlt_update_vp_map(vha, SET_VP_IDX);
55
feafb7b1
AE
56 spin_unlock_irqrestore(&ha->vport_slock, flags);
57
6c2f527c 58 mutex_unlock(&ha->vport_lock);
2c3dfe3f
SJ
59 return vp_id;
60}
61
62void
63qla24xx_deallocate_vp_id(scsi_qla_host_t *vha)
64{
65 uint16_t vp_id;
7b867cf7 66 struct qla_hw_data *ha = vha->hw;
feafb7b1 67 unsigned long flags = 0;
2c3dfe3f 68
6c2f527c 69 mutex_lock(&ha->vport_lock);
feafb7b1
AE
70 /*
71 * Wait for all pending activities to finish before removing vport from
72 * the list.
73 * Lock needs to be held for safe removal from the list (it
74 * ensures no active vp_list traversal while the vport is removed
75 * from the queue)
76 */
77 spin_lock_irqsave(&ha->vport_slock, flags);
78 while (atomic_read(&vha->vref_count)) {
79 spin_unlock_irqrestore(&ha->vport_slock, flags);
80
81 msleep(500);
82
83 spin_lock_irqsave(&ha->vport_slock, flags);
84 }
85 list_del(&vha->list);
2d70c103 86 qlt_update_vp_map(vha, RESET_VP_IDX);
feafb7b1
AE
87 spin_unlock_irqrestore(&ha->vport_slock, flags);
88
2c3dfe3f
SJ
89 vp_id = vha->vp_idx;
90 ha->num_vhosts--;
eb66dc60 91 clear_bit(vp_id, ha->vp_idx_map);
feafb7b1 92
6c2f527c 93 mutex_unlock(&ha->vport_lock);
2c3dfe3f
SJ
94}
95
a824ebb3 96static scsi_qla_host_t *
7b867cf7 97qla24xx_find_vhost_by_name(struct qla_hw_data *ha, uint8_t *port_name)
2c3dfe3f
SJ
98{
99 scsi_qla_host_t *vha;
ee546b6e 100 struct scsi_qla_host *tvha;
feafb7b1 101 unsigned long flags;
2c3dfe3f 102
feafb7b1 103 spin_lock_irqsave(&ha->vport_slock, flags);
2c3dfe3f 104 /* Locate matching device in database. */
ee546b6e 105 list_for_each_entry_safe(vha, tvha, &ha->vp_list, list) {
feafb7b1
AE
106 if (!memcmp(port_name, vha->port_name, WWN_SIZE)) {
107 spin_unlock_irqrestore(&ha->vport_slock, flags);
2c3dfe3f 108 return vha;
feafb7b1 109 }
2c3dfe3f 110 }
feafb7b1 111 spin_unlock_irqrestore(&ha->vport_slock, flags);
2c3dfe3f
SJ
112 return NULL;
113}
114
115/*
116 * qla2x00_mark_vp_devices_dead
117 * Updates fcport state when device goes offline.
118 *
119 * Input:
120 * ha = adapter block pointer.
121 * fcport = port structure pointer.
122 *
123 * Return:
124 * None.
125 *
126 * Context:
127 */
26ff776d 128static void
2c3dfe3f
SJ
129qla2x00_mark_vp_devices_dead(scsi_qla_host_t *vha)
130{
feafb7b1
AE
131 /*
132 * !!! NOTE !!!
133 * This function, if called in contexts other than vp create, disable
134 * or delete, please make sure this is synchronized with the
135 * delete thread.
136 */
2c3dfe3f 137 fc_port_t *fcport;
2c3dfe3f 138
7b867cf7 139 list_for_each_entry(fcport, &vha->vp_fcports, list) {
7c3df132
SK
140 ql_dbg(ql_dbg_vport, vha, 0xa001,
141 "Marking port dead, loop_id=0x%04x : %x.\n",
c6d39e23 142 fcport->loop_id, fcport->vha->vp_idx);
2c3dfe3f 143
2c3dfe3f 144 qla2x00_mark_device_lost(vha, fcport, 0, 0);
ec426e10 145 qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
2c3dfe3f
SJ
146 }
147}
148
149int
150qla24xx_disable_vp(scsi_qla_host_t *vha)
151{
29c08cda 152 unsigned long flags;
2c3dfe3f
SJ
153 int ret;
154
155 ret = qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
156 atomic_set(&vha->loop_state, LOOP_DOWN);
157 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
158
2d70c103 159 /* Remove port id from vp target map */
29c08cda 160 spin_lock_irqsave(&vha->hw->vport_slock, flags);
2d70c103 161 qlt_update_vp_map(vha, RESET_AL_PA);
29c08cda 162 spin_unlock_irqrestore(&vha->hw->vport_slock, flags);
2d70c103 163
2c3dfe3f
SJ
164 qla2x00_mark_vp_devices_dead(vha);
165 atomic_set(&vha->vp_state, VP_FAILED);
166 vha->flags.management_server_logged_in = 0;
167 if (ret == QLA_SUCCESS) {
168 fc_vport_set_state(vha->fc_vport, FC_VPORT_DISABLED);
169 } else {
170 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
171 return -1;
172 }
173 return 0;
174}
175
176int
177qla24xx_enable_vp(scsi_qla_host_t *vha)
178{
179 int ret;
7b867cf7
AC
180 struct qla_hw_data *ha = vha->hw;
181 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
2c3dfe3f
SJ
182
183 /* Check if physical ha port is Up */
7b867cf7 184 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
3f3b6f98
LC
185 atomic_read(&base_vha->loop_state) == LOOP_DEAD ||
186 !(ha->current_topology & ISP_CFG_F)) {
2c3dfe3f
SJ
187 vha->vp_err_state = VP_ERR_PORTDWN;
188 fc_vport_set_state(vha->fc_vport, FC_VPORT_LINKDOWN);
189 goto enable_failed;
190 }
191
192 /* Initialize the new vport unless it is a persistent port */
6c2f527c 193 mutex_lock(&ha->vport_lock);
2c3dfe3f 194 ret = qla24xx_modify_vp_config(vha);
6c2f527c 195 mutex_unlock(&ha->vport_lock);
2c3dfe3f
SJ
196
197 if (ret != QLA_SUCCESS) {
198 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
199 goto enable_failed;
200 }
201
7c3df132
SK
202 ql_dbg(ql_dbg_taskm, vha, 0x801a,
203 "Virtual port with id: %d - Enabled.\n", vha->vp_idx);
2c3dfe3f
SJ
204 return 0;
205
206enable_failed:
7c3df132
SK
207 ql_dbg(ql_dbg_taskm, vha, 0x801b,
208 "Virtual port with id: %d - Disabled.\n", vha->vp_idx);
2c3dfe3f
SJ
209 return 1;
210}
211
26ff776d 212static void
2c3dfe3f
SJ
213qla24xx_configure_vp(scsi_qla_host_t *vha)
214{
215 struct fc_vport *fc_vport;
216 int ret;
217
218 fc_vport = vha->fc_vport;
219
7c3df132
SK
220 ql_dbg(ql_dbg_vport, vha, 0xa002,
221 "%s: change request #3.\n", __func__);
2c3dfe3f
SJ
222 ret = qla2x00_send_change_request(vha, 0x3, vha->vp_idx);
223 if (ret != QLA_SUCCESS) {
7c3df132
SK
224 ql_dbg(ql_dbg_vport, vha, 0xa003, "Failed to enable "
225 "receiving of RSCN requests: 0x%x.\n", ret);
2c3dfe3f
SJ
226 return;
227 } else {
228 /* Corresponds to SCR enabled */
229 clear_bit(VP_SCR_NEEDED, &vha->vp_flags);
230 }
231
232 vha->flags.online = 1;
233 if (qla24xx_configure_vhba(vha))
234 return;
235
236 atomic_set(&vha->vp_state, VP_ACTIVE);
237 fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
238}
239
240void
73208dfd 241qla2x00_alert_all_vps(struct rsp_que *rsp, uint16_t *mb)
2c3dfe3f 242{
feafb7b1 243 scsi_qla_host_t *vha;
73208dfd 244 struct qla_hw_data *ha = rsp->hw;
7b867cf7 245 int i = 0;
feafb7b1 246 unsigned long flags;
2c3dfe3f 247
feafb7b1
AE
248 spin_lock_irqsave(&ha->vport_slock, flags);
249 list_for_each_entry(vha, &ha->vp_list, list) {
7b867cf7 250 if (vha->vp_idx) {
feafb7b1
AE
251 atomic_inc(&vha->vref_count);
252 spin_unlock_irqrestore(&ha->vport_slock, flags);
253
2c3dfe3f
SJ
254 switch (mb[0]) {
255 case MBA_LIP_OCCURRED:
256 case MBA_LOOP_UP:
257 case MBA_LOOP_DOWN:
258 case MBA_LIP_RESET:
259 case MBA_POINT_TO_POINT:
260 case MBA_CHG_IN_CONNECTION:
261 case MBA_PORT_UPDATE:
262 case MBA_RSCN_UPDATE:
7c3df132
SK
263 ql_dbg(ql_dbg_async, vha, 0x5024,
264 "Async_event for VP[%d], mb=0x%x vha=%p.\n",
265 i, *mb, vha);
73208dfd 266 qla2x00_async_event(vha, rsp, mb);
2c3dfe3f
SJ
267 break;
268 }
feafb7b1
AE
269
270 spin_lock_irqsave(&ha->vport_slock, flags);
271 atomic_dec(&vha->vref_count);
2c3dfe3f 272 }
7b867cf7 273 i++;
2c3dfe3f 274 }
feafb7b1 275 spin_unlock_irqrestore(&ha->vport_slock, flags);
2c3dfe3f
SJ
276}
277
7b867cf7 278int
2c3dfe3f
SJ
279qla2x00_vp_abort_isp(scsi_qla_host_t *vha)
280{
281 /*
282 * Physical port will do most of the abort and recovery work. We can
283 * just treat it as a loop down
284 */
285 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
286 atomic_set(&vha->loop_state, LOOP_DOWN);
287 qla2x00_mark_all_devices_lost(vha, 0);
288 } else {
289 if (!atomic_read(&vha->loop_down_timer))
290 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
291 }
292
0d6e61bc
AV
293 /*
294 * To exclusively reset vport, we need to log it out first. Note: this
295 * control_vp can fail if ISP reset is already issued, this is
296 * expected, as the vp would be already logged out due to ISP reset.
297 */
7b867cf7
AC
298 if (!test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
299 qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
300
7c3df132
SK
301 ql_dbg(ql_dbg_taskm, vha, 0x801d,
302 "Scheduling enable of Vport %d.\n", vha->vp_idx);
7b867cf7 303 return qla24xx_enable_vp(vha);
2c3dfe3f
SJ
304}
305
a824ebb3 306static int
2c3dfe3f
SJ
307qla2x00_do_dpc_vp(scsi_qla_host_t *vha)
308{
ded6411f
SC
309 struct qla_hw_data *ha = vha->hw;
310 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
311
5f28d2d7
SK
312 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, vha, 0x4012,
313 "Entering %s vp_flags: 0x%lx.\n", __func__, vha->vp_flags);
7c3df132 314
ac280b67
AV
315 qla2x00_do_work(vha);
316
ded6411f
SC
317 /* Check if Fw is ready to configure VP first */
318 if (test_bit(VP_CONFIG_OK, &base_vha->vp_flags)) {
319 if (test_and_clear_bit(VP_IDX_ACQUIRED, &vha->vp_flags)) {
320 /* VP acquired. complete port configuration */
321 ql_dbg(ql_dbg_dpc, vha, 0x4014,
322 "Configure VP scheduled.\n");
323 qla24xx_configure_vp(vha);
324 ql_dbg(ql_dbg_dpc, vha, 0x4015,
325 "Configure VP end.\n");
326 return 0;
327 }
2c3dfe3f
SJ
328 }
329
7b867cf7 330 if (test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags)) {
7c3df132
SK
331 ql_dbg(ql_dbg_dpc, vha, 0x4016,
332 "FCPort update scheduled.\n");
7b867cf7
AC
333 qla2x00_update_fcports(vha);
334 clear_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags);
7c3df132
SK
335 ql_dbg(ql_dbg_dpc, vha, 0x4017,
336 "FCPort update end.\n");
7b867cf7
AC
337 }
338
339 if ((test_and_clear_bit(RELOGIN_NEEDED, &vha->dpc_flags)) &&
340 !test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) &&
341 atomic_read(&vha->loop_state) != LOOP_DOWN) {
342
7c3df132
SK
343 ql_dbg(ql_dbg_dpc, vha, 0x4018,
344 "Relogin needed scheduled.\n");
7b867cf7 345 qla2x00_relogin(vha);
7c3df132
SK
346 ql_dbg(ql_dbg_dpc, vha, 0x4019,
347 "Relogin needed end.\n");
7b867cf7 348 }
2c3dfe3f
SJ
349
350 if (test_and_clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) &&
351 (!(test_and_set_bit(RESET_ACTIVE, &vha->dpc_flags)))) {
352 clear_bit(RESET_ACTIVE, &vha->dpc_flags);
353 }
354
73208dfd 355 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
2c3dfe3f 356 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags))) {
7c3df132
SK
357 ql_dbg(ql_dbg_dpc, vha, 0x401a,
358 "Loop resync scheduled.\n");
2c3dfe3f
SJ
359 qla2x00_loop_resync(vha);
360 clear_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags);
7c3df132
SK
361 ql_dbg(ql_dbg_dpc, vha, 0x401b,
362 "Loop resync end.\n");
2c3dfe3f
SJ
363 }
364 }
365
5f28d2d7 366 ql_dbg(ql_dbg_dpc + ql_dbg_verbose, vha, 0x401c,
7c3df132 367 "Exiting %s.\n", __func__);
2c3dfe3f
SJ
368 return 0;
369}
370
371void
7b867cf7 372qla2x00_do_dpc_all_vps(scsi_qla_host_t *vha)
2c3dfe3f 373{
7b867cf7
AC
374 struct qla_hw_data *ha = vha->hw;
375 scsi_qla_host_t *vp;
feafb7b1 376 unsigned long flags = 0;
2c3dfe3f 377
7b867cf7 378 if (vha->vp_idx)
2c3dfe3f
SJ
379 return;
380 if (list_empty(&ha->vp_list))
381 return;
382
7b867cf7 383 clear_bit(VP_DPC_NEEDED, &vha->dpc_flags);
2c3dfe3f 384
0d6e61bc
AV
385 if (!(ha->current_topology & ISP_CFG_F))
386 return;
387
feafb7b1
AE
388 spin_lock_irqsave(&ha->vport_slock, flags);
389 list_for_each_entry(vp, &ha->vp_list, list) {
390 if (vp->vp_idx) {
391 atomic_inc(&vp->vref_count);
392 spin_unlock_irqrestore(&ha->vport_slock, flags);
393
52c82823 394 qla2x00_do_dpc_vp(vp);
feafb7b1
AE
395
396 spin_lock_irqsave(&ha->vport_slock, flags);
397 atomic_dec(&vp->vref_count);
398 }
2c3dfe3f 399 }
feafb7b1 400 spin_unlock_irqrestore(&ha->vport_slock, flags);
2c3dfe3f
SJ
401}
402
403int
404qla24xx_vport_create_req_sanity_check(struct fc_vport *fc_vport)
405{
7b867cf7
AC
406 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
407 struct qla_hw_data *ha = base_vha->hw;
2c3dfe3f
SJ
408 scsi_qla_host_t *vha;
409 uint8_t port_name[WWN_SIZE];
410
411 if (fc_vport->roles != FC_PORT_ROLE_FCP_INITIATOR)
412 return VPCERR_UNSUPPORTED;
413
414 /* Check up the F/W and H/W support NPIV */
415 if (!ha->flags.npiv_supported)
416 return VPCERR_UNSUPPORTED;
417
418 /* Check up whether npiv supported switch presented */
419 if (!(ha->switch_cap & FLOGI_MID_SUPPORT))
420 return VPCERR_NO_FABRIC_SUPP;
421
422 /* Check up unique WWPN */
423 u64_to_wwn(fc_vport->port_name, port_name);
7b867cf7 424 if (!memcmp(port_name, base_vha->port_name, WWN_SIZE))
50db6b13 425 return VPCERR_BAD_WWN;
2c3dfe3f
SJ
426 vha = qla24xx_find_vhost_by_name(ha, port_name);
427 if (vha)
428 return VPCERR_BAD_WWN;
429
430 /* Check up max-npiv-supports */
431 if (ha->num_vhosts > ha->max_npiv_vports) {
7c3df132
SK
432 ql_dbg(ql_dbg_vport, vha, 0xa004,
433 "num_vhosts %ud is bigger "
434 "than max_npiv_vports %ud.\n",
435 ha->num_vhosts, ha->max_npiv_vports);
2c3dfe3f
SJ
436 return VPCERR_UNSUPPORTED;
437 }
438 return 0;
439}
440
441scsi_qla_host_t *
442qla24xx_create_vhost(struct fc_vport *fc_vport)
443{
7b867cf7
AC
444 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
445 struct qla_hw_data *ha = base_vha->hw;
2c3dfe3f 446 scsi_qla_host_t *vha;
a5326f86 447 struct scsi_host_template *sht = &qla2xxx_driver_template;
2c3dfe3f
SJ
448 struct Scsi_Host *host;
449
7b867cf7
AC
450 vha = qla2x00_create_host(sht, ha);
451 if (!vha) {
7c3df132
SK
452 ql_log(ql_log_warn, vha, 0xa005,
453 "scsi_host_alloc() failed for vport.\n");
2c3dfe3f
SJ
454 return(NULL);
455 }
456
7b867cf7 457 host = vha->host;
2c3dfe3f 458 fc_vport->dd_data = vha;
2c3dfe3f
SJ
459 /* New host info */
460 u64_to_wwn(fc_vport->node_name, vha->node_name);
461 u64_to_wwn(fc_vport->port_name, vha->port_name);
462
2c3dfe3f
SJ
463 vha->fc_vport = fc_vport;
464 vha->device_flags = 0;
2c3dfe3f
SJ
465 vha->vp_idx = qla24xx_allocate_vp_id(vha);
466 if (vha->vp_idx > ha->max_npiv_vports) {
7c3df132
SK
467 ql_dbg(ql_dbg_vport, vha, 0xa006,
468 "Couldn't allocate vp_id.\n");
7b867cf7 469 goto create_vhost_failed;
2c3dfe3f
SJ
470 }
471 vha->mgmt_svr_loop_id = 10 + vha->vp_idx;
472
2c3dfe3f 473 vha->dpc_flags = 0L;
2c3dfe3f
SJ
474
475 /*
476 * To fix the issue of processing a parent's RSCN for the vport before
477 * its SCR is complete.
478 */
479 set_bit(VP_SCR_NEEDED, &vha->vp_flags);
480 atomic_set(&vha->loop_state, LOOP_DOWN);
481 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
482
483 qla2x00_start_timer(vha, qla2x00_timer, WATCH_INTERVAL);
484
2afa19a9
AC
485 vha->req = base_vha->req;
486 host->can_queue = base_vha->req->length + 128;
2c3dfe3f 487 host->cmd_per_lun = 3;
e02587d7 488 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
0c470874
AE
489 host->max_cmd_len = 32;
490 else
491 host->max_cmd_len = MAX_CMDSZ;
2c3dfe3f 492 host->max_channel = MAX_BUSES - 1;
82515920 493 host->max_lun = ql2xmaxlun;
711c1d91 494 host->unique_id = host->host_no;
642ef983 495 host->max_id = ha->max_fibre_devices;
2c3dfe3f
SJ
496 host->transportt = qla2xxx_transport_vport_template;
497
7c3df132
SK
498 ql_dbg(ql_dbg_vport, vha, 0xa007,
499 "Detect vport hba %ld at address = %p.\n",
500 vha->host_no, vha);
2c3dfe3f
SJ
501
502 vha->flags.init_done = 1;
2c3dfe3f 503
0d6e61bc
AV
504 mutex_lock(&ha->vport_lock);
505 set_bit(vha->vp_idx, ha->vp_idx_map);
506 ha->cur_vport_count++;
507 mutex_unlock(&ha->vport_lock);
508
2c3dfe3f
SJ
509 return vha;
510
7b867cf7 511create_vhost_failed:
2c3dfe3f
SJ
512 return NULL;
513}
73208dfd
AC
514
515static void
516qla25xx_free_req_que(struct scsi_qla_host *vha, struct req_que *req)
517{
518 struct qla_hw_data *ha = vha->hw;
519 uint16_t que_id = req->id;
520
521 dma_free_coherent(&ha->pdev->dev, (req->length + 1) *
522 sizeof(request_t), req->ring, req->dma);
523 req->ring = NULL;
524 req->dma = 0;
525 if (que_id) {
526 ha->req_q_map[que_id] = NULL;
527 mutex_lock(&ha->vport_lock);
528 clear_bit(que_id, ha->req_qid_map);
529 mutex_unlock(&ha->vport_lock);
530 }
8d93f550 531 kfree(req->outstanding_cmds);
73208dfd
AC
532 kfree(req);
533 req = NULL;
534}
535
536static void
537qla25xx_free_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
538{
539 struct qla_hw_data *ha = vha->hw;
540 uint16_t que_id = rsp->id;
541
542 if (rsp->msix && rsp->msix->have_irq) {
543 free_irq(rsp->msix->vector, rsp);
544 rsp->msix->have_irq = 0;
4fa18345 545 rsp->msix->handle = NULL;
73208dfd
AC
546 }
547 dma_free_coherent(&ha->pdev->dev, (rsp->length + 1) *
548 sizeof(response_t), rsp->ring, rsp->dma);
549 rsp->ring = NULL;
550 rsp->dma = 0;
551 if (que_id) {
552 ha->rsp_q_map[que_id] = NULL;
553 mutex_lock(&ha->vport_lock);
554 clear_bit(que_id, ha->rsp_qid_map);
555 mutex_unlock(&ha->vport_lock);
556 }
557 kfree(rsp);
558 rsp = NULL;
559}
560
561int
562qla25xx_delete_req_que(struct scsi_qla_host *vha, struct req_que *req)
563{
564 int ret = -1;
565
566 if (req) {
567 req->options |= BIT_0;
618a7523 568 ret = qla25xx_init_req_que(vha, req);
73208dfd
AC
569 }
570 if (ret == QLA_SUCCESS)
571 qla25xx_free_req_que(vha, req);
572
573 return ret;
574}
575
3dbe756a 576static int
73208dfd
AC
577qla25xx_delete_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
578{
579 int ret = -1;
580
581 if (rsp) {
582 rsp->options |= BIT_0;
618a7523 583 ret = qla25xx_init_rsp_que(vha, rsp);
73208dfd
AC
584 }
585 if (ret == QLA_SUCCESS)
586 qla25xx_free_rsp_que(vha, rsp);
587
588 return ret;
589}
590
73208dfd
AC
591/* Delete all queues for a given vhost */
592int
2afa19a9 593qla25xx_delete_queues(struct scsi_qla_host *vha)
73208dfd
AC
594{
595 int cnt, ret = 0;
596 struct req_que *req = NULL;
597 struct rsp_que *rsp = NULL;
598 struct qla_hw_data *ha = vha->hw;
599
2afa19a9
AC
600 /* Delete request queues */
601 for (cnt = 1; cnt < ha->max_req_queues; cnt++) {
602 req = ha->req_q_map[cnt];
cb43285f 603 if (req && test_bit(cnt, ha->req_qid_map)) {
73208dfd
AC
604 ret = qla25xx_delete_req_que(vha, req);
605 if (ret != QLA_SUCCESS) {
7c3df132
SK
606 ql_log(ql_log_warn, vha, 0x00ea,
607 "Couldn't delete req que %d.\n",
608 req->id);
73208dfd
AC
609 return ret;
610 }
73208dfd 611 }
2afa19a9
AC
612 }
613
614 /* Delete response queues */
615 for (cnt = 1; cnt < ha->max_rsp_queues; cnt++) {
616 rsp = ha->rsp_q_map[cnt];
cb43285f 617 if (rsp && test_bit(cnt, ha->rsp_qid_map)) {
2afa19a9
AC
618 ret = qla25xx_delete_rsp_que(vha, rsp);
619 if (ret != QLA_SUCCESS) {
7c3df132
SK
620 ql_log(ql_log_warn, vha, 0x00eb,
621 "Couldn't delete rsp que %d.\n",
622 rsp->id);
2afa19a9 623 return ret;
73208dfd
AC
624 }
625 }
626 }
73208dfd
AC
627 return ret;
628}
629
630int
631qla25xx_create_req_que(struct qla_hw_data *ha, uint16_t options,
2afa19a9 632 uint8_t vp_idx, uint16_t rid, int rsp_que, uint8_t qos)
73208dfd
AC
633{
634 int ret = 0;
635 struct req_que *req = NULL;
636 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
637 uint16_t que_id = 0;
f73cb695 638 device_reg_t *reg;
2afa19a9 639 uint32_t cnt;
73208dfd
AC
640
641 req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
642 if (req == NULL) {
7c3df132
SK
643 ql_log(ql_log_fatal, base_vha, 0x00d9,
644 "Failed to allocate memory for request queue.\n");
c7922a91 645 goto failed;
73208dfd
AC
646 }
647
648 req->length = REQUEST_ENTRY_CNT_24XX;
649 req->ring = dma_alloc_coherent(&ha->pdev->dev,
650 (req->length + 1) * sizeof(request_t),
651 &req->dma, GFP_KERNEL);
652 if (req->ring == NULL) {
7c3df132 653 ql_log(ql_log_fatal, base_vha, 0x00da,
d6a03581 654 "Failed to allocate memory for request_ring.\n");
73208dfd
AC
655 goto que_failed;
656 }
657
8d93f550
CD
658 ret = qla2x00_alloc_outstanding_cmds(ha, req);
659 if (ret != QLA_SUCCESS)
660 goto que_failed;
661
73208dfd 662 mutex_lock(&ha->vport_lock);
2afa19a9
AC
663 que_id = find_first_zero_bit(ha->req_qid_map, ha->max_req_queues);
664 if (que_id >= ha->max_req_queues) {
73208dfd 665 mutex_unlock(&ha->vport_lock);
7c3df132
SK
666 ql_log(ql_log_warn, base_vha, 0x00db,
667 "No resources to create additional request queue.\n");
73208dfd
AC
668 goto que_failed;
669 }
670 set_bit(que_id, ha->req_qid_map);
671 ha->req_q_map[que_id] = req;
672 req->rid = rid;
673 req->vp_idx = vp_idx;
674 req->qos = qos;
675
7c3df132
SK
676 ql_dbg(ql_dbg_multiq, base_vha, 0xc002,
677 "queue_id=%d rid=%d vp_idx=%d qos=%d.\n",
678 que_id, req->rid, req->vp_idx, req->qos);
679 ql_dbg(ql_dbg_init, base_vha, 0x00dc,
680 "queue_id=%d rid=%d vp_idx=%d qos=%d.\n",
681 que_id, req->rid, req->vp_idx, req->qos);
2afa19a9
AC
682 if (rsp_que < 0)
683 req->rsp = NULL;
684 else
73208dfd
AC
685 req->rsp = ha->rsp_q_map[rsp_que];
686 /* Use alternate PCI bus number */
687 if (MSB(req->rid))
688 options |= BIT_4;
689 /* Use alternate PCI devfn */
690 if (LSB(req->rid))
691 options |= BIT_5;
692 req->options = options;
2afa19a9 693
7c3df132
SK
694 ql_dbg(ql_dbg_multiq, base_vha, 0xc003,
695 "options=0x%x.\n", req->options);
696 ql_dbg(ql_dbg_init, base_vha, 0x00dd,
697 "options=0x%x.\n", req->options);
8d93f550 698 for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++)
2afa19a9
AC
699 req->outstanding_cmds[cnt] = NULL;
700 req->current_outstanding_cmd = 1;
701
73208dfd
AC
702 req->ring_ptr = req->ring;
703 req->ring_index = 0;
704 req->cnt = req->length;
705 req->id = que_id;
08029990 706 reg = ISP_QUE_REG(ha, que_id);
da9b1d5c
AV
707 req->req_q_in = &reg->isp25mq.req_q_in;
708 req->req_q_out = &reg->isp25mq.req_q_out;
29bdccbe 709 req->max_q_depth = ha->req_q_map[0]->max_q_depth;
40969530 710 req->out_ptr = (void *)(req->ring + req->length);
73208dfd 711 mutex_unlock(&ha->vport_lock);
7c3df132
SK
712 ql_dbg(ql_dbg_multiq, base_vha, 0xc004,
713 "ring_ptr=%p ring_index=%d, "
714 "cnt=%d id=%d max_q_depth=%d.\n",
715 req->ring_ptr, req->ring_index,
716 req->cnt, req->id, req->max_q_depth);
717 ql_dbg(ql_dbg_init, base_vha, 0x00de,
718 "ring_ptr=%p ring_index=%d, "
719 "cnt=%d id=%d max_q_depth=%d.\n",
720 req->ring_ptr, req->ring_index, req->cnt,
721 req->id, req->max_q_depth);
73208dfd 722
618a7523 723 ret = qla25xx_init_req_que(base_vha, req);
73208dfd 724 if (ret != QLA_SUCCESS) {
7c3df132
SK
725 ql_log(ql_log_fatal, base_vha, 0x00df,
726 "%s failed.\n", __func__);
73208dfd
AC
727 mutex_lock(&ha->vport_lock);
728 clear_bit(que_id, ha->req_qid_map);
729 mutex_unlock(&ha->vport_lock);
730 goto que_failed;
731 }
732
733 return req->id;
734
735que_failed:
736 qla25xx_free_req_que(base_vha, req);
c7922a91 737failed:
73208dfd
AC
738 return 0;
739}
740
68ca949c
AC
741static void qla_do_work(struct work_struct *work)
742{
a67093d4 743 unsigned long flags;
68ca949c
AC
744 struct rsp_que *rsp = container_of(work, struct rsp_que, q_work);
745 struct scsi_qla_host *vha;
a67093d4 746 struct qla_hw_data *ha = rsp->hw;
68ca949c 747
a67093d4
AC
748 spin_lock_irqsave(&rsp->hw->hardware_lock, flags);
749 vha = pci_get_drvdata(ha->pdev);
68ca949c 750 qla24xx_process_response_queue(vha, rsp);
a67093d4 751 spin_unlock_irqrestore(&rsp->hw->hardware_lock, flags);
68ca949c
AC
752}
753
73208dfd
AC
754/* create response queue */
755int
756qla25xx_create_rsp_que(struct qla_hw_data *ha, uint16_t options,
2afa19a9 757 uint8_t vp_idx, uint16_t rid, int req)
73208dfd
AC
758{
759 int ret = 0;
760 struct rsp_que *rsp = NULL;
761 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
08029990 762 uint16_t que_id = 0;
f73cb695 763 device_reg_t *reg;
73208dfd
AC
764
765 rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
766 if (rsp == NULL) {
7c3df132
SK
767 ql_log(ql_log_warn, base_vha, 0x0066,
768 "Failed to allocate memory for response queue.\n");
c7922a91 769 goto failed;
73208dfd
AC
770 }
771
2afa19a9 772 rsp->length = RESPONSE_ENTRY_CNT_MQ;
73208dfd
AC
773 rsp->ring = dma_alloc_coherent(&ha->pdev->dev,
774 (rsp->length + 1) * sizeof(response_t),
775 &rsp->dma, GFP_KERNEL);
776 if (rsp->ring == NULL) {
7c3df132
SK
777 ql_log(ql_log_warn, base_vha, 0x00e1,
778 "Failed to allocate memory for response ring.\n");
73208dfd
AC
779 goto que_failed;
780 }
781
782 mutex_lock(&ha->vport_lock);
2afa19a9
AC
783 que_id = find_first_zero_bit(ha->rsp_qid_map, ha->max_rsp_queues);
784 if (que_id >= ha->max_rsp_queues) {
73208dfd 785 mutex_unlock(&ha->vport_lock);
7c3df132
SK
786 ql_log(ql_log_warn, base_vha, 0x00e2,
787 "No resources to create additional request queue.\n");
73208dfd
AC
788 goto que_failed;
789 }
790 set_bit(que_id, ha->rsp_qid_map);
791
792 if (ha->flags.msix_enabled)
793 rsp->msix = &ha->msix_entries[que_id + 1];
794 else
7c3df132 795 ql_log(ql_log_warn, base_vha, 0x00e3,
94bcf830 796 "MSIX not enabled.\n");
73208dfd
AC
797
798 ha->rsp_q_map[que_id] = rsp;
799 rsp->rid = rid;
800 rsp->vp_idx = vp_idx;
801 rsp->hw = ha;
7c3df132
SK
802 ql_dbg(ql_dbg_init, base_vha, 0x00e4,
803 "queue_id=%d rid=%d vp_idx=%d hw=%p.\n",
804 que_id, rsp->rid, rsp->vp_idx, rsp->hw);
73208dfd
AC
805 /* Use alternate PCI bus number */
806 if (MSB(rsp->rid))
807 options |= BIT_4;
808 /* Use alternate PCI devfn */
809 if (LSB(rsp->rid))
810 options |= BIT_5;
3155754a
AC
811 /* Enable MSIX handshake mode on for uncapable adapters */
812 if (!IS_MSIX_NACK_CAPABLE(ha))
813 options |= BIT_6;
814
73208dfd 815 rsp->options = options;
73208dfd 816 rsp->id = que_id;
08029990
AV
817 reg = ISP_QUE_REG(ha, que_id);
818 rsp->rsp_q_in = &reg->isp25mq.rsp_q_in;
819 rsp->rsp_q_out = &reg->isp25mq.rsp_q_out;
40969530 820 rsp->in_ptr = (void *)(rsp->ring + rsp->length);
73208dfd 821 mutex_unlock(&ha->vport_lock);
7c3df132
SK
822 ql_dbg(ql_dbg_multiq, base_vha, 0xc00b,
823 "options=%x id=%d rsp_q_in=%p rsp_q_out=%p",
824 rsp->options, rsp->id, rsp->rsp_q_in,
825 rsp->rsp_q_out);
826 ql_dbg(ql_dbg_init, base_vha, 0x00e5,
827 "options=%x id=%d rsp_q_in=%p rsp_q_out=%p",
828 rsp->options, rsp->id, rsp->rsp_q_in,
829 rsp->rsp_q_out);
73208dfd
AC
830
831 ret = qla25xx_request_irq(rsp);
832 if (ret)
833 goto que_failed;
834
618a7523 835 ret = qla25xx_init_rsp_que(base_vha, rsp);
73208dfd 836 if (ret != QLA_SUCCESS) {
7c3df132
SK
837 ql_log(ql_log_fatal, base_vha, 0x00e7,
838 "%s failed.\n", __func__);
73208dfd
AC
839 mutex_lock(&ha->vport_lock);
840 clear_bit(que_id, ha->rsp_qid_map);
841 mutex_unlock(&ha->vport_lock);
842 goto que_failed;
843 }
2afa19a9
AC
844 if (req >= 0)
845 rsp->req = ha->req_q_map[req];
846 else
847 rsp->req = NULL;
73208dfd
AC
848
849 qla2x00_init_response_q_entries(rsp);
68ca949c
AC
850 if (rsp->hw->wq)
851 INIT_WORK(&rsp->q_work, qla_do_work);
73208dfd
AC
852 return rsp->id;
853
854que_failed:
855 qla25xx_free_rsp_que(base_vha, rsp);
c7922a91 856failed:
73208dfd
AC
857 return 0;
858}