2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2008 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 #include <linux/version.h>
10 #include <linux/moduleparam.h>
11 #include <linux/vmalloc.h>
12 #include <linux/smp_lock.h>
13 #include <linux/list.h>
15 #include <scsi/scsi_tcq.h>
16 #include <scsi/scsicam.h>
17 #include <linux/delay.h>
20 qla2x00_vp_stop_timer(scsi_qla_host_t *vha)
22 if (vha->parent && vha->timer_active) {
23 del_timer_sync(&vha->timer);
24 vha->timer_active = 0;
29 qla24xx_allocate_vp_id(scsi_qla_host_t *vha)
32 scsi_qla_host_t *ha = vha->parent;
34 /* Find an empty slot and assign an vp_id */
35 mutex_lock(&ha->vport_lock);
36 vp_id = find_first_zero_bit(ha->vp_idx_map, ha->max_npiv_vports + 1);
37 if (vp_id > ha->max_npiv_vports) {
38 DEBUG15(printk ("vp_id %d is bigger than max-supported %d.\n",
39 vp_id, ha->max_npiv_vports));
40 mutex_unlock(&ha->vport_lock);
44 set_bit(vp_id, ha->vp_idx_map);
47 list_add_tail(&vha->vp_list, &ha->vp_list);
48 mutex_unlock(&ha->vport_lock);
53 qla24xx_deallocate_vp_id(scsi_qla_host_t *vha)
56 scsi_qla_host_t *ha = vha->parent;
58 mutex_lock(&ha->vport_lock);
61 clear_bit(vp_id, ha->vp_idx_map);
62 list_del(&vha->vp_list);
63 mutex_unlock(&ha->vport_lock);
66 static scsi_qla_host_t *
67 qla24xx_find_vhost_by_name(scsi_qla_host_t *ha, uint8_t *port_name)
71 /* Locate matching device in database. */
72 list_for_each_entry(vha, &ha->vp_list, vp_list) {
73 if (!memcmp(port_name, vha->port_name, WWN_SIZE))
80 * qla2x00_mark_vp_devices_dead
81 * Updates fcport state when device goes offline.
84 * ha = adapter block pointer.
85 * fcport = port structure pointer.
93 qla2x00_mark_vp_devices_dead(scsi_qla_host_t *vha)
96 scsi_qla_host_t *pha = to_qla_parent(vha);
98 list_for_each_entry(fcport, &pha->fcports, list) {
99 if (fcport->vp_idx != vha->vp_idx)
102 DEBUG15(printk("scsi(%ld): Marking port dead, "
103 "loop_id=0x%04x :%x\n",
104 vha->host_no, fcport->loop_id, fcport->vp_idx));
106 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
107 qla2x00_mark_device_lost(vha, fcport, 0, 0);
112 qla24xx_disable_vp(scsi_qla_host_t *vha)
116 ret = qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
117 atomic_set(&vha->loop_state, LOOP_DOWN);
118 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
120 /* Delete all vp's fcports from parent's list */
121 qla2x00_mark_vp_devices_dead(vha);
122 atomic_set(&vha->vp_state, VP_FAILED);
123 vha->flags.management_server_logged_in = 0;
124 if (ret == QLA_SUCCESS) {
125 fc_vport_set_state(vha->fc_vport, FC_VPORT_DISABLED);
127 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
134 qla24xx_enable_vp(scsi_qla_host_t *vha)
137 scsi_qla_host_t *ha = vha->parent;
139 /* Check if physical ha port is Up */
140 if (atomic_read(&ha->loop_state) == LOOP_DOWN ||
141 atomic_read(&ha->loop_state) == LOOP_DEAD ) {
142 vha->vp_err_state = VP_ERR_PORTDWN;
143 fc_vport_set_state(vha->fc_vport, FC_VPORT_LINKDOWN);
147 /* Initialize the new vport unless it is a persistent port */
148 mutex_lock(&ha->vport_lock);
149 ret = qla24xx_modify_vp_config(vha);
150 mutex_unlock(&ha->vport_lock);
152 if (ret != QLA_SUCCESS) {
153 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
157 DEBUG15(qla_printk(KERN_INFO, ha,
158 "Virtual port with id: %d - Enabled\n", vha->vp_idx));
162 DEBUG15(qla_printk(KERN_INFO, ha,
163 "Virtual port with id: %d - Disabled\n", vha->vp_idx));
168 qla24xx_configure_vp(scsi_qla_host_t *vha)
170 struct fc_vport *fc_vport;
173 fc_vport = vha->fc_vport;
175 DEBUG15(printk("scsi(%ld): %s: change request #3 for this host.\n",
176 vha->host_no, __func__));
177 ret = qla2x00_send_change_request(vha, 0x3, vha->vp_idx);
178 if (ret != QLA_SUCCESS) {
179 DEBUG15(qla_printk(KERN_ERR, vha, "Failed to enable receiving"
180 " of RSCN requests: 0x%x\n", ret));
183 /* Corresponds to SCR enabled */
184 clear_bit(VP_SCR_NEEDED, &vha->vp_flags);
187 vha->flags.online = 1;
188 if (qla24xx_configure_vhba(vha))
191 atomic_set(&vha->vp_state, VP_ACTIVE);
192 fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
196 qla2x00_alert_all_vps(scsi_qla_host_t *ha, uint16_t *mb)
198 int i, vp_idx_matched;
199 scsi_qla_host_t *vha;
204 for_each_mapped_vp_idx(ha, i) {
207 list_for_each_entry(vha, &ha->vp_list, vp_list) {
208 if (i == vha->vp_idx) {
214 if (vp_idx_matched) {
216 case MBA_LIP_OCCURRED:
220 case MBA_POINT_TO_POINT:
221 case MBA_CHG_IN_CONNECTION:
222 case MBA_PORT_UPDATE:
223 case MBA_RSCN_UPDATE:
224 DEBUG15(printk("scsi(%ld)%s: Async_event for"
225 " VP[%d], mb = 0x%x, vha=%p\n",
226 vha->host_no, __func__,i, *mb, vha));
227 qla2x00_async_event(vha, mb);
235 qla2x00_vp_abort_isp(scsi_qla_host_t *vha)
238 * Physical port will do most of the abort and recovery work. We can
239 * just treat it as a loop down
241 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
242 atomic_set(&vha->loop_state, LOOP_DOWN);
243 qla2x00_mark_all_devices_lost(vha, 0);
245 if (!atomic_read(&vha->loop_down_timer))
246 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
249 DEBUG15(printk("scsi(%ld): Scheduling enable of Vport %d...\n",
250 vha->host_no, vha->vp_idx));
251 qla24xx_enable_vp(vha);
255 qla2x00_do_dpc_vp(scsi_qla_host_t *vha)
257 scsi_qla_host_t *ha = vha->parent;
259 if (test_and_clear_bit(VP_IDX_ACQUIRED, &vha->vp_flags)) {
260 /* VP acquired. complete port configuration */
261 if (atomic_read(&ha->loop_state) == LOOP_READY) {
262 qla24xx_configure_vp(vha);
264 set_bit(VP_IDX_ACQUIRED, &vha->vp_flags);
265 set_bit(VP_DPC_NEEDED, &ha->dpc_flags);
271 if (test_and_clear_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
272 qla2x00_vp_abort_isp(vha);
274 if (test_and_clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) &&
275 (!(test_and_set_bit(RESET_ACTIVE, &vha->dpc_flags)))) {
276 clear_bit(RESET_ACTIVE, &vha->dpc_flags);
279 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
280 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags))) {
281 qla2x00_loop_resync(vha);
282 clear_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags);
290 qla2x00_do_dpc_all_vps(scsi_qla_host_t *ha)
293 int i, vp_idx_matched;
294 scsi_qla_host_t *vha;
298 if (list_empty(&ha->vp_list))
301 clear_bit(VP_DPC_NEEDED, &ha->dpc_flags);
303 for_each_mapped_vp_idx(ha, i) {
306 list_for_each_entry(vha, &ha->vp_list, vp_list) {
307 if (i == vha->vp_idx) {
314 ret = qla2x00_do_dpc_vp(vha);
319 qla24xx_vport_create_req_sanity_check(struct fc_vport *fc_vport)
321 scsi_qla_host_t *ha = shost_priv(fc_vport->shost);
322 scsi_qla_host_t *vha;
323 uint8_t port_name[WWN_SIZE];
325 if (fc_vport->roles != FC_PORT_ROLE_FCP_INITIATOR)
326 return VPCERR_UNSUPPORTED;
328 /* Check up the F/W and H/W support NPIV */
329 if (!ha->flags.npiv_supported)
330 return VPCERR_UNSUPPORTED;
332 /* Check up whether npiv supported switch presented */
333 if (!(ha->switch_cap & FLOGI_MID_SUPPORT))
334 return VPCERR_NO_FABRIC_SUPP;
336 /* Check up unique WWPN */
337 u64_to_wwn(fc_vport->port_name, port_name);
338 if (!memcmp(port_name, ha->port_name, WWN_SIZE))
339 return VPCERR_BAD_WWN;
340 vha = qla24xx_find_vhost_by_name(ha, port_name);
342 return VPCERR_BAD_WWN;
344 /* Check up max-npiv-supports */
345 if (ha->num_vhosts > ha->max_npiv_vports) {
346 DEBUG15(printk("scsi(%ld): num_vhosts %ud is bigger than "
347 "max_npv_vports %ud.\n", ha->host_no,
348 ha->num_vhosts, ha->max_npiv_vports));
349 return VPCERR_UNSUPPORTED;
355 qla24xx_create_vhost(struct fc_vport *fc_vport)
357 scsi_qla_host_t *ha = shost_priv(fc_vport->shost);
358 scsi_qla_host_t *vha;
359 struct Scsi_Host *host;
361 host = scsi_host_alloc(&qla24xx_driver_template,
362 sizeof(scsi_qla_host_t));
365 "qla2xxx: scsi_host_alloc() failed for vport\n");
369 vha = shost_priv(host);
371 /* clone the parent hba */
372 memcpy(vha, ha, sizeof (scsi_qla_host_t));
374 fc_vport->dd_data = vha;
376 vha->node_name = kmalloc(WWN_SIZE * sizeof(char), GFP_KERNEL);
378 goto create_vhost_failed_1;
380 vha->port_name = kmalloc(WWN_SIZE * sizeof(char), GFP_KERNEL);
382 goto create_vhost_failed_2;
385 u64_to_wwn(fc_vport->node_name, vha->node_name);
386 u64_to_wwn(fc_vport->port_name, vha->port_name);
389 vha->host_no = host->host_no;
391 vha->fc_vport = fc_vport;
392 vha->device_flags = 0;
393 vha->instance = num_hosts;
394 vha->vp_idx = qla24xx_allocate_vp_id(vha);
395 if (vha->vp_idx > ha->max_npiv_vports) {
396 DEBUG15(printk("scsi(%ld): Couldn't allocate vp_id.\n",
398 goto create_vhost_failed_3;
400 vha->mgmt_svr_loop_id = 10 + vha->vp_idx;
402 init_completion(&vha->mbx_cmd_comp);
403 complete(&vha->mbx_cmd_comp);
404 init_completion(&vha->mbx_intr_comp);
406 INIT_LIST_HEAD(&vha->list);
407 INIT_LIST_HEAD(&vha->fcports);
408 INIT_LIST_HEAD(&vha->vp_fcports);
409 INIT_LIST_HEAD(&vha->work_list);
412 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
413 set_bit(REGISTER_FC4_NEEDED, &vha->dpc_flags);
416 * To fix the issue of processing a parent's RSCN for the vport before
417 * its SCR is complete.
419 set_bit(VP_SCR_NEEDED, &vha->vp_flags);
420 atomic_set(&vha->loop_state, LOOP_DOWN);
421 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
423 qla2x00_start_timer(vha, qla2x00_timer, WATCH_INTERVAL);
425 host->can_queue = vha->request_q_length + 128;
427 host->cmd_per_lun = 3;
428 host->max_cmd_len = MAX_CMDSZ;
429 host->max_channel = MAX_BUSES - 1;
430 host->max_lun = MAX_LUNS;
431 host->unique_id = vha->instance;
432 host->max_id = MAX_TARGETS_2200;
433 host->transportt = qla2xxx_transport_vport_template;
435 DEBUG15(printk("DEBUG: detect vport hba %ld at address = %p\n",
438 vha->flags.init_done = 1;
441 mutex_lock(&ha->vport_lock);
442 set_bit(vha->vp_idx, ha->vp_idx_map);
443 ha->cur_vport_count++;
444 mutex_unlock(&ha->vport_lock);
448 create_vhost_failed_3:
449 kfree(vha->port_name);
451 create_vhost_failed_2:
452 kfree(vha->node_name);
454 create_vhost_failed_1: