qla_mid.c 21.6 KB
Newer Older
1
/*
2
 * QLogic Fibre Channel HBA Driver
3
 * Copyright (c)  2003-2014 QLogic Corporation
4
 *
5
 * See LICENSE.qla2xxx for copyright and licensing details.
6 7
 */
#include "qla_def.h"
8
#include "qla_gbl.h"
9
#include "qla_target.h"
10 11 12

#include <linux/moduleparam.h>
#include <linux/vmalloc.h>
13
#include <linux/slab.h>
14 15 16 17 18 19 20 21 22
#include <linux/list.h>

#include <scsi/scsi_tcq.h>
#include <scsi/scsicam.h>
#include <linux/delay.h>

void
qla2x00_vp_stop_timer(scsi_qla_host_t *vha)
{
23
	if (vha->vp_idx && vha->timer_active) {
24 25 26 27 28
		del_timer_sync(&vha->timer);
		vha->timer_active = 0;
	}
}

A
Adrian Bunk 已提交
29
static uint32_t
30 31 32
qla24xx_allocate_vp_id(scsi_qla_host_t *vha)
{
	uint32_t vp_id;
33
	struct qla_hw_data *ha = vha->hw;
34
	unsigned long flags;
35 36

	/* Find an empty slot and assign an vp_id */
37
	mutex_lock(&ha->vport_lock);
38 39
	vp_id = find_first_zero_bit(ha->vp_idx_map, ha->max_npiv_vports + 1);
	if (vp_id > ha->max_npiv_vports) {
40 41 42
		ql_dbg(ql_dbg_vport, vha, 0xa000,
		    "vp_id %d is bigger than max-supported %d.\n",
		    vp_id, ha->max_npiv_vports);
43
		mutex_unlock(&ha->vport_lock);
44 45 46
		return vp_id;
	}

47
	set_bit(vp_id, ha->vp_idx_map);
48 49
	ha->num_vhosts++;
	vha->vp_idx = vp_id;
50 51

	spin_lock_irqsave(&ha->vport_slock, flags);
52
	list_add_tail(&vha->list, &ha->vp_list);
53 54 55

	qlt_update_vp_map(vha, SET_VP_IDX);

56 57
	spin_unlock_irqrestore(&ha->vport_slock, flags);

58
	mutex_unlock(&ha->vport_lock);
59 60 61 62 63 64 65
	return vp_id;
}

void
qla24xx_deallocate_vp_id(scsi_qla_host_t *vha)
{
	uint16_t vp_id;
66
	struct qla_hw_data *ha = vha->hw;
67
	unsigned long flags = 0;
68

69
	mutex_lock(&ha->vport_lock);
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
	/*
	 * Wait for all pending activities to finish before removing vport from
	 * the list.
	 * Lock needs to be held for safe removal from the list (it
	 * ensures no active vp_list traversal while the vport is removed
	 * from the queue)
	 */
	spin_lock_irqsave(&ha->vport_slock, flags);
	while (atomic_read(&vha->vref_count)) {
		spin_unlock_irqrestore(&ha->vport_slock, flags);

		msleep(500);

		spin_lock_irqsave(&ha->vport_slock, flags);
	}
	list_del(&vha->list);
86
	qlt_update_vp_map(vha, RESET_VP_IDX);
87 88
	spin_unlock_irqrestore(&ha->vport_slock, flags);

89 90
	vp_id = vha->vp_idx;
	ha->num_vhosts--;
91
	clear_bit(vp_id, ha->vp_idx_map);
92

93
	mutex_unlock(&ha->vport_lock);
94 95
}

A
Adrian Bunk 已提交
96
static scsi_qla_host_t *
97
qla24xx_find_vhost_by_name(struct qla_hw_data *ha, uint8_t *port_name)
98 99
{
	scsi_qla_host_t *vha;
100
	struct scsi_qla_host *tvha;
101
	unsigned long flags;
102

103
	spin_lock_irqsave(&ha->vport_slock, flags);
104
	/* Locate matching device in database. */
105
	list_for_each_entry_safe(vha, tvha, &ha->vp_list, list) {
106 107
		if (!memcmp(port_name, vha->port_name, WWN_SIZE)) {
			spin_unlock_irqrestore(&ha->vport_slock, flags);
108
			return vha;
109
		}
110
	}
111
	spin_unlock_irqrestore(&ha->vport_slock, flags);
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	return NULL;
}

