aha1542.c 32.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* $Id: aha1542.c,v 1.1 1992/07/24 06:27:38 root Exp root $
 *  linux/kernel/aha1542.c
 *
 *  Copyright (C) 1992  Tommy Thorn
 *  Copyright (C) 1993, 1994, 1995 Eric Youngdale
 *
 *  Modified by Eric Youngdale
 *        Use request_irq and request_dma to help prevent unexpected conflicts
 *        Set up on-board DMA controller, such that we do not have to
 *        have the bios enabled to use the aha1542.
 *  Modified by David Gentzel
 *        Don't call request_dma if dma mask is 0 (for BusLogic BT-445S VL-Bus
 *        controller).
 *  Modified by Matti Aarnio
 *        Accept parameters from LILO cmd-line. -- 1-Oct-94
 *  Modified by Mike McLagan <mike.mclagan@linux.org>
 *        Recognise extended mode on AHA1542CP, different bit than 1542CF
 *        1-Jan-97
 *  Modified by Bjorn L. Thordarson and Einar Thor Einarsson
 *        Recognize that DMA0 is valid DMA channel -- 13-Jul-98
 *  Modified by Chris Faulhaber <jedgar@fxp.org>
 *        Added module command-line options
 *        19-Jul-99
24
 *  Modified by Adam Fritzler
25
 *        Added proper detection of the AHA-1640 (MCA, now deleted)
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37
 */

#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/ioport.h>
#include <linux/delay.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/spinlock.h>
O
Ondrej Zary 已提交
38 39
#include <linux/isa.h>
#include <linux/pnp.h>
L
Linus Torvalds 已提交
40
#include <linux/blkdev.h>
41
#include <linux/slab.h>
L
Linus Torvalds 已提交
42 43 44 45 46 47 48

#include <asm/dma.h>
#include <asm/io.h>

#include "scsi.h"
#include <scsi/scsi_host.h>
#include "aha1542.h"
49
#include <linux/stat.h>
L
Linus Torvalds 已提交
50 51 52 53 54 55

#ifdef DEBUG
#define DEB(x) x
#else
#define DEB(x)
#endif
56
#define MAXBOARDS 4
L
Linus Torvalds 已提交
57

58 59 60
static bool isapnp = 1;
module_param(isapnp, bool, 0);
MODULE_PARM_DESC(isapnp, "enable PnP support (default=1)");
L
Linus Torvalds 已提交
61

62 63 64
static int io[MAXBOARDS] = { 0x330, 0x334, 0, 0 };
module_param_array(io, int, NULL, 0);
MODULE_PARM_DESC(io, "base IO address of controller (0x130,0x134,0x230,0x234,0x330,0x334, default=0x330,0x334)");
L
Linus Torvalds 已提交
65

66 67 68 69
/* time AHA spends on the AT-bus during data transfer */
static int bus_on[MAXBOARDS] = { -1, -1, -1, -1 }; /* power-on default: 11us */
module_param_array(bus_on, int, NULL, 0);
MODULE_PARM_DESC(bus_on, "bus on time [us] (2-15, default=-1 [HW default: 11])");
L
Linus Torvalds 已提交
70

71 72 73 74
/* time AHA spends off the bus (not to monopolize it) during data transfer  */
static int bus_off[MAXBOARDS] = { -1, -1, -1, -1 }; /* power-on default: 4us */
module_param_array(bus_off, int, NULL, 0);
MODULE_PARM_DESC(bus_off, "bus off time [us] (1-64, default=-1 [HW default: 4])");
L
Linus Torvalds 已提交
75

76 77 78 79
/* default is jumper selected (J1 on 1542A), factory default = 5 MB/s */
static int dma_speed[MAXBOARDS] = { -1, -1, -1, -1 };
module_param_array(dma_speed, int, NULL, 0);
MODULE_PARM_DESC(dma_speed, "DMA speed [MB/s] (5,6,7,8,10, default=-1 [by jumper])");
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

#define BIOS_TRANSLATION_6432 1	/* Default case these days */
#define BIOS_TRANSLATION_25563 2	/* Big disk case */

struct aha1542_hostdata {
	/* This will effectively start both of them at the first mailbox */
	int bios_translation;	/* Mapping bios uses - for compatibility */
	int aha1542_last_mbi_used;
	int aha1542_last_mbo_used;
	Scsi_Cmnd *SCint[AHA1542_MAILBOXES];
	struct mailbox mb[2 * AHA1542_MAILBOXES];
	struct ccb ccb[AHA1542_MAILBOXES];
};

static DEFINE_SPINLOCK(aha1542_lock);

96 97 98 99
static inline void aha1542_intr_reset(u16 base)
{
	outb(IRST, CONTROL(base));
}
L
Linus Torvalds 已提交
100

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
static inline bool wait_mask(u16 port, u8 mask, u8 allof, u8 noneof, int timeout)
{
	bool delayed = true;

	if (timeout == 0) {
		timeout = 3000000;
		delayed = false;
	}

	while (1) {
		u8 bits = inb(port) & mask;
		if ((bits & allof) == allof && ((bits & noneof) == 0))
			break;
		if (delayed)
			mdelay(1);
		if (--timeout == 0)
			return false;
	}

	return true;
}
L
Linus Torvalds 已提交
122 123 124 125 126

/* This is a bit complicated, but we need to make sure that an interrupt
   routine does not send something out while we are in the middle of this.
   Fortunately, it is only at boot time that multi-byte messages
   are ever sent. */
O
Ondrej Zary 已提交
127
static int aha1542_outb(unsigned int base, u8 val)
L
Linus Torvalds 已提交
128
{
O
Ondrej Zary 已提交
129 130 131 132 133 134
	unsigned long flags;

	while (1) {
		if (!wait_mask(STATUS(base), CDF, 0, CDF, 0)) {
			printk(KERN_ERR "aha1542_outb failed");
			return 1;
L
Linus Torvalds 已提交
135 136
		}
		spin_lock_irqsave(&aha1542_lock, flags);
O
Ondrej Zary 已提交
137 138 139
		if (inb(STATUS(base)) & CDF) {
			spin_unlock_irqrestore(&aha1542_lock, flags);
			continue;
L
Linus Torvalds 已提交
140
		}
O
Ondrej Zary 已提交
141
		outb(val, DATA(base));
L
Linus Torvalds 已提交
142
		spin_unlock_irqrestore(&aha1542_lock, flags);
O
Ondrej Zary 已提交
143
		return 0;
L
Linus Torvalds 已提交
144
	}
O
Ondrej Zary 已提交
145 146
}

O
Ondrej Zary 已提交
147
static int aha1542_out(unsigned int base, u8 *buf, int len)
O
Ondrej Zary 已提交
148 149 150 151 152 153 154 155 156 157
{
	unsigned long flags;

	spin_lock_irqsave(&aha1542_lock, flags);
	while (len--) {
		if (!wait_mask(STATUS(base), CDF, 0, CDF, 0)) {
			spin_unlock_irqrestore(&aha1542_lock, flags);
			printk(KERN_ERR "aha1542_out failed(%d): ", len + 1);
			return 1;
		}
O
Ondrej Zary 已提交
158
		outb(*buf++, DATA(base));
O
Ondrej Zary 已提交
159 160
	}
	spin_unlock_irqrestore(&aha1542_lock, flags);
161 162
	if (!wait_mask(INTRFLAGS(base), INTRMASK, HACC, 0, 0))
		return 1;
O
Ondrej Zary 已提交
163

L
Linus Torvalds 已提交
164 165 166 167 168 169
	return 0;
}

