Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family |
| 3 | * of PCI-SCSI IO processors. |
| 4 | * |
| 5 | * Copyright (C) 1999-2001 Gerard Roudier <groudier@free.fr> |
| 6 | * Copyright (c) 2003-2005 Matthew Wilcox <matthew@wil.cx> |
| 7 | * |
| 8 | * This driver is derived from the Linux sym53c8xx driver. |
| 9 | * Copyright (C) 1998-2000 Gerard Roudier |
| 10 | * |
| 11 | * The sym53c8xx driver is derived from the ncr53c8xx driver that had been |
| 12 | * a port of the FreeBSD ncr driver to Linux-1.2.13. |
| 13 | * |
| 14 | * The original ncr driver has been written for 386bsd and FreeBSD by |
| 15 | * Wolfgang Stanglmeier <wolf@cologne.de> |
| 16 | * Stefan Esser <se@mi.Uni-Koeln.de> |
| 17 | * Copyright (C) 1994 Wolfgang Stanglmeier |
| 18 | * |
| 19 | * Other major contributions: |
| 20 | * |
| 21 | * NVRAM detection and reading. |
| 22 | * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk> |
| 23 | * |
| 24 | *----------------------------------------------------------------------------- |
| 25 | * |
| 26 | * This program is free software; you can redistribute it and/or modify |
| 27 | * it under the terms of the GNU General Public License as published by |
| 28 | * the Free Software Foundation; either version 2 of the License, or |
| 29 | * (at your option) any later version. |
| 30 | * |
| 31 | * This program is distributed in the hope that it will be useful, |
| 32 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 33 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 34 | * GNU General Public License for more details. |
| 35 | * |
| 36 | * You should have received a copy of the GNU General Public License |
| 37 | * along with this program; if not, write to the Free Software |
| 38 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 39 | */ |
| 40 | #include <linux/ctype.h> |
| 41 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/module.h> |
| 43 | #include <linux/moduleparam.h> |
| 44 | #include <linux/spinlock.h> |
| 45 | #include <scsi/scsi.h> |
| 46 | #include <scsi/scsi_tcq.h> |
| 47 | #include <scsi/scsi_device.h> |
| 48 | #include <scsi/scsi_transport.h> |
| 49 | |
| 50 | #include "sym_glue.h" |
| 51 | #include "sym_nvram.h" |
| 52 | |
| 53 | #define NAME53C "sym53c" |
| 54 | #define NAME53C8XX "sym53c8xx" |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | struct sym_driver_setup sym_driver_setup = SYM_LINUX_DRIVER_SETUP; |
| 57 | unsigned int sym_debug_flags = 0; |
| 58 | |
| 59 | static char *excl_string; |
| 60 | static char *safe_string; |
| 61 | module_param_named(cmd_per_lun, sym_driver_setup.max_tag, ushort, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | module_param_named(burst, sym_driver_setup.burst_order, byte, 0); |
| 63 | module_param_named(led, sym_driver_setup.scsi_led, byte, 0); |
| 64 | module_param_named(diff, sym_driver_setup.scsi_diff, byte, 0); |
| 65 | module_param_named(irqm, sym_driver_setup.irq_mode, byte, 0); |
| 66 | module_param_named(buschk, sym_driver_setup.scsi_bus_check, byte, 0); |
| 67 | module_param_named(hostid, sym_driver_setup.host_id, byte, 0); |
| 68 | module_param_named(verb, sym_driver_setup.verbose, byte, 0); |
| 69 | module_param_named(debug, sym_debug_flags, uint, 0); |
| 70 | module_param_named(settle, sym_driver_setup.settle_delay, byte, 0); |
| 71 | module_param_named(nvram, sym_driver_setup.use_nvram, byte, 0); |
| 72 | module_param_named(excl, excl_string, charp, 0); |
| 73 | module_param_named(safe, safe_string, charp, 0); |
| 74 | |
| 75 | MODULE_PARM_DESC(cmd_per_lun, "The maximum number of tags to use by default"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | MODULE_PARM_DESC(burst, "Maximum burst. 0 to disable, 255 to read from registers"); |
| 77 | MODULE_PARM_DESC(led, "Set to 1 to enable LED support"); |
| 78 | MODULE_PARM_DESC(diff, "0 for no differential mode, 1 for BIOS, 2 for always, 3 for not GPIO3"); |
| 79 | MODULE_PARM_DESC(irqm, "0 for open drain, 1 to leave alone, 2 for totem pole"); |
| 80 | MODULE_PARM_DESC(buschk, "0 to not check, 1 for detach on error, 2 for warn on error"); |
| 81 | MODULE_PARM_DESC(hostid, "The SCSI ID to use for the host adapters"); |
| 82 | MODULE_PARM_DESC(verb, "0 for minimal verbosity, 1 for normal, 2 for excessive"); |
| 83 | MODULE_PARM_DESC(debug, "Set bits to enable debugging"); |
| 84 | MODULE_PARM_DESC(settle, "Settle delay in seconds. Default 3"); |
| 85 | MODULE_PARM_DESC(nvram, "Option currently not used"); |
| 86 | MODULE_PARM_DESC(excl, "List ioport addresses here to prevent controllers from being attached"); |
| 87 | MODULE_PARM_DESC(safe, "Set other settings to a \"safe mode\""); |
| 88 | |
| 89 | MODULE_LICENSE("GPL"); |
| 90 | MODULE_VERSION(SYM_VERSION); |
| 91 | MODULE_AUTHOR("Matthew Wilcox <matthew@wil.cx>"); |
| 92 | MODULE_DESCRIPTION("NCR, Symbios and LSI 8xx and 1010 PCI SCSI adapters"); |
| 93 | |
| 94 | static void sym2_setup_params(void) |
| 95 | { |
| 96 | char *p = excl_string; |
| 97 | int xi = 0; |
| 98 | |
| 99 | while (p && (xi < 8)) { |
| 100 | char *next_p; |
| 101 | int val = (int) simple_strtoul(p, &next_p, 0); |
| 102 | sym_driver_setup.excludes[xi++] = val; |
| 103 | p = next_p; |
| 104 | } |
| 105 | |
| 106 | if (safe_string) { |
| 107 | if (*safe_string == 'y') { |
| 108 | sym_driver_setup.max_tag = 0; |
| 109 | sym_driver_setup.burst_order = 0; |
| 110 | sym_driver_setup.scsi_led = 0; |
| 111 | sym_driver_setup.scsi_diff = 1; |
| 112 | sym_driver_setup.irq_mode = 0; |
| 113 | sym_driver_setup.scsi_bus_check = 2; |
| 114 | sym_driver_setup.host_id = 7; |
| 115 | sym_driver_setup.verbose = 2; |
| 116 | sym_driver_setup.settle_delay = 10; |
| 117 | sym_driver_setup.use_nvram = 1; |
| 118 | } else if (*safe_string != 'n') { |
| 119 | printk(KERN_WARNING NAME53C8XX "Ignoring parameter %s" |
| 120 | " passed to safe option", safe_string); |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | static struct scsi_transport_template *sym2_transport_template = NULL; |
| 126 | |
| 127 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | * Driver private area in the SCSI command structure. |
| 129 | */ |
| 130 | struct sym_ucmd { /* Override the SCSI pointer structure */ |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 131 | struct completion *eh_done; /* SCSI error handling */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | }; |
| 133 | |
| 134 | #define SYM_UCMD_PTR(cmd) ((struct sym_ucmd *)(&(cmd)->SCp)) |
| 135 | #define SYM_SOFTC_PTR(cmd) sym_get_hcb(cmd->device->host) |
| 136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | /* |
| 138 | * Complete a pending CAM CCB. |
| 139 | */ |
| 140 | void sym_xpt_done(struct sym_hcb *np, struct scsi_cmnd *cmd) |
| 141 | { |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 142 | struct sym_ucmd *ucmd = SYM_UCMD_PTR(cmd); |
| 143 | BUILD_BUG_ON(sizeof(struct scsi_pointer) < sizeof(struct sym_ucmd)); |
| 144 | |
| 145 | if (ucmd->eh_done) |
| 146 | complete(ucmd->eh_done); |
| 147 | |
Matthew Wilcox | 39c05d1 | 2007-10-05 15:55:00 -0400 | [diff] [blame] | 148 | scsi_dma_unmap(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | cmd->scsi_done(cmd); |
| 150 | } |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* |
| 153 | * Tell the SCSI layer about a BUS RESET. |
| 154 | */ |
| 155 | void sym_xpt_async_bus_reset(struct sym_hcb *np) |
| 156 | { |
| 157 | printf_notice("%s: SCSI BUS has been reset.\n", sym_name(np)); |
| 158 | np->s.settle_time = jiffies + sym_driver_setup.settle_delay * HZ; |
| 159 | np->s.settle_time_valid = 1; |
| 160 | if (sym_verbose >= 2) |
| 161 | printf_info("%s: command processing suspended for %d seconds\n", |
| 162 | sym_name(np), sym_driver_setup.settle_delay); |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Tell the SCSI layer about a BUS DEVICE RESET message sent. |
| 167 | */ |
| 168 | void sym_xpt_async_sent_bdr(struct sym_hcb *np, int target) |
| 169 | { |
| 170 | printf_notice("%s: TARGET %d has been reset.\n", sym_name(np), target); |
| 171 | } |
| 172 | |
| 173 | /* |
| 174 | * Choose the more appropriate CAM status if |
| 175 | * the IO encountered an extended error. |
| 176 | */ |
| 177 | static int sym_xerr_cam_status(int cam_status, int x_status) |
| 178 | { |
| 179 | if (x_status) { |
| 180 | if (x_status & XE_PARITY_ERR) |
| 181 | cam_status = DID_PARITY; |
| 182 | else if (x_status &(XE_EXTRA_DATA|XE_SODL_UNRUN|XE_SWIDE_OVRUN)) |
| 183 | cam_status = DID_ERROR; |
| 184 | else if (x_status & XE_BAD_PHASE) |
| 185 | cam_status = DID_ERROR; |
| 186 | else |
| 187 | cam_status = DID_ERROR; |
| 188 | } |
| 189 | return cam_status; |
| 190 | } |
| 191 | |
| 192 | /* |
| 193 | * Build CAM result for a failed or auto-sensed IO. |
| 194 | */ |
| 195 | void sym_set_cam_result_error(struct sym_hcb *np, struct sym_ccb *cp, int resid) |
| 196 | { |
| 197 | struct scsi_cmnd *cmd = cp->cmd; |
| 198 | u_int cam_status, scsi_status, drv_status; |
| 199 | |
| 200 | drv_status = 0; |
| 201 | cam_status = DID_OK; |
| 202 | scsi_status = cp->ssss_status; |
| 203 | |
| 204 | if (cp->host_flags & HF_SENSE) { |
| 205 | scsi_status = cp->sv_scsi_status; |
| 206 | resid = cp->sv_resid; |
| 207 | if (sym_verbose && cp->sv_xerr_status) |
| 208 | sym_print_xerr(cmd, cp->sv_xerr_status); |
| 209 | if (cp->host_status == HS_COMPLETE && |
| 210 | cp->ssss_status == S_GOOD && |
| 211 | cp->xerr_status == 0) { |
| 212 | cam_status = sym_xerr_cam_status(DID_OK, |
| 213 | cp->sv_xerr_status); |
| 214 | drv_status = DRIVER_SENSE; |
| 215 | /* |
| 216 | * Bounce back the sense data to user. |
| 217 | */ |
| 218 | memset(&cmd->sense_buffer, 0, sizeof(cmd->sense_buffer)); |
| 219 | memcpy(cmd->sense_buffer, cp->sns_bbuf, |
| 220 | min(sizeof(cmd->sense_buffer), |
| 221 | (size_t)SYM_SNS_BBUF_LEN)); |
| 222 | #if 0 |
| 223 | /* |
| 224 | * If the device reports a UNIT ATTENTION condition |
| 225 | * due to a RESET condition, we should consider all |
| 226 | * disconnect CCBs for this unit as aborted. |
| 227 | */ |
| 228 | if (1) { |
| 229 | u_char *p; |
| 230 | p = (u_char *) cmd->sense_data; |
| 231 | if (p[0]==0x70 && p[2]==0x6 && p[12]==0x29) |
| 232 | sym_clear_tasks(np, DID_ABORT, |
| 233 | cp->target,cp->lun, -1); |
| 234 | } |
| 235 | #endif |
| 236 | } else { |
| 237 | /* |
| 238 | * Error return from our internal request sense. This |
| 239 | * is bad: we must clear the contingent allegiance |
| 240 | * condition otherwise the device will always return |
| 241 | * BUSY. Use a big stick. |
| 242 | */ |
| 243 | sym_reset_scsi_target(np, cmd->device->id); |
| 244 | cam_status = DID_ERROR; |
| 245 | } |
| 246 | } else if (cp->host_status == HS_COMPLETE) /* Bad SCSI status */ |
| 247 | cam_status = DID_OK; |
| 248 | else if (cp->host_status == HS_SEL_TIMEOUT) /* Selection timeout */ |
| 249 | cam_status = DID_NO_CONNECT; |
| 250 | else if (cp->host_status == HS_UNEXPECTED) /* Unexpected BUS FREE*/ |
| 251 | cam_status = DID_ERROR; |
| 252 | else { /* Extended error */ |
| 253 | if (sym_verbose) { |
| 254 | sym_print_addr(cmd, "COMMAND FAILED (%x %x %x).\n", |
| 255 | cp->host_status, cp->ssss_status, |
| 256 | cp->xerr_status); |
| 257 | } |
| 258 | /* |
| 259 | * Set the most appropriate value for CAM status. |
| 260 | */ |
| 261 | cam_status = sym_xerr_cam_status(DID_ERROR, cp->xerr_status); |
| 262 | } |
FUJITA Tomonori | 938febd | 2007-05-26 02:31:17 +0900 | [diff] [blame] | 263 | scsi_set_resid(cmd, resid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | cmd->result = (drv_status << 24) + (cam_status << 16) + scsi_status; |
| 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | static int sym_scatter(struct sym_hcb *np, struct sym_ccb *cp, struct scsi_cmnd *cmd) |
| 268 | { |
| 269 | int segment; |
FUJITA Tomonori | 938febd | 2007-05-26 02:31:17 +0900 | [diff] [blame] | 270 | int use_sg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | cp->data_len = 0; |
| 273 | |
Matthew Wilcox | 39c05d1 | 2007-10-05 15:55:00 -0400 | [diff] [blame] | 274 | use_sg = scsi_dma_map(cmd); |
FUJITA Tomonori | 938febd | 2007-05-26 02:31:17 +0900 | [diff] [blame] | 275 | if (use_sg > 0) { |
| 276 | struct scatterlist *sg; |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 277 | struct sym_tcb *tp = &np->target[cp->target]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | struct sym_tblmove *data; |
| 279 | |
| 280 | if (use_sg > SYM_CONF_MAX_SG) { |
Matthew Wilcox | 39c05d1 | 2007-10-05 15:55:00 -0400 | [diff] [blame] | 281 | scsi_dma_unmap(cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | return -1; |
| 283 | } |
| 284 | |
| 285 | data = &cp->phys.data[SYM_CONF_MAX_SG - use_sg]; |
| 286 | |
FUJITA Tomonori | 938febd | 2007-05-26 02:31:17 +0900 | [diff] [blame] | 287 | scsi_for_each_sg(cmd, sg, use_sg, segment) { |
| 288 | dma_addr_t baddr = sg_dma_address(sg); |
| 289 | unsigned int len = sg_dma_len(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 291 | if ((len & 1) && (tp->head.wval & EWS)) { |
| 292 | len++; |
| 293 | cp->odd_byte_adjustment++; |
| 294 | } |
| 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | sym_build_sge(np, &data[segment], baddr, len); |
| 297 | cp->data_len += len; |
| 298 | } |
| 299 | } else { |
| 300 | segment = -2; |
| 301 | } |
| 302 | |
| 303 | return segment; |
| 304 | } |
| 305 | |
| 306 | /* |
| 307 | * Queue a SCSI command. |
| 308 | */ |
| 309 | static int sym_queue_command(struct sym_hcb *np, struct scsi_cmnd *cmd) |
| 310 | { |
| 311 | struct scsi_device *sdev = cmd->device; |
| 312 | struct sym_tcb *tp; |
| 313 | struct sym_lcb *lp; |
| 314 | struct sym_ccb *cp; |
| 315 | int order; |
| 316 | |
| 317 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | * Retrieve the target descriptor. |
| 319 | */ |
| 320 | tp = &np->target[sdev->id]; |
| 321 | |
| 322 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | * Select tagged/untagged. |
| 324 | */ |
| 325 | lp = sym_lp(tp, sdev->lun); |
| 326 | order = (lp && lp->s.reqtags) ? M_SIMPLE_TAG : 0; |
| 327 | |
| 328 | /* |
| 329 | * Queue the SCSI IO. |
| 330 | */ |
| 331 | cp = sym_get_ccb(np, cmd, order); |
| 332 | if (!cp) |
| 333 | return 1; /* Means resource shortage */ |
| 334 | sym_queue_scsiio(np, cmd, cp); |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | /* |
| 339 | * Setup buffers and pointers that address the CDB. |
| 340 | */ |
| 341 | static inline int sym_setup_cdb(struct sym_hcb *np, struct scsi_cmnd *cmd, struct sym_ccb *cp) |
| 342 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | memcpy(cp->cdb_buf, cmd->cmnd, cmd->cmd_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 345 | cp->phys.cmd.addr = CCB_BA(cp, cdb_buf[0]); |
| 346 | cp->phys.cmd.size = cpu_to_scr(cmd->cmd_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | return 0; |
| 349 | } |
| 350 | |
| 351 | /* |
| 352 | * Setup pointers that address the data and start the I/O. |
| 353 | */ |
| 354 | int sym_setup_data_and_start(struct sym_hcb *np, struct scsi_cmnd *cmd, struct sym_ccb *cp) |
| 355 | { |
Matthew Wilcox | 44f30b0f | 2005-11-29 23:08:33 -0500 | [diff] [blame] | 356 | u32 lastp, goalp; |
| 357 | int dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | /* |
| 360 | * Build the CDB. |
| 361 | */ |
| 362 | if (sym_setup_cdb(np, cmd, cp)) |
| 363 | goto out_abort; |
| 364 | |
| 365 | /* |
| 366 | * No direction means no data. |
| 367 | */ |
| 368 | dir = cmd->sc_data_direction; |
| 369 | if (dir != DMA_NONE) { |
| 370 | cp->segments = sym_scatter(np, cp, cmd); |
| 371 | if (cp->segments < 0) { |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 372 | sym_set_cam_status(cmd, DID_ERROR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | goto out_abort; |
| 374 | } |
Matthew Wilcox | 44f30b0f | 2005-11-29 23:08:33 -0500 | [diff] [blame] | 375 | |
| 376 | /* |
| 377 | * No segments means no data. |
| 378 | */ |
| 379 | if (!cp->segments) |
| 380 | dir = DMA_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | } else { |
| 382 | cp->data_len = 0; |
| 383 | cp->segments = 0; |
| 384 | } |
| 385 | |
| 386 | /* |
Matthew Wilcox | 44f30b0f | 2005-11-29 23:08:33 -0500 | [diff] [blame] | 387 | * Set the data pointer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | */ |
Matthew Wilcox | 44f30b0f | 2005-11-29 23:08:33 -0500 | [diff] [blame] | 389 | switch (dir) { |
| 390 | case DMA_BIDIRECTIONAL: |
Matthew Wilcox | 3fb364e | 2007-10-05 15:55:10 -0400 | [diff] [blame] | 391 | scmd_printk(KERN_INFO, cmd, "got DMA_BIDIRECTIONAL command"); |
Matthew Wilcox | 44f30b0f | 2005-11-29 23:08:33 -0500 | [diff] [blame] | 392 | sym_set_cam_status(cmd, DID_ERROR); |
| 393 | goto out_abort; |
| 394 | case DMA_TO_DEVICE: |
| 395 | goalp = SCRIPTA_BA(np, data_out2) + 8; |
| 396 | lastp = goalp - 8 - (cp->segments * (2*4)); |
| 397 | break; |
| 398 | case DMA_FROM_DEVICE: |
| 399 | cp->host_flags |= HF_DATA_IN; |
| 400 | goalp = SCRIPTA_BA(np, data_in2) + 8; |
| 401 | lastp = goalp - 8 - (cp->segments * (2*4)); |
| 402 | break; |
| 403 | case DMA_NONE: |
| 404 | default: |
| 405 | lastp = goalp = SCRIPTB_BA(np, no_data); |
| 406 | break; |
| 407 | } |
| 408 | |
| 409 | /* |
| 410 | * Set all pointers values needed by SCRIPTS. |
| 411 | */ |
| 412 | cp->phys.head.lastp = cpu_to_scr(lastp); |
| 413 | cp->phys.head.savep = cpu_to_scr(lastp); |
| 414 | cp->startp = cp->phys.head.savep; |
| 415 | cp->goalp = cpu_to_scr(goalp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
| 417 | /* |
| 418 | * When `#ifed 1', the code below makes the driver |
| 419 | * panic on the first attempt to write to a SCSI device. |
| 420 | * It is the first test we want to do after a driver |
| 421 | * change that does not seem obviously safe. :) |
| 422 | */ |
| 423 | #if 0 |
| 424 | switch (cp->cdb_buf[0]) { |
| 425 | case 0x0A: case 0x2A: case 0xAA: |
| 426 | panic("XXXXXXXXXXXXX WRITE NOT YET ALLOWED XXXXXXXXXXXXXX\n"); |
| 427 | break; |
| 428 | default: |
| 429 | break; |
| 430 | } |
| 431 | #endif |
| 432 | |
| 433 | /* |
| 434 | * activate this job. |
| 435 | */ |
Matthew Wilcox | 3bea15a | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 436 | sym_put_start_queue(np, cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | return 0; |
| 438 | |
| 439 | out_abort: |
| 440 | sym_free_ccb(np, cp); |
| 441 | sym_xpt_done(np, cmd); |
| 442 | return 0; |
| 443 | } |
| 444 | |
| 445 | |
| 446 | /* |
| 447 | * timer daemon. |
| 448 | * |
| 449 | * Misused to keep the driver running when |
| 450 | * interrupts are not configured correctly. |
| 451 | */ |
| 452 | static void sym_timer(struct sym_hcb *np) |
| 453 | { |
| 454 | unsigned long thistime = jiffies; |
| 455 | |
| 456 | /* |
| 457 | * Restart the timer. |
| 458 | */ |
| 459 | np->s.timer.expires = thistime + SYM_CONF_TIMER_INTERVAL; |
| 460 | add_timer(&np->s.timer); |
| 461 | |
| 462 | /* |
| 463 | * If we are resetting the ncr, wait for settle_time before |
| 464 | * clearing it. Then command processing will be resumed. |
| 465 | */ |
| 466 | if (np->s.settle_time_valid) { |
| 467 | if (time_before_eq(np->s.settle_time, thistime)) { |
| 468 | if (sym_verbose >= 2 ) |
| 469 | printk("%s: command processing resumed\n", |
| 470 | sym_name(np)); |
| 471 | np->s.settle_time_valid = 0; |
| 472 | } |
| 473 | return; |
| 474 | } |
| 475 | |
| 476 | /* |
| 477 | * Nothing to do for now, but that may come. |
| 478 | */ |
| 479 | if (np->s.lasttime + 4*HZ < thistime) { |
| 480 | np->s.lasttime = thistime; |
| 481 | } |
| 482 | |
| 483 | #ifdef SYM_CONF_PCIQ_MAY_MISS_COMPLETIONS |
| 484 | /* |
| 485 | * Some way-broken PCI bridges may lead to |
| 486 | * completions being lost when the clearing |
| 487 | * of the INTFLY flag by the CPU occurs |
| 488 | * concurrently with the chip raising this flag. |
| 489 | * If this ever happen, lost completions will |
| 490 | * be reaped here. |
| 491 | */ |
| 492 | sym_wakeup_done(np); |
| 493 | #endif |
| 494 | } |
| 495 | |
| 496 | |
| 497 | /* |
| 498 | * PCI BUS error handler. |
| 499 | */ |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 500 | void sym_log_bus_error(struct Scsi_Host *shost) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 502 | struct sym_data *sym_data = shost_priv(shost); |
| 503 | struct pci_dev *pdev = sym_data->pdev; |
| 504 | unsigned short pci_sts; |
| 505 | pci_read_config_word(pdev, PCI_STATUS, &pci_sts); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (pci_sts & 0xf900) { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 507 | pci_write_config_word(pdev, PCI_STATUS, pci_sts); |
| 508 | shost_printk(KERN_WARNING, shost, |
| 509 | "PCI bus error: status = 0x%04x\n", pci_sts & 0xf900); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | * queuecommand method. Entered with the host adapter lock held and |
| 515 | * interrupts disabled. |
| 516 | */ |
| 517 | static int sym53c8xx_queue_command(struct scsi_cmnd *cmd, |
| 518 | void (*done)(struct scsi_cmnd *)) |
| 519 | { |
| 520 | struct sym_hcb *np = SYM_SOFTC_PTR(cmd); |
| 521 | struct sym_ucmd *ucp = SYM_UCMD_PTR(cmd); |
| 522 | int sts = 0; |
| 523 | |
Matthew Wilcox | 71c222d | 2007-10-05 15:55:01 -0400 | [diff] [blame] | 524 | cmd->scsi_done = done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | memset(ucp, 0, sizeof(*ucp)); |
| 526 | |
| 527 | /* |
| 528 | * Shorten our settle_time if needed for |
| 529 | * this command not to time out. |
| 530 | */ |
| 531 | if (np->s.settle_time_valid && cmd->timeout_per_command) { |
| 532 | unsigned long tlimit = jiffies + cmd->timeout_per_command; |
| 533 | tlimit -= SYM_CONF_TIMER_INTERVAL*2; |
| 534 | if (time_after(np->s.settle_time, tlimit)) { |
| 535 | np->s.settle_time = tlimit; |
| 536 | } |
| 537 | } |
| 538 | |
| 539 | if (np->s.settle_time_valid) |
| 540 | return SCSI_MLQUEUE_HOST_BUSY; |
| 541 | |
| 542 | sts = sym_queue_command(np, cmd); |
| 543 | if (sts) |
| 544 | return SCSI_MLQUEUE_HOST_BUSY; |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * Linux entry point of the interrupt handler. |
| 550 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 551 | static irqreturn_t sym53c8xx_intr(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 553 | struct Scsi_Host *shost = dev_id; |
| 554 | struct sym_data *sym_data = shost_priv(shost); |
| 555 | irqreturn_t result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 557 | /* Avoid spinloop trying to handle interrupts on frozen device */ |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 558 | if (pci_channel_offline(sym_data->pdev)) |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 559 | return IRQ_NONE; |
| 560 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | if (DEBUG_FLAGS & DEBUG_TINY) printf_debug ("["); |
| 562 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 563 | spin_lock(shost->host_lock); |
| 564 | result = sym_interrupt(shost); |
| 565 | spin_unlock(shost->host_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
| 567 | if (DEBUG_FLAGS & DEBUG_TINY) printf_debug ("]\n"); |
| 568 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 569 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | /* |
| 573 | * Linux entry point of the timer handler |
| 574 | */ |
| 575 | static void sym53c8xx_timer(unsigned long npref) |
| 576 | { |
| 577 | struct sym_hcb *np = (struct sym_hcb *)npref; |
| 578 | unsigned long flags; |
| 579 | |
| 580 | spin_lock_irqsave(np->s.host->host_lock, flags); |
| 581 | sym_timer(np); |
| 582 | spin_unlock_irqrestore(np->s.host->host_lock, flags); |
| 583 | } |
| 584 | |
| 585 | |
| 586 | /* |
| 587 | * What the eh thread wants us to perform. |
| 588 | */ |
| 589 | #define SYM_EH_ABORT 0 |
| 590 | #define SYM_EH_DEVICE_RESET 1 |
| 591 | #define SYM_EH_BUS_RESET 2 |
| 592 | #define SYM_EH_HOST_RESET 3 |
| 593 | |
| 594 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | * Generic method for our eh processing. |
| 596 | * The 'op' argument tells what we have to do. |
| 597 | */ |
| 598 | static int sym_eh_handler(int op, char *opname, struct scsi_cmnd *cmd) |
| 599 | { |
Matthew Wilcox | b4e93a7 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 600 | struct sym_ucmd *ucmd = SYM_UCMD_PTR(cmd); |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 601 | struct Scsi_Host *shost = cmd->device->host; |
| 602 | struct sym_data *sym_data = shost_priv(shost); |
| 603 | struct pci_dev *pdev = sym_data->pdev; |
| 604 | struct sym_hcb *np = sym_data->ncb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | SYM_QUEHEAD *qp; |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 606 | int cmd_queued = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | int sts = -1; |
Matthew Wilcox | d637c45 | 2006-03-29 14:45:18 -0700 | [diff] [blame] | 608 | struct completion eh_done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 610 | scmd_printk(KERN_WARNING, cmd, "%s operation started\n", opname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 612 | /* We may be in an error condition because the PCI bus |
| 613 | * went down. In this case, we need to wait until the |
| 614 | * PCI bus is reset, the card is reset, and only then |
| 615 | * proceed with the scsi error recovery. There's no |
| 616 | * point in hurrying; take a leisurely wait. |
| 617 | */ |
| 618 | #define WAIT_FOR_PCI_RECOVERY 35 |
| 619 | if (pci_channel_offline(pdev)) { |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 620 | struct completion *io_reset; |
| 621 | int finished_reset = 0; |
| 622 | init_completion(&eh_done); |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 623 | spin_lock_irq(shost->host_lock); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 624 | /* Make sure we didn't race */ |
| 625 | if (pci_channel_offline(pdev)) { |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 626 | if (!sym_data->io_reset) |
| 627 | sym_data->io_reset = &eh_done; |
| 628 | io_reset = sym_data->io_reset; |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 629 | } else { |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 630 | finished_reset = 1; |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 631 | } |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 632 | spin_unlock_irq(shost->host_lock); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 633 | if (!finished_reset) |
| 634 | finished_reset = wait_for_completion_timeout(io_reset, |
| 635 | WAIT_FOR_PCI_RECOVERY*HZ); |
| 636 | if (!finished_reset) |
| 637 | return SCSI_FAILED; |
| 638 | } |
| 639 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 640 | spin_lock_irq(shost->host_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | /* This one is queued in some place -> to wait for completion */ |
| 642 | FOR_EACH_QUEUED_ELEMENT(&np->busy_ccbq, qp) { |
| 643 | struct sym_ccb *cp = sym_que_entry(qp, struct sym_ccb, link_ccbq); |
| 644 | if (cp->cmd == cmd) { |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 645 | cmd_queued = 1; |
Matthew Wilcox | ab19d52 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 646 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | } |
| 648 | } |
| 649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | /* Try to proceed the operation we have been asked for */ |
| 651 | sts = -1; |
| 652 | switch(op) { |
| 653 | case SYM_EH_ABORT: |
| 654 | sts = sym_abort_scsiio(np, cmd, 1); |
| 655 | break; |
| 656 | case SYM_EH_DEVICE_RESET: |
| 657 | sts = sym_reset_scsi_target(np, cmd->device->id); |
| 658 | break; |
| 659 | case SYM_EH_BUS_RESET: |
| 660 | sym_reset_scsi_bus(np, 1); |
| 661 | sts = 0; |
| 662 | break; |
| 663 | case SYM_EH_HOST_RESET: |
| 664 | sym_reset_scsi_bus(np, 0); |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 665 | sym_start_up(shost, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | sts = 0; |
| 667 | break; |
| 668 | default: |
| 669 | break; |
| 670 | } |
| 671 | |
| 672 | /* On error, restore everything and cross fingers :) */ |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 673 | if (sts) |
| 674 | cmd_queued = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 676 | if (cmd_queued) { |
| 677 | init_completion(&eh_done); |
| 678 | ucmd->eh_done = &eh_done; |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 679 | spin_unlock_irq(shost->host_lock); |
Matthew Wilcox | d637c45 | 2006-03-29 14:45:18 -0700 | [diff] [blame] | 680 | if (!wait_for_completion_timeout(&eh_done, 5*HZ)) { |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 681 | ucmd->eh_done = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | sts = -2; |
Matthew Wilcox | b4e93a7 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 683 | } |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 684 | } else { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 685 | spin_unlock_irq(shost->host_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
Matthew Wilcox | 2ba6536 | 2007-10-05 15:55:03 -0400 | [diff] [blame] | 687 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | dev_warn(&cmd->device->sdev_gendev, "%s operation %s.\n", opname, |
| 689 | sts==0 ? "complete" :sts==-2 ? "timed-out" : "failed"); |
| 690 | return sts ? SCSI_FAILED : SCSI_SUCCESS; |
| 691 | } |
| 692 | |
| 693 | |
| 694 | /* |
| 695 | * Error handlers called from the eh thread (one thread per HBA). |
| 696 | */ |
| 697 | static int sym53c8xx_eh_abort_handler(struct scsi_cmnd *cmd) |
| 698 | { |
Matthew Wilcox | ab19d52 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 699 | return sym_eh_handler(SYM_EH_ABORT, "ABORT", cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | static int sym53c8xx_eh_device_reset_handler(struct scsi_cmnd *cmd) |
| 703 | { |
Matthew Wilcox | ab19d52 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 704 | return sym_eh_handler(SYM_EH_DEVICE_RESET, "DEVICE RESET", cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | static int sym53c8xx_eh_bus_reset_handler(struct scsi_cmnd *cmd) |
| 708 | { |
Matthew Wilcox | ab19d52 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 709 | return sym_eh_handler(SYM_EH_BUS_RESET, "BUS RESET", cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | static int sym53c8xx_eh_host_reset_handler(struct scsi_cmnd *cmd) |
| 713 | { |
Matthew Wilcox | ab19d52 | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 714 | return sym_eh_handler(SYM_EH_HOST_RESET, "HOST RESET", cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | } |
| 716 | |
| 717 | /* |
| 718 | * Tune device queuing depth, according to various limits. |
| 719 | */ |
| 720 | static void sym_tune_dev_queuing(struct sym_tcb *tp, int lun, u_short reqtags) |
| 721 | { |
| 722 | struct sym_lcb *lp = sym_lp(tp, lun); |
| 723 | u_short oldtags; |
| 724 | |
| 725 | if (!lp) |
| 726 | return; |
| 727 | |
| 728 | oldtags = lp->s.reqtags; |
| 729 | |
| 730 | if (reqtags > lp->s.scdev_depth) |
| 731 | reqtags = lp->s.scdev_depth; |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | lp->s.reqtags = reqtags; |
| 734 | |
| 735 | if (reqtags != oldtags) { |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 736 | dev_info(&tp->starget->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | "tagged command queuing %s, command queue depth %d.\n", |
Matthew Wilcox | 3bea15a | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 738 | lp->s.reqtags ? "enabled" : "disabled", reqtags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | } |
| 740 | } |
| 741 | |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 742 | static int sym53c8xx_slave_alloc(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 744 | struct sym_hcb *np = sym_get_hcb(sdev->host); |
| 745 | struct sym_tcb *tp = &np->target[sdev->id]; |
| 746 | struct sym_lcb *lp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 748 | if (sdev->id >= SYM_CONF_MAX_TARGET || sdev->lun >= SYM_CONF_MAX_LUN) |
| 749 | return -ENXIO; |
| 750 | |
Matthew Wilcox | 66e8d1c | 2005-11-29 23:08:46 -0500 | [diff] [blame] | 751 | tp->starget = sdev->sdev_target; |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 752 | /* |
| 753 | * Fail the device init if the device is flagged NOSCAN at BOOT in |
| 754 | * the NVRAM. This may speed up boot and maintain coherency with |
| 755 | * BIOS device numbering. Clearing the flag allows the user to |
| 756 | * rescan skipped devices later. We also return an error for |
| 757 | * devices not flagged for SCAN LUNS in the NVRAM since some single |
| 758 | * lun devices behave badly when asked for a non zero LUN. |
| 759 | */ |
| 760 | |
Matthew Wilcox | 66e8d1c | 2005-11-29 23:08:46 -0500 | [diff] [blame] | 761 | if (tp->usrflags & SYM_SCAN_BOOT_DISABLED) { |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 762 | tp->usrflags &= ~SYM_SCAN_BOOT_DISABLED; |
Matthew Wilcox | 66e8d1c | 2005-11-29 23:08:46 -0500 | [diff] [blame] | 763 | starget_printk(KERN_INFO, tp->starget, |
| 764 | "Scan at boot disabled in NVRAM\n"); |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 765 | return -ENXIO; |
| 766 | } |
| 767 | |
Matthew Wilcox | 66e8d1c | 2005-11-29 23:08:46 -0500 | [diff] [blame] | 768 | if (tp->usrflags & SYM_SCAN_LUNS_DISABLED) { |
| 769 | if (sdev->lun != 0) |
| 770 | return -ENXIO; |
| 771 | starget_printk(KERN_INFO, tp->starget, |
| 772 | "Multiple LUNs disabled in NVRAM\n"); |
| 773 | } |
| 774 | |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 775 | lp = sym_alloc_lcb(np, sdev->id, sdev->lun); |
| 776 | if (!lp) |
| 777 | return -ENOMEM; |
| 778 | |
Matthew Wilcox | b37df48 | 2005-11-29 23:08:44 -0500 | [diff] [blame] | 779 | spi_min_period(tp->starget) = tp->usr_period; |
| 780 | spi_max_width(tp->starget) = tp->usr_width; |
| 781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | return 0; |
| 783 | } |
| 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | /* |
| 786 | * Linux entry point for device queue sizing. |
| 787 | */ |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 788 | static int sym53c8xx_slave_configure(struct scsi_device *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | { |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 790 | struct sym_hcb *np = sym_get_hcb(sdev->host); |
| 791 | struct sym_tcb *tp = &np->target[sdev->id]; |
| 792 | struct sym_lcb *lp = sym_lp(tp, sdev->lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | int reqtags, depth_to_use; |
| 794 | |
| 795 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | * Get user flags. |
| 797 | */ |
| 798 | lp->curr_flags = lp->user_flags; |
| 799 | |
| 800 | /* |
| 801 | * Select queue depth from driver setup. |
| 802 | * Donnot use more than configured by user. |
| 803 | * Use at least 2. |
| 804 | * Donnot use more than our maximum. |
| 805 | */ |
Matthew Wilcox | a44131b | 2007-10-05 15:55:08 -0400 | [diff] [blame] | 806 | reqtags = sym_driver_setup.max_tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | if (reqtags > tp->usrtags) |
| 808 | reqtags = tp->usrtags; |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 809 | if (!sdev->tagged_supported) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | reqtags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | if (reqtags > SYM_CONF_MAX_TAG) |
| 812 | reqtags = SYM_CONF_MAX_TAG; |
Matthew Wilcox | a44131b | 2007-10-05 15:55:08 -0400 | [diff] [blame] | 813 | depth_to_use = reqtags ? reqtags : 2; |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 814 | scsi_adjust_queue_depth(sdev, |
Matthew Wilcox | a44131b | 2007-10-05 15:55:08 -0400 | [diff] [blame] | 815 | sdev->tagged_supported ? MSG_SIMPLE_TAG : 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | depth_to_use); |
| 817 | lp->s.scdev_depth = depth_to_use; |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 818 | sym_tune_dev_queuing(tp, sdev->lun, reqtags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 820 | if (!spi_initial_dv(sdev->sdev_target)) |
| 821 | spi_dv_device(sdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | |
| 823 | return 0; |
| 824 | } |
| 825 | |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 826 | static void sym53c8xx_slave_destroy(struct scsi_device *sdev) |
| 827 | { |
| 828 | struct sym_hcb *np = sym_get_hcb(sdev->host); |
| 829 | struct sym_lcb *lp = sym_lp(&np->target[sdev->id], sdev->lun); |
| 830 | |
| 831 | if (lp->itlq_tbl) |
| 832 | sym_mfree_dma(lp->itlq_tbl, SYM_CONF_MAX_TASK * 4, "ITLQ_TBL"); |
| 833 | kfree(lp->cb_tags); |
| 834 | sym_mfree_dma(lp, sizeof(*lp), "LCB"); |
| 835 | } |
| 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | /* |
| 838 | * Linux entry point for info() function |
| 839 | */ |
| 840 | static const char *sym53c8xx_info (struct Scsi_Host *host) |
| 841 | { |
| 842 | return SYM_DRIVER_NAME; |
| 843 | } |
| 844 | |
| 845 | |
| 846 | #ifdef SYM_LINUX_PROC_INFO_SUPPORT |
| 847 | /* |
| 848 | * Proc file system stuff |
| 849 | * |
| 850 | * A read operation returns adapter information. |
| 851 | * A write operation is a control command. |
| 852 | * The string is parsed in the driver code and the command is passed |
| 853 | * to the sym_usercmd() function. |
| 854 | */ |
| 855 | |
| 856 | #ifdef SYM_LINUX_USER_COMMAND_SUPPORT |
| 857 | |
| 858 | struct sym_usrcmd { |
| 859 | u_long target; |
| 860 | u_long lun; |
| 861 | u_long data; |
| 862 | u_long cmd; |
| 863 | }; |
| 864 | |
| 865 | #define UC_SETSYNC 10 |
| 866 | #define UC_SETTAGS 11 |
| 867 | #define UC_SETDEBUG 12 |
| 868 | #define UC_SETWIDE 14 |
| 869 | #define UC_SETFLAG 15 |
| 870 | #define UC_SETVERBOSE 17 |
| 871 | #define UC_RESETDEV 18 |
| 872 | #define UC_CLEARDEV 19 |
| 873 | |
| 874 | static void sym_exec_user_command (struct sym_hcb *np, struct sym_usrcmd *uc) |
| 875 | { |
| 876 | struct sym_tcb *tp; |
| 877 | int t, l; |
| 878 | |
| 879 | switch (uc->cmd) { |
| 880 | case 0: return; |
| 881 | |
| 882 | #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT |
| 883 | case UC_SETDEBUG: |
| 884 | sym_debug_flags = uc->data; |
| 885 | break; |
| 886 | #endif |
| 887 | case UC_SETVERBOSE: |
| 888 | np->verbose = uc->data; |
| 889 | break; |
| 890 | default: |
| 891 | /* |
| 892 | * We assume that other commands apply to targets. |
| 893 | * This should always be the case and avoid the below |
| 894 | * 4 lines to be repeated 6 times. |
| 895 | */ |
| 896 | for (t = 0; t < SYM_CONF_MAX_TARGET; t++) { |
| 897 | if (!((uc->target >> t) & 1)) |
| 898 | continue; |
| 899 | tp = &np->target[t]; |
| 900 | |
| 901 | switch (uc->cmd) { |
| 902 | |
| 903 | case UC_SETSYNC: |
| 904 | if (!uc->data || uc->data >= 255) { |
| 905 | tp->tgoal.iu = tp->tgoal.dt = |
| 906 | tp->tgoal.qas = 0; |
| 907 | tp->tgoal.offset = 0; |
| 908 | } else if (uc->data <= 9 && np->minsync_dt) { |
| 909 | if (uc->data < np->minsync_dt) |
| 910 | uc->data = np->minsync_dt; |
| 911 | tp->tgoal.iu = tp->tgoal.dt = |
| 912 | tp->tgoal.qas = 1; |
| 913 | tp->tgoal.width = 1; |
| 914 | tp->tgoal.period = uc->data; |
| 915 | tp->tgoal.offset = np->maxoffs_dt; |
| 916 | } else { |
| 917 | if (uc->data < np->minsync) |
| 918 | uc->data = np->minsync; |
| 919 | tp->tgoal.iu = tp->tgoal.dt = |
| 920 | tp->tgoal.qas = 0; |
| 921 | tp->tgoal.period = uc->data; |
| 922 | tp->tgoal.offset = np->maxoffs; |
| 923 | } |
| 924 | tp->tgoal.check_nego = 1; |
| 925 | break; |
| 926 | case UC_SETWIDE: |
| 927 | tp->tgoal.width = uc->data ? 1 : 0; |
| 928 | tp->tgoal.check_nego = 1; |
| 929 | break; |
| 930 | case UC_SETTAGS: |
| 931 | for (l = 0; l < SYM_CONF_MAX_LUN; l++) |
| 932 | sym_tune_dev_queuing(tp, l, uc->data); |
| 933 | break; |
| 934 | case UC_RESETDEV: |
| 935 | tp->to_reset = 1; |
| 936 | np->istat_sem = SEM; |
| 937 | OUTB(np, nc_istat, SIGP|SEM); |
| 938 | break; |
| 939 | case UC_CLEARDEV: |
| 940 | for (l = 0; l < SYM_CONF_MAX_LUN; l++) { |
| 941 | struct sym_lcb *lp = sym_lp(tp, l); |
| 942 | if (lp) lp->to_clear = 1; |
| 943 | } |
| 944 | np->istat_sem = SEM; |
| 945 | OUTB(np, nc_istat, SIGP|SEM); |
| 946 | break; |
| 947 | case UC_SETFLAG: |
| 948 | tp->usrflags = uc->data; |
| 949 | break; |
| 950 | } |
| 951 | } |
| 952 | break; |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | static int skip_spaces(char *ptr, int len) |
| 957 | { |
| 958 | int cnt, c; |
| 959 | |
| 960 | for (cnt = len; cnt > 0 && (c = *ptr++) && isspace(c); cnt--); |
| 961 | |
| 962 | return (len - cnt); |
| 963 | } |
| 964 | |
| 965 | static int get_int_arg(char *ptr, int len, u_long *pv) |
| 966 | { |
| 967 | char *end; |
| 968 | |
| 969 | *pv = simple_strtoul(ptr, &end, 10); |
| 970 | return (end - ptr); |
| 971 | } |
| 972 | |
| 973 | static int is_keyword(char *ptr, int len, char *verb) |
| 974 | { |
| 975 | int verb_len = strlen(verb); |
| 976 | |
| 977 | if (len >= verb_len && !memcmp(verb, ptr, verb_len)) |
| 978 | return verb_len; |
| 979 | else |
| 980 | return 0; |
| 981 | } |
| 982 | |
| 983 | #define SKIP_SPACES(ptr, len) \ |
| 984 | if ((arg_len = skip_spaces(ptr, len)) < 1) \ |
| 985 | return -EINVAL; \ |
| 986 | ptr += arg_len; len -= arg_len; |
| 987 | |
| 988 | #define GET_INT_ARG(ptr, len, v) \ |
| 989 | if (!(arg_len = get_int_arg(ptr, len, &(v)))) \ |
| 990 | return -EINVAL; \ |
| 991 | ptr += arg_len; len -= arg_len; |
| 992 | |
| 993 | |
| 994 | /* |
| 995 | * Parse a control command |
| 996 | */ |
| 997 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 998 | static int sym_user_command(struct Scsi_Host *shost, char *buffer, int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1000 | struct sym_hcb *np = sym_get_hcb(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | char *ptr = buffer; |
| 1002 | int len = length; |
| 1003 | struct sym_usrcmd cmd, *uc = &cmd; |
| 1004 | int arg_len; |
| 1005 | u_long target; |
| 1006 | |
| 1007 | memset(uc, 0, sizeof(*uc)); |
| 1008 | |
| 1009 | if (len > 0 && ptr[len-1] == '\n') |
| 1010 | --len; |
| 1011 | |
| 1012 | if ((arg_len = is_keyword(ptr, len, "setsync")) != 0) |
| 1013 | uc->cmd = UC_SETSYNC; |
| 1014 | else if ((arg_len = is_keyword(ptr, len, "settags")) != 0) |
| 1015 | uc->cmd = UC_SETTAGS; |
| 1016 | else if ((arg_len = is_keyword(ptr, len, "setverbose")) != 0) |
| 1017 | uc->cmd = UC_SETVERBOSE; |
| 1018 | else if ((arg_len = is_keyword(ptr, len, "setwide")) != 0) |
| 1019 | uc->cmd = UC_SETWIDE; |
| 1020 | #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT |
| 1021 | else if ((arg_len = is_keyword(ptr, len, "setdebug")) != 0) |
| 1022 | uc->cmd = UC_SETDEBUG; |
| 1023 | #endif |
| 1024 | else if ((arg_len = is_keyword(ptr, len, "setflag")) != 0) |
| 1025 | uc->cmd = UC_SETFLAG; |
| 1026 | else if ((arg_len = is_keyword(ptr, len, "resetdev")) != 0) |
| 1027 | uc->cmd = UC_RESETDEV; |
| 1028 | else if ((arg_len = is_keyword(ptr, len, "cleardev")) != 0) |
| 1029 | uc->cmd = UC_CLEARDEV; |
| 1030 | else |
| 1031 | arg_len = 0; |
| 1032 | |
| 1033 | #ifdef DEBUG_PROC_INFO |
| 1034 | printk("sym_user_command: arg_len=%d, cmd=%ld\n", arg_len, uc->cmd); |
| 1035 | #endif |
| 1036 | |
| 1037 | if (!arg_len) |
| 1038 | return -EINVAL; |
| 1039 | ptr += arg_len; len -= arg_len; |
| 1040 | |
| 1041 | switch(uc->cmd) { |
| 1042 | case UC_SETSYNC: |
| 1043 | case UC_SETTAGS: |
| 1044 | case UC_SETWIDE: |
| 1045 | case UC_SETFLAG: |
| 1046 | case UC_RESETDEV: |
| 1047 | case UC_CLEARDEV: |
| 1048 | SKIP_SPACES(ptr, len); |
| 1049 | if ((arg_len = is_keyword(ptr, len, "all")) != 0) { |
| 1050 | ptr += arg_len; len -= arg_len; |
| 1051 | uc->target = ~0; |
| 1052 | } else { |
| 1053 | GET_INT_ARG(ptr, len, target); |
| 1054 | uc->target = (1<<target); |
| 1055 | #ifdef DEBUG_PROC_INFO |
| 1056 | printk("sym_user_command: target=%ld\n", target); |
| 1057 | #endif |
| 1058 | } |
| 1059 | break; |
| 1060 | } |
| 1061 | |
| 1062 | switch(uc->cmd) { |
| 1063 | case UC_SETVERBOSE: |
| 1064 | case UC_SETSYNC: |
| 1065 | case UC_SETTAGS: |
| 1066 | case UC_SETWIDE: |
| 1067 | SKIP_SPACES(ptr, len); |
| 1068 | GET_INT_ARG(ptr, len, uc->data); |
| 1069 | #ifdef DEBUG_PROC_INFO |
| 1070 | printk("sym_user_command: data=%ld\n", uc->data); |
| 1071 | #endif |
| 1072 | break; |
| 1073 | #ifdef SYM_LINUX_DEBUG_CONTROL_SUPPORT |
| 1074 | case UC_SETDEBUG: |
| 1075 | while (len > 0) { |
| 1076 | SKIP_SPACES(ptr, len); |
| 1077 | if ((arg_len = is_keyword(ptr, len, "alloc"))) |
| 1078 | uc->data |= DEBUG_ALLOC; |
| 1079 | else if ((arg_len = is_keyword(ptr, len, "phase"))) |
| 1080 | uc->data |= DEBUG_PHASE; |
| 1081 | else if ((arg_len = is_keyword(ptr, len, "queue"))) |
| 1082 | uc->data |= DEBUG_QUEUE; |
| 1083 | else if ((arg_len = is_keyword(ptr, len, "result"))) |
| 1084 | uc->data |= DEBUG_RESULT; |
| 1085 | else if ((arg_len = is_keyword(ptr, len, "scatter"))) |
| 1086 | uc->data |= DEBUG_SCATTER; |
| 1087 | else if ((arg_len = is_keyword(ptr, len, "script"))) |
| 1088 | uc->data |= DEBUG_SCRIPT; |
| 1089 | else if ((arg_len = is_keyword(ptr, len, "tiny"))) |
| 1090 | uc->data |= DEBUG_TINY; |
| 1091 | else if ((arg_len = is_keyword(ptr, len, "timing"))) |
| 1092 | uc->data |= DEBUG_TIMING; |
| 1093 | else if ((arg_len = is_keyword(ptr, len, "nego"))) |
| 1094 | uc->data |= DEBUG_NEGO; |
| 1095 | else if ((arg_len = is_keyword(ptr, len, "tags"))) |
| 1096 | uc->data |= DEBUG_TAGS; |
| 1097 | else if ((arg_len = is_keyword(ptr, len, "pointer"))) |
| 1098 | uc->data |= DEBUG_POINTER; |
| 1099 | else |
| 1100 | return -EINVAL; |
| 1101 | ptr += arg_len; len -= arg_len; |
| 1102 | } |
| 1103 | #ifdef DEBUG_PROC_INFO |
| 1104 | printk("sym_user_command: data=%ld\n", uc->data); |
| 1105 | #endif |
| 1106 | break; |
| 1107 | #endif /* SYM_LINUX_DEBUG_CONTROL_SUPPORT */ |
| 1108 | case UC_SETFLAG: |
| 1109 | while (len > 0) { |
| 1110 | SKIP_SPACES(ptr, len); |
| 1111 | if ((arg_len = is_keyword(ptr, len, "no_disc"))) |
| 1112 | uc->data &= ~SYM_DISC_ENABLED; |
| 1113 | else |
| 1114 | return -EINVAL; |
| 1115 | ptr += arg_len; len -= arg_len; |
| 1116 | } |
| 1117 | break; |
| 1118 | default: |
| 1119 | break; |
| 1120 | } |
| 1121 | |
| 1122 | if (len) |
| 1123 | return -EINVAL; |
| 1124 | else { |
| 1125 | unsigned long flags; |
| 1126 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1127 | spin_lock_irqsave(shost->host_lock, flags); |
| 1128 | sym_exec_user_command(np, uc); |
| 1129 | spin_unlock_irqrestore(shost->host_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | } |
| 1131 | return length; |
| 1132 | } |
| 1133 | |
| 1134 | #endif /* SYM_LINUX_USER_COMMAND_SUPPORT */ |
| 1135 | |
| 1136 | |
| 1137 | #ifdef SYM_LINUX_USER_INFO_SUPPORT |
| 1138 | /* |
| 1139 | * Informations through the proc file system. |
| 1140 | */ |
| 1141 | struct info_str { |
| 1142 | char *buffer; |
| 1143 | int length; |
| 1144 | int offset; |
| 1145 | int pos; |
| 1146 | }; |
| 1147 | |
| 1148 | static void copy_mem_info(struct info_str *info, char *data, int len) |
| 1149 | { |
| 1150 | if (info->pos + len > info->length) |
| 1151 | len = info->length - info->pos; |
| 1152 | |
| 1153 | if (info->pos + len < info->offset) { |
| 1154 | info->pos += len; |
| 1155 | return; |
| 1156 | } |
| 1157 | if (info->pos < info->offset) { |
| 1158 | data += (info->offset - info->pos); |
| 1159 | len -= (info->offset - info->pos); |
| 1160 | } |
| 1161 | |
| 1162 | if (len > 0) { |
| 1163 | memcpy(info->buffer + info->pos, data, len); |
| 1164 | info->pos += len; |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | static int copy_info(struct info_str *info, char *fmt, ...) |
| 1169 | { |
| 1170 | va_list args; |
| 1171 | char buf[81]; |
| 1172 | int len; |
| 1173 | |
| 1174 | va_start(args, fmt); |
| 1175 | len = vsprintf(buf, fmt, args); |
| 1176 | va_end(args); |
| 1177 | |
| 1178 | copy_mem_info(info, buf, len); |
| 1179 | return len; |
| 1180 | } |
| 1181 | |
| 1182 | /* |
| 1183 | * Copy formatted information into the input buffer. |
| 1184 | */ |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1185 | static int sym_host_info(struct Scsi_Host *shost, char *ptr, off_t offset, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1187 | struct sym_data *sym_data = shost_priv(shost); |
| 1188 | struct pci_dev *pdev = sym_data->pdev; |
| 1189 | struct sym_hcb *np = sym_data->ncb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | struct info_str info; |
| 1191 | |
| 1192 | info.buffer = ptr; |
| 1193 | info.length = len; |
| 1194 | info.offset = offset; |
| 1195 | info.pos = 0; |
| 1196 | |
| 1197 | copy_info(&info, "Chip " NAME53C "%s, device id 0x%x, " |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1198 | "revision id 0x%x\n", np->s.chip_name, |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1199 | pdev->device, pdev->revision); |
Matthew Wilcox | 8022fbd | 2007-10-05 15:55:11 -0400 | [diff] [blame] | 1200 | copy_info(&info, "At PCI address %s, IRQ %u\n", |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1201 | pci_name(pdev), pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | copy_info(&info, "Min. period factor %d, %s SCSI BUS%s\n", |
| 1203 | (int) (np->minsync_dt ? np->minsync_dt : np->minsync), |
| 1204 | np->maxwide ? "Wide" : "Narrow", |
| 1205 | np->minsync_dt ? ", DT capable" : ""); |
| 1206 | |
| 1207 | copy_info(&info, "Max. started commands %d, " |
| 1208 | "max. commands per LUN %d\n", |
| 1209 | SYM_CONF_MAX_START, SYM_CONF_MAX_TAG); |
| 1210 | |
| 1211 | return info.pos > info.offset? info.pos - info.offset : 0; |
| 1212 | } |
| 1213 | #endif /* SYM_LINUX_USER_INFO_SUPPORT */ |
| 1214 | |
| 1215 | /* |
| 1216 | * Entry point of the scsi proc fs of the driver. |
| 1217 | * - func = 0 means read (returns adapter infos) |
| 1218 | * - func = 1 means write (not yet merget from sym53c8xx) |
| 1219 | */ |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1220 | static int sym53c8xx_proc_info(struct Scsi_Host *shost, char *buffer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | char **start, off_t offset, int length, int func) |
| 1222 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | int retv; |
| 1224 | |
| 1225 | if (func) { |
| 1226 | #ifdef SYM_LINUX_USER_COMMAND_SUPPORT |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1227 | retv = sym_user_command(shost, buffer, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | #else |
| 1229 | retv = -EINVAL; |
| 1230 | #endif |
| 1231 | } else { |
| 1232 | if (start) |
| 1233 | *start = buffer; |
| 1234 | #ifdef SYM_LINUX_USER_INFO_SUPPORT |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1235 | retv = sym_host_info(shost, buffer, offset, length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | #else |
| 1237 | retv = -EINVAL; |
| 1238 | #endif |
| 1239 | } |
| 1240 | |
| 1241 | return retv; |
| 1242 | } |
| 1243 | #endif /* SYM_LINUX_PROC_INFO_SUPPORT */ |
| 1244 | |
| 1245 | /* |
| 1246 | * Free controller resources. |
| 1247 | */ |
| 1248 | static void sym_free_resources(struct sym_hcb *np, struct pci_dev *pdev) |
| 1249 | { |
| 1250 | /* |
| 1251 | * Free O/S specific resources. |
| 1252 | */ |
Matthew Wilcox | f363abf | 2007-10-05 15:54:59 -0400 | [diff] [blame] | 1253 | if (pdev->irq) |
| 1254 | free_irq(pdev->irq, np); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1255 | if (np->s.ioaddr) |
| 1256 | pci_iounmap(pdev, np->s.ioaddr); |
| 1257 | if (np->s.ramaddr) |
| 1258 | pci_iounmap(pdev, np->s.ramaddr); |
| 1259 | /* |
| 1260 | * Free O/S independent resources. |
| 1261 | */ |
| 1262 | sym_hcb_free(np); |
| 1263 | |
| 1264 | sym_mfree_dma(np, sizeof(*np), "HCB"); |
| 1265 | } |
| 1266 | |
| 1267 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | * Host attach and initialisations. |
| 1269 | * |
| 1270 | * Allocate host data and ncb structure. |
| 1271 | * Remap MMIO region. |
| 1272 | * Do chip initialization. |
| 1273 | * If all is OK, install interrupt handling and |
| 1274 | * start the timer daemon. |
| 1275 | */ |
| 1276 | static struct Scsi_Host * __devinit sym_attach(struct scsi_host_template *tpnt, |
| 1277 | int unit, struct sym_device *dev) |
| 1278 | { |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1279 | struct sym_data *sym_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | struct sym_hcb *np = NULL; |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1281 | struct Scsi_Host *shost; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | struct pci_dev *pdev = dev->pdev; |
| 1283 | unsigned long flags; |
| 1284 | struct sym_fw *fw; |
| 1285 | |
Matthew Wilcox | 8022fbd | 2007-10-05 15:55:11 -0400 | [diff] [blame] | 1286 | printk(KERN_INFO "sym%d: <%s> rev 0x%x at pci %s irq %u\n", |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1287 | unit, dev->chip.name, pdev->revision, pci_name(pdev), |
Matthew Wilcox | 8022fbd | 2007-10-05 15:55:11 -0400 | [diff] [blame] | 1288 | pdev->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
| 1290 | /* |
| 1291 | * Get the firmware for this chip. |
| 1292 | */ |
| 1293 | fw = sym_find_firmware(&dev->chip); |
| 1294 | if (!fw) |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1295 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1297 | shost = scsi_host_alloc(tpnt, sizeof(*sym_data)); |
| 1298 | if (!shost) |
| 1299 | return NULL; |
| 1300 | sym_data = shost_priv(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | |
| 1302 | /* |
| 1303 | * Allocate immediately the host control block, |
| 1304 | * since we are only expecting to succeed. :) |
| 1305 | * We keep track in the HCB of all the resources that |
| 1306 | * are to be released on error. |
| 1307 | */ |
| 1308 | np = __sym_calloc_dma(&pdev->dev, sizeof(*np), "HCB"); |
| 1309 | if (!np) |
| 1310 | goto attach_failed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | np->bus_dmat = &pdev->dev; /* Result in 1 DMA pool per HBA */ |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1312 | sym_data->ncb = np; |
| 1313 | sym_data->pdev = pdev; |
| 1314 | np->s.host = shost; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1316 | pci_set_drvdata(pdev, shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
| 1318 | /* |
| 1319 | * Copy some useful infos to the HCB. |
| 1320 | */ |
| 1321 | np->hcb_ba = vtobus(np); |
| 1322 | np->verbose = sym_driver_setup.verbose; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | np->s.unit = unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | np->features = dev->chip.features; |
| 1325 | np->clock_divn = dev->chip.nr_divisor; |
| 1326 | np->maxoffs = dev->chip.offset_max; |
| 1327 | np->maxburst = dev->chip.burst_max; |
| 1328 | np->myaddr = dev->host_id; |
| 1329 | |
| 1330 | /* |
| 1331 | * Edit its name. |
| 1332 | */ |
| 1333 | strlcpy(np->s.chip_name, dev->chip.name, sizeof(np->s.chip_name)); |
| 1334 | sprintf(np->s.inst_name, "sym%d", np->s.unit); |
| 1335 | |
Matthew Wilcox | 4d85b47 | 2007-10-05 15:55:09 -0400 | [diff] [blame] | 1336 | if ((SYM_CONF_DMA_ADDRESSING_MODE > 0) && (np->features & FE_DAC) && |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1337 | !pci_set_dma_mask(pdev, DMA_DAC_MASK)) { |
Matthew Wilcox | 4d85b47 | 2007-10-05 15:55:09 -0400 | [diff] [blame] | 1338 | set_dac(np); |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1339 | } else if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { |
Matthew Wilcox | 4d85b47 | 2007-10-05 15:55:09 -0400 | [diff] [blame] | 1340 | printf_warning("%s: No suitable DMA available\n", sym_name(np)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | goto attach_failed; |
Matthew Wilcox | 4d85b47 | 2007-10-05 15:55:09 -0400 | [diff] [blame] | 1342 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 | |
| 1344 | /* |
| 1345 | * Try to map the controller chip to |
| 1346 | * virtual and physical memory. |
| 1347 | */ |
| 1348 | np->mmio_ba = (u32)dev->mmio_base; |
| 1349 | np->s.ioaddr = dev->s.ioaddr; |
| 1350 | np->s.ramaddr = dev->s.ramaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | |
| 1352 | /* |
| 1353 | * Map on-chip RAM if present and supported. |
| 1354 | */ |
| 1355 | if (!(np->features & FE_RAM)) |
| 1356 | dev->ram_base = 0; |
Matthew Wilcox | 8637baa | 2007-10-05 15:55:07 -0400 | [diff] [blame] | 1357 | if (dev->ram_base) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | np->ram_ba = (u32)dev->ram_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1360 | if (sym_hcb_attach(shost, fw, dev->nvram)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | goto attach_failed; |
| 1362 | |
| 1363 | /* |
| 1364 | * Install the interrupt handler. |
| 1365 | * If we synchonize the C code with SCRIPTS on interrupt, |
| 1366 | * we do not want to share the INTR line at all. |
| 1367 | */ |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1368 | if (request_irq(pdev->irq, sym53c8xx_intr, IRQF_SHARED, NAME53C8XX, |
| 1369 | shost)) { |
Matthew Wilcox | 8022fbd | 2007-10-05 15:55:11 -0400 | [diff] [blame] | 1370 | printf_err("%s: request irq %u failure\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | sym_name(np), pdev->irq); |
| 1372 | goto attach_failed; |
| 1373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1374 | |
| 1375 | /* |
| 1376 | * After SCSI devices have been opened, we cannot |
| 1377 | * reset the bus safely, so we do it here. |
| 1378 | */ |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1379 | spin_lock_irqsave(shost->host_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | if (sym_reset_scsi_bus(np, 0)) |
| 1381 | goto reset_failed; |
| 1382 | |
| 1383 | /* |
| 1384 | * Start the SCRIPTS. |
| 1385 | */ |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1386 | sym_start_up(shost, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
| 1388 | /* |
| 1389 | * Start the timer daemon |
| 1390 | */ |
| 1391 | init_timer(&np->s.timer); |
| 1392 | np->s.timer.data = (unsigned long) np; |
| 1393 | np->s.timer.function = sym53c8xx_timer; |
| 1394 | np->s.lasttime=0; |
| 1395 | sym_timer (np); |
| 1396 | |
| 1397 | /* |
| 1398 | * Fill Linux host instance structure |
| 1399 | * and return success. |
| 1400 | */ |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1401 | shost->max_channel = 0; |
| 1402 | shost->this_id = np->myaddr; |
| 1403 | shost->max_id = np->maxwide ? 16 : 8; |
| 1404 | shost->max_lun = SYM_CONF_MAX_LUN; |
| 1405 | shost->unique_id = pci_resource_start(pdev, 0); |
| 1406 | shost->cmd_per_lun = SYM_CONF_MAX_TAG; |
| 1407 | shost->can_queue = (SYM_CONF_MAX_START-2); |
| 1408 | shost->sg_tablesize = SYM_CONF_MAX_SG; |
| 1409 | shost->max_cmd_len = 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | BUG_ON(sym2_transport_template == NULL); |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1411 | shost->transportt = sym2_transport_template; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | |
Kai Makisara | 34996ac | 2007-10-05 15:54:58 -0400 | [diff] [blame] | 1413 | /* 53c896 rev 1 errata: DMA may not cross 16MB boundary */ |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1414 | if (pdev->device == PCI_DEVICE_ID_NCR_53C896 && pdev->revision < 2) |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1415 | shost->dma_boundary = 0xFFFFFF; |
Kai Makisara | 34996ac | 2007-10-05 15:54:58 -0400 | [diff] [blame] | 1416 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1417 | spin_unlock_irqrestore(shost->host_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1419 | return shost; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | |
| 1421 | reset_failed: |
| 1422 | printf_err("%s: FATAL ERROR: CHECK SCSI BUS - CABLES, " |
| 1423 | "TERMINATION, DEVICE POWER etc.!\n", sym_name(np)); |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1424 | spin_unlock_irqrestore(shost->host_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | attach_failed: |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1426 | if (!shost) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | return NULL; |
| 1428 | printf_info("%s: giving up ...\n", sym_name(np)); |
| 1429 | if (np) |
| 1430 | sym_free_resources(np, pdev); |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1431 | scsi_host_put(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | |
| 1433 | return NULL; |
| 1434 | } |
| 1435 | |
| 1436 | |
| 1437 | /* |
| 1438 | * Detect and try to read SYMBIOS and TEKRAM NVRAM. |
| 1439 | */ |
| 1440 | #if SYM_CONF_NVRAM_SUPPORT |
| 1441 | static void __devinit sym_get_nvram(struct sym_device *devp, struct sym_nvram *nvp) |
| 1442 | { |
| 1443 | devp->nvram = nvp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | nvp->type = 0; |
| 1445 | |
| 1446 | sym_read_nvram(devp, nvp); |
| 1447 | } |
| 1448 | #else |
| 1449 | static inline void sym_get_nvram(struct sym_device *devp, struct sym_nvram *nvp) |
| 1450 | { |
| 1451 | } |
| 1452 | #endif /* SYM_CONF_NVRAM_SUPPORT */ |
| 1453 | |
| 1454 | static int __devinit sym_check_supported(struct sym_device *device) |
| 1455 | { |
| 1456 | struct sym_chip *chip; |
| 1457 | struct pci_dev *pdev = device->pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | unsigned long io_port = pci_resource_start(pdev, 0); |
| 1459 | int i; |
| 1460 | |
| 1461 | /* |
| 1462 | * If user excluded this chip, do not initialize it. |
| 1463 | * I hate this code so much. Must kill it. |
| 1464 | */ |
| 1465 | if (io_port) { |
| 1466 | for (i = 0 ; i < 8 ; i++) { |
| 1467 | if (sym_driver_setup.excludes[i] == io_port) |
| 1468 | return -ENODEV; |
| 1469 | } |
| 1470 | } |
| 1471 | |
| 1472 | /* |
| 1473 | * Check if the chip is supported. Then copy the chip description |
| 1474 | * to our device structure so we can make it match the actual device |
| 1475 | * and options. |
| 1476 | */ |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1477 | chip = sym_lookup_chip_table(pdev->device, pdev->revision); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | if (!chip) { |
| 1479 | dev_info(&pdev->dev, "device not supported\n"); |
| 1480 | return -ENODEV; |
| 1481 | } |
| 1482 | memcpy(&device->chip, chip, sizeof(device->chip)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
| 1484 | return 0; |
| 1485 | } |
| 1486 | |
| 1487 | /* |
| 1488 | * Ignore Symbios chips controlled by various RAID controllers. |
| 1489 | * These controllers set value 0x52414944 at RAM end - 16. |
| 1490 | */ |
| 1491 | static int __devinit sym_check_raid(struct sym_device *device) |
| 1492 | { |
| 1493 | unsigned int ram_size, ram_val; |
| 1494 | |
| 1495 | if (!device->s.ramaddr) |
| 1496 | return 0; |
| 1497 | |
| 1498 | if (device->chip.features & FE_RAM8K) |
| 1499 | ram_size = 8192; |
| 1500 | else |
| 1501 | ram_size = 4096; |
| 1502 | |
| 1503 | ram_val = readl(device->s.ramaddr + ram_size - 16); |
| 1504 | if (ram_val != 0x52414944) |
| 1505 | return 0; |
| 1506 | |
| 1507 | dev_info(&device->pdev->dev, |
| 1508 | "not initializing, driven by RAID controller.\n"); |
| 1509 | return -ENODEV; |
| 1510 | } |
| 1511 | |
| 1512 | static int __devinit sym_set_workarounds(struct sym_device *device) |
| 1513 | { |
| 1514 | struct sym_chip *chip = &device->chip; |
| 1515 | struct pci_dev *pdev = device->pdev; |
| 1516 | u_short status_reg; |
| 1517 | |
| 1518 | /* |
| 1519 | * (ITEM 12 of a DEL about the 896 I haven't yet). |
| 1520 | * We must ensure the chip will use WRITE AND INVALIDATE. |
| 1521 | * The revision number limit is for now arbitrary. |
| 1522 | */ |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1523 | if (pdev->device == PCI_DEVICE_ID_NCR_53C896 && pdev->revision < 0x4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | chip->features |= (FE_WRIE | FE_CLSE); |
| 1525 | } |
| 1526 | |
| 1527 | /* If the chip can do Memory Write Invalidate, enable it */ |
| 1528 | if (chip->features & FE_WRIE) { |
| 1529 | if (pci_set_mwi(pdev)) |
| 1530 | return -ENODEV; |
| 1531 | } |
| 1532 | |
| 1533 | /* |
| 1534 | * Work around for errant bit in 895A. The 66Mhz |
| 1535 | * capable bit is set erroneously. Clear this bit. |
| 1536 | * (Item 1 DEL 533) |
| 1537 | * |
| 1538 | * Make sure Config space and Features agree. |
| 1539 | * |
| 1540 | * Recall: writes are not normal to status register - |
| 1541 | * write a 1 to clear and a 0 to leave unchanged. |
| 1542 | * Can only reset bits. |
| 1543 | */ |
| 1544 | pci_read_config_word(pdev, PCI_STATUS, &status_reg); |
| 1545 | if (chip->features & FE_66MHZ) { |
| 1546 | if (!(status_reg & PCI_STATUS_66MHZ)) |
| 1547 | chip->features &= ~FE_66MHZ; |
| 1548 | } else { |
| 1549 | if (status_reg & PCI_STATUS_66MHZ) { |
| 1550 | status_reg = PCI_STATUS_66MHZ; |
| 1551 | pci_write_config_word(pdev, PCI_STATUS, status_reg); |
| 1552 | pci_read_config_word(pdev, PCI_STATUS, &status_reg); |
| 1553 | } |
| 1554 | } |
| 1555 | |
| 1556 | return 0; |
| 1557 | } |
| 1558 | |
| 1559 | /* |
| 1560 | * Read and check the PCI configuration for any detected NCR |
| 1561 | * boards and save data for attaching after all boards have |
| 1562 | * been detected. |
| 1563 | */ |
| 1564 | static void __devinit |
| 1565 | sym_init_device(struct pci_dev *pdev, struct sym_device *device) |
| 1566 | { |
Matthew Wilcox | b6d105d | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 1567 | int i = 2; |
| 1568 | struct pci_bus_region bus_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | |
| 1570 | device->host_id = SYM_SETUP_HOST_ID; |
| 1571 | device->pdev = pdev; |
| 1572 | |
Matthew Wilcox | b6d105d | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 1573 | pcibios_resource_to_bus(pdev, &bus_addr, &pdev->resource[1]); |
| 1574 | device->mmio_base = bus_addr.start; |
| 1575 | |
| 1576 | /* |
| 1577 | * If the BAR is 64-bit, resource 2 will be occupied by the |
| 1578 | * upper 32 bits |
| 1579 | */ |
| 1580 | if (!pdev->resource[i].flags) |
| 1581 | i++; |
| 1582 | pcibios_resource_to_bus(pdev, &bus_addr, &pdev->resource[i]); |
| 1583 | device->ram_base = bus_addr.start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | |
Matthew Wilcox | 1f61d82 | 2006-03-28 11:03:43 -0500 | [diff] [blame] | 1585 | #ifdef CONFIG_SCSI_SYM53C8XX_MMIO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | if (device->mmio_base) |
| 1587 | device->s.ioaddr = pci_iomap(pdev, 1, |
| 1588 | pci_resource_len(pdev, 1)); |
| 1589 | #endif |
| 1590 | if (!device->s.ioaddr) |
| 1591 | device->s.ioaddr = pci_iomap(pdev, 0, |
| 1592 | pci_resource_len(pdev, 0)); |
| 1593 | if (device->ram_base) |
| 1594 | device->s.ramaddr = pci_iomap(pdev, i, |
| 1595 | pci_resource_len(pdev, i)); |
| 1596 | } |
| 1597 | |
| 1598 | /* |
| 1599 | * The NCR PQS and PDS cards are constructed as a DEC bridge |
| 1600 | * behind which sits a proprietary NCR memory controller and |
| 1601 | * either four or two 53c875s as separate devices. We can tell |
| 1602 | * if an 875 is part of a PQS/PDS or not since if it is, it will |
| 1603 | * be on the same bus as the memory controller. In its usual |
| 1604 | * mode of operation, the 875s are slaved to the memory |
| 1605 | * controller for all transfers. To operate with the Linux |
| 1606 | * driver, the memory controller is disabled and the 875s |
| 1607 | * freed to function independently. The only wrinkle is that |
| 1608 | * the preset SCSI ID (which may be zero) must be read in from |
| 1609 | * a special configuration space register of the 875. |
| 1610 | */ |
| 1611 | static void sym_config_pqs(struct pci_dev *pdev, struct sym_device *sym_dev) |
| 1612 | { |
| 1613 | int slot; |
| 1614 | u8 tmp; |
| 1615 | |
| 1616 | for (slot = 0; slot < 256; slot++) { |
| 1617 | struct pci_dev *memc = pci_get_slot(pdev->bus, slot); |
| 1618 | |
| 1619 | if (!memc || memc->vendor != 0x101a || memc->device == 0x0009) { |
| 1620 | pci_dev_put(memc); |
| 1621 | continue; |
| 1622 | } |
| 1623 | |
| 1624 | /* bit 1: allow individual 875 configuration */ |
| 1625 | pci_read_config_byte(memc, 0x44, &tmp); |
| 1626 | if ((tmp & 0x2) == 0) { |
| 1627 | tmp |= 0x2; |
| 1628 | pci_write_config_byte(memc, 0x44, tmp); |
| 1629 | } |
| 1630 | |
| 1631 | /* bit 2: drive individual 875 interrupts to the bus */ |
| 1632 | pci_read_config_byte(memc, 0x45, &tmp); |
| 1633 | if ((tmp & 0x4) == 0) { |
| 1634 | tmp |= 0x4; |
| 1635 | pci_write_config_byte(memc, 0x45, tmp); |
| 1636 | } |
| 1637 | |
| 1638 | pci_dev_put(memc); |
| 1639 | break; |
| 1640 | } |
| 1641 | |
| 1642 | pci_read_config_byte(pdev, 0x84, &tmp); |
| 1643 | sym_dev->host_id = tmp; |
| 1644 | } |
| 1645 | |
| 1646 | /* |
| 1647 | * Called before unloading the module. |
| 1648 | * Detach the host. |
| 1649 | * We have to free resources and halt the NCR chip. |
| 1650 | */ |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1651 | static int sym_detach(struct Scsi_Host *shost, struct pci_dev *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1653 | struct sym_hcb *np = sym_get_hcb(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | printk("%s: detaching ...\n", sym_name(np)); |
| 1655 | |
| 1656 | del_timer_sync(&np->s.timer); |
| 1657 | |
| 1658 | /* |
| 1659 | * Reset NCR chip. |
| 1660 | * We should use sym_soft_reset(), but we don't want to do |
| 1661 | * so, since we may not be safe if interrupts occur. |
| 1662 | */ |
| 1663 | printk("%s: resetting chip\n", sym_name(np)); |
| 1664 | OUTB(np, nc_istat, SRST); |
Matthew Wilcox | 53222b9 | 2005-05-20 19:15:43 +0100 | [diff] [blame] | 1665 | INB(np, nc_mbox1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | udelay(10); |
| 1667 | OUTB(np, nc_istat, 0); |
| 1668 | |
| 1669 | sym_free_resources(np, pdev); |
| 1670 | |
| 1671 | return 1; |
| 1672 | } |
| 1673 | |
| 1674 | /* |
| 1675 | * Driver host template. |
| 1676 | */ |
| 1677 | static struct scsi_host_template sym2_template = { |
| 1678 | .module = THIS_MODULE, |
| 1679 | .name = "sym53c8xx", |
| 1680 | .info = sym53c8xx_info, |
| 1681 | .queuecommand = sym53c8xx_queue_command, |
| 1682 | .slave_alloc = sym53c8xx_slave_alloc, |
| 1683 | .slave_configure = sym53c8xx_slave_configure, |
Matthew Wilcox | 84e203a | 2005-11-29 23:08:31 -0500 | [diff] [blame] | 1684 | .slave_destroy = sym53c8xx_slave_destroy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | .eh_abort_handler = sym53c8xx_eh_abort_handler, |
| 1686 | .eh_device_reset_handler = sym53c8xx_eh_device_reset_handler, |
| 1687 | .eh_bus_reset_handler = sym53c8xx_eh_bus_reset_handler, |
| 1688 | .eh_host_reset_handler = sym53c8xx_eh_host_reset_handler, |
| 1689 | .this_id = 7, |
Matthew Wilcox | 14ac8bf | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 1690 | .use_clustering = ENABLE_CLUSTERING, |
FUJITA Tomonori | 9cb83c7 | 2007-10-16 11:24:32 +0200 | [diff] [blame] | 1691 | .use_sg_chaining = ENABLE_SG_CHAINING, |
Matthew Wilcox | 14ac8bf | 2006-03-28 11:03:44 -0500 | [diff] [blame] | 1692 | .max_sectors = 0xFFFF, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | #ifdef SYM_LINUX_PROC_INFO_SUPPORT |
| 1694 | .proc_info = sym53c8xx_proc_info, |
| 1695 | .proc_name = NAME53C8XX, |
| 1696 | #endif |
| 1697 | }; |
| 1698 | |
| 1699 | static int attach_count; |
| 1700 | |
| 1701 | static int __devinit sym2_probe(struct pci_dev *pdev, |
| 1702 | const struct pci_device_id *ent) |
| 1703 | { |
| 1704 | struct sym_device sym_dev; |
| 1705 | struct sym_nvram nvram; |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1706 | struct Scsi_Host *shost; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | |
| 1708 | memset(&sym_dev, 0, sizeof(sym_dev)); |
| 1709 | memset(&nvram, 0, sizeof(nvram)); |
| 1710 | |
| 1711 | if (pci_enable_device(pdev)) |
| 1712 | goto leave; |
| 1713 | |
| 1714 | pci_set_master(pdev); |
| 1715 | |
| 1716 | if (pci_request_regions(pdev, NAME53C8XX)) |
| 1717 | goto disable; |
| 1718 | |
| 1719 | sym_init_device(pdev, &sym_dev); |
| 1720 | if (sym_check_supported(&sym_dev)) |
| 1721 | goto free; |
| 1722 | |
| 1723 | if (sym_check_raid(&sym_dev)) |
| 1724 | goto leave; /* Don't disable the device */ |
| 1725 | |
| 1726 | if (sym_set_workarounds(&sym_dev)) |
| 1727 | goto free; |
| 1728 | |
| 1729 | sym_config_pqs(pdev, &sym_dev); |
| 1730 | |
| 1731 | sym_get_nvram(&sym_dev, &nvram); |
| 1732 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1733 | shost = sym_attach(&sym2_template, attach_count, &sym_dev); |
| 1734 | if (!shost) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | goto free; |
| 1736 | |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1737 | if (scsi_add_host(shost, &pdev->dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | goto detach; |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1739 | scsi_scan_host(shost); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
| 1741 | attach_count++; |
| 1742 | |
| 1743 | return 0; |
| 1744 | |
| 1745 | detach: |
| 1746 | sym_detach(pci_get_drvdata(pdev), pdev); |
| 1747 | free: |
| 1748 | pci_release_regions(pdev); |
| 1749 | disable: |
| 1750 | pci_disable_device(pdev); |
| 1751 | leave: |
| 1752 | return -ENODEV; |
| 1753 | } |
| 1754 | |
| 1755 | static void __devexit sym2_remove(struct pci_dev *pdev) |
| 1756 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1757 | struct Scsi_Host *shost = pci_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1759 | scsi_remove_host(shost); |
| 1760 | scsi_host_put(shost); |
| 1761 | sym_detach(shost, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | pci_release_regions(pdev); |
| 1763 | pci_disable_device(pdev); |
| 1764 | |
| 1765 | attach_count--; |
| 1766 | } |
| 1767 | |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1768 | /** |
| 1769 | * sym2_io_error_detected() - called when PCI error is detected |
| 1770 | * @pdev: pointer to PCI device |
| 1771 | * @state: current state of the PCI slot |
| 1772 | */ |
| 1773 | static pci_ers_result_t sym2_io_error_detected(struct pci_dev *pdev, |
| 1774 | enum pci_channel_state state) |
| 1775 | { |
| 1776 | /* If slot is permanently frozen, turn everything off */ |
| 1777 | if (state == pci_channel_io_perm_failure) { |
| 1778 | sym2_remove(pdev); |
| 1779 | return PCI_ERS_RESULT_DISCONNECT; |
| 1780 | } |
| 1781 | |
| 1782 | disable_irq(pdev->irq); |
| 1783 | pci_disable_device(pdev); |
| 1784 | |
| 1785 | /* Request that MMIO be enabled, so register dump can be taken. */ |
| 1786 | return PCI_ERS_RESULT_CAN_RECOVER; |
| 1787 | } |
| 1788 | |
| 1789 | /** |
| 1790 | * sym2_io_slot_dump - Enable MMIO and dump debug registers |
| 1791 | * @pdev: pointer to PCI device |
| 1792 | */ |
| 1793 | static pci_ers_result_t sym2_io_slot_dump(struct pci_dev *pdev) |
| 1794 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1795 | struct Scsi_Host *shost = pci_get_drvdata(pdev); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1796 | |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1797 | sym_dump_registers(shost); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1798 | |
| 1799 | /* Request a slot reset. */ |
| 1800 | return PCI_ERS_RESULT_NEED_RESET; |
| 1801 | } |
| 1802 | |
| 1803 | /** |
| 1804 | * sym2_reset_workarounds - hardware-specific work-arounds |
| 1805 | * |
| 1806 | * This routine is similar to sym_set_workarounds(), except |
| 1807 | * that, at this point, we already know that the device was |
| 1808 | * succesfully intialized at least once before, and so most |
| 1809 | * of the steps taken there are un-needed here. |
| 1810 | */ |
| 1811 | static void sym2_reset_workarounds(struct pci_dev *pdev) |
| 1812 | { |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1813 | u_short status_reg; |
| 1814 | struct sym_chip *chip; |
| 1815 | |
Matthew Wilcox | bd67845 | 2007-10-05 15:55:05 -0400 | [diff] [blame] | 1816 | chip = sym_lookup_chip_table(pdev->device, pdev->revision); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1817 | |
| 1818 | /* Work around for errant bit in 895A, in a fashion |
| 1819 | * similar to what is done in sym_set_workarounds(). |
| 1820 | */ |
| 1821 | pci_read_config_word(pdev, PCI_STATUS, &status_reg); |
| 1822 | if (!(chip->features & FE_66MHZ) && (status_reg & PCI_STATUS_66MHZ)) { |
| 1823 | status_reg = PCI_STATUS_66MHZ; |
| 1824 | pci_write_config_word(pdev, PCI_STATUS, status_reg); |
| 1825 | pci_read_config_word(pdev, PCI_STATUS, &status_reg); |
| 1826 | } |
| 1827 | } |
| 1828 | |
| 1829 | /** |
| 1830 | * sym2_io_slot_reset() - called when the pci bus has been reset. |
| 1831 | * @pdev: pointer to PCI device |
| 1832 | * |
| 1833 | * Restart the card from scratch. |
| 1834 | */ |
| 1835 | static pci_ers_result_t sym2_io_slot_reset(struct pci_dev *pdev) |
| 1836 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1837 | struct Scsi_Host *shost = pci_get_drvdata(pdev); |
| 1838 | struct sym_hcb *np = sym_get_hcb(shost); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1839 | |
| 1840 | printk(KERN_INFO "%s: recovering from a PCI slot reset\n", |
| 1841 | sym_name(np)); |
| 1842 | |
| 1843 | if (pci_enable_device(pdev)) { |
| 1844 | printk(KERN_ERR "%s: Unable to enable after PCI reset\n", |
| 1845 | sym_name(np)); |
| 1846 | return PCI_ERS_RESULT_DISCONNECT; |
| 1847 | } |
| 1848 | |
| 1849 | pci_set_master(pdev); |
| 1850 | enable_irq(pdev->irq); |
| 1851 | |
| 1852 | /* If the chip can do Memory Write Invalidate, enable it */ |
| 1853 | if (np->features & FE_WRIE) { |
| 1854 | if (pci_set_mwi(pdev)) |
| 1855 | return PCI_ERS_RESULT_DISCONNECT; |
| 1856 | } |
| 1857 | |
| 1858 | /* Perform work-arounds, analogous to sym_set_workarounds() */ |
| 1859 | sym2_reset_workarounds(pdev); |
| 1860 | |
| 1861 | /* Perform host reset only on one instance of the card */ |
| 1862 | if (PCI_FUNC(pdev->devfn) == 0) { |
| 1863 | if (sym_reset_scsi_bus(np, 0)) { |
| 1864 | printk(KERN_ERR "%s: Unable to reset scsi host\n", |
| 1865 | sym_name(np)); |
| 1866 | return PCI_ERS_RESULT_DISCONNECT; |
| 1867 | } |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1868 | sym_start_up(shost, 1); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1869 | } |
| 1870 | |
| 1871 | return PCI_ERS_RESULT_RECOVERED; |
| 1872 | } |
| 1873 | |
| 1874 | /** |
| 1875 | * sym2_io_resume() - resume normal ops after PCI reset |
| 1876 | * @pdev: pointer to PCI device |
| 1877 | * |
| 1878 | * Called when the error recovery driver tells us that its |
| 1879 | * OK to resume normal operation. Use completion to allow |
| 1880 | * halted scsi ops to resume. |
| 1881 | */ |
| 1882 | static void sym2_io_resume(struct pci_dev *pdev) |
| 1883 | { |
Matthew Wilcox | 5111eef | 2007-10-05 15:55:13 -0400 | [diff] [blame^] | 1884 | struct Scsi_Host *shost = pci_get_drvdata(pdev); |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1885 | struct sym_data *sym_data = shost_priv(shost); |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1886 | |
| 1887 | spin_lock_irq(shost->host_lock); |
Matthew Wilcox | 99c9e0a | 2007-10-05 15:55:12 -0400 | [diff] [blame] | 1888 | if (sym_data->io_reset) |
| 1889 | complete_all(sym_data->io_reset); |
| 1890 | sym_data->io_reset = NULL; |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 1891 | spin_unlock_irq(shost->host_lock); |
| 1892 | } |
| 1893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | static void sym2_get_signalling(struct Scsi_Host *shost) |
| 1895 | { |
| 1896 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1897 | enum spi_signal_type type; |
| 1898 | |
| 1899 | switch (np->scsi_mode) { |
| 1900 | case SMODE_SE: |
| 1901 | type = SPI_SIGNAL_SE; |
| 1902 | break; |
| 1903 | case SMODE_LVD: |
| 1904 | type = SPI_SIGNAL_LVD; |
| 1905 | break; |
| 1906 | case SMODE_HVD: |
| 1907 | type = SPI_SIGNAL_HVD; |
| 1908 | break; |
| 1909 | default: |
| 1910 | type = SPI_SIGNAL_UNKNOWN; |
| 1911 | break; |
| 1912 | } |
| 1913 | spi_signalling(shost) = type; |
| 1914 | } |
| 1915 | |
| 1916 | static void sym2_set_offset(struct scsi_target *starget, int offset) |
| 1917 | { |
| 1918 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1919 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1920 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1921 | |
| 1922 | tp->tgoal.offset = offset; |
| 1923 | tp->tgoal.check_nego = 1; |
| 1924 | } |
| 1925 | |
| 1926 | static void sym2_set_period(struct scsi_target *starget, int period) |
| 1927 | { |
| 1928 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1929 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1930 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1931 | |
James Bottomley | e4862fe | 2005-05-06 13:14:48 -0500 | [diff] [blame] | 1932 | /* have to have DT for these transfers, but DT will also |
| 1933 | * set width, so check that this is allowed */ |
| 1934 | if (period <= np->minsync && spi_width(starget)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | tp->tgoal.dt = 1; |
| 1936 | |
| 1937 | tp->tgoal.period = period; |
| 1938 | tp->tgoal.check_nego = 1; |
| 1939 | } |
| 1940 | |
| 1941 | static void sym2_set_width(struct scsi_target *starget, int width) |
| 1942 | { |
| 1943 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1944 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1945 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1946 | |
| 1947 | /* It is illegal to have DT set on narrow transfers. If DT is |
| 1948 | * clear, we must also clear IU and QAS. */ |
| 1949 | if (width == 0) |
| 1950 | tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; |
| 1951 | |
| 1952 | tp->tgoal.width = width; |
| 1953 | tp->tgoal.check_nego = 1; |
| 1954 | } |
| 1955 | |
| 1956 | static void sym2_set_dt(struct scsi_target *starget, int dt) |
| 1957 | { |
| 1958 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1959 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1960 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1961 | |
| 1962 | /* We must clear QAS and IU if DT is clear */ |
| 1963 | if (dt) |
| 1964 | tp->tgoal.dt = 1; |
| 1965 | else |
| 1966 | tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; |
| 1967 | tp->tgoal.check_nego = 1; |
| 1968 | } |
| 1969 | |
Matthew Wilcox | 8b2f813 | 2005-11-29 23:08:38 -0500 | [diff] [blame] | 1970 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | static void sym2_set_iu(struct scsi_target *starget, int iu) |
| 1972 | { |
| 1973 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1974 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1975 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1976 | |
| 1977 | if (iu) |
| 1978 | tp->tgoal.iu = tp->tgoal.dt = 1; |
| 1979 | else |
| 1980 | tp->tgoal.iu = 0; |
| 1981 | tp->tgoal.check_nego = 1; |
| 1982 | } |
| 1983 | |
| 1984 | static void sym2_set_qas(struct scsi_target *starget, int qas) |
| 1985 | { |
| 1986 | struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); |
| 1987 | struct sym_hcb *np = sym_get_hcb(shost); |
| 1988 | struct sym_tcb *tp = &np->target[starget->id]; |
| 1989 | |
| 1990 | if (qas) |
| 1991 | tp->tgoal.dt = tp->tgoal.qas = 1; |
| 1992 | else |
| 1993 | tp->tgoal.qas = 0; |
| 1994 | tp->tgoal.check_nego = 1; |
| 1995 | } |
Matthew Wilcox | 8b2f813 | 2005-11-29 23:08:38 -0500 | [diff] [blame] | 1996 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
| 1998 | static struct spi_function_template sym2_transport_functions = { |
| 1999 | .set_offset = sym2_set_offset, |
| 2000 | .show_offset = 1, |
| 2001 | .set_period = sym2_set_period, |
| 2002 | .show_period = 1, |
| 2003 | .set_width = sym2_set_width, |
| 2004 | .show_width = 1, |
| 2005 | .set_dt = sym2_set_dt, |
| 2006 | .show_dt = 1, |
Matthew Wilcox | 8b2f813 | 2005-11-29 23:08:38 -0500 | [diff] [blame] | 2007 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | .set_iu = sym2_set_iu, |
| 2009 | .show_iu = 1, |
| 2010 | .set_qas = sym2_set_qas, |
| 2011 | .show_qas = 1, |
Matthew Wilcox | 8b2f813 | 2005-11-29 23:08:38 -0500 | [diff] [blame] | 2012 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | .get_signalling = sym2_get_signalling, |
| 2014 | }; |
| 2015 | |
| 2016 | static struct pci_device_id sym2_id_table[] __devinitdata = { |
| 2017 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C810, |
| 2018 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2019 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C820, |
| 2020 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, /* new */ |
| 2021 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C825, |
| 2022 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2023 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C815, |
| 2024 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2025 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C810AP, |
| 2026 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, /* new */ |
| 2027 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C860, |
| 2028 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2029 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C1510, |
Grant Grundler | b2b3c12 | 2006-07-17 07:22:45 -0600 | [diff] [blame] | 2030 | PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_SCSI<<8, 0xffff00, 0UL }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C896, |
| 2032 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2033 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C895, |
| 2034 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2035 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C885, |
| 2036 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2037 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C875, |
| 2038 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2039 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C1510, |
Chip Coldwell | 147e505 | 2007-05-23 14:41:38 -0700 | [diff] [blame] | 2040 | PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_SCSI<<8, 0xffff00, 0UL }, /* new */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C895A, |
| 2042 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2043 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C875A, |
| 2044 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2045 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C1010_33, |
| 2046 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2047 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_LSI_53C1010_66, |
| 2048 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2049 | { PCI_VENDOR_ID_LSI_LOGIC, PCI_DEVICE_ID_NCR_53C875J, |
| 2050 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL }, |
| 2051 | { 0, } |
| 2052 | }; |
| 2053 | |
| 2054 | MODULE_DEVICE_TABLE(pci, sym2_id_table); |
| 2055 | |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 2056 | static struct pci_error_handlers sym2_err_handler = { |
| 2057 | .error_detected = sym2_io_error_detected, |
| 2058 | .mmio_enabled = sym2_io_slot_dump, |
| 2059 | .slot_reset = sym2_io_slot_reset, |
| 2060 | .resume = sym2_io_resume, |
| 2061 | }; |
| 2062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | static struct pci_driver sym2_driver = { |
| 2064 | .name = NAME53C8XX, |
| 2065 | .id_table = sym2_id_table, |
| 2066 | .probe = sym2_probe, |
| 2067 | .remove = __devexit_p(sym2_remove), |
Linas Vepstas | d68cd75 | 2007-10-05 15:55:04 -0400 | [diff] [blame] | 2068 | .err_handler = &sym2_err_handler, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | }; |
| 2070 | |
| 2071 | static int __init sym2_init(void) |
| 2072 | { |
| 2073 | int error; |
| 2074 | |
| 2075 | sym2_setup_params(); |
| 2076 | sym2_transport_template = spi_attach_transport(&sym2_transport_functions); |
| 2077 | if (!sym2_transport_template) |
| 2078 | return -ENODEV; |
| 2079 | |
| 2080 | error = pci_register_driver(&sym2_driver); |
| 2081 | if (error) |
| 2082 | spi_release_transport(sym2_transport_template); |
| 2083 | return error; |
| 2084 | } |
| 2085 | |
| 2086 | static void __exit sym2_exit(void) |
| 2087 | { |
| 2088 | pci_unregister_driver(&sym2_driver); |
| 2089 | spi_release_transport(sym2_transport_template); |
| 2090 | } |
| 2091 | |
| 2092 | module_init(sym2_init); |
| 2093 | module_exit(sym2_exit); |