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 | |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 33 | #ifdef CONFIG_SCSI_GENERIC_NCR53C400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #define NCR5380_region_size 16 |
| 35 | #else |
| 36 | #define NCR5380_region_size 8 |
| 37 | #endif |
| 38 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 39 | #define NCR5380_read(reg) \ |
| 40 | inb(instance->io_port + (reg)) |
| 41 | #define NCR5380_write(reg, value) \ |
| 42 | outb(value, instance->io_port + (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 44 | #define NCR5380_implementation_fields \ |
| 45 | int c400_ctl_status; \ |
| 46 | int c400_blk_cnt; \ |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 47 | int c400_host_buf; \ |
| 48 | int io_width; |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 51 | /* therefore SCSI_G_NCR5380_MEM */ |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 52 | #define DRV_MODULE_NAME "g_NCR5380_mmio" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #define NCR5380_map_type unsigned long |
| 55 | #define NCR5380_map_name base |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #define NCR53C400_mem_base 0x3880 |
| 57 | #define NCR53C400_host_buffer 0x3900 |
| 58 | #define NCR5380_region_size 0x3a00 |
| 59 | |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 60 | #define NCR5380_read(reg) \ |
| 61 | readb(((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \ |
| 62 | NCR53C400_mem_base + (reg)) |
| 63 | #define NCR5380_write(reg, value) \ |
| 64 | writeb(value, ((struct NCR5380_hostdata *)shost_priv(instance))->iomem + \ |
| 65 | NCR53C400_mem_base + (reg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | #define NCR5380_implementation_fields \ |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 68 | void __iomem *iomem; \ |
| 69 | int c400_ctl_status; \ |
| 70 | int c400_blk_cnt; \ |
| 71 | int c400_host_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 73 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 75 | #define NCR5380_dma_xfer_len(instance, cmd, phase) \ |
| 76 | generic_NCR5380_dma_xfer_len(cmd) |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | #define NCR5380_intr generic_NCR5380_intr |
| 79 | #define NCR5380_queue_command generic_NCR5380_queue_command |
| 80 | #define NCR5380_abort generic_NCR5380_abort |
| 81 | #define NCR5380_bus_reset generic_NCR5380_bus_reset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #define NCR5380_pread generic_NCR5380_pread |
| 83 | #define NCR5380_pwrite generic_NCR5380_pwrite |
Finn Thain | 8c32513 | 2014-11-12 16:11:58 +1100 | [diff] [blame] | 84 | #define NCR5380_info generic_NCR5380_info |
| 85 | #define NCR5380_show_info generic_NCR5380_show_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
| 87 | #define BOARD_NCR5380 0 |
| 88 | #define BOARD_NCR53C400 1 |
| 89 | #define BOARD_NCR53C400A 2 |
| 90 | #define BOARD_DTC3181E 3 |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 91 | #define BOARD_HP_C2502 4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #endif /* GENERIC_NCR5380_H */ |
| 94 | |