2 * Cumana Generic NCR5380 driver defines
4 * Copyright 1993, Drew Eckhardt
6 * (Unix and Linux consulting and custom programming)
12 * For more information, please consult
15 * SCSI Protocol Controller
18 * NCR Microelectronics
19 * 1635 Aeroplaza Drive
20 * Colorado Springs, CO 80916
28 #define MACSCSI_PUBLIC_RELEASE 2
41 #define SG_TABLESIZE SG_NONE
44 #ifndef USE_TAGGED_QUEUING
45 #define USE_TAGGED_QUEUING 0
48 #include <scsi/scsicam.h>
50 #define NCR5380_implementation_fields \
53 #define NCR5380_local_declare() \
54 struct Scsi_Host *_instance
56 #define NCR5380_setup(instance) \
59 #define NCR5380_read(reg) macscsi_read(_instance, reg)
60 #define NCR5380_write(reg, value) macscsi_write(_instance, reg, value)
62 #define NCR5380_pread macscsi_pread
63 #define NCR5380_pwrite macscsi_pwrite
65 #define NCR5380_intr macscsi_intr
66 #define NCR5380_queue_command macscsi_queue_command
67 #define NCR5380_abort macscsi_abort
68 #define NCR5380_bus_reset macscsi_bus_reset
69 #define NCR5380_show_info macscsi_show_info
70 #define NCR5380_write_info macscsi_write_info
73 #endif /* MAC_NCR5380_H */