2 * Adaptec AIC79xx device driver for Linux.
4 * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.c#171 $
6 * --------------------------------------------------------------------------
7 * Copyright (c) 1994-2000 Justin T. Gibbs.
8 * Copyright (c) 1997-1999 Doug Ledford
9 * Copyright (c) 2000-2003 Adaptec Inc.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
45 #include "aic79xx_osm.h"
46 #include "aic79xx_inline.h"
47 #include <scsi/scsicam.h>
49 static struct scsi_transport_template
*ahd_linux_transport_template
= NULL
;
51 #include <linux/init.h> /* __setup */
52 #include <linux/mm.h> /* For fetching system memory size */
53 #include <linux/blkdev.h> /* For block_size() */
54 #include <linux/delay.h> /* For ssleep/msleep */
57 * Bucket size for counting good commands in between bad ones.
59 #define AHD_LINUX_ERR_THRESH 1000
62 * Set this to the delay in seconds after SCSI bus reset.
63 * Note, we honor this only for the initial bus reset.
64 * The scsi error recovery code performs its own bus settle
65 * delay handling for error recovery actions.
67 #ifdef CONFIG_AIC79XX_RESET_DELAY_MS
68 #define AIC79XX_RESET_DELAY CONFIG_AIC79XX_RESET_DELAY_MS
70 #define AIC79XX_RESET_DELAY 5000
74 * To change the default number of tagged transactions allowed per-device,
75 * add a line to the lilo.conf file like:
76 * append="aic79xx=verbose,tag_info:{{32,32,32,32},{32,32,32,32}}"
77 * which will result in the first four devices on the first two
78 * controllers being set to a tagged queue depth of 32.
80 * The tag_commands is an array of 16 to allow for wide and twin adapters.
81 * Twin adapters will use indexes 0-7 for channel 0, and indexes 8-15
85 uint16_t tag_commands
[16]; /* Allow for wide/twin adapters. */
89 * Modify this as you see fit for your system.
91 * 0 tagged queuing disabled
92 * 1 <= n <= 253 n == max tags ever dispatched.
94 * The driver will throttle the number of commands dispatched to a
95 * device if it returns queue full. For devices with a fixed maximum
96 * queue depth, the driver will eventually determine this depth and
97 * lock it in (a console message is printed to indicate that a lock
98 * has occurred). On some devices, queue full is returned for a temporary
99 * resource shortage. These devices will return queue full at varying
100 * depths. The driver will throttle back when the queue fulls occur and
101 * attempt to slowly increase the depth over time as the device recovers
102 * from the resource shortage.
104 * In this example, the first line will disable tagged queueing for all
105 * the devices on the first probed aic79xx adapter.
107 * The second line enables tagged queueing with 4 commands/LUN for IDs
108 * (0, 2-11, 13-15), disables tagged queueing for ID 12, and tells the
109 * driver to attempt to use up to 64 tags for ID 1.
111 * The third line is the same as the first line.
113 * The fourth line disables tagged queueing for devices 0 and 3. It
114 * enables tagged queueing for the other IDs, with 16 commands/LUN
115 * for IDs 1 and 4, 127 commands/LUN for ID 8, and 4 commands/LUN for
116 * IDs 2, 5-7, and 9-15.
120 * NOTE: The below structure is for reference only, the actual structure
121 * to modify in order to change things is just below this comment block.
122 adapter_tag_info_t aic79xx_tag_info[] =
124 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
125 {{4, 64, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4}},
126 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
127 {{0, 16, 4, 0, 16, 4, 4, 4, 127, 4, 4, 4, 4, 4, 4, 4}}
131 #ifdef CONFIG_AIC79XX_CMDS_PER_DEVICE
132 #define AIC79XX_CMDS_PER_DEVICE CONFIG_AIC79XX_CMDS_PER_DEVICE
134 #define AIC79XX_CMDS_PER_DEVICE AHD_MAX_QUEUE
137 #define AIC79XX_CONFIGED_TAG_COMMANDS { \
138 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
139 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
140 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
141 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
142 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
143 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
144 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE, \
145 AIC79XX_CMDS_PER_DEVICE, AIC79XX_CMDS_PER_DEVICE \
149 * By default, use the number of commands specified by
150 * the users kernel configuration.
152 static adapter_tag_info_t aic79xx_tag_info
[] =
154 {AIC79XX_CONFIGED_TAG_COMMANDS
},
155 {AIC79XX_CONFIGED_TAG_COMMANDS
},
156 {AIC79XX_CONFIGED_TAG_COMMANDS
},
157 {AIC79XX_CONFIGED_TAG_COMMANDS
},
158 {AIC79XX_CONFIGED_TAG_COMMANDS
},
159 {AIC79XX_CONFIGED_TAG_COMMANDS
},
160 {AIC79XX_CONFIGED_TAG_COMMANDS
},
161 {AIC79XX_CONFIGED_TAG_COMMANDS
},
162 {AIC79XX_CONFIGED_TAG_COMMANDS
},
163 {AIC79XX_CONFIGED_TAG_COMMANDS
},
164 {AIC79XX_CONFIGED_TAG_COMMANDS
},
165 {AIC79XX_CONFIGED_TAG_COMMANDS
},
166 {AIC79XX_CONFIGED_TAG_COMMANDS
},
167 {AIC79XX_CONFIGED_TAG_COMMANDS
},
168 {AIC79XX_CONFIGED_TAG_COMMANDS
},
169 {AIC79XX_CONFIGED_TAG_COMMANDS
}
173 * The I/O cell on the chip is very configurable in respect to its analog
174 * characteristics. Set the defaults here; they can be overriden with
175 * the proper insmod parameters.
177 struct ahd_linux_iocell_opts
183 #define AIC79XX_DEFAULT_PRECOMP 0xFF
184 #define AIC79XX_DEFAULT_SLEWRATE 0xFF
185 #define AIC79XX_DEFAULT_AMPLITUDE 0xFF
186 #define AIC79XX_DEFAULT_IOOPTS \
188 AIC79XX_DEFAULT_PRECOMP, \
189 AIC79XX_DEFAULT_SLEWRATE, \
190 AIC79XX_DEFAULT_AMPLITUDE \
192 #define AIC79XX_PRECOMP_INDEX 0
193 #define AIC79XX_SLEWRATE_INDEX 1
194 #define AIC79XX_AMPLITUDE_INDEX 2
195 static struct ahd_linux_iocell_opts aic79xx_iocell_info
[] =
197 AIC79XX_DEFAULT_IOOPTS
,
198 AIC79XX_DEFAULT_IOOPTS
,
199 AIC79XX_DEFAULT_IOOPTS
,
200 AIC79XX_DEFAULT_IOOPTS
,
201 AIC79XX_DEFAULT_IOOPTS
,
202 AIC79XX_DEFAULT_IOOPTS
,
203 AIC79XX_DEFAULT_IOOPTS
,
204 AIC79XX_DEFAULT_IOOPTS
,
205 AIC79XX_DEFAULT_IOOPTS
,
206 AIC79XX_DEFAULT_IOOPTS
,
207 AIC79XX_DEFAULT_IOOPTS
,
208 AIC79XX_DEFAULT_IOOPTS
,
209 AIC79XX_DEFAULT_IOOPTS
,
210 AIC79XX_DEFAULT_IOOPTS
,
211 AIC79XX_DEFAULT_IOOPTS
,
212 AIC79XX_DEFAULT_IOOPTS
216 * There should be a specific return value for this in scsi.h, but
217 * it seems that most drivers ignore it.
219 #define DID_UNDERFLOW DID_ERROR
222 ahd_print_path(struct ahd_softc
*ahd
, struct scb
*scb
)
224 printk("(scsi%d:%c:%d:%d): ",
225 ahd
->platform_data
->host
->host_no
,
226 scb
!= NULL
? SCB_GET_CHANNEL(ahd
, scb
) : 'X',
227 scb
!= NULL
? SCB_GET_TARGET(ahd
, scb
) : -1,
228 scb
!= NULL
? SCB_GET_LUN(scb
) : -1);
232 * XXX - these options apply unilaterally to _all_ adapters
233 * cards in the system. This should be fixed. Exceptions to this
234 * rule are noted in the comments.
238 * Skip the scsi bus reset. Non 0 make us skip the reset at startup. This
239 * has no effect on any later resets that might occur due to things like
242 static uint32_t aic79xx_no_reset
;
245 * Certain PCI motherboards will scan PCI devices from highest to lowest,
246 * others scan from lowest to highest, and they tend to do all kinds of
247 * strange things when they come into contact with PCI bridge chips. The
248 * net result of all this is that the PCI card that is actually used to boot
249 * the machine is very hard to detect. Most motherboards go from lowest
250 * PCI slot number to highest, and the first SCSI controller found is the
251 * one you boot from. The only exceptions to this are when a controller
252 * has its BIOS disabled. So, we by default sort all of our SCSI controllers
253 * from lowest PCI slot number to highest PCI slot number. We also force
254 * all controllers with their BIOS disabled to the end of the list. This
255 * works on *almost* all computers. Where it doesn't work, we have this
256 * option. Setting this option to non-0 will reverse the order of the sort
257 * to highest first, then lowest, but will still leave cards with their BIOS
258 * disabled at the very end. That should fix everyone up unless there are
259 * really strange cirumstances.
261 static uint32_t aic79xx_reverse_scan
;
264 * Should we force EXTENDED translation on a controller.
265 * 0 == Use whatever is in the SEEPROM or default to off
266 * 1 == Use whatever is in the SEEPROM or default to on
268 static uint32_t aic79xx_extended
;
271 * PCI bus parity checking of the Adaptec controllers. This is somewhat
272 * dubious at best. To my knowledge, this option has never actually
273 * solved a PCI parity problem, but on certain machines with broken PCI
274 * chipset configurations, it can generate tons of false error messages.
275 * It's included in the driver for completeness.
276 * 0 = Shut off PCI parity check
277 * non-0 = Enable PCI parity check
279 * NOTE: you can't actually pass -1 on the lilo prompt. So, to set this
280 * variable to -1 you would actually want to simply pass the variable
281 * name without a number. That will invert the 0 which will result in
284 static uint32_t aic79xx_pci_parity
= ~0;
287 * There are lots of broken chipsets in the world. Some of them will
288 * violate the PCI spec when we issue byte sized memory writes to our
289 * controller. I/O mapped register access, if allowed by the given
290 * platform, will work in almost all cases.
292 uint32_t aic79xx_allow_memio
= ~0;
295 * So that we can set how long each device is given as a selection timeout.
296 * The table of values goes like this:
301 * We default to 256ms because some older devices need a longer time
302 * to respond to initial selection.
304 static uint32_t aic79xx_seltime
;
307 * Certain devices do not perform any aging on commands. Should the
308 * device be saturated by commands in one portion of the disk, it is
309 * possible for transactions on far away sectors to never be serviced.
310 * To handle these devices, we can periodically send an ordered tag to
311 * force all outstanding transactions to be serviced prior to a new
314 uint32_t aic79xx_periodic_otag
;
317 * Module information and settable options.
319 static char *aic79xx
= NULL
;
321 MODULE_AUTHOR("Maintainer: Justin T. Gibbs <gibbs@scsiguy.com>");
322 MODULE_DESCRIPTION("Adaptec Aic790X U320 SCSI Host Bus Adapter driver");
323 MODULE_LICENSE("Dual BSD/GPL");
324 MODULE_VERSION(AIC79XX_DRIVER_VERSION
);
325 module_param(aic79xx
, charp
, 0444);
326 MODULE_PARM_DESC(aic79xx
,
327 "period delimited, options string.\n"
328 " verbose Enable verbose/diagnostic logging\n"
329 " allow_memio Allow device registers to be memory mapped\n"
330 " debug Bitmask of debug values to enable\n"
331 " no_reset Supress initial bus resets\n"
332 " extended Enable extended geometry on all controllers\n"
333 " periodic_otag Send an ordered tagged transaction\n"
334 " periodically to prevent tag starvation.\n"
335 " This may be required by some older disk\n"
336 " or drives/RAID arrays.\n"
337 " reverse_scan Sort PCI devices highest Bus/Slot to lowest\n"
338 " tag_info:<tag_str> Set per-target tag depth\n"
339 " global_tag_depth:<int> Global tag depth for all targets on all buses\n"
340 " slewrate:<slewrate_list>Set the signal slew rate (0-15).\n"
341 " precomp:<pcomp_list> Set the signal precompensation (0-7).\n"
342 " amplitude:<int> Set the signal amplitude (0-7).\n"
343 " seltime:<int> Selection Timeout:\n"
344 " (0/256ms,1/128ms,2/64ms,3/32ms)\n"
346 " Sample /etc/modprobe.conf line:\n"
347 " Enable verbose logging\n"
348 " Set tag depth on Controller 2/Target 2 to 10 tags\n"
349 " Shorten the selection timeout to 128ms\n"
351 " options aic79xx 'aic79xx=verbose.tag_info:{{}.{}.{..10}}.seltime:1'\n"
354 static void ahd_linux_handle_scsi_status(struct ahd_softc
*,
355 struct scsi_device
*,
357 static void ahd_linux_queue_cmd_complete(struct ahd_softc
*ahd
,
358 struct scsi_cmnd
*cmd
);
359 static void ahd_linux_sem_timeout(u_long arg
);
360 static int ahd_linux_queue_recovery_cmd(struct scsi_cmnd
*cmd
, scb_flag flag
);
361 static void ahd_linux_initialize_scsi_bus(struct ahd_softc
*ahd
);
362 static u_int
ahd_linux_user_tagdepth(struct ahd_softc
*ahd
,
363 struct ahd_devinfo
*devinfo
);
364 static void ahd_linux_device_queue_depth(struct scsi_device
*);
365 static int ahd_linux_run_command(struct ahd_softc
*,
366 struct ahd_linux_device
*,
368 static void ahd_linux_setup_tag_info_global(char *p
);
369 static int aic79xx_setup(char *c
);
371 static int ahd_linux_unit
;
374 /****************************** Inlines ***************************************/
375 static __inline
void ahd_linux_unmap_scb(struct ahd_softc
*, struct scb
*);
378 ahd_linux_unmap_scb(struct ahd_softc
*ahd
, struct scb
*scb
)
380 struct scsi_cmnd
*cmd
;
384 direction
= cmd
->sc_data_direction
;
385 ahd_sync_sglist(ahd
, scb
, BUS_DMASYNC_POSTWRITE
);
386 if (cmd
->use_sg
!= 0) {
387 struct scatterlist
*sg
;
389 sg
= (struct scatterlist
*)cmd
->request_buffer
;
390 pci_unmap_sg(ahd
->dev_softc
, sg
, cmd
->use_sg
, direction
);
391 } else if (cmd
->request_bufflen
!= 0) {
392 pci_unmap_single(ahd
->dev_softc
,
393 scb
->platform_data
->buf_busaddr
,
394 cmd
->request_bufflen
, direction
);
398 /******************************** Macros **************************************/
399 #define BUILD_SCSIID(ahd, cmd) \
400 ((((cmd)->device->id << TID_SHIFT) & TID) | (ahd)->our_id)
403 * Return a string describing the driver.
406 ahd_linux_info(struct Scsi_Host
*host
)
408 static char buffer
[512];
411 struct ahd_softc
*ahd
;
414 ahd
= *(struct ahd_softc
**)host
->hostdata
;
415 memset(bp
, 0, sizeof(buffer
));
416 strcpy(bp
, "Adaptec AIC79XX PCI-X SCSI HBA DRIVER, Rev ");
417 strcat(bp
, AIC79XX_DRIVER_VERSION
);
420 strcat(bp
, ahd
->description
);
423 ahd_controller_info(ahd
, ahd_info
);
424 strcat(bp
, ahd_info
);
431 * Queue an SCB to the controller.
434 ahd_linux_queue(struct scsi_cmnd
* cmd
, void (*scsi_done
) (struct scsi_cmnd
*))
436 struct ahd_softc
*ahd
;
437 struct ahd_linux_device
*dev
= scsi_transport_device_data(cmd
->device
);
439 ahd
= *(struct ahd_softc
**)cmd
->device
->host
->hostdata
;
442 * Close the race of a command that was in the process of
443 * being queued to us just as our simq was frozen. Let
444 * DV commands through so long as we are only frozen to
447 if (ahd
->platform_data
->qfrozen
!= 0) {
448 printf("%s: queue frozen\n", ahd_name(ahd
));
450 return SCSI_MLQUEUE_HOST_BUSY
;
454 * Save the callback on completion function.
456 cmd
->scsi_done
= scsi_done
;
458 cmd
->result
= CAM_REQ_INPROG
<< 16;
460 return ahd_linux_run_command(ahd
, dev
, cmd
);
463 static inline struct scsi_target
**
464 ahd_linux_target_in_softc(struct scsi_target
*starget
)
466 struct ahd_softc
*ahd
=
467 *((struct ahd_softc
**)dev_to_shost(&starget
->dev
)->hostdata
);
468 unsigned int target_offset
;
470 target_offset
= starget
->id
;
471 if (starget
->channel
!= 0)
474 return &ahd
->platform_data
->starget
[target_offset
];
478 ahd_linux_target_alloc(struct scsi_target
*starget
)
480 struct ahd_softc
*ahd
=
481 *((struct ahd_softc
**)dev_to_shost(&starget
->dev
)->hostdata
);
483 struct scsi_target
**ahd_targp
= ahd_linux_target_in_softc(starget
);
484 struct ahd_linux_target
*targ
= scsi_transport_target_data(starget
);
485 struct ahd_devinfo devinfo
;
486 struct ahd_initiator_tinfo
*tinfo
;
487 struct ahd_tmode_tstate
*tstate
;
488 char channel
= starget
->channel
+ 'A';
490 ahd_lock(ahd
, &flags
);
492 BUG_ON(*ahd_targp
!= NULL
);
494 *ahd_targp
= starget
;
495 memset(targ
, 0, sizeof(*targ
));
497 tinfo
= ahd_fetch_transinfo(ahd
, channel
, ahd
->our_id
,
498 starget
->id
, &tstate
);
499 ahd_compile_devinfo(&devinfo
, ahd
->our_id
, starget
->id
,
500 CAM_LUN_WILDCARD
, channel
,
502 spi_min_period(starget
) = AHD_SYNCRATE_MAX
; /* We can do U320 */
503 if ((ahd
->bugs
& AHD_PACED_NEGTABLE_BUG
) != 0)
504 spi_max_offset(starget
) = MAX_OFFSET_PACED_BUG
;
506 spi_max_offset(starget
) = MAX_OFFSET_PACED
;
507 spi_max_width(starget
) = ahd
->features
& AHD_WIDE
;
509 ahd_set_syncrate(ahd
, &devinfo
, 0, 0, 0,
510 AHD_TRANS_GOAL
, /*paused*/FALSE
);
511 ahd_set_width(ahd
, &devinfo
, MSG_EXT_WDTR_BUS_8_BIT
,
512 AHD_TRANS_GOAL
, /*paused*/FALSE
);
513 ahd_unlock(ahd
, &flags
);
519 ahd_linux_target_destroy(struct scsi_target
*starget
)
521 struct scsi_target
**ahd_targp
= ahd_linux_target_in_softc(starget
);
527 ahd_linux_slave_alloc(struct scsi_device
*sdev
)
529 struct ahd_softc
*ahd
=
530 *((struct ahd_softc
**)sdev
->host
->hostdata
);
531 struct scsi_target
*starget
= sdev
->sdev_target
;
532 struct ahd_linux_target
*targ
= scsi_transport_target_data(starget
);
533 struct ahd_linux_device
*dev
;
536 printf("%s: Slave Alloc %d\n", ahd_name(ahd
), sdev
->id
);
538 BUG_ON(targ
->sdev
[sdev
->lun
] != NULL
);
540 dev
= scsi_transport_device_data(sdev
);
541 memset(dev
, 0, sizeof(*dev
));
544 * We start out life using untagged
545 * transactions of which we allow one.
550 * Set maxtags to 0. This will be changed if we
551 * later determine that we are dealing with
552 * a tagged queuing capable device.
556 targ
->sdev
[sdev
->lun
] = sdev
;
562 ahd_linux_slave_configure(struct scsi_device
*sdev
)
564 struct ahd_softc
*ahd
;
566 ahd
= *((struct ahd_softc
**)sdev
->host
->hostdata
);
568 printf("%s: Slave Configure %d\n", ahd_name(ahd
), sdev
->id
);
570 ahd_linux_device_queue_depth(sdev
);
572 /* Initial Domain Validation */
573 if (!spi_initial_dv(sdev
->sdev_target
))
580 ahd_linux_slave_destroy(struct scsi_device
*sdev
)
582 struct ahd_softc
*ahd
;
583 struct ahd_linux_device
*dev
= scsi_transport_device_data(sdev
);
584 struct ahd_linux_target
*targ
= scsi_transport_target_data(sdev
->sdev_target
);
586 ahd
= *((struct ahd_softc
**)sdev
->host
->hostdata
);
588 printf("%s: Slave Destroy %d\n", ahd_name(ahd
), sdev
->id
);
592 targ
->sdev
[sdev
->lun
] = NULL
;
596 #if defined(__i386__)
598 * Return the disk geometry for the given SCSI device.
601 ahd_linux_biosparam(struct scsi_device
*sdev
, struct block_device
*bdev
,
602 sector_t capacity
, int geom
[])
610 struct ahd_softc
*ahd
;
612 ahd
= *((struct ahd_softc
**)sdev
->host
->hostdata
);
614 bh
= scsi_bios_ptable(bdev
);
616 ret
= scsi_partsize(bh
, capacity
,
617 &geom
[2], &geom
[0], &geom
[1]);
624 cylinders
= aic_sector_div(capacity
, heads
, sectors
);
626 if (aic79xx_extended
!= 0)
629 extended
= (ahd
->flags
& AHD_EXTENDED_TRANS_A
) != 0;
630 if (extended
&& cylinders
>= 1024) {
633 cylinders
= aic_sector_div(capacity
, heads
, sectors
);
643 * Abort the current SCSI command(s).
646 ahd_linux_abort(struct scsi_cmnd
*cmd
)
650 error
= ahd_linux_queue_recovery_cmd(cmd
, SCB_ABORT
);
652 printf("aic79xx_abort returns 0x%x\n", error
);
657 * Attempt to send a target reset message to the device that timed out.
660 ahd_linux_dev_reset(struct scsi_cmnd
*cmd
)
664 error
= ahd_linux_queue_recovery_cmd(cmd
, SCB_DEVICE_RESET
);
666 printf("aic79xx_dev_reset returns 0x%x\n", error
);
671 * Reset the SCSI bus.
674 ahd_linux_bus_reset(struct scsi_cmnd
*cmd
)
676 struct ahd_softc
*ahd
;
680 ahd
= *(struct ahd_softc
**)cmd
->device
->host
->hostdata
;
682 if ((ahd_debug
& AHD_SHOW_RECOVERY
) != 0)
683 printf("%s: Bus reset called for cmd %p\n",
687 found
= ahd_reset_channel(ahd
, cmd
->device
->channel
+ 'A',
688 /*initiate reset*/TRUE
);
692 printf("%s: SCSI bus reset delivered. "
693 "%d SCBs aborted.\n", ahd_name(ahd
), found
);
698 struct scsi_host_template aic79xx_driver_template
= {
699 .module
= THIS_MODULE
,
701 .proc_name
= "aic79xx",
702 .proc_info
= ahd_linux_proc_info
,
703 .info
= ahd_linux_info
,
704 .queuecommand
= ahd_linux_queue
,
705 .eh_abort_handler
= ahd_linux_abort
,
706 .eh_device_reset_handler
= ahd_linux_dev_reset
,
707 .eh_bus_reset_handler
= ahd_linux_bus_reset
,
708 #if defined(__i386__)
709 .bios_param
= ahd_linux_biosparam
,
711 .can_queue
= AHD_MAX_QUEUE
,
714 .use_clustering
= ENABLE_CLUSTERING
,
715 .slave_alloc
= ahd_linux_slave_alloc
,
716 .slave_configure
= ahd_linux_slave_configure
,
717 .slave_destroy
= ahd_linux_slave_destroy
,
718 .target_alloc
= ahd_linux_target_alloc
,
719 .target_destroy
= ahd_linux_target_destroy
,
722 /******************************** Bus DMA *************************************/
724 ahd_dma_tag_create(struct ahd_softc
*ahd
, bus_dma_tag_t parent
,
725 bus_size_t alignment
, bus_size_t boundary
,
726 dma_addr_t lowaddr
, dma_addr_t highaddr
,
727 bus_dma_filter_t
*filter
, void *filterarg
,
728 bus_size_t maxsize
, int nsegments
,
729 bus_size_t maxsegsz
, int flags
, bus_dma_tag_t
*ret_tag
)
733 dmat
= malloc(sizeof(*dmat
), M_DEVBUF
, M_NOWAIT
);
738 * Linux is very simplistic about DMA memory. For now don't
739 * maintain all specification information. Once Linux supplies
740 * better facilities for doing these operations, or the
741 * needs of this particular driver change, we might need to do
744 dmat
->alignment
= alignment
;
745 dmat
->boundary
= boundary
;
746 dmat
->maxsize
= maxsize
;
752 ahd_dma_tag_destroy(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
)
754 free(dmat
, M_DEVBUF
);
758 ahd_dmamem_alloc(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
, void** vaddr
,
759 int flags
, bus_dmamap_t
*mapp
)
761 *vaddr
= pci_alloc_consistent(ahd
->dev_softc
,
762 dmat
->maxsize
, mapp
);
769 ahd_dmamem_free(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
,
770 void* vaddr
, bus_dmamap_t map
)
772 pci_free_consistent(ahd
->dev_softc
, dmat
->maxsize
,
777 ahd_dmamap_load(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
, bus_dmamap_t map
,
778 void *buf
, bus_size_t buflen
, bus_dmamap_callback_t
*cb
,
779 void *cb_arg
, int flags
)
782 * Assume for now that this will only be used during
783 * initialization and not for per-transaction buffer mapping.
785 bus_dma_segment_t stack_sg
;
787 stack_sg
.ds_addr
= map
;
788 stack_sg
.ds_len
= dmat
->maxsize
;
789 cb(cb_arg
, &stack_sg
, /*nseg*/1, /*error*/0);
794 ahd_dmamap_destroy(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
, bus_dmamap_t map
)
799 ahd_dmamap_unload(struct ahd_softc
*ahd
, bus_dma_tag_t dmat
, bus_dmamap_t map
)
805 /********************* Platform Dependent Functions ***************************/
807 * Compare "left hand" softc with "right hand" softc, returning:
808 * < 0 - lahd has a lower priority than rahd
809 * 0 - Softcs are equal
810 * > 0 - lahd has a higher priority than rahd
813 ahd_softc_comp(struct ahd_softc
*lahd
, struct ahd_softc
*rahd
)
818 * Under Linux, cards are ordered as follows:
819 * 1) PCI devices that are marked as the boot controller.
820 * 2) PCI devices with BIOS enabled sorted by bus/slot/func.
821 * 3) All remaining PCI devices sorted by bus/slot/func.
824 value
= (lahd
->flags
& AHD_BOOT_CHANNEL
)
825 - (rahd
->flags
& AHD_BOOT_CHANNEL
);
827 /* Controllers set for boot have a *higher* priority */
831 value
= (lahd
->flags
& AHD_BIOS_ENABLED
)
832 - (rahd
->flags
& AHD_BIOS_ENABLED
);
834 /* Controllers with BIOS enabled have a *higher* priority */
837 /* Still equal. Sort by bus/slot/func. */
838 if (aic79xx_reverse_scan
!= 0)
839 value
= ahd_get_pci_bus(lahd
->dev_softc
)
840 - ahd_get_pci_bus(rahd
->dev_softc
);
842 value
= ahd_get_pci_bus(rahd
->dev_softc
)
843 - ahd_get_pci_bus(lahd
->dev_softc
);
846 if (aic79xx_reverse_scan
!= 0)
847 value
= ahd_get_pci_slot(lahd
->dev_softc
)
848 - ahd_get_pci_slot(rahd
->dev_softc
);
850 value
= ahd_get_pci_slot(rahd
->dev_softc
)
851 - ahd_get_pci_slot(lahd
->dev_softc
);
855 value
= rahd
->channel
- lahd
->channel
;
860 ahd_linux_setup_iocell_info(u_long index
, int instance
, int targ
, int32_t value
)
864 && (instance
< NUM_ELEMENTS(aic79xx_iocell_info
))) {
865 uint8_t *iocell_info
;
867 iocell_info
= (uint8_t*)&aic79xx_iocell_info
[instance
];
868 iocell_info
[index
] = value
& 0xFFFF;
870 printf("iocell[%d:%ld] = %d\n", instance
, index
, value
);
875 ahd_linux_setup_tag_info_global(char *p
)
879 tags
= simple_strtoul(p
+ 1, NULL
, 0) & 0xff;
880 printf("Setting Global Tags= %d\n", tags
);
882 for (i
= 0; i
< NUM_ELEMENTS(aic79xx_tag_info
); i
++) {
883 for (j
= 0; j
< AHD_NUM_TARGETS
; j
++) {
884 aic79xx_tag_info
[i
].tag_commands
[j
] = tags
;
890 ahd_linux_setup_tag_info(u_long arg
, int instance
, int targ
, int32_t value
)
893 if ((instance
>= 0) && (targ
>= 0)
894 && (instance
< NUM_ELEMENTS(aic79xx_tag_info
))
895 && (targ
< AHD_NUM_TARGETS
)) {
896 aic79xx_tag_info
[instance
].tag_commands
[targ
] = value
& 0x1FF;
898 printf("tag_info[%d:%d] = %d\n", instance
, targ
, value
);
903 ahd_parse_brace_option(char *opt_name
, char *opt_arg
, char *end
, int depth
,
904 void (*callback
)(u_long
, int, int, int32_t),
913 char tok_list
[] = {'.', ',', '{', '}', '\0'};
915 /* All options use a ':' name/arg separator */
923 * Restore separator that may be in
924 * the middle of our option argument.
926 tok_end
= strchr(opt_arg
, '\0');
932 if (instance
== -1) {
939 printf("Malformed Option %s\n",
949 else if (instance
!= -1)
959 else if (instance
>= 0)
968 for (i
= 0; tok_list
[i
]; i
++) {
969 tok_end2
= strchr(opt_arg
, tok_list
[i
]);
970 if ((tok_end2
) && (tok_end2
< tok_end
))
973 callback(callback_arg
, instance
, targ
,
974 simple_strtol(opt_arg
, NULL
, 0));
983 * Handle Linux boot parameters. This routine allows for assigning a value
984 * to a parameter with a ':' between the parameter and the value.
985 * ie. aic79xx=stpwlev:1,extended
988 aic79xx_setup(char *s
)
998 { "extended", &aic79xx_extended
},
999 { "no_reset", &aic79xx_no_reset
},
1000 { "verbose", &aic79xx_verbose
},
1001 { "allow_memio", &aic79xx_allow_memio
},
1003 { "debug", &ahd_debug
},
1005 { "reverse_scan", &aic79xx_reverse_scan
},
1006 { "periodic_otag", &aic79xx_periodic_otag
},
1007 { "pci_parity", &aic79xx_pci_parity
},
1008 { "seltime", &aic79xx_seltime
},
1009 { "tag_info", NULL
},
1010 { "global_tag_depth", NULL
},
1011 { "slewrate", NULL
},
1012 { "precomp", NULL
},
1013 { "amplitude", NULL
},
1016 end
= strchr(s
, '\0');
1019 * XXX ia64 gcc isn't smart enough to know that NUM_ELEMENTS
1020 * will never be 0 in this case.
1024 while ((p
= strsep(&s
, ",.")) != NULL
) {
1027 for (i
= 0; i
< NUM_ELEMENTS(options
); i
++) {
1029 n
= strlen(options
[i
].name
);
1030 if (strncmp(options
[i
].name
, p
, n
) == 0)
1033 if (i
== NUM_ELEMENTS(options
))
1036 if (strncmp(p
, "global_tag_depth", n
) == 0) {
1037 ahd_linux_setup_tag_info_global(p
+ n
);
1038 } else if (strncmp(p
, "tag_info", n
) == 0) {
1039 s
= ahd_parse_brace_option("tag_info", p
+ n
, end
,
1040 2, ahd_linux_setup_tag_info
, 0);
1041 } else if (strncmp(p
, "slewrate", n
) == 0) {
1042 s
= ahd_parse_brace_option("slewrate",
1043 p
+ n
, end
, 1, ahd_linux_setup_iocell_info
,
1044 AIC79XX_SLEWRATE_INDEX
);
1045 } else if (strncmp(p
, "precomp", n
) == 0) {
1046 s
= ahd_parse_brace_option("precomp",
1047 p
+ n
, end
, 1, ahd_linux_setup_iocell_info
,
1048 AIC79XX_PRECOMP_INDEX
);
1049 } else if (strncmp(p
, "amplitude", n
) == 0) {
1050 s
= ahd_parse_brace_option("amplitude",
1051 p
+ n
, end
, 1, ahd_linux_setup_iocell_info
,
1052 AIC79XX_AMPLITUDE_INDEX
);
1053 } else if (p
[n
] == ':') {
1054 *(options
[i
].flag
) = simple_strtoul(p
+ n
+ 1, NULL
, 0);
1055 } else if (!strncmp(p
, "verbose", n
)) {
1056 *(options
[i
].flag
) = 1;
1058 *(options
[i
].flag
) ^= 0xFFFFFFFF;
1064 __setup("aic79xx=", aic79xx_setup
);
1066 uint32_t aic79xx_verbose
;
1069 ahd_linux_register_host(struct ahd_softc
*ahd
, struct scsi_host_template
*template)
1072 struct Scsi_Host
*host
;
1076 template->name
= ahd
->description
;
1077 host
= scsi_host_alloc(template, sizeof(struct ahd_softc
*));
1081 *((struct ahd_softc
**)host
->hostdata
) = ahd
;
1083 scsi_assign_lock(host
, &ahd
->platform_data
->spin_lock
);
1084 ahd
->platform_data
->host
= host
;
1085 host
->can_queue
= AHD_MAX_QUEUE
;
1086 host
->cmd_per_lun
= 2;
1087 host
->sg_tablesize
= AHD_NSEG
;
1088 host
->this_id
= ahd
->our_id
;
1089 host
->irq
= ahd
->platform_data
->irq
;
1090 host
->max_id
= (ahd
->features
& AHD_WIDE
) ? 16 : 8;
1091 host
->max_lun
= AHD_NUM_LUNS
;
1092 host
->max_channel
= 0;
1093 host
->sg_tablesize
= AHD_NSEG
;
1094 ahd_set_unit(ahd
, ahd_linux_unit
++);
1095 sprintf(buf
, "scsi%d", host
->host_no
);
1096 new_name
= malloc(strlen(buf
) + 1, M_DEVBUF
, M_NOWAIT
);
1097 if (new_name
!= NULL
) {
1098 strcpy(new_name
, buf
);
1099 ahd_set_name(ahd
, new_name
);
1101 host
->unique_id
= ahd
->unit
;
1102 ahd_linux_initialize_scsi_bus(ahd
);
1103 ahd_intr_enable(ahd
, TRUE
);
1104 ahd_unlock(ahd
, &s
);
1106 host
->transportt
= ahd_linux_transport_template
;
1108 scsi_add_host(host
, &ahd
->dev_softc
->dev
); /* XXX handle failure */
1109 scsi_scan_host(host
);
1114 ahd_linux_get_memsize(void)
1119 return ((uint64_t)si
.totalram
<< PAGE_SHIFT
);
1123 * Place the SCSI bus into a known state by either resetting it,
1124 * or forcing transfer negotiations on the next command to any
1128 ahd_linux_initialize_scsi_bus(struct ahd_softc
*ahd
)
1136 if (aic79xx_no_reset
!= 0)
1137 ahd
->flags
&= ~AHD_RESET_BUS_A
;
1139 if ((ahd
->flags
& AHD_RESET_BUS_A
) != 0)
1140 ahd_reset_channel(ahd
, 'A', /*initiate_reset*/TRUE
);
1142 numtarg
= (ahd
->features
& AHD_WIDE
) ? 16 : 8;
1145 * Force negotiation to async for all targets that
1146 * will not see an initial bus reset.
1148 for (; target_id
< numtarg
; target_id
++) {
1149 struct ahd_devinfo devinfo
;
1150 struct ahd_initiator_tinfo
*tinfo
;
1151 struct ahd_tmode_tstate
*tstate
;
1153 tinfo
= ahd_fetch_transinfo(ahd
, 'A', ahd
->our_id
,
1154 target_id
, &tstate
);
1155 ahd_compile_devinfo(&devinfo
, ahd
->our_id
, target_id
,
1156 CAM_LUN_WILDCARD
, 'A', ROLE_INITIATOR
);
1157 ahd_update_neg_request(ahd
, &devinfo
, tstate
,
1158 tinfo
, AHD_NEG_ALWAYS
);
1160 /* Give the bus some time to recover */
1161 if ((ahd
->flags
& AHD_RESET_BUS_A
) != 0) {
1162 ahd_freeze_simq(ahd
);
1163 init_timer(&ahd
->platform_data
->reset_timer
);
1164 ahd
->platform_data
->reset_timer
.data
= (u_long
)ahd
;
1165 ahd
->platform_data
->reset_timer
.expires
=
1166 jiffies
+ (AIC79XX_RESET_DELAY
* HZ
)/1000;
1167 ahd
->platform_data
->reset_timer
.function
=
1168 (ahd_linux_callback_t
*)ahd_release_simq
;
1169 add_timer(&ahd
->platform_data
->reset_timer
);
1174 ahd_platform_alloc(struct ahd_softc
*ahd
, void *platform_arg
)
1176 ahd
->platform_data
=
1177 malloc(sizeof(struct ahd_platform_data
), M_DEVBUF
, M_NOWAIT
);
1178 if (ahd
->platform_data
== NULL
)
1180 memset(ahd
->platform_data
, 0, sizeof(struct ahd_platform_data
));
1181 ahd
->platform_data
->irq
= AHD_LINUX_NOIRQ
;
1183 init_MUTEX_LOCKED(&ahd
->platform_data
->eh_sem
);
1184 ahd
->seltime
= (aic79xx_seltime
& 0x3) << 4;
1189 ahd_platform_free(struct ahd_softc
*ahd
)
1191 struct scsi_target
*starget
;
1194 if (ahd
->platform_data
!= NULL
) {
1195 if (ahd
->platform_data
->host
!= NULL
) {
1196 scsi_remove_host(ahd
->platform_data
->host
);
1197 scsi_host_put(ahd
->platform_data
->host
);
1200 /* destroy all of the device and target objects */
1201 for (i
= 0; i
< AHD_NUM_TARGETS
; i
++) {
1202 starget
= ahd
->platform_data
->starget
[i
];
1203 if (starget
!= NULL
) {
1204 for (j
= 0; j
< AHD_NUM_LUNS
; j
++) {
1205 struct ahd_linux_target
*targ
=
1206 scsi_transport_target_data(starget
);
1207 if (targ
->sdev
[j
] == NULL
)
1209 targ
->sdev
[j
] = NULL
;
1211 ahd
->platform_data
->starget
[i
] = NULL
;
1215 if (ahd
->platform_data
->irq
!= AHD_LINUX_NOIRQ
)
1216 free_irq(ahd
->platform_data
->irq
, ahd
);
1217 if (ahd
->tags
[0] == BUS_SPACE_PIO
1218 && ahd
->bshs
[0].ioport
!= 0)
1219 release_region(ahd
->bshs
[0].ioport
, 256);
1220 if (ahd
->tags
[1] == BUS_SPACE_PIO
1221 && ahd
->bshs
[1].ioport
!= 0)
1222 release_region(ahd
->bshs
[1].ioport
, 256);
1223 if (ahd
->tags
[0] == BUS_SPACE_MEMIO
1224 && ahd
->bshs
[0].maddr
!= NULL
) {
1225 iounmap(ahd
->bshs
[0].maddr
);
1226 release_mem_region(ahd
->platform_data
->mem_busaddr
,
1229 free(ahd
->platform_data
, M_DEVBUF
);
1234 ahd_platform_init(struct ahd_softc
*ahd
)
1237 * Lookup and commit any modified IO Cell options.
1239 if (ahd
->unit
< NUM_ELEMENTS(aic79xx_iocell_info
)) {
1240 struct ahd_linux_iocell_opts
*iocell_opts
;
1242 iocell_opts
= &aic79xx_iocell_info
[ahd
->unit
];
1243 if (iocell_opts
->precomp
!= AIC79XX_DEFAULT_PRECOMP
)
1244 AHD_SET_PRECOMP(ahd
, iocell_opts
->precomp
);
1245 if (iocell_opts
->slewrate
!= AIC79XX_DEFAULT_SLEWRATE
)
1246 AHD_SET_SLEWRATE(ahd
, iocell_opts
->slewrate
);
1247 if (iocell_opts
->amplitude
!= AIC79XX_DEFAULT_AMPLITUDE
)
1248 AHD_SET_AMPLITUDE(ahd
, iocell_opts
->amplitude
);
1254 ahd_platform_freeze_devq(struct ahd_softc
*ahd
, struct scb
*scb
)
1256 ahd_platform_abort_scbs(ahd
, SCB_GET_TARGET(ahd
, scb
),
1257 SCB_GET_CHANNEL(ahd
, scb
),
1258 SCB_GET_LUN(scb
), SCB_LIST_NULL
,
1259 ROLE_UNKNOWN
, CAM_REQUEUE_REQ
);
1263 ahd_platform_set_tags(struct ahd_softc
*ahd
, struct ahd_devinfo
*devinfo
,
1266 struct scsi_target
*starget
;
1267 struct ahd_linux_target
*targ
;
1268 struct ahd_linux_device
*dev
;
1269 struct scsi_device
*sdev
;
1273 starget
= ahd
->platform_data
->starget
[devinfo
->target
];
1274 targ
= scsi_transport_target_data(starget
);
1275 BUG_ON(targ
== NULL
);
1276 sdev
= targ
->sdev
[devinfo
->lun
];
1280 dev
= scsi_transport_device_data(sdev
);
1284 was_queuing
= dev
->flags
& (AHD_DEV_Q_BASIC
|AHD_DEV_Q_TAGGED
);
1287 case AHD_QUEUE_NONE
:
1290 case AHD_QUEUE_BASIC
:
1291 now_queuing
= AHD_DEV_Q_BASIC
;
1293 case AHD_QUEUE_TAGGED
:
1294 now_queuing
= AHD_DEV_Q_TAGGED
;
1297 if ((dev
->flags
& AHD_DEV_FREEZE_TIL_EMPTY
) == 0
1298 && (was_queuing
!= now_queuing
)
1299 && (dev
->active
!= 0)) {
1300 dev
->flags
|= AHD_DEV_FREEZE_TIL_EMPTY
;
1304 dev
->flags
&= ~(AHD_DEV_Q_BASIC
|AHD_DEV_Q_TAGGED
|AHD_DEV_PERIODIC_OTAG
);
1308 usertags
= ahd_linux_user_tagdepth(ahd
, devinfo
);
1311 * Start out agressively and allow our
1312 * dynamic queue depth algorithm to take
1315 dev
->maxtags
= usertags
;
1316 dev
->openings
= dev
->maxtags
- dev
->active
;
1318 if (dev
->maxtags
== 0) {
1320 * Queueing is disabled by the user.
1323 } else if (alg
== AHD_QUEUE_TAGGED
) {
1324 dev
->flags
|= AHD_DEV_Q_TAGGED
;
1325 if (aic79xx_periodic_otag
!= 0)
1326 dev
->flags
|= AHD_DEV_PERIODIC_OTAG
;
1328 dev
->flags
|= AHD_DEV_Q_BASIC
;
1330 /* We can only have one opening. */
1332 dev
->openings
= 1 - dev
->active
;
1335 switch ((dev
->flags
& (AHD_DEV_Q_BASIC
|AHD_DEV_Q_TAGGED
))) {
1336 case AHD_DEV_Q_BASIC
:
1337 scsi_adjust_queue_depth(sdev
,
1339 dev
->openings
+ dev
->active
);
1341 case AHD_DEV_Q_TAGGED
:
1342 scsi_adjust_queue_depth(sdev
,
1344 dev
->openings
+ dev
->active
);
1348 * We allow the OS to queue 2 untagged transactions to
1349 * us at any time even though we can only execute them
1350 * serially on the controller/device. This should
1351 * remove some latency.
1353 scsi_adjust_queue_depth(sdev
,
1361 ahd_platform_abort_scbs(struct ahd_softc
*ahd
, int target
, char channel
,
1362 int lun
, u_int tag
, role_t role
, uint32_t status
)
1368 ahd_linux_user_tagdepth(struct ahd_softc
*ahd
, struct ahd_devinfo
*devinfo
)
1370 static int warned_user
;
1374 if ((ahd
->user_discenable
& devinfo
->target_mask
) != 0) {
1375 if (ahd
->unit
>= NUM_ELEMENTS(aic79xx_tag_info
)) {
1377 if (warned_user
== 0) {
1379 "aic79xx: WARNING: Insufficient tag_info instances\n"
1380 "aic79xx: for installed controllers. Using defaults\n"
1381 "aic79xx: Please update the aic79xx_tag_info array in\n"
1382 "aic79xx: the aic79xx_osm.c source file.\n");
1385 tags
= AHD_MAX_QUEUE
;
1387 adapter_tag_info_t
*tag_info
;
1389 tag_info
= &aic79xx_tag_info
[ahd
->unit
];
1390 tags
= tag_info
->tag_commands
[devinfo
->target_offset
];
1391 if (tags
> AHD_MAX_QUEUE
)
1392 tags
= AHD_MAX_QUEUE
;
1399 * Determines the queue depth for a given device.
1402 ahd_linux_device_queue_depth(struct scsi_device
*sdev
)
1404 struct ahd_devinfo devinfo
;
1406 struct ahd_softc
*ahd
= *((struct ahd_softc
**)sdev
->host
->hostdata
);
1408 ahd_compile_devinfo(&devinfo
,
1410 sdev
->sdev_target
->id
, sdev
->lun
,
1411 sdev
->sdev_target
->channel
== 0 ? 'A' : 'B',
1413 tags
= ahd_linux_user_tagdepth(ahd
, &devinfo
);
1414 if (tags
!= 0 && sdev
->tagged_supported
!= 0) {
1416 ahd_set_tags(ahd
, &devinfo
, AHD_QUEUE_TAGGED
);
1417 ahd_print_devinfo(ahd
, &devinfo
);
1418 printf("Tagged Queuing enabled. Depth %d\n", tags
);
1420 ahd_set_tags(ahd
, &devinfo
, AHD_QUEUE_NONE
);
1425 ahd_linux_run_command(struct ahd_softc
*ahd
, struct ahd_linux_device
*dev
,
1426 struct scsi_cmnd
*cmd
)
1429 struct hardware_scb
*hscb
;
1430 struct ahd_initiator_tinfo
*tinfo
;
1431 struct ahd_tmode_tstate
*tstate
;
1436 * Get an scb to use.
1438 tinfo
= ahd_fetch_transinfo(ahd
, 'A', ahd
->our_id
,
1439 cmd
->device
->id
, &tstate
);
1440 if ((dev
->flags
& (AHD_DEV_Q_TAGGED
|AHD_DEV_Q_BASIC
)) == 0
1441 || (tinfo
->curr
.ppr_options
& MSG_EXT_PPR_IU_REQ
) != 0) {
1442 col_idx
= AHD_NEVER_COL_IDX
;
1444 col_idx
= AHD_BUILD_COL_IDX(cmd
->device
->id
,
1447 if ((scb
= ahd_get_scb(ahd
, col_idx
)) == NULL
) {
1448 ahd
->flags
|= AHD_RESOURCE_SHORTAGE
;
1449 return SCSI_MLQUEUE_HOST_BUSY
;
1453 scb
->platform_data
->dev
= dev
;
1455 cmd
->host_scribble
= (char *)scb
;
1458 * Fill out basics of the HSCB.
1461 hscb
->scsiid
= BUILD_SCSIID(ahd
, cmd
);
1462 hscb
->lun
= cmd
->device
->lun
;
1463 scb
->hscb
->task_management
= 0;
1464 mask
= SCB_GET_TARGET_MASK(ahd
, scb
);
1466 if ((ahd
->user_discenable
& mask
) != 0)
1467 hscb
->control
|= DISCENB
;
1469 if ((tinfo
->curr
.ppr_options
& MSG_EXT_PPR_IU_REQ
) != 0)
1470 scb
->flags
|= SCB_PACKETIZED
;
1472 if ((tstate
->auto_negotiate
& mask
) != 0) {
1473 scb
->flags
|= SCB_AUTO_NEGOTIATE
;
1474 scb
->hscb
->control
|= MK_MESSAGE
;
1477 if ((dev
->flags
& (AHD_DEV_Q_TAGGED
|AHD_DEV_Q_BASIC
)) != 0) {
1479 uint8_t tag_msgs
[2];
1481 msg_bytes
= scsi_populate_tag_msg(cmd
, tag_msgs
);
1482 if (msg_bytes
&& tag_msgs
[0] != MSG_SIMPLE_TASK
) {
1483 hscb
->control
|= tag_msgs
[0];
1484 if (tag_msgs
[0] == MSG_ORDERED_TASK
)
1485 dev
->commands_since_idle_or_otag
= 0;
1487 if (dev
->commands_since_idle_or_otag
== AHD_OTAG_THRESH
1488 && (dev
->flags
& AHD_DEV_Q_TAGGED
) != 0) {
1489 hscb
->control
|= MSG_ORDERED_TASK
;
1490 dev
->commands_since_idle_or_otag
= 0;
1492 hscb
->control
|= MSG_SIMPLE_TASK
;
1496 hscb
->cdb_len
= cmd
->cmd_len
;
1497 memcpy(hscb
->shared_data
.idata
.cdb
, cmd
->cmnd
, hscb
->cdb_len
);
1499 scb
->platform_data
->xfer_len
= 0;
1500 ahd_set_residual(scb
, 0);
1501 ahd_set_sense_residual(scb
, 0);
1503 if (cmd
->use_sg
!= 0) {
1505 struct scatterlist
*cur_seg
;
1509 cur_seg
= (struct scatterlist
*)cmd
->request_buffer
;
1510 dir
= cmd
->sc_data_direction
;
1511 nseg
= pci_map_sg(ahd
->dev_softc
, cur_seg
,
1513 scb
->platform_data
->xfer_len
= 0;
1514 for (sg
= scb
->sg_list
; nseg
> 0; nseg
--, cur_seg
++) {
1518 addr
= sg_dma_address(cur_seg
);
1519 len
= sg_dma_len(cur_seg
);
1520 scb
->platform_data
->xfer_len
+= len
;
1521 sg
= ahd_sg_setup(ahd
, scb
, sg
, addr
, len
,
1524 } else if (cmd
->request_bufflen
!= 0) {
1530 dir
= cmd
->sc_data_direction
;
1531 addr
= pci_map_single(ahd
->dev_softc
,
1532 cmd
->request_buffer
,
1533 cmd
->request_bufflen
, dir
);
1534 scb
->platform_data
->xfer_len
= cmd
->request_bufflen
;
1535 scb
->platform_data
->buf_busaddr
= addr
;
1536 sg
= ahd_sg_setup(ahd
, scb
, sg
, addr
,
1537 cmd
->request_bufflen
, /*last*/TRUE
);
1540 LIST_INSERT_HEAD(&ahd
->pending_scbs
, scb
, pending_links
);
1543 dev
->commands_issued
++;
1545 if ((dev
->flags
& AHD_DEV_PERIODIC_OTAG
) != 0)
1546 dev
->commands_since_idle_or_otag
++;
1547 scb
->flags
|= SCB_ACTIVE
;
1548 ahd_queue_scb(ahd
, scb
);
1554 * SCSI controller interrupt handler.
1557 ahd_linux_isr(int irq
, void *dev_id
, struct pt_regs
* regs
)
1559 struct ahd_softc
*ahd
;
1563 ahd
= (struct ahd_softc
*) dev_id
;
1564 ahd_lock(ahd
, &flags
);
1565 ours
= ahd_intr(ahd
);
1566 ahd_unlock(ahd
, &flags
);
1567 return IRQ_RETVAL(ours
);
1571 ahd_platform_flushwork(struct ahd_softc
*ahd
)
1577 ahd_send_async(struct ahd_softc
*ahd
, char channel
,
1578 u_int target
, u_int lun
, ac_code code
, void *arg
)
1581 case AC_TRANSFER_NEG
:
1584 struct scsi_target
*starget
;
1585 struct ahd_linux_target
*targ
;
1586 struct info_str info
;
1587 struct ahd_initiator_tinfo
*tinfo
;
1588 struct ahd_tmode_tstate
*tstate
;
1589 unsigned int target_ppr_options
;
1591 BUG_ON(target
== CAM_TARGET_WILDCARD
);
1594 info
.length
= sizeof(buf
);
1597 tinfo
= ahd_fetch_transinfo(ahd
, channel
, ahd
->our_id
,
1601 * Don't bother reporting results while
1602 * negotiations are still pending.
1604 if (tinfo
->curr
.period
!= tinfo
->goal
.period
1605 || tinfo
->curr
.width
!= tinfo
->goal
.width
1606 || tinfo
->curr
.offset
!= tinfo
->goal
.offset
1607 || tinfo
->curr
.ppr_options
!= tinfo
->goal
.ppr_options
)
1608 if (bootverbose
== 0)
1612 * Don't bother reporting results that
1613 * are identical to those last reported.
1615 starget
= ahd
->platform_data
->starget
[target
];
1616 if (starget
== NULL
)
1618 targ
= scsi_transport_target_data(starget
);
1620 target_ppr_options
=
1621 (spi_dt(starget
) ? MSG_EXT_PPR_DT_REQ
: 0)
1622 + (spi_qas(starget
) ? MSG_EXT_PPR_QAS_REQ
: 0)
1623 + (spi_iu(starget
) ? MSG_EXT_PPR_IU_REQ
: 0)
1624 + (spi_rd_strm(starget
) ? MSG_EXT_PPR_RD_STRM
: 0)
1625 + (spi_pcomp_en(starget
) ? MSG_EXT_PPR_PCOMP_EN
: 0)
1626 + (spi_rti(starget
) ? MSG_EXT_PPR_RTI
: 0)
1627 + (spi_wr_flow(starget
) ? MSG_EXT_PPR_WR_FLOW
: 0)
1628 + (spi_hold_mcs(starget
) ? MSG_EXT_PPR_HOLD_MCS
: 0);
1630 if (tinfo
->curr
.period
== spi_period(starget
)
1631 && tinfo
->curr
.width
== spi_width(starget
)
1632 && tinfo
->curr
.offset
== spi_offset(starget
)
1633 && tinfo
->curr
.ppr_options
== target_ppr_options
)
1634 if (bootverbose
== 0)
1637 spi_period(starget
) = tinfo
->curr
.period
;
1638 spi_width(starget
) = tinfo
->curr
.width
;
1639 spi_offset(starget
) = tinfo
->curr
.offset
;
1640 spi_dt(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_DT_REQ
? 1 : 0;
1641 spi_qas(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_QAS_REQ
? 1 : 0;
1642 spi_iu(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_IU_REQ
? 1 : 0;
1643 spi_rd_strm(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_RD_STRM
? 1 : 0;
1644 spi_pcomp_en(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_PCOMP_EN
? 1 : 0;
1645 spi_rti(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_RTI
? 1 : 0;
1646 spi_wr_flow(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_WR_FLOW
? 1 : 0;
1647 spi_hold_mcs(starget
) = tinfo
->curr
.ppr_options
& MSG_EXT_PPR_HOLD_MCS
? 1 : 0;
1648 spi_display_xfer_agreement(starget
);
1653 WARN_ON(lun
!= CAM_LUN_WILDCARD
);
1654 scsi_report_device_reset(ahd
->platform_data
->host
,
1655 channel
- 'A', target
);
1659 if (ahd
->platform_data
->host
!= NULL
) {
1660 scsi_report_bus_reset(ahd
->platform_data
->host
,
1665 panic("ahd_send_async: Unexpected async event");
1670 * Calls the higher level scsi done function and frees the scb.
1673 ahd_done(struct ahd_softc
*ahd
, struct scb
*scb
)
1675 struct scsi_cmnd
*cmd
;
1676 struct ahd_linux_device
*dev
;
1678 if ((scb
->flags
& SCB_ACTIVE
) == 0) {
1679 printf("SCB %d done'd twice\n", SCB_GET_TAG(scb
));
1680 ahd_dump_card_state(ahd
);
1681 panic("Stopping for safety");
1683 LIST_REMOVE(scb
, pending_links
);
1685 dev
= scb
->platform_data
->dev
;
1688 if ((cmd
->result
& (CAM_DEV_QFRZN
<< 16)) != 0) {
1689 cmd
->result
&= ~(CAM_DEV_QFRZN
<< 16);
1692 ahd_linux_unmap_scb(ahd
, scb
);
1695 * Guard against stale sense data.
1696 * The Linux mid-layer assumes that sense
1697 * was retrieved anytime the first byte of
1698 * the sense buffer looks "sane".
1700 cmd
->sense_buffer
[0] = 0;
1701 if (ahd_get_transaction_status(scb
) == CAM_REQ_INPROG
) {
1702 uint32_t amount_xferred
;
1705 ahd_get_transfer_length(scb
) - ahd_get_residual(scb
);
1706 if ((scb
->flags
& SCB_TRANSMISSION_ERROR
) != 0) {
1708 if ((ahd_debug
& AHD_SHOW_MISC
) != 0) {
1709 ahd_print_path(ahd
, scb
);
1710 printf("Set CAM_UNCOR_PARITY\n");
1713 ahd_set_transaction_status(scb
, CAM_UNCOR_PARITY
);
1714 #ifdef AHD_REPORT_UNDERFLOWS
1716 * This code is disabled by default as some
1717 * clients of the SCSI system do not properly
1718 * initialize the underflow parameter. This
1719 * results in spurious termination of commands
1720 * that complete as expected (e.g. underflow is
1721 * allowed as command can return variable amounts
1724 } else if (amount_xferred
< scb
->io_ctx
->underflow
) {
1727 ahd_print_path(ahd
, scb
);
1729 for (i
= 0; i
< scb
->io_ctx
->cmd_len
; i
++)
1730 printf(" 0x%x", scb
->io_ctx
->cmnd
[i
]);
1732 ahd_print_path(ahd
, scb
);
1733 printf("Saw underflow (%ld of %ld bytes). "
1734 "Treated as error\n",
1735 ahd_get_residual(scb
),
1736 ahd_get_transfer_length(scb
));
1737 ahd_set_transaction_status(scb
, CAM_DATA_RUN_ERR
);
1740 ahd_set_transaction_status(scb
, CAM_REQ_CMP
);
1742 } else if (ahd_get_transaction_status(scb
) == CAM_SCSI_STATUS_ERROR
) {
1743 ahd_linux_handle_scsi_status(ahd
, cmd
->device
, scb
);
1746 if (dev
->openings
== 1
1747 && ahd_get_transaction_status(scb
) == CAM_REQ_CMP
1748 && ahd_get_scsi_status(scb
) != SCSI_STATUS_QUEUE_FULL
)
1749 dev
->tag_success_count
++;
1751 * Some devices deal with temporary internal resource
1752 * shortages by returning queue full. When the queue
1753 * full occurrs, we throttle back. Slowly try to get
1754 * back to our previous queue depth.
1756 if ((dev
->openings
+ dev
->active
) < dev
->maxtags
1757 && dev
->tag_success_count
> AHD_TAG_SUCCESS_INTERVAL
) {
1758 dev
->tag_success_count
= 0;
1762 if (dev
->active
== 0)
1763 dev
->commands_since_idle_or_otag
= 0;
1765 if ((scb
->flags
& SCB_RECOVERY_SCB
) != 0) {
1766 printf("Recovery SCB completes\n");
1767 if (ahd_get_transaction_status(scb
) == CAM_BDR_SENT
1768 || ahd_get_transaction_status(scb
) == CAM_REQ_ABORTED
)
1769 ahd_set_transaction_status(scb
, CAM_CMD_TIMEOUT
);
1770 if ((ahd
->platform_data
->flags
& AHD_SCB_UP_EH_SEM
) != 0) {
1771 ahd
->platform_data
->flags
&= ~AHD_SCB_UP_EH_SEM
;
1772 up(&ahd
->platform_data
->eh_sem
);
1776 ahd_free_scb(ahd
, scb
);
1777 ahd_linux_queue_cmd_complete(ahd
, cmd
);
1781 ahd_linux_handle_scsi_status(struct ahd_softc
*ahd
,
1782 struct scsi_device
*sdev
, struct scb
*scb
)
1784 struct ahd_devinfo devinfo
;
1785 struct ahd_linux_device
*dev
= scsi_transport_device_data(sdev
);
1787 ahd_compile_devinfo(&devinfo
,
1789 sdev
->sdev_target
->id
, sdev
->lun
,
1790 sdev
->sdev_target
->channel
== 0 ? 'A' : 'B',
1794 * We don't currently trust the mid-layer to
1795 * properly deal with queue full or busy. So,
1796 * when one occurs, we tell the mid-layer to
1797 * unconditionally requeue the command to us
1798 * so that we can retry it ourselves. We also
1799 * implement our own throttling mechanism so
1800 * we don't clobber the device with too many
1803 switch (ahd_get_scsi_status(scb
)) {
1806 case SCSI_STATUS_CHECK_COND
:
1807 case SCSI_STATUS_CMD_TERMINATED
:
1809 struct scsi_cmnd
*cmd
;
1812 * Copy sense information to the OS's cmd
1813 * structure if it is available.
1816 if ((scb
->flags
& (SCB_SENSE
|SCB_PKT_SENSE
)) != 0) {
1817 struct scsi_status_iu_header
*siu
;
1821 if (scb
->flags
& SCB_SENSE
) {
1822 sense_size
= MIN(sizeof(struct scsi_sense_data
)
1823 - ahd_get_sense_residual(scb
),
1824 sizeof(cmd
->sense_buffer
));
1828 * Copy only the sense data into the provided
1831 siu
= (struct scsi_status_iu_header
*)
1833 sense_size
= MIN(scsi_4btoul(siu
->sense_length
),
1834 sizeof(cmd
->sense_buffer
));
1835 sense_offset
= SIU_SENSE_OFFSET(siu
);
1838 memset(cmd
->sense_buffer
, 0, sizeof(cmd
->sense_buffer
));
1839 memcpy(cmd
->sense_buffer
,
1840 ahd_get_sense_buf(ahd
, scb
)
1841 + sense_offset
, sense_size
);
1842 cmd
->result
|= (DRIVER_SENSE
<< 24);
1845 if (ahd_debug
& AHD_SHOW_SENSE
) {
1848 printf("Copied %d bytes of sense data at %d:",
1849 sense_size
, sense_offset
);
1850 for (i
= 0; i
< sense_size
; i
++) {
1853 printf("0x%x ", cmd
->sense_buffer
[i
]);
1861 case SCSI_STATUS_QUEUE_FULL
:
1863 * By the time the core driver has returned this
1864 * command, all other commands that were queued
1865 * to us but not the device have been returned.
1866 * This ensures that dev->active is equal to
1867 * the number of commands actually queued to
1870 dev
->tag_success_count
= 0;
1871 if (dev
->active
!= 0) {
1873 * Drop our opening count to the number
1874 * of commands currently outstanding.
1878 if ((ahd_debug
& AHD_SHOW_QFULL
) != 0) {
1879 ahd_print_path(ahd
, scb
);
1880 printf("Dropping tag count to %d\n",
1884 if (dev
->active
== dev
->tags_on_last_queuefull
) {
1886 dev
->last_queuefull_same_count
++;
1888 * If we repeatedly see a queue full
1889 * at the same queue depth, this
1890 * device has a fixed number of tag
1891 * slots. Lock in this tag depth
1892 * so we stop seeing queue fulls from
1895 if (dev
->last_queuefull_same_count
1896 == AHD_LOCK_TAGS_COUNT
) {
1897 dev
->maxtags
= dev
->active
;
1898 ahd_print_path(ahd
, scb
);
1899 printf("Locking max tag count at %d\n",
1903 dev
->tags_on_last_queuefull
= dev
->active
;
1904 dev
->last_queuefull_same_count
= 0;
1906 ahd_set_transaction_status(scb
, CAM_REQUEUE_REQ
);
1907 ahd_set_scsi_status(scb
, SCSI_STATUS_OK
);
1908 ahd_platform_set_tags(ahd
, &devinfo
,
1909 (dev
->flags
& AHD_DEV_Q_BASIC
)
1910 ? AHD_QUEUE_BASIC
: AHD_QUEUE_TAGGED
);
1914 * Drop down to a single opening, and treat this
1915 * as if the target returned BUSY SCSI status.
1918 ahd_platform_set_tags(ahd
, &devinfo
,
1919 (dev
->flags
& AHD_DEV_Q_BASIC
)
1920 ? AHD_QUEUE_BASIC
: AHD_QUEUE_TAGGED
);
1921 ahd_set_scsi_status(scb
, SCSI_STATUS_BUSY
);
1926 ahd_linux_queue_cmd_complete(struct ahd_softc
*ahd
, struct scsi_cmnd
*cmd
)
1929 * Map CAM error codes into Linux Error codes. We
1930 * avoid the conversion so that the DV code has the
1931 * full error information available when making
1932 * state change decisions.
1938 status
= ahd_cmd_get_transaction_status(cmd
);
1940 case CAM_REQ_INPROG
:
1942 case CAM_SCSI_STATUS_ERROR
:
1943 new_status
= DID_OK
;
1945 case CAM_REQ_ABORTED
:
1946 new_status
= DID_ABORT
;
1949 new_status
= DID_BUS_BUSY
;
1951 case CAM_REQ_INVALID
:
1952 case CAM_PATH_INVALID
:
1953 new_status
= DID_BAD_TARGET
;
1955 case CAM_SEL_TIMEOUT
:
1956 new_status
= DID_NO_CONNECT
;
1958 case CAM_SCSI_BUS_RESET
:
1960 new_status
= DID_RESET
;
1962 case CAM_UNCOR_PARITY
:
1963 new_status
= DID_PARITY
;
1965 case CAM_CMD_TIMEOUT
:
1966 new_status
= DID_TIME_OUT
;
1969 case CAM_REQ_CMP_ERR
:
1970 case CAM_AUTOSENSE_FAIL
:
1972 case CAM_DATA_RUN_ERR
:
1973 case CAM_UNEXP_BUSFREE
:
1974 case CAM_SEQUENCE_FAIL
:
1975 case CAM_CCB_LEN_ERR
:
1976 case CAM_PROVIDE_FAIL
:
1977 case CAM_REQ_TERMIO
:
1978 case CAM_UNREC_HBA_ERROR
:
1979 case CAM_REQ_TOO_BIG
:
1980 new_status
= DID_ERROR
;
1982 case CAM_REQUEUE_REQ
:
1983 new_status
= DID_REQUEUE
;
1986 /* We should never get here */
1987 new_status
= DID_ERROR
;
1991 ahd_cmd_set_transaction_status(cmd
, new_status
);
1994 cmd
->scsi_done(cmd
);
1998 ahd_linux_sem_timeout(u_long arg
)
2000 struct ahd_softc
*ahd
;
2003 ahd
= (struct ahd_softc
*)arg
;
2006 if ((ahd
->platform_data
->flags
& AHD_SCB_UP_EH_SEM
) != 0) {
2007 ahd
->platform_data
->flags
&= ~AHD_SCB_UP_EH_SEM
;
2008 up(&ahd
->platform_data
->eh_sem
);
2010 ahd_unlock(ahd
, &s
);
2014 ahd_freeze_simq(struct ahd_softc
*ahd
)
2016 ahd
->platform_data
->qfrozen
++;
2017 if (ahd
->platform_data
->qfrozen
== 1) {
2018 scsi_block_requests(ahd
->platform_data
->host
);
2019 ahd_platform_abort_scbs(ahd
, CAM_TARGET_WILDCARD
, ALL_CHANNELS
,
2020 CAM_LUN_WILDCARD
, SCB_LIST_NULL
,
2021 ROLE_INITIATOR
, CAM_REQUEUE_REQ
);
2026 ahd_release_simq(struct ahd_softc
*ahd
)
2033 if (ahd
->platform_data
->qfrozen
> 0)
2034 ahd
->platform_data
->qfrozen
--;
2035 if (ahd
->platform_data
->qfrozen
== 0) {
2038 ahd_unlock(ahd
, &s
);
2040 * There is still a race here. The mid-layer
2041 * should keep its own freeze count and use
2042 * a bottom half handler to run the queues
2043 * so we can unblock with our own lock held.
2046 scsi_unblock_requests(ahd
->platform_data
->host
);
2050 ahd_linux_queue_recovery_cmd(struct scsi_cmnd
*cmd
, scb_flag flag
)
2052 struct ahd_softc
*ahd
;
2053 struct ahd_linux_device
*dev
;
2054 struct scb
*pending_scb
;
2056 u_int active_scbptr
;
2065 ahd_mode_state saved_modes
;
2070 ahd
= *(struct ahd_softc
**)cmd
->device
->host
->hostdata
;
2072 printf("%s:%d:%d:%d: Attempting to queue a%s message:",
2073 ahd_name(ahd
), cmd
->device
->channel
,
2074 cmd
->device
->id
, cmd
->device
->lun
,
2075 flag
== SCB_ABORT
? "n ABORT" : " TARGET RESET");
2078 for (cdb_byte
= 0; cdb_byte
< cmd
->cmd_len
; cdb_byte
++)
2079 printf(" 0x%x", cmd
->cmnd
[cdb_byte
]);
2082 spin_lock_irq(&ahd
->platform_data
->spin_lock
);
2085 * First determine if we currently own this command.
2086 * Start by searching the device queue. If not found
2087 * there, check the pending_scb list. If not found
2088 * at all, and the system wanted us to just abort the
2089 * command, return success.
2091 dev
= scsi_transport_device_data(cmd
->device
);
2095 * No target device for this command exists,
2096 * so we must not still own the command.
2098 printf("%s:%d:%d:%d: Is not an active device\n",
2099 ahd_name(ahd
), cmd
->device
->channel
, cmd
->device
->id
,
2106 * See if we can find a matching cmd in the pending list.
2108 LIST_FOREACH(pending_scb
, &ahd
->pending_scbs
, pending_links
) {
2109 if (pending_scb
->io_ctx
== cmd
)
2113 if (pending_scb
== NULL
&& flag
== SCB_DEVICE_RESET
) {
2115 /* Any SCB for this device will do for a target reset */
2116 LIST_FOREACH(pending_scb
, &ahd
->pending_scbs
, pending_links
) {
2117 if (ahd_match_scb(ahd
, pending_scb
, cmd
->device
->id
,
2118 cmd
->device
->channel
+ 'A',
2120 SCB_LIST_NULL
, ROLE_INITIATOR
) == 0)
2125 if (pending_scb
== NULL
) {
2126 printf("%s:%d:%d:%d: Command not found\n",
2127 ahd_name(ahd
), cmd
->device
->channel
, cmd
->device
->id
,
2132 if ((pending_scb
->flags
& SCB_RECOVERY_SCB
) != 0) {
2134 * We can't queue two recovery actions using the same SCB
2141 * Ensure that the card doesn't do anything
2142 * behind our back. Also make sure that we
2143 * didn't "just" miss an interrupt that would
2146 was_paused
= ahd_is_paused(ahd
);
2147 ahd_pause_and_flushwork(ahd
);
2150 if ((pending_scb
->flags
& SCB_ACTIVE
) == 0) {
2151 printf("%s:%d:%d:%d: Command already completed\n",
2152 ahd_name(ahd
), cmd
->device
->channel
, cmd
->device
->id
,
2157 printf("%s: At time of recovery, card was %spaused\n",
2158 ahd_name(ahd
), was_paused
? "" : "not ");
2159 ahd_dump_card_state(ahd
);
2161 disconnected
= TRUE
;
2162 if (flag
== SCB_ABORT
) {
2163 if (ahd_search_qinfifo(ahd
, cmd
->device
->id
,
2164 cmd
->device
->channel
+ 'A',
2166 pending_scb
->hscb
->tag
,
2167 ROLE_INITIATOR
, CAM_REQ_ABORTED
,
2168 SEARCH_COMPLETE
) > 0) {
2169 printf("%s:%d:%d:%d: Cmd aborted from QINFIFO\n",
2170 ahd_name(ahd
), cmd
->device
->channel
,
2171 cmd
->device
->id
, cmd
->device
->lun
);
2175 } else if (ahd_search_qinfifo(ahd
, cmd
->device
->id
,
2176 cmd
->device
->channel
+ 'A',
2177 cmd
->device
->lun
, pending_scb
->hscb
->tag
,
2178 ROLE_INITIATOR
, /*status*/0,
2179 SEARCH_COUNT
) > 0) {
2180 disconnected
= FALSE
;
2183 saved_modes
= ahd_save_modes(ahd
);
2184 ahd_set_modes(ahd
, AHD_MODE_SCSI
, AHD_MODE_SCSI
);
2185 last_phase
= ahd_inb(ahd
, LASTPHASE
);
2186 saved_scbptr
= ahd_get_scbptr(ahd
);
2187 active_scbptr
= saved_scbptr
;
2188 if (disconnected
&& (ahd_inb(ahd
, SEQ_FLAGS
) & NOT_IDENTIFIED
) == 0) {
2189 struct scb
*bus_scb
;
2191 bus_scb
= ahd_lookup_scb(ahd
, active_scbptr
);
2192 if (bus_scb
== pending_scb
)
2193 disconnected
= FALSE
;
2194 else if (flag
!= SCB_ABORT
2195 && ahd_inb(ahd
, SAVED_SCSIID
) == pending_scb
->hscb
->scsiid
2196 && ahd_inb(ahd
, SAVED_LUN
) == SCB_GET_LUN(pending_scb
))
2197 disconnected
= FALSE
;
2201 * At this point, pending_scb is the scb associated with the
2202 * passed in command. That command is currently active on the
2203 * bus or is in the disconnected state.
2205 saved_scsiid
= ahd_inb(ahd
, SAVED_SCSIID
);
2206 if (last_phase
!= P_BUSFREE
2207 && (SCB_GET_TAG(pending_scb
) == active_scbptr
2208 || (flag
== SCB_DEVICE_RESET
2209 && SCSIID_TARGET(ahd
, saved_scsiid
) == cmd
->device
->id
))) {
2212 * We're active on the bus, so assert ATN
2213 * and hope that the target responds.
2215 pending_scb
= ahd_lookup_scb(ahd
, active_scbptr
);
2216 pending_scb
->flags
|= SCB_RECOVERY_SCB
|flag
;
2217 ahd_outb(ahd
, MSG_OUT
, HOST_MSG
);
2218 ahd_outb(ahd
, SCSISIGO
, last_phase
|ATNO
);
2219 printf("%s:%d:%d:%d: Device is active, asserting ATN\n",
2220 ahd_name(ahd
), cmd
->device
->channel
,
2221 cmd
->device
->id
, cmd
->device
->lun
);
2223 } else if (disconnected
) {
2226 * Actually re-queue this SCB in an attempt
2227 * to select the device before it reconnects.
2229 pending_scb
->flags
|= SCB_RECOVERY_SCB
|SCB_ABORT
;
2230 ahd_set_scbptr(ahd
, SCB_GET_TAG(pending_scb
));
2231 pending_scb
->hscb
->cdb_len
= 0;
2232 pending_scb
->hscb
->task_attribute
= 0;
2233 pending_scb
->hscb
->task_management
= SIU_TASKMGMT_ABORT_TASK
;
2235 if ((pending_scb
->flags
& SCB_PACKETIZED
) != 0) {
2237 * Mark the SCB has having an outstanding
2238 * task management function. Should the command
2239 * complete normally before the task management
2240 * function can be sent, the host will be notified
2241 * to abort our requeued SCB.
2243 ahd_outb(ahd
, SCB_TASK_MANAGEMENT
,
2244 pending_scb
->hscb
->task_management
);
2247 * If non-packetized, set the MK_MESSAGE control
2248 * bit indicating that we desire to send a message.
2249 * We also set the disconnected flag since there is
2250 * no guarantee that our SCB control byte matches
2251 * the version on the card. We don't want the
2252 * sequencer to abort the command thinking an
2253 * unsolicited reselection occurred.
2255 pending_scb
->hscb
->control
|= MK_MESSAGE
|DISCONNECTED
;
2258 * The sequencer will never re-reference the
2259 * in-core SCB. To make sure we are notified
2260 * during reslection, set the MK_MESSAGE flag in
2261 * the card's copy of the SCB.
2263 ahd_outb(ahd
, SCB_CONTROL
,
2264 ahd_inb(ahd
, SCB_CONTROL
)|MK_MESSAGE
);
2268 * Clear out any entries in the QINFIFO first
2269 * so we are the next SCB for this target
2272 ahd_search_qinfifo(ahd
, cmd
->device
->id
,
2273 cmd
->device
->channel
+ 'A', cmd
->device
->lun
,
2274 SCB_LIST_NULL
, ROLE_INITIATOR
,
2275 CAM_REQUEUE_REQ
, SEARCH_COMPLETE
);
2276 ahd_qinfifo_requeue_tail(ahd
, pending_scb
);
2277 ahd_set_scbptr(ahd
, saved_scbptr
);
2278 ahd_print_path(ahd
, pending_scb
);
2279 printf("Device is disconnected, re-queuing SCB\n");
2282 printf("%s:%d:%d:%d: Unable to deliver message\n",
2283 ahd_name(ahd
), cmd
->device
->channel
,
2284 cmd
->device
->id
, cmd
->device
->lun
);
2291 * Our assumption is that if we don't have the command, no
2292 * recovery action was required, so we return success. Again,
2293 * the semantics of the mid-layer recovery engine are not
2294 * well defined, so this may change in time.
2301 struct timer_list timer
;
2304 ahd
->platform_data
->flags
|= AHD_SCB_UP_EH_SEM
;
2305 spin_unlock_irq(&ahd
->platform_data
->spin_lock
);
2307 timer
.data
= (u_long
)ahd
;
2308 timer
.expires
= jiffies
+ (5 * HZ
);
2309 timer
.function
= ahd_linux_sem_timeout
;
2311 printf("Recovery code sleeping\n");
2312 down(&ahd
->platform_data
->eh_sem
);
2313 printf("Recovery code awake\n");
2314 ret
= del_timer_sync(&timer
);
2316 printf("Timer Expired\n");
2319 spin_lock_irq(&ahd
->platform_data
->spin_lock
);
2321 spin_unlock_irq(&ahd
->platform_data
->spin_lock
);
2325 static void ahd_linux_set_width(struct scsi_target
*starget
, int width
)
2327 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2328 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2329 struct ahd_devinfo devinfo
;
2330 unsigned long flags
;
2332 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2333 starget
->channel
+ 'A', ROLE_INITIATOR
);
2334 ahd_lock(ahd
, &flags
);
2335 ahd_set_width(ahd
, &devinfo
, width
, AHD_TRANS_GOAL
, FALSE
);
2336 ahd_unlock(ahd
, &flags
);
2339 static void ahd_linux_set_period(struct scsi_target
*starget
, int period
)
2341 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2342 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2343 struct ahd_tmode_tstate
*tstate
;
2344 struct ahd_initiator_tinfo
*tinfo
2345 = ahd_fetch_transinfo(ahd
,
2346 starget
->channel
+ 'A',
2347 shost
->this_id
, starget
->id
, &tstate
);
2348 struct ahd_devinfo devinfo
;
2349 unsigned int ppr_options
= tinfo
->goal
.ppr_options
;
2351 unsigned long flags
;
2352 unsigned long offset
= tinfo
->goal
.offset
;
2355 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2356 printf("%s: set period to %d\n", ahd_name(ahd
), period
);
2359 offset
= MAX_OFFSET
;
2364 ppr_options
|= MSG_EXT_PPR_DT_REQ
;
2366 ppr_options
|= MSG_EXT_PPR_IU_REQ
;
2369 dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2371 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2372 starget
->channel
+ 'A', ROLE_INITIATOR
);
2374 /* all PPR requests apart from QAS require wide transfers */
2375 if (ppr_options
& ~MSG_EXT_PPR_QAS_REQ
) {
2376 if (spi_width(starget
) == 0)
2377 ppr_options
&= MSG_EXT_PPR_QAS_REQ
;
2380 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2381 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2383 ahd_lock(ahd
, &flags
);
2384 ahd_set_syncrate(ahd
, &devinfo
, period
, offset
,
2385 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2386 ahd_unlock(ahd
, &flags
);
2389 static void ahd_linux_set_offset(struct scsi_target
*starget
, int offset
)
2391 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2392 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2393 struct ahd_tmode_tstate
*tstate
;
2394 struct ahd_initiator_tinfo
*tinfo
2395 = ahd_fetch_transinfo(ahd
,
2396 starget
->channel
+ 'A',
2397 shost
->this_id
, starget
->id
, &tstate
);
2398 struct ahd_devinfo devinfo
;
2399 unsigned int ppr_options
= 0;
2400 unsigned int period
= 0;
2401 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2402 unsigned long flags
;
2405 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2406 printf("%s: set offset to %d\n", ahd_name(ahd
), offset
);
2409 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2410 starget
->channel
+ 'A', ROLE_INITIATOR
);
2412 period
= tinfo
->goal
.period
;
2413 ppr_options
= tinfo
->goal
.ppr_options
;
2414 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2415 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2418 ahd_lock(ahd
, &flags
);
2419 ahd_set_syncrate(ahd
, &devinfo
, period
, offset
, ppr_options
,
2420 AHD_TRANS_GOAL
, FALSE
);
2421 ahd_unlock(ahd
, &flags
);
2424 static void ahd_linux_set_dt(struct scsi_target
*starget
, int dt
)
2426 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2427 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2428 struct ahd_tmode_tstate
*tstate
;
2429 struct ahd_initiator_tinfo
*tinfo
2430 = ahd_fetch_transinfo(ahd
,
2431 starget
->channel
+ 'A',
2432 shost
->this_id
, starget
->id
, &tstate
);
2433 struct ahd_devinfo devinfo
;
2434 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2435 & ~MSG_EXT_PPR_DT_REQ
;
2436 unsigned int period
= tinfo
->goal
.period
;
2437 unsigned int width
= tinfo
->goal
.width
;
2438 unsigned long flags
;
2441 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2442 printf("%s: %s DT\n", ahd_name(ahd
),
2443 dt
? "enabling" : "disabling");
2446 ppr_options
|= MSG_EXT_PPR_DT_REQ
;
2448 ahd_linux_set_width(starget
, 1);
2451 period
= 10; /* If resetting DT, period must be >= 25ns */
2452 /* IU is invalid without DT set */
2453 ppr_options
&= ~MSG_EXT_PPR_IU_REQ
;
2455 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2456 starget
->channel
+ 'A', ROLE_INITIATOR
);
2457 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2458 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2460 ahd_lock(ahd
, &flags
);
2461 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2462 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2463 ahd_unlock(ahd
, &flags
);
2466 static void ahd_linux_set_qas(struct scsi_target
*starget
, int qas
)
2468 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2469 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2470 struct ahd_tmode_tstate
*tstate
;
2471 struct ahd_initiator_tinfo
*tinfo
2472 = ahd_fetch_transinfo(ahd
,
2473 starget
->channel
+ 'A',
2474 shost
->this_id
, starget
->id
, &tstate
);
2475 struct ahd_devinfo devinfo
;
2476 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2477 & ~MSG_EXT_PPR_QAS_REQ
;
2478 unsigned int period
= tinfo
->goal
.period
;
2480 unsigned long flags
;
2483 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2484 printf("%s: %s QAS\n", ahd_name(ahd
),
2485 qas
? "enabling" : "disabling");
2489 ppr_options
|= MSG_EXT_PPR_QAS_REQ
;
2492 dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2494 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2495 starget
->channel
+ 'A', ROLE_INITIATOR
);
2496 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2497 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2499 ahd_lock(ahd
, &flags
);
2500 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2501 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2502 ahd_unlock(ahd
, &flags
);
2505 static void ahd_linux_set_iu(struct scsi_target
*starget
, int iu
)
2507 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2508 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2509 struct ahd_tmode_tstate
*tstate
;
2510 struct ahd_initiator_tinfo
*tinfo
2511 = ahd_fetch_transinfo(ahd
,
2512 starget
->channel
+ 'A',
2513 shost
->this_id
, starget
->id
, &tstate
);
2514 struct ahd_devinfo devinfo
;
2515 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2516 & ~MSG_EXT_PPR_IU_REQ
;
2517 unsigned int period
= tinfo
->goal
.period
;
2519 unsigned long flags
;
2522 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2523 printf("%s: %s IU\n", ahd_name(ahd
),
2524 iu
? "enabling" : "disabling");
2528 ppr_options
|= MSG_EXT_PPR_IU_REQ
;
2529 ppr_options
|= MSG_EXT_PPR_DT_REQ
; /* IU requires DT */
2532 dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2534 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2535 starget
->channel
+ 'A', ROLE_INITIATOR
);
2536 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2537 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2539 ahd_lock(ahd
, &flags
);
2540 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2541 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2542 ahd_unlock(ahd
, &flags
);
2545 static void ahd_linux_set_rd_strm(struct scsi_target
*starget
, int rdstrm
)
2547 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2548 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2549 struct ahd_tmode_tstate
*tstate
;
2550 struct ahd_initiator_tinfo
*tinfo
2551 = ahd_fetch_transinfo(ahd
,
2552 starget
->channel
+ 'A',
2553 shost
->this_id
, starget
->id
, &tstate
);
2554 struct ahd_devinfo devinfo
;
2555 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2556 & ~MSG_EXT_PPR_RD_STRM
;
2557 unsigned int period
= tinfo
->goal
.period
;
2558 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2559 unsigned long flags
;
2562 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2563 printf("%s: %s Read Streaming\n", ahd_name(ahd
),
2564 rdstrm
? "enabling" : "disabling");
2568 ppr_options
|= MSG_EXT_PPR_RD_STRM
;
2570 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2571 starget
->channel
+ 'A', ROLE_INITIATOR
);
2572 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2573 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2575 ahd_lock(ahd
, &flags
);
2576 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2577 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2578 ahd_unlock(ahd
, &flags
);
2581 static void ahd_linux_set_wr_flow(struct scsi_target
*starget
, int wrflow
)
2583 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2584 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2585 struct ahd_tmode_tstate
*tstate
;
2586 struct ahd_initiator_tinfo
*tinfo
2587 = ahd_fetch_transinfo(ahd
,
2588 starget
->channel
+ 'A',
2589 shost
->this_id
, starget
->id
, &tstate
);
2590 struct ahd_devinfo devinfo
;
2591 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2592 & ~MSG_EXT_PPR_WR_FLOW
;
2593 unsigned int period
= tinfo
->goal
.period
;
2594 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2595 unsigned long flags
;
2598 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2599 printf("%s: %s Write Flow Control\n", ahd_name(ahd
),
2600 wrflow
? "enabling" : "disabling");
2604 ppr_options
|= MSG_EXT_PPR_WR_FLOW
;
2606 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2607 starget
->channel
+ 'A', ROLE_INITIATOR
);
2608 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2609 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2611 ahd_lock(ahd
, &flags
);
2612 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2613 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2614 ahd_unlock(ahd
, &flags
);
2617 static void ahd_linux_set_rti(struct scsi_target
*starget
, int rti
)
2619 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2620 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2621 struct ahd_tmode_tstate
*tstate
;
2622 struct ahd_initiator_tinfo
*tinfo
2623 = ahd_fetch_transinfo(ahd
,
2624 starget
->channel
+ 'A',
2625 shost
->this_id
, starget
->id
, &tstate
);
2626 struct ahd_devinfo devinfo
;
2627 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2629 unsigned int period
= tinfo
->goal
.period
;
2630 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2631 unsigned long flags
;
2633 if ((ahd
->features
& AHD_RTI
) == 0) {
2635 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2636 printf("%s: RTI not available\n", ahd_name(ahd
));
2642 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2643 printf("%s: %s RTI\n", ahd_name(ahd
),
2644 rti
? "enabling" : "disabling");
2648 ppr_options
|= MSG_EXT_PPR_RTI
;
2650 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2651 starget
->channel
+ 'A', ROLE_INITIATOR
);
2652 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2653 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2655 ahd_lock(ahd
, &flags
);
2656 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2657 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2658 ahd_unlock(ahd
, &flags
);
2661 static void ahd_linux_set_pcomp_en(struct scsi_target
*starget
, int pcomp
)
2663 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2664 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2665 struct ahd_tmode_tstate
*tstate
;
2666 struct ahd_initiator_tinfo
*tinfo
2667 = ahd_fetch_transinfo(ahd
,
2668 starget
->channel
+ 'A',
2669 shost
->this_id
, starget
->id
, &tstate
);
2670 struct ahd_devinfo devinfo
;
2671 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2672 & ~MSG_EXT_PPR_PCOMP_EN
;
2673 unsigned int period
= tinfo
->goal
.period
;
2674 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2675 unsigned long flags
;
2678 if ((ahd_debug
& AHD_SHOW_DV
) != 0)
2679 printf("%s: %s Precompensation\n", ahd_name(ahd
),
2680 pcomp
? "Enable" : "Disable");
2684 ppr_options
|= MSG_EXT_PPR_PCOMP_EN
;
2686 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2687 starget
->channel
+ 'A', ROLE_INITIATOR
);
2688 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2689 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2691 ahd_lock(ahd
, &flags
);
2692 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2693 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2694 ahd_unlock(ahd
, &flags
);
2697 static void ahd_linux_set_hold_mcs(struct scsi_target
*starget
, int hold
)
2699 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
2700 struct ahd_softc
*ahd
= *((struct ahd_softc
**)shost
->hostdata
);
2701 struct ahd_tmode_tstate
*tstate
;
2702 struct ahd_initiator_tinfo
*tinfo
2703 = ahd_fetch_transinfo(ahd
,
2704 starget
->channel
+ 'A',
2705 shost
->this_id
, starget
->id
, &tstate
);
2706 struct ahd_devinfo devinfo
;
2707 unsigned int ppr_options
= tinfo
->goal
.ppr_options
2708 & ~MSG_EXT_PPR_HOLD_MCS
;
2709 unsigned int period
= tinfo
->goal
.period
;
2710 unsigned int dt
= ppr_options
& MSG_EXT_PPR_DT_REQ
;
2711 unsigned long flags
;
2714 ppr_options
|= MSG_EXT_PPR_HOLD_MCS
;
2716 ahd_compile_devinfo(&devinfo
, shost
->this_id
, starget
->id
, 0,
2717 starget
->channel
+ 'A', ROLE_INITIATOR
);
2718 ahd_find_syncrate(ahd
, &period
, &ppr_options
,
2719 dt
? AHD_SYNCRATE_MAX
: AHD_SYNCRATE_ULTRA2
);
2721 ahd_lock(ahd
, &flags
);
2722 ahd_set_syncrate(ahd
, &devinfo
, period
, tinfo
->goal
.offset
,
2723 ppr_options
, AHD_TRANS_GOAL
, FALSE
);
2724 ahd_unlock(ahd
, &flags
);
2729 static struct spi_function_template ahd_linux_transport_functions
= {
2730 .set_offset
= ahd_linux_set_offset
,
2732 .set_period
= ahd_linux_set_period
,
2734 .set_width
= ahd_linux_set_width
,
2736 .set_dt
= ahd_linux_set_dt
,
2738 .set_iu
= ahd_linux_set_iu
,
2740 .set_qas
= ahd_linux_set_qas
,
2742 .set_rd_strm
= ahd_linux_set_rd_strm
,
2744 .set_wr_flow
= ahd_linux_set_wr_flow
,
2746 .set_rti
= ahd_linux_set_rti
,
2748 .set_pcomp_en
= ahd_linux_set_pcomp_en
,
2750 .set_hold_mcs
= ahd_linux_set_hold_mcs
,
2755 ahd_linux_init(void)
2760 * If we've been passed any parameters, process them now.
2763 aic79xx_setup(aic79xx
);
2765 ahd_linux_transport_template
=
2766 spi_attach_transport(&ahd_linux_transport_functions
);
2767 if (!ahd_linux_transport_template
)
2770 scsi_transport_reserve_target(ahd_linux_transport_template
,
2771 sizeof(struct ahd_linux_target
));
2772 scsi_transport_reserve_device(ahd_linux_transport_template
,
2773 sizeof(struct ahd_linux_device
));
2775 error
= ahd_linux_pci_init();
2777 spi_release_transport(ahd_linux_transport_template
);
2782 ahd_linux_exit(void)
2784 ahd_linux_pci_exit();
2785 spi_release_transport(ahd_linux_transport_template
);
2788 module_init(ahd_linux_init
);
2789 module_exit(ahd_linux_exit
);