/*
 * qla2x00_mark_vp_devices_dead
 *	Updates fcport state when device goes offline.
 *
 * Input:
 *	ha = adapter block pointer.
 *	fcport = port structure pointer.
 *
 * Return:
 *	None.
 *
 * Context:
 */
128
static void
129 130
qla2x00_mark_vp_devices_dead(scsi_qla_host_t *vha)
{
131 132 133 134 135 136
	/*
	 * !!! NOTE !!!
	 * This function, if called in contexts other than vp create, disable
	 * or delete, please make sure this is synchronized with the
	 * delete thread.
	 */
137 138
	fc_port_t *fcport;

139
	list_for_each_entry(fcport, &vha->vp_fcports, list) {
140 141
		ql_dbg(ql_dbg_vport, vha, 0xa001,
		    "Marking port dead, loop_id=0x%04x : %x.\n",
142
		    fcport->loop_id, fcport->vha->vp_idx);
143 144

		qla2x00_mark_device_lost(vha, fcport, 0, 0);
145
		qla2x00_set_fcport_state(fcport, FCS_UNCONFIGURED);
146 147 148 149 150 151
	}
}

int
qla24xx_disable_vp(scsi_qla_host_t *vha)
{
152
	unsigned long flags;
153 154 155 156 157 158
	int ret;

	ret = qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
	atomic_set(&vha->loop_state, LOOP_DOWN);
	atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);

159
	/* Remove port id from vp target map */
160
	spin_lock_irqsave(&vha->hw->vport_slock, flags);
161
	qlt_update_vp_map(vha, RESET_AL_PA);
162
	spin_unlock_irqrestore(&vha->hw->vport_slock, flags);
163

164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
	qla2x00_mark_vp_devices_dead(vha);
	atomic_set(&vha->vp_state, VP_FAILED);
	vha->flags.management_server_logged_in = 0;
	if (ret == QLA_SUCCESS) {
		fc_vport_set_state(vha->fc_vport, FC_VPORT_DISABLED);
	} else {
		fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
		return -1;
	}
	return 0;
}

int
qla24xx_enable_vp(scsi_qla_host_t *vha)
{
	int ret;
180 181
	struct qla_hw_data *ha = vha->hw;
	scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
182 183

	/* Check if physical ha port is Up */
184
	if (atomic_read(&base_vha->loop_state) == LOOP_DOWN  ||
185 186
		atomic_read(&base_vha->loop_state) == LOOP_DEAD ||
		!(ha->current_topology & ISP_CFG_F)) {
187 188 189 190 191 192
		vha->vp_err_state =  VP_ERR_PORTDWN;
		fc_vport_set_state(vha->fc_vport, FC_VPORT_LINKDOWN);
		goto enable_failed;
	}

	/* Initialize the new vport unless it is a persistent port */
193
	mutex_lock(&ha->vport_lock);
194
	ret = qla24xx_modify_vp_config(vha);
195
	mutex_unlock(&ha->vport_lock);
196 197 198 199 200 201

	if (ret != QLA_SUCCESS) {
		fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
		goto enable_failed;
	}

202 203
	ql_dbg(ql_dbg_taskm, vha, 0x801a,
	    "Virtual port with id: %d - Enabled.\n", vha->vp_idx);
204 205 206
	return 0;

enable_failed:
207 208
	ql_dbg(ql_dbg_taskm, vha, 0x801b,
	    "Virtual port with id: %d - Disabled.\n", vha->vp_idx);
209 210 211
	return 1;
}

212
static void
213 214 215 216 217 218 219
qla24xx_configure_vp(scsi_qla_host_t *vha)
{
	struct fc_vport *fc_vport;
	int ret;

	fc_vport = vha->fc_vport;

220 221
	ql_dbg(ql_dbg_vport, vha, 0xa002,
	    "%s: change request #3.\n", __func__);
222 223
	ret = qla2x00_send_change_request(vha, 0x3, vha->vp_idx);
	if (ret != QLA_SUCCESS) {
224 225
		ql_dbg(ql_dbg_vport, vha, 0xa003, "Failed to enable "
		    "receiving of RSCN requests: 0x%x.\n", ret);
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
		return;
	} else {
		/* Corresponds to SCR enabled */
		clear_bit(VP_SCR_NEEDED, &vha->vp_flags);
	}

	vha->flags.online = 1;
	if (qla24xx_configure_vhba(vha))
		return;

	atomic_set(&vha->vp_state, VP_ACTIVE);
	fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
}

void
241
qla2x00_alert_all_vps(struct rsp_que *rsp, uint16_t *mb)
242
{
243
	scsi_qla_host_t *vha;
244
	struct qla_hw_data *ha = rsp->hw;
245
	int i = 0;
246
	unsigned long flags;
247

248 249
	spin_lock_irqsave(&ha->vport_slock, flags);
	list_for_each_entry(vha, &ha->vp_list, list) {
250
		if (vha->vp_idx) {
251 252 253
			atomic_inc(&vha->vref_count);
			spin_unlock_irqrestore(&ha->vport_slock, flags);

254 255 256 257 258 259 260 261 262
			switch (mb[0]) {
			case MBA_LIP_OCCURRED:
			case MBA_LOOP_UP:
			case MBA_LOOP_DOWN:
			case MBA_LIP_RESET:
			case MBA_POINT_TO_POINT:
			case MBA_CHG_IN_CONNECTION:
			case MBA_PORT_UPDATE:
			case MBA_RSCN_UPDATE:
263 264 265
				ql_dbg(ql_dbg_async, vha, 0x5024,
				    "Async_event for VP[%d], mb=0x%x vha=%p.\n",
				    i, *mb, vha);
266
				qla2x00_async_event(vha, rsp, mb);
267 268
				break;
			}
269 270 271

			spin_lock_irqsave(&ha->vport_slock, flags);
			atomic_dec(&vha->vref_count);
272
		}
273
		i++;
274
	}
275
	spin_unlock_irqrestore(&ha->vport_slock, flags);
276 277
}

278
int
279 280 281 282 283 284 285 286 287 288 289 290 291 292
qla2x00_vp_abort_isp(scsi_qla_host_t *vha)
{
	/*
	 * Physical port will do most of the abort and recovery work. We can
	 * just treat it as a loop down
	 */
	if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
		atomic_set(&vha->loop_state, LOOP_DOWN);
		qla2x00_mark_all_devices_lost(vha, 0);
	} else {
		if (!atomic_read(&vha->loop_down_timer))
			atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
	}

293 294 295 296 297
	/*
	 * To exclusively reset vport, we need to log it out first.  Note: this
	 * control_vp can fail if ISP reset is already issued, this is
	 * expected, as the vp would be already logged out due to ISP reset.
	 */
298 299 300
	if (!test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
		qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);

301 302
	ql_dbg(ql_dbg_taskm, vha, 0x801d,
	    "Scheduling enable of Vport %d.\n", vha->vp_idx);
303
	return qla24xx_enable_vp(vha);
304 305
}

A
Adrian Bunk 已提交
306
static int
307 308
qla2x00_do_dpc_vp(scsi_qla_host_t *vha)
{
309 310 311
	struct qla_hw_data *ha = vha->hw;
	scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);

312 313
	ql_dbg(ql_dbg_dpc + ql_dbg_verbose, vha, 0x4012,
	    "Entering %s vp_flags: 0x%lx.\n", __func__, vha->vp_flags);
314

315 316
	qla2x00_do_work(vha);

317 318 319 320 321 322 323 324 325 326 327
	/* Check if Fw is ready to configure VP first */
	if (test_bit(VP_CONFIG_OK, &base_vha->vp_flags)) {
		if (test_and_clear_bit(VP_IDX_ACQUIRED, &vha->vp_flags)) {
			/* VP acquired. complete port configuration */
			ql_dbg(ql_dbg_dpc, vha, 0x4014,
			    "Configure VP scheduled.\n");
			qla24xx_configure_vp(vha);
			ql_dbg(ql_dbg_dpc, vha, 0x4015,
			    "Configure VP end.\n");
			return 0;
		}
328 329
	}

330
	if (test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags)) {
331 332
		ql_dbg(ql_dbg_dpc, vha, 0x4016,
		    "FCPort update scheduled.\n");
333 334
		qla2x00_update_fcports(vha);
		clear_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags);
335 336
		ql_dbg(ql_dbg_dpc, vha, 0x4017,
		    "FCPort update end.\n");