/* Only used at boot time, so we do not need to worry about latency as much
   here */

O
Ondrej Zary 已提交
170
static int aha1542_in(unsigned int base, u8 *buf, int len, int timeout)
L
Linus Torvalds 已提交
171 172 173 174 175
{
	unsigned long flags;

	spin_lock_irqsave(&aha1542_lock, flags);
	while (len--) {
O
Ondrej Zary 已提交
176 177 178 179 180 181
		if (!wait_mask(STATUS(base), DF, DF, 0, timeout)) {
			spin_unlock_irqrestore(&aha1542_lock, flags);
			if (timeout == 0)
				printk(KERN_ERR "aha1542_in failed(%d): ", len + 1);
			return 1;
		}
O
Ondrej Zary 已提交
182
		*buf++ = inb(DATA(base));
L
Linus Torvalds 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	}
	spin_unlock_irqrestore(&aha1542_lock, flags);
	return 0;
}

static int makecode(unsigned hosterr, unsigned scsierr)
{
	switch (hosterr) {
	case 0x0:
	case 0xa:		/* Linked command complete without error and linked normally */
	case 0xb:		/* Linked command complete without error, interrupt generated */
		hosterr = 0;
		break;

	case 0x11:		/* Selection time out-The initiator selection or target
				   reselection was not complete within the SCSI Time out period */
		hosterr = DID_TIME_OUT;
		break;

	case 0x12:		/* Data overrun/underrun-The target attempted to transfer more data
				   than was allocated by the Data Length field or the sum of the
				   Scatter / Gather Data Length fields. */

	case 0x13:		/* Unexpected bus free-The target dropped the SCSI BSY at an unexpected time. */

	case 0x15:		/* MBO command was not 00, 01 or 02-The first byte of the CB was
				   invalid. This usually indicates a software failure. */

	case 0x16:		/* Invalid CCB Operation Code-The first byte of the CCB was invalid.
				   This usually indicates a software failure. */

	case 0x17:		/* Linked CCB does not have the same LUN-A subsequent CCB of a set
				   of linked CCB's does not specify the same logical unit number as
				   the first. */
	case 0x18:		/* Invalid Target Direction received from Host-The direction of a
				   Target Mode CCB was invalid. */

	case 0x19:		/* Duplicate CCB Received in Target Mode-More than once CCB was
				   received to service data transfer between the same target LUN
				   and initiator SCSI ID in the same direction. */

	case 0x1a:		/* Invalid CCB or Segment List Parameter-A segment list with a zero
				   length segment or invalid segment list boundaries was received.
				   A CCB parameter was invalid. */
		DEB(printk("Aha1542: %x %x\n", hosterr, scsierr));
		hosterr = DID_ERROR;	/* Couldn't find any better */
		break;

	case 0x14:		/* Target bus phase sequence failure-An invalid bus phase or bus
				   phase sequence was requested by the target. The host adapter
				   will generate a SCSI Reset Condition, notifying the host with
				   a SCRD interrupt */
		hosterr = DID_RESET;
		break;
	default:
		printk(KERN_ERR "aha1542: makecode: unknown hoststatus %x\n", hosterr);
		break;
	}
	return scsierr | (hosterr << 16);
}

O
Ondrej Zary 已提交
244
static int aha1542_test_port(int bse, struct Scsi_Host *shpnt)
L
Linus Torvalds 已提交
245
{
O
Ondrej Zary 已提交
246
	u8 inquiry_result[4];
O
Ondrej Zary 已提交
247
	int i;
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

	/* Quick and dirty test for presence of the card. */
	if (inb(STATUS(bse)) == 0xff)
		return 0;

	/* Reset the adapter. I ought to make a hard reset, but it's not really necessary */

	/* In case some other card was probing here, reset interrupts */
	aha1542_intr_reset(bse);	/* reset interrupts, so they don't block */

	outb(SRST | IRST /*|SCRST */ , CONTROL(bse));

	mdelay(20);		/* Wait a little bit for things to settle down. */

	/* Expect INIT and IDLE, any of the others are bad */
263
	if (!wait_mask(STATUS(bse), STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF, 0))
O
Ondrej Zary 已提交
264
		return 0;
L
Linus Torvalds 已提交
265 266 267

	/* Shouldn't have generated any interrupts during reset */
	if (inb(INTRFLAGS(bse)) & INTRMASK)
O
Ondrej Zary 已提交
268
		return 0;
L
Linus Torvalds 已提交
269 270 271 272

	/* Perform a host adapter inquiry instead so we do not need to set
	   up the mailboxes ahead of time */

O
Ondrej Zary 已提交
273
	aha1542_outb(bse, CMD_INQUIRY);
L
Linus Torvalds 已提交
274

O
Ondrej Zary 已提交
275
	for (i = 0; i < 4; i++) {
276
		if (!wait_mask(STATUS(bse), DF, DF, 0, 0))
O
Ondrej Zary 已提交
277
			return 0;
O
Ondrej Zary 已提交
278
		inquiry_result[i] = inb(DATA(bse));
L
Linus Torvalds 已提交
279 280 281 282
	}

	/* Reading port should reset DF */
	if (inb(STATUS(bse)) & DF)
O
Ondrej Zary 已提交
283
		return 0;
L
Linus Torvalds 已提交
284 285

	/* When HACC, command is completed, and we're though testing */
286
	if (!wait_mask(INTRFLAGS(bse), HACC, HACC, 0, 0))
O
Ondrej Zary 已提交
287
		return 0;
L
Linus Torvalds 已提交
288 289 290 291

	/* Clear interrupts */
	outb(IRST, CONTROL(bse));

292
	return 1;
L
Linus Torvalds 已提交
293 294 295
}

/* A "high" level interrupt handler */
296
static void aha1542_intr_handle(struct Scsi_Host *shost)
L
Linus Torvalds 已提交
297
{
O
Ondrej Zary 已提交
298
	struct aha1542_hostdata *aha1542 = shost_priv(shost);
L
Linus Torvalds 已提交
299 300 301 302 303 304
	void (*my_done) (Scsi_Cmnd *) = NULL;
	int errstatus, mbi, mbo, mbistatus;
	int number_serviced;
	unsigned long flags;
	Scsi_Cmnd *SCtmp;
	int flag;
O
Ondrej Zary 已提交
305 306
	struct mailbox *mb = aha1542->mb;
	struct ccb *ccb = aha1542->ccb;
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338

#ifdef DEBUG
	{
		flag = inb(INTRFLAGS(shost->io_port));
		printk(KERN_DEBUG "aha1542_intr_handle: ");
		if (!(flag & ANYINTR))
			printk("no interrupt?");
		if (flag & MBIF)
			printk("MBIF ");
		if (flag & MBOA)
			printk("MBOF ");
		if (flag & HACC)
			printk("HACC ");
		if (flag & SCRD)
			printk("SCRD ");
		printk("status %02x\n", inb(STATUS(shost->io_port)));
	};
#endif
	number_serviced = 0;

	while (1 == 1) {
		flag = inb(INTRFLAGS(shost->io_port));

		/* Check for unusual interrupts.  If any of these happen, we should
		   probably do something special, but for now just printing a message
		   is sufficient.  A SCSI reset detected is something that we really
		   need to deal with in some way. */
		if (flag & ~MBIF) {
			if (flag & MBOA)
				printk("MBOF ");
			if (flag & HACC)
				printk("HACC ");
O
Ondrej Zary 已提交
339
			if (flag & SCRD)
L
Linus Torvalds 已提交
340 341 342 343 344
				printk("SCRD ");
		}
		aha1542_intr_reset(shost->io_port);

		spin_lock_irqsave(&aha1542_lock, flags);
O
Ondrej Zary 已提交
345
		mbi = aha1542->aha1542_last_mbi_used + 1;
L
Linus Torvalds 已提交
346 347 348 349 350 351 352 353 354
		if (mbi >= 2 * AHA1542_MAILBOXES)
			mbi = AHA1542_MAILBOXES;

		do {
			if (mb[mbi].status != 0)
				break;
			mbi++;
			if (mbi >= 2 * AHA1542_MAILBOXES)
				mbi = AHA1542_MAILBOXES;
O
Ondrej Zary 已提交
355
		} while (mbi != aha1542->aha1542_last_mbi_used);
L
Linus Torvalds 已提交
356 357 358 359

		if (mb[mbi].status == 0) {
			spin_unlock_irqrestore(&aha1542_lock, flags);
			/* Hmm, no mail.  Must have read it the last time around */
O
Ondrej Zary 已提交
360
			if (!number_serviced)
L
Linus Torvalds 已提交
361 362 363 364
				printk(KERN_WARNING "aha1542.c: interrupt received, but no mail.\n");
			return;
		};

365
		mbo = (scsi2int(mb[mbi].ccbptr) - (isa_virt_to_bus(&ccb[0]))) / sizeof(struct ccb);
L
Linus Torvalds 已提交
366 367
		mbistatus = mb[mbi].status;
		mb[mbi].status = 0;
O
Ondrej Zary 已提交
368
		aha1542->aha1542_last_mbi_used = mbi;
L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
		spin_unlock_irqrestore(&aha1542_lock, flags);

#ifdef DEBUG
		{
			if (ccb[mbo].tarstat | ccb[mbo].hastat)
				printk(KERN_DEBUG "aha1542_command: returning %x (status %d)\n",
				       ccb[mbo].tarstat + ((int) ccb[mbo].hastat << 16), mb[mbi].status);
		};
#endif

		if (mbistatus == 3)
			continue;	/* Aborted command not found */

#ifdef DEBUG
		printk(KERN_DEBUG "...done %d %d\n", mbo, mbi);
#endif

O
Ondrej Zary 已提交
386
		SCtmp = aha1542->SCint[mbo];
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394

		if (!SCtmp || !SCtmp->scsi_done) {
			printk(KERN_WARNING "aha1542_intr_handle: Unexpected interrupt\n");
			printk(KERN_WARNING "tarstat=%x, hastat=%x idlun=%x ccb#=%d \n", ccb[mbo].tarstat,
			       ccb[mbo].hastat, ccb[mbo].idlun, mbo);
			return;
		}
		my_done = SCtmp->scsi_done;
J
Jesper Juhl 已提交
395 396
		kfree(SCtmp->host_scribble);
		SCtmp->host_scribble = NULL;
L
Linus Torvalds 已提交
397 398 399 400 401
		/* Fetch the sense data, and tuck it away, in the required slot.  The
		   Adaptec automatically fetches it, and there is no guarantee that
		   we will still have it in the cdb when we come back */
		if (ccb[mbo].tarstat == 2)
			memcpy(SCtmp->sense_buffer, &ccb[mbo].cdb[ccb[mbo].cdblen],
402
			       SCSI_SENSE_BUFFERSIZE);
L
Linus Torvalds 已提交
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438


		/* is there mail :-) */

		/* more error checking left out here */
		if (mbistatus != 1)
			/* This is surely wrong, but I don't know what's right */
			errstatus = makecode(ccb[mbo].hastat, ccb[mbo].tarstat);
		else
			errstatus = 0;

#ifdef DEBUG
		if (errstatus)
			printk(KERN_DEBUG "(aha1542 error:%x %x %x) ", errstatus,
			       ccb[mbo].hastat, ccb[mbo].tarstat);
#endif

		if (ccb[mbo].tarstat == 2) {
#ifdef DEBUG
			int i;
#endif
			DEB(printk("aha1542_intr_handle: sense:"));
#ifdef DEBUG
			for (i = 0; i < 12; i++)
				printk("%02x ", ccb[mbo].cdb[ccb[mbo].cdblen + i]);
			printk("\n");
#endif
			/*
			   DEB(printk("aha1542_intr_handle: buf:"));
			   for (i = 0; i < bufflen; i++)
			   printk("%02x ", ((unchar *)buff)[i]);
			   printk("\n");
			 */
		}
		DEB(if (errstatus) printk("aha1542_intr_handle: returning %6x\n", errstatus));
		SCtmp->result = errstatus;
O
Ondrej Zary 已提交
439 440
		aha1542->SCint[mbo] = NULL;	/* This effectively frees up the mailbox slot, as
						   far as queuecommand is concerned */
L
Linus Torvalds 已提交
441 442 443 444 445
		my_done(SCtmp);
		number_serviced++;
	};
}

446 447 448 449 450 451 452 453 454 455 456 457
/* A quick wrapper for do_aha1542_intr_handle to grab the spin lock */
static irqreturn_t do_aha1542_intr_handle(int dummy, void *dev_id)
{
	unsigned long flags;
	struct Scsi_Host *shost = dev_id;

	spin_lock_irqsave(shost->host_lock, flags);
	aha1542_intr_handle(shost);
	spin_unlock_irqrestore(shost->host_lock, flags);
	return IRQ_HANDLED;
}

J
Jeff Garzik 已提交
458
static int aha1542_queuecommand_lck(Scsi_Cmnd * SCpnt, void (*done) (Scsi_Cmnd *))
L
Linus Torvalds 已提交
459
{
O
Ondrej Zary 已提交
460
	struct aha1542_hostdata *aha1542 = shost_priv(SCpnt->device->host);
O
Ondrej Zary 已提交
461 462 463
	u8 direction;
	u8 target = SCpnt->device->id;
	u8 lun = SCpnt->device->lun;
L
Linus Torvalds 已提交
464
	unsigned long flags;
465
	int bufflen = scsi_bufflen(SCpnt);
L
Linus Torvalds 已提交
466
	int mbo;
O
Ondrej Zary 已提交
467 468
	struct mailbox *mb = aha1542->mb;
	struct ccb *ccb = aha1542->ccb;
L
Linus Torvalds 已提交
469 470 471 472 473 474 475 476 477

	DEB(int i);

	DEB(if (target > 1) {
	    SCpnt->result = DID_TIME_OUT << 16;
	    done(SCpnt); return 0;
	    }
	);

O
Ondrej Zary 已提交
478
	if (*SCpnt->cmnd == REQUEST_SENSE) {
L
Linus Torvalds 已提交
479 480 481 482 483 484
		/* Don't do the command - we have the sense data already */
		SCpnt->result = 0;
		done(SCpnt);
		return 0;
	}
#ifdef DEBUG
O
Ondrej Zary 已提交
485 486 487 488
	if (*SCpnt->cmnd == READ_10 || *SCpnt->cmnd == WRITE_10)
		i = xscsi2int(SCpnt->cmnd + 2);
	else if (*SCpnt->cmnd == READ_6 || *SCpnt->cmnd == WRITE_6)
		i = scsi2int(SCpnt->cmnd + 2);
L
Linus Torvalds 已提交
489 490 491
	else
		i = -1;
	if (done)
O
Ondrej Zary 已提交
492
		printk(KERN_DEBUG "aha1542_queuecommand: dev %d cmd %02x pos %d len %d ", target, *SCpnt->cmnd, i, bufflen);
L
Linus Torvalds 已提交
493
	else
O
Ondrej Zary 已提交
494
		printk(KERN_DEBUG "aha1542_command: dev %d cmd %02x pos %d len %d ", target, *SCpnt->cmnd, i, bufflen);
L
Linus Torvalds 已提交
495 496
	printk(KERN_DEBUG "aha1542_queuecommand: dumping scsi cmd:");
	for (i = 0; i < SCpnt->cmd_len; i++)
O
Ondrej Zary 已提交
497
		printk("%02x ", SCpnt->cmnd[i]);
L
Linus Torvalds 已提交
498
	printk("\n");
O
Ondrej Zary 已提交
499
	if (*SCpnt->cmnd == WRITE_10 || *SCpnt->cmnd == WRITE_6)
L
Linus Torvalds 已提交
500 501 502 503 504 505
		return 0;	/* we are still testing, so *don't* write */
#endif
	/* Use the outgoing mailboxes in a round-robin fashion, because this
	   is how the host adapter will scan for them */

	spin_lock_irqsave(&aha1542_lock, flags);
O
Ondrej Zary 已提交
506
	mbo = aha1542->aha1542_last_mbo_used + 1;
L
Linus Torvalds 已提交
507 508 509 510
	if (mbo >= AHA1542_MAILBOXES)
		mbo = 0;

	do {
O
Ondrej Zary 已提交
511
		if (mb[mbo].status == 0 && aha1542->SCint[mbo] == NULL)
L
Linus Torvalds 已提交
512 513 514 515
			break;
		mbo++;
		if (mbo >= AHA1542_MAILBOXES)
			mbo = 0;
O
Ondrej Zary 已提交
516
	} while (mbo != aha1542->aha1542_last_mbo_used);
L
Linus Torvalds 已提交
517

O
Ondrej Zary 已提交
518
	if (mb[mbo].status || aha1542->SCint[mbo])
L
Linus Torvalds 已提交
519 520
		panic("Unable to find empty mailbox for aha1542.\n");

O
Ondrej Zary 已提交
521 522
	aha1542->SCint[mbo] = SCpnt;	/* This will effectively prevent someone else from
					   screwing with this cdb. */
L
Linus Torvalds 已提交
523

O
Ondrej Zary 已提交
524
	aha1542->aha1542_last_mbo_used = mbo;
L
Linus Torvalds 已提交
525 526 527 528 529 530
	spin_unlock_irqrestore(&aha1542_lock, flags);

#ifdef DEBUG
	printk(KERN_DEBUG "Sending command (%d %x)...", mbo, done);
#endif

531
	any2scsi(mb[mbo].ccbptr, isa_virt_to_bus(&ccb[mbo]));	/* This gets trashed for some reason */
L
Linus Torvalds 已提交
532 533 534 535 536 537

	memset(&ccb[mbo], 0, sizeof(struct ccb));

	ccb[mbo].cdblen = SCpnt->cmd_len;

	direction = 0;
O
Ondrej Zary 已提交
538
	if (*SCpnt->cmnd == READ_10 || *SCpnt->cmnd == READ_6)
L
Linus Torvalds 已提交
539
		direction = 8;
O
Ondrej Zary 已提交
540
	else if (*SCpnt->cmnd == WRITE_10 || *SCpnt->cmnd == WRITE_6)
L
Linus Torvalds 已提交
541 542
		direction = 16;

O
Ondrej Zary 已提交
543
	memcpy(ccb[mbo].cdb, SCpnt->cmnd, ccb[mbo].cdblen);
L
Linus Torvalds 已提交
544

545
	if (bufflen) {
546
		struct scatterlist *sg;
L
Linus Torvalds 已提交
547 548 549 550
		struct chain *cptr;
#ifdef DEBUG
		unsigned char *ptr;
#endif
551
		int i, sg_count = scsi_sg_count(SCpnt);
L
Linus Torvalds 已提交
552
		ccb[mbo].op = 2;	/* SCSI Initiator Command  w/scatter-gather */
553 554
		SCpnt->host_scribble = kmalloc(sizeof(*cptr)*sg_count,
		                                         GFP_KERNEL | GFP_DMA);
L
Linus Torvalds 已提交
555 556 557
		cptr = (struct chain *) SCpnt->host_scribble;
		if (cptr == NULL) {
			/* free the claimed mailbox slot */
O
Ondrej Zary 已提交
558
			aha1542->SCint[mbo] = NULL;
L
Linus Torvalds 已提交
559 560
			return SCSI_MLQUEUE_HOST_BUSY;
		}
561
		scsi_for_each_sg(SCpnt, sg, sg_count, i) {
562 563
			any2scsi(cptr[i].dataptr, isa_page_to_bus(sg_page(sg))
								+ sg->offset);
564
			any2scsi(cptr[i].datalen, sg->length);
L
Linus Torvalds 已提交
565
		};
566
		any2scsi(ccb[mbo].datalen, sg_count * sizeof(struct chain));
567
		any2scsi(ccb[mbo].dataptr, isa_virt_to_bus(cptr));
L
Linus Torvalds 已提交
568 569 570 571 572 573 574 575 576
#ifdef DEBUG
		printk("cptr %x: ", cptr);
		ptr = (unsigned char *) cptr;
		for (i = 0; i < 18; i++)
			printk("%02x ", ptr[i]);
#endif
	} else {
		ccb[mbo].op = 0;	/* SCSI Initiator Command */
		SCpnt->host_scribble = NULL;
577 578
		any2scsi(ccb[mbo].datalen, 0);
		any2scsi(ccb[mbo].dataptr, 0);
L
Linus Torvalds 已提交
579 580 581 582 583 584 585 586 587 588 589
	};
	ccb[mbo].idlun = (target & 7) << 5 | direction | (lun & 7);	/*SCSI Target Id */
	ccb[mbo].rsalen = 16;
	ccb[mbo].linkptr[0] = ccb[mbo].linkptr[1] = ccb[mbo].linkptr[2] = 0;
	ccb[mbo].commlinkid = 0;

#ifdef DEBUG
	{
		int i;
		printk(KERN_DEBUG "aha1542_command: sending.. ");
		for (i = 0; i < sizeof(ccb[mbo]) - 10; i++)
O
Ondrej Zary 已提交
590
			printk("%02x ", ((u8 *) &ccb[mbo])[i]);
L
Linus Torvalds 已提交
591 592 593 594
	};
#endif

	if (done) {
O
Ondrej Zary 已提交
595
		DEB(printk("aha1542_queuecommand: now waiting for interrupt "));
L
Linus Torvalds 已提交
596 597
		SCpnt->scsi_done = done;
		mb[mbo].status = 1;
O
Ondrej Zary 已提交
598
		aha1542_outb(SCpnt->device->host->io_port, CMD_START_SCSI);
L
Linus Torvalds 已提交
599 600 601 602 603 604
	} else
		printk("aha1542_queuecommand: done can't be NULL\n");

	return 0;
}

J
Jeff Garzik 已提交
605 606
static DEF_SCSI_QCMD(aha1542_queuecommand)

L
Linus Torvalds 已提交
607 608 609
/* Initialize mailboxes */
static void setup_mailboxes(int bse, struct Scsi_Host *shpnt)
{
O
Ondrej Zary 已提交
610
	struct aha1542_hostdata *aha1542 = shost_priv(shpnt);
L
Linus Torvalds 已提交
611
	int i;
O
Ondrej Zary 已提交
612 613
	struct mailbox *mb = aha1542->mb;
	struct ccb *ccb = aha1542->ccb;
L
Linus Torvalds 已提交
614

O
Ondrej Zary 已提交
615
	u8 mb_cmd[5] = { CMD_MBINIT, AHA1542_MAILBOXES, 0, 0, 0};
L
Linus Torvalds 已提交
616 617 618

	for (i = 0; i < AHA1542_MAILBOXES; i++) {
		mb[i].status = mb[AHA1542_MAILBOXES + i].status = 0;
619
		any2scsi(mb[i].ccbptr, isa_virt_to_bus(&ccb[i]));
L
Linus Torvalds 已提交
620 621
	};
	aha1542_intr_reset(bse);	/* reset interrupts, so they don't block */
O
Ondrej Zary 已提交
622 623
	any2scsi((mb_cmd + 2), isa_virt_to_bus(mb));
	if (aha1542_out(bse, mb_cmd, 5))
L
Linus Torvalds 已提交
624 625 626 627
		printk(KERN_ERR "aha1542_detect: failed setting up mailboxes\n");
	aha1542_intr_reset(bse);
}

O
Ondrej Zary 已提交
628
static int aha1542_getconfig(int base_io, unsigned int *irq_level, unsigned char *dma_chan, unsigned int *scsi_id)
L
Linus Torvalds 已提交
629
{
O
Ondrej Zary 已提交
630
	u8 inquiry_result[3];
L
Linus Torvalds 已提交
631 632 633 634 635
	int i;
	i = inb(STATUS(base_io));
	if (i & DF) {
		i = inb(DATA(base_io));
	};
O
Ondrej Zary 已提交
636
	aha1542_outb(base_io, CMD_RETCONF);
637
	aha1542_in(base_io, inquiry_result, 3, 0);
638
	if (!wait_mask(INTRFLAGS(base_io), INTRMASK, HACC, 0, 0))
L
Linus Torvalds 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
		printk(KERN_ERR "aha1542_detect: query board settings\n");
	aha1542_intr_reset(base_io);
	switch (inquiry_result[0]) {
	case 0x80:
		*dma_chan = 7;
		break;
	case 0x40:
		*dma_chan = 6;
		break;
	case 0x20:
		*dma_chan = 5;
		break;
	case 0x01:
		*dma_chan = 0;
		break;
	case 0:
		/* This means that the adapter, although Adaptec 1542 compatible, doesn't use a DMA channel.
		   Currently only aware of the BusLogic BT-445S VL-Bus adapter which needs this. */
		*dma_chan = 0xFF;
		break;
	default:
		printk(KERN_ERR "Unable to determine Adaptec DMA priority.  Disabling board\n");
		return -1;
	};
	switch (inquiry_result[1]) {
	case 0x40:
		*irq_level = 15;
		break;
	case 0x20:
		*irq_level = 14;
		break;
	case 0x8:
		*irq_level = 12;
		break;
	case 0x4:
		*irq_level = 11;
		break;
	case 0x2:
		*irq_level = 10;
		break;
	case 0x1:
		*irq_level = 9;
		break;
	default:
		printk(KERN_ERR "Unable to determine Adaptec IRQ level.  Disabling board\n");
		return -1;
	};
	*scsi_id = inquiry_result[2] & 7;
	return 0;
}

/* This function should only be called for 1542C boards - we can detect
   the special firmware settings and unlock the board */

O
Ondrej Zary 已提交
693
static int aha1542_mbenable(int base)
L
Linus Torvalds 已提交
694
{
O
Ondrej Zary 已提交
695 696
	static u8 mbenable_cmd[3];
	static u8 mbenable_result[2];
L
Linus Torvalds 已提交
697 698 699 700
	int retval;

	retval = BIOS_TRANSLATION_6432;

O
Ondrej Zary 已提交
701
	aha1542_outb(base, CMD_EXTBIOS);
702
	if (aha1542_in(base, mbenable_result, 2, 100))
L
Linus Torvalds 已提交
703
		return retval;
704 705
	if (!wait_mask(INTRFLAGS(base), INTRMASK, HACC, 0, 100))
		goto fail;
L
Linus Torvalds 已提交
706 707 708 709 710 711 712 713 714 715
	aha1542_intr_reset(base);

	if ((mbenable_result[0] & 0x08) || mbenable_result[1]) {
		mbenable_cmd[0] = CMD_MBENABLE;
		mbenable_cmd[1] = 0;
		mbenable_cmd[2] = mbenable_result[1];

		if ((mbenable_result[0] & 0x08) && (mbenable_result[1] & 0x03))
			retval = BIOS_TRANSLATION_25563;

716
		if (aha1542_out(base, mbenable_cmd, 3))
717
			goto fail;
L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725 726 727
	};
	while (0) {
fail:
		printk(KERN_ERR "aha1542_mbenable: Mailbox init failed\n");
	}
	aha1542_intr_reset(base);
	return retval;
}

/* Query the board to find out if it is a 1542 or a 1740, or whatever. */
O
Ondrej Zary 已提交
728
static int aha1542_query(int base_io, int *transl)
L
Linus Torvalds 已提交
729
{
O
Ondrej Zary 已提交
730
	u8 inquiry_result[4];
L
Linus Torvalds 已提交
731 732 733 734 735
	int i;
	i = inb(STATUS(base_io));
	if (i & DF) {
		i = inb(DATA(base_io));
	};
O
Ondrej Zary 已提交
736
	aha1542_outb(base_io, CMD_INQUIRY);
737
	aha1542_in(base_io, inquiry_result, 4, 0);
738
	if (!wait_mask(INTRFLAGS(base_io), INTRMASK, HACC, 0, 0))
L
Linus Torvalds 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
		printk(KERN_ERR "aha1542_detect: query card type\n");
	aha1542_intr_reset(base_io);

	*transl = BIOS_TRANSLATION_6432;	/* Default case */

	/* For an AHA1740 series board, we ignore the board since there is a
	   hardware bug which can lead to wrong blocks being returned if the board
	   is operating in the 1542 emulation mode.  Since there is an extended mode
	   driver, we simply ignore the board and let the 1740 driver pick it up.
	 */

	if (inquiry_result[0] == 0x43) {
		printk(KERN_INFO "aha1542.c: Emulation mode not supported for AHA 174N hardware.\n");
		return 1;
	};

	/* Always call this - boards that do not support extended bios translation
	   will ignore the command, and we will set the proper default */

	*transl = aha1542_mbenable(base_io);

	return 0;
}

763
static u8 dma_speed_hw(int dma_speed)
L
Linus Torvalds 已提交
764
{
765 766 767 768 769 770 771 772 773 774 775
	switch (dma_speed) {
	case 5:
		return 0x00;
	case 6:
		return 0x04;
	case 7:
		return 0x01;
	case 8:
		return 0x02;
	case 10:
		return 0x03;
L
Linus Torvalds 已提交
776 777
	}

778
	return 0xff;	/* invalid */
L
Linus Torvalds 已提交
779 780
}

781 782
/* Set the Bus on/off-times as not to ruin floppy performance */
static void aha1542_set_bus_times(int indx)
L
Linus Torvalds 已提交
783
{
784
	unsigned int base_io = io[indx];
L
Linus Torvalds 已提交
785

786 787
	if (bus_on[indx] > 0) {
		u8 oncmd[] = { CMD_BUSON_TIME, clamp(bus_on[indx], 2, 15) };
L
Linus Torvalds 已提交
788

789 790 791 792
		aha1542_intr_reset(base_io);
		if (aha1542_out(base_io, oncmd, 2))
			goto fail;
	}
L
Linus Torvalds 已提交
793

794 795
	if (bus_off[indx] > 0) {
		u8 offcmd[] = { CMD_BUSOFF_TIME, clamp(bus_off[indx], 1, 64) };
L
Linus Torvalds 已提交
796

797 798 799 800
		aha1542_intr_reset(base_io);
		if (aha1542_out(base_io, offcmd, 2))
			goto fail;
	}
L
Linus Torvalds 已提交
801

802 803
	if (dma_speed_hw(dma_speed[indx]) != 0xff) {
		u8 dmacmd[] = { CMD_DMASPEED, dma_speed_hw(dma_speed[indx]) };
804 805

		aha1542_intr_reset(base_io);
806
		if (aha1542_out(base_io, dmacmd, 2))
807 808 809 810 811 812 813 814 815
			goto fail;
	}
	aha1542_intr_reset(base_io);
	return;
fail:
	printk(KERN_ERR "setting bus on/off-time failed\n");
	aha1542_intr_reset(base_io);
}

L
Linus Torvalds 已提交
816
/* return non-zero on detection */
O
Ondrej Zary 已提交
817
static struct Scsi_Host *aha1542_hw_init(struct scsi_host_template *tpnt, struct device *pdev, int indx)
L
Linus Torvalds 已提交
818
{
819
	unsigned int base_io = io[indx];
O
Ondrej Zary 已提交
820
	struct Scsi_Host *shpnt;
O
Ondrej Zary 已提交
821
	struct aha1542_hostdata *aha1542;
L
Linus Torvalds 已提交
822

O
Ondrej Zary 已提交
823 824
	if (base_io == 0)
		return NULL;
L
Linus Torvalds 已提交
825

O
Ondrej Zary 已提交
826 827
	if (!request_region(base_io, AHA1542_REGION_SIZE, "aha1542"))
		return NULL;
L
Linus Torvalds 已提交
828

O
Ondrej Zary 已提交
829 830 831 832
	shpnt = scsi_host_alloc(tpnt, sizeof(struct aha1542_hostdata));
	if (!shpnt)
		goto release;
	aha1542 = shost_priv(shpnt);
833

O
Ondrej Zary 已提交
834 835
	if (!aha1542_test_port(base_io, shpnt))
		goto unregister;
L
Linus Torvalds 已提交
836

O
Ondrej Zary 已提交
837 838 839 840 841
	aha1542_set_bus_times(indx);
	if (aha1542_query(base_io, &aha1542->bios_translation))
		goto unregister;
	if (aha1542_getconfig(base_io, &shpnt->irq, &shpnt->dma_channel, &shpnt->this_id) == -1)
		goto unregister;
L
Linus Torvalds 已提交
842

O
Ondrej Zary 已提交
843 844 845 846 847 848
	printk(KERN_INFO "Adaptec AHA-1542 (SCSI-ID %d) at IO 0x%x, IRQ %d", shpnt->this_id, base_io, shpnt->irq);
	if (shpnt->dma_channel != 0xFF)
		printk(", DMA %d", shpnt->dma_channel);
	printk("\n");
	if (aha1542->bios_translation == BIOS_TRANSLATION_25563)
		printk(KERN_INFO "aha1542.c: Using extended bios translation\n");
L
Linus Torvalds 已提交
849

O
Ondrej Zary 已提交
850
	setup_mailboxes(base_io, shpnt);
L
Linus Torvalds 已提交
851

O
Ondrej Zary 已提交
852
	if (request_irq(shpnt->irq, do_aha1542_intr_handle, 0,
853
					"aha1542", shpnt)) {
O
Ondrej Zary 已提交
854 855 856 857 858 859 860 861 862 863 864 865 866
		printk(KERN_ERR "Unable to allocate IRQ for adaptec controller.\n");
		goto unregister;
	}
	if (shpnt->dma_channel != 0xFF) {
		if (request_dma(shpnt->dma_channel, "aha1542")) {
			printk(KERN_ERR "Unable to allocate DMA channel for Adaptec.\n");
			goto free_irq;
		}
		if (shpnt->dma_channel == 0 || shpnt->dma_channel >= 5) {
			set_dma_mode(shpnt->dma_channel, DMA_MODE_CASCADE);
			enable_dma(shpnt->dma_channel);
		}
	}
L
Linus Torvalds 已提交
867

O
Ondrej Zary 已提交
868 869 870 871 872
	shpnt->unique_id = base_io;
	shpnt->io_port = base_io;
	shpnt->n_io_port = AHA1542_REGION_SIZE;
	aha1542->aha1542_last_mbi_used = 2 * AHA1542_MAILBOXES - 1;
	aha1542->aha1542_last_mbo_used = AHA1542_MAILBOXES - 1;
L
Linus Torvalds 已提交
873

O
Ondrej Zary 已提交
874 875
	if (scsi_add_host(shpnt, pdev))
		goto free_dma;
L
Linus Torvalds 已提交
876

O
Ondrej Zary 已提交
877
	scsi_scan_host(shpnt);
L
Linus Torvalds 已提交
878

O
Ondrej Zary 已提交
879 880 881 882 883 884 885 886 887 888
	return shpnt;
free_dma:
	if (shpnt->dma_channel != 0xff)
		free_dma(shpnt->dma_channel);
free_irq:
	free_irq(shpnt->irq, shpnt);
unregister:
	scsi_host_put(shpnt);
release:
	release_region(base_io, AHA1542_REGION_SIZE);
L
Linus Torvalds 已提交
889

O
Ondrej Zary 已提交
890
	return NULL;
L
Linus Torvalds 已提交
891 892 893 894
}

