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