#include <linux/module.h>
#include <linux/delay.h>
#include <linux/signal.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/ioport.h>
#include <linux/pci.h>
#include <linux/proc_fs.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/blkdev.h>
#include <linux/timer.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/slab.h>
#include <asm/io.h>
#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_host.h>
#include <scsi/scsicam.h>
#include <scsi/scsi_tcq.h>
#include "tmscsim.h"
Go to the source code of this file.
|
| module_param (disable_clustering, int, S_IRUGO) |
|
| MODULE_PARM_DESC (disable_clustering,"If you experience problems with your devices, try setting to 1") |
|
| module_param_array (tmscsim, int, NULL, 0) |
|
| MODULE_PARM_DESC (tmscsim,"Host SCSI ID, Speed (0=10MHz), Device Flags, Adapter Flags, Max Tags (log2(tags)-1), DelayReset (s)") |
|
| MODULE_AUTHOR ("C.L. Huang / Kurt Garloff") |
|
| MODULE_DESCRIPTION ("SCSI host adapter driver for Tekram DC390 and other AMD53C974A based PCI SCSI adapters") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("sd,sr,sg,st") |
|
| MODULE_DEVICE_TABLE (pci, tmscsim_pci_tbl) |
|
| module_init (dc390_module_init) |
|
| module_exit (dc390_module_exit) |
|
| __setup ("tmscsim=", dc390_setup) |
|
#define DC390_BANNER "Tekram DC390/AM53C974" |
#define DC390_VERSION "2.1d 2004-05-27" |
#define REMOVABLEDEBUG |
( |
|
x | ) |
C_NOP |
MODULE_AUTHOR |
( |
"C.L. Huang / Kurt Garloff" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
pci |
, |
|
|
tmscsim_pci_tbl |
|
|
) |
| |
module_exit |
( |
dc390_module_exit |
| ) |
|
module_init |
( |
dc390_module_init |
| ) |
|
module_param |
( |
disable_clustering |
, |
|
|
int |
, |
|
|
S_IRUGO |
|
|
) |
| |
module_param_array |
( |
tmscsim |
, |
|
|
int |
, |
|
|
NULL |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
disable_clustering |
, |
|
|
"If you experience problems with your |
devices, |
|
|
try setting to 1" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
tmscsim |
, |
|
|
"Host SCSI |
ID, |
|
|
Speed(0=10MHz) |
, |
|
|
Device |
Flags, |
|
|
Adapter |
Flags, |
|
|
Max |
Tagslog2(tags)-1, |
|
|
DelayReset(s)" |
|
|
) |
| |
MODULE_SUPPORTED_DEVICE |
( |
" |
sd, |
|
|
sr |
, |
|
|
sg |
, |
|
|
st" |
|
|
) |
| |