static int aha1542_release(struct Scsi_Host *shost)
{
O
Ondrej Zary 已提交
895
	scsi_remove_host(shost);
L
Linus Torvalds 已提交
896 897
	if (shost->dma_channel != 0xff)
		free_dma(shost->dma_channel);
O
Ondrej Zary 已提交
898 899
	if (shost->irq)
		free_irq(shost->irq, shost);
L
Linus Torvalds 已提交
900 901
	if (shost->io_port && shost->n_io_port)
		release_region(shost->io_port, shost->n_io_port);
O
Ondrej Zary 已提交
902
	scsi_host_put(shost);
L
Linus Torvalds 已提交
903 904 905 906 907 908 909 910 911 912
	return 0;
}


/*
 * This is a device reset.  This is handled by sending a special command
 * to the device.
 */
static int aha1542_dev_reset(Scsi_Cmnd * SCpnt)
{
O
Ondrej Zary 已提交
913
	struct aha1542_hostdata *aha1542 = shost_priv(SCpnt->device->host);
L
Linus Torvalds 已提交
914
	unsigned long flags;
O
Ondrej Zary 已提交
915
	struct mailbox *mb = aha1542->mb;
O
Ondrej Zary 已提交
916 917
	u8 target = SCpnt->device->id;
	u8 lun = SCpnt->device->lun;
L
Linus Torvalds 已提交
918
	int mbo;
O
Ondrej Zary 已提交
919
	struct ccb *ccb = aha1542->ccb;
L
Linus Torvalds 已提交
920 921

	spin_lock_irqsave(&aha1542_lock, flags);
O
Ondrej Zary 已提交
922
	mbo = aha1542->aha1542_last_mbo_used + 1;
L
Linus Torvalds 已提交
923 924 925 926
	if (mbo >= AHA1542_MAILBOXES)
		mbo = 0;

	do {
O
Ondrej Zary 已提交
927
		if (mb[mbo].status == 0 && aha1542->SCint[mbo] == NULL)
L
Linus Torvalds 已提交
928 929 930 931
			break;
		mbo++;
		if (mbo >= AHA1542_MAILBOXES)
			mbo = 0;
O
Ondrej Zary 已提交
932
	} while (mbo != aha1542->aha1542_last_mbo_used);
L
Linus Torvalds 已提交
933

O
Ondrej Zary 已提交
934
	if (mb[mbo].status || aha1542->SCint[mbo])
L
Linus Torvalds 已提交
935 936
		panic("Unable to find empty mailbox for aha1542.\n");

O
Ondrej Zary 已提交
937 938 939
	aha1542->SCint[mbo] = SCpnt;	/* This will effectively
					   prevent someone else from
					   screwing with this cdb. */
L
Linus Torvalds 已提交
940

O
Ondrej Zary 已提交
941
	aha1542->aha1542_last_mbo_used = mbo;
L
Linus Torvalds 已提交
942 943
	spin_unlock_irqrestore(&aha1542_lock, flags);

944
	any2scsi(mb[mbo].ccbptr, isa_virt_to_bus(&ccb[mbo]));	/* This gets trashed for some reason */
L
Linus Torvalds 已提交
945 946 947 948 949 950 951 952 953 954 955 956 957 958

	memset(&ccb[mbo], 0, sizeof(struct ccb));

	ccb[mbo].op = 0x81;	/* BUS DEVICE RESET */

	ccb[mbo].idlun = (target & 7) << 5 | (lun & 7);		/*SCSI Target Id */

	ccb[mbo].linkptr[0] = ccb[mbo].linkptr[1] = ccb[mbo].linkptr[2] = 0;
	ccb[mbo].commlinkid = 0;

	/* 
	 * Now tell the 1542 to flush all pending commands for this 
	 * target 
	 */
O
Ondrej Zary 已提交
959
	aha1542_outb(SCpnt->device->host->io_port, CMD_START_SCSI);
L
Linus Torvalds 已提交
960

J
Jeff Garzik 已提交
961 962
	scmd_printk(KERN_WARNING, SCpnt,
		"Trying device reset for target\n");
L
Linus Torvalds 已提交
963 964 965 966

	return SUCCESS;
}

967
static int aha1542_reset(Scsi_Cmnd *SCpnt, u8 reset_cmd)
L
Linus Torvalds 已提交
968
{
O
Ondrej Zary 已提交
969
	struct aha1542_hostdata *aha1542 = shost_priv(SCpnt->device->host);
L
Linus Torvalds 已提交
970 971 972 973 974 975 976 977
	int i;

	/* 
	 * This does a scsi reset for all devices on the bus.
	 * In principle, we could also reset the 1542 - should
	 * we do this?  Try this first, and we can add that later
	 * if it turns out to be useful.
	 */
978
	outb(reset_cmd, CONTROL(SCpnt->device->host->io_port));
L
Linus Torvalds 已提交
979 980 981 982 983 984 985 986 987 988 989

	/*
	 * Wait for the thing to settle down a bit.  Unfortunately
	 * this is going to basically lock up the machine while we
	 * wait for this to complete.  To be 100% correct, we need to
	 * check for timeout, and if we are doing something like this
	 * we are pretty desperate anyways.
	 */
	ssleep(4);
	spin_lock_irq(SCpnt->device->host->host_lock);

990
	if (!wait_mask(STATUS(SCpnt->device->host->io_port),
O
Ondrej Zary 已提交
991 992 993 994
	     STATMASK, INIT | IDLE, STST | DIAGF | INVDCMD | DF | CDF, 0)) {
		spin_unlock_irq(SCpnt->device->host->host_lock);
		return FAILED;
	}
995 996 997 998 999 1000
	/*
	 * We need to do this too before the 1542 can interact with
	 * us again after host reset.
	 */
	if (reset_cmd & HRST)
		setup_mailboxes(SCpnt->device->host->io_port, SCpnt->device->host);
L
Linus Torvalds 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009
	/*
	 * Now try to pick up the pieces.  For all pending commands,
	 * free any internal data structures, and basically clear things
	 * out.  We do not try and restart any commands or anything - 
	 * the strategy handler takes care of that crap.
	 */
	printk(KERN_WARNING "Sent BUS RESET to scsi host %d\n", SCpnt->device->host->host_no);

	for (i = 0; i < AHA1542_MAILBOXES; i++) {
O
Ondrej Zary 已提交
1010
		if (aha1542->SCint[i] != NULL) {
L
Linus Torvalds 已提交
1011
			Scsi_Cmnd *SCtmp;
O
Ondrej Zary 已提交
1012
			SCtmp = aha1542->SCint[i];
L
Linus Torvalds 已提交
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022

			if (SCtmp->device->soft_reset) {
				/*
				 * If this device implements the soft reset option,
				 * then it is still holding onto the command, and
				 * may yet complete it.  In this case, we don't
				 * flush the data.
				 */
				continue;
			}
J
Jesper Juhl 已提交
1023 1024
			kfree(SCtmp->host_scribble);
			SCtmp->host_scribble = NULL;
O
Ondrej Zary 已提交
1025 1026
			aha1542->SCint[i] = NULL;
			aha1542->mb[i].status = 0;
L
Linus Torvalds 已提交
1027 1028 1029
		}
	}

1030
	spin_unlock_irq(SCpnt->device->host->host_lock);
L
Linus Torvalds 已提交
1031 1032 1033
	return SUCCESS;
}

