sun3_scsi.c 14.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
 *
 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
 *
6 7 8 9
 * VME support added by Sam Creasey
 *
 * TODO: modify this driver to support multiple Sun3 SCSI VME boards
 *
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
 * Adapted from mac_scsinew.c:
 */
/*
 * Generic Macintosh NCR5380 driver
 *
 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
 *
 * derived in part from:
 */
/*
 * Generic Generic NCR5380 driver
 *
 * Copyright 1995, Russell King
 */

#include <linux/types.h>
#include <linux/stddef.h>
#include <linux/ctype.h>
#include <linux/delay.h>

#include <linux/module.h>
#include <linux/signal.h>
#include <linux/ioport.h>
#include <linux/init.h>
#include <linux/blkdev.h>

#include <asm/io.h>

#include <asm/sun3ints.h>
#include <asm/dvma.h>
#include <asm/idprom.h>
#include <asm/machines.h>

/* dma on! */
#define REAL_DMA

#include <scsi/scsi_host.h>
#include "sun3_scsi.h"
48
#include "NCR5380.h"
L
Linus Torvalds 已提交
49

50
extern int sun3_map_test(unsigned long, char *);
L
Linus Torvalds 已提交
51 52 53 54

/*#define RESET_BOOT */
/* #define SUPPORT_TAGS */

55 56 57
#ifdef SUN3_SCSI_VME
#define ENABLE_IRQ()
#else
L
Linus Torvalds 已提交
58
#define	ENABLE_IRQ()	enable_irq( IRQ_SUN3_SCSI ); 
59
#endif
L
Linus Torvalds 已提交
60 61


62
static irqreturn_t scsi_sun3_intr(int irq, void *dummy);
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76

static int setup_can_queue = -1;
module_param(setup_can_queue, int, 0);
static int setup_cmd_per_lun = -1;
module_param(setup_cmd_per_lun, int, 0);
static int setup_sg_tablesize = -1;
module_param(setup_sg_tablesize, int, 0);
#ifdef SUPPORT_TAGS
static int setup_use_tagged_queuing = -1;
module_param(setup_use_tagged_queuing, int, 0);
#endif
static int setup_hostid = -1;
module_param(setup_hostid, int, 0);

H
Henne 已提交
77
static struct scsi_cmnd *sun3_dma_setup_done = NULL;
L
Linus Torvalds 已提交
78

79 80
#define	RESET_RUN_DONE

L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93
#define	AFTER_RESET_DELAY	(HZ/2)

/* ms to wait after hitting dma regs */
#define SUN3_DMA_DELAY 10

/* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
#define SUN3_DVMA_BUFSIZE 0xe000

/* minimum number of bytes to do dma on */
#define SUN3_DMA_MINSIZE 128

static volatile unsigned char *sun3_scsi_regp;
static volatile struct sun3_dma_regs *dregs;
94
#ifndef SUN3_SCSI_VME
L
Linus Torvalds 已提交
95
static struct sun3_udc_regs *udc_regs = NULL;
96
#endif
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
static unsigned char *sun3_dma_orig_addr = NULL;
static unsigned long sun3_dma_orig_count = 0;
static int sun3_dma_active = 0;
static unsigned long last_residual = 0;

/*
 * NCR 5380 register access functions
 */

static inline unsigned char sun3scsi_read(int reg)
{
	return( sun3_scsi_regp[reg] );
}

static inline void sun3scsi_write(int reg, int value)
{
	sun3_scsi_regp[reg] = value;
}

116
#ifndef SUN3_SCSI_VME
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
/* dma controller register access functions */

static inline unsigned short sun3_udc_read(unsigned char reg)
{
	unsigned short ret;

	dregs->udc_addr = UDC_CSR;
	udelay(SUN3_DMA_DELAY);
	ret = dregs->udc_data;
	udelay(SUN3_DMA_DELAY);
	
	return ret;
}

static inline void sun3_udc_write(unsigned short val, unsigned char reg)
{
	dregs->udc_addr = reg;
	udelay(SUN3_DMA_DELAY);
	dregs->udc_data = val;
	udelay(SUN3_DMA_DELAY);
}
138
#endif
L
Linus Torvalds 已提交
139 140 141 142 143 144 145

/*
 * XXX: status debug
 */
static struct Scsi_Host *default_instance;

/*
146
 * Function : int sun3scsi_detect(struct scsi_host_template * tpnt)
L
Linus Torvalds 已提交
147 148 149 150 151 152 153 154 155 156
 *
 * Purpose : initializes mac NCR5380 driver based on the
 *	command line / compile time port and irq definitions.
 *
 * Inputs : tpnt - template for this SCSI adapter.
 *
 * Returns : 1 if a host adapter was found, 0 if not.
 *
 */
 
157
static int __init sun3scsi_detect(struct scsi_host_template *tpnt)
L
Linus Torvalds 已提交
158
{
159
	unsigned long ioaddr, irq;
L
Linus Torvalds 已提交
160 161
	static int called = 0;
	struct Scsi_Host *instance;
162 163 164 165 166 167 168 169 170
#ifdef SUN3_SCSI_VME
	int i;
	unsigned long addrs[3] = { IOBASE_SUN3_VMESCSI,
				   IOBASE_SUN3_VMESCSI + 0x4000,
				   0 };
	unsigned long vecs[3] = { SUN3_VEC_VMESCSI0,
				  SUN3_VEC_VMESCSI1,
				  0 };
#endif
L
Linus Torvalds 已提交
171 172 173

	/* check that this machine has an onboard 5380 */
	switch(idprom->id_machtype) {
174 175 176 177 178
#ifdef SUN3_SCSI_VME
	case SM_SUN3|SM_3_160:
	case SM_SUN3|SM_3_260:
		break;
#else
L
Linus Torvalds 已提交
179 180 181
	case SM_SUN3|SM_3_50:
	case SM_SUN3|SM_3_60:
		break;
182
#endif
L
Linus Torvalds 已提交
183 184 185 186 187 188 189 190

	default:
		return 0;
	}

	if(called)
		return 0;

191 192 193
#ifdef SUN3_SCSI_VME
	tpnt->proc_name = "Sun3 5380 VME SCSI";
#else
L
Linus Torvalds 已提交
194
	tpnt->proc_name = "Sun3 5380 SCSI";
195
#endif
L
Linus Torvalds 已提交
196 197

	/* setup variables */
198 199 200 201 202 203
	if (setup_can_queue > 0)
		tpnt->can_queue = setup_can_queue;
	if (setup_cmd_per_lun > 0)
		tpnt->cmd_per_lun = setup_cmd_per_lun;
	if (setup_sg_tablesize >= 0)
		tpnt->sg_tablesize = setup_sg_tablesize;
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211

	if (setup_hostid >= 0)
		tpnt->this_id = setup_hostid;
	else {
		/* use 7 as default */
		tpnt->this_id = 7;
	}

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
#ifdef SUN3_SCSI_VME
	ioaddr = 0;
	for (i = 0; addrs[i] != 0; i++) {
		unsigned char x;

		ioaddr = (unsigned long)sun3_ioremap(addrs[i], PAGE_SIZE,
						     SUN3_PAGE_TYPE_VME16);
		irq = vecs[i];
		sun3_scsi_regp = (unsigned char *)ioaddr;

		dregs = (struct sun3_dma_regs *)(((unsigned char *)ioaddr) + 8);

		if (sun3_map_test((unsigned long)dregs, &x)) {
			unsigned short oldcsr;

			oldcsr = dregs->csr;
			dregs->csr = 0;
			udelay(SUN3_DMA_DELAY);
			if (dregs->csr == 0x1400)
				break;

			dregs->csr = oldcsr;
		}

		iounmap((void *)ioaddr);
		ioaddr = 0;
	}

	if (!ioaddr)
		return 0;
#else
	irq = IRQ_SUN3_SCSI;
L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256
	ioaddr = (unsigned long)ioremap(IOBASE_SUN3_SCSI, PAGE_SIZE);
	sun3_scsi_regp = (unsigned char *)ioaddr;

	dregs = (struct sun3_dma_regs *)(((unsigned char *)ioaddr) + 8);

	if((udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs)))
	   == NULL) {
	     printk("SUN3 Scsi couldn't allocate DVMA memory!\n");
	     return 0;
	}
#endif
#ifdef SUPPORT_TAGS
	if (setup_use_tagged_queuing < 0)
257
		setup_use_tagged_queuing = 1;
L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266
#endif

	instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
	if(instance == NULL)
		return 0;
		
	default_instance = instance;

        instance->io_port = (unsigned long) ioaddr;
267
	instance->irq = irq;
L
Linus Torvalds 已提交
268 269 270 271 272 273

	NCR5380_init(instance, 0);

	instance->n_io_port = 32;

	if (request_irq(instance->irq, scsi_sun3_intr,
274
			     0, "Sun3SCSI-5380", instance)) {
L
Linus Torvalds 已提交
275 276 277
#ifndef REAL_DMA
		printk("scsi%d: IRQ%d not free, interrupts disabled\n",
		       instance->host_no, instance->irq);
F
Finn Thain 已提交
278
		instance->irq = NO_IRQ;
L
Linus Torvalds 已提交
279 280 281 282 283 284 285 286 287 288 289 290
#else
		printk("scsi%d: IRQ%d not free, bailing out\n",
		       instance->host_no, instance->irq);
		return 0;
#endif
	}
	
	dregs->csr = 0;
	udelay(SUN3_DMA_DELAY);
	dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
	udelay(SUN3_DMA_DELAY);
	dregs->fifo_count = 0;
291 292 293 294 295 296 297 298 299
#ifdef SUN3_SCSI_VME
	dregs->fifo_count_hi = 0;
	dregs->dma_addr_hi = 0;
	dregs->dma_addr_lo = 0;
	dregs->dma_count_hi = 0;
	dregs->dma_count_lo = 0;

	dregs->ivect = VME_DATA24 | (instance->irq & 0xff);
#endif
L
Linus Torvalds 已提交
300 301 302 303 304 305 306 307 308 309

	called = 1;

#ifdef RESET_BOOT
	sun3_scsi_reset_boot(instance);
#endif

	return 1;
}

F
Finn Thain 已提交
310
static int sun3scsi_release(struct Scsi_Host *shpnt)
L
Linus Torvalds 已提交
311
{
F
Finn Thain 已提交
312
	if (shpnt->irq != NO_IRQ)
313
		free_irq(shpnt->irq, shpnt);
L
Linus Torvalds 已提交
314 315 316

	iounmap((void *)sun3_scsi_regp);

317
	NCR5380_exit(shpnt);
L
Linus Torvalds 已提交
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
	return 0;
}

#ifdef RESET_BOOT
/*
 * Our 'bus reset on boot' function
 */

static void sun3_scsi_reset_boot(struct Scsi_Host *instance)
{
	unsigned long end;

	NCR5380_local_declare();
	NCR5380_setup(instance);
	
	/*
	 * Do a SCSI reset to clean up the bus during initialization. No
	 * messing with the queues, interrupts, or locks necessary here.
	 */

	printk( "Sun3 SCSI: resetting the SCSI bus..." );

	/* switch off SCSI IRQ - catch an interrupt without IRQ bit set else */
//       	sun3_disable_irq( IRQ_SUN3_SCSI );

	/* get in phase */
	NCR5380_write( TARGET_COMMAND_REG,
		      PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));

	/* assert RST */
	NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );

	/* The min. reset hold time is 25us, so 40us should be enough */
	udelay( 50 );

	/* reset RST and interrupt */
	NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
	NCR5380_read( RESET_PARITY_INTERRUPT_REG );

	for( end = jiffies + AFTER_RESET_DELAY; time_before(jiffies, end); )
		barrier();

	/* switch on SCSI IRQ again */
//       	sun3_enable_irq( IRQ_SUN3_SCSI );

	printk( " done\n" );
}
#endif

// safe bits for the CSR
#define CSR_GOOD 0x060f

370
static irqreturn_t scsi_sun3_intr(int irq, void *dummy)
L
Linus Torvalds 已提交
371 372 373 374
{
	unsigned short csr = dregs->csr;
	int handled = 0;

375 376 377 378
#ifdef SUN3_SCSI_VME
	dregs->csr &= ~CSR_DMA_ENABLE;
#endif

L
Linus Torvalds 已提交
379 380 381 382 383 384 385 386 387 388 389 390
	if(csr & ~CSR_GOOD) {
		if(csr & CSR_DMA_BUSERR) {
			printk("scsi%d: bus error in dma\n", default_instance->host_no);
		}

		if(csr & CSR_DMA_CONFLICT) {
			printk("scsi%d: dma conflict\n", default_instance->host_no);
		}
		handled = 1;
	}

	if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
391
		NCR5380_intr(irq, dummy);
L
Linus Torvalds 已提交
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
		handled = 1;
	}

	return IRQ_RETVAL(handled);
}

/*
 * Debug stuff - to be called on NMI, or sysrq key. Use at your own risk; 
 * reentering NCR5380_print_status seems to have ugly side effects
 */

/* this doesn't seem to get used at all -- sam */
#if 0
void sun3_sun3_debug (void)
{
	unsigned long flags;
	NCR5380_local_declare();

	if (default_instance) {
			local_irq_save(flags);
			NCR5380_print_status(default_instance);
			local_irq_restore(flags);
	}
}
#endif


/* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
static unsigned long sun3scsi_dma_setup(void *data, unsigned long count, int write_flag)
{
	void *addr;

	if(sun3_dma_orig_addr != NULL)
		dvma_unmap(sun3_dma_orig_addr);

427 428 429
#ifdef SUN3_SCSI_VME
	addr = (void *)dvma_map_vme((unsigned long) data, count);
#else
L
Linus Torvalds 已提交
430
	addr = (void *)dvma_map((unsigned long) data, count);
431
#endif
L
Linus Torvalds 已提交
432 433 434
		
	sun3_dma_orig_addr = addr;
	sun3_dma_orig_count = count;
435 436

#ifndef SUN3_SCSI_VME
L
Linus Torvalds 已提交
437 438 439 440 441 442
	dregs->fifo_count = 0;
	sun3_udc_write(UDC_RESET, UDC_CSR);
	
	/* reset fifo */
	dregs->csr &= ~CSR_FIFO;
	dregs->csr |= CSR_FIFO;
443
#endif
L
Linus Torvalds 已提交
444 445 446 447 448 449 450
	
	/* set direction */
	if(write_flag)
		dregs->csr |= CSR_SEND;
	else
		dregs->csr &= ~CSR_SEND;
	
451 452 453 454 455 456 457 458 459 460 461
#ifdef SUN3_SCSI_VME
	dregs->csr |= CSR_PACK_ENABLE;

	dregs->dma_addr_hi = ((unsigned long)addr >> 16);
	dregs->dma_addr_lo = ((unsigned long)addr & 0xffff);

	dregs->dma_count_hi = 0;
	dregs->dma_count_lo = 0;
	dregs->fifo_count_hi = 0;
	dregs->fifo_count = 0;
#else
L
Linus Torvalds 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474
	/* byte count for fifo */
	dregs->fifo_count = count;

	sun3_udc_write(UDC_RESET, UDC_CSR);
	
	/* reset fifo */
	dregs->csr &= ~CSR_FIFO;
	dregs->csr |= CSR_FIFO;
	
	if(dregs->fifo_count != count) { 
		printk("scsi%d: fifo_mismatch %04x not %04x\n",
		       default_instance->host_no, dregs->fifo_count,
		       (unsigned int) count);
475
		NCR5380_dprint(NDEBUG_DMA, default_instance);
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	}

	/* setup udc */
	udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
	udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
	udc_regs->count = count/2; /* count in words */
	udc_regs->mode_hi = UDC_MODE_HIWORD;
	if(write_flag) {
		if(count & 1)
			udc_regs->count++;
		udc_regs->mode_lo = UDC_MODE_LSEND;
		udc_regs->rsel = UDC_RSEL_SEND;
	} else {
		udc_regs->mode_lo = UDC_MODE_LRECV;
		udc_regs->rsel = UDC_RSEL_RECV;
	}
	
	/* announce location of regs block */
	sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
		       UDC_CHN_HI); 

	sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);

	/* set dma master on */
	sun3_udc_write(0xd, UDC_MODE);

	/* interrupt enable */
	sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
504
#endif
L
Linus Torvalds 已提交
505 506 507 508 509
	
       	return count;

}

510
#ifndef SUN3_SCSI_VME
L
Linus Torvalds 已提交
511 512 513 514 515 516 517 518 519 520 521 522
static inline unsigned long sun3scsi_dma_count(struct Scsi_Host *instance)
{
	unsigned short resid;

	dregs->udc_addr = 0x32; 
	udelay(SUN3_DMA_DELAY);
	resid = dregs->udc_data;
	udelay(SUN3_DMA_DELAY);
	resid *= 2;

	return (unsigned long) resid;
}
523
#endif
L
Linus Torvalds 已提交
524 525 526 527 528 529

static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
{
	return last_residual;
}

H
Henne 已提交
530 531 532
static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted,
						  struct scsi_cmnd *cmd,
						  int write_flag)
L
Linus Torvalds 已提交
533
{
534
	if (cmd->request->cmd_type == REQ_TYPE_FS)
L
Linus Torvalds 已提交
535 536 537 538 539 540 541
 		return wanted;
	else
		return 0;
}

static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
{
542 543 544 545 546 547 548
#ifdef SUN3_SCSI_VME
	unsigned short csr;

	csr = dregs->csr;

	dregs->dma_count_hi = (sun3_dma_orig_count >> 16);
	dregs->dma_count_lo = (sun3_dma_orig_count & 0xffff);
L
Linus Torvalds 已提交
549

550 551 552 553 554 555 556
	dregs->fifo_count_hi = (sun3_dma_orig_count >> 16);
	dregs->fifo_count = (sun3_dma_orig_count & 0xffff);

/*	if(!(csr & CSR_DMA_ENABLE))
 *		dregs->csr |= CSR_DMA_ENABLE;
 */
#else
L
Linus Torvalds 已提交
557
    sun3_udc_write(UDC_CHN_START, UDC_CSR);
558
#endif
L
Linus Torvalds 已提交
559 560 561 562 563 564 565
    
    return 0;
}

