blob: bc1a7453c5d84c7455cd43cfd1fd6cf83401bb73 [file] [log] [blame]
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001/*
Andrew Vasquez01e58d82008-04-03 13:13:13 -07002 * QLogic Fibre Channel HBA Driver
Giridhar Malavalide7c5d02010-07-23 15:28:36 +05003 * Copyright (c) 2003-2010 QLogic Corporation
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07004 *
Andrew Vasquez01e58d82008-04-03 13:13:13 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07006 */
7#include "qla_def.h"
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08008#include "qla_gbl.h"
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07009
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070010#include <linux/moduleparam.h>
11#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070013#include <linux/list.h>
14
15#include <scsi/scsi_tcq.h>
16#include <scsi/scsicam.h>
17#include <linux/delay.h>
18
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070019void
20qla2x00_vp_stop_timer(scsi_qla_host_t *vha)
21{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080022 if (vha->vp_idx && vha->timer_active) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070023 del_timer_sync(&vha->timer);
24 vha->timer_active = 0;
25 }
26}
27
Adrian Bunka824ebb2008-01-17 09:02:15 -080028static uint32_t
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070029qla24xx_allocate_vp_id(scsi_qla_host_t *vha)
30{
31 uint32_t vp_id;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080032 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -070033 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070034
35 /* Find an empty slot and assign an vp_id */
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -070036 mutex_lock(&ha->vport_lock);
Andrew Vasquezeb66dc62007-11-12 10:30:58 -080037 vp_id = find_first_zero_bit(ha->vp_idx_map, ha->max_npiv_vports + 1);
38 if (vp_id > ha->max_npiv_vports) {
39 DEBUG15(printk ("vp_id %d is bigger than max-supported %d.\n",
40 vp_id, ha->max_npiv_vports));
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -070041 mutex_unlock(&ha->vport_lock);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070042 return vp_id;
43 }
44
Andrew Vasquezeb66dc62007-11-12 10:30:58 -080045 set_bit(vp_id, ha->vp_idx_map);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070046 ha->num_vhosts++;
47 vha->vp_idx = vp_id;
Arun Easifeafb7b2010-09-03 14:57:00 -070048
49 spin_lock_irqsave(&ha->vport_slock, flags);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080050 list_add_tail(&vha->list, &ha->vp_list);
Arun Easifeafb7b2010-09-03 14:57:00 -070051 spin_unlock_irqrestore(&ha->vport_slock, flags);
52
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -070053 mutex_unlock(&ha->vport_lock);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070054 return vp_id;
55}
56
57void
58qla24xx_deallocate_vp_id(scsi_qla_host_t *vha)
59{
60 uint16_t vp_id;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080061 struct qla_hw_data *ha = vha->hw;
Arun Easifeafb7b2010-09-03 14:57:00 -070062 unsigned long flags = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070063
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -070064 mutex_lock(&ha->vport_lock);
Arun Easifeafb7b2010-09-03 14:57:00 -070065 /*
66 * Wait for all pending activities to finish before removing vport from
67 * the list.
68 * Lock needs to be held for safe removal from the list (it
69 * ensures no active vp_list traversal while the vport is removed
70 * from the queue)
71 */
72 spin_lock_irqsave(&ha->vport_slock, flags);
73 while (atomic_read(&vha->vref_count)) {
74 spin_unlock_irqrestore(&ha->vport_slock, flags);
75
76 msleep(500);
77
78 spin_lock_irqsave(&ha->vport_slock, flags);
79 }
80 list_del(&vha->list);
81 spin_unlock_irqrestore(&ha->vport_slock, flags);
82
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070083 vp_id = vha->vp_idx;
84 ha->num_vhosts--;
Andrew Vasquezeb66dc62007-11-12 10:30:58 -080085 clear_bit(vp_id, ha->vp_idx_map);
Arun Easifeafb7b2010-09-03 14:57:00 -070086
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -070087 mutex_unlock(&ha->vport_lock);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070088}
89
Adrian Bunka824ebb2008-01-17 09:02:15 -080090static scsi_qla_host_t *
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080091qla24xx_find_vhost_by_name(struct qla_hw_data *ha, uint8_t *port_name)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070092{
93 scsi_qla_host_t *vha;
Anirban Chakrabortyee546b62009-03-05 11:07:02 -080094 struct scsi_qla_host *tvha;
Arun Easifeafb7b2010-09-03 14:57:00 -070095 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070096
Arun Easifeafb7b2010-09-03 14:57:00 -070097 spin_lock_irqsave(&ha->vport_slock, flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070098 /* Locate matching device in database. */
Anirban Chakrabortyee546b62009-03-05 11:07:02 -080099 list_for_each_entry_safe(vha, tvha, &ha->vp_list, list) {
Arun Easifeafb7b2010-09-03 14:57:00 -0700100 if (!memcmp(port_name, vha->port_name, WWN_SIZE)) {
101 spin_unlock_irqrestore(&ha->vport_slock, flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700102 return vha;
Arun Easifeafb7b2010-09-03 14:57:00 -0700103 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700104 }
Arun Easifeafb7b2010-09-03 14:57:00 -0700105 spin_unlock_irqrestore(&ha->vport_slock, flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700106 return NULL;
107}
108
109/*
110 * qla2x00_mark_vp_devices_dead
111 * Updates fcport state when device goes offline.
112 *
113 * Input:
114 * ha = adapter block pointer.
115 * fcport = port structure pointer.
116 *
117 * Return:
118 * None.
119 *
120 * Context:
121 */
Andrew Vasquez26ff7762007-09-20 14:07:47 -0700122static void
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700123qla2x00_mark_vp_devices_dead(scsi_qla_host_t *vha)
124{
Arun Easifeafb7b2010-09-03 14:57:00 -0700125 /*
126 * !!! NOTE !!!
127 * This function, if called in contexts other than vp create, disable
128 * or delete, please make sure this is synchronized with the
129 * delete thread.
130 */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700131 fc_port_t *fcport;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700132
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800133 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700134 DEBUG15(printk("scsi(%ld): Marking port dead, "
135 "loop_id=0x%04x :%x\n",
136 vha->host_no, fcport->loop_id, fcport->vp_idx));
137
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800138 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700139 qla2x00_mark_device_lost(vha, fcport, 0, 0);
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -0700140 atomic_set(&fcport->state, FCS_UNCONFIGURED);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700141 }
142}
143
144int
145qla24xx_disable_vp(scsi_qla_host_t *vha)
146{
147 int ret;
148
149 ret = qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
150 atomic_set(&vha->loop_state, LOOP_DOWN);
151 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
152
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700153 qla2x00_mark_vp_devices_dead(vha);
154 atomic_set(&vha->vp_state, VP_FAILED);
155 vha->flags.management_server_logged_in = 0;
156 if (ret == QLA_SUCCESS) {
157 fc_vport_set_state(vha->fc_vport, FC_VPORT_DISABLED);
158 } else {
159 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
160 return -1;
161 }
162 return 0;
163}
164
165int
166qla24xx_enable_vp(scsi_qla_host_t *vha)
167{
168 int ret;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800169 struct qla_hw_data *ha = vha->hw;
170 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700171
172 /* Check if physical ha port is Up */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800173 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
Lalit Chandivade3f3b6f92010-05-28 15:08:24 -0700174 atomic_read(&base_vha->loop_state) == LOOP_DEAD ||
175 !(ha->current_topology & ISP_CFG_F)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700176 vha->vp_err_state = VP_ERR_PORTDWN;
177 fc_vport_set_state(vha->fc_vport, FC_VPORT_LINKDOWN);
178 goto enable_failed;
179 }
180
181 /* Initialize the new vport unless it is a persistent port */
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -0700182 mutex_lock(&ha->vport_lock);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700183 ret = qla24xx_modify_vp_config(vha);
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -0700184 mutex_unlock(&ha->vport_lock);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700185
186 if (ret != QLA_SUCCESS) {
187 fc_vport_set_state(vha->fc_vport, FC_VPORT_FAILED);
188 goto enable_failed;
189 }
190
191 DEBUG15(qla_printk(KERN_INFO, ha,
192 "Virtual port with id: %d - Enabled\n", vha->vp_idx));
193 return 0;
194
195enable_failed:
196 DEBUG15(qla_printk(KERN_INFO, ha,
197 "Virtual port with id: %d - Disabled\n", vha->vp_idx));
198 return 1;
199}
200
Andrew Vasquez26ff7762007-09-20 14:07:47 -0700201static void
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700202qla24xx_configure_vp(scsi_qla_host_t *vha)
203{
204 struct fc_vport *fc_vport;
205 int ret;
206
207 fc_vport = vha->fc_vport;
208
209 DEBUG15(printk("scsi(%ld): %s: change request #3 for this host.\n",
210 vha->host_no, __func__));
211 ret = qla2x00_send_change_request(vha, 0x3, vha->vp_idx);
212 if (ret != QLA_SUCCESS) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800213 DEBUG15(qla_printk(KERN_ERR, vha->hw, "Failed to enable "
214 "receiving of RSCN requests: 0x%x\n", ret));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700215 return;
216 } else {
217 /* Corresponds to SCR enabled */
218 clear_bit(VP_SCR_NEEDED, &vha->vp_flags);
219 }
220
221 vha->flags.online = 1;
222 if (qla24xx_configure_vhba(vha))
223 return;
224
225 atomic_set(&vha->vp_state, VP_ACTIVE);
226 fc_vport_set_state(fc_vport, FC_VPORT_ACTIVE);
227}
228
229void
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800230qla2x00_alert_all_vps(struct rsp_que *rsp, uint16_t *mb)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700231{
Arun Easifeafb7b2010-09-03 14:57:00 -0700232 scsi_qla_host_t *vha;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800233 struct qla_hw_data *ha = rsp->hw;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800234 int i = 0;
Arun Easifeafb7b2010-09-03 14:57:00 -0700235 unsigned long flags;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700236
Arun Easifeafb7b2010-09-03 14:57:00 -0700237 spin_lock_irqsave(&ha->vport_slock, flags);
238 list_for_each_entry(vha, &ha->vp_list, list) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800239 if (vha->vp_idx) {
Arun Easifeafb7b2010-09-03 14:57:00 -0700240 atomic_inc(&vha->vref_count);
241 spin_unlock_irqrestore(&ha->vport_slock, flags);
242
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700243 switch (mb[0]) {
244 case MBA_LIP_OCCURRED:
245 case MBA_LOOP_UP:
246 case MBA_LOOP_DOWN:
247 case MBA_LIP_RESET:
248 case MBA_POINT_TO_POINT:
249 case MBA_CHG_IN_CONNECTION:
250 case MBA_PORT_UPDATE:
251 case MBA_RSCN_UPDATE:
252 DEBUG15(printk("scsi(%ld)%s: Async_event for"
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800253 " VP[%d], mb = 0x%x, vha=%p\n",
254 vha->host_no, __func__, i, *mb, vha));
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800255 qla2x00_async_event(vha, rsp, mb);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700256 break;
257 }
Arun Easifeafb7b2010-09-03 14:57:00 -0700258
259 spin_lock_irqsave(&ha->vport_slock, flags);
260 atomic_dec(&vha->vref_count);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700261 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800262 i++;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700263 }
Arun Easifeafb7b2010-09-03 14:57:00 -0700264 spin_unlock_irqrestore(&ha->vport_slock, flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700265}
266
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800267int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700268qla2x00_vp_abort_isp(scsi_qla_host_t *vha)
269{
270 /*
271 * Physical port will do most of the abort and recovery work. We can
272 * just treat it as a loop down
273 */
274 if (atomic_read(&vha->loop_state) != LOOP_DOWN) {
275 atomic_set(&vha->loop_state, LOOP_DOWN);
276 qla2x00_mark_all_devices_lost(vha, 0);
277 } else {
278 if (!atomic_read(&vha->loop_down_timer))
279 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
280 }
281
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -0700282 /*
283 * To exclusively reset vport, we need to log it out first. Note: this
284 * control_vp can fail if ISP reset is already issued, this is
285 * expected, as the vp would be already logged out due to ISP reset.
286 */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800287 if (!test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
288 qla24xx_control_vp(vha, VCE_COMMAND_DISABLE_VPS_LOGO_ALL);
289
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700290 DEBUG15(printk("scsi(%ld): Scheduling enable of Vport %d...\n",
291 vha->host_no, vha->vp_idx));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800292 return qla24xx_enable_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700293}
294
Adrian Bunka824ebb2008-01-17 09:02:15 -0800295static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700296qla2x00_do_dpc_vp(scsi_qla_host_t *vha)
297{
Andrew Vasquezac280b62009-08-20 11:06:05 -0700298 qla2x00_do_work(vha);
299
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700300 if (test_and_clear_bit(VP_IDX_ACQUIRED, &vha->vp_flags)) {
301 /* VP acquired. complete port configuration */
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -0700302 qla24xx_configure_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700303 return 0;
304 }
305
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800306 if (test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags)) {
307 qla2x00_update_fcports(vha);
308 clear_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags);
309 }
310
311 if ((test_and_clear_bit(RELOGIN_NEEDED, &vha->dpc_flags)) &&
312 !test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) &&
313 atomic_read(&vha->loop_state) != LOOP_DOWN) {
314
315 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
316 vha->host_no));
317 qla2x00_relogin(vha);
318
319 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
320 vha->host_no));
321 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700322
323 if (test_and_clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) &&
324 (!(test_and_set_bit(RESET_ACTIVE, &vha->dpc_flags)))) {
325 clear_bit(RESET_ACTIVE, &vha->dpc_flags);
326 }
327
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800328 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags)) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700329 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags))) {
330 qla2x00_loop_resync(vha);
331 clear_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags);
332 }
333 }
334
335 return 0;
336}
337
338void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800339qla2x00_do_dpc_all_vps(scsi_qla_host_t *vha)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700340{
341 int ret;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800342 struct qla_hw_data *ha = vha->hw;
343 scsi_qla_host_t *vp;
Arun Easifeafb7b2010-09-03 14:57:00 -0700344 unsigned long flags = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700345
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800346 if (vha->vp_idx)
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700347 return;
348 if (list_empty(&ha->vp_list))
349 return;
350
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800351 clear_bit(VP_DPC_NEEDED, &vha->dpc_flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700352
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -0700353 if (!(ha->current_topology & ISP_CFG_F))
354 return;
355
Arun Easifeafb7b2010-09-03 14:57:00 -0700356 spin_lock_irqsave(&ha->vport_slock, flags);
357 list_for_each_entry(vp, &ha->vp_list, list) {
358 if (vp->vp_idx) {
359 atomic_inc(&vp->vref_count);
360 spin_unlock_irqrestore(&ha->vport_slock, flags);
361
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800362 ret = qla2x00_do_dpc_vp(vp);
Arun Easifeafb7b2010-09-03 14:57:00 -0700363
364 spin_lock_irqsave(&ha->vport_slock, flags);
365 atomic_dec(&vp->vref_count);
366 }
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700367 }
Arun Easifeafb7b2010-09-03 14:57:00 -0700368 spin_unlock_irqrestore(&ha->vport_slock, flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700369}
370
371int
372qla24xx_vport_create_req_sanity_check(struct fc_vport *fc_vport)
373{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800374 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
375 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700376 scsi_qla_host_t *vha;
377 uint8_t port_name[WWN_SIZE];
378
379 if (fc_vport->roles != FC_PORT_ROLE_FCP_INITIATOR)
380 return VPCERR_UNSUPPORTED;
381
382 /* Check up the F/W and H/W support NPIV */
383 if (!ha->flags.npiv_supported)
384 return VPCERR_UNSUPPORTED;
385
386 /* Check up whether npiv supported switch presented */
387 if (!(ha->switch_cap & FLOGI_MID_SUPPORT))
388 return VPCERR_NO_FABRIC_SUPP;
389
390 /* Check up unique WWPN */
391 u64_to_wwn(fc_vport->port_name, port_name);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800392 if (!memcmp(port_name, base_vha->port_name, WWN_SIZE))
Seokmann Ju50db6b12008-01-17 09:02:14 -0800393 return VPCERR_BAD_WWN;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700394 vha = qla24xx_find_vhost_by_name(ha, port_name);
395 if (vha)
396 return VPCERR_BAD_WWN;
397
398 /* Check up max-npiv-supports */
399 if (ha->num_vhosts > ha->max_npiv_vports) {
Andrew Vasquezeb66dc62007-11-12 10:30:58 -0800400 DEBUG15(printk("scsi(%ld): num_vhosts %ud is bigger than "
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800401 "max_npv_vports %ud.\n", base_vha->host_no,
Andrew Vasquezeb66dc62007-11-12 10:30:58 -0800402 ha->num_vhosts, ha->max_npiv_vports));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700403 return VPCERR_UNSUPPORTED;
404 }
405 return 0;
406}
407
408scsi_qla_host_t *
409qla24xx_create_vhost(struct fc_vport *fc_vport)
410{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800411 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
412 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700413 scsi_qla_host_t *vha;
Giridhar Malavalia5326f82009-03-24 09:07:56 -0700414 struct scsi_host_template *sht = &qla2xxx_driver_template;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700415 struct Scsi_Host *host;
416
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800417 vha = qla2x00_create_host(sht, ha);
418 if (!vha) {
419 DEBUG(printk("qla2xxx: scsi_host_alloc() failed for vport\n"));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700420 return(NULL);
421 }
422
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800423 host = vha->host;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700424 fc_vport->dd_data = vha;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700425 /* New host info */
426 u64_to_wwn(fc_vport->node_name, vha->node_name);
427 u64_to_wwn(fc_vport->port_name, vha->port_name);
428
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700429 vha->fc_vport = fc_vport;
430 vha->device_flags = 0;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700431 vha->vp_idx = qla24xx_allocate_vp_id(vha);
432 if (vha->vp_idx > ha->max_npiv_vports) {
433 DEBUG15(printk("scsi(%ld): Couldn't allocate vp_id.\n",
434 vha->host_no));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800435 goto create_vhost_failed;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700436 }
437 vha->mgmt_svr_loop_id = 10 + vha->vp_idx;
438
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700439 vha->dpc_flags = 0L;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700440
441 /*
442 * To fix the issue of processing a parent's RSCN for the vport before
443 * its SCR is complete.
444 */
445 set_bit(VP_SCR_NEEDED, &vha->vp_flags);
446 atomic_set(&vha->loop_state, LOOP_DOWN);
447 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
448
449 qla2x00_start_timer(vha, qla2x00_timer, WATCH_INTERVAL);
450
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700451 vha->req = base_vha->req;
452 host->can_queue = base_vha->req->length + 128;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700453 host->this_id = 255;
454 host->cmd_per_lun = 3;
Arun Easi0c470872010-07-23 15:28:38 +0500455 if ((IS_QLA25XX(ha) || IS_QLA81XX(ha)) && ql2xenabledif)
456 host->max_cmd_len = 32;
457 else
458 host->max_cmd_len = MAX_CMDSZ;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700459 host->max_channel = MAX_BUSES - 1;
460 host->max_lun = MAX_LUNS;
Seokmann Ju711c1d92008-07-10 16:55:51 -0700461 host->unique_id = host->host_no;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700462 host->max_id = MAX_TARGETS_2200;
463 host->transportt = qla2xxx_transport_vport_template;
464
465 DEBUG15(printk("DEBUG: detect vport hba %ld at address = %p\n",
466 vha->host_no, vha));
467
468 vha->flags.init_done = 1;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700469
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -0700470 mutex_lock(&ha->vport_lock);
471 set_bit(vha->vp_idx, ha->vp_idx_map);
472 ha->cur_vport_count++;
473 mutex_unlock(&ha->vport_lock);
474
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700475 return vha;
476
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800477create_vhost_failed:
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700478 return NULL;
479}
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800480
481static void
482qla25xx_free_req_que(struct scsi_qla_host *vha, struct req_que *req)
483{
484 struct qla_hw_data *ha = vha->hw;
485 uint16_t que_id = req->id;
486
487 dma_free_coherent(&ha->pdev->dev, (req->length + 1) *
488 sizeof(request_t), req->ring, req->dma);
489 req->ring = NULL;
490 req->dma = 0;
491 if (que_id) {
492 ha->req_q_map[que_id] = NULL;
493 mutex_lock(&ha->vport_lock);
494 clear_bit(que_id, ha->req_qid_map);
495 mutex_unlock(&ha->vport_lock);
496 }
497 kfree(req);
498 req = NULL;
499}
500
501static void
502qla25xx_free_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
503{
504 struct qla_hw_data *ha = vha->hw;
505 uint16_t que_id = rsp->id;
506
507 if (rsp->msix && rsp->msix->have_irq) {
508 free_irq(rsp->msix->vector, rsp);
509 rsp->msix->have_irq = 0;
510 rsp->msix->rsp = NULL;
511 }
512 dma_free_coherent(&ha->pdev->dev, (rsp->length + 1) *
513 sizeof(response_t), rsp->ring, rsp->dma);
514 rsp->ring = NULL;
515 rsp->dma = 0;
516 if (que_id) {
517 ha->rsp_q_map[que_id] = NULL;
518 mutex_lock(&ha->vport_lock);
519 clear_bit(que_id, ha->rsp_qid_map);
520 mutex_unlock(&ha->vport_lock);
521 }
522 kfree(rsp);
523 rsp = NULL;
524}
525
526int
527qla25xx_delete_req_que(struct scsi_qla_host *vha, struct req_que *req)
528{
529 int ret = -1;
530
531 if (req) {
532 req->options |= BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -0800533 ret = qla25xx_init_req_que(vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800534 }
535 if (ret == QLA_SUCCESS)
536 qla25xx_free_req_que(vha, req);
537
538 return ret;
539}
540
Andrew Vasquez3dbe7562010-07-23 15:28:37 +0500541static int
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800542qla25xx_delete_rsp_que(struct scsi_qla_host *vha, struct rsp_que *rsp)
543{
544 int ret = -1;
545
546 if (rsp) {
547 rsp->options |= BIT_0;
Anirban Chakraborty618a7522009-02-08 20:50:11 -0800548 ret = qla25xx_init_rsp_que(vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800549 }
550 if (ret == QLA_SUCCESS)
551 qla25xx_free_rsp_que(vha, rsp);
552
553 return ret;
554}
555
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800556/* Delete all queues for a given vhost */
557int
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700558qla25xx_delete_queues(struct scsi_qla_host *vha)
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800559{
560 int cnt, ret = 0;
561 struct req_que *req = NULL;
562 struct rsp_que *rsp = NULL;
563 struct qla_hw_data *ha = vha->hw;
564
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700565 /* Delete request queues */
566 for (cnt = 1; cnt < ha->max_req_queues; cnt++) {
567 req = ha->req_q_map[cnt];
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800568 if (req) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800569 ret = qla25xx_delete_req_que(vha, req);
570 if (ret != QLA_SUCCESS) {
571 qla_printk(KERN_WARNING, ha,
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700572 "Couldn't delete req que %d\n",
573 req->id);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800574 return ret;
575 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800576 }
577 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700578
579 /* Delete response queues */
580 for (cnt = 1; cnt < ha->max_rsp_queues; cnt++) {
581 rsp = ha->rsp_q_map[cnt];
582 if (rsp) {
583 ret = qla25xx_delete_rsp_que(vha, rsp);
584 if (ret != QLA_SUCCESS) {
585 qla_printk(KERN_WARNING, ha,
586 "Couldn't delete rsp que %d\n",
587 rsp->id);
588 return ret;
589 }
590 }
591 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800592 return ret;
593}
594
595int
596qla25xx_create_req_que(struct qla_hw_data *ha, uint16_t options,
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700597 uint8_t vp_idx, uint16_t rid, int rsp_que, uint8_t qos)
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800598{
599 int ret = 0;
600 struct req_que *req = NULL;
601 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
602 uint16_t que_id = 0;
Andrew Vasquez08029992009-03-24 09:07:55 -0700603 device_reg_t __iomem *reg;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700604 uint32_t cnt;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800605
606 req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
607 if (req == NULL) {
608 qla_printk(KERN_WARNING, ha, "could not allocate memory"
609 "for request que\n");
Anirban Chakrabortyc7922a92009-09-28 13:52:58 -0700610 goto failed;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800611 }
612
613 req->length = REQUEST_ENTRY_CNT_24XX;
614 req->ring = dma_alloc_coherent(&ha->pdev->dev,
615 (req->length + 1) * sizeof(request_t),
616 &req->dma, GFP_KERNEL);
617 if (req->ring == NULL) {
618 qla_printk(KERN_WARNING, ha,
619 "Memory Allocation failed - request_ring\n");
620 goto que_failed;
621 }
622
623 mutex_lock(&ha->vport_lock);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700624 que_id = find_first_zero_bit(ha->req_qid_map, ha->max_req_queues);
625 if (que_id >= ha->max_req_queues) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800626 mutex_unlock(&ha->vport_lock);
627 qla_printk(KERN_INFO, ha, "No resources to create "
628 "additional request queue\n");
629 goto que_failed;
630 }
631 set_bit(que_id, ha->req_qid_map);
632 ha->req_q_map[que_id] = req;
633 req->rid = rid;
634 req->vp_idx = vp_idx;
635 req->qos = qos;
636
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700637 if (rsp_que < 0)
638 req->rsp = NULL;
639 else
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800640 req->rsp = ha->rsp_q_map[rsp_que];
641 /* Use alternate PCI bus number */
642 if (MSB(req->rid))
643 options |= BIT_4;
644 /* Use alternate PCI devfn */
645 if (LSB(req->rid))
646 options |= BIT_5;
647 req->options = options;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700648
649 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++)
650 req->outstanding_cmds[cnt] = NULL;
651 req->current_outstanding_cmd = 1;
652
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800653 req->ring_ptr = req->ring;
654 req->ring_index = 0;
655 req->cnt = req->length;
656 req->id = que_id;
Andrew Vasquez08029992009-03-24 09:07:55 -0700657 reg = ISP_QUE_REG(ha, que_id);
Anirban Chakraborty29bdccb2009-01-08 15:41:08 -0800658 req->max_q_depth = ha->req_q_map[0]->max_q_depth;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800659 mutex_unlock(&ha->vport_lock);
660
Anirban Chakraborty618a7522009-02-08 20:50:11 -0800661 ret = qla25xx_init_req_que(base_vha, req);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800662 if (ret != QLA_SUCCESS) {
663 qla_printk(KERN_WARNING, ha, "%s failed\n", __func__);
664 mutex_lock(&ha->vport_lock);
665 clear_bit(que_id, ha->req_qid_map);
666 mutex_unlock(&ha->vport_lock);
667 goto que_failed;
668 }
669
670 return req->id;
671
672que_failed:
673 qla25xx_free_req_que(base_vha, req);
Anirban Chakrabortyc7922a92009-09-28 13:52:58 -0700674failed:
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800675 return 0;
676}
677
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700678static void qla_do_work(struct work_struct *work)
679{
Anirban Chakrabortya67093d2010-02-04 14:17:59 -0800680 unsigned long flags;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700681 struct rsp_que *rsp = container_of(work, struct rsp_que, q_work);
682 struct scsi_qla_host *vha;
Anirban Chakrabortya67093d2010-02-04 14:17:59 -0800683 struct qla_hw_data *ha = rsp->hw;
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700684
Anirban Chakrabortya67093d2010-02-04 14:17:59 -0800685 spin_lock_irqsave(&rsp->hw->hardware_lock, flags);
686 vha = pci_get_drvdata(ha->pdev);
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700687 qla24xx_process_response_queue(vha, rsp);
Anirban Chakrabortya67093d2010-02-04 14:17:59 -0800688 spin_unlock_irqrestore(&rsp->hw->hardware_lock, flags);
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700689}
690
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800691/* create response queue */
692int
693qla25xx_create_rsp_que(struct qla_hw_data *ha, uint16_t options,
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700694 uint8_t vp_idx, uint16_t rid, int req)
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800695{
696 int ret = 0;
697 struct rsp_que *rsp = NULL;
698 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Andrew Vasquez08029992009-03-24 09:07:55 -0700699 uint16_t que_id = 0;
700 device_reg_t __iomem *reg;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800701
702 rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
703 if (rsp == NULL) {
704 qla_printk(KERN_WARNING, ha, "could not allocate memory for"
705 " response que\n");
Anirban Chakrabortyc7922a92009-09-28 13:52:58 -0700706 goto failed;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800707 }
708
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700709 rsp->length = RESPONSE_ENTRY_CNT_MQ;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800710 rsp->ring = dma_alloc_coherent(&ha->pdev->dev,
711 (rsp->length + 1) * sizeof(response_t),
712 &rsp->dma, GFP_KERNEL);
713 if (rsp->ring == NULL) {
714 qla_printk(KERN_WARNING, ha,
715 "Memory Allocation failed - response_ring\n");
716 goto que_failed;
717 }
718
719 mutex_lock(&ha->vport_lock);
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700720 que_id = find_first_zero_bit(ha->rsp_qid_map, ha->max_rsp_queues);
721 if (que_id >= ha->max_rsp_queues) {
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800722 mutex_unlock(&ha->vport_lock);
723 qla_printk(KERN_INFO, ha, "No resources to create "
724 "additional response queue\n");
725 goto que_failed;
726 }
727 set_bit(que_id, ha->rsp_qid_map);
728
729 if (ha->flags.msix_enabled)
730 rsp->msix = &ha->msix_entries[que_id + 1];
731 else
732 qla_printk(KERN_WARNING, ha, "msix not enabled\n");
733
734 ha->rsp_q_map[que_id] = rsp;
735 rsp->rid = rid;
736 rsp->vp_idx = vp_idx;
737 rsp->hw = ha;
738 /* Use alternate PCI bus number */
739 if (MSB(rsp->rid))
740 options |= BIT_4;
741 /* Use alternate PCI devfn */
742 if (LSB(rsp->rid))
743 options |= BIT_5;
Anirban Chakraborty31557542009-12-02 10:36:55 -0800744 /* Enable MSIX handshake mode on for uncapable adapters */
745 if (!IS_MSIX_NACK_CAPABLE(ha))
746 options |= BIT_6;
747
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800748 rsp->options = options;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800749 rsp->id = que_id;
Andrew Vasquez08029992009-03-24 09:07:55 -0700750 reg = ISP_QUE_REG(ha, que_id);
751 rsp->rsp_q_in = &reg->isp25mq.rsp_q_in;
752 rsp->rsp_q_out = &reg->isp25mq.rsp_q_out;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800753 mutex_unlock(&ha->vport_lock);
754
755 ret = qla25xx_request_irq(rsp);
756 if (ret)
757 goto que_failed;
758
Anirban Chakraborty618a7522009-02-08 20:50:11 -0800759 ret = qla25xx_init_rsp_que(base_vha, rsp);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800760 if (ret != QLA_SUCCESS) {
761 qla_printk(KERN_WARNING, ha, "%s failed\n", __func__);
762 mutex_lock(&ha->vport_lock);
763 clear_bit(que_id, ha->rsp_qid_map);
764 mutex_unlock(&ha->vport_lock);
765 goto que_failed;
766 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -0700767 if (req >= 0)
768 rsp->req = ha->req_q_map[req];
769 else
770 rsp->req = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800771
772 qla2x00_init_response_q_entries(rsp);
Anirban Chakraborty68ca9492009-04-06 22:33:41 -0700773 if (rsp->hw->wq)
774 INIT_WORK(&rsp->q_work, qla_do_work);
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800775 return rsp->id;
776
777que_failed:
778 qla25xx_free_rsp_que(base_vha, rsp);
Anirban Chakrabortyc7922a92009-09-28 13:52:58 -0700779failed:
Anirban Chakraborty73208df2008-12-09 16:45:39 -0800780 return 0;
781}