Blame view

drivers/scsi/qla4xxx/ql4_isr.c 21.6 KB
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
1
2
3
4
5
6
7
8
  /*
   * QLogic iSCSI HBA Driver
   * Copyright (c)  2003-2006 QLogic Corporation
   *
   * See LICENSE.qla4xxx for copyright and licensing details.
   */
  
  #include "ql4_def.h"
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
9
10
11
  #include "ql4_glbl.h"
  #include "ql4_dbg.h"
  #include "ql4_inline.h"
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
12
13
  
  /**
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
14
15
16
17
18
19
20
21
22
23
24
25
26
   * qla4xxx_status_entry - processes status IOCBs
   * @ha: Pointer to host adapter structure.
   * @sts_entry: Pointer to status entry structure.
   **/
  static void qla4xxx_status_entry(struct scsi_qla_host *ha,
  				 struct status_entry *sts_entry)
  {
  	uint8_t scsi_status;
  	struct scsi_cmnd *cmd;
  	struct srb *srb;
  	struct ddb_entry *ddb_entry;
  	uint32_t residual;
  	uint16_t sensebytecnt;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
27
28
29
30
31
32
33
34
  	srb = qla4xxx_del_from_active_array(ha, le32_to_cpu(sts_entry->handle));
  	if (!srb) {
  		/* FIXMEdg: Don't we need to reset ISP in this case??? */
  		DEBUG2(printk(KERN_WARNING "scsi%ld: %s: Status Entry invalid "
  			      "handle 0x%x, sp=%p. This cmd may have already "
  			      "been completed.
  ", ha->host_no, __func__,
  			      le32_to_cpu(sts_entry->handle), srb));
9d5629136   David C Somayajulu   [SCSI] qla4xxx: f...
35
36
37
38
  		dev_warn(&ha->pdev->dev, "%s invalid status entry:"
  			" handle=0x%0x
  ", __func__, sts_entry->handle);
  		set_bit(DPC_RESET_HA, &ha->dpc_flags);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
  		return;
  	}
  
  	cmd = srb->cmd;
  	if (cmd == NULL) {
  		DEBUG2(printk("scsi%ld: %s: Command already returned back to "
  			      "OS pkt->handle=%d srb=%p srb->state:%d
  ",
  			      ha->host_no, __func__, sts_entry->handle,
  			      srb, srb->state));
  		dev_warn(&ha->pdev->dev, "Command is NULL:"
  			" already returned to OS (srb=%p)
  ", srb);
  		return;
  	}
  
  	ddb_entry = srb->ddb;
  	if (ddb_entry == NULL) {
  		cmd->result = DID_NO_CONNECT << 16;
  		goto status_entry_exit;
  	}
  
  	residual = le32_to_cpu(sts_entry->residualByteCnt);
  
  	/* Translate ISP error to a Linux SCSI error. */
  	scsi_status = sts_entry->scsiStatus;
  	switch (sts_entry->completionStatus) {
  	case SCS_COMPLETE:
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
67

6ea7e33ee   David C Somayajulu   [SCSI] qla4xxx: F...
68
69
70
71
72
73
  		if (sts_entry->iscsiFlags & ISCSI_FLAG_RESIDUAL_OVER) {
  			cmd->result = DID_ERROR << 16;
  			break;
  		}
  
  		if (sts_entry->iscsiFlags &ISCSI_FLAG_RESIDUAL_UNDER) {
5f7186c84   FUJITA Tomonori   [SCSI] qla4xxx: c...
74
  			scsi_set_resid(cmd, residual);
9d5629136   David C Somayajulu   [SCSI] qla4xxx: f...
75
76
  			if (!scsi_status && ((scsi_bufflen(cmd) - residual) <
  				cmd->underflow)) {
6ea7e33ee   David C Somayajulu   [SCSI] qla4xxx: F...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  
  				cmd->result = DID_ERROR << 16;
  
  				DEBUG2(printk("scsi%ld:%d:%d:%d: %s: "
  					"Mid-layer Data underrun0, "
  					"xferlen = 0x%x, "
  					"residual = 0x%x
  ", ha->host_no,
  					cmd->device->channel,
  					cmd->device->id,
  					cmd->device->lun, __func__,
  					scsi_bufflen(cmd), residual));
  				break;
  			}
  		}
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
92
93
94
95
96
97
98
  
  		cmd->result = DID_OK << 16 | scsi_status;
  
  		if (scsi_status != SCSI_CHECK_CONDITION)
  			break;
  
  		/* Copy Sense Data into sense buffer. */
b80ca4f7e   FUJITA Tomonori   [SCSI] replace si...
99
  		memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
100
101
102
103
104
105
  
  		sensebytecnt = le16_to_cpu(sts_entry->senseDataByteCnt);
  		if (sensebytecnt == 0)
  			break;
  
  		memcpy(cmd->sense_buffer, sts_entry->senseData,
b80ca4f7e   FUJITA Tomonori   [SCSI] replace si...
106
  		       min_t(uint16_t, sensebytecnt, SCSI_SENSE_BUFFERSIZE));
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  
  		DEBUG2(printk("scsi%ld:%d:%d:%d: %s: sense key = %x, "
  			      "ASC/ASCQ = %02x/%02x
  ", ha->host_no,
  			      cmd->device->channel, cmd->device->id,
  			      cmd->device->lun, __func__,
  			      sts_entry->senseData[2] & 0x0f,
  			      sts_entry->senseData[12],
  			      sts_entry->senseData[13]));
  
  		srb->flags |= SRB_GOT_SENSE;
  		break;
  
  	case SCS_INCOMPLETE:
  		/* Always set the status to DID_ERROR, since
  		 * all conditions result in that status anyway */
  		cmd->result = DID_ERROR << 16;
  		break;
  
  	case SCS_RESET_OCCURRED:
  		DEBUG2(printk("scsi%ld:%d:%d:%d: %s: Device RESET occurred
  ",
  			      ha->host_no, cmd->device->channel,
  			      cmd->device->id, cmd->device->lun, __func__));
  
  		cmd->result = DID_RESET << 16;
  		break;
  
  	case SCS_ABORTED:
  		DEBUG2(printk("scsi%ld:%d:%d:%d: %s: Abort occurred
  ",
  			      ha->host_no, cmd->device->channel,
  			      cmd->device->id, cmd->device->lun, __func__));
  
  		cmd->result = DID_RESET << 16;
  		break;
  
  	case SCS_TIMEOUT:
  		DEBUG2(printk(KERN_INFO "scsi%ld:%d:%d:%d: Timeout
  ",
  			      ha->host_no, cmd->device->channel,
  			      cmd->device->id, cmd->device->lun));
56d7fcfa8   Mike Christie   [SCSI] iscsi clas...
149
  		cmd->result = DID_TRANSPORT_DISRUPTED << 16;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
150
151
152
153
154
155
156
157
158
159
160
161
  
  		/*
  		 * Mark device missing so that we won't continue to send
  		 * I/O to this device.	We should get a ddb state change
  		 * AEN soon.
  		 */
  		if (atomic_read(&ddb_entry->state) == DDB_STATE_ONLINE)
  			qla4xxx_mark_device_missing(ha, ddb_entry);
  		break;
  
  	case SCS_DATA_UNDERRUN:
  	case SCS_DATA_OVERRUN:
6ea7e33ee   David C Somayajulu   [SCSI] qla4xxx: F...
162
163
  		if ((sts_entry->iscsiFlags & ISCSI_FLAG_RESIDUAL_OVER) ||
  			(sts_entry->completionStatus == SCS_DATA_OVERRUN)) {
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
164
165
166
167
168
169
170
171
172
  			DEBUG2(printk("scsi%ld:%d:%d:%d: %s: " "Data overrun, "
  				      "residual = 0x%x
  ", ha->host_no,
  				      cmd->device->channel, cmd->device->id,
  				      cmd->device->lun, __func__, residual));
  
  			cmd->result = DID_ERROR << 16;
  			break;
  		}
6ea7e33ee   David C Somayajulu   [SCSI] qla4xxx: F...
173
  		scsi_set_resid(cmd, residual);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
174
175
176
177
178
179
180
181
182
183
184
185
  
  		/*
  		 * If there is scsi_status, it takes precedense over
  		 * underflow condition.
  		 */
  		if (scsi_status != 0) {
  			cmd->result = DID_OK << 16 | scsi_status;
  
  			if (scsi_status != SCSI_CHECK_CONDITION)
  				break;
  
  			/* Copy Sense Data into sense buffer. */
b80ca4f7e   FUJITA Tomonori   [SCSI] replace si...
186
  			memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
187
188
189
190
191
192
193
  
  			sensebytecnt =
  				le16_to_cpu(sts_entry->senseDataByteCnt);
  			if (sensebytecnt == 0)
  				break;
  
  			memcpy(cmd->sense_buffer, sts_entry->senseData,
b80ca4f7e   FUJITA Tomonori   [SCSI] replace si...
194
  			       min_t(uint16_t, sensebytecnt, SCSI_SENSE_BUFFERSIZE));
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  
  			DEBUG2(printk("scsi%ld:%d:%d:%d: %s: sense key = %x, "
  				      "ASC/ASCQ = %02x/%02x
  ", ha->host_no,
  				      cmd->device->channel, cmd->device->id,
  				      cmd->device->lun, __func__,
  				      sts_entry->senseData[2] & 0x0f,
  				      sts_entry->senseData[12],
  				      sts_entry->senseData[13]));
  		} else {
  			/*
  			 * If RISC reports underrun and target does not
  			 * report it then we must have a lost frame, so
  			 * tell upper layer to retry it by reporting a
  			 * bus busy.
  			 */
  			if ((sts_entry->iscsiFlags &
  			     ISCSI_FLAG_RESIDUAL_UNDER) == 0) {
  				cmd->result = DID_BUS_BUSY << 16;
5f7186c84   FUJITA Tomonori   [SCSI] qla4xxx: c...
214
  			} else if ((scsi_bufflen(cmd) - residual) <
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  				   cmd->underflow) {
  				/*
  				 * Handle mid-layer underflow???
  				 *
  				 * For kernels less than 2.4, the driver must
  				 * return an error if an underflow is detected.
  				 * For kernels equal-to and above 2.4, the
  				 * mid-layer will appearantly handle the
  				 * underflow by detecting the residual count --
  				 * unfortunately, we do not see where this is
  				 * actually being done.	 In the interim, we
  				 * will return DID_ERROR.
  				 */
  				DEBUG2(printk("scsi%ld:%d:%d:%d: %s: "
6ea7e33ee   David C Somayajulu   [SCSI] qla4xxx: F...
229
230
231
232
233
234
235
236
  					"Mid-layer Data underrun1, "
  					"xferlen = 0x%x, "
  					"residual = 0x%x
  ", ha->host_no,
  					cmd->device->channel,
  					cmd->device->id,
  					cmd->device->lun, __func__,
  					scsi_bufflen(cmd), residual));
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
  
  				cmd->result = DID_ERROR << 16;
  			} else {
  				cmd->result = DID_OK << 16;
  			}
  		}
  		break;
  
  	case SCS_DEVICE_LOGGED_OUT:
  	case SCS_DEVICE_UNAVAILABLE:
  		/*
  		 * Mark device missing so that we won't continue to
  		 * send I/O to this device.  We should get a ddb
  		 * state change AEN soon.
  		 */
  		if (atomic_read(&ddb_entry->state) == DDB_STATE_ONLINE)
  			qla4xxx_mark_device_missing(ha, ddb_entry);
56d7fcfa8   Mike Christie   [SCSI] iscsi clas...
254
  		cmd->result = DID_TRANSPORT_DISRUPTED << 16;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
  		break;
  
  	case SCS_QUEUE_FULL:
  		/*
  		 * SCSI Mid-Layer handles device queue full
  		 */
  		cmd->result = DID_OK << 16 | sts_entry->scsiStatus;
  		DEBUG2(printk("scsi%ld:%d:%d: %s: QUEUE FULL detected "
  			      "compl=%02x, scsi=%02x, state=%02x, iFlags=%02x,"
  			      " iResp=%02x
  ", ha->host_no, cmd->device->id,
  			      cmd->device->lun, __func__,
  			      sts_entry->completionStatus,
  			      sts_entry->scsiStatus, sts_entry->state_flags,
  			      sts_entry->iscsiFlags,
  			      sts_entry->iscsiResponse));
  		break;
  
  	default:
  		cmd->result = DID_ERROR << 16;
  		break;
  	}
  
  status_entry_exit:
  
  	/* complete the request */
  	srb->cc_stat = sts_entry->completionStatus;
  	qla4xxx_srb_compl(ha, srb);
  }
  
  /**
   * qla4xxx_process_response_queue - process response queue completions
   * @ha: Pointer to host adapter structure.
   *
   * This routine process response queue completions in interrupt context.
   * Hardware_lock locked upon entry
   **/
  static void qla4xxx_process_response_queue(struct scsi_qla_host * ha)
  {
  	uint32_t count = 0;
  	struct srb *srb = NULL;
  	struct status_entry *sts_entry;
  
  	/* Process all responses from response queue */
  	while ((ha->response_in =
  		(uint16_t)le32_to_cpu(ha->shadow_regs->rsp_q_in)) !=
  	       ha->response_out) {
  		sts_entry = (struct status_entry *) ha->response_ptr;
  		count++;
  
  		/* Advance pointers for next entry */
  		if (ha->response_out == (RESPONSE_QUEUE_DEPTH - 1)) {
  			ha->response_out = 0;
  			ha->response_ptr = ha->response_ring;
  		} else {
  			ha->response_out++;
  			ha->response_ptr++;
  		}
  
  		/* process entry */
  		switch (sts_entry->hdr.entryType) {
  		case ET_STATUS:
  			/*
  			 * Common status - Single completion posted in single
  			 * IOSB.
  			 */
  			qla4xxx_status_entry(ha, sts_entry);
  			break;
  
  		case ET_PASSTHRU_STATUS:
  			break;
  
  		case ET_STATUS_CONTINUATION:
  			/* Just throw away the status continuation entries */
  			DEBUG2(printk("scsi%ld: %s: Status Continuation entry "
  				      "- ignoring
  ", ha->host_no, __func__));
  			break;
  
  		case ET_COMMAND:
  			/* ISP device queue is full. Command not
  			 * accepted by ISP.  Queue command for
  			 * later */
  
  			srb = qla4xxx_del_from_active_array(ha,
  						    le32_to_cpu(sts_entry->
  								handle));
  			if (srb == NULL)
  				goto exit_prq_invalid_handle;
  
  			DEBUG2(printk("scsi%ld: %s: FW device queue full, "
  				      "srb %p
  ", ha->host_no, __func__, srb));
  
  			/* ETRY normally by sending it back with
  			 * DID_BUS_BUSY */
  			srb->cmd->result = DID_BUS_BUSY << 16;
  			qla4xxx_srb_compl(ha, srb);
  			break;
  
  		case ET_CONTINUE:
  			/* Just throw away the continuation entries */
  			DEBUG2(printk("scsi%ld: %s: Continuation entry - "
  				      "ignoring
  ", ha->host_no, __func__));
  			break;
  
  		default:
  			/*
  			 * Invalid entry in response queue, reset RISC
  			 * firmware.
  			 */
  			DEBUG2(printk("scsi%ld: %s: Invalid entry %x in "
  				      "response queue 
  ", ha->host_no,
  				      __func__,
  				      sts_entry->hdr.entryType));
  			goto exit_prq_error;
  		}
  	}
  
  	/*
  	 * Done with responses, update the ISP For QLA4010, this also clears
  	 * the interrupt.
  	 */
  	writel(ha->response_out, &ha->reg->rsp_q_out);
  	readl(&ha->reg->rsp_q_out);
  
  	return;
  
  exit_prq_invalid_handle:
  	DEBUG2(printk("scsi%ld: %s: Invalid handle(srb)=%p type=%x IOCS=%x
  ",
  		      ha->host_no, __func__, srb, sts_entry->hdr.entryType,
  		      sts_entry->completionStatus));
  
  exit_prq_error:
  	writel(ha->response_out, &ha->reg->rsp_q_out);
  	readl(&ha->reg->rsp_q_out);
  
  	set_bit(DPC_RESET_HA, &ha->dpc_flags);
  }
  
  /**
   * qla4xxx_isr_decode_mailbox - decodes mailbox status
   * @ha: Pointer to host adapter structure.
   * @mailbox_status: Mailbox status.
   *
   * This routine decodes the mailbox status during the ISR.
   * Hardware_lock locked upon entry. runs in interrupt context.
   **/
  static void qla4xxx_isr_decode_mailbox(struct scsi_qla_host * ha,
  				       uint32_t mbox_status)
  {
  	int i;
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
410
  	uint32_t mbox_stat2, mbox_stat3;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
  
  	if ((mbox_status == MBOX_STS_BUSY) ||
  	    (mbox_status == MBOX_STS_INTERMEDIATE_COMPLETION) ||
  	    (mbox_status >> 12 == MBOX_COMPLETION_STATUS)) {
  		ha->mbox_status[0] = mbox_status;
  
  		if (test_bit(AF_MBOX_COMMAND, &ha->flags)) {
  			/*
  			 * Copy all mailbox registers to a temporary
  			 * location and set mailbox command done flag
  			 */
  			for (i = 1; i < ha->mbox_status_count; i++)
  				ha->mbox_status[i] =
  					readl(&ha->reg->mailbox[i]);
  
  			set_bit(AF_MBOX_COMMAND_DONE, &ha->flags);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
427
428
429
430
  		}
  	} else if (mbox_status >> 12 == MBOX_ASYNC_EVENT_STATUS) {
  		/* Immediately process the AENs that don't require much work.
  		 * Only queue the database_changed AENs */
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
431
432
433
434
435
436
  		if (ha->aen_log.count < MAX_AEN_ENTRIES) {
  			for (i = 0; i < MBOX_AEN_REG_COUNT; i++)
  				ha->aen_log.entry[ha->aen_log.count].mbox_sts[i] =
  					readl(&ha->reg->mailbox[i]);
  			ha->aen_log.count++;
  		}
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
  		switch (mbox_status) {
  		case MBOX_ASTS_SYSTEM_ERROR:
  			/* Log Mailbox registers */
  			if (ql4xdontresethba) {
  				DEBUG2(printk("%s:Dont Reset HBA
  ",
  					      __func__));
  			} else {
  				set_bit(AF_GET_CRASH_RECORD, &ha->flags);
  				set_bit(DPC_RESET_HA, &ha->dpc_flags);
  			}
  			break;
  
  		case MBOX_ASTS_REQUEST_TRANSFER_ERROR:
  		case MBOX_ASTS_RESPONSE_TRANSFER_ERROR:
  		case MBOX_ASTS_NVRAM_INVALID:
  		case MBOX_ASTS_IP_ADDRESS_CHANGED:
  		case MBOX_ASTS_DHCP_LEASE_EXPIRED:
  			DEBUG2(printk("scsi%ld: AEN %04x, ERROR Status, "
  				      "Reset HA
  ", ha->host_no, mbox_status));
  			set_bit(DPC_RESET_HA, &ha->dpc_flags);
  			break;
  
  		case MBOX_ASTS_LINK_UP:
  			DEBUG2(printk("scsi%ld: AEN %04x Adapter LINK UP
  ",
  				      ha->host_no, mbox_status));
  			set_bit(AF_LINK_UP, &ha->flags);
  			break;
  
  		case MBOX_ASTS_LINK_DOWN:
  			DEBUG2(printk("scsi%ld: AEN %04x Adapter LINK DOWN
  ",
  				      ha->host_no, mbox_status));
  			clear_bit(AF_LINK_UP, &ha->flags);
  			break;
  
  		case MBOX_ASTS_HEARTBEAT:
  			ha->seconds_since_last_heartbeat = 0;
  			break;
  
  		case MBOX_ASTS_DHCP_LEASE_ACQUIRED:
  			DEBUG2(printk("scsi%ld: AEN %04x DHCP LEASE "
  				      "ACQUIRED
  ", ha->host_no, mbox_status));
  			set_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags);
  			break;
  
  		case MBOX_ASTS_PROTOCOL_STATISTIC_ALARM:
  		case MBOX_ASTS_SCSI_COMMAND_PDU_REJECTED: /* Target
  							   * mode
  							   * only */
  		case MBOX_ASTS_UNSOLICITED_PDU_RECEIVED:  /* Connection mode */
  		case MBOX_ASTS_IPSEC_SYSTEM_FATAL_ERROR:
  		case MBOX_ASTS_SUBNET_STATE_CHANGE:
  			/* No action */
  			DEBUG2(printk("scsi%ld: AEN %04x
  ", ha->host_no,
  				      mbox_status));
  			break;
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
498
499
500
501
502
503
504
505
506
  		case MBOX_ASTS_IP_ADDR_STATE_CHANGED:
  			mbox_stat2 = readl(&ha->reg->mailbox[2]);
  			mbox_stat3 = readl(&ha->reg->mailbox[3]);
  
  			if ((mbox_stat3 == 5) && (mbox_stat2 == 3))
  				set_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags);
  			else if ((mbox_stat3 == 2) && (mbox_stat2 == 5))
  				set_bit(DPC_RESET_HA, &ha->dpc_flags);
  			break;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
  		case MBOX_ASTS_MAC_ADDRESS_CHANGED:
  		case MBOX_ASTS_DNS:
  			/* No action */
  			DEBUG2(printk(KERN_INFO "scsi%ld: AEN %04x, "
  				      "mbox_sts[1]=%04x, mbox_sts[2]=%04x
  ",
  				      ha->host_no, mbox_status,
  				      readl(&ha->reg->mailbox[1]),
  				      readl(&ha->reg->mailbox[2])));
  			break;
  
  		case MBOX_ASTS_SELF_TEST_FAILED:
  		case MBOX_ASTS_LOGIN_FAILED:
  			/* No action */
  			DEBUG2(printk("scsi%ld: AEN %04x, mbox_sts[1]=%04x, "
  				      "mbox_sts[2]=%04x, mbox_sts[3]=%04x
  ",
  				      ha->host_no, mbox_status,
  				      readl(&ha->reg->mailbox[1]),
  				      readl(&ha->reg->mailbox[2]),
  				      readl(&ha->reg->mailbox[3])));
  			break;
  
  		case MBOX_ASTS_DATABASE_CHANGED:
  			/* Queue AEN information and process it in the DPC
  			 * routine */
  			if (ha->aen_q_count > 0) {
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
  
  				/* decrement available counter */
  				ha->aen_q_count--;
  
  				for (i = 1; i < MBOX_AEN_REG_COUNT; i++)
  					ha->aen_q[ha->aen_in].mbox_sts[i] =
  						readl(&ha->reg->mailbox[i]);
  
  				ha->aen_q[ha->aen_in].mbox_sts[0] = mbox_status;
  
  				/* print debug message */
  				DEBUG2(printk("scsi%ld: AEN[%d] %04x queued"
  					      " mb1:0x%x mb2:0x%x mb3:0x%x mb4:0x%x
  ",
  					      ha->host_no, ha->aen_in,
  					      mbox_status,
  					      ha->aen_q[ha->aen_in].mbox_sts[1],
  					      ha->aen_q[ha->aen_in].mbox_sts[2],
  					      ha->aen_q[ha->aen_in].mbox_sts[3],
  					      ha->aen_q[ha->aen_in].  mbox_sts[4]));
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
554
555
556
557
  				/* advance pointer */
  				ha->aen_in++;
  				if (ha->aen_in == MAX_AEN_ENTRIES)
  					ha->aen_in = 0;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
  
  				/* The DPC routine will process the aen */
  				set_bit(DPC_AEN, &ha->dpc_flags);
  			} else {
  				DEBUG2(printk("scsi%ld: %s: aen %04x, queue "
  					      "overflowed!  AEN LOST!!
  ",
  					      ha->host_no, __func__,
  					      mbox_status));
  
  				DEBUG2(printk("scsi%ld: DUMP AEN QUEUE
  ",
  					      ha->host_no));
  
  				for (i = 0; i < MAX_AEN_ENTRIES; i++) {
  					DEBUG2(printk("AEN[%d] %04x %04x %04x "
  						      "%04x
  ", i,
  						      ha->aen_q[i].mbox_sts[0],
  						      ha->aen_q[i].mbox_sts[1],
  						      ha->aen_q[i].mbox_sts[2],
  						      ha->aen_q[i].mbox_sts[3]));
  				}
  			}
  			break;
  
  		default:
  			DEBUG2(printk(KERN_WARNING
  				      "scsi%ld: AEN %04x UNKNOWN
  ",
  				      ha->host_no, mbox_status));
  			break;
  		}
  	} else {
  		DEBUG2(printk("scsi%ld: Unknown mailbox status %08X
  ",
  			      ha->host_no, mbox_status));
  
  		ha->mbox_status[0] = mbox_status;
  	}
  }
  
  /**
   * qla4xxx_interrupt_service_routine - isr
   * @ha: pointer to host adapter structure.
   *
   * This is the main interrupt service routine.
   * hardware_lock locked upon entry. runs in interrupt context.
   **/
  void qla4xxx_interrupt_service_routine(struct scsi_qla_host * ha,
  				       uint32_t intr_status)
  {
  	/* Process response queue interrupt. */
  	if (intr_status & CSR_SCSI_COMPLETION_INTR)
  		qla4xxx_process_response_queue(ha);
  
  	/* Process mailbox/asynch event	 interrupt.*/
  	if (intr_status & CSR_SCSI_PROCESSOR_INTR) {
  		qla4xxx_isr_decode_mailbox(ha,
  					   readl(&ha->reg->mailbox[0]));
  
  		/* Clear Mailbox Interrupt */
  		writel(set_rmask(CSR_SCSI_PROCESSOR_INTR),
  		       &ha->reg->ctrl_status);
  		readl(&ha->reg->ctrl_status);
  	}
  }
  
  /**
   * qla4xxx_intr_handler - hardware interrupt handler.
   * @irq: Unused
   * @dev_id: Pointer to host adapter structure
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
630
   **/
7d12e780e   David Howells   IRQ: Maintain reg...
631
  irqreturn_t qla4xxx_intr_handler(int irq, void *dev_id)
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
  {
  	struct scsi_qla_host *ha;
  	uint32_t intr_status;
  	unsigned long flags = 0;
  	uint8_t reqs_count = 0;
  
  	ha = (struct scsi_qla_host *) dev_id;
  	if (!ha) {
  		DEBUG2(printk(KERN_INFO
  			      "qla4xxx: Interrupt with NULL host ptr
  "));
  		return IRQ_NONE;
  	}
  
  	spin_lock_irqsave(&ha->hardware_lock, flags);
d915058f4   David C Somayajulu   [SCSI] qla4xxx: a...
647
  	ha->isr_count++;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
  	/*
  	 * Repeatedly service interrupts up to a maximum of
  	 * MAX_REQS_SERVICED_PER_INTR
  	 */
  	while (1) {
  		/*
  		 * Read interrupt status
  		 */
  		if (le32_to_cpu(ha->shadow_regs->rsp_q_in) !=
  		    ha->response_out)
  			intr_status = CSR_SCSI_COMPLETION_INTR;
  		else
  			intr_status = readl(&ha->reg->ctrl_status);
  
  		if ((intr_status &
  		     (CSR_SCSI_RESET_INTR|CSR_FATAL_ERROR|INTR_PENDING)) ==
  		    0) {
  			if (reqs_count == 0)
  				ha->spurious_int_count++;
  			break;
  		}
  
  		if (intr_status & CSR_FATAL_ERROR) {
  			DEBUG2(printk(KERN_INFO "scsi%ld: Fatal Error, "
  				      "Status 0x%04x
  ", ha->host_no,
  				      readl(isp_port_error_status (ha))));
  
  			/* Issue Soft Reset to clear this error condition.
  			 * This will prevent the RISC from repeatedly
  			 * interrupting the driver; thus, allowing the DPC to
  			 * get scheduled to continue error recovery.
  			 * NOTE: Disabling RISC interrupts does not work in
  			 * this case, as CSR_FATAL_ERROR overrides
  			 * CSR_SCSI_INTR_ENABLE */
  			if ((readl(&ha->reg->ctrl_status) &
  			     CSR_SCSI_RESET_INTR) == 0) {
  				writel(set_rmask(CSR_SOFT_RESET),
  				       &ha->reg->ctrl_status);
  				readl(&ha->reg->ctrl_status);
  			}
  
  			writel(set_rmask(CSR_FATAL_ERROR),
  			       &ha->reg->ctrl_status);
  			readl(&ha->reg->ctrl_status);
  
  			__qla4xxx_disable_intrs(ha);
  
  			set_bit(DPC_RESET_HA, &ha->dpc_flags);
  
  			break;
  		} else if (intr_status & CSR_SCSI_RESET_INTR) {
  			clear_bit(AF_ONLINE, &ha->flags);
  			__qla4xxx_disable_intrs(ha);
  
  			writel(set_rmask(CSR_SCSI_RESET_INTR),
  			       &ha->reg->ctrl_status);
  			readl(&ha->reg->ctrl_status);
477ffb9d8   David C Somayajulu   [SCSI] qla4xxx: b...
706
707
  			if (!ql4_mod_unload)
  				set_bit(DPC_RESET_HA_INTR, &ha->dpc_flags);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
  
  			break;
  		} else if (intr_status & INTR_PENDING) {
  			qla4xxx_interrupt_service_routine(ha, intr_status);
  			ha->total_io_count++;
  			if (++reqs_count == MAX_REQS_SERVICED_PER_INTR)
  				break;
  
  			intr_status = 0;
  		}
  	}
  
  	spin_unlock_irqrestore(&ha->hardware_lock, flags);
  
  	return IRQ_HANDLED;
  }
  
  /**
   * qla4xxx_process_aen - processes AENs generated by firmware
   * @ha: pointer to host adapter structure.
   * @process_aen: type of AENs to process
   *
   * Processes specific types of Asynchronous Events generated by firmware.
   * The type of AENs to process is specified by process_aen and can be
   *	PROCESS_ALL_AENS	 0
   *	FLUSH_DDB_CHANGED_AENS	 1
   *	RELOGIN_DDB_CHANGED_AENS 2
   **/
  void qla4xxx_process_aen(struct scsi_qla_host * ha, uint8_t process_aen)
  {
  	uint32_t mbox_sts[MBOX_AEN_REG_COUNT];
  	struct aen *aen;
  	int i;
  	unsigned long flags;
  
  	spin_lock_irqsave(&ha->hardware_lock, flags);
  	while (ha->aen_out != ha->aen_in) {
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
745
  		aen = &ha->aen_q[ha->aen_out];
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
746
747
748
  		/* copy aen information to local structure */
  		for (i = 0; i < MBOX_AEN_REG_COUNT; i++)
  			mbox_sts[i] = aen->mbox_sts[i];
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
749
750
751
752
753
  		ha->aen_q_count++;
  		ha->aen_out++;
  
  		if (ha->aen_out == MAX_AEN_ENTRIES)
  			ha->aen_out = 0;
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
754
  		spin_unlock_irqrestore(&ha->hardware_lock, flags);
401425b1e   David C Somayajulu   [SCSI] qla4xxx: q...
755
756
757
758
759
760
  		DEBUG2(printk("qla4xxx(%ld): AEN[%d]=0x%08x, mbx1=0x%08x mbx2=0x%08x"
  			" mbx3=0x%08x mbx4=0x%08x
  ", ha->host_no,
  			(ha->aen_out ? (ha->aen_out-1): (MAX_AEN_ENTRIES-1)),
  			mbox_sts[0], mbox_sts[1], mbox_sts[2],
  			mbox_sts[3], mbox_sts[4]));
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
  
  		switch (mbox_sts[0]) {
  		case MBOX_ASTS_DATABASE_CHANGED:
  			if (process_aen == FLUSH_DDB_CHANGED_AENS) {
  				DEBUG2(printk("scsi%ld: AEN[%d] %04x, index "
  					      "[%d] state=%04x FLUSHED!
  ",
  					      ha->host_no, ha->aen_out,
  					      mbox_sts[0], mbox_sts[2],
  					      mbox_sts[3]));
  				break;
  			} else if (process_aen == RELOGIN_DDB_CHANGED_AENS) {
  				/* for use during init time, we only want to
  				 * relogin non-active ddbs */
  				struct ddb_entry *ddb_entry;
  
  				ddb_entry =
  					/* FIXME: name length? */
  					qla4xxx_lookup_ddb_by_fw_index(ha,
  								       mbox_sts[2]);
  				if (!ddb_entry)
  					break;
  
  				ddb_entry->dev_scan_wait_to_complete_relogin =
  					0;
  				ddb_entry->dev_scan_wait_to_start_relogin =
  					jiffies +
  					((ddb_entry->default_time2wait +
  					  4) * HZ);
  
  				DEBUG2(printk("scsi%ld: ddb index [%d] initate"
  					      " RELOGIN after %d seconds
  ",
  					      ha->host_no,
  					      ddb_entry->fw_ddb_index,
  					      ddb_entry->default_time2wait +
  					      4));
  				break;
  			}
  
  			if (mbox_sts[1] == 0) {	/* Global DB change. */
  				qla4xxx_reinitialize_ddb_list(ha);
  			} else if (mbox_sts[1] == 1) {	/* Specific device. */
  				qla4xxx_process_ddb_changed(ha, mbox_sts[2],
  							    mbox_sts[3]);
  			}
  			break;
  		}
  		spin_lock_irqsave(&ha->hardware_lock, flags);
  	}
  	spin_unlock_irqrestore(&ha->hardware_lock, flags);
afaf5a2d3   David Somayajulu   [SCSI] Initial Co...
812
  }