Linux Audio

Check our new training course

Loading...
v3.15
  1/*
  2 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
  3 *
  4 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
  5 *
 
 
 
 
  6 * Adapted from mac_scsinew.c:
  7 */
  8/*
  9 * Generic Macintosh NCR5380 driver
 10 *
 11 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
 12 *
 13 * derived in part from:
 14 */
 15/*
 16 * Generic Generic NCR5380 driver
 17 *
 18 * Copyright 1995, Russell King
 19 *
 20 * ALPHA RELEASE 1.
 21 *
 22 * For more information, please consult
 23 *
 24 * NCR 5380 Family
 25 * SCSI Protocol Controller
 26 * Databook
 27 *
 28 * NCR Microelectronics
 29 * 1635 Aeroplaza Drive
 30 * Colorado Springs, CO 80916
 31 * 1+ (719) 578-3400
 32 * 1+ (800) 334-5454
 33 */
 34
 35
 36/*
 37 * This is from mac_scsi.h, but hey, maybe this is useful for Sun3 too! :)
 38 *
 39 * Options :
 40 *
 41 * PARITY - enable parity checking.  Not supported.
 42 *
 43 * SCSI2 - enable support for SCSI-II tagged queueing.  Untested.
 44 *
 45 * USLEEP - enable support for devices that don't disconnect.  Untested.
 46 */
 47
 48/*
 49 * $Log: sun3_NCR5380.c,v $
 50 */
 51
 52#define AUTOSENSE
 53
 54#include <linux/types.h>
 55#include <linux/stddef.h>
 56#include <linux/ctype.h>
 57#include <linux/delay.h>
 58
 59#include <linux/module.h>
 60#include <linux/signal.h>
 61#include <linux/ioport.h>
 62#include <linux/init.h>
 63#include <linux/blkdev.h>
 
 64
 65#include <asm/io.h>
 66
 67#include <asm/sun3ints.h>
 68#include <asm/dvma.h>
 69#include <asm/idprom.h>
 70#include <asm/machines.h>
 71
 72#define NDEBUG 0
 73
 74#define NDEBUG_ABORT		0x00100000
 75#define NDEBUG_TAGS		0x00200000
 76#define NDEBUG_MERGING		0x00400000
 77
 78/* dma on! */
 79#define REAL_DMA
 80
 81#include "scsi.h"
 82#include "initio.h"
 83#include <scsi/scsi_host.h>
 84#include "sun3_scsi.h"
 85
 86static void NCR5380_print(struct Scsi_Host *instance);
 
 
 
 87
 88/* #define OLDDMA */
 89
 90#define USE_WRAPPER
 91/*#define RESET_BOOT */
 92#define DRIVER_SETUP
 93
 94/*
 95 * BUG can be used to trigger a strange code-size related hang on 2.1 kernels
 96 */
 97#ifdef BUG
 98#undef RESET_BOOT
 99#undef DRIVER_SETUP
100#endif
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
102/* #define SUPPORT_TAGS */
 
 
 
 
 
 
 
 
103
104#define	ENABLE_IRQ()	enable_irq( IRQ_SUN3_SCSI ); 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
107static irqreturn_t scsi_sun3_intr(int irq, void *dummy);
108static inline unsigned char sun3scsi_read(int reg);
109static inline void sun3scsi_write(int reg, int value);
110
111static int setup_can_queue = -1;
112module_param(setup_can_queue, int, 0);
113static int setup_cmd_per_lun = -1;
114module_param(setup_cmd_per_lun, int, 0);
115static int setup_sg_tablesize = -1;
116module_param(setup_sg_tablesize, int, 0);
117#ifdef SUPPORT_TAGS
118static int setup_use_tagged_queuing = -1;
119module_param(setup_use_tagged_queuing, int, 0);
120#endif
121static int setup_hostid = -1;
122module_param(setup_hostid, int, 0);
123
124static struct scsi_cmnd *sun3_dma_setup_done = NULL;
125
126#define	AFTER_RESET_DELAY	(HZ/2)
127
128/* ms to wait after hitting dma regs */
129#define SUN3_DMA_DELAY 10
130
131/* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
132#define SUN3_DVMA_BUFSIZE 0xe000
133
134/* minimum number of bytes to do dma on */
135#define SUN3_DMA_MINSIZE 128
136
137static volatile unsigned char *sun3_scsi_regp;
138static volatile struct sun3_dma_regs *dregs;
139#ifdef OLDDMA
140static unsigned char *dmabuf = NULL; /* dma memory buffer */
141#endif
142static struct sun3_udc_regs *udc_regs = NULL;
143static unsigned char *sun3_dma_orig_addr = NULL;
144static unsigned long sun3_dma_orig_count = 0;
145static int sun3_dma_active = 0;
146static unsigned long last_residual = 0;
147
148/*
149 * NCR 5380 register access functions
150 */
151
152static inline unsigned char sun3scsi_read(int reg)
153{
154	return( sun3_scsi_regp[reg] );
155}
156
157static inline void sun3scsi_write(int reg, int value)
158{
159	sun3_scsi_regp[reg] = value;
160}
161
 
162/* dma controller register access functions */
163
164static inline unsigned short sun3_udc_read(unsigned char reg)
165{
166	unsigned short ret;
167
168	dregs->udc_addr = UDC_CSR;
169	udelay(SUN3_DMA_DELAY);
170	ret = dregs->udc_data;
171	udelay(SUN3_DMA_DELAY);
172	
173	return ret;
174}
175
176static inline void sun3_udc_write(unsigned short val, unsigned char reg)
177{
178	dregs->udc_addr = reg;
179	udelay(SUN3_DMA_DELAY);
180	dregs->udc_data = val;
181	udelay(SUN3_DMA_DELAY);
182}
183
184/*
185 * XXX: status debug
186 */
187static struct Scsi_Host *default_instance;
188
189/*
190 * Function : int sun3scsi_detect(struct scsi_host_template * tpnt)
191 *
192 * Purpose : initializes mac NCR5380 driver based on the
193 *	command line / compile time port and irq definitions.
194 *
195 * Inputs : tpnt - template for this SCSI adapter.
196 *
197 * Returns : 1 if a host adapter was found, 0 if not.
198 *
199 */
200 
201int __init sun3scsi_detect(struct scsi_host_template * tpnt)
202{
203	unsigned long ioaddr;
204	static int called = 0;
205	struct Scsi_Host *instance;
206
207	/* check that this machine has an onboard 5380 */
208	switch(idprom->id_machtype) {
209	case SM_SUN3|SM_3_50:
210	case SM_SUN3|SM_3_60:
211		break;
212
213	default:
214		return 0;
215	}
216
217	if(called)
218		return 0;
219
220	tpnt->proc_name = "Sun3 5380 SCSI";
221
222	/* setup variables */
223	tpnt->can_queue =
224		(setup_can_queue > 0) ? setup_can_queue : CAN_QUEUE;
225	tpnt->cmd_per_lun =
226		(setup_cmd_per_lun > 0) ? setup_cmd_per_lun : CMD_PER_LUN;
227	tpnt->sg_tablesize = 
228		(setup_sg_tablesize >= 0) ? setup_sg_tablesize : SG_TABLESIZE;
229
230	if (setup_hostid >= 0)
231		tpnt->this_id = setup_hostid;
232	else {
233		/* use 7 as default */
234		tpnt->this_id = 7;
235	}
236
237	ioaddr = (unsigned long)ioremap(IOBASE_SUN3_SCSI, PAGE_SIZE);
238	sun3_scsi_regp = (unsigned char *)ioaddr;
239
240	dregs = (struct sun3_dma_regs *)(((unsigned char *)ioaddr) + 8);
241
242	if((udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs)))
243	   == NULL) {
244	     printk("SUN3 Scsi couldn't allocate DVMA memory!\n");
245	     return 0;
246	}
247#ifdef OLDDMA
248	if((dmabuf = dvma_malloc_align(SUN3_DVMA_BUFSIZE, 0x10000)) == NULL) {
249	     printk("SUN3 Scsi couldn't allocate DVMA memory!\n");
250	     return 0;
251	}
252#endif
253#ifdef SUPPORT_TAGS
254	if (setup_use_tagged_queuing < 0)
255		setup_use_tagged_queuing = USE_TAGGED_QUEUING;
256#endif
257
258	instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
259	if(instance == NULL)
260		return 0;
261		
262	default_instance = instance;
263
264        instance->io_port = (unsigned long) ioaddr;
265	instance->irq = IRQ_SUN3_SCSI;
266
267	NCR5380_init(instance, 0);
268
269	instance->n_io_port = 32;
270
271        ((struct NCR5380_hostdata *)instance->hostdata)->ctrl = 0;
272
273	if (request_irq(instance->irq, scsi_sun3_intr,
274			     0, "Sun3SCSI-5380", instance)) {
275#ifndef REAL_DMA
276		printk("scsi%d: IRQ%d not free, interrupts disabled\n",
277		       instance->host_no, instance->irq);
278		instance->irq = SCSI_IRQ_NONE;
279#else
280		printk("scsi%d: IRQ%d not free, bailing out\n",
281		       instance->host_no, instance->irq);
282		return 0;
283#endif
284	}
285	
286	printk("scsi%d: Sun3 5380 at port %lX irq", instance->host_no, instance->io_port);
287	if (instance->irq == SCSI_IRQ_NONE)
288		printk ("s disabled");
289	else
290		printk (" %d", instance->irq);
291	printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
292	       instance->can_queue, instance->cmd_per_lun,
293	       SUN3SCSI_PUBLIC_RELEASE);
294	printk("\nscsi%d:", instance->host_no);
295	NCR5380_print_options(instance);
296	printk("\n");
297
298	dregs->csr = 0;
299	udelay(SUN3_DMA_DELAY);
300	dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
301	udelay(SUN3_DMA_DELAY);
302	dregs->fifo_count = 0;
303
304	called = 1;
305
306#ifdef RESET_BOOT
307	sun3_scsi_reset_boot(instance);
308#endif
309
310	return 1;
311}
312
313int sun3scsi_release (struct Scsi_Host *shpnt)
314{
315	if (shpnt->irq != SCSI_IRQ_NONE)
316		free_irq(shpnt->irq, shpnt);
317
318	iounmap((void *)sun3_scsi_regp);
319
320	NCR5380_exit(shpnt);
321	return 0;
322}
323
324#ifdef RESET_BOOT
325/*
326 * Our 'bus reset on boot' function
327 */
328
329static void sun3_scsi_reset_boot(struct Scsi_Host *instance)
330{
331	unsigned long end;
332
333	NCR5380_local_declare();
334	NCR5380_setup(instance);
335	
336	/*
337	 * Do a SCSI reset to clean up the bus during initialization. No
338	 * messing with the queues, interrupts, or locks necessary here.
339	 */
340
341	printk( "Sun3 SCSI: resetting the SCSI bus..." );
342
343	/* switch off SCSI IRQ - catch an interrupt without IRQ bit set else */
344//       	sun3_disable_irq( IRQ_SUN3_SCSI );
345
346	/* get in phase */
347	NCR5380_write( TARGET_COMMAND_REG,
348		      PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));
349
350	/* assert RST */
351	NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );
352
353	/* The min. reset hold time is 25us, so 40us should be enough */
354	udelay( 50 );
355
356	/* reset RST and interrupt */
357	NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
358	NCR5380_read( RESET_PARITY_INTERRUPT_REG );
359
360	for( end = jiffies + AFTER_RESET_DELAY; time_before(jiffies, end); )
361		barrier();
362
363	/* switch on SCSI IRQ again */
364//       	sun3_enable_irq( IRQ_SUN3_SCSI );
365
366	printk( " done\n" );
367}
368#endif
369
370const char * sun3scsi_info (struct Scsi_Host *spnt) {
371    return "";
372}
373
374// safe bits for the CSR
375#define CSR_GOOD 0x060f
376
377static irqreturn_t scsi_sun3_intr(int irq, void *dummy)
378{
 
379	unsigned short csr = dregs->csr;
380	int handled = 0;
381
382	if(csr & ~CSR_GOOD) {
383		if(csr & CSR_DMA_BUSERR) {
384			printk("scsi%d: bus error in dma\n", default_instance->host_no);
385		}
386
387		if(csr & CSR_DMA_CONFLICT) {
388			printk("scsi%d: dma conflict\n", default_instance->host_no);
389		}
 
 
390		handled = 1;
391	}
392
393	if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
394		NCR5380_intr(irq, dummy);
395		handled = 1;
396	}
397
398	return IRQ_RETVAL(handled);
399}
400
401/*
402 * Debug stuff - to be called on NMI, or sysrq key. Use at your own risk; 
403 * reentering NCR5380_print_status seems to have ugly side effects
404 */
405
406/* this doesn't seem to get used at all -- sam */
407#if 0
408void sun3_sun3_debug (void)
409{
410	unsigned long flags;
411	NCR5380_local_declare();
412
413	if (default_instance) {
414			local_irq_save(flags);
415			NCR5380_print_status(default_instance);
416			local_irq_restore(flags);
417	}
418}
419#endif
420
421
422/* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
423static unsigned long sun3scsi_dma_setup(void *data, unsigned long count, int write_flag)
 
424{
425#ifdef OLDDMA
426	if(write_flag) 
427		memcpy(dmabuf, data, count);
428	else {
429		sun3_dma_orig_addr = data;
430		sun3_dma_orig_count = count;
431	}
432#else
433	void *addr;
434
435	if(sun3_dma_orig_addr != NULL)
436		dvma_unmap(sun3_dma_orig_addr);
437
438//	addr = sun3_dvma_page((unsigned long)data, (unsigned long)dmabuf);
 
 
439	addr = (void *)dvma_map((unsigned long) data, count);
 
440		
441	sun3_dma_orig_addr = addr;
442	sun3_dma_orig_count = count;
443#endif
 
444	dregs->fifo_count = 0;
445	sun3_udc_write(UDC_RESET, UDC_CSR);
446	
447	/* reset fifo */
448	dregs->csr &= ~CSR_FIFO;
449	dregs->csr |= CSR_FIFO;
 
450	
451	/* set direction */
452	if(write_flag)
453		dregs->csr |= CSR_SEND;
454	else
455		dregs->csr &= ~CSR_SEND;
456	
 
 
 
 
 
 
 
 
 
 
 
457	/* byte count for fifo */
458	dregs->fifo_count = count;
459
460	sun3_udc_write(UDC_RESET, UDC_CSR);
461	
462	/* reset fifo */
463	dregs->csr &= ~CSR_FIFO;
464	dregs->csr |= CSR_FIFO;
465	
466	if(dregs->fifo_count != count) { 
467		printk("scsi%d: fifo_mismatch %04x not %04x\n",
468		       default_instance->host_no, dregs->fifo_count,
469		       (unsigned int) count);
470		NCR5380_print(default_instance);
471	}
472
473	/* setup udc */
474#ifdef OLDDMA
475	udc_regs->addr_hi = ((dvma_vtob(dmabuf) & 0xff0000) >> 8);
476	udc_regs->addr_lo = (dvma_vtob(dmabuf) & 0xffff);
477#else
478	udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
479	udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
480#endif
481	udc_regs->count = count/2; /* count in words */
482	udc_regs->mode_hi = UDC_MODE_HIWORD;
483	if(write_flag) {
484		if(count & 1)
485			udc_regs->count++;
486		udc_regs->mode_lo = UDC_MODE_LSEND;
487		udc_regs->rsel = UDC_RSEL_SEND;
488	} else {
489		udc_regs->mode_lo = UDC_MODE_LRECV;
490		udc_regs->rsel = UDC_RSEL_RECV;
491	}
492	
493	/* announce location of regs block */
494	sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
495		       UDC_CHN_HI); 
496
497	sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
498
499	/* set dma master on */
500	sun3_udc_write(0xd, UDC_MODE);
501
502	/* interrupt enable */
503	sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
 
504	
505       	return count;
506
507}
508
509static inline unsigned long sun3scsi_dma_count(struct Scsi_Host *instance)
 
510{
511	unsigned short resid;
 
512
513	dregs->udc_addr = 0x32; 
514	udelay(SUN3_DMA_DELAY);
515	resid = dregs->udc_data;
516	udelay(SUN3_DMA_DELAY);
517	resid *= 2;
518
519	return (unsigned long) resid;
 
 
 
520}
521
522static inline unsigned long sun3scsi_dma_residual(struct Scsi_Host *instance)
523{
524	return last_residual;
525}
526
527static inline unsigned long sun3scsi_dma_xfer_len(unsigned long wanted,
528						  struct scsi_cmnd *cmd,
529						  int write_flag)
530{
531	if (cmd->request->cmd_type == REQ_TYPE_FS)
532 		return wanted;
533	else
534		return 0;
 
 
535}
536
537static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
538{
 
 
 
 
539
 
 
 
 
 
 
 
 
 
 
540    sun3_udc_write(UDC_CHN_START, UDC_CSR);
 
541    
542    return 0;
543}
544
545/* clean up after our dma is done */
546static int sun3scsi_dma_finish(int write_flag)
547{
548	unsigned short count;
549	unsigned short fifo;
550	int ret = 0;
551	
552	sun3_dma_active = 0;
553#if 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554	// check to empty the fifo on a read
555	if(!write_flag) {
556		int tmo = 20000; /* .2 sec */
557		
558		while(1) {
559			if(dregs->csr & CSR_FIFO_EMPTY)
560				break;
561
562			if(--tmo <= 0) {
563				printk("sun3scsi: fifo failed to empty!\n");
564				return 1;
565			}
566			udelay(10);
567		}
568	}
569		
570#endif
571
572	count = sun3scsi_dma_count(default_instance);
573#ifdef OLDDMA
574
575	/* if we've finished a read, copy out the data we read */
576 	if(sun3_dma_orig_addr) {
577		/* check for residual bytes after dma end */
578		if(count && (NCR5380_read(BUS_AND_STATUS_REG) &
579			     (BASR_PHASE_MATCH | BASR_ACK))) {
580			printk("scsi%d: sun3_scsi_finish: read overrun baby... ", default_instance->host_no);
581			printk("basr now %02x\n", NCR5380_read(BUS_AND_STATUS_REG));
582			ret = count;
583		}
584		
585		/* copy in what we dma'd no matter what */
586		memcpy(sun3_dma_orig_addr, dmabuf, sun3_dma_orig_count);
587		sun3_dma_orig_addr = NULL;
588
589	}
590#else
591
592	fifo = dregs->fifo_count;
593	last_residual = fifo;
594
595	/* empty bytes from the fifo which didn't make it */
596	if((!write_flag) && (count - fifo) == 2) {
597		unsigned short data;
598		unsigned char *vaddr;
599
600		data = dregs->fifo_data;
601		vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
602		
603		vaddr += (sun3_dma_orig_count - fifo);
604
605		vaddr[-2] = (data & 0xff00) >> 8;
606		vaddr[-1] = (data & 0xff);
607	}
 
608
609	dvma_unmap(sun3_dma_orig_addr);
610	sun3_dma_orig_addr = NULL;
611#endif
 
 
 
 
 
 
 
 
 
 
 
 
612	sun3_udc_write(UDC_RESET, UDC_CSR);
613	dregs->fifo_count = 0;
614	dregs->csr &= ~CSR_SEND;
615
616	/* reset fifo */
617	dregs->csr &= ~CSR_FIFO;
618	dregs->csr |= CSR_FIFO;
 
619	
620	sun3_dma_setup_done = NULL;
621
622	return ret;
623
624}
625	
626#include "sun3_NCR5380.c"
627
628static struct scsi_host_template driver_template = {
629	.show_info		= sun3scsi_show_info,
 
 
 
 
 
 
 
 
 
 
 
630	.name			= SUN3_SCSI_NAME,
631	.detect			= sun3scsi_detect,
632	.release		= sun3scsi_release,
633	.info			= sun3scsi_info,
634	.queuecommand		= sun3scsi_queue_command,
635	.eh_abort_handler      	= sun3scsi_abort,
636	.eh_bus_reset_handler  	= sun3scsi_bus_reset,
637	.can_queue		= CAN_QUEUE,
638	.this_id		= 7,
639	.sg_tablesize		= SG_TABLESIZE,
640	.cmd_per_lun		= CMD_PER_LUN,
641	.use_clustering		= DISABLE_CLUSTERING
 
642};
643
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
645#include "scsi_module.c"
646
 
647MODULE_LICENSE("GPL");
v4.17
  1/*
  2 * Sun3 SCSI stuff by Erik Verbruggen (erik@bigmama.xtdnet.nl)
  3 *
  4 * Sun3 DMA routines added by Sam Creasey (sammy@sammy.net)
  5 *
  6 * VME support added by Sam Creasey
  7 *
  8 * TODO: modify this driver to support multiple Sun3 SCSI VME boards
  9 *
 10 * Adapted from mac_scsinew.c:
 11 */
 12/*
 13 * Generic Macintosh NCR5380 driver
 14 *
 15 * Copyright 1998, Michael Schmitz <mschmitz@lbl.gov>
 16 *
 17 * derived in part from:
 18 */
 19/*
 20 * Generic Generic NCR5380 driver
 21 *
 22 * Copyright 1995, Russell King
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 23 */
 24
 
 
 25#include <linux/types.h>
 
 
 26#include <linux/delay.h>
 
 27#include <linux/module.h>
 
 28#include <linux/ioport.h>
 29#include <linux/init.h>
 30#include <linux/blkdev.h>
 31#include <linux/platform_device.h>
 32
 33#include <asm/io.h>
 
 
 34#include <asm/dvma.h>
 
 
 35
 
 
 
 
 
 
 
 
 
 
 
 36#include <scsi/scsi_host.h>
 
 37
 38/* minimum number of bytes to do dma on */
 39#define DMA_MIN_SIZE                    129
 40
 41/* Definitions for the core NCR5380 driver. */
 42
 43#define NCR5380_implementation_fields   /* none */
 44
 45#define NCR5380_read(reg)               in_8(hostdata->io + (reg))
 46#define NCR5380_write(reg, value)       out_8(hostdata->io + (reg), value)
 
 47
 48#define NCR5380_queue_command           sun3scsi_queue_command
 49#define NCR5380_host_reset              sun3scsi_host_reset
 50#define NCR5380_abort                   sun3scsi_abort
 51#define NCR5380_info                    sun3scsi_info
 52
 53#define NCR5380_dma_xfer_len            sun3scsi_dma_xfer_len
 54#define NCR5380_dma_recv_setup          sun3scsi_dma_count
 55#define NCR5380_dma_send_setup          sun3scsi_dma_count
 56#define NCR5380_dma_residual            sun3scsi_dma_residual
 57
 58#include "NCR5380.h"
 59
 60/* dma regs start at regbase + 8, directly after the NCR regs */
 61struct sun3_dma_regs {
 62	unsigned short dma_addr_hi; /* vme only */
 63	unsigned short dma_addr_lo; /* vme only */
 64	unsigned short dma_count_hi; /* vme only */
 65	unsigned short dma_count_lo; /* vme only */
 66	unsigned short udc_data; /* udc dma data reg (obio only) */
 67	unsigned short udc_addr; /* uda dma addr reg (obio only) */
 68	unsigned short fifo_data; /* fifo data reg,
 69	                           * holds extra byte on odd dma reads
 70	                           */
 71	unsigned short fifo_count;
 72	unsigned short csr; /* control/status reg */
 73	unsigned short bpack_hi; /* vme only */
 74	unsigned short bpack_lo; /* vme only */
 75	unsigned short ivect; /* vme only */
 76	unsigned short fifo_count_hi; /* vme only */
 77};
 78
 79/* ucd chip specific regs - live in dvma space */
 80struct sun3_udc_regs {
 81	unsigned short rsel; /* select regs to load */
 82	unsigned short addr_hi; /* high word of addr */
 83	unsigned short addr_lo; /* low word */
 84	unsigned short count; /* words to be xfer'd */
 85	unsigned short mode_hi; /* high word of channel mode */
 86	unsigned short mode_lo; /* low word of channel mode */
 87};
 88
 89/* addresses of the udc registers */
 90#define UDC_MODE 0x38
 91#define UDC_CSR 0x2e /* command/status */
 92#define UDC_CHN_HI 0x26 /* chain high word */
 93#define UDC_CHN_LO 0x22 /* chain lo word */
 94#define UDC_CURA_HI 0x1a /* cur reg A high */
 95#define UDC_CURA_LO 0x0a /* cur reg A low */
 96#define UDC_CURB_HI 0x12 /* cur reg B high */
 97#define UDC_CURB_LO 0x02 /* cur reg B low */
 98#define UDC_MODE_HI 0x56 /* mode reg high */
 99#define UDC_MODE_LO 0x52 /* mode reg low */
100#define UDC_COUNT 0x32 /* words to xfer */
101
102/* some udc commands */
103#define UDC_RESET 0
104#define UDC_CHN_START 0xa0 /* start chain */
105#define UDC_INT_ENABLE 0x32 /* channel 1 int on */
106
107/* udc mode words */
108#define UDC_MODE_HIWORD 0x40
109#define UDC_MODE_LSEND 0xc2
110#define UDC_MODE_LRECV 0xd2
111
112/* udc reg selections */
113#define UDC_RSEL_SEND 0x282
114#define UDC_RSEL_RECV 0x182
115
116/* bits in csr reg */
117#define CSR_DMA_ACTIVE 0x8000
118#define CSR_DMA_CONFLICT 0x4000
119#define CSR_DMA_BUSERR 0x2000
120
121#define CSR_FIFO_EMPTY 0x400 /* fifo flushed? */
122#define CSR_SDB_INT 0x200 /* sbc interrupt pending */
123#define CSR_DMA_INT 0x100 /* dma interrupt pending */
124
125#define CSR_LEFT 0xc0
126#define CSR_LEFT_3 0xc0
127#define CSR_LEFT_2 0x80
128#define CSR_LEFT_1 0x40
129#define CSR_PACK_ENABLE 0x20
130
131#define CSR_DMA_ENABLE 0x10
132
133#define CSR_SEND 0x8 /* 1 = send  0 = recv */
134#define CSR_FIFO 0x2 /* reset fifo */
135#define CSR_INTR 0x4 /* interrupt enable */
136#define CSR_SCSI 0x1
137
138#define VME_DATA24 0x3d00
139
140extern int sun3_map_test(unsigned long, char *);
 
 
141
142static int setup_can_queue = -1;
143module_param(setup_can_queue, int, 0);
144static int setup_cmd_per_lun = -1;
145module_param(setup_cmd_per_lun, int, 0);
146static int setup_sg_tablesize = -1;
147module_param(setup_sg_tablesize, int, 0);
 
 
 
 
148static int setup_hostid = -1;
149module_param(setup_hostid, int, 0);
150
 
 
 
 
151/* ms to wait after hitting dma regs */
152#define SUN3_DMA_DELAY 10
153
154/* dvma buffer to allocate -- 32k should hopefully be more than sufficient */
155#define SUN3_DVMA_BUFSIZE 0xe000
156
157static struct scsi_cmnd *sun3_dma_setup_done;
 
 
 
158static volatile struct sun3_dma_regs *dregs;
159static struct sun3_udc_regs *udc_regs;
160static unsigned char *sun3_dma_orig_addr;
161static unsigned long sun3_dma_orig_count;
162static int sun3_dma_active;
163static unsigned long last_residual;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
165#ifndef SUN3_SCSI_VME
166/* dma controller register access functions */
167
168static inline unsigned short sun3_udc_read(unsigned char reg)
169{
170	unsigned short ret;
171
172	dregs->udc_addr = UDC_CSR;
173	udelay(SUN3_DMA_DELAY);
174	ret = dregs->udc_data;
175	udelay(SUN3_DMA_DELAY);
176	
177	return ret;
178}
179
180static inline void sun3_udc_write(unsigned short val, unsigned char reg)
181{
182	dregs->udc_addr = reg;
183	udelay(SUN3_DMA_DELAY);
184	dregs->udc_data = val;
185	udelay(SUN3_DMA_DELAY);
186}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187#endif
188
 
 
 
 
189// safe bits for the CSR
190#define CSR_GOOD 0x060f
191
192static irqreturn_t scsi_sun3_intr(int irq, void *dev)
193{
194	struct Scsi_Host *instance = dev;
195	unsigned short csr = dregs->csr;
196	int handled = 0;
197
198#ifdef SUN3_SCSI_VME
199	dregs->csr &= ~CSR_DMA_ENABLE;
200#endif
 
201
202	if(csr & ~CSR_GOOD) {
203		if (csr & CSR_DMA_BUSERR)
204			shost_printk(KERN_ERR, instance, "bus error in DMA\n");
205		if (csr & CSR_DMA_CONFLICT)
206			shost_printk(KERN_ERR, instance, "DMA conflict\n");
207		handled = 1;
208	}
209
210	if(csr & (CSR_SDB_INT | CSR_DMA_INT)) {
211		NCR5380_intr(irq, dev);
212		handled = 1;
213	}
214
215	return IRQ_RETVAL(handled);
216}
217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
218/* sun3scsi_dma_setup() -- initialize the dma controller for a read/write */
219static int sun3scsi_dma_setup(struct NCR5380_hostdata *hostdata,
220                              unsigned char *data, int count, int write_flag)
221{
 
 
 
 
 
 
 
 
222	void *addr;
223
224	if(sun3_dma_orig_addr != NULL)
225		dvma_unmap(sun3_dma_orig_addr);
226
227#ifdef SUN3_SCSI_VME
228	addr = (void *)dvma_map_vme((unsigned long) data, count);
229#else
230	addr = (void *)dvma_map((unsigned long) data, count);
231#endif
232		
233	sun3_dma_orig_addr = addr;
234	sun3_dma_orig_count = count;
235
236#ifndef SUN3_SCSI_VME
237	dregs->fifo_count = 0;
238	sun3_udc_write(UDC_RESET, UDC_CSR);
239	
240	/* reset fifo */
241	dregs->csr &= ~CSR_FIFO;
242	dregs->csr |= CSR_FIFO;
243#endif
244	
245	/* set direction */
246	if(write_flag)
247		dregs->csr |= CSR_SEND;
248	else
249		dregs->csr &= ~CSR_SEND;
250	
251#ifdef SUN3_SCSI_VME
252	dregs->csr |= CSR_PACK_ENABLE;
253
254	dregs->dma_addr_hi = ((unsigned long)addr >> 16);
255	dregs->dma_addr_lo = ((unsigned long)addr & 0xffff);
256
257	dregs->dma_count_hi = 0;
258	dregs->dma_count_lo = 0;
259	dregs->fifo_count_hi = 0;
260	dregs->fifo_count = 0;
261#else
262	/* byte count for fifo */
263	dregs->fifo_count = count;
264
265	sun3_udc_write(UDC_RESET, UDC_CSR);
266	
267	/* reset fifo */
268	dregs->csr &= ~CSR_FIFO;
269	dregs->csr |= CSR_FIFO;
270	
271	if(dregs->fifo_count != count) { 
272		shost_printk(KERN_ERR, hostdata->host,
273		             "FIFO mismatch %04x not %04x\n",
274		             dregs->fifo_count, (unsigned int) count);
275		NCR5380_dprint(NDEBUG_DMA, hostdata->host);
276	}
277
278	/* setup udc */
 
 
 
 
279	udc_regs->addr_hi = (((unsigned long)(addr) & 0xff0000) >> 8);
280	udc_regs->addr_lo = ((unsigned long)(addr) & 0xffff);
 
281	udc_regs->count = count/2; /* count in words */
282	udc_regs->mode_hi = UDC_MODE_HIWORD;
283	if(write_flag) {
284		if(count & 1)
285			udc_regs->count++;
286		udc_regs->mode_lo = UDC_MODE_LSEND;
287		udc_regs->rsel = UDC_RSEL_SEND;
288	} else {
289		udc_regs->mode_lo = UDC_MODE_LRECV;
290		udc_regs->rsel = UDC_RSEL_RECV;
291	}
292	
293	/* announce location of regs block */
294	sun3_udc_write(((dvma_vtob(udc_regs) & 0xff0000) >> 8),
295		       UDC_CHN_HI); 
296
297	sun3_udc_write((dvma_vtob(udc_regs) & 0xffff), UDC_CHN_LO);
298
299	/* set dma master on */
300	sun3_udc_write(0xd, UDC_MODE);
301
302	/* interrupt enable */
303	sun3_udc_write(UDC_INT_ENABLE, UDC_CSR);
304#endif
305	
306       	return count;
307
308}
309
310static int sun3scsi_dma_count(struct NCR5380_hostdata *hostdata,
311                              unsigned char *data, int count)
312{
313	return count;
314}
315
316static inline int sun3scsi_dma_recv_setup(struct NCR5380_hostdata *hostdata,
317                                          unsigned char *data, int count)
318{
319	return sun3scsi_dma_setup(hostdata, data, count, 0);
320}
321
322static inline int sun3scsi_dma_send_setup(struct NCR5380_hostdata *hostdata,
323                                          unsigned char *data, int count)
324{
325	return sun3scsi_dma_setup(hostdata, data, count, 1);
326}
327
328static int sun3scsi_dma_residual(struct NCR5380_hostdata *hostdata)
329{
330	return last_residual;
331}
332
333static int sun3scsi_dma_xfer_len(struct NCR5380_hostdata *hostdata,
334                                 struct scsi_cmnd *cmd)
 