/* clean up after our dma is done */
static int sun3scsi_dma_finish(int write_flag)
{
566
	unsigned short __maybe_unused count;
L
Linus Torvalds 已提交
567 568 569 570
	unsigned short fifo;
	int ret = 0;
	
	sun3_dma_active = 0;
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605

#ifdef SUN3_SCSI_VME
	dregs->csr &= ~CSR_DMA_ENABLE;

	fifo = dregs->fifo_count;
	if (write_flag) {
		if ((fifo > 0) && (fifo < sun3_dma_orig_count))
			fifo++;
	}

	last_residual = fifo;
	/* empty bytes from the fifo which didn't make it */
	if ((!write_flag) && (dregs->csr & CSR_LEFT)) {
		unsigned char *vaddr;

		vaddr = (unsigned char *)dvma_vmetov(sun3_dma_orig_addr);

		vaddr += (sun3_dma_orig_count - fifo);
		vaddr--;

		switch (dregs->csr & CSR_LEFT) {
		case CSR_LEFT_3:
			*vaddr = (dregs->bpack_lo & 0xff00) >> 8;
			vaddr--;

		case CSR_LEFT_2:
			*vaddr = (dregs->bpack_hi & 0x00ff);
			vaddr--;

		case CSR_LEFT_1:
			*vaddr = (dregs->bpack_hi & 0xff00) >> 8;
			break;
		}
	}
#else
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
	// check to empty the fifo on a read
	if(!write_flag) {
		int tmo = 20000; /* .2 sec */
		
		while(1) {
			if(dregs->csr & CSR_FIFO_EMPTY)
				break;

			if(--tmo <= 0) {
				printk("sun3scsi: fifo failed to empty!\n");
				return 1;
			}
			udelay(10);
		}
	}

	count = sun3scsi_dma_count(default_instance);

	fifo = dregs->fifo_count;
	last_residual = fifo;

	/* empty bytes from the fifo which didn't make it */
	if((!write_flag) && (count - fifo) == 2) {
		unsigned short data;
		unsigned char *vaddr;

		data = dregs->fifo_data;
		vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
		
		vaddr += (sun3_dma_orig_count - fifo);

		vaddr[-2] = (data & 0xff00) >> 8;
		vaddr[-1] = (data & 0xff);
	}
640
#endif
L
Linus Torvalds 已提交
641 642 643

	dvma_unmap(sun3_dma_orig_addr);
	sun3_dma_orig_addr = NULL;
644 645 646 647 648 649 650 651 652 653 654 655 656

#ifdef SUN3_SCSI_VME
	dregs->dma_addr_hi = 0;
	dregs->dma_addr_lo = 0;
	dregs->dma_count_hi = 0;
	dregs->dma_count_lo = 0;

	dregs->fifo_count = 0;
	dregs->fifo_count_hi = 0;

	dregs->csr &= ~CSR_SEND;
/*	dregs->csr |= CSR_DMA_ENABLE; */
#else
L
Linus Torvalds 已提交
657 658 659 660 661 662 663
	sun3_udc_write(UDC_RESET, UDC_CSR);
	dregs->fifo_count = 0;
	dregs->csr &= ~CSR_SEND;

	/* reset fifo */
	dregs->csr &= ~CSR_FIFO;
	dregs->csr |= CSR_FIFO;
664
#endif
L
Linus Torvalds 已提交
665 666 667 668 669 670 671 672 673
	
	sun3_dma_setup_done = NULL;

	return ret;

}
	
#include "sun3_NCR5380.c"

674
static struct scsi_host_template driver_template = {
675
	.show_info		= sun3scsi_show_info,
L
Linus Torvalds 已提交
676 677 678 679 680 681 682
	.name			= SUN3_SCSI_NAME,
	.detect			= sun3scsi_detect,
	.release		= sun3scsi_release,
	.info			= sun3scsi_info,
	.queuecommand		= sun3scsi_queue_command,
	.eh_abort_handler      	= sun3scsi_abort,
	.eh_bus_reset_handler  	= sun3scsi_bus_reset,
683
	.can_queue		= 16,
L
Linus Torvalds 已提交
684
	.this_id		= 7,
685 686
	.sg_tablesize		= SG_NONE,
	.cmd_per_lun		= 2,
L
Linus Torvalds 已提交
687 688 689 690 691 692 693
	.use_clustering		= DISABLE_CLUSTERING
};


#include "scsi_module.c"

MODULE_LICENSE("GPL");