337 338 339 340 341 342
	}

	if ((test_and_clear_bit(RELOGIN_NEEDED, &vha->dpc_flags)) &&
		!test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) &&
		atomic_read(&vha->loop_state) != LOOP_DOWN) {

343 344
		ql_dbg(ql_dbg_dpc, vha, 0x4018,
		    "Relogin needed scheduled.\n");
345
		qla2x00_relogin(vha);
346 347
		ql_dbg(ql_dbg_dpc, vha, 0x4019,
		    "Relogin needed end.\n");
348
	}
349 350 351 352 353 354

	if (test_and_clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) &&
	    (!(test_and_set_bit(RESET_ACTIVE, &vha->dpc_flags)))) {
		clear_bit(RESET_ACTIVE, &vha->dpc_flags);
	}

355
	if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
356
		if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags))) {
357 358
			ql_dbg(ql_dbg_dpc, vha, 0x401a,
			    "Loop resync scheduled.\n");
359 360
			qla2x00_loop_resync(vha);
			clear_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags);
361 362
			ql_dbg(ql_dbg_dpc, vha, 0x401b,
			    "Loop resync end.\n");
363 364 365
		}
	}

366
	ql_dbg(ql_dbg_dpc + ql_dbg_verbose, vha, 0x401c,
367
	    "Exiting %s.\n", __func__);
368 369 370 371
	return 0;
}

void
372
qla2x00_do_dpc_all_vps(scsi_qla_host_t *vha)
373
{
374 375
	struct qla_hw_data *ha = vha->hw;
	scsi_qla_host_t *vp;
376
	unsigned long flags = 0;
377

378
	if (vha->vp_idx)
379 380 381 382
		return;
	if (list_empty(&ha->vp_list))
		return;

383
	clear_bit(VP_DPC_NEEDED, &vha->dpc_flags);
384

385 386 387
	if (!(ha->current_topology & ISP_CFG_F))
		return;

388 389 390 391 392 393
	spin_lock_irqsave(&ha->vport_slock, flags);
	list_for_each_entry(vp, &ha->vp_list, list) {
		if (vp->vp_idx) {
			atomic_inc(&vp->vref_count);
			spin_unlock_irqrestore(&ha->vport_slock, flags);

394
			qla2x00_do_dpc_vp(vp);
395 396 397 398

			spin_lock_irqsave(&ha->vport_slock, flags);
			atomic_dec(&vp->vref_count);
		}
399
	}
400
	spin_unlock_irqrestore(&ha->vport_slock, flags);
401 402 403 404 405
}

int
qla24xx_vport_create_req_sanity_check(struct fc_vport *fc_vport)
{
406 407
	scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
	struct qla_hw_data *ha = base_vha->hw;
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
	scsi_qla_host_t *vha;
	uint8_t port_name[WWN_SIZE];

	if (fc_vport->roles != FC_PORT_ROLE_FCP_INITIATOR)
		return VPCERR_UNSUPPORTED;

	/* Check up the F/W and H/W support NPIV */
	if (!ha->flags.npiv_supported)
		return VPCERR_UNSUPPORTED;

	/* Check up whether npiv supported switch presented */
	if (!(ha->switch_cap & FLOGI_MID_SUPPORT))
		return VPCERR_NO_FABRIC_SUPP;

	/* Check up unique WWPN */
	u64_to_wwn(fc_vport->port_name, port_name);
424
	if (!memcmp(port_name, base_vha->port_name, WWN_SIZE))
425
		return VPCERR_BAD_WWN;
426 427 428 429 430 431
	vha = qla24xx_find_vhost_by_name(ha, port_name);
	if (vha)
		return VPCERR_BAD_WWN;

	/* Check up max-npiv-supports */
	if (ha->num_vhosts > ha->max_npiv_vports) {
432 433 434 435
		ql_dbg(ql_dbg_vport, vha, 0xa004,
		    "num_vhosts %ud is bigger "
		    "than max_npiv_vports %ud.\n",
		    ha->num_vhosts, ha->max_npiv_vports);
436 437 438 439 440 441 442 443
		return VPCERR_UNSUPPORTED;
	}
	return 0;
}

scsi_qla_host_t *
qla24xx_create_vhost(struct fc_vport *fc_vport)
{
444 445
	scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
	struct qla_hw_data *ha = base_vha->hw;
446
	scsi_qla_host_t *vha;
447
	struct scsi_host_template *sht = &qla2xxx_driver_template;
448 449
	struct Scsi_Host *host;

450 451
	vha = qla2x00_create_host(sht, ha);
	if (!vha) {
452 453
		ql_log(ql_log_warn, vha, 0xa005,
		    "scsi_host_alloc() failed for vport.\n");
454 455 456
		return(NULL);
	}

457
	host = vha->host;
458 459 460 461 462 463 464 465 466
	fc_vport->dd_data = vha;
	/* New host info */
	u64_to_wwn(fc_vport->node_name, vha->node_name);
	u64_to_wwn(fc_vport->port_name, vha->port_name);

	vha->fc_vport = fc_vport;
	vha->device_flags = 0;
	vha->vp_idx = qla24xx_allocate_vp_id(vha);
	if (vha->vp_idx > ha->max_npiv_vports) {
467 468
		ql_dbg(ql_dbg_vport, vha, 0xa006,
		    "Couldn't allocate vp_id.\n");
469
		goto create_vhost_failed;
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
	}
	vha->mgmt_svr_loop_id = 10 + vha->vp_idx;

	vha->dpc_flags = 0L;

	/*
	 * To fix the issue of processing a parent's RSCN for the vport before
	 * its SCR is complete.
	 */
	set_bit(VP_SCR_NEEDED, &vha->vp_flags);
	atomic_set(&vha->loop_state, LOOP_DOWN);
	atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);

	qla2x00_start_timer(vha, qla2x00_timer, WATCH_INTERVAL);

485 486
	vha->req = base_vha->req;
	host->can_queue = base_vha->req->length + 128;
487
	host->cmd_per_lun = 3;
488
	if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif)
489 490 491
		host->max_cmd_len = 32;
	else
		host->max_cmd_len = MAX_CMDSZ;
492
	host->max_channel = MAX_BUSES - 1;
493
	host->max_lun = ql2xmaxlun;
494
	host->unique_id = host->host_no;
495
	host->max_id = ha->max_fibre_devices;
496 497
	host->transportt = qla2xxx_transport_vport_template;

498 499 500
	ql_dbg(ql_dbg_vport, vha, 0xa007,
	    "Detect vport hba %ld at address = %p.\n",
	    vha->host_no, vha);
501 502 503

	vha->flags.init_done = 1;

504 505 506 507 508
	mutex_lock(&ha->vport_lock);
	set_bit(vha->vp_idx, ha->vp_idx_map);
	ha->cur_vport_count++;
	mutex_unlock(&ha->vport_lock);

509 510
	return vha;

511
create_vhost_failed:
512 513
	return NULL;
}
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530

static void
qla25xx_free_req_que(struct scsi_qla_host *vha, struct req_que *req)
{
	struct qla_hw_data *ha = vha->hw;
	uint16_t que_id = req->id;

	dma_free_coherent(&ha->pdev->dev, (req->length + 1) *
		sizeof(request_t), req->ring, req->dma);
	req->ring = NULL;
	req->dma = 0;
	if (que_id) {
		ha->req_q_map[que_id] = NULL;
		mutex_lock(&ha->vport_lock);
		clear_bit(que_id, ha->req_qid_map);
		mutex_unlock(&ha->vport_lock);
	}
531
	kfree(req->outstanding_cmds);
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
	kfree(req);
	req = NULL;
}

static void
qla25xx_free_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
{
	struct qla_hw_data *ha = vha->hw;
	uint16_t que_id = rsp->id;

	if (rsp->msix && rsp->msix->have_irq) {
		free_irq(rsp->msix->vector, rsp);
		rsp->msix->have_irq = 0;
		rsp->msix->rsp = NULL;
	}
	dma_free_coherent(&ha->pdev->dev, (rsp->length + 1) *
		sizeof(response_t), rsp->ring, rsp->dma);
	rsp->ring = NULL;
	rsp->dma = 0;
	if (que_id) {
		ha->rsp_q_map[que_id] = NULL;
		mutex_lock(&ha->vport_lock);
		clear_bit(que_id, ha->rsp_qid_map);
		mutex_unlock(&ha->vport_lock);
	}
	kfree(rsp);
	rsp = NULL;
}

