g_NCR5380.h 2.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Generic Generic NCR5380 driver defines
 *
 * Copyright 1993, Drew Eckhardt
 *	Visionary Computing
 *	(Unix and Linux consulting and custom programming)
 *	drew@colorado.edu
 *      +1 (303) 440-4894
 *
 * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin
 *    K.Lentin@cs.monash.edu.au
 */

#ifndef GENERIC_NCR5380_H
#define GENERIC_NCR5380_H

17
#ifndef SCSI_G_NCR5380_MEM
18
#define DRV_MODULE_NAME "g_NCR5380"
L
Linus Torvalds 已提交
19

20 21 22 23
#define NCR5380_read(reg) \
	inb(instance->io_port + (reg))
#define NCR5380_write(reg, value) \
	outb(value, instance->io_port + (reg))
L
Linus Torvalds 已提交
24

25 26 27
#define NCR5380_implementation_fields \
	int c400_ctl_status; \
	int c400_blk_cnt; \
O
Ondrej Zary 已提交
28 29
	int c400_host_buf; \
	int io_width;
30

L
Linus Torvalds 已提交
31
#else 
32
/* therefore SCSI_G_NCR5380_MEM */
33
#define DRV_MODULE_NAME "g_NCR5380_mmio"
L
Linus Torvalds 已提交
34 35 36

#define NCR53C400_mem_base 0x3880
#define NCR53C400_host_buffer 0x3900
37
#define NCR53C400_region_size 0x3a00
L
Linus Torvalds 已提交
38

39 40 41 42 43 44
#define NCR5380_read(reg) \
	readb(((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \
	      NCR53C400_mem_base + (reg))
#define NCR5380_write(reg, value) \
	writeb(value, ((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \
	       NCR53C400_mem_base + (reg))
L
Linus Torvalds 已提交
45 46

#define NCR5380_implementation_fields \
47
	void __iomem *iomem; \
48
	resource_size_t iomem_size; \
49 50 51
	int c400_ctl_status; \
	int c400_blk_cnt; \
	int c400_host_buf;
L
Linus Torvalds 已提交
52

53
#endif
L
Linus Torvalds 已提交
54

55
#define NCR5380_dma_xfer_len(instance, cmd, phase) \
56
        generic_NCR5380_dma_xfer_len(instance, cmd)
F
Finn Thain 已提交
57 58
#define NCR5380_dma_recv_setup		generic_NCR5380_pread
#define NCR5380_dma_send_setup		generic_NCR5380_pwrite
59
#define NCR5380_dma_residual(instance)	(0)
60

L
Linus Torvalds 已提交
61 62 63 64
#define NCR5380_intr generic_NCR5380_intr
#define NCR5380_queue_command generic_NCR5380_queue_command
#define NCR5380_abort generic_NCR5380_abort
#define NCR5380_bus_reset generic_NCR5380_bus_reset
F
Finn Thain 已提交
65
#define NCR5380_info generic_NCR5380_info
L
Linus Torvalds 已提交
66

67 68
#define NCR5380_io_delay(x)		udelay(x)

L
Linus Torvalds 已提交
69 70 71 72
#define BOARD_NCR5380	0
#define BOARD_NCR53C400	1
#define BOARD_NCR53C400A 2
#define BOARD_DTC3181E	3
O
Ondrej Zary 已提交
73
#define BOARD_HP_C2502	4
L
Linus Torvalds 已提交
74 75 76

#endif /* GENERIC_NCR5380_H */