summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/eata.h
blob: 8292ef5148065053973471a87861f886f9ab1fc2 (plain)
1
2
3
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
/*
 *	eata.h - used by the low-level driver for EATA/DMA SCSI host adapters.
 */
#ifndef _EATA_H
#define _EATA_H

#include <scsi/scsicam.h>

int eata2x_detect(Scsi_Host_Template *);
int eata2x_release(struct Scsi_Host *);
int eata2x_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
int eata2x_abort(Scsi_Cmnd *);
int eata2x_reset(Scsi_Cmnd *, unsigned int);

#define EATA_VERSION "3.11.00"


#define EATA {                                                 \
		NULL, /* Ptr for modules */                    \
		NULL, /* usage count for modules */	       \
		NULL,                                          \
		NULL,                                          \
		"EATA/DMA 2.0x rev. " EATA_VERSION " ",        \
		eata2x_detect,				       \
		eata2x_release,          		       \
		NULL,					       \
		NULL,    			       	       \
		eata2x_queuecommand,			       \
		eata2x_abort,				       \
		eata2x_reset,				       \
		NULL,					       \
		scsicam_bios_param,   			       \
		0,   /* can_queue, reset by detect */          \
		7,   /* this_id, reset by detect */            \
		0,   /* sg_tablesize, reset by detect */       \
		0,   /* cmd_per_lun, reset by detect */        \
		0,   /* number of boards present */            \
		1,   /* unchecked isa dma, reset by detect */  \
		ENABLE_CLUSTERING                              \
		}
#endif