Commit 151eb016 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] atp870u scsi update

Rediffed with the 2.5.28 biosparm change included
parent cd2e72b7
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
* *
* Copyright (C) 1997 Wu Ching Chen * Copyright (C) 1997 Wu Ching Chen
* 2.1.x update (C) 1998 Krzysztof G. Baranowski * 2.1.x update (C) 1998 Krzysztof G. Baranowski
* 2.5.x update (C) 2002 Red Hat <alan@redhat.com>
* *
* Marcelo Tosatti <marcelo@conectiva.com.br> : SMP fixes * Marcelo Tosatti <marcelo@conectiva.com.br> : SMP fixes
* *
...@@ -11,11 +12,10 @@ ...@@ -11,11 +12,10 @@
* enable 32 bit fifo transfer * enable 32 bit fifo transfer
* support cdrom & remove device run ultra speed * support cdrom & remove device run ultra speed
* fix disconnect bug 2000/12/21 * fix disconnect bug 2000/12/21
* support atp880 chip lvd u160 2001/05/15 (7.1) * support atp880 chip lvd u160 2001/05/15
* fix prd table bug 2001/09/12 (7.1)
*/ */
#error Please convert me to Documentation/DMA-mapping.txt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -38,19 +38,15 @@ ...@@ -38,19 +38,15 @@
#include<linux/stat.h> #include<linux/stat.h>
void mydlyu(unsigned int);
/* /*
* static const char RCSid[] = "$Header: /usr/src/linux/kernel/blk_drv/scsi/RCS/atp870u.c,v 1.0 1997/05/07 15:22:00 root Exp root $"; * static const char RCSid[] = "$Header: /usr/src/linux/kernel/blk_drv/scsi/RCS/atp870u.c,v 1.0 1997/05/07 15:22:00 root Exp root $";
*/ */
static unsigned char admaxu = 1;
static unsigned short int sync_idu; static unsigned short int sync_idu;
static unsigned int irqnumu[2] = {0, 0}; #define MAX_ATP 16
struct atp_unit struct atp_unit {
{
unsigned long ioport; unsigned long ioport;
unsigned long irq; unsigned long irq;
unsigned long pciport; unsigned long pciport;
...@@ -72,8 +68,7 @@ struct atp_unit ...@@ -72,8 +68,7 @@ struct atp_unit
unsigned char ata_cdbu[16]; unsigned char ata_cdbu[16];
unsigned char sp[16]; unsigned char sp[16];
Scsi_Cmnd *querequ[qcnt]; Scsi_Cmnd *querequ[qcnt];
struct atp_id struct atp_id {
{
unsigned char dirctu; unsigned char dirctu;
unsigned char devspu; unsigned char devspu;
unsigned char devtypeu; unsigned char devtypeu;
...@@ -82,58 +77,50 @@ struct atp_unit ...@@ -82,58 +77,50 @@ struct atp_unit
unsigned long last_lenu; unsigned long last_lenu;
unsigned char *prd_posu; unsigned char *prd_posu;
unsigned char *prd_tableu; unsigned char *prd_tableu;
dma_addr_t prd_phys;
Scsi_Cmnd *curr_req; Scsi_Cmnd *curr_req;
} id[16]; } id[16];
struct Scsi_Host *host;
struct pci_dev *pdev;
}; };
static struct Scsi_Host *atp_host[2] = {NULL, NULL}; static struct Scsi_Host *atp_host[MAX_ATP];
static struct atp_unit atp_unit[2];
static void send_s870(struct Scsi_Host *);
static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
{ {
unsigned long flags; unsigned long flags;
unsigned short int tmpcip, id; unsigned short int tmpcip, id;
unsigned char i, j, h, target_id, lun; unsigned char i, j, target_id, lun;
unsigned char *prd; unsigned char *prd;
Scsi_Cmnd *workrequ; Scsi_Cmnd *workrequ;
unsigned int workportu, tmport; unsigned int workportu, tmport;
unsigned long adrcntu, k; unsigned long adrcntu, k;
int errstus; int errstus;
struct atp_unit *dev = dev_id; struct Scsi_Host *host = dev_id;
struct atp_unit *dev = (struct atp_unit *)&host->hostdata;
for (h = 0; h < 2; h++) {
if (irq == irqnumu[h]) {
goto irq_numok;
}
}
return;
irq_numok:
dev->in_int = 1; dev->in_int = 1;
workportu = dev->ioport; workportu = dev->ioport;
tmport = workportu; tmport = workportu;
if (dev->working != 0) if (dev->working != 0) {
{
tmport += 0x1f; tmport += 0x1f;
j = inb(tmport); j = inb(tmport);
if ((j & 0x80) == 0) if ((j & 0x80) == 0) {
{
dev->in_int = 0; dev->in_int = 0;
return; return;
} }
tmpcip = dev->pciport; tmpcip = dev->pciport;
if ((inb(tmpcip) & 0x08) != 0) if ((inb(tmpcip) & 0x08) != 0) {
{
tmpcip += 0x2; tmpcip += 0x2;
for (k=0; k < 1000; k++) for (k = 0; k < 1000; k++) {
{ if ((inb(tmpcip) & 0x08) == 0) {
if ((inb(tmpcip) & 0x08) == 0)
{
goto stop_dma; goto stop_dma;
} }
if ((inb(tmpcip) & 0x01) == 0) if ((inb(tmpcip) & 0x01) == 0) {
{
goto stop_dma; goto stop_dma;
} }
} }
...@@ -150,7 +137,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -150,7 +137,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
tmport += 0x02; tmport += 0x02;
/* /*
* Remap wide devices onto id numbers * Remap wide devices onto id numbers
*/ */
if ((target_id & 0x40) != 0) { if ((target_id & 0x40) != 0) {
...@@ -159,60 +146,49 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -159,60 +146,49 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
target_id &= 0x07; target_id &= 0x07;
} }
if ((j & 0x40) != 0) if ((j & 0x40) != 0) {
{ if (dev->last_cmd == 0xff) {
if (dev->last_cmd == 0xff) dev->last_cmd = target_id;
{ }
dev->last_cmd = target_id; dev->last_cmd |= 0x40;
}
dev->last_cmd |= 0x40;
} }
if (i == 0x85) if (i == 0x85) {
{ if ((dev->last_cmd & 0xf0) != 0x40) {
if ((dev->last_cmd & 0xf0) != 0x40) dev->last_cmd = 0xff;
{
dev->last_cmd = 0xff;
} }
/* /*
* Flip wide * Flip wide
*/ */
if (dev->wide_idu != 0) if (dev->wide_idu != 0) {
{
tmport = workportu + 0x1b; tmport = workportu + 0x1b;
outb(0x01,tmport); outb(0x01, tmport);
while ((inb(tmport) & 0x01) != 0x01) while ((inb(tmport) & 0x01) != 0x01) {
{ outb(0x01, tmport);
outb(0x01,tmport);
} }
} }
/* /*
* Issue more commands * Issue more commands
*/ */
if (((dev->quhdu != dev->quendu) || (dev->last_cmd != 0xff)) && if (((dev->quhdu != dev->quendu) || (dev->last_cmd != 0xff)) && (dev->in_snd == 0)) {
(dev->in_snd == 0)) send_s870(host);
{
send_s870(h);
} }
/* /*
* Done * Done
*/ */
dev->in_int = 0; dev->in_int = 0;
return; return;
} }
if (i == 0x40) if (i == 0x40) {
{ dev->last_cmd |= 0x40;
dev->last_cmd |= 0x40; dev->in_int = 0;
dev->in_int = 0; return;
return;
} }
if (i == 0x21) if (i == 0x21) {
{ if ((dev->last_cmd & 0xf0) != 0x40) {
if ((dev->last_cmd & 0xf0) != 0x40) dev->last_cmd = 0xff;
{
dev->last_cmd = 0xff;
} }
tmport -= 0x05; tmport -= 0x05;
adrcntu = 0; adrcntu = 0;
...@@ -230,21 +206,18 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -230,21 +206,18 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
dev->in_int = 0; dev->in_int = 0;
return; return;
} }
if ((i == 0x80) || (i == 0x8f)) if ((i == 0x80) || (i == 0x8f)) {
{
lun = 0; lun = 0;
tmport -= 0x07; tmport -= 0x07;
j = inb(tmport); j = inb(tmport);
if (j == 0x44 || i==0x80) { if (j == 0x44 || i == 0x80) {
tmport += 0x0d; tmport += 0x0d;
lun = inb(tmport) & 0x07; lun = inb(tmport) & 0x07;
} else { } else {
if ((dev->last_cmd & 0xf0) != 0x40) if ((dev->last_cmd & 0xf0) != 0x40) {
{ dev->last_cmd = 0xff;
dev->last_cmd = 0xff;
} }
if (j == 0x41) if (j == 0x41) {
{
tmport += 0x02; tmport += 0x02;
adrcntu = 0; adrcntu = 0;
((unsigned char *) &adrcntu)[2] = inb(tmport++); ((unsigned char *) &adrcntu)[2] = inb(tmport++);
...@@ -258,9 +231,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -258,9 +231,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
outb(0x08, tmport); outb(0x08, tmport);
dev->in_int = 0; dev->in_int = 0;
return; return;
} } else {
else
{
outb(0x46, tmport); outb(0x46, tmport);
dev->id[target_id].dirctu = 0x00; dev->id[target_id].dirctu = 0x00;
tmport += 0x02; tmport += 0x02;
...@@ -273,19 +244,17 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -273,19 +244,17 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
return; return;
} }
} }
if (dev->last_cmd != 0xff) if (dev->last_cmd != 0xff) {
{ dev->last_cmd |= 0x40;
dev->last_cmd |= 0x40;
} }
tmport = workportu + 0x10; tmport = workportu + 0x10;
outb(0x45, tmport); outb(0x45, tmport);
tmport += 0x06; tmport += 0x06;
target_id = inb(tmport); target_id = inb(tmport);
/* /*
* Remap wide identifiers * Remap wide identifiers
*/ */
if ((target_id & 0x10) != 0) if ((target_id & 0x10) != 0) {
{
target_id = (target_id & 0x07) | 0x08; target_id = (target_id & 0x07) | 0x08;
} else { } else {
target_id &= 0x07; target_id &= 0x07;
...@@ -311,31 +280,20 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -311,31 +280,20 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
outb(0x80, tmport); outb(0x80, tmport);
/* enable 32 bit fifo transfer */ /* enable 32 bit fifo transfer */
if (dev->deviceid != 0x8081) if (dev->deviceid != 0x8081) {
{ tmport = workportu + 0x3a;
tmport = workportu + 0x3a; if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || (dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) {
if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || outb((unsigned char) ((inb(tmport) & 0xf3) | 0x08), tmport);
(dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) } else {
{ outb((unsigned char) (inb(tmport) & 0xf3), tmport);
outb((unsigned char)((inb(tmport) & 0xf3) | 0x08),tmport); }
} } else {
else tmport = workportu - 0x05;
{ if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || (dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) {
outb((unsigned char)(inb(tmport) & 0xf3),tmport); outb((unsigned char) ((inb(tmport) & 0x3f) | 0xc0), tmport);
} } else {
} outb((unsigned char) (inb(tmport) & 0x3f), tmport);
else }
{
tmport = workportu - 0x05;
if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) ||
(dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a))
{
outb((unsigned char)((inb(tmport) & 0x3f) | 0xc0),tmport);
}
else
{
outb((unsigned char)(inb(tmport) & 0x3f),tmport);
}
} }
tmport = workportu + 0x1b; tmport = workportu + 0x1b;
...@@ -343,15 +301,14 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -343,15 +301,14 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
id = 1; id = 1;
id = id << target_id; id = id << target_id;
/* /*
* Is this a wide device * Is this a wide device
*/ */
if ((id & dev->wide_idu) != 0) { if ((id & dev->wide_idu) != 0) {
j |= 0x01; j |= 0x01;
} }
outb(j, tmport); outb(j, tmport);
while ((inb(tmport) & 0x01) != j) while ((inb(tmport) & 0x01) != j) {
{ outb(j, tmport);
outb(j,tmport);
} }
if (dev->id[target_id].last_lenu == 0) { if (dev->id[target_id].last_lenu == 0) {
...@@ -361,8 +318,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -361,8 +318,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
return; return;
} }
prd = dev->id[target_id].prd_posu; prd = dev->id[target_id].prd_posu;
while (adrcntu != 0) while (adrcntu != 0) {
{
id = ((unsigned short int *) (prd))[2]; id = ((unsigned short int *) (prd))[2];
if (id == 0) { if (id == 0) {
k = 0x10000; k = 0x10000;
...@@ -392,7 +348,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -392,7 +348,7 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
tmpcip -= 0x02; tmpcip -= 0x02;
tmport = workportu + 0x18; tmport = workportu + 0x18;
/* /*
* Check transfer direction * Check transfer direction
*/ */
if (dev->id[target_id].dirctu != 0) { if (dev->id[target_id].dirctu != 0) {
outb(0x08, tmport); outb(0x08, tmport);
...@@ -407,25 +363,22 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -407,25 +363,22 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
} }
/* /*
* Current scsi request on this target * Current scsi request on this target
*/ */
workrequ = dev->id[target_id].curr_req; workrequ = dev->id[target_id].curr_req;
if (i == 0x42) { if (i == 0x42) {
if ((dev->last_cmd & 0xf0) != 0x40) if ((dev->last_cmd & 0xf0) != 0x40) {
{ dev->last_cmd = 0xff;
dev->last_cmd = 0xff;
} }
errstus = 0x02; errstus = 0x02;
workrequ->result = errstus; workrequ->result = errstus;
goto go_42; goto go_42;
} }
if (i == 0x16) if (i == 0x16) {
{ if ((dev->last_cmd & 0xf0) != 0x40) {
if ((dev->last_cmd & 0xf0) != 0x40) dev->last_cmd = 0xff;
{
dev->last_cmd = 0xff;
} }
errstus = 0; errstus = 0;
tmport -= 0x08; tmport -= 0x08;
...@@ -433,42 +386,43 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -433,42 +386,43 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
workrequ->result = errstus; workrequ->result = errstus;
go_42: go_42:
/* /*
* Complete the command * Complete the command
*/ */
spin_lock_irqsave(workrequ->host->host_lock, flags);
if(workrequ->use_sg)
pci_unmap_sg(dev->pdev, (struct scatterlist *)workrequ->buffer, workrequ->use_sg, scsi_to_pci_dma_dir(workrequ->sc_data_direction));
else if(workrequ->request_bufflen && workrequ->sc_data_direction != SCSI_DATA_NONE)
pci_unmap_single(dev->pdev, workrequ->SCp.dma_handle, workrequ->request_bufflen, scsi_to_pci_dma_dir(workrequ->sc_data_direction));
spin_lock_irqsave(dev->host->host_lock, flags);
(*workrequ->scsi_done) (workrequ); (*workrequ->scsi_done) (workrequ);
/* /*
* Clear it off the queue * Clear it off the queue
*/ */
dev->id[target_id].curr_req = 0; dev->id[target_id].curr_req = 0;
dev->working--; dev->working--;
spin_unlock_irqrestore(workrequ->host->host_lock, flags); spin_unlock_irqrestore(dev->host->host_lock, flags);
/* /*
* Take it back wide * Take it back wide
*/ */
if (dev->wide_idu != 0) { if (dev->wide_idu != 0) {
tmport = workportu + 0x1b; tmport = workportu + 0x1b;
outb(0x01,tmport); outb(0x01, tmport);
while ((inb(tmport) & 0x01) != 0x01) while ((inb(tmport) & 0x01) != 0x01) {
{ outb(0x01, tmport);
outb(0x01,tmport);
} }
} }
/* /*
* If there is stuff to send and nothing going then send it * If there is stuff to send and nothing going then send it
*/ */
if (((dev->last_cmd != 0xff) || (dev->quhdu != dev->quendu)) && if (((dev->last_cmd != 0xff) || (dev->quhdu != dev->quendu)) && (dev->in_snd == 0)) {
(dev->in_snd == 0)) send_s870(host);
{
send_s870(h);
} }
dev->in_int = 0; dev->in_int = 0;
return; return;
} }
if ((dev->last_cmd & 0xf0) != 0x40) if ((dev->last_cmd & 0xf0) != 0x40) {
{ dev->last_cmd = 0xff;
dev->last_cmd = 0xff;
} }
if (i == 0x4f) { if (i == 0x4f) {
i = 0x89; i = 0x89;
...@@ -524,40 +478,36 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs) ...@@ -524,40 +478,36 @@ static void atp870u_intr_handle(int irq, void *dev_id, struct pt_regs *regs)
dev->in_int = 0; dev->in_int = 0;
return; return;
} else { } else {
// tmport = workportu + 0x17; // tmport = workportu + 0x17;
// inb(tmport); // inb(tmport);
// dev->working = 0; // dev->working = 0;
dev->in_int = 0; dev->in_int = 0;
return; return;
} }
} }
int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *)) static int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *))
{ {
unsigned char h;
unsigned long flags; unsigned long flags;
unsigned short int m; unsigned short int m;
unsigned int tmport; unsigned int tmport;
struct Scsi_Host *host;
struct atp_unit *dev; struct atp_unit *dev;
for (h = 0; h <= admaxu; h++) {
if (req_p->host == atp_host[h]) {
goto host_ok;
}
}
return 0;
host_ok:
if (req_p->channel != 0) { if (req_p->channel != 0) {
req_p->result = 0x00040000; req_p->result = 0x00040000;
done(req_p); done(req_p);
return 0; return 0;
} };
dev = &atp_unit[h];
host = req_p->host;
dev = (struct atp_unit *)&host->hostdata;
m = 1; m = 1;
m = m << req_p->target; m = m << req_p->target;
/* /*
* Fake a timeout for missing targets * Fake a timeout for missing targets
*/ */
if ((m & dev->active_idu) == 0) { if ((m & dev->active_idu) == 0) {
...@@ -574,16 +524,16 @@ int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *)) ...@@ -574,16 +524,16 @@ int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *))
return 0; return 0;
} }
/* /*
* Count new command * Count new command
*/ */
save_flags(flags);
cli(); spin_lock_irqsave(host->host_lock, flags);
dev->quendu++; dev->quendu++;
if (dev->quendu >= qcnt) { if (dev->quendu >= qcnt) {
dev->quendu = 0; dev->quendu = 0;
} }
/* /*
* Check queue state * Check queue state
*/ */
if (dev->quhdu == dev->quendu) { if (dev->quhdu == dev->quendu) {
if (dev->quendu == 0) { if (dev->quendu == 0) {
...@@ -591,28 +541,20 @@ int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *)) ...@@ -591,28 +541,20 @@ int atp870u_queuecommand(Scsi_Cmnd * req_p, void (*done) (Scsi_Cmnd *))
} }
dev->quendu--; dev->quendu--;
req_p->result = 0x00020000; req_p->result = 0x00020000;
spin_unlock_irqrestore(host->host_lock, flags);
done(req_p); done(req_p);
restore_flags(flags);
return 0; return 0;
} }
dev->querequ[dev->quendu] = req_p; dev->querequ[dev->quendu] = req_p;
tmport = dev->ioport + 0x1c; tmport = dev->ioport + 0x1c;
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
if ((inb(tmport) == 0) && (dev->in_int == 0) && (dev->in_snd == 0)) { if ((inb(tmport) == 0) && (dev->in_int == 0) && (dev->in_snd == 0)) {
send_s870(h); send_s870(host);
} }
return 0; return 0;
} }
void mydlyu(unsigned int dlycnt) static void send_s870(struct Scsi_Host *host)
{
unsigned int i;
for (i = 0; i < dlycnt; i++) {
inb(0x80);
}
}
void send_s870(unsigned char h)
{ {
unsigned int tmport; unsigned int tmport;
Scsi_Cmnd *workrequ; Scsi_Cmnd *workrequ;
...@@ -621,38 +563,37 @@ void send_s870(unsigned char h) ...@@ -621,38 +563,37 @@ void send_s870(unsigned char h)
unsigned char j, target_id; unsigned char j, target_id;
unsigned char *prd; unsigned char *prd;
unsigned short int tmpcip, w; unsigned short int tmpcip, w;
unsigned long l, bttl; unsigned long l;
dma_addr_t bttl;
unsigned int workportu; unsigned int workportu;
struct scatterlist *sgpnt; struct scatterlist *sgpnt;
struct atp_unit *dev = &atp_unit[h]; struct atp_unit *dev = (struct atp_unit *)&host->hostdata;
int sg_count;
save_flags(flags); spin_lock_irqsave(host->host_lock, flags);
cli();
if (dev->in_snd != 0) { if (dev->in_snd != 0) {
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
return; return;
} }
dev->in_snd = 1; dev->in_snd = 1;
if ((dev->last_cmd != 0xff) && ((dev->last_cmd & 0x40) != 0)) { if ((dev->last_cmd != 0xff) && ((dev->last_cmd & 0x40) != 0)) {
dev->last_cmd &= 0x0f; dev->last_cmd &= 0x0f;
workrequ = dev->id[dev->last_cmd].curr_req; workrequ = dev->id[dev->last_cmd].curr_req;
if (workrequ != NULL) /* check NULL pointer */ if (workrequ != NULL) { /* check NULL pointer */
{ goto cmd_subp;
goto cmd_subp;
} }
dev->last_cmd = 0xff; dev->last_cmd = 0xff;
if (dev->quhdu == dev->quendu) if (dev->quhdu == dev->quendu) {
{ dev->in_snd = 0;
dev->in_snd = 0; spin_unlock_irqrestore(dev->host->host_lock, flags);
restore_flags(flags); return;
return ;
} }
} }
if ((dev->last_cmd != 0xff) && (dev->working != 0)) if ((dev->last_cmd != 0xff) && (dev->working != 0)) {
{ dev->in_snd = 0;
dev->in_snd = 0; spin_unlock_irqrestore(dev->host->host_lock, flags);
restore_flags(flags); return;
return ;
} }
dev->working++; dev->working++;
j = dev->quhdu; j = dev->quhdu;
...@@ -669,7 +610,7 @@ void send_s870(unsigned char h) ...@@ -669,7 +610,7 @@ void send_s870(unsigned char h)
dev->quhdu = j; dev->quhdu = j;
dev->working--; dev->working--;
dev->in_snd = 0; dev->in_snd = 0;
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
return; return;
cmd_subp: cmd_subp:
workportu = dev->ioport; workportu = dev->ioport;
...@@ -684,7 +625,7 @@ void send_s870(unsigned char h) ...@@ -684,7 +625,7 @@ void send_s870(unsigned char h)
abortsnd: abortsnd:
dev->last_cmd |= 0x40; dev->last_cmd |= 0x40;
dev->in_snd = 0; dev->in_snd = 0;
restore_flags(flags); spin_unlock_irqrestore(dev->host->host_lock, flags);
return; return;
oktosend: oktosend:
memcpy(&dev->ata_cdbu[0], &workrequ->cmnd[0], workrequ->cmd_len); memcpy(&dev->ata_cdbu[0], &workrequ->cmnd[0], workrequ->cmd_len);
...@@ -702,7 +643,7 @@ void send_s870(unsigned char h) ...@@ -702,7 +643,7 @@ void send_s870(unsigned char h)
target_id = workrequ->target; target_id = workrequ->target;
/* /*
* Wide ? * Wide ?
*/ */
w = 1; w = 1;
w = w << target_id; w = w << target_id;
...@@ -710,13 +651,12 @@ void send_s870(unsigned char h) ...@@ -710,13 +651,12 @@ void send_s870(unsigned char h)
j |= 0x01; j |= 0x01;
} }
outb(j, tmport); outb(j, tmport);
while ((inb(tmport) & 0x01) != j) while ((inb(tmport) & 0x01) != j) {
{ outb(j, tmport);
outb(j,tmport);
} }
/* /*
* Write the command * Write the command
*/ */
tmport = workportu; tmport = workportu;
...@@ -730,30 +670,30 @@ void send_s870(unsigned char h) ...@@ -730,30 +670,30 @@ void send_s870(unsigned char h)
outb(workrequ->lun, tmport); outb(workrequ->lun, tmport);
tmport += 0x02; tmport += 0x02;
/* /*
* Write the target * Write the target
*/ */
outb(dev->id[target_id].devspu, tmport++); outb(dev->id[target_id].devspu, tmport++);
/* /*
* Figure out the transfer size * Figure out the transfer size
*/ */
if (workrequ->use_sg) if (workrequ->use_sg) {
{
l = 0; l = 0;
sgpnt = (struct scatterlist *) workrequ->request_buffer; sgpnt = (struct scatterlist *) workrequ->request_buffer;
for (i = 0; i < workrequ->use_sg; i++) sg_count = pci_map_sg(dev->pdev, sgpnt, workrequ->use_sg, scsi_to_pci_dma_dir(workrequ->sc_data_direction));
{ for (i = 0; i < workrequ->use_sg; i++) {
if (sgpnt[i].length == 0 || workrequ->use_sg > ATP870U_SCATTER) if (sgpnt[i].length == 0 || workrequ->use_sg > ATP870U_SCATTER) {
{
panic("Foooooooood fight!"); panic("Foooooooood fight!");
} }
l += sgpnt[i].length; l += sgpnt[i].length;
} }
} else { } else if(workrequ->request_bufflen && workrequ->sc_data_direction != PCI_DMA_NONE) {
workrequ->SCp.dma_handle = pci_map_single(dev->pdev, workrequ->request_buffer, workrequ->request_bufflen, scsi_to_pci_dma_dir(workrequ->sc_data_direction));
l = workrequ->request_bufflen; l = workrequ->request_bufflen;
} }
else l = 0;
/* /*
* Write transfer size * Write transfer size
*/ */
outb((unsigned char) (((unsigned char *) (&l))[2]), tmport++); outb((unsigned char) (((unsigned char *) (&l))[2]), tmport++);
outb((unsigned char) (((unsigned char *) (&l))[1]), tmport++); outb((unsigned char) (((unsigned char *) (&l))[1]), tmport++);
...@@ -762,21 +702,20 @@ void send_s870(unsigned char h) ...@@ -762,21 +702,20 @@ void send_s870(unsigned char h)
dev->id[j].last_lenu = l; dev->id[j].last_lenu = l;
dev->id[j].tran_lenu = 0; dev->id[j].tran_lenu = 0;
/* /*
* Flip the wide bits * Flip the wide bits
*/ */
if ((j & 0x08) != 0) { if ((j & 0x08) != 0) {
j = (j & 0x07) | 0x40; j = (j & 0x07) | 0x40;
} }
/* /*
* Check transfer direction * Check transfer direction
*/ */
if ((dev->ata_cdbu[0] == WRITE_6) || (dev->ata_cdbu[0] == WRITE_10) || if (workrequ->sc_data_direction == SCSI_DATA_WRITE) {
(dev->ata_cdbu[0] == WRITE_12) || (dev->ata_cdbu[0] == MODE_SELECT)) {
outb((unsigned char) (j | 0x20), tmport++); outb((unsigned char) (j | 0x20), tmport++);
} else { } else {
outb(j, tmport++); outb(j, tmport++);
} }
outb((unsigned char)(inb(tmport) | 0x80),tmport); outb((unsigned char) (inb(tmport) | 0x80), tmport);
outb(0x80, tmport); outb(0x80, tmport);
tmport = workportu + 0x1c; tmport = workportu + 0x1c;
dev->id[target_id].dirctu = 0; dev->id[target_id].dirctu = 0;
...@@ -788,7 +727,7 @@ void send_s870(unsigned char h) ...@@ -788,7 +727,7 @@ void send_s870(unsigned char h)
dev->last_cmd |= 0x40; dev->last_cmd |= 0x40;
} }
dev->in_snd = 0; dev->in_snd = 0;
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
return; return;
} }
tmpcip = dev->pciport; tmpcip = dev->pciport;
...@@ -796,79 +735,75 @@ void send_s870(unsigned char h) ...@@ -796,79 +735,75 @@ void send_s870(unsigned char h)
dev->id[target_id].prd_posu = prd; dev->id[target_id].prd_posu = prd;
/* /*
* Now write the request list. Either as scatter/gather or as * Now write the request list. Either as scatter/gather or as
* a linear chain. * a linear chain.
*/ */
if (workrequ->use_sg) if (workrequ->use_sg) {
{
sgpnt = (struct scatterlist *) workrequ->request_buffer; sgpnt = (struct scatterlist *) workrequ->request_buffer;
i = 0; i = 0;
for (j = 0; j < workrequ->use_sg; j++) { for (j = 0; j < workrequ->use_sg; j++) {
(unsigned long) (((unsigned long *) (prd))[i >> 1]) = virt_to_bus(sgpnt[j].address); bttl = sg_dma_address(&sgpnt[j]);
(unsigned short int) (((unsigned short int *) (prd))[i + 2]) = sgpnt[j].length; l = sg_dma_len(&sgpnt[j]);
(unsigned short int) (((unsigned short int *) (prd))[i + 3]) = 0; while (l > 0x10000) {
(u16) (((u16 *) (prd))[i + 3]) = 0x0000;
(u16) (((u16 *) (prd))[i + 2]) = 0x0000;
(u32) (((u32 *) (prd))[i >> 1]) = cpu_to_le32(bttl);
l -= 0x10000;
bttl += 0x10000;
i += 0x04;
}
(u32) (((u32 *) (prd))[i >> 1]) = cpu_to_le32(bttl);
(u16) (((u16 *) (prd))[i + 2]) = cpu_to_le16(l);
(u16) (((u16 *) (prd))[i + 3]) = 0;
i += 0x04; i += 0x04;
} }
(unsigned short int) (((unsigned short int *) (prd))[i - 1]) = 0x8000; (u16) (((u16 *) (prd))[i - 1]) = cpu_to_le16(0x8000);
} else { } else {
/* /*
* For a linear request write a chain of blocks * For a linear request write a chain of blocks
*/ */
bttl = virt_to_bus(workrequ->request_buffer); bttl = workrequ->SCp.dma_handle;
l = workrequ->request_bufflen; l = workrequ->request_bufflen;
i = 0; i = 0;
while (l > 0x10000) { while (l > 0x10000) {
(unsigned short int) (((unsigned short int *) (prd))[i + 3]) = 0x0000; (u16) (((u16 *) (prd))[i + 3]) = 0x0000;
(unsigned short int) (((unsigned short int *) (prd))[i + 2]) = 0x0000; (u16) (((u16 *) (prd))[i + 2]) = 0x0000;
(unsigned long) (((unsigned long *) (prd))[i >> 1]) = bttl; (u32) (((u32 *) (prd))[i >> 1]) = cpu_to_le32(bttl);
l -= 0x10000; l -= 0x10000;
bttl += 0x10000; bttl += 0x10000;
i += 0x04; i += 0x04;
} }
(unsigned short int) (((unsigned short int *) (prd))[i + 3]) = 0x8000; (u16) (((u16 *) (prd))[i + 3]) = cpu_to_le16(0x8000);
(unsigned short int) (((unsigned short int *) (prd))[i + 2]) = l; (u16) (((u16 *) (prd))[i + 2]) = cpu_to_le16(l);
(unsigned long) (((unsigned long *) (prd))[i >> 1]) = bttl; (u32) (((u32 *) (prd))[i >> 1]) = cpu_to_le32(bttl);
} }
tmpcip = tmpcip + 4; tmpcip = tmpcip + 4;
dev->id[target_id].prdaddru = virt_to_bus(dev->id[target_id].prd_tableu); dev->id[target_id].prdaddru = dev->id[target_id].prd_phys;
outl(dev->id[target_id].prdaddru, tmpcip); outl(dev->id[target_id].prd_phys, tmpcip);
tmpcip = tmpcip - 2; tmpcip = tmpcip - 2;
outb(0x06, tmpcip); outb(0x06, tmpcip);
outb(0x00, tmpcip); outb(0x00, tmpcip);
tmpcip = tmpcip - 2; tmpcip = tmpcip - 2;
if (dev->deviceid != 0x8081) if (dev->deviceid != 0x8081) {
{ tmport = workportu + 0x3a;
tmport = workportu + 0x3a; if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || (dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) {
if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || outb((inb(tmport) & 0xf3) | 0x08, tmport);
(dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) } else {
{ outb(inb(tmport) & 0xf3, tmport);
outb((unsigned char)((inb(tmport) & 0xf3) | 0x08),tmport); }
} } else {
else tmport = workportu - 0x05;
{ if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) || (dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a)) {
outb((unsigned char)(inb(tmport) & 0xf3),tmport); outb((unsigned char) ((inb(tmport) & 0x3f) | 0xc0), tmport);
} } else {
} outb((unsigned char) (inb(tmport) & 0x3f), tmport);
else }
{
tmport = workportu - 0x05;
if ((dev->ata_cdbu[0] == 0x08) || (dev->ata_cdbu[0] == 0x28) ||
(dev->ata_cdbu[0] == 0x0a) || (dev->ata_cdbu[0] == 0x2a))
{
outb((unsigned char)((inb(tmport) & 0x3f) | 0xc0),tmport);
}
else
{
outb((unsigned char)(inb(tmport) & 0x3f),tmport);
}
} }
tmport = workportu + 0x1c; tmport = workportu + 0x1c;
if ((dev->ata_cdbu[0] == WRITE_6) || (dev->ata_cdbu[0] == WRITE_10) || if (workrequ->sc_data_direction == SCSI_DATA_WRITE) {
(dev->ata_cdbu[0] == WRITE_12) || (dev->ata_cdbu[0] == MODE_SELECT))
{
dev->id[target_id].dirctu = 0x20; dev->id[target_id].dirctu = 0x20;
if (inb(tmport) == 0) { if (inb(tmport) == 0) {
tmport = workportu + 0x18; tmport = workportu + 0x18;
...@@ -878,11 +813,10 @@ void send_s870(unsigned char h) ...@@ -878,11 +813,10 @@ void send_s870(unsigned char h)
dev->last_cmd |= 0x40; dev->last_cmd |= 0x40;
} }
dev->in_snd = 0; dev->in_snd = 0;
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
return; return;
} }
if (inb(tmport) == 0) if (inb(tmport) == 0) {
{
tmport = workportu + 0x18; tmport = workportu + 0x18;
outb(0x08, tmport); outb(0x08, tmport);
outb(0x09, tmpcip); outb(0x09, tmpcip);
...@@ -890,7 +824,7 @@ void send_s870(unsigned char h) ...@@ -890,7 +824,7 @@ void send_s870(unsigned char h)
dev->last_cmd |= 0x40; dev->last_cmd |= 0x40;
} }
dev->in_snd = 0; dev->in_snd = 0;
restore_flags(flags); spin_unlock_irqrestore(host->host_lock, flags);
return; return;
} }
...@@ -900,18 +834,21 @@ static void internal_done(Scsi_Cmnd * SCpnt) ...@@ -900,18 +834,21 @@ static void internal_done(Scsi_Cmnd * SCpnt)
SCpnt->SCp.Status++; SCpnt->SCp.Status++;
} }
int atp870u_command(Scsi_Cmnd * SCpnt) static int atp870u_command(Scsi_Cmnd * SCpnt)
{ {
atp870u_queuecommand(SCpnt, internal_done); atp870u_queuecommand(SCpnt, internal_done);
SCpnt->SCp.Status = 0; SCpnt->SCp.Status = 0;
while (!SCpnt->SCp.Status) while (!SCpnt->SCp.Status)
{
cpu_relax();
barrier(); barrier();
}
return SCpnt->result; return SCpnt->result;
} }
unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val) static unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val)
{ {
unsigned int tmport; unsigned int tmport;
unsigned short int i, k; unsigned short int i, k;
...@@ -927,22 +864,22 @@ unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val) ...@@ -927,22 +864,22 @@ unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val)
goto FUN_D7; goto FUN_D7;
} }
} }
*val |= 0x4000; /* assert DB6 */ *val |= 0x4000; /* assert DB6 */
outw(*val, tmport); outw(*val, tmport);
*val &= 0xdfff; /* assert DB5 */ *val &= 0xdfff; /* assert DB5 */
outw(*val, tmport); outw(*val, tmport);
FUN_D5: FUN_D5:
for (i = 0; i < 10; i++) { /* stable >= bus settle delay(400 ns) */ for (i = 0; i < 10; i++) { /* stable >= bus settle delay(400 ns) */
if ((inw(tmport) & 0x2000) != 0) { /* DB5 all release? */ if ((inw(tmport) & 0x2000) != 0) { /* DB5 all release? */
goto FUN_D5; goto FUN_D5;
} }
} }
*val |= 0x8000; /* no DB4-0, assert DB7 */ *val |= 0x8000; /* no DB4-0, assert DB7 */
*val &= 0xe0ff; *val &= 0xe0ff;
outw(*val, tmport); outw(*val, tmport);
*val &= 0xbfff; /* release DB6 */ *val &= 0xbfff; /* release DB6 */
outw(*val, tmport); outw(*val, tmport);
FUN_D6: FUN_D6:
for (i = 0; i < 10; i++) { /* stable >= bus settle delay(400 ns) */ for (i = 0; i < 10; i++) { /* stable >= bus settle delay(400 ns) */
if ((inw(tmport) & 0x4000) != 0) { /* DB6 all release? */ if ((inw(tmport) & 0x4000) != 0) { /* DB6 all release? */
goto FUN_D6; goto FUN_D6;
...@@ -952,7 +889,7 @@ unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val) ...@@ -952,7 +889,7 @@ unsigned char fun_scam(struct atp_unit *dev, unsigned short int *val)
return j; return j;
} }
void tscam(unsigned char host) static void tscam(struct Scsi_Host *host)
{ {
unsigned int tmport; unsigned int tmport;
...@@ -960,14 +897,14 @@ void tscam(unsigned char host) ...@@ -960,14 +897,14 @@ void tscam(unsigned char host)
unsigned long n; unsigned long n;
unsigned short int m, assignid_map, val; unsigned short int m, assignid_map, val;
unsigned char mbuf[33], quintet[2]; unsigned char mbuf[33], quintet[2];
struct atp_unit *dev = &atp_unit[host]; struct atp_unit *dev = (struct atp_unit *)host->hostdata;
static unsigned char g2q_tab[8] = { static unsigned char g2q_tab[8] = {
0x38, 0x31, 0x32, 0x2b, 0x34, 0x2d, 0x2e, 0x27 0x38, 0x31, 0x32, 0x2b, 0x34, 0x2d, 0x2e, 0x27
}; };
for (i = 0; i < 0x10; i++) { for (i = 0; i < 0x10; i++) {
mydlyu(0xffff); udelay(0xffff);
} }
tmport = dev->ioport + 1; tmport = dev->ioport + 1;
...@@ -1046,18 +983,18 @@ void tscam(unsigned char host) ...@@ -1046,18 +983,18 @@ void tscam(unsigned char host)
outb(0, 0x80); outb(0, 0x80);
val = 0x0080; /* bsy */ val = 0x0080; /* bsy */
tmport = dev->ioport + 0x1c; tmport = dev->ioport + 0x1c;
outw(val, tmport); outw(val, tmport);
val |= 0x0040; /* sel */ val |= 0x0040; /* sel */
outw(val, tmport); outw(val, tmport);
val |= 0x0004; /* msg */ val |= 0x0004; /* msg */
outw(val, tmport); outw(val, tmport);
inb(0x80); /* 2 deskew delay(45ns*2=90ns) */ inb(0x80); /* 2 deskew delay(45ns*2=90ns) */
val &= 0x007f; /* no bsy */ val &= 0x007f; /* no bsy */
outw(val, tmport); outw(val, tmport);
mydlyu(0xffff); /* recommanded SCAM selection response time */ udelay(0xffff); /* recommanded SCAM selection response time */
mydlyu(0xffff); udelay(0xffff);
val &= 0x00fb; /* after 1ms no msg */ val &= 0x00fb; /* after 1ms no msg */
outw(val, tmport); outw(val, tmport);
wait_nomsg: wait_nomsg:
...@@ -1065,7 +1002,7 @@ void tscam(unsigned char host) ...@@ -1065,7 +1002,7 @@ void tscam(unsigned char host)
goto wait_nomsg; goto wait_nomsg;
} }
outb(1, 0x80); outb(1, 0x80);
mydlyu(100); udelay(100);
for (n = 0; n < 0x30000; n++) { for (n = 0; n < 0x30000; n++) {
if ((inb(tmport) & 0x80) != 0) { /* bsy ? */ if ((inb(tmport) & 0x80) != 0) { /* bsy ? */
goto wait_io; goto wait_io;
...@@ -1088,7 +1025,7 @@ void tscam(unsigned char host) ...@@ -1088,7 +1025,7 @@ void tscam(unsigned char host)
outw(val, tmport); outw(val, tmport);
outb(2, 0x80); outb(2, 0x80);
TCM_SYNC: TCM_SYNC:
mydlyu(0x800); udelay(0x800);
if ((inb(tmport) & 0x80) == 0x00) { /* bsy ? */ if ((inb(tmport) & 0x80) == 0x00) { /* bsy ? */
outw(0, tmport--); outw(0, tmport--);
outb(0, tmport); outb(0, tmport);
...@@ -1106,7 +1043,7 @@ void tscam(unsigned char host) ...@@ -1106,7 +1043,7 @@ void tscam(unsigned char host)
val |= 0x3f00; val |= 0x3f00;
fun_scam(dev, &val); fun_scam(dev, &val);
outb(3, 0x80); outb(3, 0x80);
val &= 0x00ff; /* isolation */ val &= 0x00ff; /* isolation */
val |= 0x2000; val |= 0x2000;
fun_scam(dev, &val); fun_scam(dev, &val);
outb(4, 0x80); outb(4, 0x80);
...@@ -1141,10 +1078,10 @@ void tscam(unsigned char host) ...@@ -1141,10 +1078,10 @@ void tscam(unsigned char host)
printk(" \n%x %x %x %s\n ",assignid_map,mbuf[0],mbuf[1],&mbuf[2]); */ printk(" \n%x %x %x %s\n ",assignid_map,mbuf[0],mbuf[1],&mbuf[2]); */
i = 15; i = 15;
j = mbuf[0]; j = mbuf[0];
if ((j & 0x20) != 0) { /* bit5=1:ID upto 7 */ if ((j & 0x20) != 0) { /* bit5=1:ID upto 7 */
i = 7; i = 7;
} }
if ((j & 0x06) == 0) { /* IDvalid? */ if ((j & 0x06) == 0) { /* IDvalid? */
goto G2Q5; goto G2Q5;
} }
k = mbuf[1]; k = mbuf[1];
...@@ -1158,8 +1095,8 @@ void tscam(unsigned char host) ...@@ -1158,8 +1095,8 @@ void tscam(unsigned char host)
k--; k--;
goto small_id; goto small_id;
} }
G2Q5: /* srch from max acceptable ID# */ G2Q5: /* srch from max acceptable ID# */
k = i; /* max acceptable ID# */ k = i; /* max acceptable ID# */
G2Q_LP: G2Q_LP:
m = 1; m = 1;
m <<= k; m <<= k;
...@@ -1170,12 +1107,12 @@ void tscam(unsigned char host) ...@@ -1170,12 +1107,12 @@ void tscam(unsigned char host)
k--; k--;
goto G2Q_LP; goto G2Q_LP;
} }
G2Q_QUIN: /* k=binID#, */ G2Q_QUIN: /* k=binID#, */
assignid_map |= m; assignid_map |= m;
if (k < 8) { if (k < 8) {
quintet[0] = 0x38; /* 1st dft ID<8 */ quintet[0] = 0x38; /* 1st dft ID<8 */
} else { } else {
quintet[0] = 0x31; /* 1st ID>=8 */ quintet[0] = 0x31; /* 1st ID>=8 */
} }
k &= 0x07; k &= 0x07;
quintet[1] = g2q_tab[k]; quintet[1] = g2q_tab[k];
...@@ -1193,19 +1130,19 @@ void tscam(unsigned char host) ...@@ -1193,19 +1130,19 @@ void tscam(unsigned char host)
} }
void is870(unsigned long host, unsigned int wkport) void is870(struct Scsi_Host *host, unsigned int wkport)
{ {
unsigned int tmport; unsigned int tmport;
unsigned char i, j, k, rmb, n; unsigned char i, j, k, rmb, n;
unsigned short int m; unsigned short int m;
static unsigned char mbuf[512]; static unsigned char mbuf[512];
static unsigned char satn[9] = {0, 0, 0, 0, 0, 0, 0, 6, 6}; static unsigned char satn[9] = { 0, 0, 0, 0, 0, 0, 0, 6, 6 };
static unsigned char inqd[9] = {0x12, 0, 0, 0, 0x24, 0, 0, 0x24, 6}; static unsigned char inqd[9] = { 0x12, 0, 0, 0, 0x24, 0, 0, 0x24, 6 };
static unsigned char synn[6] = {0x80, 1, 3, 1, 0x19, 0x0e}; static unsigned char synn[6] = { 0x80, 1, 3, 1, 0x19, 0x0e };
static unsigned char synu[6] = {0x80, 1, 3, 1, 0x0c, 0x0e}; static unsigned char synu[6] = { 0x80, 1, 3, 1, 0x0c, 0x0e };
static unsigned char synw[6] = {0x80, 1, 3, 1, 0x0c, 0x07}; static unsigned char synw[6] = { 0x80, 1, 3, 1, 0x0c, 0x07 };
static unsigned char wide[6] = {0x80, 1, 2, 3, 1, 0}; static unsigned char wide[6] = { 0x80, 1, 2, 3, 1, 0 };
struct atp_unit *dev = &atp_unit[host]; struct atp_unit *dev = (struct atp_unit *)&host->hostdata;
sync_idu = 0; sync_idu = 0;
tmport = wkport + 0x3a; tmport = wkport + 0x3a;
...@@ -1226,11 +1163,9 @@ void is870(unsigned long host, unsigned int wkport) ...@@ -1226,11 +1163,9 @@ void is870(unsigned long host, unsigned int wkport)
} }
tmport = wkport + 0x1b; tmport = wkport + 0x1b;
if (dev->chip_veru == 4) { if (dev->chip_veru == 4) {
outb(0x01, tmport); outb(0x01, tmport);
} } else {
else outb(0x00, tmport);
{
outb(0x00, tmport);
} }
tmport = wkport + 1; tmport = wkport + 1;
outb(0x08, tmport++); outb(0x08, tmport++);
...@@ -1499,9 +1434,7 @@ void is870(unsigned long host, unsigned int wkport) ...@@ -1499,9 +1434,7 @@ void is870(unsigned long host, unsigned int wkport)
m = m << i; m = m << i;
dev->wide_idu |= m; dev->wide_idu |= m;
not_wide: not_wide:
if ((dev->id[i].devtypeu == 0x00) || (dev->id[i].devtypeu == 0x07) || if ((dev->id[i].devtypeu == 0x00) || (dev->id[i].devtypeu == 0x07) || ((dev->id[i].devtypeu == 0x05) && ((n & 0x10) != 0))) {
((dev->id[i].devtypeu == 0x05) && ((n & 0x10) != 0)))
{
goto set_sync; goto set_sync;
} }
continue; continue;
...@@ -1682,31 +1615,31 @@ void is870(unsigned long host, unsigned int wkport) ...@@ -1682,31 +1615,31 @@ void is870(unsigned long host, unsigned int wkport)
goto set_syn_ok; goto set_syn_ok;
} }
j = 0x60; j = 0x60;
set_syn_ok: set_syn_ok:
dev->id[i].devspu = (dev->id[i].devspu & 0x0f) | j; dev->id[i].devspu = (dev->id[i].devspu & 0x0f) | j;
} }
tmport = wkport + 0x3a; tmport = wkport + 0x3a;
outb((unsigned char) (inb(tmport) & 0xef), tmport); outb((unsigned char) (inb(tmport) & 0xef), tmport);
} }
void is880(unsigned long host, unsigned int wkport) static void is880(struct Scsi_Host *host, unsigned int wkport)
{ {
unsigned int tmport; unsigned int tmport;
unsigned char i, j, k, rmb, n, lvdmode; unsigned char i, j, k, rmb, n, lvdmode;
unsigned short int m; unsigned short int m;
static unsigned char mbuf[512]; static unsigned char mbuf[512];
static unsigned char satn[9] = {0, 0, 0, 0, 0, 0, 0, 6, 6}; static unsigned char satn[9] = { 0, 0, 0, 0, 0, 0, 0, 6, 6 };
static unsigned char inqd[9] = {0x12, 0, 0, 0, 0x24, 0, 0, 0x24, 6}; static unsigned char inqd[9] = { 0x12, 0, 0, 0, 0x24, 0, 0, 0x24, 6 };
static unsigned char synn[6] = {0x80, 1, 3, 1, 0x19, 0x0e}; static unsigned char synn[6] = { 0x80, 1, 3, 1, 0x19, 0x0e };
unsigned char synu[6] = {0x80, 1, 3, 1, 0x0a, 0x0e}; unsigned char synu[6] = { 0x80, 1, 3, 1, 0x0a, 0x0e };
static unsigned char synw[6] = {0x80, 1, 3, 1, 0x19, 0x0e}; static unsigned char synw[6] = { 0x80, 1, 3, 1, 0x19, 0x0e };
unsigned char synuw[6] = {0x80, 1, 3, 1, 0x0a, 0x0e}; unsigned char synuw[6] = { 0x80, 1, 3, 1, 0x0a, 0x0e };
static unsigned char wide[6] = {0x80, 1, 2, 3, 1, 0}; static unsigned char wide[6] = { 0x80, 1, 2, 3, 1, 0 };
static unsigned char u3[9] = { 0x80,1,6,4,0x09,00,0x0e,0x01,0x02 }; static unsigned char u3[9] = { 0x80, 1, 6, 4, 0x09, 00, 0x0e, 0x01, 0x02 };
struct atp_unit *dev = &atp_unit[host]; struct atp_unit *dev = (struct atp_unit *)&host->hostdata;
sync_idu = 0; sync_idu = 0;
lvdmode=inb(wkport + 0x3f) & 0x40; lvdmode = inb(wkport + 0x3f) & 0x40;
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
m = 1; m = 1;
...@@ -1842,13 +1775,12 @@ void is880(unsigned long host, unsigned int wkport) ...@@ -1842,13 +1775,12 @@ void is880(unsigned long host, unsigned int wkport)
if ((i < 8) && ((dev->global_map & 0x20) == 0)) { if ((i < 8) && ((dev->global_map & 0x20) == 0)) {
goto not_wide; goto not_wide;
} }
if (lvdmode == 0) if (lvdmode == 0) {
{ goto chg_wide;
goto chg_wide;
} }
if (dev->sp[i] != 0x04) // force u2 if (dev->sp[i] != 0x04) // force u2
{ {
goto chg_wide; goto chg_wide;
} }
tmport = wkport + 0x5b; tmport = wkport + 0x5b;
...@@ -1985,11 +1917,11 @@ void is880(unsigned long host, unsigned int wkport) ...@@ -1985,11 +1917,11 @@ void is880(unsigned long host, unsigned int wkport)
goto chg_wide; goto chg_wide;
} }
if (mbuf[3] == 0x09) { if (mbuf[3] == 0x09) {
m = 1; m = 1;
m = m << i; m = m << i;
dev->wide_idu |= m; dev->wide_idu |= m;
dev->id[i].devspu = 0xce; dev->id[i].devspu = 0xce;
continue; continue;
} }
chg_wide: chg_wide:
tmport = wkport + 0x5b; tmport = wkport + 0x5b;
...@@ -2132,30 +2064,23 @@ void is880(unsigned long host, unsigned int wkport) ...@@ -2132,30 +2064,23 @@ void is880(unsigned long host, unsigned int wkport)
m = m << i; m = m << i;
dev->wide_idu |= m; dev->wide_idu |= m;
not_wide: not_wide:
if ((dev->id[i].devtypeu == 0x00) || (dev->id[i].devtypeu == 0x07) || if ((dev->id[i].devtypeu == 0x00) || (dev->id[i].devtypeu == 0x07) || ((dev->id[i].devtypeu == 0x05) && ((n & 0x10) != 0))) {
((dev->id[i].devtypeu == 0x05) && ((n & 0x10) != 0)))
{
m = 1; m = 1;
m = m << i; m = m << i;
if ((dev->async & m) != 0) if ((dev->async & m) != 0) {
{ goto set_sync;
goto set_sync;
} }
} }
continue; continue;
set_sync: set_sync:
if (dev->sp[i] == 0x02) if (dev->sp[i] == 0x02) {
{ synu[4] = 0x0c;
synu[4]=0x0c; synuw[4] = 0x0c;
synuw[4]=0x0c; } else {
} if (dev->sp[i] >= 0x03) {
else synu[4] = 0x0a;
{ synuw[4] = 0x0a;
if (dev->sp[i] >= 0x03) }
{
synu[4]=0x0a;
synuw[4]=0x0a;
}
} }
tmport = wkport + 0x5b; tmport = wkport + 0x5b;
j = 0; j = 0;
...@@ -2320,7 +2245,7 @@ void is880(unsigned long host, unsigned int wkport) ...@@ -2320,7 +2245,7 @@ void is880(unsigned long host, unsigned int wkport)
mbuf[4] = 0x0e; mbuf[4] = 0x0e;
} }
dev->id[i].devspu = mbuf[4]; dev->id[i].devspu = mbuf[4];
if (mbuf[3] < 0x0c){ if (mbuf[3] < 0x0c) {
j = 0xb0; j = 0xb0;
goto set_syn_ok; goto set_syn_ok;
} }
...@@ -2341,101 +2266,102 @@ void is880(unsigned long host, unsigned int wkport) ...@@ -2341,101 +2266,102 @@ void is880(unsigned long host, unsigned int wkport)
goto set_syn_ok; goto set_syn_ok;
} }
j = 0x60; j = 0x60;
set_syn_ok: set_syn_ok:
dev->id[i].devspu = (dev->id[i].devspu & 0x0f) | j; dev->id[i].devspu = (dev->id[i].devspu & 0x0f) | j;
} }
} }
static void atp870u_init_tables(struct Scsi_Host *host)
{
struct atp_unit *dev = (struct atp_unit *)&host->hostdata;
int k;
for (k = 0; k < 16; k++) {
/* FIXME */
dev->id[k].prd_tableu = pci_alloc_consistent(dev->pdev, 1024, &dev->id[k].prd_phys);
dev->id[k].devspu = 0x20;
dev->id[k].devtypeu = 0;
dev->id[k].curr_req = NULL;
}
dev->active_idu = 0;
dev->wide_idu = 0;
dev->host_idu = 0x07;
dev->quhdu = 0;
dev->quendu = 0;
dev->chip_veru = 0;
dev->last_cmd = 0xff;
dev->in_snd = 0;
dev->in_int = 0;
for (k = 0; k < qcnt; k++) {
dev->querequ[k] = 0;
}
for (k = 0; k < 16; k++) {
dev->id[k].curr_req = 0;
dev->sp[k] = 0x04;
}
}
/* return non-zero on detection */ /* return non-zero on detection */
int atp870u_detect(Scsi_Host_Template * tpnt) static int atp870u_detect(Scsi_Host_Template * tpnt)
{ {
unsigned char irq, h, k, m; unsigned char irq, h, k, m;
unsigned long flags; unsigned long flags;
unsigned int base_io, error, tmport; unsigned int base_io, error, tmport;
unsigned short index = 0; struct pci_dev *pdev[MAX_ATP];
struct pci_dev *pdev[3]; unsigned char chip_ver[MAX_ATP], host_id;
unsigned char chip_ver[3], host_id; unsigned short dev_id[MAX_ATP], n;
unsigned short dev_id[3], n;
struct Scsi_Host *shpnt = NULL; struct Scsi_Host *shpnt = NULL;
int tmpcnt = 0; int card = 0;
int count = 0; int count = 0;
static unsigned short devid[9] = { static unsigned short devid[9] = {
0x8081, 0x8002, 0x8010, 0x8020, 0x8030, 0x8040, 0x8050, 0x8060, 0 0x8081, 0x8002, 0x8010, 0x8020, 0x8030, 0x8040, 0x8050, 0x8060, 0
}; };
printk(KERN_INFO "aec671x_detect: \n"); printk(KERN_INFO "aec671x_detect: \n");
if (!pci_present()) { if (!pci_present()) {
printk(KERN_INFO" NO PCI SUPPORT.\n"); printk(KERN_INFO " NO PCI SUPPORT.\n");
return count; return count;
} }
tpnt->proc_name = "atp870u"; tpnt->proc_name = "atp870u";
for (h = 0; h < 2; h++) {
struct atp_unit *dev = &atp_unit[h];
for(k=0;k<16;k++)
{
dev->id[k].prd_tableu = kmalloc(1024, GFP_KERNEL);
dev->id[k].devspu=0x20;
dev->id[k].devtypeu = 0;
dev->id[k].curr_req = NULL;
}
dev->active_idu = 0;
dev->wide_idu = 0;
dev->host_idu = 0x07;
dev->quhdu = 0;
dev->quendu = 0;
pdev[h]=NULL;
pdev[2]=NULL;
dev->chip_veru = 0;
dev->last_cmd = 0xff;
dev->in_snd = 0;
dev->in_int = 0;
for (k = 0; k < qcnt; k++) {
dev->querequ[k] = 0;
}
for (k = 0; k < 16; k++) {
dev->id[k].curr_req = 0;
dev->sp[k] = 0x04;
}
}
h = 0; h = 0;
while (devid[h] != 0) { while (devid[h] != 0)
pdev[2] = pci_find_device(0x1191, devid[h], pdev[2]); {
if (pdev[2] == NULL || pci_enable_device(pdev[2])) { struct pci_dev *dev = NULL;
h++;
index = 0; while((dev = pci_find_device(0x1191, devid[h], dev))!=NULL)
continue; {
} if(pci_enable_device(dev))
chip_ver[2] = 0; continue;
dev_id[2] = devid[h];
if(pci_set_dma_mask(dev, 0xFFFFFFFFUL))
{
printk(KERN_ERR "atp870u: 32bit DMA mask required but not available.\n");
continue;
}
chip_ver[card] = 0;
dev_id[card] = devid[h];
if (devid[h] == 0x8002) { if (devid[h] == 0x8002) {
error = pci_read_config_byte(pdev[2], 0x08, &chip_ver[2]); error = pci_read_config_byte(dev, 0x08, &chip_ver[card]);
if (chip_ver[2] < 2) { if (chip_ver[card] < 2) {
goto nxt_devfn; continue;
}
} }
if (devid[h] == 0x8010 || devid[h] == 0x8081 || devid[h] == 0x8050) {
chip_ver[card] = 0x04;
}
pdev[card] = dev;
card++;
if (card == MAX_ATP)
break;
} }
if (devid[h] == 0x8010 || devid[h] == 0x8081 || devid[h] == 0x8050)
{
chip_ver[2] = 0x04;
}
pdev[tmpcnt] = pdev[2];
chip_ver[tmpcnt] = chip_ver[2];
dev_id[tmpcnt] = dev_id[2];
tmpcnt++;
nxt_devfn:
index++;
if (index > 3) {
index = 0;
h++;
}
if(tmpcnt>1)
break;
} }
for (h = 0; h < 2; h++) { for (h = 0; h < MAX_ATP; h++) {
struct atp_unit *dev=&atp_unit[h]; struct atp_unit tmp, *dev;
if (pdev[h]==NULL) { if (pdev[h] == NULL) {
return count; return count;
} }
...@@ -2443,211 +2369,205 @@ int atp870u_detect(Scsi_Host_Template * tpnt) ...@@ -2443,211 +2369,205 @@ int atp870u_detect(Scsi_Host_Template * tpnt)
base_io = pci_resource_start(pdev[h], 0); base_io = pci_resource_start(pdev[h], 0);
irq = pdev[h]->irq; irq = pdev[h]->irq;
if (dev_id[h] != 0x8081) if (dev_id[h] != 0x8081) {
{ error = pci_read_config_byte(pdev[h], 0x49, &host_id);
error = pci_read_config_byte(pdev[h],0x49,&host_id);
base_io &= 0xfffffff8;
base_io &= 0xfffffff8;
if (check_region(base_io, 0x40) != 0) {
if (check_region(base_io,0x40) != 0) return 0;
{ }
return 0; printk(KERN_INFO " ACARD AEC-671X PCI Ultra/W SCSI-3 Host Adapter: %d IO:%x, IRQ:%d.\n", h, base_io, irq);
}
printk(KERN_INFO " ACARD AEC-671X PCI Ultra/W SCSI-3 Host Adapter: %d IO:%x, IRQ:%d.\n" tmp.ioport = base_io;
,h, base_io, irq); tmp.pciport = base_io + 0x20;
dev->ioport = base_io; tmp.deviceid = dev_id[h];
dev->pciport = base_io + 0x20; host_id &= 0x07;
dev->deviceid = dev_id[h]; tmp.host_idu = host_id;
irqnumu[h] = irq; tmp.chip_veru = chip_ver[h];
host_id &= 0x07;
dev->host_idu = host_id; tmport = base_io + 0x22;
dev->chip_veru = chip_ver[h]; tmp.scam_on = inb(tmport);
tmport += 0x0b;
tmport = base_io + 0x22; tmp.global_map = inb(tmport++);
dev->scam_on = inb(tmport); tmp.ultra_map = inw(tmport);
tmport += 0x0b; if (tmp.ultra_map == 0) {
dev->global_map = inb(tmport++); tmp.scam_on = 0x00;
dev->ultra_map = inw(tmport); tmp.global_map = 0x20;
if (dev->ultra_map == 0) { tmp.ultra_map = 0xffff;
dev->scam_on = 0x00; }
dev->global_map = 0x20; shpnt = scsi_register(tpnt, sizeof(struct atp_unit));
dev->ultra_map = 0xffff; if (shpnt == NULL)
} return count;
shpnt = scsi_register(tpnt, 4); tmp.host = shpnt;
if(shpnt==NULL) tmp.pdev = pdev[h];
return count; /* Save the atp_unit data */
memcpy(&shpnt->hostdata, &tmp, sizeof(tmp));
save_flags(flags);
cli(); atp870u_init_tables(shpnt);
if (request_irq(irq, atp870u_intr_handle, SA_SHIRQ, "atp870u", dev)) { spin_lock_irqsave(shpnt->host_lock, flags);
printk(KERN_ERR "Unable to allocate IRQ for Acard controller.\n"); if (request_irq(irq, atp870u_intr_handle, SA_SHIRQ, "atp870u", shpnt)) {
goto unregister; printk(KERN_ERR "Unable to allocate IRQ for Acard controller.\n");
} goto unregister;
}
if (chip_ver[h] > 0x07) /* check if atp876 chip */
{ /* then enable terminator */ if (chip_ver[h] > 0x07) { /* check if atp876 chip *//* then enable terminator */
tmport = base_io + 0x3e; tmport = base_io + 0x3e;
outb(0x00, tmport); outb(0x00, tmport);
} }
tmport = base_io + 0x3a; tmport = base_io + 0x3a;
k = (inb(tmport) & 0xf3) | 0x10; k = (inb(tmport) & 0xf3) | 0x10;
outb(k, tmport); outb(k, tmport);
outb((k & 0xdf), tmport); outb((k & 0xdf), tmport);
mydlyu(0x8000); udelay(0x8000);
outb(k, tmport); outb(k, tmport);
mydlyu(0x8000); udelay(0x8000);
tmport = base_io; tmport = base_io;
outb((host_id | 0x08), tmport); outb((host_id | 0x08), tmport);
tmport += 0x18; tmport += 0x18;
outb(0, tmport); outb(0, tmport);
tmport += 0x07; tmport += 0x07;
while ((inb(tmport) & 0x80) == 0); while ((inb(tmport) & 0x80) == 0);
tmport -= 0x08; tmport -= 0x08;
inb(tmport); inb(tmport);
tmport = base_io + 1; tmport = base_io + 1;
outb(8, tmport++); outb(8, tmport++);
outb(0x7f, tmport); outb(0x7f, tmport);
tmport = base_io + 0x11; tmport = base_io + 0x11;
outb(0x20, tmport); outb(0x20, tmport);
tscam(h); tscam(shpnt);
is870(h, base_io); is870(shpnt, base_io);
tmport = base_io + 0x3a; tmport = base_io + 0x3a;
outb((inb(tmport) & 0xef), tmport); outb((inb(tmport) & 0xef), tmport);
tmport++; tmport++;
outb((inb(tmport) | 0x20),tmport); outb((inb(tmport) | 0x20), tmport);
} } else {
else base_io &= 0xfffffff8;
{
base_io &= 0xfffffff8; if (check_region(base_io, 0x60) != 0) {
return 0;
if (check_region(base_io,0x60) != 0) }
{ host_id = inb(base_io + 0x39);
return 0; host_id >>= 0x04;
}
host_id = inb(base_io + 0x39); printk(KERN_INFO " ACARD AEC-67160 PCI Ultra3 LVD Host Adapter: %d IO:%x, IRQ:%d.\n", h, base_io, irq);
host_id >>= 0x04; tmp.ioport = base_io + 0x40;
tmp.pciport = base_io + 0x28;
printk(KERN_INFO " ACARD AEC-67160 PCI Ultra160 LVD/SE SCSI Adapter: %d IO:%x, IRQ:%d.\n" tmp.deviceid = dev_id[h];
,h, base_io, irq); tmp.host_idu = host_id;
dev->ioport = base_io + 0x40; tmp.chip_veru = chip_ver[h];
dev->pciport = base_io + 0x28;
dev->deviceid = dev_id[h]; tmport = base_io + 0x22;
irqnumu[h] = irq; tmp.scam_on = inb(tmport);
dev->host_idu = host_id; tmport += 0x13;
dev->chip_veru = chip_ver[h]; tmp.global_map = inb(tmport);
tmport += 0x07;
tmport = base_io + 0x22; tmp.ultra_map = inw(tmport);
dev->scam_on = inb(tmport);
tmport += 0x13; n = 0x3f09;
dev->global_map = inb(tmport);
tmport += 0x07;
dev->ultra_map = inw(tmport);
n=0x3f09;
next_fblk: next_fblk:
if (n >= 0x4000) if (n >= 0x4000) {
{ goto flash_ok;
goto flash_ok; }
} m = 0;
m=0; outw(n, base_io + 0x34);
outw(n,base_io + 0x34); n += 0x0002;
n += 0x0002; if (inb(base_io + 0x30) == 0xff) {
if (inb(base_io + 0x30) == 0xff) goto flash_ok;
{ }
goto flash_ok; tmp.sp[m++] = inb(base_io + 0x30);
} tmp.sp[m++] = inb(base_io + 0x31);
dev->sp[m++]=inb(base_io + 0x30); tmp.sp[m++] = inb(base_io + 0x32);
dev->sp[m++]=inb(base_io + 0x31); tmp.sp[m++] = inb(base_io + 0x33);
dev->sp[m++]=inb(base_io + 0x32); outw(n, base_io + 0x34);
dev->sp[m++]=inb(base_io + 0x33); n += 0x0002;
outw(n,base_io + 0x34); tmp.sp[m++] = inb(base_io + 0x30);
n += 0x0002; tmp.sp[m++] = inb(base_io + 0x31);
dev->sp[m++]=inb(base_io + 0x30); tmp.sp[m++] = inb(base_io + 0x32);
dev->sp[m++]=inb(base_io + 0x31); tmp.sp[m++] = inb(base_io + 0x33);
dev->sp[m++]=inb(base_io + 0x32); outw(n, base_io + 0x34);
dev->sp[m++]=inb(base_io + 0x33); n += 0x0002;
outw(n,base_io + 0x34); tmp.sp[m++] = inb(base_io + 0x30);
n += 0x0002; tmp.sp[m++] = inb(base_io + 0x31);
dev->sp[m++]=inb(base_io + 0x30); tmp.sp[m++] = inb(base_io + 0x32);
dev->sp[m++]=inb(base_io + 0x31); tmp.sp[m++] = inb(base_io + 0x33);
dev->sp[m++]=inb(base_io + 0x32); outw(n, base_io + 0x34);
dev->sp[m++]=inb(base_io + 0x33); n += 0x0002;
outw(n,base_io + 0x34); tmp.sp[m++] = inb(base_io + 0x30);
n += 0x0002; tmp.sp[m++] = inb(base_io + 0x31);
dev->sp[m++]=inb(base_io + 0x30); tmp.sp[m++] = inb(base_io + 0x32);
dev->sp[m++]=inb(base_io + 0x31); tmp.sp[m++] = inb(base_io + 0x33);
dev->sp[m++]=inb(base_io + 0x32); n += 0x0018;
dev->sp[m++]=inb(base_io + 0x33); goto next_fblk;
n += 0x0018;
goto next_fblk;
flash_ok: flash_ok:
outw(0,base_io + 0x34); outw(0, base_io + 0x34);
dev->ultra_map=0; tmp.ultra_map = 0;
dev->async = 0; tmp.async = 0;
for (k=0; k < 16; k++) for (k = 0; k < 16; k++) {
{ n = 1;
n=1; n = n << k;
n = n << k; if (tmp.sp[k] > 1) {
if (dev->sp[k] > 1) tmp.ultra_map |= n;
{ } else {
dev->ultra_map |= n; if (tmp.sp[k] == 0) {
} tmp.async |= n;
else }
{ }
if (dev->sp[k] == 0) }
{ tmp.async = ~(tmp.async);
dev->async |= n; outb(tmp.global_map, base_io + 0x35);
}
} shpnt = scsi_register(tpnt, sizeof(struct atp_unit));
} if (shpnt == NULL)
dev->async = ~(dev->async); return count;
outb(dev->global_map,base_io + 0x35);
tmp.pdev = pdev[h];
shpnt = scsi_register(tpnt, 4); memcpy(&shpnt->hostdata, &tmp, sizeof(tmp));
if(shpnt==NULL)
return count; atp870u_init_tables(shpnt);
save_flags(flags); spin_lock_irqsave(shpnt->host_lock, flags);
cli(); if (request_irq(irq, atp870u_intr_handle, SA_SHIRQ, "atp870u", shpnt)) {
if (request_irq(irq, atp870u_intr_handle, SA_SHIRQ, "atp870u", dev)) { printk(KERN_ERR "Unable to allocate IRQ for Acard controller.\n");
printk(KERN_ERR "Unable to allocate IRQ for Acard controller.\n"); goto unregister;
goto unregister; }
}
tmport = base_io + 0x38;
tmport = base_io + 0x38; k = inb(tmport) & 0x80;
k = inb(tmport) & 0x80; outb(k, tmport);
outb(k, tmport); tmport += 0x03;
tmport += 0x03; outb(0x20, tmport);
outb(0x20, tmport); udelay(0x8000);
mydlyu(0x8000); outb(0, tmport);
outb(0, tmport); udelay(0x8000);
mydlyu(0x8000); tmport = base_io + 0x5b;
tmport = base_io + 0x5b; inb(tmport);
inb(tmport); tmport -= 0x04;
tmport -= 0x04; inb(tmport);
inb(tmport); tmport = base_io + 0x40;
tmport = base_io + 0x40; outb((host_id | 0x08), tmport);
outb((host_id | 0x08), tmport); tmport += 0x18;
tmport += 0x18; outb(0, tmport);
outb(0, tmport); tmport += 0x07;
tmport += 0x07; while ((inb(tmport) & 0x80) == 0);
while ((inb(tmport) & 0x80) == 0); tmport -= 0x08;
tmport -= 0x08; inb(tmport);
inb(tmport); tmport = base_io + 0x41;
tmport = base_io + 0x41; outb(8, tmport++);
outb(8, tmport++); outb(0x7f, tmport);
outb(0x7f, tmport); tmport = base_io + 0x51;
tmport = base_io + 0x51; outb(0x20, tmport);
outb(0x20, tmport);
tscam(shpnt);
tscam(h); is880(shpnt, base_io);
is880(h, base_io); tmport = base_io + 0x38;
tmport = base_io + 0x38; outb(0xb0, tmport);
outb(0xb0, tmport);
} }
dev = (struct atp_unit *)&shpnt->hostdata;
atp_host[h] = shpnt; atp_host[h] = shpnt;
if (dev->chip_veru == 4) { if (dev->chip_veru == 4) {
shpnt->max_id = 16; shpnt->max_id = 16;
...@@ -2655,31 +2575,23 @@ int atp870u_detect(Scsi_Host_Template * tpnt) ...@@ -2655,31 +2575,23 @@ int atp870u_detect(Scsi_Host_Template * tpnt)
shpnt->this_id = host_id; shpnt->this_id = host_id;
shpnt->unique_id = base_io; shpnt->unique_id = base_io;
shpnt->io_port = base_io; shpnt->io_port = base_io;
if (dev_id[h] == 0x8081) if (dev_id[h] == 0x8081) {
{ shpnt->n_io_port = 0x60; /* Number of bytes of I/O space used */
shpnt->n_io_port = 0x60; /* Number of bytes of I/O space used */ } else {
} shpnt->n_io_port = 0x40; /* Number of bytes of I/O space used */
else
{
shpnt->n_io_port = 0x40; /* Number of bytes of I/O space used */
} }
shpnt->irq = irq; shpnt->irq = irq;
restore_flags(flags); restore_flags(flags);
if (dev_id[h] == 0x8081) if (dev_id[h] == 0x8081) {
{ request_region(base_io, 0x60, "atp870u"); /* Register the IO ports that we use */
request_region(base_io, 0x60, "atp870u"); /* Register the IO ports that we use */ } else {
} request_region(base_io, 0x40, "atp870u"); /* Register the IO ports that we use */
else
{
request_region(base_io, 0x40, "atp870u"); /* Register the IO ports that we use */
} }
count++; count++;
index++;
continue; continue;
unregister: unregister:
scsi_unregister(shpnt); scsi_unregister(shpnt);
restore_flags(flags); spin_unlock_irqrestore(shpnt->host_lock, flags);
index++;
continue; continue;
} }
...@@ -2692,18 +2604,11 @@ int atp870u_detect(Scsi_Host_Template * tpnt) ...@@ -2692,18 +2604,11 @@ int atp870u_detect(Scsi_Host_Template * tpnt)
int atp870u_abort(Scsi_Cmnd * SCpnt) int atp870u_abort(Scsi_Cmnd * SCpnt)
{ {
unsigned char h, j, k; unsigned char j, k;
Scsi_Cmnd *workrequ; Scsi_Cmnd *workrequ;
unsigned int tmport; unsigned int tmport;
struct atp_unit *dev; struct atp_unit *dev = (struct atp_unit *)&SCpnt->host->hostdata;
for (h = 0; h <= admaxu; h++) {
if (SCpnt->host == atp_host[h]) {
goto find_adp;
}
}
panic("Abort host not found !");
find_adp:
dev=&atp_unit[h];
printk(KERN_DEBUG "working=%x last_cmd=%x ", dev->working, dev->last_cmd); printk(KERN_DEBUG "working=%x last_cmd=%x ", dev->working, dev->last_cmd);
printk(" quhdu=%x quendu=%x ", dev->quhdu, dev->quendu); printk(" quhdu=%x quendu=%x ", dev->quhdu, dev->quendu);
tmport = dev->ioport; tmport = dev->ioport;
...@@ -2714,71 +2619,44 @@ int atp870u_abort(Scsi_Cmnd * SCpnt) ...@@ -2714,71 +2619,44 @@ int atp870u_abort(Scsi_Cmnd * SCpnt)
printk(" r1c=%2x", inb(tmport)); printk(" r1c=%2x", inb(tmport));
tmport += 0x03; tmport += 0x03;
printk(" r1f=%2x in_snd=%2x ", inb(tmport), dev->in_snd); printk(" r1f=%2x in_snd=%2x ", inb(tmport), dev->in_snd);
tmport= dev->pciport; tmport = dev->pciport;
printk(" r20=%2x", inb(tmport)); printk(" r20=%2x", inb(tmport));
tmport += 0x02; tmport += 0x02;
printk(" r22=%2x", inb(tmport)); printk(" r22=%2x", inb(tmport));
tmport = dev->ioport + 0x3a; tmport = dev->ioport + 0x3a;
printk(" r3a=%2x \n",inb(tmport)); printk(" r3a=%2x \n", inb(tmport));
tmport = dev->ioport + 0x3b; tmport = dev->ioport + 0x3b;
printk(" r3b=%2x \n",inb(tmport)); printk(" r3b=%2x \n", inb(tmport));
for(j=0;j<16;j++) for (j = 0; j < 16; j++) {
{ if (dev->id[j].curr_req != NULL) {
if (dev->id[j].curr_req != NULL) workrequ = dev->id[j].curr_req;
{ printk("\n que cdb= ");
workrequ = dev->id[j].curr_req; for (k = 0; k < workrequ->cmd_len; k++) {
printk("\n que cdb= "); printk(" %2x ", workrequ->cmnd[k]);
for (k=0; k < workrequ->cmd_len; k++) }
{ printk(" last_lenu= %lx ", dev->id[j].last_lenu);
printk(" %2x ",workrequ->cmnd[k]);
} }
printk(" last_lenu= %lx ",dev->id[j].last_lenu);
}
} }
return (SCSI_ABORT_SNOOZE); /* Sort of - the thing handles itself */
} return SUCCESS;
int atp870u_reset(Scsi_Cmnd * SCpnt, unsigned int reset_flags)
{
unsigned char h;
struct atp_unit *dev;
/*
* See if a bus reset was suggested.
*/
for (h = 0; h <= admaxu; h++) {
if (SCpnt->host == atp_host[h]) {
goto find_host;
}
}
panic("Reset bus host not found !");
find_host:
dev=&atp_unit[h];
/* SCpnt->result = 0x00080000;
SCpnt->scsi_done(SCpnt);
dev->working=0;
dev->quhdu=0;
dev->quendu=0;
return (SCSI_RESET_SUCCESS | SCSI_RESET_BUS_RESET); */
return (SCSI_RESET_SNOOZE);
} }
const char *atp870u_info(struct Scsi_Host *notused) const char *atp870u_info(struct Scsi_Host *notused)
{ {
static char buffer[128]; static char buffer[128];
strcpy(buffer, "ACARD AEC-6710/6712/67160 PCI Ultra/W/LVD SCSI-3 Adapter Driver V2.5+ac "); strcpy(buffer, "ACARD AEC-6710/6712/67160 PCI Ultra/W/LVD SCSI-3 Adapter Driver V2.6+ac ");
return buffer; return buffer;
} }
int atp870u_set_info(char *buffer, int length, struct Scsi_Host *HBAptr) int atp870u_set_info(char *buffer, int length, struct Scsi_Host *HBAptr)
{ {
return -ENOSYS; /* Currently this is a no-op */ return -ENOSYS; /* Currently this is a no-op */
} }
#define BLS buffer + len + size #define BLS buffer + len + size
int atp870u_proc_info(char *buffer, char **start, off_t offset, int length, int atp870u_proc_info(char *buffer, char **start, off_t offset, int length, int hostno, int inout)
int hostno, int inout)
{ {
struct Scsi_Host *HBAptr; struct Scsi_Host *HBAptr;
static u8 buff[512]; static u8 buff[512];
...@@ -2789,7 +2667,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length, ...@@ -2789,7 +2667,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length,
off_t pos = 0; off_t pos = 0;
HBAptr = NULL; HBAptr = NULL;
for (i = 0; i < 2; i++) { for (i = 0; i < MAX_ATP; i++) {
if ((HBAptr = atp_host[i]) != NULL) { if ((HBAptr = atp_host[i]) != NULL) {
if (HBAptr->host_no == hostno) { if (HBAptr->host_no == hostno) {
break; break;
...@@ -2811,7 +2689,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length, ...@@ -2811,7 +2689,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length,
if (offset == 0) { if (offset == 0) {
memset(buff, 0, sizeof(buff)); memset(buff, 0, sizeof(buff));
} }
size += sprintf(BLS, "ACARD AEC-671X Driver Version: 2.5+ac\n"); size += sprintf(BLS, "ACARD AEC-671X Driver Version: 2.6+ac\n");
len += size; len += size;
pos = begin + len; pos = begin + len;
size = 0; size = 0;
...@@ -2835,7 +2713,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length, ...@@ -2835,7 +2713,7 @@ int atp870u_proc_info(char *buffer, char **start, off_t offset, int length,
#include "sd.h" #include "sd.h"
int atp870u_biosparam(Scsi_Disk * disk, struct block_device *dev, int *ip) static int atp870u_biosparam(Scsi_Disk * disk, struct block_device *dev, int *ip)
{ {
int heads, sectors, cylinders; int heads, sectors, cylinders;
...@@ -2856,24 +2734,18 @@ int atp870u_biosparam(Scsi_Disk * disk, struct block_device *dev, int *ip) ...@@ -2856,24 +2734,18 @@ int atp870u_biosparam(Scsi_Disk * disk, struct block_device *dev, int *ip)
} }
int atp870u_release (struct Scsi_Host *pshost) static int atp870u_release(struct Scsi_Host *pshost)
{ {
int h; struct atp_unit *dev = (struct atp_unit *)&pshost->hostdata;
for (h = 0; h <= admaxu; h++) int k;
{ free_irq(pshost->irq, pshost);
if (pshost == atp_host[h]) { release_region(pshost->io_port, pshost->n_io_port);
int k; scsi_unregister(pshost);
free_irq (pshost->irq, &atp_unit[h]); for (k = 0; k < 16; k++)
release_region (pshost->io_port, pshost->n_io_port); pci_free_consistent(dev->pdev, 1024, dev->id[k].prd_tableu, dev->id[k].prd_phys);
scsi_unregister(pshost); return 0;
for(k=0;k<16;k++)
kfree(atp_unit[h].id[k].prd_tableu);
return 0;
}
}
panic("atp870u: bad scsi host passed.\n");
} }
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
static Scsi_Host_Template driver_template = ATP870U; static Scsi_Host_Template driver_template = ATP870U;
......
...@@ -17,14 +17,12 @@ ...@@ -17,14 +17,12 @@
#define MAX_CDB 12 #define MAX_CDB 12
#define MAX_SENSE 14 #define MAX_SENSE 14
int atp870u_detect(Scsi_Host_Template *); static int atp870u_detect(Scsi_Host_Template *);
int atp870u_command(Scsi_Cmnd *); static int atp870u_command(Scsi_Cmnd *);
int atp870u_queuecommand(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *)); static int atp870u_queuecommand(Scsi_Cmnd *, void (*done) (Scsi_Cmnd *));
int atp870u_abort(Scsi_Cmnd *); static int atp870u_abort(Scsi_Cmnd *);
int atp870u_reset(Scsi_Cmnd *, unsigned int); static int atp870u_biosparam(Disk *, struct block_device *, int *);
int atp870u_biosparam(Disk *, struct block_device *, int *); static int atp870u_release(struct Scsi_Host *);
int atp870u_release(struct Scsi_Host *);
void send_s870(unsigned char);
#define qcnt 32 #define qcnt 32
#define ATP870U_SCATTER 128 #define ATP870U_SCATTER 128
...@@ -49,12 +47,7 @@ extern int atp870u_proc_info(char *, char **, off_t, int, int, int); ...@@ -49,12 +47,7 @@ extern int atp870u_proc_info(char *, char **, off_t, int, int, int);
command: atp870u_command, \ command: atp870u_command, \
queuecommand: atp870u_queuecommand, \ queuecommand: atp870u_queuecommand, \
eh_strategy_handler: NULL, \ eh_strategy_handler: NULL, \
eh_abort_handler: NULL, \ eh_abort_handler: atp870u_abort, \
eh_device_reset_handler: NULL, \
eh_bus_reset_handler: NULL, \
eh_host_reset_handler: NULL, \
abort: atp870u_abort, \
reset: atp870u_reset, \
slave_attach: NULL, \ slave_attach: NULL, \
bios_param: atp870u_biosparam, \ bios_param: atp870u_biosparam, \
can_queue: qcnt, /* max simultaneous cmds */\ can_queue: qcnt, /* max simultaneous cmds */\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment