g_NCR5380.h 2.2 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
#ifdef CONFIG_SCSI_GENERIC_NCR53C400
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26
#define BIOSPARAM
#define NCR5380_BIOSPARAM generic_NCR5380_biosparam
#else
#define NCR5380_BIOSPARAM NULL
#endif

#define __STRVAL(x) #x
#define STRVAL(x) __STRVAL(x)

27
#ifndef SCSI_G_NCR5380_MEM
28
#define DRV_MODULE_NAME "g_NCR5380"
L
Linus Torvalds 已提交
29 30 31 32 33

#define NCR5380_map_type int
#define NCR5380_map_name port
#define NCR53C400_register_offset 0

34
#ifdef CONFIG_SCSI_GENERIC_NCR53C400
L
Linus Torvalds 已提交
35 36 37 38 39
#define NCR5380_region_size 16
#else
#define NCR5380_region_size 8
#endif

40 41 42 43
#define NCR5380_read(reg) \
	inb(instance->io_port + (reg))
#define NCR5380_write(reg, value) \
	outb(value, instance->io_port + (reg))
L
Linus Torvalds 已提交
44

45
#define NCR5380_implementation_fields /* none */
46

L
Linus Torvalds 已提交
47
#else 
48
/* therefore SCSI_G_NCR5380_MEM */
49
#define DRV_MODULE_NAME "g_NCR5380_mmio"
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57

#define NCR5380_map_type unsigned long
#define NCR5380_map_name base
#define NCR53C400_register_offset 0x108
#define NCR53C400_mem_base 0x3880
#define NCR53C400_host_buffer 0x3900
#define NCR5380_region_size 0x3a00

58 59 60 61 62 63
#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 已提交
64 65

#define NCR5380_implementation_fields \
66
    void __iomem *iomem;
L
Linus Torvalds 已提交
67

68
#endif
L
Linus Torvalds 已提交
69

70 71 72
#define NCR5380_dma_xfer_len(instance, cmd, phase) \
        generic_NCR5380_dma_xfer_len(cmd)

L
Linus Torvalds 已提交
73 74 75 76 77 78
#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
#define NCR5380_pread generic_NCR5380_pread
#define NCR5380_pwrite generic_NCR5380_pwrite
F
Finn Thain 已提交
79 80
#define NCR5380_info generic_NCR5380_info
#define NCR5380_show_info generic_NCR5380_show_info
L
Linus Torvalds 已提交
81 82 83 84 85 86 87 88

#define BOARD_NCR5380	0
#define BOARD_NCR53C400	1
#define BOARD_NCR53C400A 2
#define BOARD_DTC3181E	3

#endif /* GENERIC_NCR5380_H */