Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic Generic NCR5380 driver |
| 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 |
| 12 | * |
| 13 | * NCR53C400A extensions (c) 1996, Ingmar Baumgart |
| 14 | * ingmar@gonzo.schwaben.de |
| 15 | * |
| 16 | * DTC3181E extensions (c) 1997, Ronald van Cuijlenborg |
| 17 | * ronald.van.cuijlenborg@tip.nl or nutty@dds.nl |
| 18 | * |
| 19 | * Added ISAPNP support for DTC436 adapters, |
| 20 | * Thomas Sailer, sailer@ife.ee.ethz.ch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * TODO : flesh out DMA support, find some one actually using this (I have |
| 25 | * a memory mapped Trantor board that works fine) |
| 26 | */ |
| 27 | |
| 28 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * The card is detected and initialized in one of several ways : |
| 30 | * 1. With command line overrides - NCR5380=port,irq may be |
| 31 | * used on the LILO command line to override the defaults. |
| 32 | * |
| 33 | * 2. With the GENERIC_NCR5380_OVERRIDE compile time define. This is |
| 34 | * specified as an array of address, irq, dma, board tuples. Ie, for |
| 35 | * one board at 0x350, IRQ5, no dma, I could say |
| 36 | * -DGENERIC_NCR5380_OVERRIDE={{0xcc000, 5, DMA_NONE, BOARD_NCR5380}} |
| 37 | * |
| 38 | * -1 should be specified for no or DMA interrupt, -2 to autoprobe for an |
| 39 | * IRQ line if overridden on the command line. |
| 40 | * |
| 41 | * 3. When included as a module, with arguments passed on the command line: |
| 42 | * ncr_irq=xx the interrupt |
| 43 | * ncr_addr=xx the port or base address (for port or memory |
| 44 | * mapped, resp.) |
| 45 | * ncr_dma=xx the DMA |
| 46 | * ncr_5380=1 to set up for a NCR5380 board |
| 47 | * ncr_53c400=1 to set up for a NCR53C400 board |
| 48 | * e.g. |
| 49 | * modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1 |
| 50 | * for a port mapped NCR5380 board or |
| 51 | * modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1 |
| 52 | * for a memory mapped NCR53C400 board with interrupts disabled. |
| 53 | * |
| 54 | * 255 should be specified for no or DMA interrupt, 254 to autoprobe for an |
| 55 | * IRQ line if overridden on the command line. |
| 56 | * |
| 57 | */ |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #define AUTOPROBE_IRQ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
| 61 | #ifdef CONFIG_SCSI_GENERIC_NCR53C400 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define PSEUDO_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #endif |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #include <linux/blkdev.h> |
Finn Thain | 161c005 | 2016-01-03 16:05:46 +1100 | [diff] [blame] | 67 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #include <scsi/scsi_host.h> |
| 69 | #include "g_NCR5380.h" |
| 70 | #include "NCR5380.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | #include <linux/init.h> |
| 72 | #include <linux/ioport.h> |
| 73 | #include <linux/isapnp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #include <linux/interrupt.h> |
| 75 | |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 76 | static int ncr_irq; |
| 77 | static int ncr_dma; |
| 78 | static int ncr_addr; |
| 79 | static int ncr_5380; |
| 80 | static int ncr_53c400; |
| 81 | static int ncr_53c400a; |
| 82 | static int dtc_3181e; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 83 | static int hp_c2502; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | static struct override { |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 86 | NCR5380_map_type NCR5380_map_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | int irq; |
| 88 | int dma; |
| 89 | int board; /* Use NCR53c400, Ricoh, etc. extensions ? */ |
| 90 | } overrides |
| 91 | #ifdef GENERIC_NCR5380_OVERRIDE |
| 92 | [] __initdata = GENERIC_NCR5380_OVERRIDE; |
| 93 | #else |
| 94 | [1] __initdata = { { 0,},}; |
| 95 | #endif |
| 96 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 97 | #define NO_OVERRIDES ARRAY_SIZE(overrides) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 99 | #ifndef MODULE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | /** |
| 102 | * internal_setup - handle lilo command string override |
| 103 | * @board: BOARD_* identifier for the board |
| 104 | * @str: unused |
| 105 | * @ints: numeric parameters |
| 106 | * |
| 107 | * Do LILO command line initialization of the overrides array. Display |
| 108 | * errors when needed |
| 109 | * |
| 110 | * Locks: none |
| 111 | */ |
| 112 | |
| 113 | static void __init internal_setup(int board, char *str, int *ints) |
| 114 | { |
Finn Thain | d5f7e65 | 2016-01-03 16:05:03 +1100 | [diff] [blame] | 115 | static int commandline_current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | switch (board) { |
| 117 | case BOARD_NCR5380: |
| 118 | if (ints[0] != 2 && ints[0] != 3) { |
| 119 | printk(KERN_ERR "generic_NCR5380_setup : usage ncr5380=" STRVAL(NCR5380_map_name) ",irq,dma\n"); |
| 120 | return; |
| 121 | } |
| 122 | break; |
| 123 | case BOARD_NCR53C400: |
| 124 | if (ints[0] != 2) { |
| 125 | printk(KERN_ERR "generic_NCR53C400_setup : usage ncr53c400=" STRVAL(NCR5380_map_name) ",irq\n"); |
| 126 | return; |
| 127 | } |
| 128 | break; |
| 129 | case BOARD_NCR53C400A: |
| 130 | if (ints[0] != 2) { |
| 131 | printk(KERN_ERR "generic_NCR53C400A_setup : usage ncr53c400a=" STRVAL(NCR5380_map_name) ",irq\n"); |
| 132 | return; |
| 133 | } |
| 134 | break; |
| 135 | case BOARD_DTC3181E: |
| 136 | if (ints[0] != 2) { |
| 137 | printk("generic_DTC3181E_setup : usage dtc3181e=" STRVAL(NCR5380_map_name) ",irq\n"); |
| 138 | return; |
| 139 | } |
| 140 | break; |
| 141 | } |
| 142 | |
| 143 | if (commandline_current < NO_OVERRIDES) { |
| 144 | overrides[commandline_current].NCR5380_map_name = (NCR5380_map_type) ints[1]; |
| 145 | overrides[commandline_current].irq = ints[2]; |
| 146 | if (ints[0] == 3) |
| 147 | overrides[commandline_current].dma = ints[3]; |
| 148 | else |
| 149 | overrides[commandline_current].dma = DMA_NONE; |
| 150 | overrides[commandline_current].board = board; |
| 151 | ++commandline_current; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | |
| 156 | /** |
| 157 | * do_NCR53C80_setup - set up entry point |
| 158 | * @str: unused |
| 159 | * |
| 160 | * Setup function invoked at boot to parse the ncr5380= command |
| 161 | * line. |
| 162 | */ |
| 163 | |
| 164 | static int __init do_NCR5380_setup(char *str) |
| 165 | { |
| 166 | int ints[10]; |
| 167 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 168 | get_options(str, ARRAY_SIZE(ints), ints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | internal_setup(BOARD_NCR5380, str, ints); |
| 170 | return 1; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * do_NCR53C400_setup - set up entry point |
| 175 | * @str: unused |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 176 | * @ints: integer parameters from kernel setup code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * |
| 178 | * Setup function invoked at boot to parse the ncr53c400= command |
| 179 | * line. |
| 180 | */ |
| 181 | |
| 182 | static int __init do_NCR53C400_setup(char *str) |
| 183 | { |
| 184 | int ints[10]; |
| 185 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 186 | get_options(str, ARRAY_SIZE(ints), ints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | internal_setup(BOARD_NCR53C400, str, ints); |
| 188 | return 1; |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * do_NCR53C400A_setup - set up entry point |
| 193 | * @str: unused |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 194 | * @ints: integer parameters from kernel setup code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | * |
| 196 | * Setup function invoked at boot to parse the ncr53c400a= command |
| 197 | * line. |
| 198 | */ |
| 199 | |
| 200 | static int __init do_NCR53C400A_setup(char *str) |
| 201 | { |
| 202 | int ints[10]; |
| 203 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 204 | get_options(str, ARRAY_SIZE(ints), ints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | internal_setup(BOARD_NCR53C400A, str, ints); |
| 206 | return 1; |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * do_DTC3181E_setup - set up entry point |
| 211 | * @str: unused |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 212 | * @ints: integer parameters from kernel setup code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | * |
| 214 | * Setup function invoked at boot to parse the dtc3181e= command |
| 215 | * line. |
| 216 | */ |
| 217 | |
| 218 | static int __init do_DTC3181E_setup(char *str) |
| 219 | { |
| 220 | int ints[10]; |
| 221 | |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 222 | get_options(str, ARRAY_SIZE(ints), ints); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | internal_setup(BOARD_DTC3181E, str, ints); |
| 224 | return 1; |
| 225 | } |
| 226 | |
| 227 | #endif |
| 228 | |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 229 | #ifndef SCSI_G_NCR5380_MEM |
| 230 | /* |
| 231 | * Configure I/O address of 53C400A or DTC436 by writing magic numbers |
| 232 | * to ports 0x779 and 0x379. |
| 233 | */ |
| 234 | static void magic_configure(int idx, u8 irq, u8 magic[]) |
| 235 | { |
| 236 | u8 cfg = 0; |
| 237 | |
| 238 | outb(magic[0], 0x779); |
| 239 | outb(magic[1], 0x379); |
| 240 | outb(magic[2], 0x379); |
| 241 | outb(magic[3], 0x379); |
| 242 | outb(magic[4], 0x379); |
| 243 | |
| 244 | /* allowed IRQs for HP C2502 */ |
| 245 | if (irq != 2 && irq != 3 && irq != 4 && irq != 5 && irq != 7) |
| 246 | irq = 0; |
| 247 | if (idx >= 0 && idx <= 7) |
| 248 | cfg = 0x80 | idx | (irq << 4); |
| 249 | outb(cfg, 0x379); |
| 250 | } |
| 251 | #endif |
| 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | /** |
| 254 | * generic_NCR5380_detect - look for NCR5380 controllers |
| 255 | * @tpnt: the scsi template |
| 256 | * |
| 257 | * Scan for the present of NCR5380, NCR53C400, NCR53C400A, DTC3181E |
| 258 | * and DTC436(ISAPnP) controllers. If overrides have been set we use |
| 259 | * them. |
| 260 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | * Locks: none |
| 262 | */ |
| 263 | |
Finn Thain | ed8b9e7 | 2014-11-12 16:11:51 +1100 | [diff] [blame] | 264 | static int __init generic_NCR5380_detect(struct scsi_host_template *tpnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Finn Thain | d5f7e65 | 2016-01-03 16:05:03 +1100 | [diff] [blame] | 266 | static int current_override; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 267 | int count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | unsigned int *ports; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 269 | u8 *magic = NULL; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 270 | #ifndef SCSI_G_NCR5380_MEM |
| 271 | int i; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 272 | int port_idx = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | unsigned long region_size = 16; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 274 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | static unsigned int __initdata ncr_53c400a_ports[] = { |
| 276 | 0x280, 0x290, 0x300, 0x310, 0x330, 0x340, 0x348, 0x350, 0 |
| 277 | }; |
| 278 | static unsigned int __initdata dtc_3181e_ports[] = { |
| 279 | 0x220, 0x240, 0x280, 0x2a0, 0x2c0, 0x300, 0x320, 0x340, 0 |
| 280 | }; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 281 | static u8 ncr_53c400a_magic[] __initdata = { /* 53C400A & DTC436 */ |
| 282 | 0x59, 0xb9, 0xc5, 0xae, 0xa6 |
| 283 | }; |
| 284 | static u8 hp_c2502_magic[] __initdata = { /* HP C2502 */ |
| 285 | 0x0f, 0x22, 0xf0, 0x20, 0x80 |
| 286 | }; |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 287 | int flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | struct Scsi_Host *instance; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 289 | struct NCR5380_hostdata *hostdata; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 290 | #ifdef SCSI_G_NCR5380_MEM |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 291 | unsigned long base; |
| 292 | void __iomem *iomem; |
| 293 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 295 | if (ncr_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | overrides[0].irq = ncr_irq; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 297 | if (ncr_dma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | overrides[0].dma = ncr_dma; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 299 | if (ncr_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | overrides[0].NCR5380_map_name = (NCR5380_map_type) ncr_addr; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 301 | if (ncr_5380) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | overrides[0].board = BOARD_NCR5380; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 303 | else if (ncr_53c400) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | overrides[0].board = BOARD_NCR53C400; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 305 | else if (ncr_53c400a) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | overrides[0].board = BOARD_NCR53C400A; |
Finn Thain | c0965e6 | 2016-01-03 16:05:05 +1100 | [diff] [blame] | 307 | else if (dtc_3181e) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | overrides[0].board = BOARD_DTC3181E; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 309 | else if (hp_c2502) |
| 310 | overrides[0].board = BOARD_HP_C2502; |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 311 | #ifndef SCSI_G_NCR5380_MEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | if (!current_override && isapnp_present()) { |
| 313 | struct pnp_dev *dev = NULL; |
| 314 | count = 0; |
| 315 | while ((dev = pnp_find_dev(NULL, ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), dev))) { |
| 316 | if (count >= NO_OVERRIDES) |
| 317 | break; |
Ondrej Zary | c94babb | 2010-08-10 18:01:15 -0700 | [diff] [blame] | 318 | if (pnp_device_attach(dev) < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (pnp_activate_dev(dev) < 0) { |
| 321 | printk(KERN_ERR "dtc436e probe: activate failed\n"); |
| 322 | pnp_device_detach(dev); |
| 323 | continue; |
| 324 | } |
| 325 | if (!pnp_port_valid(dev, 0)) { |
| 326 | printk(KERN_ERR "dtc436e probe: no valid port\n"); |
| 327 | pnp_device_detach(dev); |
| 328 | continue; |
| 329 | } |
| 330 | if (pnp_irq_valid(dev, 0)) |
| 331 | overrides[count].irq = pnp_irq(dev, 0); |
| 332 | else |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 333 | overrides[count].irq = NO_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (pnp_dma_valid(dev, 0)) |
| 335 | overrides[count].dma = pnp_dma(dev, 0); |
| 336 | else |
| 337 | overrides[count].dma = DMA_NONE; |
| 338 | overrides[count].NCR5380_map_name = (NCR5380_map_type) pnp_port_start(dev, 0); |
| 339 | overrides[count].board = BOARD_DTC3181E; |
| 340 | count++; |
| 341 | } |
| 342 | } |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 343 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | for (count = 0; current_override < NO_OVERRIDES; ++current_override) { |
| 346 | if (!(overrides[current_override].NCR5380_map_name)) |
| 347 | continue; |
| 348 | |
| 349 | ports = NULL; |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 350 | flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | switch (overrides[current_override].board) { |
| 352 | case BOARD_NCR5380: |
| 353 | flags = FLAG_NO_PSEUDO_DMA; |
| 354 | break; |
| 355 | case BOARD_NCR53C400: |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 356 | #ifdef PSEUDO_DMA |
Finn Thain | 55181be | 2016-01-03 16:05:42 +1100 | [diff] [blame] | 357 | flags = FLAG_NO_DMA_FIXUP; |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 358 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | break; |
| 360 | case BOARD_NCR53C400A: |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 361 | flags = FLAG_NO_DMA_FIXUP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | ports = ncr_53c400a_ports; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 363 | magic = ncr_53c400a_magic; |
| 364 | break; |
| 365 | case BOARD_HP_C2502: |
| 366 | flags = FLAG_NO_DMA_FIXUP; |
| 367 | ports = ncr_53c400a_ports; |
| 368 | magic = hp_c2502_magic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | break; |
| 370 | case BOARD_DTC3181E: |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 371 | flags = FLAG_NO_DMA_FIXUP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | ports = dtc_3181e_ports; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 373 | magic = ncr_53c400a_magic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | break; |
| 375 | } |
| 376 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 377 | #ifndef SCSI_G_NCR5380_MEM |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 378 | if (ports && magic) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | /* wakeup sequence for the NCR53C400A and DTC3181E */ |
| 380 | |
| 381 | /* Disable the adapter and look for a free io port */ |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 382 | magic_configure(-1, 0, magic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | if (overrides[current_override].NCR5380_map_name != PORT_AUTO) |
| 385 | for (i = 0; ports[i]; i++) { |
| 386 | if (!request_region(ports[i], 16, "ncr53c80")) |
| 387 | continue; |
| 388 | if (overrides[current_override].NCR5380_map_name == ports[i]) |
| 389 | break; |
| 390 | release_region(ports[i], 16); |
| 391 | } else |
| 392 | for (i = 0; ports[i]; i++) { |
| 393 | if (!request_region(ports[i], 16, "ncr53c80")) |
| 394 | continue; |
| 395 | if (inb(ports[i]) == 0xff) |
| 396 | break; |
| 397 | release_region(ports[i], 16); |
| 398 | } |
| 399 | if (ports[i]) { |
| 400 | /* At this point we have our region reserved */ |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 401 | magic_configure(i, 0, magic); /* no IRQ yet */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | outb(0xc0, ports[i] + 9); |
| 403 | if (inb(ports[i] + 9) != 0x80) |
| 404 | continue; |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 405 | overrides[current_override].NCR5380_map_name = ports[i]; |
| 406 | port_idx = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } else |
| 408 | continue; |
| 409 | } |
| 410 | else |
| 411 | { |
| 412 | /* Not a 53C400A style setup - just grab */ |
| 413 | if(!(request_region(overrides[current_override].NCR5380_map_name, NCR5380_region_size, "ncr5380"))) |
| 414 | continue; |
| 415 | region_size = NCR5380_region_size; |
| 416 | } |
| 417 | #else |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 418 | base = overrides[current_override].NCR5380_map_name; |
| 419 | if (!request_mem_region(base, NCR5380_region_size, "ncr5380")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | continue; |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 421 | iomem = ioremap(base, NCR5380_region_size); |
| 422 | if (!iomem) { |
| 423 | release_mem_region(base, NCR5380_region_size); |
| 424 | continue; |
| 425 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | #endif |
| 427 | instance = scsi_register(tpnt, sizeof(struct NCR5380_hostdata)); |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 428 | if (instance == NULL) |
| 429 | goto out_release; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 430 | hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 432 | #ifndef SCSI_G_NCR5380_MEM |
Finn Thain | b01ec34 | 2016-01-03 16:05:07 +1100 | [diff] [blame] | 433 | instance->io_port = overrides[current_override].NCR5380_map_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | instance->n_io_port = region_size; |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 435 | hostdata->io_width = 1; /* 8-bit PDMA by default */ |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 436 | |
| 437 | /* |
| 438 | * On NCR53C400 boards, NCR5380 registers are mapped 8 past |
| 439 | * the base address. |
| 440 | */ |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 441 | switch (overrides[current_override].board) { |
| 442 | case BOARD_NCR53C400: |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 443 | instance->io_port += 8; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 444 | hostdata->c400_ctl_status = 0; |
| 445 | hostdata->c400_blk_cnt = 1; |
| 446 | hostdata->c400_host_buf = 4; |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 447 | break; |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 448 | case BOARD_DTC3181E: |
| 449 | hostdata->io_width = 2; /* 16-bit PDMA */ |
| 450 | /* fall through */ |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 451 | case BOARD_NCR53C400A: |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 452 | case BOARD_HP_C2502: |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 453 | hostdata->c400_ctl_status = 9; |
| 454 | hostdata->c400_blk_cnt = 10; |
| 455 | hostdata->c400_host_buf = 8; |
| 456 | break; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 457 | } |
Al Viro | c818cb6 | 2006-03-24 03:15:37 -0800 | [diff] [blame] | 458 | #else |
Finn Thain | b01ec34 | 2016-01-03 16:05:07 +1100 | [diff] [blame] | 459 | instance->base = overrides[current_override].NCR5380_map_name; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 460 | hostdata->iomem = iomem; |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 461 | switch (overrides[current_override].board) { |
| 462 | case BOARD_NCR53C400: |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 463 | hostdata->c400_ctl_status = 0x100; |
| 464 | hostdata->c400_blk_cnt = 0x101; |
| 465 | hostdata->c400_host_buf = 0x104; |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 466 | break; |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 467 | case BOARD_DTC3181E: |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 468 | case BOARD_NCR53C400A: |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 469 | case BOARD_HP_C2502: |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 470 | pr_err(DRV_MODULE_NAME ": unknown register offsets\n"); |
| 471 | goto out_unregister; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 472 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | #endif |
| 474 | |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 475 | if (NCR5380_init(instance, flags)) |
| 476 | goto out_unregister; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 478 | switch (overrides[current_override].board) { |
| 479 | case BOARD_NCR53C400: |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 480 | case BOARD_DTC3181E: |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 481 | case BOARD_NCR53C400A: |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 482 | case BOARD_HP_C2502: |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 483 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
Ondrej Zary | cecf3be | 2016-01-03 16:06:16 +1100 | [diff] [blame] | 484 | } |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 485 | |
Finn Thain | b6488f9 | 2016-01-03 16:05:08 +1100 | [diff] [blame] | 486 | NCR5380_maybe_reset_bus(instance); |
| 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | if (overrides[current_override].irq != IRQ_AUTO) |
| 489 | instance->irq = overrides[current_override].irq; |
| 490 | else |
| 491 | instance->irq = NCR5380_probe_irq(instance, 0xffff); |
| 492 | |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 493 | /* Compatibility with documented NCR5380 kernel parameters */ |
| 494 | if (instance->irq == 255) |
| 495 | instance->irq = NO_IRQ; |
| 496 | |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 497 | if (instance->irq != NO_IRQ) { |
| 498 | #ifndef SCSI_G_NCR5380_MEM |
| 499 | /* set IRQ for HP C2502 */ |
| 500 | if (overrides[current_override].board == BOARD_HP_C2502) |
| 501 | magic_configure(port_idx, instance->irq, magic); |
| 502 | #endif |
Jeff Garzik | 1e64166 | 2007-11-11 19:52:05 -0500 | [diff] [blame] | 503 | if (request_irq(instance->irq, generic_NCR5380_intr, |
Michael Opdenacker | 4909cc2 | 2014-03-05 06:09:41 +0100 | [diff] [blame] | 504 | 0, "NCR5380", instance)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | printk(KERN_WARNING "scsi%d : IRQ%d not free, interrupts disabled\n", instance->host_no, instance->irq); |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 506 | instance->irq = NO_IRQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | } |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 508 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 510 | if (instance->irq == NO_IRQ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | printk(KERN_INFO "scsi%d : interrupts not enabled. for better interactive performance,\n", instance->host_no); |
| 512 | printk(KERN_INFO "scsi%d : please jumper the board for a free IRQ.\n", instance->host_no); |
| 513 | } |
| 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | ++current_override; |
| 516 | ++count; |
| 517 | } |
| 518 | return count; |
Finn Thain | 0ad0eff | 2016-01-03 16:05:21 +1100 | [diff] [blame] | 519 | |
| 520 | out_unregister: |
| 521 | scsi_unregister(instance); |
| 522 | out_release: |
| 523 | #ifndef SCSI_G_NCR5380_MEM |
| 524 | release_region(overrides[current_override].NCR5380_map_name, region_size); |
| 525 | #else |
| 526 | iounmap(iomem); |
| 527 | release_mem_region(base, NCR5380_region_size); |
| 528 | #endif |
| 529 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | * generic_NCR5380_release_resources - free resources |
| 534 | * @instance: host adapter to clean up |
| 535 | * |
| 536 | * Free the generic interface resources from this adapter. |
| 537 | * |
| 538 | * Locks: none |
| 539 | */ |
| 540 | |
Finn Thain | ed8b9e7 | 2014-11-12 16:11:51 +1100 | [diff] [blame] | 541 | static int generic_NCR5380_release_resources(struct Scsi_Host *instance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { |
Finn Thain | 22f5f10 | 2014-11-12 16:11:56 +1100 | [diff] [blame] | 543 | if (instance->irq != NO_IRQ) |
Jeff Garzik | 1e64166 | 2007-11-11 19:52:05 -0500 | [diff] [blame] | 544 | free_irq(instance->irq, instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | NCR5380_exit(instance); |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 546 | #ifndef SCSI_G_NCR5380_MEM |
Finn Thain | b01ec34 | 2016-01-03 16:05:07 +1100 | [diff] [blame] | 547 | release_region(instance->io_port, instance->n_io_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 549 | iounmap(((struct NCR5380_hostdata *)instance->hostdata)->iomem); |
Finn Thain | b01ec34 | 2016-01-03 16:05:07 +1100 | [diff] [blame] | 550 | release_mem_region(instance->base, NCR5380_region_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | #ifdef BIOSPARAM |
| 556 | /** |
| 557 | * generic_NCR5380_biosparam |
| 558 | * @disk: disk to compute geometry for |
| 559 | * @dev: device identifier for this disk |
| 560 | * @ip: sizes to fill in |
| 561 | * |
| 562 | * Generates a BIOS / DOS compatible H-C-S mapping for the specified |
| 563 | * device / size. |
| 564 | * |
| 565 | * XXX Most SCSI boards use this mapping, I could be incorrect. Someone |
| 566 | * using hard disks on a trantor should verify that this mapping |
| 567 | * corresponds to that used by the BIOS / ASPI driver by running the linux |
| 568 | * fdisk program and matching the H_C_S coordinates to what DOS uses. |
| 569 | * |
| 570 | * Locks: none |
| 571 | */ |
| 572 | |
| 573 | static int |
| 574 | generic_NCR5380_biosparam(struct scsi_device *sdev, struct block_device *bdev, |
| 575 | sector_t capacity, int *ip) |
| 576 | { |
| 577 | ip[0] = 64; |
| 578 | ip[1] = 32; |
| 579 | ip[2] = capacity >> 11; |
| 580 | return 0; |
| 581 | } |
| 582 | #endif |
| 583 | |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 584 | #ifdef PSEUDO_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
| 586 | /** |
| 587 | * NCR5380_pread - pseudo DMA read |
| 588 | * @instance: adapter to read from |
| 589 | * @dst: buffer to read into |
| 590 | * @len: buffer length |
| 591 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 592 | * Perform a pseudo DMA mode read from an NCR53C400 or equivalent |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | * controller |
| 594 | */ |
| 595 | |
| 596 | static inline int NCR5380_pread(struct Scsi_Host *instance, unsigned char *dst, int len) |
| 597 | { |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 598 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | int blocks = len / 128; |
| 600 | int start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 602 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE | CSR_TRANS_DIR); |
| 603 | NCR5380_write(hostdata->c400_blk_cnt, blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | while (1) { |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 605 | if (NCR5380_read(hostdata->c400_blk_cnt) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | break; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 607 | if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | printk(KERN_ERR "53C400r: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks); |
| 609 | return -1; |
| 610 | } |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 611 | while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) |
| 612 | ; /* FIXME - no timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 614 | #ifndef SCSI_G_NCR5380_MEM |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 615 | if (hostdata->io_width == 2) |
| 616 | insw(instance->io_port + hostdata->c400_host_buf, |
| 617 | dst + start, 64); |
| 618 | else |
| 619 | insb(instance->io_port + hostdata->c400_host_buf, |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 620 | dst + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 622 | /* implies SCSI_G_NCR5380_MEM */ |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 623 | memcpy_fromio(dst + start, |
| 624 | hostdata->iomem + NCR53C400_host_buffer, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | #endif |
| 626 | start += 128; |
| 627 | blocks--; |
| 628 | } |
| 629 | |
| 630 | if (blocks) { |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 631 | while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) |
| 632 | ; /* FIXME - no timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 634 | #ifndef SCSI_G_NCR5380_MEM |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 635 | if (hostdata->io_width == 2) |
| 636 | insw(instance->io_port + hostdata->c400_host_buf, |
| 637 | dst + start, 64); |
| 638 | else |
| 639 | insb(instance->io_port + hostdata->c400_host_buf, |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 640 | dst + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 642 | /* implies SCSI_G_NCR5380_MEM */ |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 643 | memcpy_fromio(dst + start, |
| 644 | hostdata->iomem + NCR53C400_host_buffer, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | #endif |
| 646 | start += 128; |
| 647 | blocks--; |
| 648 | } |
| 649 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 650 | if (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | printk("53C400r: no 53C80 gated irq after transfer"); |
| 652 | |
Ondrej Zary | 42fc637 | 2016-01-03 16:06:18 +1100 | [diff] [blame] | 653 | /* wait for 53C80 registers to be available */ |
| 654 | while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | ; |
Ondrej Zary | 42fc637 | 2016-01-03 16:06:18 +1100 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) |
| 658 | printk(KERN_ERR "53C400r: no end dma signal\n"); |
| 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | return 0; |
| 661 | } |
| 662 | |
| 663 | /** |
| 664 | * NCR5380_write - pseudo DMA write |
| 665 | * @instance: adapter to read from |
| 666 | * @dst: buffer to read into |
| 667 | * @len: buffer length |
| 668 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 669 | * Perform a pseudo DMA mode read from an NCR53C400 or equivalent |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | * controller |
| 671 | */ |
| 672 | |
| 673 | static inline int NCR5380_pwrite(struct Scsi_Host *instance, unsigned char *src, int len) |
| 674 | { |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 675 | struct NCR5380_hostdata *hostdata = shost_priv(instance); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | int blocks = len / 128; |
| 677 | int start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 679 | NCR5380_write(hostdata->c400_ctl_status, CSR_BASE); |
| 680 | NCR5380_write(hostdata->c400_blk_cnt, blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | while (1) { |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 682 | if (NCR5380_read(hostdata->c400_ctl_status) & CSR_GATED_53C80_IRQ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | printk(KERN_ERR "53C400w: Got 53C80_IRQ start=%d, blocks=%d\n", start, blocks); |
| 684 | return -1; |
| 685 | } |
| 686 | |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 687 | if (NCR5380_read(hostdata->c400_blk_cnt) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | break; |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 689 | while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | ; // FIXME - timeout |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 691 | #ifndef SCSI_G_NCR5380_MEM |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 692 | if (hostdata->io_width == 2) |
| 693 | outsw(instance->io_port + hostdata->c400_host_buf, |
| 694 | src + start, 64); |
| 695 | else |
| 696 | outsb(instance->io_port + hostdata->c400_host_buf, |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 697 | src + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 699 | /* implies SCSI_G_NCR5380_MEM */ |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 700 | memcpy_toio(hostdata->iomem + NCR53C400_host_buffer, |
| 701 | src + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | #endif |
| 703 | start += 128; |
| 704 | blocks--; |
| 705 | } |
| 706 | if (blocks) { |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 707 | while (NCR5380_read(hostdata->c400_ctl_status) & CSR_HOST_BUF_NOT_RDY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | ; // FIXME - no timeout |
| 709 | |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 710 | #ifndef SCSI_G_NCR5380_MEM |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 711 | if (hostdata->io_width == 2) |
| 712 | outsw(instance->io_port + hostdata->c400_host_buf, |
| 713 | src + start, 64); |
| 714 | else |
| 715 | outsb(instance->io_port + hostdata->c400_host_buf, |
Ondrej Zary | 1215079 | 2016-01-03 16:06:15 +1100 | [diff] [blame] | 716 | src + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | #else |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 718 | /* implies SCSI_G_NCR5380_MEM */ |
Finn Thain | 54d8fe4 | 2016-01-03 16:05:06 +1100 | [diff] [blame] | 719 | memcpy_toio(hostdata->iomem + NCR53C400_host_buffer, |
| 720 | src + start, 128); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | #endif |
| 722 | start += 128; |
| 723 | blocks--; |
| 724 | } |
| 725 | |
Ondrej Zary | 42fc637 | 2016-01-03 16:06:18 +1100 | [diff] [blame] | 726 | /* wait for 53C80 registers to be available */ |
| 727 | while (!(NCR5380_read(hostdata->c400_ctl_status) & CSR_53C80_REG)) { |
Ondrej Zary | aeb5115 | 2016-01-03 16:06:17 +1100 | [diff] [blame] | 728 | udelay(4); /* DTC436 chip hangs without this */ |
| 729 | /* FIXME - no timeout */ |
| 730 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | if (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_END_DMA_TRANSFER)) { |
| 733 | printk(KERN_ERR "53C400w: no end dma signal\n"); |
| 734 | } |
Ondrej Zary | 42fc637 | 2016-01-03 16:06:18 +1100 | [diff] [blame] | 735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT)) |
| 737 | ; // TIMEOUT |
| 738 | return 0; |
| 739 | } |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 740 | |
| 741 | static int generic_NCR5380_dma_xfer_len(struct scsi_cmnd *cmd) |
| 742 | { |
| 743 | int transfersize = cmd->transfersize; |
| 744 | |
| 745 | /* Limit transfers to 32K, for xx400 & xx406 |
| 746 | * pseudoDMA that transfers in 128 bytes blocks. |
| 747 | */ |
| 748 | if (transfersize > 32 * 1024 && cmd->SCp.this_residual && |
| 749 | !(cmd->SCp.this_residual % transfersize)) |
| 750 | transfersize = 32 * 1024; |
| 751 | |
Ondrej Zary | f039462 | 2016-01-03 16:06:14 +1100 | [diff] [blame] | 752 | /* 53C400 datasheet: non-modulo-128-byte transfers should use PIO */ |
| 753 | if (transfersize % 128) |
| 754 | transfersize = 0; |
| 755 | |
Finn Thain | ff3d457 | 2016-01-03 16:05:25 +1100 | [diff] [blame] | 756 | return transfersize; |
| 757 | } |
| 758 | |
Finn Thain | 4d8c08c | 2016-01-03 16:05:09 +1100 | [diff] [blame] | 759 | #endif /* PSEUDO_DMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
| 761 | /* |
| 762 | * Include the NCR5380 core code that we build our driver around |
| 763 | */ |
| 764 | |
| 765 | #include "NCR5380.c" |
| 766 | |
Christoph Hellwig | d0be4a7d | 2005-10-31 18:31:40 +0100 | [diff] [blame] | 767 | static struct scsi_host_template driver_template = { |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 768 | .proc_name = DRV_MODULE_NAME, |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 769 | .name = "Generic NCR5380/NCR53C400 SCSI", |
| 770 | .detect = generic_NCR5380_detect, |
| 771 | .release = generic_NCR5380_release_resources, |
| 772 | .info = generic_NCR5380_info, |
| 773 | .queuecommand = generic_NCR5380_queue_command, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | .eh_abort_handler = generic_NCR5380_abort, |
| 775 | .eh_bus_reset_handler = generic_NCR5380_bus_reset, |
Finn Thain | aa2e2cb | 2016-01-03 16:05:48 +1100 | [diff] [blame] | 776 | .bios_param = NCR5380_BIOSPARAM, |
| 777 | .can_queue = 16, |
| 778 | .this_id = 7, |
| 779 | .sg_tablesize = SG_ALL, |
| 780 | .cmd_per_lun = 2, |
| 781 | .use_clustering = DISABLE_CLUSTERING, |
Finn Thain | 32b26a1 | 2016-01-03 16:05:58 +1100 | [diff] [blame] | 782 | .cmd_size = NCR5380_CMD_SIZE, |
Finn Thain | 0a4e361 | 2016-01-03 16:06:07 +1100 | [diff] [blame] | 783 | .max_sectors = 128, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | }; |
Finn Thain | 161c005 | 2016-01-03 16:05:46 +1100 | [diff] [blame] | 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | #include "scsi_module.c" |
| 787 | |
| 788 | module_param(ncr_irq, int, 0); |
| 789 | module_param(ncr_dma, int, 0); |
| 790 | module_param(ncr_addr, int, 0); |
| 791 | module_param(ncr_5380, int, 0); |
| 792 | module_param(ncr_53c400, int, 0); |
| 793 | module_param(ncr_53c400a, int, 0); |
| 794 | module_param(dtc_3181e, int, 0); |
Ondrej Zary | c6084cb | 2016-01-03 16:06:19 +1100 | [diff] [blame] | 795 | module_param(hp_c2502, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | MODULE_LICENSE("GPL"); |
| 797 | |
Geert Uytterhoeven | b026e8e | 2015-01-03 23:00:16 +0100 | [diff] [blame] | 798 | #if !defined(SCSI_G_NCR5380_MEM) && defined(MODULE) |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 799 | static struct isapnp_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | { |
| 801 | ISAPNP_ANY_ID, ISAPNP_ANY_ID, |
| 802 | ISAPNP_VENDOR('D', 'T', 'C'), ISAPNP_FUNCTION(0x436e), |
| 803 | 0}, |
| 804 | {0} |
| 805 | }; |
| 806 | |
| 807 | MODULE_DEVICE_TABLE(isapnp, id_table); |
Ondrej Zary | 702a98c | 2010-08-10 18:01:16 -0700 | [diff] [blame] | 808 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | |
| 810 | __setup("ncr5380=", do_NCR5380_setup); |
| 811 | __setup("ncr53c400=", do_NCR53C400_setup); |
| 812 | __setup("ncr53c400a=", do_NCR53C400A_setup); |
| 813 | __setup("dtc3181e=", do_DTC3181E_setup); |