int
qla25xx_delete_req_que(struct scsi_qla_host *vha, struct req_que *req)
{
	int ret = -1;

	if (req) {
		req->options |= BIT_0;
568
		ret = qla25xx_init_req_que(vha, req);
569 570 571 572 573 574 575
	}
	if (ret == QLA_SUCCESS)
		qla25xx_free_req_que(vha, req);

	return ret;
}

576
static int
577 578 579 580 581 582
qla25xx_delete_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
{
	int ret = -1;

	if (rsp) {
		rsp->options |= BIT_0;
583
		ret = qla25xx_init_rsp_que(vha, rsp);
584 585 586 587 588 589 590 591 592
	}
	if (ret == QLA_SUCCESS)
		qla25xx_free_rsp_que(vha, rsp);

	return ret;
}

/* Delete all queues for a given vhost */
int
593
qla25xx_delete_queues(struct scsi_qla_host *vha)
594 595 596 597 598 599
{
	int cnt, ret = 0;
	struct req_que *req = NULL;
	struct rsp_que *rsp = NULL;
	struct qla_hw_data *ha = vha->hw;

600 601 602
	/* Delete request queues */
	for (cnt = 1; cnt < ha->max_req_queues; cnt++) {
		req = ha->req_q_map[cnt];
Q
Quinn Tran 已提交
603
		if (req && test_bit(cnt, ha->req_qid_map)) {
604 605
			ret = qla25xx_delete_req_que(vha, req);
			if (ret != QLA_SUCCESS) {
606 607 608
				ql_log(ql_log_warn, vha, 0x00ea,
				    "Couldn't delete req que %d.\n",
				    req->id);
609 610 611
				return ret;
			}
		}
612 613 614 615 616
	}

	/* Delete response queues */
	for (cnt = 1; cnt < ha->max_rsp_queues; cnt++) {
		rsp = ha->rsp_q_map[cnt];
Q
Quinn Tran 已提交
617
		if (rsp && test_bit(cnt, ha->rsp_qid_map)) {
618 619
			ret = qla25xx_delete_rsp_que(vha, rsp);
			if (ret != QLA_SUCCESS) {
620 621 622
				ql_log(ql_log_warn, vha, 0x00eb,
				    "Couldn't delete rsp que %d.\n",
				    rsp->id);
623
				return ret;
624 625 626 627 628 629 630 631
			}
		}
	}
	return ret;
}

int
qla25xx_create_req_que(struct qla_hw_data *ha, uint16_t options,
632
	uint8_t vp_idx, uint16_t rid, int rsp_que, uint8_t qos)
