Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a537cfc1
Commit
a537cfc1
authored
Apr 26, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Automerge
parents
d25c7f63
36d27b7a
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7111 additions
and
0 deletions
+7111
-0
Documentation/scsi/dc395x.txt
Documentation/scsi/dc395x.txt
+72
-0
MAINTAINERS
MAINTAINERS
+11
-0
drivers/scsi/Kconfig
drivers/scsi/Kconfig
+17
-0
drivers/scsi/Makefile
drivers/scsi/Makefile
+1
-0
drivers/scsi/dc395x.c
drivers/scsi/dc395x.c
+6351
-0
drivers/scsi/dc395x.h
drivers/scsi/dc395x.h
+659
-0
No files found.
Documentation/scsi/dc395x.txt
0 → 100644
View file @
a537cfc1
README file for the dc395x SCSI driver
==========================================
Status
------
The driver has been tested with CD-R and CD-R/W drives. These should
be safe to use. Testing with hard disks has not been done to any
great degree and caution should be exercised if you want to attempt
to use this driver with hard disks.
This is a 2.5 only driver. For a 2.4 driver please see the original
driver (which this driver started from) at
http://www.garloff.de/kurt/linux/dc395/
Problems, questions and patches should be submitted to the mailing
list. Details on the list, including archives, are available at
http://lists.twibble.org/mailman/listinfo/dc395x/
Parameters
----------
The driver uses the settings from the EEPROM set in the SCSI BIOS
setup. If there is no EEPROM, the driver uses default values.
Both can be overriden by command line parameters (module or kernel
parameters).
The syntax is as follows:
dc395x = AdapterID, SpeedIdx, DevMode, AdaptMode, Tags, DelayReset
AdapterID : Host Adapter SCSI ID
SpeedIdx : 0,1,...7 = 20,13.3,10,8,6.7,5.8,5,4 MHz [ 7]
DevMode : Bitmap for Dev Cfg [63]
AdaptMode : Bitmap for Adapter Cfg [47]
Tags : The number of tags is 1<<x, if x has been specified [ 4]
DelayReset: The seconds to not accept commands after a SCSI Reset [ 1]
DevMode bit definition:
Bit Val(hex) Val(dec) Meaning
*0 0x01 1 Parity check
*1 0x02 2 Synchronous Negotiation
*2 0x04 4 Disconnection
*3 0x08 8 Send Start command on startup. (Not used)
*4 0x10 16 Tagged Command Queueing
*5 0x20 32 Wide Negotiation
AdaptMode bit definition
Bit Val(hex) Val(dec) Meaning
*0 0x01 1 Support more than two drives. (Not used)
*1 0x02 2 Use DOS compatible mapping for HDs greater than 1GB.
*2 0x04 4 Reset SCSI Bus on startup.
*3 0x08 8 Active Negation: Improves SCSI Bus noise immunity.
4 0x10 16 Immediate return on BIOS seek command. (Not used)
(*)5 0x20 32 Check for LUNs >= 1.
If you set AdapterID to -1, the adapter will use conservative
("safe") default settings instead; more precisely, dc395x=-1 is a
shortcut for dc395x=7,4,9,15,2,10
If you specify -2 for a value, it will be ignored. You don't need to
specify all six parameters.
Copyright
---------
The driver is free software. It is protected by the GNU General Public
License (GPL). Please read it, before using this driver. It should be
included in your kernel sources and with your distribution. It carries the
filename COPYING. If you don't have it, please ask me to send you one by
email.
Note: The GNU GPL says also something about warranty and liability.
Please be aware the following: While we do my best to provide a working and
reliable driver, there is a chance, that it will kill your valuable data.
We refuse to take any responsibility for that. The driver is provided as-is
and YOU USE IT AT YOUR OWN RESPONSIBILITY.
MAINTAINERS
View file @
a537cfc1
...
@@ -505,6 +505,17 @@ W: http://www.qsl.net/dl1bke/
...
@@ -505,6 +505,17 @@ W: http://www.qsl.net/dl1bke/
L: linux-hams@vger.kernel.org
L: linux-hams@vger.kernel.org
S: Maintained
S: Maintained
DC395x SCSI driver
P: Oliver Neukum
M: oliver@neukum.name
P: Ali Akcaagac
M: aliakc@web.de
P: Jamie Lenehan
M: lenehan@twibble.org
W: http://twibble.org/dist/dc395x/
L: http://lists.twibble.org/mailman/listinfo/dc395x/
S: Maintained
DC390/AM53C974 SCSI driver
DC390/AM53C974 SCSI driver
P: Kurt Garloff
P: Kurt Garloff
M: garloff@suse.de
M: garloff@suse.de
...
...
drivers/scsi/Kconfig
View file @
a537cfc1
...
@@ -1390,6 +1390,23 @@ config SCSI_SYM53C416
...
@@ -1390,6 +1390,23 @@ config SCSI_SYM53C416
read <file:Documentation/modules.txt>. The module will be called
read <file:Documentation/modules.txt>. The module will be called
sym53c416.
sym53c416.
config SCSI_DC395x
tristate "Tekram DC395(U/UW/F) and DC315(U) SCSI support (EXPERIMENTAL)"
depends on EXPERIMENTAL && PCI && SCSI
---help---
This driver supports PCI SCSI host adapters based on the ASIC
TRM-S1040 chip, e.g Tekram DC395(U/UW/F) and DC315(U) variants.
This driver works, but is still in experimental status. So better
have a bootable disk and a backup in case of emergency.
Documentation can be found in <file:Documentation/scsi/dc395x.txt>.
If you want to compile this driver as a module ( = code which can be
inserted in and removed from the running kernel whenever you want),
say M here and read <file:Documentation/modules.txt>. The module
will be called dc395x.
config SCSI_DC390T
config SCSI_DC390T
tristate "Tekram DC390(T) and Am53/79C974 SCSI support"
tristate "Tekram DC390(T) and Am53/79C974 SCSI support"
depends on PCI && SCSI
depends on PCI && SCSI
...
...
drivers/scsi/Makefile
View file @
a537cfc1
...
@@ -88,6 +88,7 @@ obj-$(CONFIG_SCSI_7000FASST) += wd7000.o
...
@@ -88,6 +88,7 @@ obj-$(CONFIG_SCSI_7000FASST) += wd7000.o
obj-$(CONFIG_SCSI_MCA_53C9X)
+=
NCR53C9x.o mca_53c9x.o
obj-$(CONFIG_SCSI_MCA_53C9X)
+=
NCR53C9x.o mca_53c9x.o
obj-$(CONFIG_SCSI_IBMMCA)
+=
ibmmca.o
obj-$(CONFIG_SCSI_IBMMCA)
+=
ibmmca.o
obj-$(CONFIG_SCSI_EATA)
+=
eata.o
obj-$(CONFIG_SCSI_EATA)
+=
eata.o
obj-$(CONFIG_SCSI_DC395x)
+=
dc395x.o
obj-$(CONFIG_SCSI_DC390T)
+=
tmscsim.o
obj-$(CONFIG_SCSI_DC390T)
+=
tmscsim.o
obj-$(CONFIG_SCSI_AM53C974)
+=
AM53C974.o
obj-$(CONFIG_SCSI_AM53C974)
+=
AM53C974.o
obj-$(CONFIG_SCSI_MEGARAID)
+=
megaraid.o
obj-$(CONFIG_SCSI_MEGARAID)
+=
megaraid.o
...
...
drivers/scsi/dc395x.c
0 → 100644
View file @
a537cfc1
This diff is collapsed.
Click to expand it.
drivers/scsi/dc395x.h
0 → 100644
View file @
a537cfc1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment