ncr5380: Split NCR5380_init() into two functions
This patch splits the NCR5380_init() function into two parts, similar to the scheme used with atari_NCR5380.c. This avoids two problems. Firstly, NCR5380_init() may perform a bus reset, which would cause the chip to assert IRQ. The chip is unable to mask its bus reset interrupt. Drivers can't call request_irq() before calling NCR5380_init(), because initialization must happen before the interrupt handler executes. If driver initialization causes an interrupt it may be problematic on some platforms. To avoid that, first move the bus reset code into NCR5380_maybe_reset_bus(). Secondly, NCR5380_init() contains some board-specific interrupt setup code for the NCR53C400 that does not belong in the core driver. In moving this code, better not re-order interrupt initialization and bus reset. Again, the solution is to move the bus reset code into NCR5380_maybe_reset_bus(). Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Reviewed-by: Hannes Reinecke <hare@suse.com> Tested-by: Ondrej Zary <linux@rainbow-software.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
b01ec34895
Коммит
b6488f97d3
|
@ -777,8 +777,7 @@ static void lprint_opcode(int opcode, struct seq_file *m)
|
||||||
|
|
||||||
static int NCR5380_init(struct Scsi_Host *instance, int flags)
|
static int NCR5380_init(struct Scsi_Host *instance, int flags)
|
||||||
{
|
{
|
||||||
int i, pass;
|
int i;
|
||||||
unsigned long timeout;
|
|
||||||
struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
|
struct NCR5380_hostdata *hostdata = (struct NCR5380_hostdata *) instance->hostdata;
|
||||||
|
|
||||||
if(in_interrupt())
|
if(in_interrupt())
|
||||||
|
@ -831,18 +830,26 @@ static int NCR5380_init(struct Scsi_Host *instance, int flags)
|
||||||
NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
|
NCR5380_write(C400_CONTROL_STATUS_REG, CSR_BASE);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Detect and correct bus wedge problems.
|
* NCR5380_maybe_reset_bus - Detect and correct bus wedge problems.
|
||||||
*
|
* @instance: adapter to check
|
||||||
* If the system crashed, it may have crashed in a state
|
*
|
||||||
* where a SCSI command was still executing, and the
|
* If the system crashed, it may have crashed with a connected target and
|
||||||
* SCSI bus is not in a BUS FREE STATE.
|
* the SCSI bus busy. Check for BUS FREE phase. If not, try to abort the
|
||||||
*
|
* currently established nexus, which we know nothing about. Failing that
|
||||||
* If this is the case, we'll try to abort the currently
|
* do a bus reset.
|
||||||
* established nexus which we know nothing about, and that
|
*
|
||||||
* failing, do a hard reset of the SCSI bus
|
* Note that a bus reset will cause the chip to assert IRQ.
|
||||||
*/
|
*
|
||||||
|
* Returns 0 if successful, otherwise -ENXIO.
|
||||||
|
*/
|
||||||
|
|
||||||
|
static int NCR5380_maybe_reset_bus(struct Scsi_Host *instance)
|
||||||
|
{
|
||||||
|
int pass;
|
||||||
|
|
||||||
for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
|
for (pass = 1; (NCR5380_read(STATUS_REG) & SR_BSY) && pass <= 6; ++pass) {
|
||||||
switch (pass) {
|
switch (pass) {
|
||||||
|
@ -850,7 +857,6 @@ static int NCR5380_init(struct Scsi_Host *instance, int flags)
|
||||||
case 3:
|
case 3:
|
||||||
case 5:
|
case 5:
|
||||||
printk(KERN_INFO "scsi%d: SCSI bus busy, waiting up to five seconds\n", instance->host_no);
|
printk(KERN_INFO "scsi%d: SCSI bus busy, waiting up to five seconds\n", instance->host_no);
|
||||||
timeout = jiffies + 5 * HZ;
|
|
||||||
NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, 0, 5*HZ);
|
NCR5380_poll_politely(instance, STATUS_REG, SR_BSY, 0, 5*HZ);
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
|
|
@ -318,6 +318,7 @@ static void NCR5380_print(struct Scsi_Host *instance);
|
||||||
static int NCR5380_probe_irq(struct Scsi_Host *instance, int possible);
|
static int NCR5380_probe_irq(struct Scsi_Host *instance, int possible);
|
||||||
#endif
|
#endif
|
||||||
static int NCR5380_init(struct Scsi_Host *instance, int flags);
|
static int NCR5380_init(struct Scsi_Host *instance, int flags);
|
||||||
|
static int NCR5380_maybe_reset_bus(struct Scsi_Host *);
|
||||||
static void NCR5380_exit(struct Scsi_Host *instance);
|
static void NCR5380_exit(struct Scsi_Host *instance);
|
||||||
static void NCR5380_information_transfer(struct Scsi_Host *instance);
|
static void NCR5380_information_transfer(struct Scsi_Host *instance);
|
||||||
#ifndef DONT_USE_INTR
|
#ifndef DONT_USE_INTR
|
||||||
|
|
|
@ -240,6 +240,8 @@ static int cumanascsi1_probe(struct expansion_card *ec,
|
||||||
|
|
||||||
NCR5380_init(host, 0);
|
NCR5380_init(host, 0);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(host);
|
||||||
|
|
||||||
priv(host)->ctrl = 0;
|
priv(host)->ctrl = 0;
|
||||||
writeb(0, priv(host)->base + CTRL);
|
writeb(0, priv(host)->base + CTRL);
|
||||||
|
|
||||||
|
|
|
@ -145,6 +145,8 @@ static int oakscsi_probe(struct expansion_card *ec, const struct ecard_id *id)
|
||||||
|
|
||||||
NCR5380_init(host, 0);
|
NCR5380_init(host, 0);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(host);
|
||||||
|
|
||||||
ret = scsi_add_host(host, &ec->dev);
|
ret = scsi_add_host(host, &ec->dev);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_unmap;
|
goto out_unmap;
|
||||||
|
|
|
@ -97,6 +97,8 @@ static int dmx3191d_probe_one(struct pci_dev *pdev,
|
||||||
|
|
||||||
NCR5380_init(shost, FLAG_NO_PSEUDO_DMA | FLAG_DTC3181E);
|
NCR5380_init(shost, FLAG_NO_PSEUDO_DMA | FLAG_DTC3181E);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(shost);
|
||||||
|
|
||||||
pci_set_drvdata(pdev, shost);
|
pci_set_drvdata(pdev, shost);
|
||||||
|
|
||||||
error = scsi_add_host(shost, &pdev->dev);
|
error = scsi_add_host(shost, &pdev->dev);
|
||||||
|
|
|
@ -237,6 +237,8 @@ found:
|
||||||
|
|
||||||
NCR5380_init(instance, 0);
|
NCR5380_init(instance, 0);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(instance);
|
||||||
|
|
||||||
NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
|
NCR5380_write(DTC_CONTROL_REG, CSR_5380_INTR); /* Enable int's */
|
||||||
if (overrides[current_override].irq != IRQ_AUTO)
|
if (overrides[current_override].irq != IRQ_AUTO)
|
||||||
instance->irq = overrides[current_override].irq;
|
instance->irq = overrides[current_override].irq;
|
||||||
|
|
|
@ -422,6 +422,8 @@ static int __init generic_NCR5380_detect(struct scsi_host_template *tpnt)
|
||||||
|
|
||||||
NCR5380_init(instance, flags);
|
NCR5380_init(instance, flags);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(instance);
|
||||||
|
|
||||||
if (overrides[current_override].irq != IRQ_AUTO)
|
if (overrides[current_override].irq != IRQ_AUTO)
|
||||||
instance->irq = overrides[current_override].irq;
|
instance->irq = overrides[current_override].irq;
|
||||||
else
|
else
|
||||||
|
|
|
@ -384,6 +384,8 @@ static int __init pas16_detect(struct scsi_host_template *tpnt)
|
||||||
|
|
||||||
NCR5380_init(instance, 0);
|
NCR5380_init(instance, 0);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(instance);
|
||||||
|
|
||||||
if (overrides[current_override].irq != IRQ_AUTO)
|
if (overrides[current_override].irq != IRQ_AUTO)
|
||||||
instance->irq = overrides[current_override].irq;
|
instance->irq = overrides[current_override].irq;
|
||||||
else
|
else
|
||||||
|
|
|
@ -215,6 +215,8 @@ found:
|
||||||
|
|
||||||
NCR5380_init(instance, 0);
|
NCR5380_init(instance, 0);
|
||||||
|
|
||||||
|
NCR5380_maybe_reset_bus(instance);
|
||||||
|
|
||||||
if (overrides[current_override].irq != IRQ_AUTO)
|
if (overrides[current_override].irq != IRQ_AUTO)
|
||||||
instance->irq = overrides[current_override].irq;
|
instance->irq = overrides[current_override].irq;
|
||||||
else
|
else
|
||||||
|
|
Загрузка…
Ссылка в новой задаче