633 634 635 636 637
{
	int ret = 0;
	struct req_que *req = NULL;
	struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
	uint16_t que_id = 0;
638
	device_reg_t *reg;
639
	uint32_t cnt;
640 641 642

	req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
	if (req == NULL) {
643 644
		ql_log(ql_log_fatal, base_vha, 0x00d9,
		    "Failed to allocate memory for request queue.\n");
645
		goto failed;
646 647 648 649 650 651 652
	}

	req->length = REQUEST_ENTRY_CNT_24XX;
	req->ring = dma_alloc_coherent(&ha->pdev->dev,
			(req->length + 1) * sizeof(request_t),
			&req->dma, GFP_KERNEL);
	if (req->ring == NULL) {
653
		ql_log(ql_log_fatal, base_vha, 0x00da,
654
		    "Failed to allocate memory for request_ring.\n");
655 656 657
		goto que_failed;
	}

658 659 660 661
	ret = qla2x00_alloc_outstanding_cmds(ha, req);
	if (ret != QLA_SUCCESS)
		goto que_failed;

662
	mutex_lock(&ha->vport_lock);
663 664
	que_id = find_first_zero_bit(ha->req_qid_map, ha->max_req_queues);
	if (que_id >= ha->max_req_queues) {
665
		mutex_unlock(&ha->vport_lock);
666 667
		ql_log(ql_log_warn, base_vha, 0x00db,
		    "No resources to create additional request queue.\n");
668 669 670 671 672 673 674 675
		goto que_failed;
	}
	set_bit(que_id, ha->req_qid_map);
	ha->req_q_map[que_id] = req;
	req->rid = rid;
	req->vp_idx = vp_idx;
	req->qos = qos;

676 677 678 679 680 681
	ql_dbg(ql_dbg_multiq, base_vha, 0xc002,
	    "queue_id=%d rid=%d vp_idx=%d qos=%d.\n",
	    que_id, req->rid, req->vp_idx, req->qos);
	ql_dbg(ql_dbg_init, base_vha, 0x00dc,
	    "queue_id=%d rid=%d vp_idx=%d qos=%d.\n",
	    que_id, req->rid, req->vp_idx, req->qos);
682 683 684
	if (rsp_que < 0)
		req->rsp = NULL;
	else
685 686 687 688 689 690 691 692
		req->rsp = ha->rsp_q_map[rsp_que];
	/* Use alternate PCI bus number */
	if (MSB(req->rid))
		options |= BIT_4;
	/* Use alternate PCI devfn */
	if (LSB(req->rid))
		options |= BIT_5;
	req->options = options;
693

694 695 696 697
	ql_dbg(ql_dbg_multiq, base_vha, 0xc003,
	    "options=0x%x.\n", req->options);
	ql_dbg(ql_dbg_init, base_vha, 0x00dd,
	    "options=0x%x.\n", req->options);
698
	for (cnt = 1; cnt < req->num_outstanding_cmds; cnt++)
699 700 701
		req->outstanding_cmds[cnt] = NULL;
	req->current_outstanding_cmd = 1;

702 703 704 705
	req->ring_ptr = req->ring;
	req->ring_index = 0;
	req->cnt = req->length;
	req->id = que_id;
706
	reg = ISP_QUE_REG(ha, que_id);
707 708
	req->req_q_in = &reg->isp25mq.req_q_in;
	req->req_q_out = &reg->isp25mq.req_q_out;
709
	req->max_q_depth = ha->req_q_map[0]->max_q_depth;
710
	req->out_ptr = (void *)(req->ring + req->length);
711
	mutex_unlock(&ha->vport_lock);
712 713 714 715 716 717 718 719 720 721
	ql_dbg(ql_dbg_multiq, base_vha, 0xc004,
	    "ring_ptr=%p ring_index=%d, "
	    "cnt=%d id=%d max_q_depth=%d.\n",
	    req->ring_ptr, req->ring_index,
	    req->cnt, req->id, req->max_q_depth);
	ql_dbg(ql_dbg_init, base_vha, 0x00de,
	    "ring_ptr=%p ring_index=%d, "
	    "cnt=%d id=%d max_q_depth=%d.\n",
	    req->ring_ptr, req->ring_index, req->cnt,
	    req->id, req->max_q_depth);
722

723
	ret = qla25xx_init_req_que(base_vha, req);
724
	if (ret != QLA_SUCCESS) {
725 726
		ql_log(ql_log_fatal, base_vha, 0x00df,
		    "%s failed.\n", __func__);
727 728 729 730 731 732 733 734 735 736
		mutex_lock(&ha->vport_lock);
		clear_bit(que_id, ha->req_qid_map);
		mutex_unlock(&ha->vport_lock);
		goto que_failed;
	}

	return req->id;

que_failed:
	qla25xx_free_req_que(base_vha, req);
737
failed:
738 739 740
	return 0;
}

741 742
static void qla_do_work(struct work_struct *work)
{
743
	unsigned long flags;
744 745
	struct rsp_que *rsp = container_of(work, struct rsp_que, q_work);
	struct scsi_qla_host *vha;
746
	struct qla_hw_data *ha = rsp->hw;
747

748 749
	spin_lock_irqsave(&rsp->hw->hardware_lock, flags);
	vha = pci_get_drvdata(ha->pdev);
750
	qla24xx_process_response_queue(vha, rsp);
751
	spin_unlock_irqrestore(&rsp->hw->hardware_lock, flags);
752 753
}

754 755 756
/* create response queue */
int
qla25xx_create_rsp_que(struct qla_hw_data *ha, uint16_t options,
757
	uint8_t vp_idx, uint16_t rid, int req)
