Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic Generic NCR5380 driver defines |
| 3 | * |
| 4 | * Copyright 1993, Drew Eckhardt |
| 5 | * Visionary Computing |
| 6 | * (Unix and Linux consulting and custom programming) |
| 7 | * drew@colorado.edu |
| 8 | * +1 (303) 440-4894 |
| 9 | * |
| 10 | * NCR53C400 extensions (c) 1994,1995,1996, Kevin Lentin |
| 11 | * K.Lentin@cs.monash.edu.au |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifndef GENERIC_NCR5380_H |
| 15 | #define GENERIC_NCR5380_H |
| 16 | |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 17 | #ifdef CONFIG_SCSI_GENERIC_NCR53C400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #define BIOSPARAM |
| 19 | #define NCR5380_BIOSPARAM generic_NCR5380_biosparam |
| 20 | #else |
| 21 | #define NCR5380_BIOSPARAM NULL |
| 22 | #endif |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #define __STRVAL(x) #x |
| 25 | #define STRVAL(x) __STRVAL(x) |
| 26 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 27 | #ifndef SCSI_G_NCR5380_MEM |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 28 | #define DRV_MODULE_NAME "g_NCR5380" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #define NCR5380_map_type int |
| 31 | #define NCR5380_map_name port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #define NCR53C400_register_offset 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 34 | #ifdef CONFIG_SCSI_GENERIC_NCR53C400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #define NCR5380_region_size 16 |
| 36 | #else |
| 37 | #define NCR5380_region_size 8 |
| 38 | #endif |
| 39 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 40 | #define NCR5380_read(reg) \ |
| 41 | inb(instance->io_port + (reg)) |
| 42 | #define NCR5380_write(reg, value) \ |
| 43 | outb(value, instance->io_port + (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 45 | #define NCR5380_implementation_fields /* none */ |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 48 | /* therefore SCSI_G_NCR5380_MEM */ |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 49 | #define DRV_MODULE_NAME "g_NCR5380_mmio" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | #define NCR5380_map_type unsigned long |
| 52 | #define NCR5380_map_name base |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | #define NCR53C400_register_offset 0x108 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #define NCR53C400_mem_base 0x3880 |
| 55 | #define NCR53C400_host_buffer 0x3900 |
| 56 | #define NCR5380_region_size 0x3a00 |
| 57 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 58 | #define NCR5380_read(reg) \ |
| 59 | readb(((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \ |
| 60 | NCR53C400_mem_base + (reg)) |
| 61 | #define NCR5380_write(reg, value) \ |
| 62 | writeb(value, ((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \ |
| 63 | NCR53C400_mem_base + (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | #define NCR5380_implementation_fields \ |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 66 | void __iomem *iomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 68 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 70 | #define NCR5380_dma_xfer_len(instance, cmd, phase) \ |
| 71 | generic_NCR5380_dma_xfer_len(cmd) |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define NCR5380_intr generic_NCR5380_intr |
| 74 | #define NCR5380_queue_command generic_NCR5380_queue_command |
| 75 | #define NCR5380_abort generic_NCR5380_abort |
| 76 | #define NCR5380_bus_reset generic_NCR5380_bus_reset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #define NCR5380_pread generic_NCR5380_pread |
| 78 | #define NCR5380_pwrite generic_NCR5380_pwrite |
Finn Thain | 8c32513 | 2014-11-12 16:11:58 +1100 | [diff] [blame] | 79 | #define NCR5380_info generic_NCR5380_info |
| 80 | #define NCR5380_show_info generic_NCR5380_show_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 82 | #define BOARD_NCR5380 0 |
| 83 | #define BOARD_NCR53C400 1 |
| 84 | #define BOARD_NCR53C400A 2 |
| 85 | #define BOARD_DTC3181E 3 |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | #endif /* GENERIC_NCR5380_H */ |
| 88 | |