ncr5380: Remove duplicate comments
[deliverable/linux.git] / drivers / scsi / pas16.c
CommitLineData
1da177e4 1#define PSEUDO_DMA
1da177e4 2#define UNSAFE /* Not unsafe for PAS16 -- use it */
44456d37 3#define PDEBUG 0
1da177e4
LT
4
5/*
6 * This driver adapted from Drew Eckhardt's Trantor T128 driver
7 *
8 * Copyright 1993, Drew Eckhardt
9 * Visionary Computing
10 * (Unix and Linux consulting and custom programming)
11 * drew@colorado.edu
12 * +1 (303) 666-5836
13 *
14 * ( Based on T128 - DISTRIBUTION RELEASE 3. )
15 *
16 * Modified to work with the Pro Audio Spectrum/Studio 16
17 * by John Weidman.
18 *
19 *
20 * For more information, please consult
21 *
22 * Media Vision
23 * (510) 770-8600
24 * (800) 348-7116
1da177e4
LT
25 */
26
27/*
1da177e4
LT
28 * The card is detected and initialized in one of several ways :
29 * 1. Autoprobe (default) - There are many different models of
30 * the Pro Audio Spectrum/Studio 16, and I only have one of
31 * them, so this may require a little tweaking. An interrupt
32 * is triggered to autoprobe for the interrupt line. Note:
33 * with the newer model boards, the interrupt is set via
34 * software after reset using the default_irq for the
35 * current board number.
36 *
37 * 2. With command line overrides - pas16=port,irq may be
38 * used on the LILO command line to override the defaults.
39 *
40 * 3. With the PAS16_OVERRIDE compile time define. This is
41 * specified as an array of address, irq tuples. Ie, for
42 * one board at the default 0x388 address, IRQ10, I could say
43 * -DPAS16_OVERRIDE={{0x388, 10}}
44 * NOTE: Untested.
45 *
46 * 4. When included as a module, with arguments passed on the command line:
47 * pas16_irq=xx the interrupt
48 * pas16_addr=xx the port
49 * e.g. "modprobe pas16 pas16_addr=0x388 pas16_irq=5"
50 *
51 * Note that if the override methods are used, place holders must
52 * be specified for other boards in the system.
53 *
54 *
55 * Configuration notes :
56 * The current driver does not support interrupt sharing with the
57 * sound portion of the card. If you use the same irq for the
58 * scsi port and sound you will have problems. Either use
59 * a different irq for the scsi port or don't use interrupts
60 * for the scsi port.
61 *
62 * If you have problems with your card not being recognized, use
63 * the LILO command line override. Try to get it recognized without
64 * interrupts. Ie, for a board at the default 0x388 base port,
65 * boot: linux pas16=0x388,255
66 *
67 * SCSI_IRQ_NONE (255) should be specified for no interrupt,
68 * IRQ_AUTO (254) to autoprobe for an IRQ line if overridden
69 * on the command line.
70 *
71 * (IRQ_AUTO == 254, SCSI_IRQ_NONE == 255 in NCR5380.h)
72 */
73
74#include <linux/module.h>
75
1da177e4
LT
76#include <linux/signal.h>
77#include <linux/proc_fs.h>
1da177e4
LT
78#include <asm/io.h>
79#include <asm/dma.h>
80#include <linux/blkdev.h>
81#include <linux/delay.h>
82#include <linux/interrupt.h>
83#include <linux/stat.h>
84#include <linux/init.h>
85
86#include "scsi.h"
87#include <scsi/scsi_host.h>
88#include "pas16.h"
89#define AUTOPROBE_IRQ
90#include "NCR5380.h"
91
92
93static int pas_maxi = 0;
94static int pas_wmaxi = 0;
95static unsigned short pas16_addr = 0;
96static int pas16_irq = 0;
97
98
408b664a 99static const int scsi_irq_translate[] =
1da177e4
LT
100 { 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 7, 8, 9, 0, 10, 11 };
101
102/* The default_irqs array contains values used to set the irq into the
103 * board via software (as must be done on newer model boards without
104 * irq jumpers on the board). The first value in the array will be
105 * assigned to logical board 0, the next to board 1, etc.
106 */
408b664a 107static int default_irqs[] __initdata =
1da177e4
LT
108 { PAS16_DEFAULT_BOARD_1_IRQ,
109 PAS16_DEFAULT_BOARD_2_IRQ,
110 PAS16_DEFAULT_BOARD_3_IRQ,
111 PAS16_DEFAULT_BOARD_4_IRQ
112 };
113
114static struct override {
115 unsigned short io_port;
116 int irq;
6391a113 117} overrides
1da177e4
LT
118#ifdef PAS16_OVERRIDE
119 [] __initdata = PAS16_OVERRIDE;
120#else
121 [4] __initdata = {{0,IRQ_AUTO}, {0,IRQ_AUTO}, {0,IRQ_AUTO},
122 {0,IRQ_AUTO}};
123#endif
124
6391a113 125#define NO_OVERRIDES ARRAY_SIZE(overrides)
1da177e4
LT
126
127static struct base {
128 unsigned short io_port;
129 int noauto;
6391a113 130} bases[] __initdata =
1da177e4
LT
131 { {PAS16_DEFAULT_BASE_1, 0},
132 {PAS16_DEFAULT_BASE_2, 0},
133 {PAS16_DEFAULT_BASE_3, 0},
134 {PAS16_DEFAULT_BASE_4, 0}
135 };
136
6391a113 137#define NO_BASES ARRAY_SIZE(bases)
1da177e4 138
408b664a 139static const unsigned short pas16_offset[ 8 ] =
1da177e4
LT
140 {
141 0x1c00, /* OUTPUT_DATA_REG */
142 0x1c01, /* INITIATOR_COMMAND_REG */
143 0x1c02, /* MODE_REG */
144 0x1c03, /* TARGET_COMMAND_REG */
145 0x3c00, /* STATUS_REG ro, SELECT_ENABLE_REG wo */
146 0x3c01, /* BUS_AND_STATUS_REG ro, START_DMA_SEND_REG wo */
147 0x3c02, /* INPUT_DATA_REGISTER ro, (N/A on PAS16 ?)
148 * START_DMA_TARGET_RECEIVE_REG wo
149 */
150 0x3c03, /* RESET_PARITY_INTERRUPT_REG ro,
151 * START_DMA_INITIATOR_RECEIVE_REG wo
152 */
153 };
154/*----------------------------------------------------------------*/
155/* the following will set the monitor border color (useful to find
156 where something crashed or gets stuck at */
157/* 1 = blue
158 2 = green
159 3 = cyan
160 4 = red
161 5 = magenta
162 6 = yellow
163 7 = white
164*/
165#if 1
166#define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
167#else
168#define rtrc(i) {}
169#endif
170
171
172/*
173 * Function : enable_board( int board_num, unsigned short port )
174 *
175 * Purpose : set address in new model board
176 *
177 * Inputs : board_num - logical board number 0-3, port - base address
178 *
179 */
180
181static void __init
182 enable_board( int board_num, unsigned short port )
183{
184 outb( 0xbc + board_num, MASTER_ADDRESS_PTR );
185 outb( port >> 2, MASTER_ADDRESS_PTR );
186}
187
188
189
190/*
191 * Function : init_board( unsigned short port, int irq )
192 *
193 * Purpose : Set the board up to handle the SCSI interface
194 *
195 * Inputs : port - base address of the board,
196 * irq - irq to assign to the SCSI port
197 * force_irq - set it even if it conflicts with sound driver
198 *
199 */
200
201static void __init
202 init_board( unsigned short io_port, int irq, int force_irq )
203{
204 unsigned int tmp;
205 unsigned int pas_irq_code;
206
207 /* Initialize the SCSI part of the board */
208
209 outb( 0x30, io_port + P_TIMEOUT_COUNTER_REG ); /* Timeout counter */
210 outb( 0x01, io_port + P_TIMEOUT_STATUS_REG_OFFSET ); /* Reset TC */
211 outb( 0x01, io_port + WAIT_STATE ); /* 1 Wait state */
212
213 NCR5380_read( RESET_PARITY_INTERRUPT_REG );
214
215 /* Set the SCSI interrupt pointer without mucking up the sound
216 * interrupt pointer in the same byte.
217 */
218 pas_irq_code = ( irq < 16 ) ? scsi_irq_translate[irq] : 0;
219 tmp = inb( io_port + IO_CONFIG_3 );
220
221 if( (( tmp & 0x0f ) == pas_irq_code) && pas_irq_code > 0
222 && !force_irq )
223 {
224 printk( "pas16: WARNING: Can't use same irq as sound "
225 "driver -- interrupts disabled\n" );
226 /* Set up the drive parameters, disable 5380 interrupts */
227 outb( 0x4d, io_port + SYS_CONFIG_4 );
228 }
229 else
230 {
231 tmp = ( tmp & 0x0f ) | ( pas_irq_code << 4 );
232 outb( tmp, io_port + IO_CONFIG_3 );
233
234 /* Set up the drive parameters and enable 5380 interrupts */
235 outb( 0x6d, io_port + SYS_CONFIG_4 );
236 }
237}
238
239
240/*
241 * Function : pas16_hw_detect( unsigned short board_num )
242 *
243 * Purpose : determine if a pas16 board is present
244 *
245 * Inputs : board_num - logical board number ( 0 - 3 )
246 *
247 * Returns : 0 if board not found, 1 if found.
248 */
249
250static int __init
251 pas16_hw_detect( unsigned short board_num )
252{
253 unsigned char board_rev, tmp;
254 unsigned short io_port = bases[ board_num ].io_port;
255
256 /* See if we can find a PAS16 board at the address associated
257 * with this logical board number.
258 */
259
260 /* First, attempt to take a newer model board out of reset and
261 * give it a base address. This shouldn't affect older boards.
262 */
263 enable_board( board_num, io_port );
264
265 /* Now see if it looks like a PAS16 board */
266 board_rev = inb( io_port + PCB_CONFIG );
267
268 if( board_rev == 0xff )
269 return 0;
270
271 tmp = board_rev ^ 0xe0;
272
273 outb( tmp, io_port + PCB_CONFIG );
274 tmp = inb( io_port + PCB_CONFIG );
275 outb( board_rev, io_port + PCB_CONFIG );
276
277 if( board_rev != tmp ) /* Not a PAS-16 */
278 return 0;
279
280 if( ( inb( io_port + OPERATION_MODE_1 ) & 0x03 ) != 0x03 )
281 return 0; /* return if no SCSI interface found */
282
283 /* Mediavision has some new model boards that return ID bits
284 * that indicate a SCSI interface, but they're not (LMS). We'll
285 * put in an additional test to try to weed them out.
286 */
287
288 outb( 0x01, io_port + WAIT_STATE ); /* 1 Wait state */
289 NCR5380_write( MODE_REG, 0x20 ); /* Is it really SCSI? */
290 if( NCR5380_read( MODE_REG ) != 0x20 ) /* Write to a reg. */
291 return 0; /* and try to read */
292 NCR5380_write( MODE_REG, 0x00 ); /* it back. */
293 if( NCR5380_read( MODE_REG ) != 0x00 )
294 return 0;
295
296 return 1;
297}
298
299
925e4610 300#ifndef MODULE
1da177e4
LT
301/*
302 * Function : pas16_setup(char *str, int *ints)
303 *
304 * Purpose : LILO command line initialization of the overrides array,
305 *
306 * Inputs : str - unused, ints - array of integer parameters with ints[0]
307 * equal to the number of ints.
308 *
309 */
310
925e4610 311static int __init pas16_setup(char *str)
1da177e4
LT
312{
313 static int commandline_current = 0;
314 int i;
925e4610
FT
315 int ints[10];
316
317 get_options(str, ARRAY_SIZE(ints), ints);
1da177e4
LT
318 if (ints[0] != 2)
319 printk("pas16_setup : usage pas16=io_port,irq\n");
320 else
321 if (commandline_current < NO_OVERRIDES) {
322 overrides[commandline_current].io_port = (unsigned short) ints[1];
323 overrides[commandline_current].irq = ints[2];
324 for (i = 0; i < NO_BASES; ++i)
325 if (bases[i].io_port == (unsigned short) ints[1]) {
326 bases[i].noauto = 1;
327 break;
328 }
329 ++commandline_current;
330 }
925e4610 331 return 1;
1da177e4
LT
332}
333
925e4610
FT
334__setup("pas16=", pas16_setup);
335#endif
336
1da177e4 337/*
d0be4a7d 338 * Function : int pas16_detect(struct scsi_host_template * tpnt)
1da177e4
LT
339 *
340 * Purpose : detects and initializes PAS16 controllers
341 * that were autoprobed, overridden on the LILO command line,
342 * or specified at compile time.
343 *
344 * Inputs : tpnt - template for this SCSI adapter.
345 *
346 * Returns : 1 if a host adapter was found, 0 if not.
347 *
348 */
349
ed8b9e7f 350static int __init pas16_detect(struct scsi_host_template *tpnt)
1da177e4
LT
351{
352 static int current_override = 0;
353 static unsigned short current_base = 0;
354 struct Scsi_Host *instance;
355 unsigned short io_port;
356 int count;
357
1da177e4
LT
358 if (pas16_addr != 0) {
359 overrides[0].io_port = pas16_addr;
360 /*
361 * This is how we avoid seeing more than
362 * one host adapter at the same I/O port.
363 * Cribbed shamelessly from pas16_setup().
364 */
365 for (count = 0; count < NO_BASES; ++count)
366 if (bases[count].io_port == pas16_addr) {
367 bases[count].noauto = 1;
368 break;
369 }
370 }
371 if (pas16_irq != 0)
372 overrides[0].irq = pas16_irq;
373
374 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
375 io_port = 0;
376
377 if (overrides[current_override].io_port)
378 {
379 io_port = overrides[current_override].io_port;
380 enable_board( current_override, io_port );
381 init_board( io_port, overrides[current_override].irq, 1 );
382 }
383 else
384 for (; !io_port && (current_base < NO_BASES); ++current_base) {
385#if (PDEBUG & PDEBUG_INIT)
386 printk("scsi-pas16 : probing io_port %04x\n", (unsigned int) bases[current_base].io_port);
387#endif
388 if ( !bases[current_base].noauto &&
389 pas16_hw_detect( current_base ) ){
390 io_port = bases[current_base].io_port;
391 init_board( io_port, default_irqs[ current_base ], 0 );
392#if (PDEBUG & PDEBUG_INIT)
393 printk("scsi-pas16 : detected board.\n");
394#endif
395 }
396 }
397
398
399#if defined(PDEBUG) && (PDEBUG & PDEBUG_INIT)
400 printk("scsi-pas16 : io_port = %04x\n", (unsigned int) io_port);
401#endif
402
403 if (!io_port)
404 break;
405
406 instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
407 if(instance == NULL)
408 break;
409
410 instance->io_port = io_port;
411
412 NCR5380_init(instance, 0);
413
414 if (overrides[current_override].irq != IRQ_AUTO)
415 instance->irq = overrides[current_override].irq;
416 else
417 instance->irq = NCR5380_probe_irq(instance, PAS16_IRQS);
418
419 if (instance->irq != SCSI_IRQ_NONE)
4909cc2b 420 if (request_irq(instance->irq, pas16_intr, 0,
1e641664 421 "pas16", instance)) {
1da177e4
LT
422 printk("scsi%d : IRQ%d not free, interrupts disabled\n",
423 instance->host_no, instance->irq);
424 instance->irq = SCSI_IRQ_NONE;
425 }
426
427 if (instance->irq == SCSI_IRQ_NONE) {
428 printk("scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
429 printk("scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
430 /* Disable 5380 interrupts, leave drive params the same */
431 outb( 0x4d, io_port + SYS_CONFIG_4 );
432 outb( (inb(io_port + IO_CONFIG_3) & 0x0f), io_port + IO_CONFIG_3 );
433 }
434
435#if defined(PDEBUG) && (PDEBUG & PDEBUG_INIT)
436 printk("scsi%d : irq = %d\n", instance->host_no, instance->irq);
437#endif
438
439 printk("scsi%d : at 0x%04x", instance->host_no, (int)
440 instance->io_port);
441 if (instance->irq == SCSI_IRQ_NONE)
442 printk (" interrupts disabled");
443 else
444 printk (" irq %d", instance->irq);
445 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
446 CAN_QUEUE, CMD_PER_LUN, PAS16_PUBLIC_RELEASE);
447 NCR5380_print_options(instance);
448 printk("\n");
449
450 ++current_override;
451 ++count;
452 }
453 return count;
454}
455
456/*
457 * Function : int pas16_biosparam(Disk *disk, struct block_device *dev, int *ip)
458 *
459 * Purpose : Generates a BIOS / DOS compatible H-C-S mapping for
460 * the specified device / size.
461 *
462 * Inputs : size = size of device in sectors (512 bytes), dev = block device
463 * major / minor, ip[] = {heads, sectors, cylinders}
464 *
465 * Returns : always 0 (success), initializes ip
466 *
467 */
468
469/*
470 * XXX Most SCSI boards use this mapping, I could be incorrect. Some one
471 * using hard disks on a trantor should verify that this mapping corresponds
472 * to that used by the BIOS / ASPI driver by running the linux fdisk program
473 * and matching the H_C_S coordinates to what DOS uses.
474 */
475
ed8b9e7f
FT
476static int pas16_biosparam(struct scsi_device *sdev, struct block_device *dev,
477 sector_t capacity, int *ip)
1da177e4
LT
478{
479 int size = capacity;
480 ip[0] = 64;
481 ip[1] = 32;
482 ip[2] = size >> 11; /* I think I have it as /(32*64) */
483 if( ip[2] > 1024 ) { /* yes, >, not >= */
484 ip[0]=255;
485 ip[1]=63;
486 ip[2]=size/(63*255);
487 if( ip[2] > 1023 ) /* yes >1023... */
488 ip[2] = 1023;
489 }
490
491 return 0;
492}
493
494/*
495 * Function : int NCR5380_pread (struct Scsi_Host *instance,
496 * unsigned char *dst, int len)
497 *
498 * Purpose : Fast 5380 pseudo-dma read function, transfers len bytes to
499 * dst
500 *
501 * Inputs : dst = destination, len = length in bytes
502 *
503 * Returns : 0 on success, non zero on a failure such as a watchdog
504 * timeout.
505 */
506
507static inline int NCR5380_pread (struct Scsi_Host *instance, unsigned char *dst,
508 int len) {
509 register unsigned char *d = dst;
510 register unsigned short reg = (unsigned short) (instance->io_port +
511 P_DATA_REG_OFFSET);
512 register int i = len;
513 int ii = 0;
514
515 while ( !(inb(instance->io_port + P_STATUS_REG_OFFSET) & P_ST_RDY) )
516 ++ii;
517
518 insb( reg, d, i );
519
520 if ( inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
521 outb( P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
522 printk("scsi%d : watchdog timer fired in NCR5380_pread()\n",
523 instance->host_no);
524 return -1;
525 }
526 if (ii > pas_maxi)
527 pas_maxi = ii;
528 return 0;
529}
530
531/*
532 * Function : int NCR5380_pwrite (struct Scsi_Host *instance,
533 * unsigned char *src, int len)
534 *
535 * Purpose : Fast 5380 pseudo-dma write function, transfers len bytes from
536 * src
537 *
538 * Inputs : src = source, len = length in bytes
539 *
540 * Returns : 0 on success, non zero on a failure such as a watchdog
541 * timeout.
542 */
543
544static inline int NCR5380_pwrite (struct Scsi_Host *instance, unsigned char *src,
545 int len) {
546 register unsigned char *s = src;
547 register unsigned short reg = (instance->io_port + P_DATA_REG_OFFSET);
548 register int i = len;
549 int ii = 0;
550
551 while ( !((inb(instance->io_port + P_STATUS_REG_OFFSET)) & P_ST_RDY) )
552 ++ii;
553
554 outsb( reg, s, i );
555
556 if (inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
557 outb( P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
558 printk("scsi%d : watchdog timer fired in NCR5380_pwrite()\n",
559 instance->host_no);
560 return -1;
561 }
562 if (ii > pas_maxi)
563 pas_wmaxi = ii;
564 return 0;
565}
566
567#include "NCR5380.c"
568
569static int pas16_release(struct Scsi_Host *shost)
570{
571 if (shost->irq)
1e641664 572 free_irq(shost->irq, shost);
1da177e4 573 NCR5380_exit(shost);
1da177e4
LT
574 if (shost->io_port && shost->n_io_port)
575 release_region(shost->io_port, shost->n_io_port);
576 scsi_unregister(shost);
577 return 0;
578}
579
d0be4a7d 580static struct scsi_host_template driver_template = {
1da177e4
LT
581 .name = "Pro Audio Spectrum-16 SCSI",
582 .detect = pas16_detect,
583 .release = pas16_release,
4d3d2a54
FT
584 .proc_name = "pas16",
585 .show_info = pas16_show_info,
586 .write_info = pas16_write_info,
1da177e4
LT
587 .queuecommand = pas16_queue_command,
588 .eh_abort_handler = pas16_abort,
589 .eh_bus_reset_handler = pas16_bus_reset,
1da177e4
LT
590 .bios_param = pas16_biosparam,
591 .can_queue = CAN_QUEUE,
592 .this_id = 7,
593 .sg_tablesize = SG_ALL,
594 .cmd_per_lun = CMD_PER_LUN,
595 .use_clustering = DISABLE_CLUSTERING,
596};
597#include "scsi_module.c"
598
599#ifdef MODULE
600module_param(pas16_addr, ushort, 0);
601module_param(pas16_irq, int, 0);
602#endif
603MODULE_LICENSE("GPL");
This page took 0.809531 seconds and 5 git commands to generate.