1#define PSEUDO_DMA
2#define UNSAFE
3#define PDEBUG 0
4
5
6
7
8
9
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72#include <linux/module.h>
73
74#include <linux/signal.h>
75#include <linux/proc_fs.h>
76#include <asm/io.h>
77#include <asm/dma.h>
78#include <linux/blkdev.h>
79#include <linux/delay.h>
80#include <linux/interrupt.h>
81#include <linux/stat.h>
82#include <linux/init.h>
83
84#include <scsi/scsi_host.h>
85#include "pas16.h"
86#define AUTOPROBE_IRQ
87#include "NCR5380.h"
88
89
90static unsigned short pas16_addr = 0;
91static int pas16_irq = 0;
92
93
94static const int scsi_irq_translate[] =
95 { 0, 0, 1, 2, 3, 4, 5, 6, 0, 0, 7, 8, 9, 0, 10, 11 };
96
97
98
99
100
101
102static int default_irqs[] __initdata =
103 { PAS16_DEFAULT_BOARD_1_IRQ,
104 PAS16_DEFAULT_BOARD_2_IRQ,
105 PAS16_DEFAULT_BOARD_3_IRQ,
106 PAS16_DEFAULT_BOARD_4_IRQ
107 };
108
109static struct override {
110 unsigned short io_port;
111 int irq;
112} overrides
113#ifdef PAS16_OVERRIDE
114 [] __initdata = PAS16_OVERRIDE;
115#else
116 [4] __initdata = {{0,IRQ_AUTO}, {0,IRQ_AUTO}, {0,IRQ_AUTO},
117 {0,IRQ_AUTO}};
118#endif
119
120#define NO_OVERRIDES ARRAY_SIZE(overrides)
121
122static struct base {
123 unsigned short io_port;
124 int noauto;
125} bases[] __initdata =
126 { {PAS16_DEFAULT_BASE_1, 0},
127 {PAS16_DEFAULT_BASE_2, 0},
128 {PAS16_DEFAULT_BASE_3, 0},
129 {PAS16_DEFAULT_BASE_4, 0}
130 };
131
132#define NO_BASES ARRAY_SIZE(bases)
133
134static const unsigned short pas16_offset[ 8 ] =
135 {
136 0x1c00,
137 0x1c01,
138 0x1c02,
139 0x1c03,
140 0x3c00,
141 0x3c01,
142 0x3c02,
143
144
145 0x3c03,
146
147
148 };
149
150
151
152
153
154
155
156
157
158
159
160#if 1
161#define rtrc(i) {inb(0x3da); outb(0x31, 0x3c0); outb((i), 0x3c0);}
162#else
163#define rtrc(i) {}
164#endif
165
166
167
168
169
170
171
172
173
174
175
176static void __init
177 enable_board( int board_num, unsigned short port )
178{
179 outb( 0xbc + board_num, MASTER_ADDRESS_PTR );
180 outb( port >> 2, MASTER_ADDRESS_PTR );
181}
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196static void __init
197 init_board( unsigned short io_port, int irq, int force_irq )
198{
199 unsigned int tmp;
200 unsigned int pas_irq_code;
201
202
203
204 outb( 0x30, io_port + P_TIMEOUT_COUNTER_REG );
205 outb( 0x01, io_port + P_TIMEOUT_STATUS_REG_OFFSET );
206 outb( 0x01, io_port + WAIT_STATE );
207
208 NCR5380_read( RESET_PARITY_INTERRUPT_REG );
209
210
211
212
213 pas_irq_code = ( irq < 16 ) ? scsi_irq_translate[irq] : 0;
214 tmp = inb( io_port + IO_CONFIG_3 );
215
216 if( (( tmp & 0x0f ) == pas_irq_code) && pas_irq_code > 0
217 && !force_irq )
218 {
219 printk( "pas16: WARNING: Can't use same irq as sound "
220 "driver -- interrupts disabled\n" );
221
222 outb( 0x4d, io_port + SYS_CONFIG_4 );
223 }
224 else
225 {
226 tmp = ( tmp & 0x0f ) | ( pas_irq_code << 4 );
227 outb( tmp, io_port + IO_CONFIG_3 );
228
229
230 outb( 0x6d, io_port + SYS_CONFIG_4 );
231 }
232}
233
234
235
236
237
238
239
240
241
242
243
244
245static int __init
246 pas16_hw_detect( unsigned short board_num )
247{
248 unsigned char board_rev, tmp;
249 unsigned short io_port = bases[ board_num ].io_port;
250
251
252
253
254
255
256
257
258 enable_board( board_num, io_port );
259
260
261 board_rev = inb( io_port + PCB_CONFIG );
262
263 if( board_rev == 0xff )
264 return 0;
265
266 tmp = board_rev ^ 0xe0;
267
268 outb( tmp, io_port + PCB_CONFIG );
269 tmp = inb( io_port + PCB_CONFIG );
270 outb( board_rev, io_port + PCB_CONFIG );
271
272 if( board_rev != tmp )
273 return 0;
274
275 if( ( inb( io_port + OPERATION_MODE_1 ) & 0x03 ) != 0x03 )
276 return 0;
277
278
279
280
281
282
283 outb( 0x01, io_port + WAIT_STATE );
284 NCR5380_write( MODE_REG, 0x20 );
285 if( NCR5380_read( MODE_REG ) != 0x20 )
286 return 0;
287 NCR5380_write( MODE_REG, 0x00 );
288 if( NCR5380_read( MODE_REG ) != 0x00 )
289 return 0;
290
291 return 1;
292}
293
294
295#ifndef MODULE
296
297
298
299
300
301
302
303
304
305
306static int __init pas16_setup(char *str)
307{
308 static int commandline_current = 0;
309 int i;
310 int ints[10];
311
312 get_options(str, ARRAY_SIZE(ints), ints);
313 if (ints[0] != 2)
314 printk("pas16_setup : usage pas16=io_port,irq\n");
315 else
316 if (commandline_current < NO_OVERRIDES) {
317 overrides[commandline_current].io_port = (unsigned short) ints[1];
318 overrides[commandline_current].irq = ints[2];
319 for (i = 0; i < NO_BASES; ++i)
320 if (bases[i].io_port == (unsigned short) ints[1]) {
321 bases[i].noauto = 1;
322 break;
323 }
324 ++commandline_current;
325 }
326 return 1;
327}
328
329__setup("pas16=", pas16_setup);
330#endif
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345static int __init pas16_detect(struct scsi_host_template *tpnt)
346{
347 static int current_override = 0;
348 static unsigned short current_base = 0;
349 struct Scsi_Host *instance;
350 unsigned short io_port;
351 int count;
352
353 if (pas16_addr != 0) {
354 overrides[0].io_port = pas16_addr;
355
356
357
358
359
360 for (count = 0; count < NO_BASES; ++count)
361 if (bases[count].io_port == pas16_addr) {
362 bases[count].noauto = 1;
363 break;
364 }
365 }
366 if (pas16_irq != 0)
367 overrides[0].irq = pas16_irq;
368
369 for (count = 0; current_override < NO_OVERRIDES; ++current_override) {
370 io_port = 0;
371
372 if (overrides[current_override].io_port)
373 {
374 io_port = overrides[current_override].io_port;
375 enable_board( current_override, io_port );
376 init_board( io_port, overrides[current_override].irq, 1 );
377 }
378 else
379 for (; !io_port && (current_base < NO_BASES); ++current_base) {
380#if (PDEBUG & PDEBUG_INIT)
381 printk("scsi-pas16 : probing io_port %04x\n", (unsigned int) bases[current_base].io_port);
382#endif
383 if ( !bases[current_base].noauto &&
384 pas16_hw_detect( current_base ) ){
385 io_port = bases[current_base].io_port;
386 init_board( io_port, default_irqs[ current_base ], 0 );
387#if (PDEBUG & PDEBUG_INIT)
388 printk("scsi-pas16 : detected board.\n");
389#endif
390 }
391 }
392
393
394#if defined(PDEBUG) && (PDEBUG & PDEBUG_INIT)
395 printk("scsi-pas16 : io_port = %04x\n", (unsigned int) io_port);
396#endif
397
398 if (!io_port)
399 break;
400
401 instance = scsi_register (tpnt, sizeof(struct NCR5380_hostdata));
402 if(instance == NULL)
403 break;
404
405 instance->io_port = io_port;
406
407 NCR5380_init(instance, 0);
408
409 if (overrides[current_override].irq != IRQ_AUTO)
410 instance->irq = overrides[current_override].irq;
411 else
412 instance->irq = NCR5380_probe_irq(instance, PAS16_IRQS);
413
414
415 if (instance->irq == 255)
416 instance->irq = NO_IRQ;
417
418 if (instance->irq != NO_IRQ)
419 if (request_irq(instance->irq, pas16_intr, 0,
420 "pas16", instance)) {
421 printk("scsi%d : IRQ%d not free, interrupts disabled\n",
422 instance->host_no, instance->irq);
423 instance->irq = NO_IRQ;
424 }
425
426 if (instance->irq == NO_IRQ) {
427 printk("scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no);
428 printk("scsi%d : please jumper the board for a free IRQ.\n", instance->host_no);
429
430 outb( 0x4d, io_port + SYS_CONFIG_4 );
431 outb( (inb(io_port + IO_CONFIG_3) & 0x0f), io_port + IO_CONFIG_3 );
432 }
433
434#if defined(PDEBUG) && (PDEBUG & PDEBUG_INIT)
435 printk("scsi%d : irq = %d\n", instance->host_no, instance->irq);
436#endif
437
438 ++current_override;
439 ++count;
440 }
441 return count;
442}
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464static int pas16_biosparam(struct scsi_device *sdev, struct block_device *dev,
465 sector_t capacity, int *ip)
466{
467 int size = capacity;
468 ip[0] = 64;
469 ip[1] = 32;
470 ip[2] = size >> 11;
471 if( ip[2] > 1024 ) {
472 ip[0]=255;
473 ip[1]=63;
474 ip[2]=size/(63*255);
475 if( ip[2] > 1023 )
476 ip[2] = 1023;
477 }
478
479 return 0;
480}
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495static inline int NCR5380_pread (struct Scsi_Host *instance, unsigned char *dst,
496 int len) {
497 register unsigned char *d = dst;
498 register unsigned short reg = (unsigned short) (instance->io_port +
499 P_DATA_REG_OFFSET);
500 register int i = len;
501 int ii = 0;
502 struct NCR5380_hostdata *hostdata = shost_priv(instance);
503
504 while ( !(inb(instance->io_port + P_STATUS_REG_OFFSET) & P_ST_RDY) )
505 ++ii;
506
507 insb( reg, d, i );
508
509 if ( inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
510 outb( P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
511 printk("scsi%d : watchdog timer fired in NCR5380_pread()\n",
512 instance->host_no);
513 return -1;
514 }
515 if (ii > hostdata->spin_max_r)
516 hostdata->spin_max_r = ii;
517 return 0;
518}
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533static inline int NCR5380_pwrite (struct Scsi_Host *instance, unsigned char *src,
534 int len) {
535 register unsigned char *s = src;
536 register unsigned short reg = (instance->io_port + P_DATA_REG_OFFSET);
537 register int i = len;
538 int ii = 0;
539 struct NCR5380_hostdata *hostdata = shost_priv(instance);
540
541 while ( !((inb(instance->io_port + P_STATUS_REG_OFFSET)) & P_ST_RDY) )
542 ++ii;
543
544 outsb( reg, s, i );
545
546 if (inb(instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET) & P_TS_TIM) {
547 outb( P_TS_CT, instance->io_port + P_TIMEOUT_STATUS_REG_OFFSET);
548 printk("scsi%d : watchdog timer fired in NCR5380_pwrite()\n",
549 instance->host_no);
550 return -1;
551 }
552 if (ii > hostdata->spin_max_w)
553 hostdata->spin_max_w = ii;
554 return 0;
555}
556
557#include "NCR5380.c"
558
559static int pas16_release(struct Scsi_Host *shost)
560{
561 if (shost->irq != NO_IRQ)
562 free_irq(shost->irq, shost);
563 NCR5380_exit(shost);
564 if (shost->io_port && shost->n_io_port)
565 release_region(shost->io_port, shost->n_io_port);
566 scsi_unregister(shost);
567 return 0;
568}
569
570static struct scsi_host_template driver_template = {
571 .name = "Pro Audio Spectrum-16 SCSI",
572 .detect = pas16_detect,
573 .release = pas16_release,
574 .proc_name = "pas16",
575 .show_info = pas16_show_info,
576 .write_info = pas16_write_info,
577 .info = pas16_info,
578 .queuecommand = pas16_queue_command,
579 .eh_abort_handler = pas16_abort,
580 .eh_bus_reset_handler = pas16_bus_reset,
581 .bios_param = pas16_biosparam,
582 .can_queue = CAN_QUEUE,
583 .this_id = 7,
584 .sg_tablesize = SG_ALL,
585 .cmd_per_lun = CMD_PER_LUN,
586 .use_clustering = DISABLE_CLUSTERING,
587};
588#include "scsi_module.c"
589
590#ifdef MODULE
591module_param(pas16_addr, ushort, 0);
592module_param(pas16_irq, int, 0);
593#endif
594MODULE_LICENSE("GPL");
595