758 759 760 761
{
	int ret = 0;
	struct rsp_que *rsp = NULL;
	struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
762
	uint16_t que_id = 0;
763
	device_reg_t *reg;
764 765 766

	rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
	if (rsp == NULL) {
767 768
		ql_log(ql_log_warn, base_vha, 0x0066,
		    "Failed to allocate memory for response queue.\n");
769
		goto failed;
770 771
	}

772
	rsp->length = RESPONSE_ENTRY_CNT_MQ;
773 774 775 776
	rsp->ring = dma_alloc_coherent(&ha->pdev->dev,
			(rsp->length + 1) * sizeof(response_t),
			&rsp->dma, GFP_KERNEL);
	if (rsp->ring == NULL) {
777 778
		ql_log(ql_log_warn, base_vha, 0x00e1,
		    "Failed to allocate memory for response ring.\n");
779 780 781 782
		goto que_failed;
	}

	mutex_lock(&ha->vport_lock);
783 784
	que_id = find_first_zero_bit(ha->rsp_qid_map, ha->max_rsp_queues);
	if (que_id >= ha->max_rsp_queues) {
785
		mutex_unlock(&ha->vport_lock);
786 787
		ql_log(ql_log_warn, base_vha, 0x00e2,
		    "No resources to create additional request queue.\n");
788 789 790 791 792 793 794
		goto que_failed;
	}
	set_bit(que_id, ha->rsp_qid_map);

	if (ha->flags.msix_enabled)
		rsp->msix = &ha->msix_entries[que_id + 1];
	else
795
		ql_log(ql_log_warn, base_vha, 0x00e3,
796
		    "MSIX not enabled.\n");
797 798 799 800 801

	ha->rsp_q_map[que_id] = rsp;
	rsp->rid = rid;
	rsp->vp_idx = vp_idx;
	rsp->hw = ha;
802 803 804
	ql_dbg(ql_dbg_init, base_vha, 0x00e4,
	    "queue_id=%d rid=%d vp_idx=%d hw=%p.\n",
	    que_id, rsp->rid, rsp->vp_idx, rsp->hw);
805 806 807 808 809 810
	/* Use alternate PCI bus number */
	if (MSB(rsp->rid))
		options |= BIT_4;
	/* Use alternate PCI devfn */
	if (LSB(rsp->rid))
		options |= BIT_5;
811 812 813 814
	/* Enable MSIX handshake mode on for uncapable adapters */
	if (!IS_MSIX_NACK_CAPABLE(ha))
		options |= BIT_6;

815 816
	rsp->options = options;
	rsp->id = que_id;
817 818 819
	reg = ISP_QUE_REG(ha, que_id);
	rsp->rsp_q_in = &reg->isp25mq.rsp_q_in;
	rsp->rsp_q_out = &reg->isp25mq.rsp_q_out;
820
	rsp->in_ptr = (void *)(rsp->ring + rsp->length);
821
	mutex_unlock(&ha->vport_lock);
822 823 824 825 826 827 828 829
	ql_dbg(ql_dbg_multiq, base_vha, 0xc00b,
	    "options=%x id=%d rsp_q_in=%p rsp_q_out=%p",
	    rsp->options, rsp->id, rsp->rsp_q_in,
	    rsp->rsp_q_out);
	ql_dbg(ql_dbg_init, base_vha, 0x00e5,
	    "options=%x id=%d rsp_q_in=%p rsp_q_out=%p",
	    rsp->options, rsp->id, rsp->rsp_q_in,
	    rsp->rsp_q_out);
830 831 832 833 834

	ret = qla25xx_request_irq(rsp);
	if (ret)
		goto que_failed;

835
	ret = qla25xx_init_rsp_que(base_vha, rsp);
836
	if (ret != QLA_SUCCESS) {
837 838
		ql_log(ql_log_fatal, base_vha, 0x00e7,
		    "%s failed.\n", __func__);
839 840 841 842 843
		mutex_lock(&ha->vport_lock);
		clear_bit(que_id, ha->rsp_qid_map);
		mutex_unlock(&ha->vport_lock);
		goto que_failed;
	}
844 845 846 847
	if (req >= 0)
		rsp->req = ha->req_q_map[req];
	else
		rsp->req = NULL;
848 849

	qla2x00_init_response_q_entries(rsp);
850 851
	if (rsp->hw->wq)
		INIT_WORK(&rsp->q_work, qla_do_work);
852 853 854 855
	return rsp->id;

que_failed:
	qla25xx_free_rsp_que(base_vha, rsp);
856
failed:
857 858
	return 0;
}