blob: e2c187947e588d6146c464852e07735966f95145 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001README file for the Linux g_NCR5380 driver.
2
3(c) 1993 Drew Eckhard
4NCR53c400 extensions (c) 1994,1995,1996 Kevin Lentin
5
6This file documents the NCR53c400 extensions by Kevin Lentin and some
7enhancements to the NCR5380 core.
8
9This driver supports both NCR5380 and NCR53c400 cards in port or memory
10mapped modes. Currently this driver can only support one of those mapping
11modes at a time but it does support both of these chips at the same time.
12The next release of this driver will support port & memory mapped cards at
13the same time. It should be able to handle multiple different cards in the
14same machine.
15
16The drivers/scsi/Makefile has an override in it for the most common
17NCR53c400 card, the Trantor T130B in its default configuration:
18 Port: 0x350
19 IRQ : 5
20
21The NCR53c400 does not support DMA but it does have Pseudo-DMA which is
22supported by the driver.
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024This driver provides some information on what it has detected in
25/proc/scsi/g_NCR5380/x where x is the scsi card number as detected at boot
26time. More info to come in the future.
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028This driver works as a module.
29When included as a module, parameters can be passed on the insmod/modprobe
30command line:
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020031 irq=xx[,...] the interrupt(s)
32 base=xx[,...] the port or base address(es) (for port or memory mapped, resp.)
33 card=xx[,...] card type(s):
34 0 = NCR5380,
35 1 = NCR53C400,
36 2 = NCR53C400A,
37 3 = Domex Technology Corp 3181E (DTC3181E)
38 4 = Hewlett Packard C2502
39
40These old-style parameters can support only one card:
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 ncr_irq=xx the interrupt
42 ncr_addr=xx the port or base address (for port or memory
43 mapped, resp.)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 ncr_5380=1 to set up for a NCR5380 board
45 ncr_53c400=1 to set up for a NCR53C400 board
Finn Thain9c41ab22016-03-23 21:10:28 +110046 ncr_53c400a=1 to set up for a NCR53C400A board
47 dtc_3181e=1 to set up for a Domex Technology Corp 3181E board
48 hp_c2502=1 to set up for a Hewlett Packard C2502 board
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050e.g.
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020051OLD: modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1
52NEW: modprobe g_NCR5380 irq=5 base=0x350 card=0
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 for a port mapped NCR5380 board or
Ondrej Zarya8cfbca2016-09-27 21:00:25 +020054
55OLD: modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1
56NEW: modprobe g_NCR5380 irq=255 base=0xc8000 card=1
57 for a memory mapped NCR53C400 board with interrupts disabled or
58
59NEW: modprobe g_NCR5380 irq=0,7 base=0x240,0x300 card=3,4
60 for two cards: DTC3181 (in non-PnP mode) at 0x240 with no IRQ
61 and HP C2502 at 0x300 with IRQ 7
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63(255 should be specified for no or DMA interrupt, 254 to autoprobe for an
64 IRQ line if overridden on the command line.)
65
66
67Kevin Lentin
68K.Lentin@cs.monash.edu.au