1034
static int aha1542_bus_reset(Scsi_Cmnd *SCpnt)
L
Linus Torvalds 已提交
1035
{
1036 1037
	return aha1542_reset(SCpnt, SCRST);
}
L
Linus Torvalds 已提交
1038

1039 1040 1041
static int aha1542_host_reset(Scsi_Cmnd *SCpnt)
{
	return aha1542_reset(SCpnt, HRST | SCRST);
L
Linus Torvalds 已提交
1042 1043 1044
}

static int aha1542_biosparam(struct scsi_device *sdev,
1045
		struct block_device *bdev, sector_t capacity, int geom[])
L
Linus Torvalds 已提交
1046
{
O
Ondrej Zary 已提交
1047
	struct aha1542_hostdata *aha1542 = shost_priv(sdev->host);
L
Linus Torvalds 已提交
1048

1049 1050
	if (capacity >= 0x200000 &&
			aha1542->bios_translation == BIOS_TRANSLATION_25563) {
L
Linus Torvalds 已提交
1051
		/* Please verify that this is the same as what DOS returns */
1052 1053
		geom[0] = 255;	/* heads */
		geom[1] = 63;	/* sectors */
L
Linus Torvalds 已提交
1054
	} else {
1055 1056
		geom[0] = 64;	/* heads */
		geom[1] = 32;	/* sectors */
L
Linus Torvalds 已提交
1057
	}
1058
	geom[2] = sector_div(capacity, geom[0] * geom[1]);	/* cylinders */
L
Linus Torvalds 已提交
1059 1060 1061 1062 1063

	return 0;
}
MODULE_LICENSE("GPL");

1064
static struct scsi_host_template driver_template = {
O
Ondrej Zary 已提交
1065
	.module			= THIS_MODULE,
L
Linus Torvalds 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074
	.proc_name		= "aha1542",
	.name			= "Adaptec 1542",
	.queuecommand		= aha1542_queuecommand,
	.eh_device_reset_handler= aha1542_dev_reset,
	.eh_bus_reset_handler	= aha1542_bus_reset,
	.eh_host_reset_handler	= aha1542_host_reset,
	.bios_param		= aha1542_biosparam,
	.can_queue		= AHA1542_MAILBOXES, 
	.this_id		= 7,
1075 1076
	.sg_tablesize		= 16,
	.cmd_per_lun		= 1,
L
Linus Torvalds 已提交
1077 1078 1079
	.unchecked_isa_dma	= 1, 
	.use_clustering		= ENABLE_CLUSTERING,
};
O
Ondrej Zary 已提交
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120

static int aha1542_isa_match(struct device *pdev, unsigned int ndev)
{
	struct Scsi_Host *sh = aha1542_hw_init(&driver_template, pdev, ndev);

	if (!sh)
		return 0;

	dev_set_drvdata(pdev, sh);
	return 1;
}

static int aha1542_isa_remove(struct device *pdev,
				    unsigned int ndev)
{
	aha1542_release(dev_get_drvdata(pdev));
	dev_set_drvdata(pdev, NULL);
	return 0;
}

static struct isa_driver aha1542_isa_driver = {
	.match		= aha1542_isa_match,
	.remove		= aha1542_isa_remove,
	.driver		= {
		.name	= "aha1542"
	},
};
static int isa_registered;

#ifdef CONFIG_PNP
static struct pnp_device_id aha1542_pnp_ids[] = {
	{ .id = "ADP1542" },
	{ .id = "" }
};
MODULE_DEVICE_TABLE(pnp, aha1542_pnp_ids);

static int aha1542_pnp_probe(struct pnp_dev *pdev, const struct pnp_device_id *id)
{
	int indx;
	struct Scsi_Host *sh;

1121 1122
	for (indx = 0; indx < ARRAY_SIZE(io); indx++) {
		if (io[indx])
O
Ondrej Zary 已提交
1123 1124 1125 1126 1127
			continue;

		if (pnp_activate_dev(pdev) < 0)
			continue;

1128
		io[indx] = pnp_port_start(pdev, 0);
O
Ondrej Zary 已提交
1129 1130 1131 1132

		/* The card can be queried for its DMA, we have
		   the DMA set up that is enough */

1133
		printk(KERN_INFO "ISAPnP found an AHA1535 at I/O 0x%03X\n", io[indx]);
O
Ondrej Zary 已提交
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
	}

	sh = aha1542_hw_init(&driver_template, &pdev->dev, indx);
	if (!sh)
		return -ENODEV;

	pnp_set_drvdata(pdev, sh);
	return 0;
}

static void aha1542_pnp_remove(struct pnp_dev *pdev)
{
	aha1542_release(pnp_get_drvdata(pdev));
	pnp_set_drvdata(pdev, NULL);
}

static struct pnp_driver aha1542_pnp_driver = {
	.name		= "aha1542",
	.id_table	= aha1542_pnp_ids,
	.probe		= aha1542_pnp_probe,
	.remove		= aha1542_pnp_remove,
};
static int pnp_registered;
#endif /* CONFIG_PNP */

static int __init aha1542_init(void)
{
	int ret = 0;

#ifdef CONFIG_PNP
	if (isapnp) {
		ret = pnp_register_driver(&aha1542_pnp_driver);
		if (!ret)
			pnp_registered = 1;
	}
#endif
	ret = isa_register_driver(&aha1542_isa_driver, MAXBOARDS);
	if (!ret)
		isa_registered = 1;

#ifdef CONFIG_PNP
	if (pnp_registered)
		ret = 0;
#endif
	if (isa_registered)
		ret = 0;

	return ret;
}

static void __exit aha1542_exit(void)
{
#ifdef CONFIG_PNP
	if (pnp_registered)
		pnp_unregister_driver(&aha1542_pnp_driver);
#endif
	if (isa_registered)
		isa_unregister_driver(&aha1542_isa_driver);
}

module_init(aha1542_init);
module_exit(aha1542_exit);