blob: bab434ee774bfeb24fd1c2f69f850c5828d6bd10 [file] [log] [blame]
David Somayajuluafaf5a22006-09-19 10:28:00 -07001/*
2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2006 QLogic Corporation
4 *
5 * See LICENSE.qla4xxx for copyright and licensing details.
6 */
7#include <linux/moduleparam.h>
8
9#include <scsi/scsi_tcq.h>
10#include <scsi/scsicam.h>
11
12#include "ql4_def.h"
13
14/*
15 * Driver version
16 */
17char qla4xxx_version_str[40];
18
19/*
20 * SRB allocation cache
21 */
22static kmem_cache_t *srb_cachep;
23
24/*
25 * Module parameter information and variables
26 */
27int ql4xdiscoverywait = 60;
28module_param(ql4xdiscoverywait, int, S_IRUGO | S_IRUSR);
29MODULE_PARM_DESC(ql4xdiscoverywait, "Discovery wait time");
30int ql4xdontresethba = 0;
31module_param(ql4xdontresethba, int, S_IRUGO | S_IRUSR);
32MODULE_PARM_DESC(ql4xdontresethba,
33 "Dont reset the HBA when the driver gets 0x8002 AEN "
34 " default it will reset hba :0"
35 " set to 1 to avoid resetting HBA");
36
Andrew Vasquez11010fe2006-10-06 09:54:59 -070037int ql4xextended_error_logging = 0; /* 0 = off, 1 = log errors */
38module_param(ql4xextended_error_logging, int, S_IRUGO | S_IRUSR);
39MODULE_PARM_DESC(ql4xextended_error_logging,
David Somayajuluafaf5a22006-09-19 10:28:00 -070040 "Option to enable extended error logging, "
41 "Default is 0 - no logging, 1 - debug logging");
42
43/*
44 * SCSI host template entry points
45 */
46
47void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha);
48
49/*
50 * iSCSI template entry points
51 */
52static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
53 uint32_t enable, struct sockaddr *dst_addr);
54static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
55 enum iscsi_param param, char *buf);
56static int qla4xxx_sess_get_param(struct iscsi_cls_session *sess,
57 enum iscsi_param param, char *buf);
58static void qla4xxx_conn_stop(struct iscsi_cls_conn *conn, int flag);
59static int qla4xxx_conn_start(struct iscsi_cls_conn *conn);
60static void qla4xxx_recovery_timedout(struct iscsi_cls_session *session);
61
62/*
63 * SCSI host template entry points
64 */
65static int qla4xxx_queuecommand(struct scsi_cmnd *cmd,
66 void (*done) (struct scsi_cmnd *));
67static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd);
68static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
69static int qla4xxx_slave_alloc(struct scsi_device *device);
70static int qla4xxx_slave_configure(struct scsi_device *device);
71static void qla4xxx_slave_destroy(struct scsi_device *sdev);
72
73static struct scsi_host_template qla4xxx_driver_template = {
74 .module = THIS_MODULE,
75 .name = DRIVER_NAME,
76 .proc_name = DRIVER_NAME,
77 .queuecommand = qla4xxx_queuecommand,
78
79 .eh_device_reset_handler = qla4xxx_eh_device_reset,
80 .eh_host_reset_handler = qla4xxx_eh_host_reset,
81
82 .slave_configure = qla4xxx_slave_configure,
83 .slave_alloc = qla4xxx_slave_alloc,
84 .slave_destroy = qla4xxx_slave_destroy,
85
86 .this_id = -1,
87 .cmd_per_lun = 3,
88 .use_clustering = ENABLE_CLUSTERING,
89 .sg_tablesize = SG_ALL,
90
91 .max_sectors = 0xFFFF,
92};
93
94static struct iscsi_transport qla4xxx_iscsi_transport = {
95 .owner = THIS_MODULE,
96 .name = DRIVER_NAME,
97 .param_mask = ISCSI_CONN_PORT |
98 ISCSI_CONN_ADDRESS |
99 ISCSI_TARGET_NAME |
100 ISCSI_TPGT,
101 .sessiondata_size = sizeof(struct ddb_entry),
102 .host_template = &qla4xxx_driver_template,
103
104 .tgt_dscvr = qla4xxx_tgt_dscvr,
105 .get_conn_param = qla4xxx_conn_get_param,
106 .get_session_param = qla4xxx_sess_get_param,
107 .start_conn = qla4xxx_conn_start,
108 .stop_conn = qla4xxx_conn_stop,
109 .session_recovery_timedout = qla4xxx_recovery_timedout,
110};
111
112static struct scsi_transport_template *qla4xxx_scsi_transport;
113
114static void qla4xxx_recovery_timedout(struct iscsi_cls_session *session)
115{
116 struct ddb_entry *ddb_entry = session->dd_data;
117 struct scsi_qla_host *ha = ddb_entry->ha;
118
119 DEBUG2(printk("scsi%ld: %s: index [%d] port down retry count of (%d) "
120 "secs exhausted, marking device DEAD.\n", ha->host_no,
121 __func__, ddb_entry->fw_ddb_index,
122 ha->port_down_retry_count));
123
124 atomic_set(&ddb_entry->state, DDB_STATE_DEAD);
125
126 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine - dpc flags = "
127 "0x%lx\n", ha->host_no, __func__, ha->dpc_flags));
128 queue_work(ha->dpc_thread, &ha->dpc_work);
129}
130
131static int qla4xxx_conn_start(struct iscsi_cls_conn *conn)
132{
133 struct iscsi_cls_session *session;
134 struct ddb_entry *ddb_entry;
135
136 session = iscsi_dev_to_session(conn->dev.parent);
137 ddb_entry = session->dd_data;
138
139 DEBUG2(printk("scsi%ld: %s: index [%d] starting conn\n",
140 ddb_entry->ha->host_no, __func__,
141 ddb_entry->fw_ddb_index));
142 iscsi_unblock_session(session);
143 return 0;
144}
145
146static void qla4xxx_conn_stop(struct iscsi_cls_conn *conn, int flag)
147{
148 struct iscsi_cls_session *session;
149 struct ddb_entry *ddb_entry;
150
151 session = iscsi_dev_to_session(conn->dev.parent);
152 ddb_entry = session->dd_data;
153
154 DEBUG2(printk("scsi%ld: %s: index [%d] stopping conn\n",
155 ddb_entry->ha->host_no, __func__,
156 ddb_entry->fw_ddb_index));
157 if (flag == STOP_CONN_RECOVER)
158 iscsi_block_session(session);
159 else
160 printk(KERN_ERR "iscsi: invalid stop flag %d\n", flag);
161}
162
163static int qla4xxx_sess_get_param(struct iscsi_cls_session *sess,
164 enum iscsi_param param, char *buf)
165{
166 struct ddb_entry *ddb_entry = sess->dd_data;
167 int len;
168
169 switch (param) {
170 case ISCSI_PARAM_TARGET_NAME:
171 len = snprintf(buf, PAGE_SIZE - 1, "%s\n",
172 ddb_entry->iscsi_name);
173 break;
174 case ISCSI_PARAM_TPGT:
175 len = sprintf(buf, "%u\n", ddb_entry->tpgt);
176 break;
177 default:
178 return -ENOSYS;
179 }
180
181 return len;
182}
183
184static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
185 enum iscsi_param param, char *buf)
186{
187 struct iscsi_cls_session *session;
188 struct ddb_entry *ddb_entry;
189 int len;
190
191 session = iscsi_dev_to_session(conn->dev.parent);
192 ddb_entry = session->dd_data;
193
194 switch (param) {
195 case ISCSI_PARAM_CONN_PORT:
196 len = sprintf(buf, "%hu\n", ddb_entry->port);
197 break;
198 case ISCSI_PARAM_CONN_ADDRESS:
199 /* TODO: what are the ipv6 bits */
200 len = sprintf(buf, "%u.%u.%u.%u\n",
201 NIPQUAD(ddb_entry->ip_addr));
202 break;
203 default:
204 return -ENOSYS;
205 }
206
207 return len;
208}
209
210static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
211 uint32_t enable, struct sockaddr *dst_addr)
212{
213 struct scsi_qla_host *ha;
214 struct Scsi_Host *shost;
215 struct sockaddr_in *addr;
216 struct sockaddr_in6 *addr6;
217 int ret = 0;
218
219 shost = scsi_host_lookup(host_no);
220 if (IS_ERR(shost)) {
221 printk(KERN_ERR "Could not find host no %u\n", host_no);
222 return -ENODEV;
223 }
224
225 ha = (struct scsi_qla_host *) shost->hostdata;
226
227 switch (type) {
228 case ISCSI_TGT_DSCVR_SEND_TARGETS:
229 if (dst_addr->sa_family == AF_INET) {
230 addr = (struct sockaddr_in *)dst_addr;
231 if (qla4xxx_send_tgts(ha, (char *)&addr->sin_addr,
232 addr->sin_port) != QLA_SUCCESS)
233 ret = -EIO;
234 } else if (dst_addr->sa_family == AF_INET6) {
235 /*
236 * TODO: fix qla4xxx_send_tgts
237 */
238 addr6 = (struct sockaddr_in6 *)dst_addr;
239 if (qla4xxx_send_tgts(ha, (char *)&addr6->sin6_addr,
240 addr6->sin6_port) != QLA_SUCCESS)
241 ret = -EIO;
242 } else
243 ret = -ENOSYS;
244 break;
245 default:
246 ret = -ENOSYS;
247 }
248
249 scsi_host_put(shost);
250 return ret;
251}
252
253void qla4xxx_destroy_sess(struct ddb_entry *ddb_entry)
254{
255 if (!ddb_entry->sess)
256 return;
257
258 if (ddb_entry->conn) {
259 iscsi_if_destroy_session_done(ddb_entry->conn);
260 iscsi_destroy_conn(ddb_entry->conn);
261 iscsi_remove_session(ddb_entry->sess);
262 }
263 iscsi_free_session(ddb_entry->sess);
264}
265
266int qla4xxx_add_sess(struct ddb_entry *ddb_entry)
267{
268 int err;
269
270 err = iscsi_add_session(ddb_entry->sess, ddb_entry->fw_ddb_index);
271 if (err) {
272 DEBUG2(printk(KERN_ERR "Could not add session.\n"));
273 return err;
274 }
275
276 ddb_entry->conn = iscsi_create_conn(ddb_entry->sess, 0);
277 if (!ddb_entry->conn) {
278 iscsi_remove_session(ddb_entry->sess);
279 DEBUG2(printk(KERN_ERR "Could not add connection.\n"));
280 return -ENOMEM;
281 }
282
283 ddb_entry->sess->recovery_tmo = ddb_entry->ha->port_down_retry_count;
284 iscsi_if_create_session_done(ddb_entry->conn);
285 return 0;
286}
287
288struct ddb_entry *qla4xxx_alloc_sess(struct scsi_qla_host *ha)
289{
290 struct ddb_entry *ddb_entry;
291 struct iscsi_cls_session *sess;
292
293 sess = iscsi_alloc_session(ha->host, &qla4xxx_iscsi_transport);
294 if (!sess)
295 return NULL;
296
297 ddb_entry = sess->dd_data;
298 memset(ddb_entry, 0, sizeof(*ddb_entry));
299 ddb_entry->ha = ha;
300 ddb_entry->sess = sess;
301 return ddb_entry;
302}
303
304/*
305 * Timer routines
306 */
307
308static void qla4xxx_start_timer(struct scsi_qla_host *ha, void *func,
309 unsigned long interval)
310{
311 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
312 __func__, ha->host->host_no));
313 init_timer(&ha->timer);
314 ha->timer.expires = jiffies + interval * HZ;
315 ha->timer.data = (unsigned long)ha;
316 ha->timer.function = (void (*)(unsigned long))func;
317 add_timer(&ha->timer);
318 ha->timer_active = 1;
319}
320
321static void qla4xxx_stop_timer(struct scsi_qla_host *ha)
322{
323 del_timer_sync(&ha->timer);
324 ha->timer_active = 0;
325}
326
327/***
328 * qla4xxx_mark_device_missing - mark a device as missing.
329 * @ha: Pointer to host adapter structure.
330 * @ddb_entry: Pointer to device database entry
331 *
332 * This routine marks a device missing and resets the relogin retry count.
333 **/
334void qla4xxx_mark_device_missing(struct scsi_qla_host *ha,
335 struct ddb_entry *ddb_entry)
336{
337 atomic_set(&ddb_entry->state, DDB_STATE_MISSING);
338 DEBUG3(printk("scsi%d:%d:%d: index [%d] marked MISSING\n",
339 ha->host_no, ddb_entry->bus, ddb_entry->target,
340 ddb_entry->fw_ddb_index));
341 iscsi_conn_error(ddb_entry->conn, ISCSI_ERR_CONN_FAILED);
342}
343
344static struct srb* qla4xxx_get_new_srb(struct scsi_qla_host *ha,
345 struct ddb_entry *ddb_entry,
346 struct scsi_cmnd *cmd,
347 void (*done)(struct scsi_cmnd *))
348{
349 struct srb *srb;
350
351 srb = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
352 if (!srb)
353 return srb;
354
355 atomic_set(&srb->ref_count, 1);
356 srb->ha = ha;
357 srb->ddb = ddb_entry;
358 srb->cmd = cmd;
359 srb->flags = 0;
360 cmd->SCp.ptr = (void *)srb;
361 cmd->scsi_done = done;
362
363 return srb;
364}
365
366static void qla4xxx_srb_free_dma(struct scsi_qla_host *ha, struct srb *srb)
367{
368 struct scsi_cmnd *cmd = srb->cmd;
369
370 if (srb->flags & SRB_DMA_VALID) {
371 if (cmd->use_sg) {
372 pci_unmap_sg(ha->pdev, cmd->request_buffer,
373 cmd->use_sg, cmd->sc_data_direction);
374 } else if (cmd->request_bufflen) {
375 pci_unmap_single(ha->pdev, srb->dma_handle,
376 cmd->request_bufflen,
377 cmd->sc_data_direction);
378 }
379 srb->flags &= ~SRB_DMA_VALID;
380 }
381 cmd->SCp.ptr = NULL;
382}
383
384void qla4xxx_srb_compl(struct scsi_qla_host *ha, struct srb *srb)
385{
386 struct scsi_cmnd *cmd = srb->cmd;
387
388 qla4xxx_srb_free_dma(ha, srb);
389
390 mempool_free(srb, ha->srb_mempool);
391
392 cmd->scsi_done(cmd);
393}
394
395/**
396 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
397 * @cmd: Pointer to Linux's SCSI command structure
398 * @done_fn: Function that the driver calls to notify the SCSI mid-layer
399 * that the command has been processed.
400 *
401 * Remarks:
402 * This routine is invoked by Linux to send a SCSI command to the driver.
403 * The mid-level driver tries to ensure that queuecommand never gets
404 * invoked concurrently with itself or the interrupt handler (although
405 * the interrupt handler may call this routine as part of request-
406 * completion handling). Unfortunely, it sometimes calls the scheduler
407 * in interrupt context which is a big NO! NO!.
408 **/
409static int qla4xxx_queuecommand(struct scsi_cmnd *cmd,
410 void (*done)(struct scsi_cmnd *))
411{
412 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
413 struct ddb_entry *ddb_entry = cmd->device->hostdata;
414 struct srb *srb;
415 int rval;
416
417 if (atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE) {
418 if (atomic_read(&ddb_entry->state) == DDB_STATE_DEAD) {
419 cmd->result = DID_NO_CONNECT << 16;
420 goto qc_fail_command;
421 }
422 goto qc_host_busy;
423 }
424
425 spin_unlock_irq(ha->host->host_lock);
426
427 srb = qla4xxx_get_new_srb(ha, ddb_entry, cmd, done);
428 if (!srb)
429 goto qc_host_busy_lock;
430
431 rval = qla4xxx_send_command_to_isp(ha, srb);
432 if (rval != QLA_SUCCESS)
433 goto qc_host_busy_free_sp;
434
435 spin_lock_irq(ha->host->host_lock);
436 return 0;
437
438qc_host_busy_free_sp:
439 qla4xxx_srb_free_dma(ha, srb);
440 mempool_free(srb, ha->srb_mempool);
441
442qc_host_busy_lock:
443 spin_lock_irq(ha->host->host_lock);
444
445qc_host_busy:
446 return SCSI_MLQUEUE_HOST_BUSY;
447
448qc_fail_command:
449 done(cmd);
450
451 return 0;
452}
453
454/**
455 * qla4xxx_mem_free - frees memory allocated to adapter
456 * @ha: Pointer to host adapter structure.
457 *
458 * Frees memory previously allocated by qla4xxx_mem_alloc
459 **/
460static void qla4xxx_mem_free(struct scsi_qla_host *ha)
461{
462 if (ha->queues)
463 dma_free_coherent(&ha->pdev->dev, ha->queues_len, ha->queues,
464 ha->queues_dma);
465
466 ha->queues_len = 0;
467 ha->queues = NULL;
468 ha->queues_dma = 0;
469 ha->request_ring = NULL;
470 ha->request_dma = 0;
471 ha->response_ring = NULL;
472 ha->response_dma = 0;
473 ha->shadow_regs = NULL;
474 ha->shadow_regs_dma = 0;
475
476 /* Free srb pool. */
477 if (ha->srb_mempool)
478 mempool_destroy(ha->srb_mempool);
479
480 ha->srb_mempool = NULL;
481
482 /* release io space registers */
483 if (ha->reg)
484 iounmap(ha->reg);
485 pci_release_regions(ha->pdev);
486}
487
488/**
489 * qla4xxx_mem_alloc - allocates memory for use by adapter.
490 * @ha: Pointer to host adapter structure
491 *
492 * Allocates DMA memory for request and response queues. Also allocates memory
493 * for srbs.
494 **/
495static int qla4xxx_mem_alloc(struct scsi_qla_host *ha)
496{
497 unsigned long align;
498
499 /* Allocate contiguous block of DMA memory for queues. */
500 ha->queues_len = ((REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
501 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE) +
502 sizeof(struct shadow_regs) +
503 MEM_ALIGN_VALUE +
504 (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
505 ha->queues = dma_alloc_coherent(&ha->pdev->dev, ha->queues_len,
506 &ha->queues_dma, GFP_KERNEL);
507 if (ha->queues == NULL) {
508 dev_warn(&ha->pdev->dev,
509 "Memory Allocation failed - queues.\n");
510
511 goto mem_alloc_error_exit;
512 }
513 memset(ha->queues, 0, ha->queues_len);
514
515 /*
516 * As per RISC alignment requirements -- the bus-address must be a
517 * multiple of the request-ring size (in bytes).
518 */
519 align = 0;
520 if ((unsigned long)ha->queues_dma & (MEM_ALIGN_VALUE - 1))
521 align = MEM_ALIGN_VALUE - ((unsigned long)ha->queues_dma &
522 (MEM_ALIGN_VALUE - 1));
523
524 /* Update request and response queue pointers. */
525 ha->request_dma = ha->queues_dma + align;
526 ha->request_ring = (struct queue_entry *) (ha->queues + align);
527 ha->response_dma = ha->queues_dma + align +
528 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE);
529 ha->response_ring = (struct queue_entry *) (ha->queues + align +
530 (REQUEST_QUEUE_DEPTH *
531 QUEUE_SIZE));
532 ha->shadow_regs_dma = ha->queues_dma + align +
533 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
534 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE);
535 ha->shadow_regs = (struct shadow_regs *) (ha->queues + align +
536 (REQUEST_QUEUE_DEPTH *
537 QUEUE_SIZE) +
538 (RESPONSE_QUEUE_DEPTH *
539 QUEUE_SIZE));
540
541 /* Allocate memory for srb pool. */
542 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
543 mempool_free_slab, srb_cachep);
544 if (ha->srb_mempool == NULL) {
545 dev_warn(&ha->pdev->dev,
546 "Memory Allocation failed - SRB Pool.\n");
547
548 goto mem_alloc_error_exit;
549 }
550
551 return QLA_SUCCESS;
552
553mem_alloc_error_exit:
554 qla4xxx_mem_free(ha);
555 return QLA_ERROR;
556}
557
558/**
559 * qla4xxx_timer - checks every second for work to do.
560 * @ha: Pointer to host adapter structure.
561 **/
562static void qla4xxx_timer(struct scsi_qla_host *ha)
563{
564 struct ddb_entry *ddb_entry, *dtemp;
565 int start_dpc = 0;
566
567 /* Search for relogin's to time-out and port down retry. */
568 list_for_each_entry_safe(ddb_entry, dtemp, &ha->ddb_list, list) {
569 /* Count down time between sending relogins */
570 if (adapter_up(ha) &&
571 !test_bit(DF_RELOGIN, &ddb_entry->flags) &&
572 atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE) {
573 if (atomic_read(&ddb_entry->retry_relogin_timer) !=
574 INVALID_ENTRY) {
575 if (atomic_read(&ddb_entry->retry_relogin_timer)
576 == 0) {
577 atomic_set(&ddb_entry->
578 retry_relogin_timer,
579 INVALID_ENTRY);
580 set_bit(DPC_RELOGIN_DEVICE,
581 &ha->dpc_flags);
582 set_bit(DF_RELOGIN, &ddb_entry->flags);
583 DEBUG2(printk("scsi%ld: %s: index [%d]"
584 " login device\n",
585 ha->host_no, __func__,
586 ddb_entry->fw_ddb_index));
587 } else
588 atomic_dec(&ddb_entry->
589 retry_relogin_timer);
590 }
591 }
592
593 /* Wait for relogin to timeout */
594 if (atomic_read(&ddb_entry->relogin_timer) &&
595 (atomic_dec_and_test(&ddb_entry->relogin_timer) != 0)) {
596 /*
597 * If the relogin times out and the device is
598 * still NOT ONLINE then try and relogin again.
599 */
600 if (atomic_read(&ddb_entry->state) !=
601 DDB_STATE_ONLINE &&
602 ddb_entry->fw_ddb_device_state ==
603 DDB_DS_SESSION_FAILED) {
604 /* Reset retry relogin timer */
605 atomic_inc(&ddb_entry->relogin_retry_count);
606 DEBUG2(printk("scsi%ld: index[%d] relogin"
607 " timed out-retrying"
608 " relogin (%d)\n",
609 ha->host_no,
610 ddb_entry->fw_ddb_index,
611 atomic_read(&ddb_entry->
612 relogin_retry_count))
613 );
614 start_dpc++;
615 DEBUG(printk("scsi%ld:%d:%d: index [%d] "
616 "initate relogin after"
617 " %d seconds\n",
618 ha->host_no, ddb_entry->bus,
619 ddb_entry->target,
620 ddb_entry->fw_ddb_index,
621 ddb_entry->default_time2wait + 4)
622 );
623
624 atomic_set(&ddb_entry->retry_relogin_timer,
625 ddb_entry->default_time2wait + 4);
626 }
627 }
628 }
629
630 /* Check for heartbeat interval. */
631 if (ha->firmware_options & FWOPT_HEARTBEAT_ENABLE &&
632 ha->heartbeat_interval != 0) {
633 ha->seconds_since_last_heartbeat++;
634 if (ha->seconds_since_last_heartbeat >
635 ha->heartbeat_interval + 2)
636 set_bit(DPC_RESET_HA, &ha->dpc_flags);
637 }
638
639
640 /* Wakeup the dpc routine for this adapter, if needed. */
641 if ((start_dpc ||
642 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
643 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags) ||
644 test_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags) ||
645 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags) ||
646 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
647 test_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags) ||
648 test_bit(DPC_AEN, &ha->dpc_flags)) &&
649 ha->dpc_thread) {
650 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
651 " - dpc flags = 0x%lx\n",
652 ha->host_no, __func__, ha->dpc_flags));
653 queue_work(ha->dpc_thread, &ha->dpc_work);
654 }
655
656 /* Reschedule timer thread to call us back in one second */
657 mod_timer(&ha->timer, jiffies + HZ);
658
659 DEBUG2(ha->seconds_since_last_intr++);
660}
661
662/**
663 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
664 * @ha: Pointer to host adapter structure.
665 *
666 * This routine stalls the driver until all outstanding commands are returned.
667 * Caller must release the Hardware Lock prior to calling this routine.
668 **/
669static int qla4xxx_cmd_wait(struct scsi_qla_host *ha)
670{
671 uint32_t index = 0;
672 int stat = QLA_SUCCESS;
673 unsigned long flags;
674 struct scsi_cmnd *cmd;
675 int wait_cnt = WAIT_CMD_TOV; /*
676 * Initialized for 30 seconds as we
677 * expect all commands to retuned
678 * ASAP.
679 */
680
681 while (wait_cnt) {
682 spin_lock_irqsave(&ha->hardware_lock, flags);
683 /* Find a command that hasn't completed. */
684 for (index = 0; index < ha->host->can_queue; index++) {
685 cmd = scsi_host_find_tag(ha->host, index);
686 if (cmd != NULL)
687 break;
688 }
689 spin_unlock_irqrestore(&ha->hardware_lock, flags);
690
691 /* If No Commands are pending, wait is complete */
692 if (index == ha->host->can_queue) {
693 break;
694 }
695
696 /* If we timed out on waiting for commands to come back
697 * return ERROR.
698 */
699 wait_cnt--;
700 if (wait_cnt == 0)
701 stat = QLA_ERROR;
702 else {
703 msleep(1000);
704 }
705 } /* End of While (wait_cnt) */
706
707 return stat;
708}
709
710/**
711 * qla4010_soft_reset - performs soft reset.
712 * @ha: Pointer to host adapter structure.
713 **/
714static int qla4010_soft_reset(struct scsi_qla_host *ha)
715{
716 uint32_t max_wait_time;
717 unsigned long flags = 0;
718 int status = QLA_ERROR;
719 uint32_t ctrl_status;
720
721 spin_lock_irqsave(&ha->hardware_lock, flags);
722
723 /*
724 * If the SCSI Reset Interrupt bit is set, clear it.
725 * Otherwise, the Soft Reset won't work.
726 */
727 ctrl_status = readw(&ha->reg->ctrl_status);
728 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0)
729 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
730
731 /* Issue Soft Reset */
732 writel(set_rmask(CSR_SOFT_RESET), &ha->reg->ctrl_status);
733 readl(&ha->reg->ctrl_status);
734
735 spin_unlock_irqrestore(&ha->hardware_lock, flags);
736
737 /* Wait until the Network Reset Intr bit is cleared */
738 max_wait_time = RESET_INTR_TOV;
739 do {
740 spin_lock_irqsave(&ha->hardware_lock, flags);
741 ctrl_status = readw(&ha->reg->ctrl_status);
742 spin_unlock_irqrestore(&ha->hardware_lock, flags);
743
744 if ((ctrl_status & CSR_NET_RESET_INTR) == 0)
745 break;
746
747 msleep(1000);
748 } while ((--max_wait_time));
749
750 if ((ctrl_status & CSR_NET_RESET_INTR) != 0) {
751 DEBUG2(printk(KERN_WARNING
752 "scsi%ld: Network Reset Intr not cleared by "
753 "Network function, clearing it now!\n",
754 ha->host_no));
755 spin_lock_irqsave(&ha->hardware_lock, flags);
756 writel(set_rmask(CSR_NET_RESET_INTR), &ha->reg->ctrl_status);
757 readl(&ha->reg->ctrl_status);
758 spin_unlock_irqrestore(&ha->hardware_lock, flags);
759 }
760
761 /* Wait until the firmware tells us the Soft Reset is done */
762 max_wait_time = SOFT_RESET_TOV;
763 do {
764 spin_lock_irqsave(&ha->hardware_lock, flags);
765 ctrl_status = readw(&ha->reg->ctrl_status);
766 spin_unlock_irqrestore(&ha->hardware_lock, flags);
767
768 if ((ctrl_status & CSR_SOFT_RESET) == 0) {
769 status = QLA_SUCCESS;
770 break;
771 }
772
773 msleep(1000);
774 } while ((--max_wait_time));
775
776 /*
777 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
778 * after the soft reset has taken place.
779 */
780 spin_lock_irqsave(&ha->hardware_lock, flags);
781 ctrl_status = readw(&ha->reg->ctrl_status);
782 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0) {
783 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
784 readl(&ha->reg->ctrl_status);
785 }
786 spin_unlock_irqrestore(&ha->hardware_lock, flags);
787
788 /* If soft reset fails then most probably the bios on other
789 * function is also enabled.
790 * Since the initialization is sequential the other fn
791 * wont be able to acknowledge the soft reset.
792 * Issue a force soft reset to workaround this scenario.
793 */
794 if (max_wait_time == 0) {
795 /* Issue Force Soft Reset */
796 spin_lock_irqsave(&ha->hardware_lock, flags);
797 writel(set_rmask(CSR_FORCE_SOFT_RESET), &ha->reg->ctrl_status);
798 readl(&ha->reg->ctrl_status);
799 spin_unlock_irqrestore(&ha->hardware_lock, flags);
800 /* Wait until the firmware tells us the Soft Reset is done */
801 max_wait_time = SOFT_RESET_TOV;
802 do {
803 spin_lock_irqsave(&ha->hardware_lock, flags);
804 ctrl_status = readw(&ha->reg->ctrl_status);
805 spin_unlock_irqrestore(&ha->hardware_lock, flags);
806
807 if ((ctrl_status & CSR_FORCE_SOFT_RESET) == 0) {
808 status = QLA_SUCCESS;
809 break;
810 }
811
812 msleep(1000);
813 } while ((--max_wait_time));
814 }
815
816 return status;
817}
818
819/**
820 * qla4xxx_topcat_reset - performs hard reset of TopCat Chip.
821 * @ha: Pointer to host adapter structure.
822 **/
823static int qla4xxx_topcat_reset(struct scsi_qla_host *ha)
824{
825 unsigned long flags;
826
827 ql4xxx_lock_nvram(ha);
828 spin_lock_irqsave(&ha->hardware_lock, flags);
829 writel(set_rmask(GPOR_TOPCAT_RESET), isp_gp_out(ha));
830 readl(isp_gp_out(ha));
831 mdelay(1);
832
833 writel(clr_rmask(GPOR_TOPCAT_RESET), isp_gp_out(ha));
834 readl(isp_gp_out(ha));
835 spin_unlock_irqrestore(&ha->hardware_lock, flags);
836 mdelay(2523);
837
838 ql4xxx_unlock_nvram(ha);
839 return QLA_SUCCESS;
840}
841
842/**
843 * qla4xxx_flush_active_srbs - returns all outstanding i/o requests to O.S.
844 * @ha: Pointer to host adapter structure.
845 *
846 * This routine is called just prior to a HARD RESET to return all
847 * outstanding commands back to the Operating System.
848 * Caller should make sure that the following locks are released
849 * before this calling routine: Hardware lock, and io_request_lock.
850 **/
851static void qla4xxx_flush_active_srbs(struct scsi_qla_host *ha)
852{
853 struct srb *srb;
854 int i;
855 unsigned long flags;
856
857 spin_lock_irqsave(&ha->hardware_lock, flags);
858 for (i = 0; i < ha->host->can_queue; i++) {
859 srb = qla4xxx_del_from_active_array(ha, i);
860 if (srb != NULL) {
861 srb->cmd->result = DID_RESET << 16;
862 qla4xxx_srb_compl(ha, srb);
863 }
864 }
865 spin_unlock_irqrestore(&ha->hardware_lock, flags);
866
867}
868
869/**
870 * qla4xxx_hard_reset - performs HBA Hard Reset
871 * @ha: Pointer to host adapter structure.
872 **/
873static int qla4xxx_hard_reset(struct scsi_qla_host *ha)
874{
875 /* The QLA4010 really doesn't have an equivalent to a hard reset */
876 qla4xxx_flush_active_srbs(ha);
877 if (test_bit(AF_TOPCAT_CHIP_PRESENT, &ha->flags)) {
878 int status = QLA_ERROR;
879
880 if ((qla4010_soft_reset(ha) == QLA_SUCCESS) &&
881 (qla4xxx_topcat_reset(ha) == QLA_SUCCESS) &&
882 (qla4010_soft_reset(ha) == QLA_SUCCESS))
883 status = QLA_SUCCESS;
884 return status;
885 } else
886 return qla4010_soft_reset(ha);
887}
888
889/**
890 * qla4xxx_recover_adapter - recovers adapter after a fatal error
891 * @ha: Pointer to host adapter structure.
892 * @renew_ddb_list: Indicates what to do with the adapter's ddb list
893 * after adapter recovery has completed.
894 * 0=preserve ddb list, 1=destroy and rebuild ddb list
895 **/
896static int qla4xxx_recover_adapter(struct scsi_qla_host *ha,
897 uint8_t renew_ddb_list)
898{
899 int status;
900
901 /* Stall incoming I/O until we are done */
902 clear_bit(AF_ONLINE, &ha->flags);
903 DEBUG2(printk("scsi%ld: %s calling qla4xxx_cmd_wait\n", ha->host_no,
904 __func__));
905
906 /* Wait for outstanding commands to complete.
907 * Stalls the driver for max 30 secs
908 */
909 status = qla4xxx_cmd_wait(ha);
910
911 qla4xxx_disable_intrs(ha);
912
913 /* Flush any pending ddb changed AENs */
914 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
915
916 /* Reset the firmware. If successful, function
917 * returns with ISP interrupts enabled.
918 */
919 if (status == QLA_SUCCESS) {
920 DEBUG2(printk("scsi%ld: %s - Performing soft reset..\n",
921 ha->host_no, __func__));
David C Somayajuluf26b9042006-11-15 16:41:09 -0800922 qla4xxx_flush_active_srbs(ha);
923 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS)
924 status = qla4xxx_soft_reset(ha);
925 else
926 status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -0700927 }
928
929 /* Flush any pending ddb changed AENs */
930 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
931
932 /* Re-initialize firmware. If successful, function returns
933 * with ISP interrupts enabled */
934 if (status == QLA_SUCCESS) {
935 DEBUG2(printk("scsi%ld: %s - Initializing adapter..\n",
936 ha->host_no, __func__));
937
938 /* If successful, AF_ONLINE flag set in
939 * qla4xxx_initialize_adapter */
940 status = qla4xxx_initialize_adapter(ha, renew_ddb_list);
941 }
942
943 /* Failed adapter initialization?
944 * Retry reset_ha only if invoked via DPC (DPC_RESET_HA) */
945 if ((test_bit(AF_ONLINE, &ha->flags) == 0) &&
946 (test_bit(DPC_RESET_HA, &ha->dpc_flags))) {
947 /* Adapter initialization failed, see if we can retry
948 * resetting the ha */
949 if (!test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags)) {
950 ha->retry_reset_ha_cnt = MAX_RESET_HA_RETRIES;
951 DEBUG2(printk("scsi%ld: recover adapter - retrying "
952 "(%d) more times\n", ha->host_no,
953 ha->retry_reset_ha_cnt));
954 set_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
955 status = QLA_ERROR;
956 } else {
957 if (ha->retry_reset_ha_cnt > 0) {
958 /* Schedule another Reset HA--DPC will retry */
959 ha->retry_reset_ha_cnt--;
960 DEBUG2(printk("scsi%ld: recover adapter - "
961 "retry remaining %d\n",
962 ha->host_no,
963 ha->retry_reset_ha_cnt));
964 status = QLA_ERROR;
965 }
966
967 if (ha->retry_reset_ha_cnt == 0) {
968 /* Recover adapter retries have been exhausted.
969 * Adapter DEAD */
970 DEBUG2(printk("scsi%ld: recover adapter "
971 "failed - board disabled\n",
972 ha->host_no));
973 qla4xxx_flush_active_srbs(ha);
974 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
975 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
976 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST,
977 &ha->dpc_flags);
978 status = QLA_ERROR;
979 }
980 }
981 } else {
982 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
983 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags);
984 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
985 }
986
987 ha->adapter_error_count++;
988
989 if (status == QLA_SUCCESS)
990 qla4xxx_enable_intrs(ha);
991
992 DEBUG2(printk("scsi%ld: recover adapter .. DONE\n", ha->host_no));
993 return status;
994}
995
996/**
997 * qla4xxx_do_dpc - dpc routine
998 * @data: in our case pointer to adapter structure
999 *
1000 * This routine is a task that is schedule by the interrupt handler
1001 * to perform the background processing for interrupts. We put it
1002 * on a task queue that is consumed whenever the scheduler runs; that's
1003 * so you can do anything (i.e. put the process to sleep etc). In fact,
1004 * the mid-level tries to sleep when it reaches the driver threshold
1005 * "host->can_queue". This can cause a panic if we were in our interrupt code.
1006 **/
1007static void qla4xxx_do_dpc(void *data)
1008{
1009 struct scsi_qla_host *ha = (struct scsi_qla_host *) data;
1010 struct ddb_entry *ddb_entry, *dtemp;
1011
David C Somayajuluf26b9042006-11-15 16:41:09 -08001012 DEBUG2(printk("scsi%ld: %s: DPC handler waking up."
1013 "flags = 0x%08lx, dpc_flags = 0x%08lx\n",
1014 ha->host_no, __func__, ha->flags, ha->dpc_flags));
David Somayajuluafaf5a22006-09-19 10:28:00 -07001015
1016 /* Initialization not yet finished. Don't do anything yet. */
1017 if (!test_bit(AF_INIT_DONE, &ha->flags))
1018 return;
1019
1020 if (adapter_up(ha) ||
1021 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
1022 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
1023 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags)) {
David C Somayajuluf26b9042006-11-15 16:41:09 -08001024 if (test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags) ||
1025 test_bit(DPC_RESET_HA, &ha->dpc_flags))
David Somayajuluafaf5a22006-09-19 10:28:00 -07001026 qla4xxx_recover_adapter(ha, PRESERVE_DDB_LIST);
1027
1028 if (test_and_clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
1029 uint8_t wait_time = RESET_INTR_TOV;
1030 unsigned long flags = 0;
1031
1032 qla4xxx_flush_active_srbs(ha);
1033
1034 spin_lock_irqsave(&ha->hardware_lock, flags);
1035 while ((readw(&ha->reg->ctrl_status) &
1036 (CSR_SOFT_RESET | CSR_FORCE_SOFT_RESET)) != 0) {
1037 if (--wait_time == 0)
1038 break;
1039
1040 spin_unlock_irqrestore(&ha->hardware_lock,
1041 flags);
1042
1043 msleep(1000);
1044
1045 spin_lock_irqsave(&ha->hardware_lock, flags);
1046 }
1047 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1048
1049 if (wait_time == 0)
1050 DEBUG2(printk("scsi%ld: %s: SR|FSR "
1051 "bit not cleared-- resetting\n",
1052 ha->host_no, __func__));
1053 }
1054 }
1055
1056 /* ---- process AEN? --- */
1057 if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags))
1058 qla4xxx_process_aen(ha, PROCESS_ALL_AENS);
1059
1060 /* ---- Get DHCP IP Address? --- */
1061 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags))
1062 qla4xxx_get_dhcp_ip_address(ha);
1063
1064 /* ---- relogin device? --- */
1065 if (adapter_up(ha) &&
1066 test_and_clear_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags)) {
1067 list_for_each_entry_safe(ddb_entry, dtemp,
1068 &ha->ddb_list, list) {
1069 if (test_and_clear_bit(DF_RELOGIN, &ddb_entry->flags) &&
1070 atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE)
1071 qla4xxx_relogin_device(ha, ddb_entry);
1072
1073 /*
1074 * If mbx cmd times out there is no point
1075 * in continuing further.
1076 * With large no of targets this can hang
1077 * the system.
1078 */
1079 if (test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
1080 printk(KERN_WARNING "scsi%ld: %s: "
1081 "need to reset hba\n",
1082 ha->host_no, __func__);
1083 break;
1084 }
1085 }
1086 }
1087}
1088
1089/**
1090 * qla4xxx_free_adapter - release the adapter
1091 * @ha: pointer to adapter structure
1092 **/
1093static void qla4xxx_free_adapter(struct scsi_qla_host *ha)
1094{
1095
1096 if (test_bit(AF_INTERRUPTS_ON, &ha->flags)) {
1097 /* Turn-off interrupts on the card. */
1098 qla4xxx_disable_intrs(ha);
1099 }
1100
1101 /* Kill the kernel thread for this host */
1102 if (ha->dpc_thread)
1103 destroy_workqueue(ha->dpc_thread);
1104
1105 /* Issue Soft Reset to put firmware in unknown state */
David C Somayajuluf26b9042006-11-15 16:41:09 -08001106 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS)
1107 qla4xxx_soft_reset(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001108
1109 /* Remove timer thread, if present */
1110 if (ha->timer_active)
1111 qla4xxx_stop_timer(ha);
1112
1113 /* free extra memory */
1114 qla4xxx_mem_free(ha);
1115
1116 /* Detach interrupts */
1117 if (test_and_clear_bit(AF_IRQ_ATTACHED, &ha->flags))
1118 free_irq(ha->pdev->irq, ha);
1119
1120 pci_disable_device(ha->pdev);
1121
1122}
1123
1124/***
1125 * qla4xxx_iospace_config - maps registers
1126 * @ha: pointer to adapter structure
1127 *
1128 * This routines maps HBA's registers from the pci address space
1129 * into the kernel virtual address space for memory mapped i/o.
1130 **/
1131static int qla4xxx_iospace_config(struct scsi_qla_host *ha)
1132{
1133 unsigned long pio, pio_len, pio_flags;
1134 unsigned long mmio, mmio_len, mmio_flags;
1135
1136 pio = pci_resource_start(ha->pdev, 0);
1137 pio_len = pci_resource_len(ha->pdev, 0);
1138 pio_flags = pci_resource_flags(ha->pdev, 0);
1139 if (pio_flags & IORESOURCE_IO) {
1140 if (pio_len < MIN_IOBASE_LEN) {
1141 dev_warn(&ha->pdev->dev,
1142 "Invalid PCI I/O region size\n");
1143 pio = 0;
1144 }
1145 } else {
1146 dev_warn(&ha->pdev->dev, "region #0 not a PIO resource\n");
1147 pio = 0;
1148 }
1149
1150 /* Use MMIO operations for all accesses. */
1151 mmio = pci_resource_start(ha->pdev, 1);
1152 mmio_len = pci_resource_len(ha->pdev, 1);
1153 mmio_flags = pci_resource_flags(ha->pdev, 1);
1154
1155 if (!(mmio_flags & IORESOURCE_MEM)) {
1156 dev_err(&ha->pdev->dev,
1157 "region #0 not an MMIO resource, aborting\n");
1158
1159 goto iospace_error_exit;
1160 }
1161 if (mmio_len < MIN_IOBASE_LEN) {
1162 dev_err(&ha->pdev->dev,
1163 "Invalid PCI mem region size, aborting\n");
1164 goto iospace_error_exit;
1165 }
1166
1167 if (pci_request_regions(ha->pdev, DRIVER_NAME)) {
1168 dev_warn(&ha->pdev->dev,
1169 "Failed to reserve PIO/MMIO regions\n");
1170
1171 goto iospace_error_exit;
1172 }
1173
1174 ha->pio_address = pio;
1175 ha->pio_length = pio_len;
1176 ha->reg = ioremap(mmio, MIN_IOBASE_LEN);
1177 if (!ha->reg) {
1178 dev_err(&ha->pdev->dev,
1179 "cannot remap MMIO, aborting\n");
1180
1181 goto iospace_error_exit;
1182 }
1183
1184 return 0;
1185
1186iospace_error_exit:
1187 return -ENOMEM;
1188}
1189
1190/**
1191 * qla4xxx_probe_adapter - callback function to probe HBA
1192 * @pdev: pointer to pci_dev structure
1193 * @pci_device_id: pointer to pci_device entry
1194 *
1195 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
1196 * It returns zero if successful. It also initializes all data necessary for
1197 * the driver.
1198 **/
1199static int __devinit qla4xxx_probe_adapter(struct pci_dev *pdev,
1200 const struct pci_device_id *ent)
1201{
1202 int ret = -ENODEV, status;
1203 struct Scsi_Host *host;
1204 struct scsi_qla_host *ha;
1205 struct ddb_entry *ddb_entry, *ddbtemp;
1206 uint8_t init_retry_count = 0;
1207 char buf[34];
1208
1209 if (pci_enable_device(pdev))
1210 return -1;
1211
1212 host = scsi_host_alloc(&qla4xxx_driver_template, sizeof(*ha));
1213 if (host == NULL) {
1214 printk(KERN_WARNING
1215 "qla4xxx: Couldn't allocate host from scsi layer!\n");
1216 goto probe_disable_device;
1217 }
1218
1219 /* Clear our data area */
1220 ha = (struct scsi_qla_host *) host->hostdata;
1221 memset(ha, 0, sizeof(*ha));
1222
1223 /* Save the information from PCI BIOS. */
1224 ha->pdev = pdev;
1225 ha->host = host;
1226 ha->host_no = host->host_no;
1227
1228 /* Configure PCI I/O space. */
1229 ret = qla4xxx_iospace_config(ha);
1230 if (ret)
1231 goto probe_failed;
1232
1233 dev_info(&ha->pdev->dev, "Found an ISP%04x, irq %d, iobase 0x%p\n",
1234 pdev->device, pdev->irq, ha->reg);
1235
1236 qla4xxx_config_dma_addressing(ha);
1237
1238 /* Initialize lists and spinlocks. */
1239 INIT_LIST_HEAD(&ha->ddb_list);
1240 INIT_LIST_HEAD(&ha->free_srb_q);
1241
1242 mutex_init(&ha->mbox_sem);
1243 init_waitqueue_head(&ha->mailbox_wait_queue);
1244
1245 spin_lock_init(&ha->hardware_lock);
1246 spin_lock_init(&ha->list_lock);
1247
1248 /* Allocate dma buffers */
1249 if (qla4xxx_mem_alloc(ha)) {
1250 dev_warn(&ha->pdev->dev,
1251 "[ERROR] Failed to allocate memory for adapter\n");
1252
1253 ret = -ENOMEM;
1254 goto probe_failed;
1255 }
1256
1257 /*
1258 * Initialize the Host adapter request/response queues and
1259 * firmware
1260 * NOTE: interrupts enabled upon successful completion
1261 */
1262 status = qla4xxx_initialize_adapter(ha, REBUILD_DDB_LIST);
1263 while (status == QLA_ERROR && init_retry_count++ < MAX_INIT_RETRIES) {
1264 DEBUG2(printk("scsi: %s: retrying adapter initialization "
1265 "(%d)\n", __func__, init_retry_count));
1266 qla4xxx_soft_reset(ha);
1267 status = qla4xxx_initialize_adapter(ha, REBUILD_DDB_LIST);
1268 }
1269 if (status == QLA_ERROR) {
1270 dev_warn(&ha->pdev->dev, "Failed to initialize adapter\n");
1271
1272 ret = -ENODEV;
1273 goto probe_failed;
1274 }
1275
1276 host->cmd_per_lun = 3;
1277 host->max_channel = 0;
1278 host->max_lun = MAX_LUNS - 1;
1279 host->max_id = MAX_TARGETS;
1280 host->max_cmd_len = IOCB_MAX_CDB_LEN;
1281 host->can_queue = MAX_SRBS ;
1282 host->transportt = qla4xxx_scsi_transport;
1283
1284 ret = scsi_init_shared_tag_map(host, MAX_SRBS);
1285 if (ret) {
1286 dev_warn(&ha->pdev->dev, "scsi_init_shared_tag_map failed");
1287 goto probe_failed;
1288 }
1289
1290 /* Startup the kernel thread for this host adapter. */
1291 DEBUG2(printk("scsi: %s: Starting kernel thread for "
1292 "qla4xxx_dpc\n", __func__));
1293 sprintf(buf, "qla4xxx_%lu_dpc", ha->host_no);
1294 ha->dpc_thread = create_singlethread_workqueue(buf);
1295 if (!ha->dpc_thread) {
1296 dev_warn(&ha->pdev->dev, "Unable to start DPC thread!\n");
1297 ret = -ENODEV;
1298 goto probe_failed;
1299 }
1300 INIT_WORK(&ha->dpc_work, qla4xxx_do_dpc, ha);
1301
1302 ret = request_irq(pdev->irq, qla4xxx_intr_handler,
1303 SA_INTERRUPT|SA_SHIRQ, "qla4xxx", ha);
1304 if (ret) {
1305 dev_warn(&ha->pdev->dev, "Failed to reserve interrupt %d"
1306 " already in use.\n", pdev->irq);
1307 goto probe_failed;
1308 }
1309 set_bit(AF_IRQ_ATTACHED, &ha->flags);
1310 host->irq = pdev->irq;
1311 DEBUG(printk("scsi%d: irq %d attached\n", ha->host_no, ha->pdev->irq));
1312
1313 qla4xxx_enable_intrs(ha);
1314
1315 /* Start timer thread. */
1316 qla4xxx_start_timer(ha, qla4xxx_timer, 1);
1317
1318 set_bit(AF_INIT_DONE, &ha->flags);
1319
1320 pci_set_drvdata(pdev, ha);
1321
1322 ret = scsi_add_host(host, &pdev->dev);
1323 if (ret)
1324 goto probe_failed;
1325
1326 /* Update transport device information for all devices. */
1327 list_for_each_entry_safe(ddb_entry, ddbtemp, &ha->ddb_list, list) {
1328 if (ddb_entry->fw_ddb_device_state == DDB_DS_SESSION_ACTIVE)
1329 if (qla4xxx_add_sess(ddb_entry))
1330 goto remove_host;
1331 }
1332
1333 printk(KERN_INFO
1334 " QLogic iSCSI HBA Driver version: %s\n"
1335 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
1336 qla4xxx_version_str, ha->pdev->device, pci_name(ha->pdev),
1337 ha->host_no, ha->firmware_version[0], ha->firmware_version[1],
1338 ha->patch_number, ha->build_number);
1339
1340 return 0;
1341
1342remove_host:
1343 qla4xxx_free_ddb_list(ha);
1344 scsi_remove_host(host);
1345
1346probe_failed:
1347 qla4xxx_free_adapter(ha);
1348 scsi_host_put(ha->host);
1349
1350probe_disable_device:
1351 pci_disable_device(pdev);
1352
1353 return ret;
1354}
1355
1356/**
1357 * qla4xxx_remove_adapter - calback function to remove adapter.
1358 * @pci_dev: PCI device pointer
1359 **/
1360static void __devexit qla4xxx_remove_adapter(struct pci_dev *pdev)
1361{
1362 struct scsi_qla_host *ha;
1363
1364 ha = pci_get_drvdata(pdev);
1365
1366 /* remove devs from iscsi_sessions to scsi_devices */
1367 qla4xxx_free_ddb_list(ha);
1368
1369 scsi_remove_host(ha->host);
1370
1371 qla4xxx_free_adapter(ha);
1372
1373 scsi_host_put(ha->host);
1374
1375 pci_set_drvdata(pdev, NULL);
1376}
1377
1378/**
1379 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
1380 * @ha: HA context
1381 *
1382 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1383 * supported addressing method.
1384 */
1385void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha)
1386{
1387 int retval;
1388
1389 /* Update our PCI device dma_mask for full 64 bit mask */
1390 if (pci_set_dma_mask(ha->pdev, DMA_64BIT_MASK) == 0) {
1391 if (pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1392 dev_dbg(&ha->pdev->dev,
1393 "Failed to set 64 bit PCI consistent mask; "
1394 "using 32 bit.\n");
1395 retval = pci_set_consistent_dma_mask(ha->pdev,
1396 DMA_32BIT_MASK);
1397 }
1398 } else
1399 retval = pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK);
1400}
1401
1402static int qla4xxx_slave_alloc(struct scsi_device *sdev)
1403{
1404 struct iscsi_cls_session *sess = starget_to_session(sdev->sdev_target);
1405 struct ddb_entry *ddb = sess->dd_data;
1406
1407 sdev->hostdata = ddb;
1408 sdev->tagged_supported = 1;
1409 scsi_activate_tcq(sdev, sdev->host->can_queue);
1410 return 0;
1411}
1412
1413static int qla4xxx_slave_configure(struct scsi_device *sdev)
1414{
1415 sdev->tagged_supported = 1;
1416 return 0;
1417}
1418
1419static void qla4xxx_slave_destroy(struct scsi_device *sdev)
1420{
1421 scsi_deactivate_tcq(sdev, 1);
1422}
1423
1424/**
1425 * qla4xxx_del_from_active_array - returns an active srb
1426 * @ha: Pointer to host adapter structure.
1427 * @index: index into to the active_array
1428 *
1429 * This routine removes and returns the srb at the specified index
1430 **/
1431struct srb * qla4xxx_del_from_active_array(struct scsi_qla_host *ha, uint32_t index)
1432{
1433 struct srb *srb = NULL;
1434 struct scsi_cmnd *cmd;
1435
1436 if (!(cmd = scsi_host_find_tag(ha->host, index)))
1437 return srb;
1438
1439 if (!(srb = (struct srb *)cmd->host_scribble))
1440 return srb;
1441
1442 /* update counters */
1443 if (srb->flags & SRB_DMA_VALID) {
1444 ha->req_q_count += srb->iocb_cnt;
1445 ha->iocb_cnt -= srb->iocb_cnt;
1446 if (srb->cmd)
1447 srb->cmd->host_scribble = NULL;
1448 }
1449 return srb;
1450}
1451
1452/**
1453 * qla4xxx_soft_reset - performs a SOFT RESET of hba.
1454 * @ha: Pointer to host adapter structure.
1455 **/
1456int qla4xxx_soft_reset(struct scsi_qla_host *ha)
1457{
1458
1459 DEBUG2(printk(KERN_WARNING "scsi%ld: %s: chip reset!\n", ha->host_no,
1460 __func__));
1461 if (test_bit(AF_TOPCAT_CHIP_PRESENT, &ha->flags)) {
1462 int status = QLA_ERROR;
1463
1464 if ((qla4010_soft_reset(ha) == QLA_SUCCESS) &&
1465 (qla4xxx_topcat_reset(ha) == QLA_SUCCESS) &&
1466 (qla4010_soft_reset(ha) == QLA_SUCCESS) )
1467 status = QLA_SUCCESS;
1468 return status;
1469 } else
1470 return qla4010_soft_reset(ha);
1471}
1472
1473/**
1474 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
1475 * @ha: actual ha whose done queue will contain the comd returned by firmware.
1476 * @cmd: Scsi Command to wait on.
1477 *
1478 * This routine waits for the command to be returned by the Firmware
1479 * for some max time.
1480 **/
1481static int qla4xxx_eh_wait_on_command(struct scsi_qla_host *ha,
1482 struct scsi_cmnd *cmd)
1483{
1484 int done = 0;
1485 struct srb *rp;
1486 uint32_t max_wait_time = EH_WAIT_CMD_TOV;
1487
1488 do {
1489 /* Checking to see if its returned to OS */
1490 rp = (struct srb *) cmd->SCp.ptr;
1491 if (rp == NULL) {
1492 done++;
1493 break;
1494 }
1495
1496 msleep(2000);
1497 } while (max_wait_time--);
1498
1499 return done;
1500}
1501
1502/**
1503 * qla4xxx_wait_for_hba_online - waits for HBA to come online
1504 * @ha: Pointer to host adapter structure
1505 **/
1506static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha)
1507{
1508 unsigned long wait_online;
1509
1510 wait_online = jiffies + (30 * HZ);
1511 while (time_before(jiffies, wait_online)) {
1512
1513 if (adapter_up(ha))
1514 return QLA_SUCCESS;
1515 else if (ha->retry_reset_ha_cnt == 0)
1516 return QLA_ERROR;
1517
1518 msleep(2000);
1519 }
1520
1521 return QLA_ERROR;
1522}
1523
1524/**
1525 * qla4xxx_eh_wait_for_active_target_commands - wait for active cmds to finish.
1526 * @ha: pointer to to HBA
1527 * @t: target id
1528 * @l: lun id
1529 *
1530 * This function waits for all outstanding commands to a lun to complete. It
1531 * returns 0 if all pending commands are returned and 1 otherwise.
1532 **/
1533static int qla4xxx_eh_wait_for_active_target_commands(struct scsi_qla_host *ha,
1534 int t, int l)
1535{
1536 int cnt;
1537 int status = 0;
1538 struct scsi_cmnd *cmd;
1539
1540 /*
1541 * Waiting for all commands for the designated target in the active
1542 * array
1543 */
1544 for (cnt = 0; cnt < ha->host->can_queue; cnt++) {
1545 cmd = scsi_host_find_tag(ha->host, cnt);
1546 if (cmd && cmd->device->id == t && cmd->device->lun == l) {
1547 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
1548 status++;
1549 break;
1550 }
1551 }
1552 }
1553 return status;
1554}
1555
1556/**
1557 * qla4xxx_eh_device_reset - callback for target reset.
1558 * @cmd: Pointer to Linux's SCSI command structure
1559 *
1560 * This routine is called by the Linux OS to reset all luns on the
1561 * specified target.
1562 **/
1563static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd)
1564{
1565 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
1566 struct ddb_entry *ddb_entry = cmd->device->hostdata;
1567 struct srb *sp;
1568 int ret = FAILED, stat;
1569
1570 sp = (struct srb *) cmd->SCp.ptr;
1571 if (!sp || !ddb_entry)
1572 return ret;
1573
1574 dev_info(&ha->pdev->dev,
1575 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha->host_no,
1576 cmd->device->channel, cmd->device->id, cmd->device->lun);
1577
1578 DEBUG2(printk(KERN_INFO
1579 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
1580 "dpc_flags=%lx, status=%x allowed=%d\n", ha->host_no,
1581 cmd, jiffies, cmd->timeout_per_command / HZ,
1582 ha->dpc_flags, cmd->result, cmd->allowed));
1583
1584 /* FIXME: wait for hba to go online */
1585 stat = qla4xxx_reset_lun(ha, ddb_entry, cmd->device->lun);
1586 if (stat != QLA_SUCCESS) {
1587 dev_info(&ha->pdev->dev, "DEVICE RESET FAILED. %d\n", stat);
1588 goto eh_dev_reset_done;
1589 }
1590
1591 /* Send marker. */
1592 ha->marker_needed = 1;
1593
1594 /*
1595 * If we are coming down the EH path, wait for all commands to complete
1596 * for the device.
1597 */
1598 if (cmd->device->host->shost_state == SHOST_RECOVERY) {
1599 if (qla4xxx_eh_wait_for_active_target_commands(ha,
1600 cmd->device->id,
1601 cmd->device->lun)){
1602 dev_info(&ha->pdev->dev,
1603 "DEVICE RESET FAILED - waiting for "
1604 "commands.\n");
1605 goto eh_dev_reset_done;
1606 }
1607 }
1608
1609 dev_info(&ha->pdev->dev,
1610 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
1611 ha->host_no, cmd->device->channel, cmd->device->id,
1612 cmd->device->lun);
1613
1614 ret = SUCCESS;
1615
1616eh_dev_reset_done:
1617
1618 return ret;
1619}
1620
1621/**
1622 * qla4xxx_eh_host_reset - kernel callback
1623 * @cmd: Pointer to Linux's SCSI command structure
1624 *
1625 * This routine is invoked by the Linux kernel to perform fatal error
1626 * recovery on the specified adapter.
1627 **/
1628static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd)
1629{
1630 int return_status = FAILED;
1631 struct scsi_qla_host *ha;
1632
1633 ha = (struct scsi_qla_host *) cmd->device->host->hostdata;
1634
1635 dev_info(&ha->pdev->dev,
1636 "scsi(%ld:%d:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no,
1637 cmd->device->channel, cmd->device->id, cmd->device->lun);
1638
1639 if (qla4xxx_wait_for_hba_online(ha) != QLA_SUCCESS) {
1640 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
1641 "DEAD.\n", ha->host_no, cmd->device->channel,
1642 __func__));
1643
1644 return FAILED;
1645 }
1646
1647 if (qla4xxx_recover_adapter(ha, PRESERVE_DDB_LIST) == QLA_SUCCESS) {
1648 return_status = SUCCESS;
1649 }
1650
1651 dev_info(&ha->pdev->dev, "HOST RESET %s.\n",
1652 return_status == FAILED ? "FAILED" : "SUCCEDED");
1653
1654 return return_status;
1655}
1656
1657
1658static struct pci_device_id qla4xxx_pci_tbl[] = {
1659 {
1660 .vendor = PCI_VENDOR_ID_QLOGIC,
1661 .device = PCI_DEVICE_ID_QLOGIC_ISP4010,
1662 .subvendor = PCI_ANY_ID,
1663 .subdevice = PCI_ANY_ID,
1664 },
1665 {
1666 .vendor = PCI_VENDOR_ID_QLOGIC,
1667 .device = PCI_DEVICE_ID_QLOGIC_ISP4022,
1668 .subvendor = PCI_ANY_ID,
1669 .subdevice = PCI_ANY_ID,
1670 },
1671 {0, 0},
1672};
1673MODULE_DEVICE_TABLE(pci, qla4xxx_pci_tbl);
1674
1675struct pci_driver qla4xxx_pci_driver = {
1676 .name = DRIVER_NAME,
1677 .id_table = qla4xxx_pci_tbl,
1678 .probe = qla4xxx_probe_adapter,
1679 .remove = qla4xxx_remove_adapter,
1680};
1681
1682static int __init qla4xxx_module_init(void)
1683{
1684 int ret;
1685
1686 /* Allocate cache for SRBs. */
1687 srb_cachep = kmem_cache_create("qla4xxx_srbs", sizeof(struct srb), 0,
1688 SLAB_HWCACHE_ALIGN, NULL, NULL);
1689 if (srb_cachep == NULL) {
1690 printk(KERN_ERR
1691 "%s: Unable to allocate SRB cache..."
1692 "Failing load!\n", DRIVER_NAME);
1693 ret = -ENOMEM;
1694 goto no_srp_cache;
1695 }
1696
1697 /* Derive version string. */
1698 strcpy(qla4xxx_version_str, QLA4XXX_DRIVER_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07001699 if (ql4xextended_error_logging)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001700 strcat(qla4xxx_version_str, "-debug");
1701
1702 qla4xxx_scsi_transport =
1703 iscsi_register_transport(&qla4xxx_iscsi_transport);
1704 if (!qla4xxx_scsi_transport){
1705 ret = -ENODEV;
1706 goto release_srb_cache;
1707 }
1708
David Somayajuluafaf5a22006-09-19 10:28:00 -07001709 ret = pci_register_driver(&qla4xxx_pci_driver);
1710 if (ret)
1711 goto unregister_transport;
1712
1713 printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
1714 return 0;
Doug Maxey5ae16db2006-10-05 23:50:07 -05001715
David Somayajuluafaf5a22006-09-19 10:28:00 -07001716unregister_transport:
1717 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
1718release_srb_cache:
1719 kmem_cache_destroy(srb_cachep);
1720no_srp_cache:
1721 return ret;
1722}
1723
1724static void __exit qla4xxx_module_exit(void)
1725{
1726 pci_unregister_driver(&qla4xxx_pci_driver);
1727 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
1728 kmem_cache_destroy(srb_cachep);
1729}
1730
1731module_init(qla4xxx_module_init);
1732module_exit(qla4xxx_module_exit);
1733
1734MODULE_AUTHOR("QLogic Corporation");
1735MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
1736MODULE_LICENSE("GPL");
1737MODULE_VERSION(QLA4XXX_DRIVER_VERSION);