2 * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family
3 * of PCI-SCSI IO processors.
5 * Copyright (C) 1999-2001 Gerard Roudier <groudier@free.fr>
6 * Copyright (c) 2003-2005 Matthew Wilcox <matthew@wil.cx>
8 * This driver is derived from the Linux sym53c8xx driver.
9 * Copyright (C) 1998-2000 Gerard Roudier
11 * The sym53c8xx driver is derived from the ncr53c8xx driver that had been
12 * a port of the FreeBSD ncr driver to Linux-1.2.13.
14 * The original ncr driver has been written for 386bsd and FreeBSD by
15 * Wolfgang Stanglmeier <wolf@cologne.de>
16 * Stefan Esser <se@mi.Uni-Koeln.de>
17 * Copyright (C) 1994 Wolfgang Stanglmeier
19 * Other major contributions:
21 * NVRAM detection and reading.
22 * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk>
24 *-----------------------------------------------------------------------------
26 * This program is free software; you can redistribute it and/or modify
27 * it under the terms of the GNU General Public License as published by
28 * the Free Software Foundation; either version 2 of the License, or
29 * (at your option) any later version.
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, write to the Free Software
38 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
40 #include <linux/ctype.h>
41 #include <linux/init.h>
42 #include <linux/module.h>
43 #include <linux/moduleparam.h>
44 #include <linux/spinlock.h>
45 #include <scsi/scsi.h>
46 #include <scsi/scsi_tcq.h>
47 #include <scsi/scsi_device.h>
48 #include <scsi/scsi_transport.h>
51 #include "sym_nvram.h"
53 #define NAME53C "sym53c"
54 #define NAME53C8XX "sym53c8xx"
56 struct sym_driver_setup sym_driver_setup
= SYM_LINUX_DRIVER_SETUP
;
57 unsigned int sym_debug_flags
= 0;
59 static char *excl_string
;
60 static char *safe_string
;
61 module_param_named(cmd_per_lun
, sym_driver_setup
.max_tag
, ushort
, 0);
62 module_param_named(burst
, sym_driver_setup
.burst_order
, byte
, 0);
63 module_param_named(led
, sym_driver_setup
.scsi_led
, byte
, 0);
64 module_param_named(diff
, sym_driver_setup
.scsi_diff
, byte
, 0);
65 module_param_named(irqm
, sym_driver_setup
.irq_mode
, byte
, 0);
66 module_param_named(buschk
, sym_driver_setup
.scsi_bus_check
, byte
, 0);
67 module_param_named(hostid
, sym_driver_setup
.host_id
, byte
, 0);
68 module_param_named(verb
, sym_driver_setup
.verbose
, byte
, 0);
69 module_param_named(debug
, sym_debug_flags
, uint
, 0);
70 module_param_named(settle
, sym_driver_setup
.settle_delay
, byte
, 0);
71 module_param_named(nvram
, sym_driver_setup
.use_nvram
, byte
, 0);
72 module_param_named(excl
, excl_string
, charp
, 0);
73 module_param_named(safe
, safe_string
, charp
, 0);
75 MODULE_PARM_DESC(cmd_per_lun
, "The maximum number of tags to use by default");
76 MODULE_PARM_DESC(burst
, "Maximum burst. 0 to disable, 255 to read from registers");
77 MODULE_PARM_DESC(led
, "Set to 1 to enable LED support");
78 MODULE_PARM_DESC(diff
, "0 for no differential mode, 1 for BIOS, 2 for always, 3 for not GPIO3");
79 MODULE_PARM_DESC(irqm
, "0 for open drain, 1 to leave alone, 2 for totem pole");
80 MODULE_PARM_DESC(buschk
, "0 to not check, 1 for detach on error, 2 for warn on error");
81 MODULE_PARM_DESC(hostid
, "The SCSI ID to use for the host adapters");
82 MODULE_PARM_DESC(verb
, "0 for minimal verbosity, 1 for normal, 2 for excessive");
83 MODULE_PARM_DESC(debug
, "Set bits to enable debugging");
84 MODULE_PARM_DESC(settle
, "Settle delay in seconds. Default 3");
85 MODULE_PARM_DESC(nvram
, "Option currently not used");
86 MODULE_PARM_DESC(excl
, "List ioport addresses here to prevent controllers from being attached");
87 MODULE_PARM_DESC(safe
, "Set other settings to a \"safe mode\"");
89 MODULE_LICENSE("GPL");
90 MODULE_VERSION(SYM_VERSION
);
91 MODULE_AUTHOR("Matthew Wilcox <matthew@wil.cx>");
92 MODULE_DESCRIPTION("NCR, Symbios and LSI 8xx and 1010 PCI SCSI adapters");
94 static void sym2_setup_params(void)
96 char *p
= excl_string
;
99 while (p
&& (xi
< 8)) {
101 int val
= (int) simple_strtoul(p
, &next_p
, 0);
102 sym_driver_setup
.excludes
[xi
++] = val
;
107 if (*safe_string
== 'y') {
108 sym_driver_setup
.max_tag
= 0;
109 sym_driver_setup
.burst_order
= 0;
110 sym_driver_setup
.scsi_led
= 0;
111 sym_driver_setup
.scsi_diff
= 1;
112 sym_driver_setup
.irq_mode
= 0;
113 sym_driver_setup
.scsi_bus_check
= 2;
114 sym_driver_setup
.host_id
= 7;
115 sym_driver_setup
.verbose
= 2;
116 sym_driver_setup
.settle_delay
= 10;
117 sym_driver_setup
.use_nvram
= 1;
118 } else if (*safe_string
!= 'n') {
119 printk(KERN_WARNING NAME53C8XX
"Ignoring parameter %s"
120 " passed to safe option", safe_string
);
125 static struct scsi_transport_template
*sym2_transport_template
= NULL
;
128 * Driver private area in the SCSI command structure.
130 struct sym_ucmd
{ /* Override the SCSI pointer structure */
131 struct completion
*eh_done
; /* SCSI error handling */
134 #define SYM_UCMD_PTR(cmd) ((struct sym_ucmd *)(&(cmd)->SCp))
135 #define SYM_SOFTC_PTR(cmd) sym_get_hcb(cmd->device->host)
138 * Complete a pending CAM CCB.
140 void sym_xpt_done(struct sym_hcb
*np
, struct scsi_cmnd
*cmd
)
142 struct sym_ucmd
*ucmd
= SYM_UCMD_PTR(cmd
);
143 BUILD_BUG_ON(sizeof(struct scsi_pointer
) < sizeof(struct sym_ucmd
));
146 complete(ucmd
->eh_done
);
153 * Tell the SCSI layer about a BUS RESET.
155 void sym_xpt_async_bus_reset(struct sym_hcb
*np
)
157 printf_notice("%s: SCSI BUS has been reset.\n", sym_name(np
));
158 np
->s
.settle_time
= jiffies
+ sym_driver_setup
.settle_delay
* HZ
;
159 np
->s
.settle_time_valid
= 1;
160 if (sym_verbose
>= 2)
161 printf_info("%s: command processing suspended for %d seconds\n",
162 sym_name(np
), sym_driver_setup
.settle_delay
);
166 * Choose the more appropriate CAM status if
167 * the IO encountered an extended error.
169 static int sym_xerr_cam_status(int cam_status
, int x_status
)
172 if (x_status
& XE_PARITY_ERR
)
173 cam_status
= DID_PARITY
;
174 else if (x_status
&(XE_EXTRA_DATA
|XE_SODL_UNRUN
|XE_SWIDE_OVRUN
))
175 cam_status
= DID_ERROR
;
176 else if (x_status
& XE_BAD_PHASE
)
177 cam_status
= DID_ERROR
;
179 cam_status
= DID_ERROR
;
185 * Build CAM result for a failed or auto-sensed IO.
187 void sym_set_cam_result_error(struct sym_hcb
*np
, struct sym_ccb
*cp
, int resid
)
189 struct scsi_cmnd
*cmd
= cp
->cmd
;
190 u_int cam_status
, scsi_status
, drv_status
;
194 scsi_status
= cp
->ssss_status
;
196 if (cp
->host_flags
& HF_SENSE
) {
197 scsi_status
= cp
->sv_scsi_status
;
198 resid
= cp
->sv_resid
;
199 if (sym_verbose
&& cp
->sv_xerr_status
)
200 sym_print_xerr(cmd
, cp
->sv_xerr_status
);
201 if (cp
->host_status
== HS_COMPLETE
&&
202 cp
->ssss_status
== S_GOOD
&&
203 cp
->xerr_status
== 0) {
204 cam_status
= sym_xerr_cam_status(DID_OK
,
206 drv_status
= DRIVER_SENSE
;
208 * Bounce back the sense data to user.
210 memset(cmd
->sense_buffer
, 0, SCSI_SENSE_BUFFERSIZE
);
211 memcpy(cmd
->sense_buffer
, cp
->sns_bbuf
,
212 min(SCSI_SENSE_BUFFERSIZE
, SYM_SNS_BBUF_LEN
));
215 * If the device reports a UNIT ATTENTION condition
216 * due to a RESET condition, we should consider all
217 * disconnect CCBs for this unit as aborted.
221 p
= (u_char
*) cmd
->sense_data
;
222 if (p
[0]==0x70 && p
[2]==0x6 && p
[12]==0x29)
223 sym_clear_tasks(np
, DID_ABORT
,
224 cp
->target
,cp
->lun
, -1);
229 * Error return from our internal request sense. This
230 * is bad: we must clear the contingent allegiance
231 * condition otherwise the device will always return
232 * BUSY. Use a big stick.
234 sym_reset_scsi_target(np
, cmd
->device
->id
);
235 cam_status
= DID_ERROR
;
237 } else if (cp
->host_status
== HS_COMPLETE
) /* Bad SCSI status */
239 else if (cp
->host_status
== HS_SEL_TIMEOUT
) /* Selection timeout */
240 cam_status
= DID_NO_CONNECT
;
241 else if (cp
->host_status
== HS_UNEXPECTED
) /* Unexpected BUS FREE*/
242 cam_status
= DID_ERROR
;
243 else { /* Extended error */
245 sym_print_addr(cmd
, "COMMAND FAILED (%x %x %x).\n",
246 cp
->host_status
, cp
->ssss_status
,
250 * Set the most appropriate value for CAM status.
252 cam_status
= sym_xerr_cam_status(DID_ERROR
, cp
->xerr_status
);
254 scsi_set_resid(cmd
, resid
);
255 cmd
->result
= (drv_status
<< 24) + (cam_status
<< 16) + scsi_status
;
258 static int sym_scatter(struct sym_hcb
*np
, struct sym_ccb
*cp
, struct scsi_cmnd
*cmd
)
265 use_sg
= scsi_dma_map(cmd
);
267 struct scatterlist
*sg
;
268 struct sym_tcb
*tp
= &np
->target
[cp
->target
];
269 struct sym_tblmove
*data
;
271 if (use_sg
> SYM_CONF_MAX_SG
) {
276 data
= &cp
->phys
.data
[SYM_CONF_MAX_SG
- use_sg
];
278 scsi_for_each_sg(cmd
, sg
, use_sg
, segment
) {
279 dma_addr_t baddr
= sg_dma_address(sg
);
280 unsigned int len
= sg_dma_len(sg
);
282 if ((len
& 1) && (tp
->head
.wval
& EWS
)) {
284 cp
->odd_byte_adjustment
++;
287 sym_build_sge(np
, &data
[segment
], baddr
, len
);
298 * Queue a SCSI command.
300 static int sym_queue_command(struct sym_hcb
*np
, struct scsi_cmnd
*cmd
)
302 struct scsi_device
*sdev
= cmd
->device
;
309 * Retrieve the target descriptor.
311 tp
= &np
->target
[sdev
->id
];
314 * Select tagged/untagged.
316 lp
= sym_lp(tp
, sdev
->lun
);
317 order
= (lp
&& lp
->s
.reqtags
) ? M_SIMPLE_TAG
: 0;
322 cp
= sym_get_ccb(np
, cmd
, order
);
324 return 1; /* Means resource shortage */
325 sym_queue_scsiio(np
, cmd
, cp
);
330 * Setup buffers and pointers that address the CDB.
332 static inline int sym_setup_cdb(struct sym_hcb
*np
, struct scsi_cmnd
*cmd
, struct sym_ccb
*cp
)
334 memcpy(cp
->cdb_buf
, cmd
->cmnd
, cmd
->cmd_len
);
336 cp
->phys
.cmd
.addr
= CCB_BA(cp
, cdb_buf
[0]);
337 cp
->phys
.cmd
.size
= cpu_to_scr(cmd
->cmd_len
);
343 * Setup pointers that address the data and start the I/O.
345 int sym_setup_data_and_start(struct sym_hcb
*np
, struct scsi_cmnd
*cmd
, struct sym_ccb
*cp
)
353 if (sym_setup_cdb(np
, cmd
, cp
))
357 * No direction means no data.
359 dir
= cmd
->sc_data_direction
;
360 if (dir
!= DMA_NONE
) {
361 cp
->segments
= sym_scatter(np
, cp
, cmd
);
362 if (cp
->segments
< 0) {
363 sym_set_cam_status(cmd
, DID_ERROR
);
368 * No segments means no data.
378 * Set the data pointer.
381 case DMA_BIDIRECTIONAL
:
382 scmd_printk(KERN_INFO
, cmd
, "got DMA_BIDIRECTIONAL command");
383 sym_set_cam_status(cmd
, DID_ERROR
);
386 goalp
= SCRIPTA_BA(np
, data_out2
) + 8;
387 lastp
= goalp
- 8 - (cp
->segments
* (2*4));
389 case DMA_FROM_DEVICE
:
390 cp
->host_flags
|= HF_DATA_IN
;
391 goalp
= SCRIPTA_BA(np
, data_in2
) + 8;
392 lastp
= goalp
- 8 - (cp
->segments
* (2*4));
396 lastp
= goalp
= SCRIPTB_BA(np
, no_data
);
401 * Set all pointers values needed by SCRIPTS.
403 cp
->phys
.head
.lastp
= cpu_to_scr(lastp
);
404 cp
->phys
.head
.savep
= cpu_to_scr(lastp
);
405 cp
->startp
= cp
->phys
.head
.savep
;
406 cp
->goalp
= cpu_to_scr(goalp
);
409 * When `#ifed 1', the code below makes the driver
410 * panic on the first attempt to write to a SCSI device.
411 * It is the first test we want to do after a driver
412 * change that does not seem obviously safe. :)
415 switch (cp
->cdb_buf
[0]) {
416 case 0x0A: case 0x2A: case 0xAA:
417 panic("XXXXXXXXXXXXX WRITE NOT YET ALLOWED XXXXXXXXXXXXXX\n");
427 sym_put_start_queue(np
, cp
);
431 sym_free_ccb(np
, cp
);
432 sym_xpt_done(np
, cmd
);
440 * Misused to keep the driver running when
441 * interrupts are not configured correctly.
443 static void sym_timer(struct sym_hcb
*np
)
445 unsigned long thistime
= jiffies
;
450 np
->s
.timer
.expires
= thistime
+ SYM_CONF_TIMER_INTERVAL
;
451 add_timer(&np
->s
.timer
);
454 * If we are resetting the ncr, wait for settle_time before
455 * clearing it. Then command processing will be resumed.
457 if (np
->s
.settle_time_valid
) {
458 if (time_before_eq(np
->s
.settle_time
, thistime
)) {
459 if (sym_verbose
>= 2 )
460 printk("%s: command processing resumed\n",
462 np
->s
.settle_time_valid
= 0;
468 * Nothing to do for now, but that may come.
470 if (np
->s
.lasttime
+ 4*HZ
< thistime
) {
471 np
->s
.lasttime
= thistime
;
474 #ifdef SYM_CONF_PCIQ_MAY_MISS_COMPLETIONS
476 * Some way-broken PCI bridges may lead to
477 * completions being lost when the clearing
478 * of the INTFLY flag by the CPU occurs
479 * concurrently with the chip raising this flag.
480 * If this ever happen, lost completions will
489 * PCI BUS error handler.
491 void sym_log_bus_error(struct Scsi_Host
*shost
)
493 struct sym_data
*sym_data
= shost_priv(shost
);
494 struct pci_dev
*pdev
= sym_data
->pdev
;
495 unsigned short pci_sts
;
496 pci_read_config_word(pdev
, PCI_STATUS
, &pci_sts
);
497 if (pci_sts
& 0xf900) {
498 pci_write_config_word(pdev
, PCI_STATUS
, pci_sts
);
499 shost_printk(KERN_WARNING
, shost
,
500 "PCI bus error: status = 0x%04x\n", pci_sts
& 0xf900);
505 * queuecommand method. Entered with the host adapter lock held and
506 * interrupts disabled.
508 static int sym53c8xx_queue_command(struct scsi_cmnd
*cmd
,
509 void (*done
)(struct scsi_cmnd
*))
511 struct sym_hcb
*np
= SYM_SOFTC_PTR(cmd
);
512 struct sym_ucmd
*ucp
= SYM_UCMD_PTR(cmd
);
515 cmd
->scsi_done
= done
;
516 memset(ucp
, 0, sizeof(*ucp
));
519 * Shorten our settle_time if needed for
520 * this command not to time out.
522 if (np
->s
.settle_time_valid
&& cmd
->request
->timeout
) {
523 unsigned long tlimit
= jiffies
+ cmd
->request
->timeout
;
524 tlimit
-= SYM_CONF_TIMER_INTERVAL
*2;
525 if (time_after(np
->s
.settle_time
, tlimit
)) {
526 np
->s
.settle_time
= tlimit
;
530 if (np
->s
.settle_time_valid
)
531 return SCSI_MLQUEUE_HOST_BUSY
;
533 sts
= sym_queue_command(np
, cmd
);
535 return SCSI_MLQUEUE_HOST_BUSY
;
540 * Linux entry point of the interrupt handler.
542 static irqreturn_t
sym53c8xx_intr(int irq
, void *dev_id
)
544 struct Scsi_Host
*shost
= dev_id
;
545 struct sym_data
*sym_data
= shost_priv(shost
);
548 /* Avoid spinloop trying to handle interrupts on frozen device */
549 if (pci_channel_offline(sym_data
->pdev
))
552 if (DEBUG_FLAGS
& DEBUG_TINY
) printf_debug ("[");
554 spin_lock(shost
->host_lock
);
555 result
= sym_interrupt(shost
);
556 spin_unlock(shost
->host_lock
);
558 if (DEBUG_FLAGS
& DEBUG_TINY
) printf_debug ("]\n");
564 * Linux entry point of the timer handler
566 static void sym53c8xx_timer(unsigned long npref
)
568 struct sym_hcb
*np
= (struct sym_hcb
*)npref
;
571 spin_lock_irqsave(np
->s
.host
->host_lock
, flags
);
573 spin_unlock_irqrestore(np
->s
.host
->host_lock
, flags
);
578 * What the eh thread wants us to perform.
580 #define SYM_EH_ABORT 0
581 #define SYM_EH_DEVICE_RESET 1
582 #define SYM_EH_BUS_RESET 2
583 #define SYM_EH_HOST_RESET 3
586 * Generic method for our eh processing.
587 * The 'op' argument tells what we have to do.
589 static int sym_eh_handler(int op
, char *opname
, struct scsi_cmnd
*cmd
)
591 struct sym_ucmd
*ucmd
= SYM_UCMD_PTR(cmd
);
592 struct Scsi_Host
*shost
= cmd
->device
->host
;
593 struct sym_data
*sym_data
= shost_priv(shost
);
594 struct pci_dev
*pdev
= sym_data
->pdev
;
595 struct sym_hcb
*np
= sym_data
->ncb
;
599 struct completion eh_done
;
601 scmd_printk(KERN_WARNING
, cmd
, "%s operation started\n", opname
);
603 /* We may be in an error condition because the PCI bus
604 * went down. In this case, we need to wait until the
605 * PCI bus is reset, the card is reset, and only then
606 * proceed with the scsi error recovery. There's no
607 * point in hurrying; take a leisurely wait.
609 #define WAIT_FOR_PCI_RECOVERY 35
610 if (pci_channel_offline(pdev
)) {
611 int finished_reset
= 0;
612 init_completion(&eh_done
);
613 spin_lock_irq(shost
->host_lock
);
614 /* Make sure we didn't race */
615 if (pci_channel_offline(pdev
)) {
616 BUG_ON(sym_data
->io_reset
);
617 sym_data
->io_reset
= &eh_done
;
621 spin_unlock_irq(shost
->host_lock
);
623 finished_reset
= wait_for_completion_timeout
625 WAIT_FOR_PCI_RECOVERY
*HZ
);
626 spin_lock_irq(shost
->host_lock
);
627 sym_data
->io_reset
= NULL
;
628 spin_unlock_irq(shost
->host_lock
);
633 spin_lock_irq(shost
->host_lock
);
634 /* This one is queued in some place -> to wait for completion */
635 FOR_EACH_QUEUED_ELEMENT(&np
->busy_ccbq
, qp
) {
636 struct sym_ccb
*cp
= sym_que_entry(qp
, struct sym_ccb
, link_ccbq
);
637 if (cp
->cmd
== cmd
) {
643 /* Try to proceed the operation we have been asked for */
647 sts
= sym_abort_scsiio(np
, cmd
, 1);
649 case SYM_EH_DEVICE_RESET
:
650 sts
= sym_reset_scsi_target(np
, cmd
->device
->id
);
652 case SYM_EH_BUS_RESET
:
653 sym_reset_scsi_bus(np
, 1);
656 case SYM_EH_HOST_RESET
:
657 sym_reset_scsi_bus(np
, 0);
658 sym_start_up(shost
, 1);
665 /* On error, restore everything and cross fingers :) */
670 init_completion(&eh_done
);
671 ucmd
->eh_done
= &eh_done
;
672 spin_unlock_irq(shost
->host_lock
);
673 if (!wait_for_completion_timeout(&eh_done
, 5*HZ
)) {
674 ucmd
->eh_done
= NULL
;
678 spin_unlock_irq(shost
->host_lock
);
681 dev_warn(&cmd
->device
->sdev_gendev
, "%s operation %s.\n", opname
,
682 sts
==0 ? "complete" :sts
==-2 ? "timed-out" : "failed");
683 return sts
? SCSI_FAILED
: SCSI_SUCCESS
;
688 * Error handlers called from the eh thread (one thread per HBA).
690 static int sym53c8xx_eh_abort_handler(struct scsi_cmnd
*cmd
)
692 return sym_eh_handler(SYM_EH_ABORT
, "ABORT", cmd
);
695 static int sym53c8xx_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
697 return sym_eh_handler(SYM_EH_DEVICE_RESET
, "DEVICE RESET", cmd
);
700 static int sym53c8xx_eh_bus_reset_handler(struct scsi_cmnd
*cmd
)
702 return sym_eh_handler(SYM_EH_BUS_RESET
, "BUS RESET", cmd
);
705 static int sym53c8xx_eh_host_reset_handler(struct scsi_cmnd
*cmd
)
707 return sym_eh_handler(SYM_EH_HOST_RESET
, "HOST RESET", cmd
);
711 * Tune device queuing depth, according to various limits.
713 static void sym_tune_dev_queuing(struct sym_tcb
*tp
, int lun
, u_short reqtags
)
715 struct sym_lcb
*lp
= sym_lp(tp
, lun
);
721 oldtags
= lp
->s
.reqtags
;
723 if (reqtags
> lp
->s
.scdev_depth
)
724 reqtags
= lp
->s
.scdev_depth
;
726 lp
->s
.reqtags
= reqtags
;
728 if (reqtags
!= oldtags
) {
729 dev_info(&tp
->starget
->dev
,
730 "tagged command queuing %s, command queue depth %d.\n",
731 lp
->s
.reqtags
? "enabled" : "disabled", reqtags
);
735 static int sym53c8xx_slave_alloc(struct scsi_device
*sdev
)
737 struct sym_hcb
*np
= sym_get_hcb(sdev
->host
);
738 struct sym_tcb
*tp
= &np
->target
[sdev
->id
];
743 if (sdev
->id
>= SYM_CONF_MAX_TARGET
|| sdev
->lun
>= SYM_CONF_MAX_LUN
)
746 spin_lock_irqsave(np
->s
.host
->host_lock
, flags
);
749 * Fail the device init if the device is flagged NOSCAN at BOOT in
750 * the NVRAM. This may speed up boot and maintain coherency with
751 * BIOS device numbering. Clearing the flag allows the user to
752 * rescan skipped devices later. We also return an error for
753 * devices not flagged for SCAN LUNS in the NVRAM since some single
754 * lun devices behave badly when asked for a non zero LUN.
757 if (tp
->usrflags
& SYM_SCAN_BOOT_DISABLED
) {
758 tp
->usrflags
&= ~SYM_SCAN_BOOT_DISABLED
;
759 starget_printk(KERN_INFO
, sdev
->sdev_target
,
760 "Scan at boot disabled in NVRAM\n");
765 if (tp
->usrflags
& SYM_SCAN_LUNS_DISABLED
) {
766 if (sdev
->lun
!= 0) {
770 starget_printk(KERN_INFO
, sdev
->sdev_target
,
771 "Multiple LUNs disabled in NVRAM\n");
774 lp
= sym_alloc_lcb(np
, sdev
->id
, sdev
->lun
);
780 tp
->starget
= sdev
->sdev_target
;
782 spi_min_period(tp
->starget
) = tp
->usr_period
;
783 spi_max_width(tp
->starget
) = tp
->usr_width
;
787 spin_unlock_irqrestore(np
->s
.host
->host_lock
, flags
);
793 * Linux entry point for device queue sizing.
795 static int sym53c8xx_slave_configure(struct scsi_device
*sdev
)
797 struct sym_hcb
*np
= sym_get_hcb(sdev
->host
);
798 struct sym_tcb
*tp
= &np
->target
[sdev
->id
];
799 struct sym_lcb
*lp
= sym_lp(tp
, sdev
->lun
);
800 int reqtags
, depth_to_use
;
805 lp
->curr_flags
= lp
->user_flags
;
808 * Select queue depth from driver setup.
809 * Do not use more than configured by user.
811 * Do not use more than our maximum.
813 reqtags
= sym_driver_setup
.max_tag
;
814 if (reqtags
> tp
->usrtags
)
815 reqtags
= tp
->usrtags
;
816 if (!sdev
->tagged_supported
)
818 if (reqtags
> SYM_CONF_MAX_TAG
)
819 reqtags
= SYM_CONF_MAX_TAG
;
820 depth_to_use
= reqtags
? reqtags
: 1;
821 scsi_adjust_queue_depth(sdev
,
822 sdev
->tagged_supported
? MSG_SIMPLE_TAG
: 0,
824 lp
->s
.scdev_depth
= depth_to_use
;
825 sym_tune_dev_queuing(tp
, sdev
->lun
, reqtags
);
827 if (!spi_initial_dv(sdev
->sdev_target
))
833 static void sym53c8xx_slave_destroy(struct scsi_device
*sdev
)
835 struct sym_hcb
*np
= sym_get_hcb(sdev
->host
);
836 struct sym_tcb
*tp
= &np
->target
[sdev
->id
];
837 struct sym_lcb
*lp
= sym_lp(tp
, sdev
->lun
);
840 /* if slave_alloc returned before allocating a sym_lcb, return */
844 spin_lock_irqsave(np
->s
.host
->host_lock
, flags
);
846 if (lp
->busy_itlq
|| lp
->busy_itl
) {
848 * This really shouldn't happen, but we can't return an error
849 * so let's try to stop all on-going I/O.
851 starget_printk(KERN_WARNING
, tp
->starget
,
852 "Removing busy LCB (%d)\n", sdev
->lun
);
853 sym_reset_scsi_bus(np
, 1);
856 if (sym_free_lcb(np
, sdev
->id
, sdev
->lun
) == 0) {
858 * It was the last unit for this target.
861 tp
->head
.wval
= np
->rv_scntl3
;
863 tp
->tgoal
.check_nego
= 1;
867 spin_unlock_irqrestore(np
->s
.host
->host_lock
, flags
);
871 * Linux entry point for info() function
873 static const char *sym53c8xx_info (struct Scsi_Host
*host
)
875 return SYM_DRIVER_NAME
;
879 #ifdef SYM_LINUX_PROC_INFO_SUPPORT
881 * Proc file system stuff
883 * A read operation returns adapter information.
884 * A write operation is a control command.
885 * The string is parsed in the driver code and the command is passed
886 * to the sym_usercmd() function.
889 #ifdef SYM_LINUX_USER_COMMAND_SUPPORT
898 #define UC_SETSYNC 10
899 #define UC_SETTAGS 11
900 #define UC_SETDEBUG 12
901 #define UC_SETWIDE 14
902 #define UC_SETFLAG 15
903 #define UC_SETVERBOSE 17
904 #define UC_RESETDEV 18
905 #define UC_CLEARDEV 19
907 static void sym_exec_user_command (struct sym_hcb
*np
, struct sym_usrcmd
*uc
)
915 #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT
917 sym_debug_flags
= uc
->data
;
921 np
->verbose
= uc
->data
;
925 * We assume that other commands apply to targets.
926 * This should always be the case and avoid the below
927 * 4 lines to be repeated 6 times.
929 for (t
= 0; t
< SYM_CONF_MAX_TARGET
; t
++) {
930 if (!((uc
->target
>> t
) & 1))
939 if (!uc
->data
|| uc
->data
>= 255) {
940 tp
->tgoal
.iu
= tp
->tgoal
.dt
=
942 tp
->tgoal
.offset
= 0;
943 } else if (uc
->data
<= 9 && np
->minsync_dt
) {
944 if (uc
->data
< np
->minsync_dt
)
945 uc
->data
= np
->minsync_dt
;
946 tp
->tgoal
.iu
= tp
->tgoal
.dt
=
949 tp
->tgoal
.period
= uc
->data
;
950 tp
->tgoal
.offset
= np
->maxoffs_dt
;
952 if (uc
->data
< np
->minsync
)
953 uc
->data
= np
->minsync
;
954 tp
->tgoal
.iu
= tp
->tgoal
.dt
=
956 tp
->tgoal
.period
= uc
->data
;
957 tp
->tgoal
.offset
= np
->maxoffs
;
959 tp
->tgoal
.check_nego
= 1;
962 tp
->tgoal
.width
= uc
->data
? 1 : 0;
963 tp
->tgoal
.check_nego
= 1;
966 for (l
= 0; l
< SYM_CONF_MAX_LUN
; l
++)
967 sym_tune_dev_queuing(tp
, l
, uc
->data
);
972 OUTB(np
, nc_istat
, SIGP
|SEM
);
975 for (l
= 0; l
< SYM_CONF_MAX_LUN
; l
++) {
976 struct sym_lcb
*lp
= sym_lp(tp
, l
);
977 if (lp
) lp
->to_clear
= 1;
980 OUTB(np
, nc_istat
, SIGP
|SEM
);
983 tp
->usrflags
= uc
->data
;
991 static int skip_spaces(char *ptr
, int len
)
995 for (cnt
= len
; cnt
> 0 && (c
= *ptr
++) && isspace(c
); cnt
--);
1000 static int get_int_arg(char *ptr
, int len
, u_long
*pv
)
1004 *pv
= simple_strtoul(ptr
, &end
, 10);
1008 static int is_keyword(char *ptr
, int len
, char *verb
)
1010 int verb_len
= strlen(verb
);
1012 if (len
>= verb_len
&& !memcmp(verb
, ptr
, verb_len
))
1018 #define SKIP_SPACES(ptr, len) \
1019 if ((arg_len = skip_spaces(ptr, len)) < 1) \
1021 ptr += arg_len; len -= arg_len;
1023 #define GET_INT_ARG(ptr, len, v) \
1024 if (!(arg_len = get_int_arg(ptr, len, &(v)))) \
1026 ptr += arg_len; len -= arg_len;
1030 * Parse a control command
1033 static int sym_user_command(struct Scsi_Host
*shost
, char *buffer
, int length
)
1035 struct sym_hcb
*np
= sym_get_hcb(shost
);
1038 struct sym_usrcmd cmd
, *uc
= &cmd
;
1042 memset(uc
, 0, sizeof(*uc
));
1044 if (len
> 0 && ptr
[len
-1] == '\n')
1047 if ((arg_len
= is_keyword(ptr
, len
, "setsync")) != 0)
1048 uc
->cmd
= UC_SETSYNC
;
1049 else if ((arg_len
= is_keyword(ptr
, len
, "settags")) != 0)
1050 uc
->cmd
= UC_SETTAGS
;
1051 else if ((arg_len
= is_keyword(ptr
, len
, "setverbose")) != 0)
1052 uc
->cmd
= UC_SETVERBOSE
;
1053 else if ((arg_len
= is_keyword(ptr
, len
, "setwide")) != 0)
1054 uc
->cmd
= UC_SETWIDE
;
1055 #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT
1056 else if ((arg_len
= is_keyword(ptr
, len
, "setdebug")) != 0)
1057 uc
->cmd
= UC_SETDEBUG
;
1059 else if ((arg_len
= is_keyword(ptr
, len
, "setflag")) != 0)
1060 uc
->cmd
= UC_SETFLAG
;
1061 else if ((arg_len
= is_keyword(ptr
, len
, "resetdev")) != 0)
1062 uc
->cmd
= UC_RESETDEV
;
1063 else if ((arg_len
= is_keyword(ptr
, len
, "cleardev")) != 0)
1064 uc
->cmd
= UC_CLEARDEV
;
1068 #ifdef DEBUG_PROC_INFO
1069 printk("sym_user_command: arg_len=%d, cmd=%ld\n", arg_len
, uc
->cmd
);
1074 ptr
+= arg_len
; len
-= arg_len
;
1083 SKIP_SPACES(ptr
, len
);
1084 if ((arg_len
= is_keyword(ptr
, len
, "all")) != 0) {
1085 ptr
+= arg_len
; len
-= arg_len
;
1088 GET_INT_ARG(ptr
, len
, target
);
1089 uc
->target
= (1<<target
);
1090 #ifdef DEBUG_PROC_INFO
1091 printk("sym_user_command: target=%ld\n", target
);
1102 SKIP_SPACES(ptr
, len
);
1103 GET_INT_ARG(ptr
, len
, uc
->data
);
1104 #ifdef DEBUG_PROC_INFO
1105 printk("sym_user_command: data=%ld\n", uc
->data
);
1108 #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT
1111 SKIP_SPACES(ptr
, len
);
1112 if ((arg_len
= is_keyword(ptr
, len
, "alloc")))
1113 uc
->data
|= DEBUG_ALLOC
;
1114 else if ((arg_len
= is_keyword(ptr
, len
, "phase")))
1115 uc
->data
|= DEBUG_PHASE
;
1116 else if ((arg_len
= is_keyword(ptr
, len
, "queue")))
1117 uc
->data
|= DEBUG_QUEUE
;
1118 else if ((arg_len
= is_keyword(ptr
, len
, "result")))
1119 uc
->data
|= DEBUG_RESULT
;
1120 else if ((arg_len
= is_keyword(ptr
, len
, "scatter")))
1121 uc
->data
|= DEBUG_SCATTER
;
1122 else if ((arg_len
= is_keyword(ptr
, len
, "script")))
1123 uc
->data
|= DEBUG_SCRIPT
;
1124 else if ((arg_len
= is_keyword(ptr
, len
, "tiny")))
1125 uc
->data
|= DEBUG_TINY
;
1126 else if ((arg_len
= is_keyword(ptr
, len
, "timing")))
1127 uc
->data
|= DEBUG_TIMING
;
1128 else if ((arg_len
= is_keyword(ptr
, len
, "nego")))
1129 uc
->data
|= DEBUG_NEGO
;
1130 else if ((arg_len
= is_keyword(ptr
, len
, "tags")))
1131 uc
->data
|= DEBUG_TAGS
;
1132 else if ((arg_len
= is_keyword(ptr
, len
, "pointer")))
1133 uc
->data
|= DEBUG_POINTER
;
1136 ptr
+= arg_len
; len
-= arg_len
;
1138 #ifdef DEBUG_PROC_INFO
1139 printk("sym_user_command: data=%ld\n", uc
->data
);
1142 #endif /* SYM_LINUX_DEBUG_CONTROL_SUPPORT */
1145 SKIP_SPACES(ptr
, len
);
1146 if ((arg_len
= is_keyword(ptr
, len
, "no_disc")))
1147 uc
->data
&= ~SYM_DISC_ENABLED
;
1150 ptr
+= arg_len
; len
-= arg_len
;
1160 unsigned long flags
;
1162 spin_lock_irqsave(shost
->host_lock
, flags
);
1163 sym_exec_user_command(np
, uc
);
1164 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1169 #endif /* SYM_LINUX_USER_COMMAND_SUPPORT */
1172 #ifdef SYM_LINUX_USER_INFO_SUPPORT
1174 * Informations through the proc file system.
1183 static void copy_mem_info(struct info_str
*info
, char *data
, int len
)
1185 if (info
->pos
+ len
> info
->length
)
1186 len
= info
->length
- info
->pos
;
1188 if (info
->pos
+ len
< info
->offset
) {
1192 if (info
->pos
< info
->offset
) {
1193 data
+= (info
->offset
- info
->pos
);
1194 len
-= (info
->offset
- info
->pos
);
1198 memcpy(info
->buffer
+ info
->pos
, data
, len
);
1203 static int copy_info(struct info_str
*info
, char *fmt
, ...)
1209 va_start(args
, fmt
);
1210 len
= vsprintf(buf
, fmt
, args
);
1213 copy_mem_info(info
, buf
, len
);
1218 * Copy formatted information into the input buffer.
1220 static int sym_host_info(struct Scsi_Host
*shost
, char *ptr
, off_t offset
, int len
)
1222 struct sym_data
*sym_data
= shost_priv(shost
);
1223 struct pci_dev
*pdev
= sym_data
->pdev
;
1224 struct sym_hcb
*np
= sym_data
->ncb
;
1225 struct info_str info
;
1229 info
.offset
= offset
;
1232 copy_info(&info
, "Chip " NAME53C
"%s, device id 0x%x, "
1233 "revision id 0x%x\n", np
->s
.chip_name
,
1234 pdev
->device
, pdev
->revision
);
1235 copy_info(&info
, "At PCI address %s, IRQ %u\n",
1236 pci_name(pdev
), pdev
->irq
);
1237 copy_info(&info
, "Min. period factor %d, %s SCSI BUS%s\n",
1238 (int) (np
->minsync_dt
? np
->minsync_dt
: np
->minsync
),
1239 np
->maxwide
? "Wide" : "Narrow",
1240 np
->minsync_dt
? ", DT capable" : "");
1242 copy_info(&info
, "Max. started commands %d, "
1243 "max. commands per LUN %d\n",
1244 SYM_CONF_MAX_START
, SYM_CONF_MAX_TAG
);
1246 return info
.pos
> info
.offset
? info
.pos
- info
.offset
: 0;
1248 #endif /* SYM_LINUX_USER_INFO_SUPPORT */
1251 * Entry point of the scsi proc fs of the driver.
1252 * - func = 0 means read (returns adapter infos)
1253 * - func = 1 means write (not yet merget from sym53c8xx)
1255 static int sym53c8xx_proc_info(struct Scsi_Host
*shost
, char *buffer
,
1256 char **start
, off_t offset
, int length
, int func
)
1261 #ifdef SYM_LINUX_USER_COMMAND_SUPPORT
1262 retv
= sym_user_command(shost
, buffer
, length
);
1269 #ifdef SYM_LINUX_USER_INFO_SUPPORT
1270 retv
= sym_host_info(shost
, buffer
, offset
, length
);
1278 #endif /* SYM_LINUX_PROC_INFO_SUPPORT */
1281 * Free resources claimed by sym_iomap_device(). Note that
1282 * sym_free_resources() should be used instead of this function after calling
1285 static void __devinit
1286 sym_iounmap_device(struct sym_device
*device
)
1288 if (device
->s
.ioaddr
)
1289 pci_iounmap(device
->pdev
, device
->s
.ioaddr
);
1290 if (device
->s
.ramaddr
)
1291 pci_iounmap(device
->pdev
, device
->s
.ramaddr
);
1295 * Free controller resources.
1297 static void sym_free_resources(struct sym_hcb
*np
, struct pci_dev
*pdev
,
1301 * Free O/S specific resources.
1304 free_irq(pdev
->irq
, np
->s
.host
);
1306 pci_iounmap(pdev
, np
->s
.ioaddr
);
1308 pci_iounmap(pdev
, np
->s
.ramaddr
);
1310 * Free O/S independent resources.
1314 sym_mfree_dma(np
, sizeof(*np
), "HCB");
1318 * Host attach and initialisations.
1320 * Allocate host data and ncb structure.
1321 * Remap MMIO region.
1322 * Do chip initialization.
1323 * If all is OK, install interrupt handling and
1324 * start the timer daemon.
1326 static struct Scsi_Host
* __devinit
sym_attach(struct scsi_host_template
*tpnt
,
1327 int unit
, struct sym_device
*dev
)
1329 struct sym_data
*sym_data
;
1330 struct sym_hcb
*np
= NULL
;
1331 struct Scsi_Host
*shost
= NULL
;
1332 struct pci_dev
*pdev
= dev
->pdev
;
1333 unsigned long flags
;
1335 int do_free_irq
= 0;
1337 printk(KERN_INFO
"sym%d: <%s> rev 0x%x at pci %s irq %u\n",
1338 unit
, dev
->chip
.name
, pdev
->revision
, pci_name(pdev
),
1342 * Get the firmware for this chip.
1344 fw
= sym_find_firmware(&dev
->chip
);
1348 shost
= scsi_host_alloc(tpnt
, sizeof(*sym_data
));
1351 sym_data
= shost_priv(shost
);
1354 * Allocate immediately the host control block,
1355 * since we are only expecting to succeed. :)
1356 * We keep track in the HCB of all the resources that
1357 * are to be released on error.
1359 np
= __sym_calloc_dma(&pdev
->dev
, sizeof(*np
), "HCB");
1362 np
->bus_dmat
= &pdev
->dev
; /* Result in 1 DMA pool per HBA */
1364 sym_data
->pdev
= pdev
;
1367 pci_set_drvdata(pdev
, shost
);
1370 * Copy some useful infos to the HCB.
1372 np
->hcb_ba
= vtobus(np
);
1373 np
->verbose
= sym_driver_setup
.verbose
;
1375 np
->features
= dev
->chip
.features
;
1376 np
->clock_divn
= dev
->chip
.nr_divisor
;
1377 np
->maxoffs
= dev
->chip
.offset_max
;
1378 np
->maxburst
= dev
->chip
.burst_max
;
1379 np
->myaddr
= dev
->host_id
;
1380 np
->mmio_ba
= (u32
)dev
->mmio_base
;
1381 np
->ram_ba
= (u32
)dev
->ram_base
;
1382 np
->s
.ioaddr
= dev
->s
.ioaddr
;
1383 np
->s
.ramaddr
= dev
->s
.ramaddr
;
1388 strlcpy(np
->s
.chip_name
, dev
->chip
.name
, sizeof(np
->s
.chip_name
));
1389 sprintf(np
->s
.inst_name
, "sym%d", np
->s
.unit
);
1391 if ((SYM_CONF_DMA_ADDRESSING_MODE
> 0) && (np
->features
& FE_DAC
) &&
1392 !pci_set_dma_mask(pdev
, DMA_DAC_MASK
)) {
1394 } else if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32))) {
1395 printf_warning("%s: No suitable DMA available\n", sym_name(np
));
1399 if (sym_hcb_attach(shost
, fw
, dev
->nvram
))
1403 * Install the interrupt handler.
1404 * If we synchonize the C code with SCRIPTS on interrupt,
1405 * we do not want to share the INTR line at all.
1407 if (request_irq(pdev
->irq
, sym53c8xx_intr
, IRQF_SHARED
, NAME53C8XX
,
1409 printf_err("%s: request irq %u failure\n",
1410 sym_name(np
), pdev
->irq
);
1416 * After SCSI devices have been opened, we cannot
1417 * reset the bus safely, so we do it here.
1419 spin_lock_irqsave(shost
->host_lock
, flags
);
1420 if (sym_reset_scsi_bus(np
, 0))
1424 * Start the SCRIPTS.
1426 sym_start_up(shost
, 1);
1429 * Start the timer daemon
1431 init_timer(&np
->s
.timer
);
1432 np
->s
.timer
.data
= (unsigned long) np
;
1433 np
->s
.timer
.function
= sym53c8xx_timer
;
1438 * Fill Linux host instance structure
1439 * and return success.
1441 shost
->max_channel
= 0;
1442 shost
->this_id
= np
->myaddr
;
1443 shost
->max_id
= np
->maxwide
? 16 : 8;
1444 shost
->max_lun
= SYM_CONF_MAX_LUN
;
1445 shost
->unique_id
= pci_resource_start(pdev
, 0);
1446 shost
->cmd_per_lun
= SYM_CONF_MAX_TAG
;
1447 shost
->can_queue
= (SYM_CONF_MAX_START
-2);
1448 shost
->sg_tablesize
= SYM_CONF_MAX_SG
;
1449 shost
->max_cmd_len
= 16;
1450 BUG_ON(sym2_transport_template
== NULL
);
1451 shost
->transportt
= sym2_transport_template
;
1453 /* 53c896 rev 1 errata: DMA may not cross 16MB boundary */
1454 if (pdev
->device
== PCI_DEVICE_ID_NCR_53C896
&& pdev
->revision
< 2)
1455 shost
->dma_boundary
= 0xFFFFFF;
1457 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1462 printf_err("%s: FATAL ERROR: CHECK SCSI BUS - CABLES, "
1463 "TERMINATION, DEVICE POWER etc.!\n", sym_name(np
));
1464 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1466 printf_info("sym%d: giving up ...\n", unit
);
1468 sym_free_resources(np
, pdev
, do_free_irq
);
1470 sym_iounmap_device(dev
);
1472 scsi_host_put(shost
);
1479 * Detect and try to read SYMBIOS and TEKRAM NVRAM.
1481 #if SYM_CONF_NVRAM_SUPPORT
1482 static void __devinit
sym_get_nvram(struct sym_device
*devp
, struct sym_nvram
*nvp
)
1487 sym_read_nvram(devp
, nvp
);
1490 static inline void sym_get_nvram(struct sym_device
*devp
, struct sym_nvram
*nvp
)
1493 #endif /* SYM_CONF_NVRAM_SUPPORT */
1495 static int __devinit
sym_check_supported(struct sym_device
*device
)
1497 struct sym_chip
*chip
;
1498 struct pci_dev
*pdev
= device
->pdev
;
1499 unsigned long io_port
= pci_resource_start(pdev
, 0);
1503 * If user excluded this chip, do not initialize it.
1504 * I hate this code so much. Must kill it.
1507 for (i
= 0 ; i
< 8 ; i
++) {
1508 if (sym_driver_setup
.excludes
[i
] == io_port
)
1514 * Check if the chip is supported. Then copy the chip description
1515 * to our device structure so we can make it match the actual device
1518 chip
= sym_lookup_chip_table(pdev
->device
, pdev
->revision
);
1520 dev_info(&pdev
->dev
, "device not supported\n");
1523 memcpy(&device
->chip
, chip
, sizeof(device
->chip
));
1529 * Ignore Symbios chips controlled by various RAID controllers.
1530 * These controllers set value 0x52414944 at RAM end - 16.
1532 static int __devinit
sym_check_raid(struct sym_device
*device
)
1534 unsigned int ram_size
, ram_val
;
1536 if (!device
->s
.ramaddr
)
1539 if (device
->chip
.features
& FE_RAM8K
)
1544 ram_val
= readl(device
->s
.ramaddr
+ ram_size
- 16);
1545 if (ram_val
!= 0x52414944)
1548 dev_info(&device
->pdev
->dev
,
1549 "not initializing, driven by RAID controller.\n");
1553 static int __devinit
sym_set_workarounds(struct sym_device
*device
)
1555 struct sym_chip
*chip
= &device
->chip
;
1556 struct pci_dev
*pdev
= device
->pdev
;
1560 * (ITEM 12 of a DEL about the 896 I haven't yet).
1561 * We must ensure the chip will use WRITE AND INVALIDATE.
1562 * The revision number limit is for now arbitrary.
1564 if (pdev
->device
== PCI_DEVICE_ID_NCR_53C896
&& pdev
->revision
< 0x4) {
1565 chip
->features
|= (FE_WRIE
| FE_CLSE
);
1568 /* If the chip can do Memory Write Invalidate, enable it */
1569 if (chip
->features
& FE_WRIE
) {
1570 if (pci_set_mwi(pdev
))
1575 * Work around for errant bit in 895A. The 66Mhz
1576 * capable bit is set erroneously. Clear this bit.
1579 * Make sure Config space and Features agree.
1581 * Recall: writes are not normal to status register -
1582 * write a 1 to clear and a 0 to leave unchanged.
1583 * Can only reset bits.
1585 pci_read_config_word(pdev
, PCI_STATUS
, &status_reg
);
1586 if (chip
->features
& FE_66MHZ
) {
1587 if (!(status_reg
& PCI_STATUS_66MHZ
))
1588 chip
->features
&= ~FE_66MHZ
;
1590 if (status_reg
& PCI_STATUS_66MHZ
) {
1591 status_reg
= PCI_STATUS_66MHZ
;
1592 pci_write_config_word(pdev
, PCI_STATUS
, status_reg
);
1593 pci_read_config_word(pdev
, PCI_STATUS
, &status_reg
);
1601 * Map HBA registers and on-chip SRAM (if present).
1603 static int __devinit
1604 sym_iomap_device(struct sym_device
*device
)
1606 struct pci_dev
*pdev
= device
->pdev
;
1607 struct pci_bus_region bus_addr
;
1610 pcibios_resource_to_bus(pdev
, &bus_addr
, &pdev
->resource
[1]);
1611 device
->mmio_base
= bus_addr
.start
;
1613 if (device
->chip
.features
& FE_RAM
) {
1615 * If the BAR is 64-bit, resource 2 will be occupied by the
1618 if (!pdev
->resource
[i
].flags
)
1620 pcibios_resource_to_bus(pdev
, &bus_addr
, &pdev
->resource
[i
]);
1621 device
->ram_base
= bus_addr
.start
;
1624 #ifdef CONFIG_SCSI_SYM53C8XX_MMIO
1625 if (device
->mmio_base
)
1626 device
->s
.ioaddr
= pci_iomap(pdev
, 1,
1627 pci_resource_len(pdev
, 1));
1629 if (!device
->s
.ioaddr
)
1630 device
->s
.ioaddr
= pci_iomap(pdev
, 0,
1631 pci_resource_len(pdev
, 0));
1632 if (!device
->s
.ioaddr
) {
1633 dev_err(&pdev
->dev
, "could not map registers; giving up.\n");
1636 if (device
->ram_base
) {
1637 device
->s
.ramaddr
= pci_iomap(pdev
, i
,
1638 pci_resource_len(pdev
, i
));
1639 if (!device
->s
.ramaddr
) {
1640 dev_warn(&pdev
->dev
,
1641 "could not map SRAM; continuing anyway.\n");
1642 device
->ram_base
= 0;
1650 * The NCR PQS and PDS cards are constructed as a DEC bridge
1651 * behind which sits a proprietary NCR memory controller and
1652 * either four or two 53c875s as separate devices. We can tell
1653 * if an 875 is part of a PQS/PDS or not since if it is, it will
1654 * be on the same bus as the memory controller. In its usual
1655 * mode of operation, the 875s are slaved to the memory
1656 * controller for all transfers. To operate with the Linux
1657 * driver, the memory controller is disabled and the 875s
1658 * freed to function independently. The only wrinkle is that
1659 * the preset SCSI ID (which may be zero) must be read in from
1660 * a special configuration space register of the 875.
1662 static void sym_config_pqs(struct pci_dev
*pdev
, struct sym_device
*sym_dev
)
1667 for (slot
= 0; slot
< 256; slot
++) {
1668 struct pci_dev
*memc
= pci_get_slot(pdev
->bus
, slot
);
1670 if (!memc
|| memc
->vendor
!= 0x101a || memc
->device
== 0x0009) {
1675 /* bit 1: allow individual 875 configuration */
1676 pci_read_config_byte(memc
, 0x44, &tmp
);
1677 if ((tmp
& 0x2) == 0) {
1679 pci_write_config_byte(memc
, 0x44, tmp
);
1682 /* bit 2: drive individual 875 interrupts to the bus */
1683 pci_read_config_byte(memc
, 0x45, &tmp
);
1684 if ((tmp
& 0x4) == 0) {
1686 pci_write_config_byte(memc
, 0x45, tmp
);
1693 pci_read_config_byte(pdev
, 0x84, &tmp
);
1694 sym_dev
->host_id
= tmp
;
1698 * Called before unloading the module.
1700 * We have to free resources and halt the NCR chip.
1702 static int sym_detach(struct Scsi_Host
*shost
, struct pci_dev
*pdev
)
1704 struct sym_hcb
*np
= sym_get_hcb(shost
);
1705 printk("%s: detaching ...\n", sym_name(np
));
1707 del_timer_sync(&np
->s
.timer
);
1711 * We should use sym_soft_reset(), but we don't want to do
1712 * so, since we may not be safe if interrupts occur.
1714 printk("%s: resetting chip\n", sym_name(np
));
1715 OUTB(np
, nc_istat
, SRST
);
1718 OUTB(np
, nc_istat
, 0);
1720 sym_free_resources(np
, pdev
, 1);
1721 scsi_host_put(shost
);
1727 * Driver host template.
1729 static struct scsi_host_template sym2_template
= {
1730 .module
= THIS_MODULE
,
1731 .name
= "sym53c8xx",
1732 .info
= sym53c8xx_info
,
1733 .queuecommand
= sym53c8xx_queue_command
,
1734 .slave_alloc
= sym53c8xx_slave_alloc
,
1735 .slave_configure
= sym53c8xx_slave_configure
,
1736 .slave_destroy
= sym53c8xx_slave_destroy
,
1737 .eh_abort_handler
= sym53c8xx_eh_abort_handler
,
1738 .eh_device_reset_handler
= sym53c8xx_eh_device_reset_handler
,
1739 .eh_bus_reset_handler
= sym53c8xx_eh_bus_reset_handler
,
1740 .eh_host_reset_handler
= sym53c8xx_eh_host_reset_handler
,
1742 .use_clustering
= ENABLE_CLUSTERING
,
1743 .max_sectors
= 0xFFFF,
1744 #ifdef SYM_LINUX_PROC_INFO_SUPPORT
1745 .proc_info
= sym53c8xx_proc_info
,
1746 .proc_name
= NAME53C8XX
,
1750 static int attach_count
;
1752 static int __devinit
sym2_probe(struct pci_dev
*pdev
,
1753 const struct pci_device_id
*ent
)
1755 struct sym_device sym_dev
;
1756 struct sym_nvram nvram
;
1757 struct Scsi_Host
*shost
;
1759 int do_disable_device
= 1;
1761 memset(&sym_dev
, 0, sizeof(sym_dev
));
1762 memset(&nvram
, 0, sizeof(nvram
));
1763 sym_dev
.pdev
= pdev
;
1764 sym_dev
.host_id
= SYM_SETUP_HOST_ID
;
1766 if (pci_enable_device(pdev
))
1769 pci_set_master(pdev
);
1771 if (pci_request_regions(pdev
, NAME53C8XX
))
1774 if (sym_check_supported(&sym_dev
))
1777 if (sym_iomap_device(&sym_dev
))
1781 if (sym_check_raid(&sym_dev
)) {
1782 do_disable_device
= 0; /* Don't disable the device */
1786 if (sym_set_workarounds(&sym_dev
))
1789 sym_config_pqs(pdev
, &sym_dev
);
1791 sym_get_nvram(&sym_dev
, &nvram
);
1793 do_iounmap
= 0; /* Don't sym_iounmap_device() after sym_attach(). */
1794 shost
= sym_attach(&sym2_template
, attach_count
, &sym_dev
);
1798 if (scsi_add_host(shost
, &pdev
->dev
))
1800 scsi_scan_host(shost
);
1807 sym_detach(pci_get_drvdata(pdev
), pdev
);
1810 sym_iounmap_device(&sym_dev
);
1811 pci_release_regions(pdev
);
1813 if (do_disable_device
)
1814 pci_disable_device(pdev
);
1819 static void sym2_remove(struct pci_dev
*pdev
)
1821 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
1823 scsi_remove_host(shost
);
1824 sym_detach(shost
, pdev
);
1825 pci_release_regions(pdev
);
1826 pci_disable_device(pdev
);
1832 * sym2_io_error_detected() - called when PCI error is detected
1833 * @pdev: pointer to PCI device
1834 * @state: current state of the PCI slot
1836 static pci_ers_result_t
sym2_io_error_detected(struct pci_dev
*pdev
,
1837 enum pci_channel_state state
)
1839 /* If slot is permanently frozen, turn everything off */
1840 if (state
== pci_channel_io_perm_failure
) {
1842 return PCI_ERS_RESULT_DISCONNECT
;
1845 disable_irq(pdev
->irq
);
1846 pci_disable_device(pdev
);
1848 /* Request that MMIO be enabled, so register dump can be taken. */
1849 return PCI_ERS_RESULT_CAN_RECOVER
;
1853 * sym2_io_slot_dump - Enable MMIO and dump debug registers
1854 * @pdev: pointer to PCI device
1856 static pci_ers_result_t
sym2_io_slot_dump(struct pci_dev
*pdev
)
1858 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
1860 sym_dump_registers(shost
);
1862 /* Request a slot reset. */
1863 return PCI_ERS_RESULT_NEED_RESET
;
1867 * sym2_reset_workarounds - hardware-specific work-arounds
1869 * This routine is similar to sym_set_workarounds(), except
1870 * that, at this point, we already know that the device was
1871 * succesfully intialized at least once before, and so most
1872 * of the steps taken there are un-needed here.
1874 static void sym2_reset_workarounds(struct pci_dev
*pdev
)
1877 struct sym_chip
*chip
;
1879 chip
= sym_lookup_chip_table(pdev
->device
, pdev
->revision
);
1881 /* Work around for errant bit in 895A, in a fashion
1882 * similar to what is done in sym_set_workarounds().
1884 pci_read_config_word(pdev
, PCI_STATUS
, &status_reg
);
1885 if (!(chip
->features
& FE_66MHZ
) && (status_reg
& PCI_STATUS_66MHZ
)) {
1886 status_reg
= PCI_STATUS_66MHZ
;
1887 pci_write_config_word(pdev
, PCI_STATUS
, status_reg
);
1888 pci_read_config_word(pdev
, PCI_STATUS
, &status_reg
);
1893 * sym2_io_slot_reset() - called when the pci bus has been reset.
1894 * @pdev: pointer to PCI device
1896 * Restart the card from scratch.
1898 static pci_ers_result_t
sym2_io_slot_reset(struct pci_dev
*pdev
)
1900 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
1901 struct sym_hcb
*np
= sym_get_hcb(shost
);
1903 printk(KERN_INFO
"%s: recovering from a PCI slot reset\n",
1906 if (pci_enable_device(pdev
)) {
1907 printk(KERN_ERR
"%s: Unable to enable after PCI reset\n",
1909 return PCI_ERS_RESULT_DISCONNECT
;
1912 pci_set_master(pdev
);
1913 enable_irq(pdev
->irq
);
1915 /* If the chip can do Memory Write Invalidate, enable it */
1916 if (np
->features
& FE_WRIE
) {
1917 if (pci_set_mwi(pdev
))
1918 return PCI_ERS_RESULT_DISCONNECT
;
1921 /* Perform work-arounds, analogous to sym_set_workarounds() */
1922 sym2_reset_workarounds(pdev
);
1924 /* Perform host reset only on one instance of the card */
1925 if (PCI_FUNC(pdev
->devfn
) == 0) {
1926 if (sym_reset_scsi_bus(np
, 0)) {
1927 printk(KERN_ERR
"%s: Unable to reset scsi host\n",
1929 return PCI_ERS_RESULT_DISCONNECT
;
1931 sym_start_up(shost
, 1);
1934 return PCI_ERS_RESULT_RECOVERED
;
1938 * sym2_io_resume() - resume normal ops after PCI reset
1939 * @pdev: pointer to PCI device
1941 * Called when the error recovery driver tells us that its
1942 * OK to resume normal operation. Use completion to allow
1943 * halted scsi ops to resume.
1945 static void sym2_io_resume(struct pci_dev
*pdev
)
1947 struct Scsi_Host
*shost
= pci_get_drvdata(pdev
);
1948 struct sym_data
*sym_data
= shost_priv(shost
);
1950 spin_lock_irq(shost
->host_lock
);
1951 if (sym_data
->io_reset
)
1952 complete_all(sym_data
->io_reset
);
1953 spin_unlock_irq(shost
->host_lock
);
1956 static void sym2_get_signalling(struct Scsi_Host
*shost
)
1958 struct sym_hcb
*np
= sym_get_hcb(shost
);
1959 enum spi_signal_type type
;
1961 switch (np
->scsi_mode
) {
1963 type
= SPI_SIGNAL_SE
;
1966 type
= SPI_SIGNAL_LVD
;
1969 type
= SPI_SIGNAL_HVD
;
1972 type
= SPI_SIGNAL_UNKNOWN
;
1975 spi_signalling(shost
) = type
;
1978 static void sym2_set_offset(struct scsi_target
*starget
, int offset
)
1980 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
1981 struct sym_hcb
*np
= sym_get_hcb(shost
);
1982 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
1984 tp
->tgoal
.offset
= offset
;
1985 tp
->tgoal
.check_nego
= 1;
1988 static void sym2_set_period(struct scsi_target
*starget
, int period
)
1990 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
1991 struct sym_hcb
*np
= sym_get_hcb(shost
);
1992 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
1994 /* have to have DT for these transfers, but DT will also
1995 * set width, so check that this is allowed */
1996 if (period
<= np
->minsync
&& spi_width(starget
))
1999 tp
->tgoal
.period
= period
;
2000 tp
->tgoal
.check_nego
= 1;
2003 static void sym2_set_width(struct scsi_target
*starget
, int width
)
2005 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2006 struct sym_hcb
*np
= sym_get_hcb(shost
);
2007 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
2009 /* It is illegal to have DT set on narrow transfers. If DT is
2010 * clear, we must also clear IU and QAS. */
2012 tp
->tgoal
.iu
= tp
->tgoal
.dt
= tp
->tgoal
.qas
= 0;
2014 tp
->tgoal
.width
= width
;
2015 tp
->tgoal
.check_nego
= 1;
2018 static void sym2_set_dt(struct scsi_target
*starget
, int dt
)
2020 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2021 struct sym_hcb
*np
= sym_get_hcb(shost
);
2022 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
2024 /* We must clear QAS and IU if DT is clear */
2028 tp
->tgoal
.iu
= tp
->tgoal
.dt
= tp
->tgoal
.qas
= 0;
2029 tp
->tgoal
.check_nego
= 1;
2033 static void sym2_set_iu(struct scsi_target
*starget
, int iu
)
2035 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2036 struct sym_hcb
*np
= sym_get_hcb(shost
);
2037 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
2040 tp
->tgoal
.iu
= tp
->tgoal
.dt
= 1;
2043 tp
->tgoal
.check_nego
= 1;
2046 static void sym2_set_qas(struct scsi_target
*starget
, int qas
)
2048 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2049 struct sym_hcb
*np
= sym_get_hcb(shost
);
2050 struct sym_tcb
*tp
= &np
->target
[starget
->id
];
2053 tp
->tgoal
.dt
= tp
->tgoal
.qas
= 1;
2056 tp
->tgoal
.check_nego
= 1;
2060 static struct spi_function_template sym2_transport_functions
= {
2061 .set_offset
= sym2_set_offset
,
2063 .set_period
= sym2_set_period
,
2065 .set_width
= sym2_set_width
,
2067 .set_dt
= sym2_set_dt
,
2070 .set_iu
= sym2_set_iu
,
2072 .set_qas
= sym2_set_qas
,
2075 .get_signalling
= sym2_get_signalling
,
2078 static struct pci_device_id sym2_id_table
[] __devinitdata
= {
2079 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C810
,
2080 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2081 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C820
,
2082 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL }, /* new */
2083 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C825
,
2084 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2085 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C815
,
2086 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2087 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C810AP
,
2088 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL }, /* new */
2089 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C860
,
2090 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2091 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C1510
,
2092 PCI_ANY_ID
, PCI_ANY_ID
, PCI_CLASS_STORAGE_SCSI
<<8, 0xffff00, 0UL },
2093 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C896
,
2094 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2095 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C895
,
2096 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2097 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C885
,
2098 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2099 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C875
,
2100 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2101 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C1510
,
2102 PCI_ANY_ID
, PCI_ANY_ID
, PCI_CLASS_STORAGE_SCSI
<<8, 0xffff00, 0UL }, /* new */
2103 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C895A
,
2104 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2105 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C875A
,
2106 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2107 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C1010_33
,
2108 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2109 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_LSI_53C1010_66
,
2110 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2111 { PCI_VENDOR_ID_LSI_LOGIC
, PCI_DEVICE_ID_NCR_53C875J
,
2112 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0UL },
2116 MODULE_DEVICE_TABLE(pci
, sym2_id_table
);
2118 static struct pci_error_handlers sym2_err_handler
= {
2119 .error_detected
= sym2_io_error_detected
,
2120 .mmio_enabled
= sym2_io_slot_dump
,
2121 .slot_reset
= sym2_io_slot_reset
,
2122 .resume
= sym2_io_resume
,
2125 static struct pci_driver sym2_driver
= {
2127 .id_table
= sym2_id_table
,
2128 .probe
= sym2_probe
,
2129 .remove
= sym2_remove
,
2130 .err_handler
= &sym2_err_handler
,
2133 static int __init
sym2_init(void)
2137 sym2_setup_params();
2138 sym2_transport_template
= spi_attach_transport(&sym2_transport_functions
);
2139 if (!sym2_transport_template
)
2142 error
= pci_register_driver(&sym2_driver
);
2144 spi_release_transport(sym2_transport_template
);
2148 static void __exit
sym2_exit(void)
2150 pci_unregister_driver(&sym2_driver
);
2151 spi_release_transport(sym2_transport_template
);
2154 module_init(sym2_init
);
2155 module_exit(sym2_exit
);