335{
336	int wanted_len = cmd->SCp.this_residual;
337
338	if (wanted_len < DMA_MIN_SIZE || blk_rq_is_passthrough(cmd->request))
339		return 0;
340
341	return wanted_len;
342}
343
344static inline int sun3scsi_dma_start(unsigned long count, unsigned char *data)
345{
346#ifdef SUN3_SCSI_VME
347	unsigned short csr;
348
349	csr = dregs->csr;
350
351	dregs->dma_count_hi = (sun3_dma_orig_count >> 16);
352	dregs->dma_count_lo = (sun3_dma_orig_count & 0xffff);
353
354	dregs->fifo_count_hi = (sun3_dma_orig_count >> 16);
355	dregs->fifo_count = (sun3_dma_orig_count & 0xffff);
356
357/*	if(!(csr & CSR_DMA_ENABLE))
358 *		dregs->csr |= CSR_DMA_ENABLE;
359 */
360#else
361    sun3_udc_write(UDC_CHN_START, UDC_CSR);
362#endif
363    
364    return 0;
365}
366
367/* clean up after our dma is done */
368static int sun3scsi_dma_finish(int write_flag)
369{
370	unsigned short __maybe_unused count;
371	unsigned short fifo;
372	int ret = 0;
373	
374	sun3_dma_active = 0;
375
376#ifdef SUN3_SCSI_VME
377	dregs->csr &= ~CSR_DMA_ENABLE;
378
379	fifo = dregs->fifo_count;
380	if (write_flag) {
381		if ((fifo > 0) && (fifo < sun3_dma_orig_count))
382			fifo++;
383	}
384
385	last_residual = fifo;
386	/* empty bytes from the fifo which didn't make it */
387	if ((!write_flag) && (dregs->csr & CSR_LEFT)) {
388		unsigned char *vaddr;
389
390		vaddr = (unsigned char *)dvma_vmetov(sun3_dma_orig_addr);
391
392		vaddr += (sun3_dma_orig_count - fifo);
393		vaddr--;
394
395		switch (dregs->csr & CSR_LEFT) {
396		case CSR_LEFT_3:
397			*vaddr = (dregs->bpack_lo & 0xff00) >> 8;
398			vaddr--;
399
400		case CSR_LEFT_2:
401			*vaddr = (dregs->bpack_hi & 0x00ff);
402			vaddr--;
403
404		case CSR_LEFT_1:
405			*vaddr = (dregs->bpack_hi & 0xff00) >> 8;
406			break;
407		}
408	}
409#else
410	// check to empty the fifo on a read
411	if(!write_flag) {
412		int tmo = 20000; /* .2 sec */
413		
414		while(1) {
415			if(dregs->csr & CSR_FIFO_EMPTY)
416				break;
417
418			if(--tmo <= 0) {
419				printk("sun3scsi: fifo failed to empty!\n");
420				return 1;
421			}
422			udelay(10);
423		}
424	}
 
 
 
 
 
425
426	dregs->udc_addr = 0x32;
427	udelay(SUN3_DMA_DELAY);
428	count = 2 * dregs->udc_data;
429	udelay(SUN3_DMA_DELAY);
 
 
 
 
 
 
 
 
 
 
 
 
430
431	fifo = dregs->fifo_count;
432	last_residual = fifo;
433
434	/* empty bytes from the fifo which didn't make it */
435	if((!write_flag) && (count - fifo) == 2) {
436		unsigned short data;
437		unsigned char *vaddr;
438
439		data = dregs->fifo_data;
440		vaddr = (unsigned char *)dvma_btov(sun3_dma_orig_addr);
441		
442		vaddr += (sun3_dma_orig_count - fifo);
443
444		vaddr[-2] = (data & 0xff00) >> 8;
445		vaddr[-1] = (data & 0xff);
446	}
447#endif
448
449	dvma_unmap(sun3_dma_orig_addr);
450	sun3_dma_orig_addr = NULL;
451
452#ifdef SUN3_SCSI_VME
453	dregs->dma_addr_hi = 0;
454	dregs->dma_addr_lo = 0;
455	dregs->dma_count_hi = 0;
456	dregs->dma_count_lo = 0;
457
458	dregs->fifo_count = 0;
459	dregs->fifo_count_hi = 0;
460
461	dregs->csr &= ~CSR_SEND;
462/*	dregs->csr |= CSR_DMA_ENABLE; */
463#else
464	sun3_udc_write(UDC_RESET, UDC_CSR);
465	dregs->fifo_count = 0;
466	dregs->csr &= ~CSR_SEND;
467
468	/* reset fifo */
469	dregs->csr &= ~CSR_FIFO;
470	dregs->csr |= CSR_FIFO;
471#endif
472	
473	sun3_dma_setup_done = NULL;
474
475	return ret;
476
477}
478	
479#include "NCR5380.c"
480
481#ifdef SUN3_SCSI_VME
482#define SUN3_SCSI_NAME          "Sun3 NCR5380 VME SCSI"
483#define DRV_MODULE_NAME         "sun3_scsi_vme"
484#else
485#define SUN3_SCSI_NAME          "Sun3 NCR5380 SCSI"
486#define DRV_MODULE_NAME         "sun3_scsi"
487#endif
488
489#define PFX                     DRV_MODULE_NAME ": "
490
491static struct scsi_host_template sun3_scsi_template = {
492	.module			= THIS_MODULE,
493	.proc_name		= DRV_MODULE_NAME,
494	.name			= SUN3_SCSI_NAME,
 
 
495	.info			= sun3scsi_info,
496	.queuecommand		= sun3scsi_queue_command,
497	.eh_abort_handler	= sun3scsi_abort,
498	.eh_host_reset_handler	= sun3scsi_host_reset,
499	.can_queue		= 16,
500	.this_id		= 7,
501	.sg_tablesize		= SG_NONE,
502	.cmd_per_lun		= 2,
503	.use_clustering		= DISABLE_CLUSTERING,
504	.cmd_size		= NCR5380_CMD_SIZE,
505};
506
507static int __init sun3_scsi_probe(struct platform_device *pdev)
508{
509	struct Scsi_Host *instance;
510	struct NCR5380_hostdata *hostdata;
511	int error;
512	struct resource *irq, *mem;
513	void __iomem *ioaddr;
514	int host_flags = 0;
515#ifdef SUN3_SCSI_VME
516	int i;
517#endif
518
519	if (setup_can_queue > 0)
520		sun3_scsi_template.can_queue = setup_can_queue;
521	if (setup_cmd_per_lun > 0)
522		sun3_scsi_template.cmd_per_lun = setup_cmd_per_lun;
523	if (setup_sg_tablesize >= 0)
524		sun3_scsi_template.sg_tablesize = setup_sg_tablesize;
525	if (setup_hostid >= 0)
526		sun3_scsi_template.this_id = setup_hostid & 7;
527
528#ifdef SUN3_SCSI_VME
529	ioaddr = NULL;
530	for (i = 0; i < 2; i++) {
531		unsigned char x;
532
533		irq = platform_get_resource(pdev, IORESOURCE_IRQ, i);
534		mem = platform_get_resource(pdev, IORESOURCE_MEM, i);
535		if (!irq || !mem)
536			break;
537
538		ioaddr = sun3_ioremap(mem->start, resource_size(mem),
539		                      SUN3_PAGE_TYPE_VME16);
540		dregs = (struct sun3_dma_regs *)(ioaddr + 8);
541
542		if (sun3_map_test((unsigned long)dregs, &x)) {
543			unsigned short oldcsr;
544
545			oldcsr = dregs->csr;
546			dregs->csr = 0;
547			udelay(SUN3_DMA_DELAY);
548			if (dregs->csr == 0x1400)
549				break;
550
551			dregs->csr = oldcsr;
552		}
553
554		iounmap(ioaddr);
555		ioaddr = NULL;
556	}
557	if (!ioaddr)
558		return -ENODEV;
559#else
560	irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
561	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
562	if (!irq || !mem)
563		return -ENODEV;
564
565	ioaddr = ioremap(mem->start, resource_size(mem));
566	dregs = (struct sun3_dma_regs *)(ioaddr + 8);
567
568	udc_regs = dvma_malloc(sizeof(struct sun3_udc_regs));
569	if (!udc_regs) {
570		pr_err(PFX "couldn't allocate DVMA memory!\n");
571		iounmap(ioaddr);
572		return -ENOMEM;
573	}
574#endif
575
576	instance = scsi_host_alloc(&sun3_scsi_template,
577	                           sizeof(struct NCR5380_hostdata));
578	if (!instance) {
579		error = -ENOMEM;
580		goto fail_alloc;
581	}
582
583	instance->irq = irq->start;
584
585	hostdata = shost_priv(instance);
586	hostdata->base = mem->start;
587	hostdata->io = ioaddr;
588
589	error = NCR5380_init(instance, host_flags);
590	if (error)
591		goto fail_init;
592
593	error = request_irq(instance->irq, scsi_sun3_intr, 0,
594	                    "NCR5380", instance);
595	if (error) {
596		pr_err(PFX "scsi%d: IRQ %d not free, bailing out\n",
597		       instance->host_no, instance->irq);
598		goto fail_irq;
599	}
600
601	dregs->csr = 0;
602	udelay(SUN3_DMA_DELAY);
603	dregs->csr = CSR_SCSI | CSR_FIFO | CSR_INTR;
604	udelay(SUN3_DMA_DELAY);
605	dregs->fifo_count = 0;
606#ifdef SUN3_SCSI_VME
607	dregs->fifo_count_hi = 0;
608	dregs->dma_addr_hi = 0;
609	dregs->dma_addr_lo = 0;
610	dregs->dma_count_hi = 0;
611	dregs->dma_count_lo = 0;
612
613	dregs->ivect = VME_DATA24 | (instance->irq & 0xff);
614#endif
615
616	NCR5380_maybe_reset_bus(instance);
617
618	error = scsi_add_host(instance, NULL);
619	if (error)
620		goto fail_host;
621
622	platform_set_drvdata(pdev, instance);
623
624	scsi_scan_host(instance);
625	return 0;
626
627fail_host:
628	free_irq(instance->irq, instance);
629fail_irq:
630	NCR5380_exit(instance);
631fail_init:
632	scsi_host_put(instance);
633fail_alloc:
634	if (udc_regs)
635		dvma_free(udc_regs);
636	iounmap(ioaddr);
637	return error;
638}
639
640static int __exit sun3_scsi_remove(struct platform_device *pdev)
641{
642	struct Scsi_Host *instance = platform_get_drvdata(pdev);
643	struct NCR5380_hostdata *hostdata = shost_priv(instance);
644	void __iomem *ioaddr = hostdata->io;
645
646	scsi_remove_host(instance);
647	free_irq(instance->irq, instance);
648	NCR5380_exit(instance);
649	scsi_host_put(instance);
650	if (udc_regs)
651		dvma_free(udc_regs);
652	iounmap(ioaddr);
653	return 0;
654}
655
656static struct platform_driver sun3_scsi_driver = {
657	.remove = __exit_p(sun3_scsi_remove),
658	.driver = {
659		.name	= DRV_MODULE_NAME,
660	},
661};
662
663module_platform_driver_probe(sun3_scsi_driver, sun3_scsi_probe);
664
665MODULE_ALIAS("platform:" DRV_MODULE_NAME);
666MODULE_LICENSE("GPL");