blob: 717401b26b6f0b3b217cb822ab82bc7eba53d8ab [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Adaptec AIC7xxx device driver for Linux.
3 *
4 * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.c#235 $
5 *
6 * Copyright (c) 1994 John Aycock
7 * The University of Calgary Department of Computer Science.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; see the file COPYING. If not, write to
21 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Sources include the Adaptec 1740 driver (aha1740.c), the Ultrastor 24F
24 * driver (ultrastor.c), various Linux kernel source, the Adaptec EISA
25 * config file (!adp7771.cfg), the Adaptec AHA-2740A Series User's Guide,
26 * the Linux Kernel Hacker's Guide, Writing a SCSI Device Driver for Linux,
27 * the Adaptec 1542 driver (aha1542.c), the Adaptec EISA overlay file
28 * (adp7770.ovl), the Adaptec AHA-2740 Series Technical Reference Manual,
29 * the Adaptec AIC-7770 Data Book, the ANSI SCSI specification, the
30 * ANSI SCSI-2 specification (draft 10c), ...
31 *
32 * --------------------------------------------------------------------------
33 *
34 * Modifications by Daniel M. Eischen (deischen@iworks.InterWorks.org):
35 *
36 * Substantially modified to include support for wide and twin bus
37 * adapters, DMAing of SCBs, tagged queueing, IRQ sharing, bug fixes,
38 * SCB paging, and other rework of the code.
39 *
40 * --------------------------------------------------------------------------
41 * Copyright (c) 1994-2000 Justin T. Gibbs.
42 * Copyright (c) 2000-2001 Adaptec Inc.
43 * All rights reserved.
44 *
45 * Redistribution and use in source and binary forms, with or without
46 * modification, are permitted provided that the following conditions
47 * are met:
48 * 1. Redistributions of source code must retain the above copyright
49 * notice, this list of conditions, and the following disclaimer,
50 * without modification.
51 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
52 * substantially similar to the "NO WARRANTY" disclaimer below
53 * ("Disclaimer") and any redistribution must be conditioned upon
54 * including a substantially similar Disclaimer requirement for further
55 * binary redistribution.
56 * 3. Neither the names of the above-listed copyright holders nor the names
57 * of any contributors may be used to endorse or promote products derived
58 * from this software without specific prior written permission.
59 *
60 * Alternatively, this software may be distributed under the terms of the
61 * GNU General Public License ("GPL") version 2 as published by the Free
62 * Software Foundation.
63 *
64 * NO WARRANTY
65 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
66 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
67 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
68 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
69 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
70 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
71 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
72 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
73 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
74 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
75 * POSSIBILITY OF SUCH DAMAGES.
76 *
77 *---------------------------------------------------------------------------
78 *
79 * Thanks also go to (in alphabetical order) the following:
80 *
81 * Rory Bolt - Sequencer bug fixes
82 * Jay Estabrook - Initial DEC Alpha support
83 * Doug Ledford - Much needed abort/reset bug fixes
84 * Kai Makisara - DMAing of SCBs
85 *
86 * A Boot time option was also added for not resetting the scsi bus.
87 *
88 * Form: aic7xxx=extended
89 * aic7xxx=no_reset
90 * aic7xxx=verbose
91 *
92 * Daniel M. Eischen, deischen@iworks.InterWorks.org, 1/23/97
93 *
94 * Id: aic7xxx.c,v 4.1 1997/06/12 08:23:42 deang Exp
95 */
96
97/*
98 * Further driver modifications made by Doug Ledford <dledford@redhat.com>
99 *
100 * Copyright (c) 1997-1999 Doug Ledford
101 *
102 * These changes are released under the same licensing terms as the FreeBSD
103 * driver written by Justin Gibbs. Please see his Copyright notice above
104 * for the exact terms and conditions covering my changes as well as the
105 * warranty statement.
106 *
107 * Modifications made to the aic7xxx.c,v 4.1 driver from Dan Eischen include
108 * but are not limited to:
109 *
110 * 1: Import of the latest FreeBSD sequencer code for this driver
111 * 2: Modification of kernel code to accommodate different sequencer semantics
112 * 3: Extensive changes throughout kernel portion of driver to improve
113 * abort/reset processing and error hanndling
114 * 4: Other work contributed by various people on the Internet
115 * 5: Changes to printk information and verbosity selection code
116 * 6: General reliability related changes, especially in IRQ management
117 * 7: Modifications to the default probe/attach order for supported cards
118 * 8: SMP friendliness has been improved
119 *
120 */
121
122#include "aic7xxx_osm.h"
123#include "aic7xxx_inline.h"
124#include <scsi/scsicam.h>
92d161c2005-04-17 16:59:33 -0500125#include <scsi/scsi_transport.h>
126#include <scsi/scsi_transport_spi.h>
127
128static struct scsi_transport_template *ahc_linux_transport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/*
131 * Include aiclib.c as part of our
132 * "module dependencies are hard" work around.
133 */
134#include "aiclib.c"
135
136#include <linux/init.h> /* __setup */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#include <linux/mm.h> /* For fetching system memory size */
138#include <linux/blkdev.h> /* For block_size() */
139#include <linux/delay.h> /* For ssleep/msleep */
140
141/*
142 * Lock protecting manipulation of the ahc softc list.
143 */
144spinlock_t ahc_list_spinlock;
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Set this to the delay in seconds after SCSI bus reset.
148 * Note, we honor this only for the initial bus reset.
149 * The scsi error recovery code performs its own bus settle
150 * delay handling for error recovery actions.
151 */
152#ifdef CONFIG_AIC7XXX_RESET_DELAY_MS
153#define AIC7XXX_RESET_DELAY CONFIG_AIC7XXX_RESET_DELAY_MS
154#else
155#define AIC7XXX_RESET_DELAY 5000
156#endif
157
158/*
159 * Control collection of SCSI transfer statistics for the /proc filesystem.
160 *
161 * NOTE: Do NOT enable this when running on kernels version 1.2.x and below.
162 * NOTE: This does affect performance since it has to maintain statistics.
163 */
164#ifdef CONFIG_AIC7XXX_PROC_STATS
165#define AIC7XXX_PROC_STATS
166#endif
167
168/*
169 * To change the default number of tagged transactions allowed per-device,
170 * add a line to the lilo.conf file like:
171 * append="aic7xxx=verbose,tag_info:{{32,32,32,32},{32,32,32,32}}"
172 * which will result in the first four devices on the first two
173 * controllers being set to a tagged queue depth of 32.
174 *
175 * The tag_commands is an array of 16 to allow for wide and twin adapters.
176 * Twin adapters will use indexes 0-7 for channel 0, and indexes 8-15
177 * for channel 1.
178 */
179typedef struct {
180 uint8_t tag_commands[16]; /* Allow for wide/twin adapters. */
181} adapter_tag_info_t;
182
183/*
184 * Modify this as you see fit for your system.
185 *
186 * 0 tagged queuing disabled
187 * 1 <= n <= 253 n == max tags ever dispatched.
188 *
189 * The driver will throttle the number of commands dispatched to a
190 * device if it returns queue full. For devices with a fixed maximum
191 * queue depth, the driver will eventually determine this depth and
192 * lock it in (a console message is printed to indicate that a lock
193 * has occurred). On some devices, queue full is returned for a temporary
194 * resource shortage. These devices will return queue full at varying
195 * depths. The driver will throttle back when the queue fulls occur and
196 * attempt to slowly increase the depth over time as the device recovers
197 * from the resource shortage.
198 *
199 * In this example, the first line will disable tagged queueing for all
200 * the devices on the first probed aic7xxx adapter.
201 *
202 * The second line enables tagged queueing with 4 commands/LUN for IDs
203 * (0, 2-11, 13-15), disables tagged queueing for ID 12, and tells the
204 * driver to attempt to use up to 64 tags for ID 1.
205 *
206 * The third line is the same as the first line.
207 *
208 * The fourth line disables tagged queueing for devices 0 and 3. It
209 * enables tagged queueing for the other IDs, with 16 commands/LUN
210 * for IDs 1 and 4, 127 commands/LUN for ID 8, and 4 commands/LUN for
211 * IDs 2, 5-7, and 9-15.
212 */
213
214/*
215 * NOTE: The below structure is for reference only, the actual structure
216 * to modify in order to change things is just below this comment block.
217adapter_tag_info_t aic7xxx_tag_info[] =
218{
219 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
220 {{4, 64, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 0, 4, 4, 4}},
221 {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
222 {{0, 16, 4, 0, 16, 4, 4, 4, 127, 4, 4, 4, 4, 4, 4, 4}}
223};
224*/
225
226#ifdef CONFIG_AIC7XXX_CMDS_PER_DEVICE
227#define AIC7XXX_CMDS_PER_DEVICE CONFIG_AIC7XXX_CMDS_PER_DEVICE
228#else
229#define AIC7XXX_CMDS_PER_DEVICE AHC_MAX_QUEUE
230#endif
231
232#define AIC7XXX_CONFIGED_TAG_COMMANDS { \
233 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
234 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
235 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
236 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
237 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
238 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
239 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE, \
240 AIC7XXX_CMDS_PER_DEVICE, AIC7XXX_CMDS_PER_DEVICE \
241}
242
243/*
244 * By default, use the number of commands specified by
245 * the users kernel configuration.
246 */
247static adapter_tag_info_t aic7xxx_tag_info[] =
248{
249 {AIC7XXX_CONFIGED_TAG_COMMANDS},
250 {AIC7XXX_CONFIGED_TAG_COMMANDS},
251 {AIC7XXX_CONFIGED_TAG_COMMANDS},
252 {AIC7XXX_CONFIGED_TAG_COMMANDS},
253 {AIC7XXX_CONFIGED_TAG_COMMANDS},
254 {AIC7XXX_CONFIGED_TAG_COMMANDS},
255 {AIC7XXX_CONFIGED_TAG_COMMANDS},
256 {AIC7XXX_CONFIGED_TAG_COMMANDS},
257 {AIC7XXX_CONFIGED_TAG_COMMANDS},
258 {AIC7XXX_CONFIGED_TAG_COMMANDS},
259 {AIC7XXX_CONFIGED_TAG_COMMANDS},
260 {AIC7XXX_CONFIGED_TAG_COMMANDS},
261 {AIC7XXX_CONFIGED_TAG_COMMANDS},
262 {AIC7XXX_CONFIGED_TAG_COMMANDS},
263 {AIC7XXX_CONFIGED_TAG_COMMANDS},
264 {AIC7XXX_CONFIGED_TAG_COMMANDS}
265};
266
267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * There should be a specific return value for this in scsi.h, but
269 * it seems that most drivers ignore it.
270 */
271#define DID_UNDERFLOW DID_ERROR
272
273void
274ahc_print_path(struct ahc_softc *ahc, struct scb *scb)
275{
276 printk("(scsi%d:%c:%d:%d): ",
277 ahc->platform_data->host->host_no,
278 scb != NULL ? SCB_GET_CHANNEL(ahc, scb) : 'X',
279 scb != NULL ? SCB_GET_TARGET(ahc, scb) : -1,
280 scb != NULL ? SCB_GET_LUN(scb) : -1);
281}
282
283/*
284 * XXX - these options apply unilaterally to _all_ 274x/284x/294x
285 * cards in the system. This should be fixed. Exceptions to this
286 * rule are noted in the comments.
287 */
288
289/*
290 * Skip the scsi bus reset. Non 0 make us skip the reset at startup. This
291 * has no effect on any later resets that might occur due to things like
292 * SCSI bus timeouts.
293 */
294static uint32_t aic7xxx_no_reset;
295
296/*
297 * Certain PCI motherboards will scan PCI devices from highest to lowest,
298 * others scan from lowest to highest, and they tend to do all kinds of
299 * strange things when they come into contact with PCI bridge chips. The
300 * net result of all this is that the PCI card that is actually used to boot
301 * the machine is very hard to detect. Most motherboards go from lowest
302 * PCI slot number to highest, and the first SCSI controller found is the
303 * one you boot from. The only exceptions to this are when a controller
304 * has its BIOS disabled. So, we by default sort all of our SCSI controllers
305 * from lowest PCI slot number to highest PCI slot number. We also force
306 * all controllers with their BIOS disabled to the end of the list. This
307 * works on *almost* all computers. Where it doesn't work, we have this
308 * option. Setting this option to non-0 will reverse the order of the sort
309 * to highest first, then lowest, but will still leave cards with their BIOS
310 * disabled at the very end. That should fix everyone up unless there are
311 * really strange cirumstances.
312 */
313static uint32_t aic7xxx_reverse_scan;
314
315/*
316 * Should we force EXTENDED translation on a controller.
317 * 0 == Use whatever is in the SEEPROM or default to off
318 * 1 == Use whatever is in the SEEPROM or default to on
319 */
320static uint32_t aic7xxx_extended;
321
322/*
323 * PCI bus parity checking of the Adaptec controllers. This is somewhat
324 * dubious at best. To my knowledge, this option has never actually
325 * solved a PCI parity problem, but on certain machines with broken PCI
326 * chipset configurations where stray PCI transactions with bad parity are
327 * the norm rather than the exception, the error messages can be overwelming.
328 * It's included in the driver for completeness.
329 * 0 = Shut off PCI parity check
330 * non-0 = reverse polarity pci parity checking
331 */
332static uint32_t aic7xxx_pci_parity = ~0;
333
334/*
335 * Certain newer motherboards have put new PCI based devices into the
336 * IO spaces that used to typically be occupied by VLB or EISA cards.
337 * This overlap can cause these newer motherboards to lock up when scanned
338 * for older EISA and VLB devices. Setting this option to non-0 will
339 * cause the driver to skip scanning for any VLB or EISA controllers and
340 * only support the PCI controllers. NOTE: this means that if the kernel
341 * os compiled with PCI support disabled, then setting this to non-0
342 * would result in never finding any devices :)
343 */
344#ifndef CONFIG_AIC7XXX_PROBE_EISA_VL
345uint32_t aic7xxx_probe_eisa_vl;
346#else
347uint32_t aic7xxx_probe_eisa_vl = ~0;
348#endif
349
350/*
351 * There are lots of broken chipsets in the world. Some of them will
352 * violate the PCI spec when we issue byte sized memory writes to our
353 * controller. I/O mapped register access, if allowed by the given
354 * platform, will work in almost all cases.
355 */
356uint32_t aic7xxx_allow_memio = ~0;
357
358/*
359 * aic7xxx_detect() has been run, so register all device arrivals
360 * immediately with the system rather than deferring to the sorted
361 * attachment performed by aic7xxx_detect().
362 */
363int aic7xxx_detect_complete;
364
365/*
366 * So that we can set how long each device is given as a selection timeout.
367 * The table of values goes like this:
368 * 0 - 256ms
369 * 1 - 128ms
370 * 2 - 64ms
371 * 3 - 32ms
372 * We default to 256ms because some older devices need a longer time
373 * to respond to initial selection.
374 */
375static uint32_t aic7xxx_seltime;
376
377/*
378 * Certain devices do not perform any aging on commands. Should the
379 * device be saturated by commands in one portion of the disk, it is
380 * possible for transactions on far away sectors to never be serviced.
381 * To handle these devices, we can periodically send an ordered tag to
382 * force all outstanding transactions to be serviced prior to a new
383 * transaction.
384 */
385uint32_t aic7xxx_periodic_otag;
386
387/*
388 * Module information and settable options.
389 */
390static char *aic7xxx = NULL;
391
392MODULE_AUTHOR("Maintainer: Justin T. Gibbs <gibbs@scsiguy.com>");
393MODULE_DESCRIPTION("Adaptec Aic77XX/78XX SCSI Host Bus Adapter driver");
394MODULE_LICENSE("Dual BSD/GPL");
395MODULE_VERSION(AIC7XXX_DRIVER_VERSION);
396module_param(aic7xxx, charp, 0444);
397MODULE_PARM_DESC(aic7xxx,
398"period delimited, options string.\n"
399" verbose Enable verbose/diagnostic logging\n"
400" allow_memio Allow device registers to be memory mapped\n"
401" debug Bitmask of debug values to enable\n"
402" no_probe Toggle EISA/VLB controller probing\n"
403" probe_eisa_vl Toggle EISA/VLB controller probing\n"
404" no_reset Supress initial bus resets\n"
405" extended Enable extended geometry on all controllers\n"
406" periodic_otag Send an ordered tagged transaction\n"
407" periodically to prevent tag starvation.\n"
408" This may be required by some older disk\n"
409" drives or RAID arrays.\n"
410" reverse_scan Sort PCI devices highest Bus/Slot to lowest\n"
411" tag_info:<tag_str> Set per-target tag depth\n"
412" global_tag_depth:<int> Global tag depth for every target\n"
413" on every bus\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414" seltime:<int> Selection Timeout\n"
415" (0/256ms,1/128ms,2/64ms,3/32ms)\n"
416"\n"
417" Sample /etc/modprobe.conf line:\n"
418" Toggle EISA/VLB probing\n"
419" Set tag depth on Controller 1/Target 1 to 10 tags\n"
420" Shorten the selection timeout to 128ms\n"
421"\n"
422" options aic7xxx 'aic7xxx=probe_eisa_vl.tag_info:{{}.{.10}}.seltime:1'\n"
423);
424
425static void ahc_linux_handle_scsi_status(struct ahc_softc *,
426 struct ahc_linux_device *,
427 struct scb *);
428static void ahc_linux_queue_cmd_complete(struct ahc_softc *ahc,
429 Scsi_Cmnd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430static void ahc_linux_sem_timeout(u_long arg);
431static void ahc_linux_freeze_simq(struct ahc_softc *ahc);
432static void ahc_linux_release_simq(u_long arg);
433static void ahc_linux_dev_timed_unfreeze(u_long arg);
434static int ahc_linux_queue_recovery_cmd(Scsi_Cmnd *cmd, scb_flag flag);
435static void ahc_linux_initialize_scsi_bus(struct ahc_softc *ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void ahc_linux_thread_run_complete_queue(struct ahc_softc *ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static u_int ahc_linux_user_tagdepth(struct ahc_softc *ahc,
438 struct ahc_devinfo *devinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static void ahc_linux_device_queue_depth(struct ahc_softc *ahc,
440 struct ahc_linux_device *dev);
441static struct ahc_linux_target* ahc_linux_alloc_target(struct ahc_softc*,
442 u_int, u_int);
443static void ahc_linux_free_target(struct ahc_softc*,
444 struct ahc_linux_target*);
445static struct ahc_linux_device* ahc_linux_alloc_device(struct ahc_softc*,
446 struct ahc_linux_target*,
447 u_int);
448static void ahc_linux_free_device(struct ahc_softc*,
449 struct ahc_linux_device*);
James Bottomley e4e360c2005-05-16 16:39:38 -0500450static int ahc_linux_run_command(struct ahc_softc*,
451 struct ahc_linux_device *,
452 struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453static void ahc_linux_setup_tag_info_global(char *p);
454static aic_option_callback_t ahc_linux_setup_tag_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static int aic7xxx_setup(char *s);
456static int ahc_linux_next_unit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457static struct ahc_cmd *ahc_linux_run_complete_queue(struct ahc_softc *ahc);
458
459/********************************* Inlines ************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460static __inline struct ahc_linux_device*
461 ahc_linux_get_device(struct ahc_softc *ahc, u_int channel,
462 u_int target, u_int lun, int alloc);
463static __inline void ahc_schedule_completeq(struct ahc_softc *ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464static __inline void ahc_linux_unmap_scb(struct ahc_softc*, struct scb*);
465
466static __inline int ahc_linux_map_seg(struct ahc_softc *ahc, struct scb *scb,
467 struct ahc_dma_seg *sg,
468 dma_addr_t addr, bus_size_t len);
469
470static __inline void
471ahc_schedule_completeq(struct ahc_softc *ahc)
472{
473 if ((ahc->platform_data->flags & AHC_RUN_CMPLT_Q_TIMER) == 0) {
474 ahc->platform_data->flags |= AHC_RUN_CMPLT_Q_TIMER;
475 ahc->platform_data->completeq_timer.expires = jiffies;
476 add_timer(&ahc->platform_data->completeq_timer);
477 }
478}
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480static __inline struct ahc_linux_device*
481ahc_linux_get_device(struct ahc_softc *ahc, u_int channel, u_int target,
482 u_int lun, int alloc)
483{
484 struct ahc_linux_target *targ;
485 struct ahc_linux_device *dev;
486 u_int target_offset;
487
488 target_offset = target;
489 if (channel != 0)
490 target_offset += 8;
491 targ = ahc->platform_data->targets[target_offset];
492 if (targ == NULL) {
493 if (alloc != 0) {
494 targ = ahc_linux_alloc_target(ahc, channel, target);
495 if (targ == NULL)
496 return (NULL);
497 } else
498 return (NULL);
499 }
500 dev = targ->devices[lun];
501 if (dev == NULL && alloc != 0)
502 dev = ahc_linux_alloc_device(ahc, targ, lun);
503 return (dev);
504}
505
506#define AHC_LINUX_MAX_RETURNED_ERRORS 4
507static struct ahc_cmd *
508ahc_linux_run_complete_queue(struct ahc_softc *ahc)
509{
510 struct ahc_cmd *acmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 int with_errors;
512
513 with_errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 while ((acmd = TAILQ_FIRST(&ahc->platform_data->completeq)) != NULL) {
515 Scsi_Cmnd *cmd;
516
517 if (with_errors > AHC_LINUX_MAX_RETURNED_ERRORS) {
518 /*
519 * Linux uses stack recursion to requeue
520 * commands that need to be retried. Avoid
521 * blowing out the stack by "spoon feeding"
522 * commands that completed with error back
523 * the operating system in case they are going
524 * to be retried. "ick"
525 */
526 ahc_schedule_completeq(ahc);
527 break;
528 }
529 TAILQ_REMOVE(&ahc->platform_data->completeq,
530 acmd, acmd_links.tqe);
531 cmd = &acmd_scsi_cmd(acmd);
532 cmd->host_scribble = NULL;
533 if (ahc_cmd_get_transaction_status(cmd) != DID_OK
534 || (cmd->result & 0xFF) != SCSI_STATUS_OK)
535 with_errors++;
536
537 cmd->scsi_done(cmd);
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return (acmd);
540}
541
542static __inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543ahc_linux_unmap_scb(struct ahc_softc *ahc, struct scb *scb)
544{
545 Scsi_Cmnd *cmd;
546
547 cmd = scb->io_ctx;
548 ahc_sync_sglist(ahc, scb, BUS_DMASYNC_POSTWRITE);
549 if (cmd->use_sg != 0) {
550 struct scatterlist *sg;
551
552 sg = (struct scatterlist *)cmd->request_buffer;
553 pci_unmap_sg(ahc->dev_softc, sg, cmd->use_sg,
be7db052005-04-17 15:26:13 -0500554 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 } else if (cmd->request_bufflen != 0) {
556 pci_unmap_single(ahc->dev_softc,
557 scb->platform_data->buf_busaddr,
558 cmd->request_bufflen,
be7db052005-04-17 15:26:13 -0500559 cmd->sc_data_direction);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
561}
562
563static __inline int
564ahc_linux_map_seg(struct ahc_softc *ahc, struct scb *scb,
565 struct ahc_dma_seg *sg, dma_addr_t addr, bus_size_t len)
566{
567 int consumed;
568
569 if ((scb->sg_count + 1) > AHC_NSEG)
570 panic("Too few segs for dma mapping. "
571 "Increase AHC_NSEG\n");
572
573 consumed = 1;
574 sg->addr = ahc_htole32(addr & 0xFFFFFFFF);
575 scb->platform_data->xfer_len += len;
576
577 if (sizeof(dma_addr_t) > 4
578 && (ahc->flags & AHC_39BIT_ADDRESSING) != 0)
579 len |= (addr >> 8) & AHC_SG_HIGH_ADDR_MASK;
580
581 sg->len = ahc_htole32(len);
582 return (consumed);
583}
584
585/************************ Host template entry points *************************/
586static int ahc_linux_detect(Scsi_Host_Template *);
587static int ahc_linux_queue(Scsi_Cmnd *, void (*)(Scsi_Cmnd *));
588static const char *ahc_linux_info(struct Scsi_Host *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589static int ahc_linux_slave_alloc(Scsi_Device *);
590static int ahc_linux_slave_configure(Scsi_Device *);
591static void ahc_linux_slave_destroy(Scsi_Device *);
592#if defined(__i386__)
593static int ahc_linux_biosparam(struct scsi_device*,
594 struct block_device*,
595 sector_t, int[]);
596#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597static int ahc_linux_bus_reset(Scsi_Cmnd *);
598static int ahc_linux_dev_reset(Scsi_Cmnd *);
599static int ahc_linux_abort(Scsi_Cmnd *);
600
601/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 * Try to detect an Adaptec 7XXX controller.
603 */
604static int
605ahc_linux_detect(Scsi_Host_Template *template)
606{
607 struct ahc_softc *ahc;
608 int found = 0;
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /*
611 * Sanity checking of Linux SCSI data structures so
612 * that some of our hacks^H^H^H^H^Hassumptions aren't
613 * violated.
614 */
615 if (offsetof(struct ahc_cmd_internal, end)
616 > offsetof(struct scsi_cmnd, host_scribble)) {
617 printf("ahc_linux_detect: SCSI data structures changed.\n");
618 printf("ahc_linux_detect: Unable to attach\n");
619 return (0);
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /*
622 * If we've been passed any parameters, process them now.
623 */
624 if (aic7xxx)
625 aic7xxx_setup(aic7xxx);
626
627 template->proc_name = "aic7xxx";
628
629 /*
630 * Initialize our softc list lock prior to
631 * probing for any adapters.
632 */
633 ahc_list_lockinit();
634
635 found = ahc_linux_pci_init();
636 if (!ahc_linux_eisa_init())
637 found++;
638
639 /*
640 * Register with the SCSI layer all
641 * controllers we've found.
642 */
643 TAILQ_FOREACH(ahc, &ahc_tailq, links) {
644
645 if (ahc_linux_register_host(ahc, template) == 0)
646 found++;
647 }
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 aic7xxx_detect_complete++;
650
651 return (found);
652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*
655 * Return a string describing the driver.
656 */
657static const char *
658ahc_linux_info(struct Scsi_Host *host)
659{
660 static char buffer[512];
661 char ahc_info[256];
662 char *bp;
663 struct ahc_softc *ahc;
664
665 bp = &buffer[0];
666 ahc = *(struct ahc_softc **)host->hostdata;
667 memset(bp, 0, sizeof(buffer));
668 strcpy(bp, "Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev ");
669 strcat(bp, AIC7XXX_DRIVER_VERSION);
670 strcat(bp, "\n");
671 strcat(bp, " <");
672 strcat(bp, ahc->description);
673 strcat(bp, ">\n");
674 strcat(bp, " ");
675 ahc_controller_info(ahc, ahc_info);
676 strcat(bp, ahc_info);
677 strcat(bp, "\n");
678
679 return (bp);
680}
681
682/*
683 * Queue an SCB to the controller.
684 */
685static int
686ahc_linux_queue(Scsi_Cmnd * cmd, void (*scsi_done) (Scsi_Cmnd *))
687{
688 struct ahc_softc *ahc;
689 struct ahc_linux_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 ahc = *(struct ahc_softc **)cmd->device->host->hostdata;
692
693 /*
694 * Save the callback on completion function.
695 */
696 cmd->scsi_done = scsi_done;
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * Close the race of a command that was in the process of
700 * being queued to us just as our simq was frozen. Let
701 * DV commands through so long as we are only frozen to
702 * perform DV.
703 */
James Bottomley e4e360c2005-05-16 16:39:38 -0500704 if (ahc->platform_data->qfrozen != 0)
705 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 dev = ahc_linux_get_device(ahc, cmd->device->channel, cmd->device->id,
708 cmd->device->lun, /*alloc*/TRUE);
James Bottomley e4e360c2005-05-16 16:39:38 -0500709 BUG_ON(dev == NULL);
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 cmd->result = CAM_REQ_INPROG << 16;
James Bottomley e4e360c2005-05-16 16:39:38 -0500712
713 return ahc_linux_run_command(ahc, dev, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716static int
717ahc_linux_slave_alloc(Scsi_Device *device)
718{
719 struct ahc_softc *ahc;
720
721 ahc = *((struct ahc_softc **)device->host->hostdata);
722 if (bootverbose)
723 printf("%s: Slave Alloc %d\n", ahc_name(ahc), device->id);
724 return (0);
725}
726
727static int
728ahc_linux_slave_configure(Scsi_Device *device)
729{
730 struct ahc_softc *ahc;
731 struct ahc_linux_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 ahc = *((struct ahc_softc **)device->host->hostdata);
734 if (bootverbose)
735 printf("%s: Slave Configure %d\n", ahc_name(ahc), device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 /*
737 * Since Linux has attached to the device, configure
738 * it so we don't free and allocate the device
739 * structure on every command.
740 */
741 dev = ahc_linux_get_device(ahc, device->channel,
742 device->id, device->lun,
743 /*alloc*/TRUE);
744 if (dev != NULL) {
745 dev->flags &= ~AHC_DEV_UNCONFIGURED;
746 dev->scsi_device = device;
747 ahc_linux_device_queue_depth(ahc, dev);
748 }
cb624022005-04-17 18:03:20 -0500749
750 /* Initial Domain Validation */
751 if (!spi_initial_dv(device->sdev_target))
752 spi_dv_device(device);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return (0);
755}
756
757static void
758ahc_linux_slave_destroy(Scsi_Device *device)
759{
760 struct ahc_softc *ahc;
761 struct ahc_linux_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 ahc = *((struct ahc_softc **)device->host->hostdata);
764 if (bootverbose)
765 printf("%s: Slave Destroy %d\n", ahc_name(ahc), device->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 dev = ahc_linux_get_device(ahc, device->channel,
767 device->id, device->lun,
768 /*alloc*/FALSE);
769 /*
770 * Filter out "silly" deletions of real devices by only
771 * deleting devices that have had slave_configure()
772 * called on them. All other devices that have not
773 * been configured will automatically be deleted by
774 * the refcounting process.
775 */
776 if (dev != NULL
777 && (dev->flags & AHC_DEV_SLAVE_CONFIGURED) != 0) {
778 dev->flags |= AHC_DEV_UNCONFIGURED;
James Bottomley e4e360c2005-05-16 16:39:38 -0500779 if (dev->active == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 && (dev->flags & AHC_DEV_TIMER_ACTIVE) == 0)
781 ahc_linux_free_device(ahc, dev);
782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785#if defined(__i386__)
786/*
787 * Return the disk geometry for the given SCSI device.
788 */
789static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790ahc_linux_biosparam(struct scsi_device *sdev, struct block_device *bdev,
791 sector_t capacity, int geom[])
792{
793 uint8_t *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int heads;
795 int sectors;
796 int cylinders;
797 int ret;
798 int extended;
799 struct ahc_softc *ahc;
800 u_int channel;
801
802 ahc = *((struct ahc_softc **)sdev->host->hostdata);
803 channel = sdev->channel;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 bh = scsi_bios_ptable(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (bh) {
807 ret = scsi_partsize(bh, capacity,
808 &geom[2], &geom[0], &geom[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 kfree(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (ret != -1)
811 return (ret);
812 }
813 heads = 64;
814 sectors = 32;
815 cylinders = aic_sector_div(capacity, heads, sectors);
816
817 if (aic7xxx_extended != 0)
818 extended = 1;
819 else if (channel == 0)
820 extended = (ahc->flags & AHC_EXTENDED_TRANS_A) != 0;
821 else
822 extended = (ahc->flags & AHC_EXTENDED_TRANS_B) != 0;
823 if (extended && cylinders >= 1024) {
824 heads = 255;
825 sectors = 63;
826 cylinders = aic_sector_div(capacity, heads, sectors);
827 }
828 geom[0] = heads;
829 geom[1] = sectors;
830 geom[2] = cylinders;
831 return (0);
832}
833#endif
834
835/*
836 * Abort the current SCSI command(s).
837 */
838static int
839ahc_linux_abort(Scsi_Cmnd *cmd)
840{
841 int error;
842
843 error = ahc_linux_queue_recovery_cmd(cmd, SCB_ABORT);
844 if (error != 0)
845 printf("aic7xxx_abort returns 0x%x\n", error);
846 return (error);
847}
848
849/*
850 * Attempt to send a target reset message to the device that timed out.
851 */
852static int
853ahc_linux_dev_reset(Scsi_Cmnd *cmd)
854{
855 int error;
856
857 error = ahc_linux_queue_recovery_cmd(cmd, SCB_DEVICE_RESET);
858 if (error != 0)
859 printf("aic7xxx_dev_reset returns 0x%x\n", error);
860 return (error);
861}
862
863/*
864 * Reset the SCSI bus.
865 */
866static int
867ahc_linux_bus_reset(Scsi_Cmnd *cmd)
868{
869 struct ahc_softc *ahc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int found;
871
872 ahc = *(struct ahc_softc **)cmd->device->host->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 found = ahc_reset_channel(ahc, cmd->device->channel + 'A',
874 /*initiate reset*/TRUE);
875 ahc_linux_run_complete_queue(ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 if (bootverbose)
878 printf("%s: SCSI bus reset delivered. "
879 "%d SCBs aborted.\n", ahc_name(ahc), found);
880
881 return SUCCESS;
882}
883
884Scsi_Host_Template aic7xxx_driver_template = {
885 .module = THIS_MODULE,
886 .name = "aic7xxx",
887 .proc_info = ahc_linux_proc_info,
888 .info = ahc_linux_info,
889 .queuecommand = ahc_linux_queue,
890 .eh_abort_handler = ahc_linux_abort,
891 .eh_device_reset_handler = ahc_linux_dev_reset,
892 .eh_bus_reset_handler = ahc_linux_bus_reset,
893#if defined(__i386__)
894 .bios_param = ahc_linux_biosparam,
895#endif
896 .can_queue = AHC_MAX_QUEUE,
897 .this_id = -1,
898 .cmd_per_lun = 2,
899 .use_clustering = ENABLE_CLUSTERING,
900 .slave_alloc = ahc_linux_slave_alloc,
901 .slave_configure = ahc_linux_slave_configure,
902 .slave_destroy = ahc_linux_slave_destroy,
903};
904
905/**************************** Tasklet Handler *********************************/
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907/******************************** Macros **************************************/
908#define BUILD_SCSIID(ahc, cmd) \
909 ((((cmd)->device->id << TID_SHIFT) & TID) \
910 | (((cmd)->device->channel == 0) ? (ahc)->our_id : (ahc)->our_id_b) \
911 | (((cmd)->device->channel == 0) ? 0 : TWIN_CHNLB))
912
913/******************************** Bus DMA *************************************/
914int
915ahc_dma_tag_create(struct ahc_softc *ahc, bus_dma_tag_t parent,
916 bus_size_t alignment, bus_size_t boundary,
917 dma_addr_t lowaddr, dma_addr_t highaddr,
918 bus_dma_filter_t *filter, void *filterarg,
919 bus_size_t maxsize, int nsegments,
920 bus_size_t maxsegsz, int flags, bus_dma_tag_t *ret_tag)
921{
922 bus_dma_tag_t dmat;
923
924 dmat = malloc(sizeof(*dmat), M_DEVBUF, M_NOWAIT);
925 if (dmat == NULL)
926 return (ENOMEM);
927
928 /*
929 * Linux is very simplistic about DMA memory. For now don't
930 * maintain all specification information. Once Linux supplies
931 * better facilities for doing these operations, or the
932 * needs of this particular driver change, we might need to do
933 * more here.
934 */
935 dmat->alignment = alignment;
936 dmat->boundary = boundary;
937 dmat->maxsize = maxsize;
938 *ret_tag = dmat;
939 return (0);
940}
941
942void
943ahc_dma_tag_destroy(struct ahc_softc *ahc, bus_dma_tag_t dmat)
944{
945 free(dmat, M_DEVBUF);
946}
947
948int
949ahc_dmamem_alloc(struct ahc_softc *ahc, bus_dma_tag_t dmat, void** vaddr,
950 int flags, bus_dmamap_t *mapp)
951{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *vaddr = pci_alloc_consistent(ahc->dev_softc,
Christoph Hellwig 7dfa0f22005-05-16 18:54:12 +0200953 dmat->maxsize, mapp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (*vaddr == NULL)
Christoph Hellwig 7dfa0f22005-05-16 18:54:12 +0200955 return ENOMEM;
956 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959void
960ahc_dmamem_free(struct ahc_softc *ahc, bus_dma_tag_t dmat,
961 void* vaddr, bus_dmamap_t map)
962{
963 pci_free_consistent(ahc->dev_softc, dmat->maxsize,
Christoph Hellwig 7dfa0f22005-05-16 18:54:12 +0200964 vaddr, map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967int
968ahc_dmamap_load(struct ahc_softc *ahc, bus_dma_tag_t dmat, bus_dmamap_t map,
969 void *buf, bus_size_t buflen, bus_dmamap_callback_t *cb,
970 void *cb_arg, int flags)
971{
972 /*
973 * Assume for now that this will only be used during
974 * initialization and not for per-transaction buffer mapping.
975 */
976 bus_dma_segment_t stack_sg;
977
Christoph Hellwig 7dfa0f22005-05-16 18:54:12 +0200978 stack_sg.ds_addr = map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 stack_sg.ds_len = dmat->maxsize;
980 cb(cb_arg, &stack_sg, /*nseg*/1, /*error*/0);
981 return (0);
982}
983
984void
985ahc_dmamap_destroy(struct ahc_softc *ahc, bus_dma_tag_t dmat, bus_dmamap_t map)
986{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989int
990ahc_dmamap_unload(struct ahc_softc *ahc, bus_dma_tag_t dmat, bus_dmamap_t map)
991{
992 /* Nothing to do */
993 return (0);
994}
995
996/********************* Platform Dependent Functions ***************************/
997/*
998 * Compare "left hand" softc with "right hand" softc, returning:
999 * < 0 - lahc has a lower priority than rahc
1000 * 0 - Softcs are equal
1001 * > 0 - lahc has a higher priority than rahc
1002 */
1003int
1004ahc_softc_comp(struct ahc_softc *lahc, struct ahc_softc *rahc)
1005{
1006 int value;
1007 int rvalue;
1008 int lvalue;
1009
1010 /*
1011 * Under Linux, cards are ordered as follows:
1012 * 1) VLB/EISA BIOS enabled devices sorted by BIOS address.
1013 * 2) PCI devices with BIOS enabled sorted by bus/slot/func.
1014 * 3) All remaining VLB/EISA devices sorted by ioport.
1015 * 4) All remaining PCI devices sorted by bus/slot/func.
1016 */
1017 value = (lahc->flags & AHC_BIOS_ENABLED)
1018 - (rahc->flags & AHC_BIOS_ENABLED);
1019 if (value != 0)
1020 /* Controllers with BIOS enabled have a *higher* priority */
1021 return (value);
1022
1023 /*
1024 * Same BIOS setting, now sort based on bus type.
1025 * EISA and VL controllers sort together. EISA/VL
1026 * have higher priority than PCI.
1027 */
1028 rvalue = (rahc->chip & AHC_BUS_MASK);
1029 if (rvalue == AHC_VL)
1030 rvalue = AHC_EISA;
1031 lvalue = (lahc->chip & AHC_BUS_MASK);
1032 if (lvalue == AHC_VL)
1033 lvalue = AHC_EISA;
1034 value = rvalue - lvalue;
1035 if (value != 0)
1036 return (value);
1037
1038 /* Still equal. Sort by BIOS address, ioport, or bus/slot/func. */
1039 switch (rvalue) {
1040#ifdef CONFIG_PCI
1041 case AHC_PCI:
1042 {
1043 char primary_channel;
1044
1045 if (aic7xxx_reverse_scan != 0)
1046 value = ahc_get_pci_bus(lahc->dev_softc)
1047 - ahc_get_pci_bus(rahc->dev_softc);
1048 else
1049 value = ahc_get_pci_bus(rahc->dev_softc)
1050 - ahc_get_pci_bus(lahc->dev_softc);
1051 if (value != 0)
1052 break;
1053 if (aic7xxx_reverse_scan != 0)
1054 value = ahc_get_pci_slot(lahc->dev_softc)
1055 - ahc_get_pci_slot(rahc->dev_softc);
1056 else
1057 value = ahc_get_pci_slot(rahc->dev_softc)
1058 - ahc_get_pci_slot(lahc->dev_softc);
1059 if (value != 0)
1060 break;
1061 /*
1062 * On multi-function devices, the user can choose
1063 * to have function 1 probed before function 0.
1064 * Give whichever channel is the primary channel
1065 * the highest priority.
1066 */
1067 primary_channel = (lahc->flags & AHC_PRIMARY_CHANNEL) + 'A';
1068 value = -1;
1069 if (lahc->channel == primary_channel)
1070 value = 1;
1071 break;
1072 }
1073#endif
1074 case AHC_EISA:
1075 if ((rahc->flags & AHC_BIOS_ENABLED) != 0) {
1076 value = rahc->platform_data->bios_address
1077 - lahc->platform_data->bios_address;
1078 } else {
1079 value = rahc->bsh.ioport
1080 - lahc->bsh.ioport;
1081 }
1082 break;
1083 default:
1084 panic("ahc_softc_sort: invalid bus type");
1085 }
1086 return (value);
1087}
1088
1089static void
1090ahc_linux_setup_tag_info_global(char *p)
1091{
1092 int tags, i, j;
1093
1094 tags = simple_strtoul(p + 1, NULL, 0) & 0xff;
1095 printf("Setting Global Tags= %d\n", tags);
1096
1097 for (i = 0; i < NUM_ELEMENTS(aic7xxx_tag_info); i++) {
1098 for (j = 0; j < AHC_NUM_TARGETS; j++) {
1099 aic7xxx_tag_info[i].tag_commands[j] = tags;
1100 }
1101 }
1102}
1103
1104static void
1105ahc_linux_setup_tag_info(u_long arg, int instance, int targ, int32_t value)
1106{
1107
1108 if ((instance >= 0) && (targ >= 0)
1109 && (instance < NUM_ELEMENTS(aic7xxx_tag_info))
1110 && (targ < AHC_NUM_TARGETS)) {
1111 aic7xxx_tag_info[instance].tag_commands[targ] = value & 0xff;
1112 if (bootverbose)
1113 printf("tag_info[%d:%d] = %d\n", instance, targ, value);
1114 }
1115}
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117/*
1118 * Handle Linux boot parameters. This routine allows for assigning a value
1119 * to a parameter with a ':' between the parameter and the value.
1120 * ie. aic7xxx=stpwlev:1,extended
1121 */
1122static int
1123aic7xxx_setup(char *s)
1124{
1125 int i, n;
1126 char *p;
1127 char *end;
1128
1129 static struct {
1130 const char *name;
1131 uint32_t *flag;
1132 } options[] = {
1133 { "extended", &aic7xxx_extended },
1134 { "no_reset", &aic7xxx_no_reset },
1135 { "verbose", &aic7xxx_verbose },
1136 { "allow_memio", &aic7xxx_allow_memio},
1137#ifdef AHC_DEBUG
1138 { "debug", &ahc_debug },
1139#endif
1140 { "reverse_scan", &aic7xxx_reverse_scan },
1141 { "no_probe", &aic7xxx_probe_eisa_vl },
1142 { "probe_eisa_vl", &aic7xxx_probe_eisa_vl },
1143 { "periodic_otag", &aic7xxx_periodic_otag },
1144 { "pci_parity", &aic7xxx_pci_parity },
1145 { "seltime", &aic7xxx_seltime },
1146 { "tag_info", NULL },
1147 { "global_tag_depth", NULL },
1148 { "dv", NULL }
1149 };
1150
1151 end = strchr(s, '\0');
1152
1153 /*
1154 * XXX ia64 gcc isn't smart enough to know that NUM_ELEMENTS
1155 * will never be 0 in this case.
1156 */
1157 n = 0;
1158
1159 while ((p = strsep(&s, ",.")) != NULL) {
1160 if (*p == '\0')
1161 continue;
1162 for (i = 0; i < NUM_ELEMENTS(options); i++) {
1163
1164 n = strlen(options[i].name);
1165 if (strncmp(options[i].name, p, n) == 0)
1166 break;
1167 }
1168 if (i == NUM_ELEMENTS(options))
1169 continue;
1170
1171 if (strncmp(p, "global_tag_depth", n) == 0) {
1172 ahc_linux_setup_tag_info_global(p + n);
1173 } else if (strncmp(p, "tag_info", n) == 0) {
1174 s = aic_parse_brace_option("tag_info", p + n, end,
1175 2, ahc_linux_setup_tag_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 } else if (p[n] == ':') {
1177 *(options[i].flag) = simple_strtoul(p + n + 1, NULL, 0);
1178 } else if (strncmp(p, "verbose", n) == 0) {
1179 *(options[i].flag) = 1;
1180 } else {
1181 *(options[i].flag) ^= 0xFFFFFFFF;
1182 }
1183 }
1184 return 1;
1185}
1186
1187__setup("aic7xxx=", aic7xxx_setup);
1188
1189uint32_t aic7xxx_verbose;
1190
1191int
1192ahc_linux_register_host(struct ahc_softc *ahc, Scsi_Host_Template *template)
1193{
1194 char buf[80];
1195 struct Scsi_Host *host;
1196 char *new_name;
1197 u_long s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 template->name = ahc->description;
1200 host = scsi_host_alloc(template, sizeof(struct ahc_softc *));
1201 if (host == NULL)
1202 return (ENOMEM);
1203
1204 *((struct ahc_softc **)host->hostdata) = ahc;
1205 ahc_lock(ahc, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 scsi_assign_lock(host, &ahc->platform_data->spin_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 ahc->platform_data->host = host;
1208 host->can_queue = AHC_MAX_QUEUE;
1209 host->cmd_per_lun = 2;
1210 /* XXX No way to communicate the ID for multiple channels */
1211 host->this_id = ahc->our_id;
1212 host->irq = ahc->platform_data->irq;
1213 host->max_id = (ahc->features & AHC_WIDE) ? 16 : 8;
1214 host->max_lun = AHC_NUM_LUNS;
1215 host->max_channel = (ahc->features & AHC_TWIN) ? 1 : 0;
1216 host->sg_tablesize = AHC_NSEG;
1217 ahc_set_unit(ahc, ahc_linux_next_unit());
1218 sprintf(buf, "scsi%d", host->host_no);
1219 new_name = malloc(strlen(buf) + 1, M_DEVBUF, M_NOWAIT);
1220 if (new_name != NULL) {
1221 strcpy(new_name, buf);
1222 ahc_set_name(ahc, new_name);
1223 }
1224 host->unique_id = ahc->unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 ahc_linux_initialize_scsi_bus(ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 ahc_intr_enable(ahc, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 ahc_unlock(ahc, &s);
1228
92d161c2005-04-17 16:59:33 -05001229 host->transportt = ahc_linux_transport_template;
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 scsi_add_host(host, (ahc->dev_softc ? &ahc->dev_softc->dev : NULL)); /* XXX handle failure */
1232 scsi_scan_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return (0);
1234}
1235
1236uint64_t
1237ahc_linux_get_memsize(void)
1238{
1239 struct sysinfo si;
1240
1241 si_meminfo(&si);
1242 return ((uint64_t)si.totalram << PAGE_SHIFT);
1243}
1244
1245/*
1246 * Find the smallest available unit number to use
1247 * for a new device. We don't just use a static
1248 * count to handle the "repeated hot-(un)plug"
1249 * scenario.
1250 */
1251static int
1252ahc_linux_next_unit(void)
1253{
1254 struct ahc_softc *ahc;
1255 int unit;
1256
1257 unit = 0;
1258retry:
1259 TAILQ_FOREACH(ahc, &ahc_tailq, links) {
1260 if (ahc->unit == unit) {
1261 unit++;
1262 goto retry;
1263 }
1264 }
1265 return (unit);
1266}
1267
1268/*
1269 * Place the SCSI bus into a known state by either resetting it,
1270 * or forcing transfer negotiations on the next command to any
1271 * target.
1272 */
1273void
1274ahc_linux_initialize_scsi_bus(struct ahc_softc *ahc)
1275{
1276 int i;
1277 int numtarg;
1278
1279 i = 0;
1280 numtarg = 0;
1281
1282 if (aic7xxx_no_reset != 0)
1283 ahc->flags &= ~(AHC_RESET_BUS_A|AHC_RESET_BUS_B);
1284
1285 if ((ahc->flags & AHC_RESET_BUS_A) != 0)
1286 ahc_reset_channel(ahc, 'A', /*initiate_reset*/TRUE);
1287 else
1288 numtarg = (ahc->features & AHC_WIDE) ? 16 : 8;
1289
1290 if ((ahc->features & AHC_TWIN) != 0) {
1291
1292 if ((ahc->flags & AHC_RESET_BUS_B) != 0) {
1293 ahc_reset_channel(ahc, 'B', /*initiate_reset*/TRUE);
1294 } else {
1295 if (numtarg == 0)
1296 i = 8;
1297 numtarg += 8;
1298 }
1299 }
1300
1301 /*
1302 * Force negotiation to async for all targets that
1303 * will not see an initial bus reset.
1304 */
1305 for (; i < numtarg; i++) {
1306 struct ahc_devinfo devinfo;
1307 struct ahc_initiator_tinfo *tinfo;
1308 struct ahc_tmode_tstate *tstate;
1309 u_int our_id;
1310 u_int target_id;
1311 char channel;
1312
1313 channel = 'A';
1314 our_id = ahc->our_id;
1315 target_id = i;
1316 if (i > 7 && (ahc->features & AHC_TWIN) != 0) {
1317 channel = 'B';
1318 our_id = ahc->our_id_b;
1319 target_id = i % 8;
1320 }
1321 tinfo = ahc_fetch_transinfo(ahc, channel, our_id,
1322 target_id, &tstate);
1323 ahc_compile_devinfo(&devinfo, our_id, target_id,
1324 CAM_LUN_WILDCARD, channel, ROLE_INITIATOR);
1325 ahc_update_neg_request(ahc, &devinfo, tstate,
1326 tinfo, AHC_NEG_ALWAYS);
1327 }
1328 /* Give the bus some time to recover */
1329 if ((ahc->flags & (AHC_RESET_BUS_A|AHC_RESET_BUS_B)) != 0) {
1330 ahc_linux_freeze_simq(ahc);
1331 init_timer(&ahc->platform_data->reset_timer);
1332 ahc->platform_data->reset_timer.data = (u_long)ahc;
1333 ahc->platform_data->reset_timer.expires =
1334 jiffies + (AIC7XXX_RESET_DELAY * HZ)/1000;
1335 ahc->platform_data->reset_timer.function =
1336 ahc_linux_release_simq;
1337 add_timer(&ahc->platform_data->reset_timer);
1338 }
1339}
1340
1341int
1342ahc_platform_alloc(struct ahc_softc *ahc, void *platform_arg)
1343{
1344
1345 ahc->platform_data =
1346 malloc(sizeof(struct ahc_platform_data), M_DEVBUF, M_NOWAIT);
1347 if (ahc->platform_data == NULL)
1348 return (ENOMEM);
1349 memset(ahc->platform_data, 0, sizeof(struct ahc_platform_data));
1350 TAILQ_INIT(&ahc->platform_data->completeq);
1351 TAILQ_INIT(&ahc->platform_data->device_runq);
1352 ahc->platform_data->irq = AHC_LINUX_NOIRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 ahc_lockinit(ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 init_timer(&ahc->platform_data->completeq_timer);
1355 ahc->platform_data->completeq_timer.data = (u_long)ahc;
1356 ahc->platform_data->completeq_timer.function =
1357 (ahc_linux_callback_t *)ahc_linux_thread_run_complete_queue;
1358 init_MUTEX_LOCKED(&ahc->platform_data->eh_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 ahc->seltime = (aic7xxx_seltime & 0x3) << 4;
1360 ahc->seltime_b = (aic7xxx_seltime & 0x3) << 4;
1361 if (aic7xxx_pci_parity == 0)
1362 ahc->flags |= AHC_DISABLE_PCI_PERR;
1363
1364 return (0);
1365}
1366
1367void
1368ahc_platform_free(struct ahc_softc *ahc)
1369{
1370 struct ahc_linux_target *targ;
1371 struct ahc_linux_device *dev;
1372 int i, j;
1373
1374 if (ahc->platform_data != NULL) {
1375 del_timer_sync(&ahc->platform_data->completeq_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (ahc->platform_data->host != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 scsi_remove_host(ahc->platform_data->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 scsi_host_put(ahc->platform_data->host);
1379 }
1380
1381 /* destroy all of the device and target objects */
1382 for (i = 0; i < AHC_NUM_TARGETS; i++) {
1383 targ = ahc->platform_data->targets[i];
1384 if (targ != NULL) {
1385 /* Keep target around through the loop. */
1386 targ->refcount++;
1387 for (j = 0; j < AHC_NUM_LUNS; j++) {
1388
1389 if (targ->devices[j] == NULL)
1390 continue;
1391 dev = targ->devices[j];
1392 ahc_linux_free_device(ahc, dev);
1393 }
1394 /*
1395 * Forcibly free the target now that
1396 * all devices are gone.
1397 */
1398 ahc_linux_free_target(ahc, targ);
1399 }
1400 }
1401
1402 if (ahc->platform_data->irq != AHC_LINUX_NOIRQ)
1403 free_irq(ahc->platform_data->irq, ahc);
1404 if (ahc->tag == BUS_SPACE_PIO
1405 && ahc->bsh.ioport != 0)
1406 release_region(ahc->bsh.ioport, 256);
1407 if (ahc->tag == BUS_SPACE_MEMIO
1408 && ahc->bsh.maddr != NULL) {
1409 iounmap(ahc->bsh.maddr);
1410 release_mem_region(ahc->platform_data->mem_busaddr,
1411 0x1000);
1412 }
Christoph Hellwig dedd8312005-05-16 18:52:06 +02001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 free(ahc->platform_data, M_DEVBUF);
1415 }
1416}
1417
1418void
1419ahc_platform_freeze_devq(struct ahc_softc *ahc, struct scb *scb)
1420{
1421 ahc_platform_abort_scbs(ahc, SCB_GET_TARGET(ahc, scb),
1422 SCB_GET_CHANNEL(ahc, scb),
1423 SCB_GET_LUN(scb), SCB_LIST_NULL,
1424 ROLE_UNKNOWN, CAM_REQUEUE_REQ);
1425}
1426
1427void
1428ahc_platform_set_tags(struct ahc_softc *ahc, struct ahc_devinfo *devinfo,
1429 ahc_queue_alg alg)
1430{
1431 struct ahc_linux_device *dev;
1432 int was_queuing;
1433 int now_queuing;
1434
1435 dev = ahc_linux_get_device(ahc, devinfo->channel - 'A',
1436 devinfo->target,
1437 devinfo->lun, /*alloc*/FALSE);
1438 if (dev == NULL)
1439 return;
1440 was_queuing = dev->flags & (AHC_DEV_Q_BASIC|AHC_DEV_Q_TAGGED);
1441 switch (alg) {
1442 default:
1443 case AHC_QUEUE_NONE:
1444 now_queuing = 0;
1445 break;
1446 case AHC_QUEUE_BASIC:
1447 now_queuing = AHC_DEV_Q_BASIC;
1448 break;
1449 case AHC_QUEUE_TAGGED:
1450 now_queuing = AHC_DEV_Q_TAGGED;
1451 break;
1452 }
1453 if ((dev->flags & AHC_DEV_FREEZE_TIL_EMPTY) == 0
1454 && (was_queuing != now_queuing)
1455 && (dev->active != 0)) {
1456 dev->flags |= AHC_DEV_FREEZE_TIL_EMPTY;
1457 dev->qfrozen++;
1458 }
1459
1460 dev->flags &= ~(AHC_DEV_Q_BASIC|AHC_DEV_Q_TAGGED|AHC_DEV_PERIODIC_OTAG);
1461 if (now_queuing) {
1462 u_int usertags;
1463
1464 usertags = ahc_linux_user_tagdepth(ahc, devinfo);
1465 if (!was_queuing) {
1466 /*
1467 * Start out agressively and allow our
1468 * dynamic queue depth algorithm to take
1469 * care of the rest.
1470 */
1471 dev->maxtags = usertags;
1472 dev->openings = dev->maxtags - dev->active;
1473 }
1474 if (dev->maxtags == 0) {
1475 /*
1476 * Queueing is disabled by the user.
1477 */
1478 dev->openings = 1;
1479 } else if (alg == AHC_QUEUE_TAGGED) {
1480 dev->flags |= AHC_DEV_Q_TAGGED;
1481 if (aic7xxx_periodic_otag != 0)
1482 dev->flags |= AHC_DEV_PERIODIC_OTAG;
1483 } else
1484 dev->flags |= AHC_DEV_Q_BASIC;
1485 } else {
1486 /* We can only have one opening. */
1487 dev->maxtags = 0;
1488 dev->openings = 1 - dev->active;
1489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 if (dev->scsi_device != NULL) {
1491 switch ((dev->flags & (AHC_DEV_Q_BASIC|AHC_DEV_Q_TAGGED))) {
1492 case AHC_DEV_Q_BASIC:
1493 scsi_adjust_queue_depth(dev->scsi_device,
1494 MSG_SIMPLE_TASK,
1495 dev->openings + dev->active);
1496 break;
1497 case AHC_DEV_Q_TAGGED:
1498 scsi_adjust_queue_depth(dev->scsi_device,
1499 MSG_ORDERED_TASK,
1500 dev->openings + dev->active);
1501 break;
1502 default:
1503 /*
1504 * We allow the OS to queue 2 untagged transactions to
1505 * us at any time even though we can only execute them
1506 * serially on the controller/device. This should
1507 * remove some latency.
1508 */
1509 scsi_adjust_queue_depth(dev->scsi_device,
1510 /*NON-TAGGED*/0,
1511 /*queue depth*/2);
1512 break;
1513 }
1514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517int
1518ahc_platform_abort_scbs(struct ahc_softc *ahc, int target, char channel,
1519 int lun, u_int tag, role_t role, uint32_t status)
1520{
James Bottomley e4e360c2005-05-16 16:39:38 -05001521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
1524static void
1525ahc_linux_thread_run_complete_queue(struct ahc_softc *ahc)
1526{
1527 u_long flags;
1528
1529 ahc_lock(ahc, &flags);
1530 del_timer(&ahc->platform_data->completeq_timer);
1531 ahc->platform_data->flags &= ~AHC_RUN_CMPLT_Q_TIMER;
1532 ahc_linux_run_complete_queue(ahc);
1533 ahc_unlock(ahc, &flags);
1534}
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536static u_int
1537ahc_linux_user_tagdepth(struct ahc_softc *ahc, struct ahc_devinfo *devinfo)
1538{
1539 static int warned_user;
1540 u_int tags;
1541
1542 tags = 0;
1543 if ((ahc->user_discenable & devinfo->target_mask) != 0) {
1544 if (ahc->unit >= NUM_ELEMENTS(aic7xxx_tag_info)) {
1545 if (warned_user == 0) {
1546
1547 printf(KERN_WARNING
1548"aic7xxx: WARNING: Insufficient tag_info instances\n"
1549"aic7xxx: for installed controllers. Using defaults\n"
1550"aic7xxx: Please update the aic7xxx_tag_info array in\n"
1551"aic7xxx: the aic7xxx_osm..c source file.\n");
1552 warned_user++;
1553 }
1554 tags = AHC_MAX_QUEUE;
1555 } else {
1556 adapter_tag_info_t *tag_info;
1557
1558 tag_info = &aic7xxx_tag_info[ahc->unit];
1559 tags = tag_info->tag_commands[devinfo->target_offset];
1560 if (tags > AHC_MAX_QUEUE)
1561 tags = AHC_MAX_QUEUE;
1562 }
1563 }
1564 return (tags);
1565}
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567/*
1568 * Determines the queue depth for a given device.
1569 */
1570static void
1571ahc_linux_device_queue_depth(struct ahc_softc *ahc,
1572 struct ahc_linux_device *dev)
1573{
1574 struct ahc_devinfo devinfo;
1575 u_int tags;
1576
1577 ahc_compile_devinfo(&devinfo,
1578 dev->target->channel == 0
1579 ? ahc->our_id : ahc->our_id_b,
1580 dev->target->target, dev->lun,
1581 dev->target->channel == 0 ? 'A' : 'B',
1582 ROLE_INITIATOR);
1583 tags = ahc_linux_user_tagdepth(ahc, &devinfo);
1584 if (tags != 0
1585 && dev->scsi_device != NULL
1586 && dev->scsi_device->tagged_supported != 0) {
1587
1588 ahc_set_tags(ahc, &devinfo, AHC_QUEUE_TAGGED);
1589 ahc_print_devinfo(ahc, &devinfo);
1590 printf("Tagged Queuing enabled. Depth %d\n", tags);
1591 } else {
1592 ahc_set_tags(ahc, &devinfo, AHC_QUEUE_NONE);
1593 }
1594}
1595
James Bottomley e4e360c2005-05-16 16:39:38 -05001596static int
1597ahc_linux_run_command(struct ahc_softc *ahc, struct ahc_linux_device *dev,
1598 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 struct scb *scb;
1601 struct hardware_scb *hscb;
1602 struct ahc_initiator_tinfo *tinfo;
1603 struct ahc_tmode_tstate *tstate;
1604 uint16_t mask;
James Bottomley e4e360c2005-05-16 16:39:38 -05001605 struct scb_tailq *untagged_q = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
James Bottomley e4e360c2005-05-16 16:39:38 -05001607 /*
1608 * Schedule us to run later. The only reason we are not
1609 * running is because the whole controller Q is frozen.
1610 */
1611 if (ahc->platform_data->qfrozen != 0)
1612 return SCSI_MLQUEUE_HOST_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
James Bottomley e4e360c2005-05-16 16:39:38 -05001614 /*
1615 * We only allow one untagged transaction
1616 * per target in the initiator role unless
1617 * we are storing a full busy target *lun*
1618 * table in SCB space.
1619 */
1620 if (!blk_rq_tagged(cmd->request)
1621 && (ahc->features & AHC_SCB_BTT) == 0) {
1622 int target_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
James Bottomley e4e360c2005-05-16 16:39:38 -05001624 target_offset = cmd->device->id + cmd->device->channel * 8;
1625 untagged_q = &(ahc->untagged_queues[target_offset]);
1626 if (!TAILQ_EMPTY(untagged_q))
1627 /* if we're already executing an untagged command
1628 * we're busy to another */
1629 return SCSI_MLQUEUE_DEVICE_BUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
James Bottomley e4e360c2005-05-16 16:39:38 -05001631
1632 /*
1633 * Get an scb to use.
1634 */
1635 if ((scb = ahc_get_scb(ahc)) == NULL) {
1636 ahc->flags |= AHC_RESOURCE_SHORTAGE;
1637 return SCSI_MLQUEUE_HOST_BUSY;
1638 }
1639
1640 scb->io_ctx = cmd;
1641 scb->platform_data->dev = dev;
1642 hscb = scb->hscb;
1643 cmd->host_scribble = (char *)scb;
1644
1645 /*
1646 * Fill out basics of the HSCB.
1647 */
1648 hscb->control = 0;
1649 hscb->scsiid = BUILD_SCSIID(ahc, cmd);
1650 hscb->lun = cmd->device->lun;
1651 mask = SCB_GET_TARGET_MASK(ahc, scb);
1652 tinfo = ahc_fetch_transinfo(ahc, SCB_GET_CHANNEL(ahc, scb),
1653 SCB_GET_OUR_ID(scb),
1654 SCB_GET_TARGET(ahc, scb), &tstate);
1655 hscb->scsirate = tinfo->scsirate;
1656 hscb->scsioffset = tinfo->curr.offset;
1657 if ((tstate->ultraenb & mask) != 0)
1658 hscb->control |= ULTRAENB;
1659
1660 if ((ahc->user_discenable & mask) != 0)
1661 hscb->control |= DISCENB;
1662
1663 if ((tstate->auto_negotiate & mask) != 0) {
1664 scb->flags |= SCB_AUTO_NEGOTIATE;
1665 scb->hscb->control |= MK_MESSAGE;
1666 }
1667
1668 if ((dev->flags & (AHC_DEV_Q_TAGGED|AHC_DEV_Q_BASIC)) != 0) {
James Bottomley e4e360c2005-05-16 16:39:38 -05001669 int msg_bytes;
1670 uint8_t tag_msgs[2];
1671
1672 msg_bytes = scsi_populate_tag_msg(cmd, tag_msgs);
1673 if (msg_bytes && tag_msgs[0] != MSG_SIMPLE_TASK) {
1674 hscb->control |= tag_msgs[0];
1675 if (tag_msgs[0] == MSG_ORDERED_TASK)
1676 dev->commands_since_idle_or_otag = 0;
Christoph Hellwig dedd8312005-05-16 18:52:06 +02001677 } else if (dev->commands_since_idle_or_otag == AHC_OTAG_THRESH
1678 && (dev->flags & AHC_DEV_Q_TAGGED) != 0) {
James Bottomley e4e360c2005-05-16 16:39:38 -05001679 hscb->control |= MSG_ORDERED_TASK;
1680 dev->commands_since_idle_or_otag = 0;
1681 } else {
1682 hscb->control |= MSG_SIMPLE_TASK;
1683 }
1684 }
1685
1686 hscb->cdb_len = cmd->cmd_len;
1687 if (hscb->cdb_len <= 12) {
1688 memcpy(hscb->shared_data.cdb, cmd->cmnd, hscb->cdb_len);
1689 } else {
1690 memcpy(hscb->cdb32, cmd->cmnd, hscb->cdb_len);
1691 scb->flags |= SCB_CDB32_PTR;
1692 }
1693
1694 scb->platform_data->xfer_len = 0;
1695 ahc_set_residual(scb, 0);
1696 ahc_set_sense_residual(scb, 0);
1697 scb->sg_count = 0;
1698 if (cmd->use_sg != 0) {
1699 struct ahc_dma_seg *sg;
1700 struct scatterlist *cur_seg;
1701 struct scatterlist *end_seg;
1702 int nseg;
1703
1704 cur_seg = (struct scatterlist *)cmd->request_buffer;
1705 nseg = pci_map_sg(ahc->dev_softc, cur_seg, cmd->use_sg,
1706 cmd->sc_data_direction);
1707 end_seg = cur_seg + nseg;
1708 /* Copy the segments into the SG list. */
1709 sg = scb->sg_list;
1710 /*
1711 * The sg_count may be larger than nseg if
1712 * a transfer crosses a 32bit page.
1713 */
1714 while (cur_seg < end_seg) {
1715 dma_addr_t addr;
1716 bus_size_t len;
1717 int consumed;
1718
1719 addr = sg_dma_address(cur_seg);
1720 len = sg_dma_len(cur_seg);
1721 consumed = ahc_linux_map_seg(ahc, scb,
1722 sg, addr, len);
1723 sg += consumed;
1724 scb->sg_count += consumed;
1725 cur_seg++;
1726 }
1727 sg--;
1728 sg->len |= ahc_htole32(AHC_DMA_LAST_SEG);
1729
1730 /*
1731 * Reset the sg list pointer.
1732 */
1733 scb->hscb->sgptr =
1734 ahc_htole32(scb->sg_list_phys | SG_FULL_RESID);
1735
1736 /*
1737 * Copy the first SG into the "current"
1738 * data pointer area.
1739 */
1740 scb->hscb->dataptr = scb->sg_list->addr;
1741 scb->hscb->datacnt = scb->sg_list->len;
1742 } else if (cmd->request_bufflen != 0) {
1743 struct ahc_dma_seg *sg;
1744 dma_addr_t addr;
1745
1746 sg = scb->sg_list;
1747 addr = pci_map_single(ahc->dev_softc,
1748 cmd->request_buffer,
1749 cmd->request_bufflen,
1750 cmd->sc_data_direction);
1751 scb->platform_data->buf_busaddr = addr;
1752 scb->sg_count = ahc_linux_map_seg(ahc, scb,
1753 sg, addr,
1754 cmd->request_bufflen);
1755 sg->len |= ahc_htole32(AHC_DMA_LAST_SEG);
1756
1757 /*
1758 * Reset the sg list pointer.
1759 */
1760 scb->hscb->sgptr =
1761 ahc_htole32(scb->sg_list_phys | SG_FULL_RESID);
1762
1763 /*
1764 * Copy the first SG into the "current"
1765 * data pointer area.
1766 */
1767 scb->hscb->dataptr = sg->addr;
1768 scb->hscb->datacnt = sg->len;
1769 } else {
1770 scb->hscb->sgptr = ahc_htole32(SG_LIST_NULL);
1771 scb->hscb->dataptr = 0;
1772 scb->hscb->datacnt = 0;
1773 scb->sg_count = 0;
1774 }
1775
1776 LIST_INSERT_HEAD(&ahc->pending_scbs, scb, pending_links);
1777 dev->openings--;
1778 dev->active++;
1779 dev->commands_issued++;
1780 if ((dev->flags & AHC_DEV_PERIODIC_OTAG) != 0)
1781 dev->commands_since_idle_or_otag++;
1782
1783 scb->flags |= SCB_ACTIVE;
1784 if (untagged_q) {
1785 TAILQ_INSERT_TAIL(untagged_q, scb, links.tqe);
1786 scb->flags |= SCB_UNTAGGEDQ;
1787 }
1788 ahc_queue_scb(ahc, scb);
1789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790}
1791
1792/*
1793 * SCSI controller interrupt handler.
1794 */
1795irqreturn_t
1796ahc_linux_isr(int irq, void *dev_id, struct pt_regs * regs)
1797{
1798 struct ahc_softc *ahc;
1799 u_long flags;
1800 int ours;
1801
1802 ahc = (struct ahc_softc *) dev_id;
1803 ahc_lock(ahc, &flags);
1804 ours = ahc_intr(ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 ahc_linux_run_complete_queue(ahc);
1806 ahc_unlock(ahc, &flags);
1807 return IRQ_RETVAL(ours);
1808}
1809
1810void
1811ahc_platform_flushwork(struct ahc_softc *ahc)
1812{
1813
1814 while (ahc_linux_run_complete_queue(ahc) != NULL)
1815 ;
1816}
1817
1818static struct ahc_linux_target*
1819ahc_linux_alloc_target(struct ahc_softc *ahc, u_int channel, u_int target)
1820{
1821 struct ahc_linux_target *targ;
1822 u_int target_offset;
1823
1824 target_offset = target;
1825 if (channel != 0)
1826 target_offset += 8;
1827
1828 targ = malloc(sizeof(*targ), M_DEVBUG, M_NOWAIT);
1829 if (targ == NULL)
1830 return (NULL);
1831 memset(targ, 0, sizeof(*targ));
1832 targ->channel = channel;
1833 targ->target = target;
1834 targ->ahc = ahc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 ahc->platform_data->targets[target_offset] = targ;
1836 return (targ);
1837}
1838
1839static void
1840ahc_linux_free_target(struct ahc_softc *ahc, struct ahc_linux_target *targ)
1841{
1842 struct ahc_devinfo devinfo;
1843 struct ahc_initiator_tinfo *tinfo;
1844 struct ahc_tmode_tstate *tstate;
1845 u_int our_id;
1846 u_int target_offset;
1847 char channel;
1848
1849 /*
1850 * Force a negotiation to async/narrow on any
1851 * future command to this device unless a bus
1852 * reset occurs between now and that command.
1853 */
1854 channel = 'A' + targ->channel;
1855 our_id = ahc->our_id;
1856 target_offset = targ->target;
1857 if (targ->channel != 0) {
1858 target_offset += 8;
1859 our_id = ahc->our_id_b;
1860 }
1861 tinfo = ahc_fetch_transinfo(ahc, channel, our_id,
1862 targ->target, &tstate);
1863 ahc_compile_devinfo(&devinfo, our_id, targ->target, CAM_LUN_WILDCARD,
1864 channel, ROLE_INITIATOR);
1865 ahc_set_syncrate(ahc, &devinfo, NULL, 0, 0, 0,
1866 AHC_TRANS_GOAL, /*paused*/FALSE);
1867 ahc_set_width(ahc, &devinfo, MSG_EXT_WDTR_BUS_8_BIT,
1868 AHC_TRANS_GOAL, /*paused*/FALSE);
1869 ahc_update_neg_request(ahc, &devinfo, tstate, tinfo, AHC_NEG_ALWAYS);
1870 ahc->platform_data->targets[target_offset] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 free(targ, M_DEVBUF);
1872}
1873
1874static struct ahc_linux_device*
1875ahc_linux_alloc_device(struct ahc_softc *ahc,
1876 struct ahc_linux_target *targ, u_int lun)
1877{
1878 struct ahc_linux_device *dev;
1879
1880 dev = malloc(sizeof(*dev), M_DEVBUG, M_NOWAIT);
1881 if (dev == NULL)
1882 return (NULL);
1883 memset(dev, 0, sizeof(*dev));
1884 init_timer(&dev->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 dev->flags = AHC_DEV_UNCONFIGURED;
1886 dev->lun = lun;
1887 dev->target = targ;
1888
1889 /*
1890 * We start out life using untagged
1891 * transactions of which we allow one.
1892 */
1893 dev->openings = 1;
1894
1895 /*
1896 * Set maxtags to 0. This will be changed if we
1897 * later determine that we are dealing with
1898 * a tagged queuing capable device.
1899 */
1900 dev->maxtags = 0;
1901
1902 targ->refcount++;
1903 targ->devices[lun] = dev;
1904 return (dev);
1905}
1906
1907static void
1908__ahc_linux_free_device(struct ahc_softc *ahc, struct ahc_linux_device *dev)
1909{
1910 struct ahc_linux_target *targ;
1911
1912 targ = dev->target;
1913 targ->devices[dev->lun] = NULL;
1914 free(dev, M_DEVBUF);
1915 targ->refcount--;
cb624022005-04-17 18:03:20 -05001916 if (targ->refcount == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 ahc_linux_free_target(ahc, targ);
1918}
1919
1920static void
1921ahc_linux_free_device(struct ahc_softc *ahc, struct ahc_linux_device *dev)
1922{
1923 del_timer_sync(&dev->timer);
1924 __ahc_linux_free_device(ahc, dev);
1925}
1926
1927void
1928ahc_send_async(struct ahc_softc *ahc, char channel,
1929 u_int target, u_int lun, ac_code code, void *arg)
1930{
1931 switch (code) {
1932 case AC_TRANSFER_NEG:
1933 {
1934 char buf[80];
1935 struct ahc_linux_target *targ;
1936 struct info_str info;
1937 struct ahc_initiator_tinfo *tinfo;
1938 struct ahc_tmode_tstate *tstate;
1939 int target_offset;
1940
1941 info.buffer = buf;
1942 info.length = sizeof(buf);
1943 info.offset = 0;
1944 info.pos = 0;
1945 tinfo = ahc_fetch_transinfo(ahc, channel,
1946 channel == 'A' ? ahc->our_id
1947 : ahc->our_id_b,
1948 target, &tstate);
1949
1950 /*
1951 * Don't bother reporting results while
1952 * negotiations are still pending.
1953 */
1954 if (tinfo->curr.period != tinfo->goal.period
1955 || tinfo->curr.width != tinfo->goal.width
1956 || tinfo->curr.offset != tinfo->goal.offset
1957 || tinfo->curr.ppr_options != tinfo->goal.ppr_options)
1958 if (bootverbose == 0)
1959 break;
1960
1961 /*
1962 * Don't bother reporting results that
1963 * are identical to those last reported.
1964 */
1965 target_offset = target;
1966 if (channel == 'B')
1967 target_offset += 8;
1968 targ = ahc->platform_data->targets[target_offset];
1969 if (targ == NULL)
1970 break;
1971 if (tinfo->curr.period == targ->last_tinfo.period
1972 && tinfo->curr.width == targ->last_tinfo.width
1973 && tinfo->curr.offset == targ->last_tinfo.offset
1974 && tinfo->curr.ppr_options == targ->last_tinfo.ppr_options)
1975 if (bootverbose == 0)
1976 break;
1977
1978 targ->last_tinfo.period = tinfo->curr.period;
1979 targ->last_tinfo.width = tinfo->curr.width;
1980 targ->last_tinfo.offset = tinfo->curr.offset;
1981 targ->last_tinfo.ppr_options = tinfo->curr.ppr_options;
1982
1983 printf("(%s:%c:", ahc_name(ahc), channel);
1984 if (target == CAM_TARGET_WILDCARD)
1985 printf("*): ");
1986 else
1987 printf("%d): ", target);
1988 ahc_format_transinfo(&info, &tinfo->curr);
1989 if (info.pos < info.length)
1990 *info.buffer = '\0';
1991 else
1992 buf[info.length - 1] = '\0';
1993 printf("%s", buf);
1994 break;
1995 }
1996 case AC_SENT_BDR:
1997 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 WARN_ON(lun != CAM_LUN_WILDCARD);
1999 scsi_report_device_reset(ahc->platform_data->host,
2000 channel - 'A', target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 break;
2002 }
2003 case AC_BUS_RESET:
2004 if (ahc->platform_data->host != NULL) {
2005 scsi_report_bus_reset(ahc->platform_data->host,
2006 channel - 'A');
2007 }
2008 break;
2009 default:
2010 panic("ahc_send_async: Unexpected async event");
2011 }
2012}
2013
2014/*
2015 * Calls the higher level scsi done function and frees the scb.
2016 */
2017void
2018ahc_done(struct ahc_softc *ahc, struct scb *scb)
2019{
2020 Scsi_Cmnd *cmd;
2021 struct ahc_linux_device *dev;
2022
2023 LIST_REMOVE(scb, pending_links);
2024 if ((scb->flags & SCB_UNTAGGEDQ) != 0) {
2025 struct scb_tailq *untagged_q;
2026 int target_offset;
2027
2028 target_offset = SCB_GET_TARGET_OFFSET(ahc, scb);
2029 untagged_q = &(ahc->untagged_queues[target_offset]);
2030 TAILQ_REMOVE(untagged_q, scb, links.tqe);
James Bottomley e4e360c2005-05-16 16:39:38 -05002031 BUG_ON(!TAILQ_EMPTY(untagged_q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033
2034 if ((scb->flags & SCB_ACTIVE) == 0) {
2035 printf("SCB %d done'd twice\n", scb->hscb->tag);
2036 ahc_dump_card_state(ahc);
2037 panic("Stopping for safety");
2038 }
2039 cmd = scb->io_ctx;
2040 dev = scb->platform_data->dev;
2041 dev->active--;
2042 dev->openings++;
2043 if ((cmd->result & (CAM_DEV_QFRZN << 16)) != 0) {
2044 cmd->result &= ~(CAM_DEV_QFRZN << 16);
2045 dev->qfrozen--;
2046 }
2047 ahc_linux_unmap_scb(ahc, scb);
2048
2049 /*
2050 * Guard against stale sense data.
2051 * The Linux mid-layer assumes that sense
2052 * was retrieved anytime the first byte of
2053 * the sense buffer looks "sane".
2054 */
2055 cmd->sense_buffer[0] = 0;
2056 if (ahc_get_transaction_status(scb) == CAM_REQ_INPROG) {
2057 uint32_t amount_xferred;
2058
2059 amount_xferred =
2060 ahc_get_transfer_length(scb) - ahc_get_residual(scb);
2061 if ((scb->flags & SCB_TRANSMISSION_ERROR) != 0) {
2062#ifdef AHC_DEBUG
2063 if ((ahc_debug & AHC_SHOW_MISC) != 0) {
2064 ahc_print_path(ahc, scb);
2065 printf("Set CAM_UNCOR_PARITY\n");
2066 }
2067#endif
2068 ahc_set_transaction_status(scb, CAM_UNCOR_PARITY);
2069#ifdef AHC_REPORT_UNDERFLOWS
2070 /*
2071 * This code is disabled by default as some
2072 * clients of the SCSI system do not properly
2073 * initialize the underflow parameter. This
2074 * results in spurious termination of commands
2075 * that complete as expected (e.g. underflow is
2076 * allowed as command can return variable amounts
2077 * of data.
2078 */
2079 } else if (amount_xferred < scb->io_ctx->underflow) {
2080 u_int i;
2081
2082 ahc_print_path(ahc, scb);
2083 printf("CDB:");
2084 for (i = 0; i < scb->io_ctx->cmd_len; i++)
2085 printf(" 0x%x", scb->io_ctx->cmnd[i]);
2086 printf("\n");
2087 ahc_print_path(ahc, scb);
2088 printf("Saw underflow (%ld of %ld bytes). "
2089 "Treated as error\n",
2090 ahc_get_residual(scb),
2091 ahc_get_transfer_length(scb));
2092 ahc_set_transaction_status(scb, CAM_DATA_RUN_ERR);
2093#endif
2094 } else {
2095 ahc_set_transaction_status(scb, CAM_REQ_CMP);
2096 }
2097 } else if (ahc_get_transaction_status(scb) == CAM_SCSI_STATUS_ERROR) {
2098 ahc_linux_handle_scsi_status(ahc, dev, scb);
2099 } else if (ahc_get_transaction_status(scb) == CAM_SEL_TIMEOUT) {
2100 dev->flags |= AHC_DEV_UNCONFIGURED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 if (dev->openings == 1
2104 && ahc_get_transaction_status(scb) == CAM_REQ_CMP
2105 && ahc_get_scsi_status(scb) != SCSI_STATUS_QUEUE_FULL)
2106 dev->tag_success_count++;
2107 /*
2108 * Some devices deal with temporary internal resource
2109 * shortages by returning queue full. When the queue
2110 * full occurrs, we throttle back. Slowly try to get
2111 * back to our previous queue depth.
2112 */
2113 if ((dev->openings + dev->active) < dev->maxtags
2114 && dev->tag_success_count > AHC_TAG_SUCCESS_INTERVAL) {
2115 dev->tag_success_count = 0;
2116 dev->openings++;
2117 }
2118
2119 if (dev->active == 0)
2120 dev->commands_since_idle_or_otag = 0;
2121
James Bottomley e4e360c2005-05-16 16:39:38 -05002122 if ((dev->flags & AHC_DEV_UNCONFIGURED) != 0
2123 && dev->active == 0
2124 && (dev->flags & AHC_DEV_TIMER_ACTIVE) == 0)
2125 ahc_linux_free_device(ahc, dev);
2126 else if ((dev->flags & AHC_DEV_ON_RUN_LIST) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 TAILQ_INSERT_TAIL(&ahc->platform_data->device_runq, dev, links);
2128 dev->flags |= AHC_DEV_ON_RUN_LIST;
2129 }
2130
2131 if ((scb->flags & SCB_RECOVERY_SCB) != 0) {
2132 printf("Recovery SCB completes\n");
2133 if (ahc_get_transaction_status(scb) == CAM_BDR_SENT
2134 || ahc_get_transaction_status(scb) == CAM_REQ_ABORTED)
2135 ahc_set_transaction_status(scb, CAM_CMD_TIMEOUT);
2136 if ((ahc->platform_data->flags & AHC_UP_EH_SEMAPHORE) != 0) {
2137 ahc->platform_data->flags &= ~AHC_UP_EH_SEMAPHORE;
2138 up(&ahc->platform_data->eh_sem);
2139 }
2140 }
2141
2142 ahc_free_scb(ahc, scb);
2143 ahc_linux_queue_cmd_complete(ahc, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144}
2145
2146static void
2147ahc_linux_handle_scsi_status(struct ahc_softc *ahc,
2148 struct ahc_linux_device *dev, struct scb *scb)
2149{
2150 struct ahc_devinfo devinfo;
2151
2152 ahc_compile_devinfo(&devinfo,
2153 ahc->our_id,
2154 dev->target->target, dev->lun,
2155 dev->target->channel == 0 ? 'A' : 'B',
2156 ROLE_INITIATOR);
2157
2158 /*
2159 * We don't currently trust the mid-layer to
2160 * properly deal with queue full or busy. So,
2161 * when one occurs, we tell the mid-layer to
2162 * unconditionally requeue the command to us
2163 * so that we can retry it ourselves. We also
2164 * implement our own throttling mechanism so
2165 * we don't clobber the device with too many
2166 * commands.
2167 */
2168 switch (ahc_get_scsi_status(scb)) {
2169 default:
2170 break;
2171 case SCSI_STATUS_CHECK_COND:
2172 case SCSI_STATUS_CMD_TERMINATED:
2173 {
2174 Scsi_Cmnd *cmd;
2175
2176 /*
2177 * Copy sense information to the OS's cmd
2178 * structure if it is available.
2179 */
2180 cmd = scb->io_ctx;
2181 if (scb->flags & SCB_SENSE) {
2182 u_int sense_size;
2183
2184 sense_size = MIN(sizeof(struct scsi_sense_data)
2185 - ahc_get_sense_residual(scb),
2186 sizeof(cmd->sense_buffer));
2187 memcpy(cmd->sense_buffer,
2188 ahc_get_sense_buf(ahc, scb), sense_size);
2189 if (sense_size < sizeof(cmd->sense_buffer))
2190 memset(&cmd->sense_buffer[sense_size], 0,
2191 sizeof(cmd->sense_buffer) - sense_size);
2192 cmd->result |= (DRIVER_SENSE << 24);
2193#ifdef AHC_DEBUG
2194 if (ahc_debug & AHC_SHOW_SENSE) {
2195 int i;
2196
2197 printf("Copied %d bytes of sense data:",
2198 sense_size);
2199 for (i = 0; i < sense_size; i++) {
2200 if ((i & 0xF) == 0)
2201 printf("\n");
2202 printf("0x%x ", cmd->sense_buffer[i]);
2203 }
2204 printf("\n");
2205 }
2206#endif
2207 }
2208 break;
2209 }
2210 case SCSI_STATUS_QUEUE_FULL:
2211 {
2212 /*
2213 * By the time the core driver has returned this
2214 * command, all other commands that were queued
2215 * to us but not the device have been returned.
2216 * This ensures that dev->active is equal to
2217 * the number of commands actually queued to
2218 * the device.
2219 */
2220 dev->tag_success_count = 0;
2221 if (dev->active != 0) {
2222 /*
2223 * Drop our opening count to the number
2224 * of commands currently outstanding.
2225 */
2226 dev->openings = 0;
2227/*
2228 ahc_print_path(ahc, scb);
2229 printf("Dropping tag count to %d\n", dev->active);
2230 */
2231 if (dev->active == dev->tags_on_last_queuefull) {
2232
2233 dev->last_queuefull_same_count++;
2234 /*
2235 * If we repeatedly see a queue full
2236 * at the same queue depth, this
2237 * device has a fixed number of tag
2238 * slots. Lock in this tag depth
2239 * so we stop seeing queue fulls from
2240 * this device.
2241 */
2242 if (dev->last_queuefull_same_count
2243 == AHC_LOCK_TAGS_COUNT) {
2244 dev->maxtags = dev->active;
2245 ahc_print_path(ahc, scb);
2246 printf("Locking max tag count at %d\n",
2247 dev->active);
2248 }
2249 } else {
2250 dev->tags_on_last_queuefull = dev->active;
2251 dev->last_queuefull_same_count = 0;
2252 }
2253 ahc_set_transaction_status(scb, CAM_REQUEUE_REQ);
2254 ahc_set_scsi_status(scb, SCSI_STATUS_OK);
2255 ahc_platform_set_tags(ahc, &devinfo,
2256 (dev->flags & AHC_DEV_Q_BASIC)
2257 ? AHC_QUEUE_BASIC : AHC_QUEUE_TAGGED);
2258 break;
2259 }
2260 /*
2261 * Drop down to a single opening, and treat this
2262 * as if the target returned BUSY SCSI status.
2263 */
2264 dev->openings = 1;
2265 ahc_set_scsi_status(scb, SCSI_STATUS_BUSY);
2266 ahc_platform_set_tags(ahc, &devinfo,
2267 (dev->flags & AHC_DEV_Q_BASIC)
2268 ? AHC_QUEUE_BASIC : AHC_QUEUE_TAGGED);
2269 /* FALLTHROUGH */
2270 }
2271 case SCSI_STATUS_BUSY:
2272 {
2273 /*
2274 * Set a short timer to defer sending commands for
2275 * a bit since Linux will not delay in this case.
2276 */
2277 if ((dev->flags & AHC_DEV_TIMER_ACTIVE) != 0) {
2278 printf("%s:%c:%d: Device Timer still active during "
2279 "busy processing\n", ahc_name(ahc),
2280 dev->target->channel, dev->target->target);
2281 break;
2282 }
2283 dev->flags |= AHC_DEV_TIMER_ACTIVE;
2284 dev->qfrozen++;
2285 init_timer(&dev->timer);
2286 dev->timer.data = (u_long)dev;
2287 dev->timer.expires = jiffies + (HZ/2);
2288 dev->timer.function = ahc_linux_dev_timed_unfreeze;
2289 add_timer(&dev->timer);
2290 break;
2291 }
2292 }
2293}
2294
2295static void
2296ahc_linux_queue_cmd_complete(struct ahc_softc *ahc, Scsi_Cmnd *cmd)
2297{
2298 /*
2299 * Typically, the complete queue has very few entries
2300 * queued to it before the queue is emptied by
2301 * ahc_linux_run_complete_queue, so sorting the entries
2302 * by generation number should be inexpensive.
2303 * We perform the sort so that commands that complete
2304 * with an error are retuned in the order origionally
2305 * queued to the controller so that any subsequent retries
2306 * are performed in order. The underlying ahc routines do
2307 * not guarantee the order that aborted commands will be
2308 * returned to us.
2309 */
2310 struct ahc_completeq *completeq;
2311 struct ahc_cmd *list_cmd;
2312 struct ahc_cmd *acmd;
2313
2314 /*
2315 * Map CAM error codes into Linux Error codes. We
2316 * avoid the conversion so that the DV code has the
2317 * full error information available when making
2318 * state change decisions.
2319 */
cb624022005-04-17 18:03:20 -05002320 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 u_int new_status;
2322
2323 switch (ahc_cmd_get_transaction_status(cmd)) {
2324 case CAM_REQ_INPROG:
2325 case CAM_REQ_CMP:
2326 case CAM_SCSI_STATUS_ERROR:
2327 new_status = DID_OK;
2328 break;
2329 case CAM_REQ_ABORTED:
2330 new_status = DID_ABORT;
2331 break;
2332 case CAM_BUSY:
2333 new_status = DID_BUS_BUSY;
2334 break;
2335 case CAM_REQ_INVALID:
2336 case CAM_PATH_INVALID:
2337 new_status = DID_BAD_TARGET;
2338 break;
2339 case CAM_SEL_TIMEOUT:
2340 new_status = DID_NO_CONNECT;
2341 break;
2342 case CAM_SCSI_BUS_RESET:
2343 case CAM_BDR_SENT:
2344 new_status = DID_RESET;
2345 break;
2346 case CAM_UNCOR_PARITY:
2347 new_status = DID_PARITY;
2348 break;
2349 case CAM_CMD_TIMEOUT:
2350 new_status = DID_TIME_OUT;
2351 break;
2352 case CAM_UA_ABORT:
2353 case CAM_REQ_CMP_ERR:
2354 case CAM_AUTOSENSE_FAIL:
2355 case CAM_NO_HBA:
2356 case CAM_DATA_RUN_ERR:
2357 case CAM_UNEXP_BUSFREE:
2358 case CAM_SEQUENCE_FAIL:
2359 case CAM_CCB_LEN_ERR:
2360 case CAM_PROVIDE_FAIL:
2361 case CAM_REQ_TERMIO:
2362 case CAM_UNREC_HBA_ERROR:
2363 case CAM_REQ_TOO_BIG:
2364 new_status = DID_ERROR;
2365 break;
2366 case CAM_REQUEUE_REQ:
2367 /*
2368 * If we want the request requeued, make sure there
2369 * are sufficent retries. In the old scsi error code,
2370 * we used to be able to specify a result code that
2371 * bypassed the retry count. Now we must use this
2372 * hack. We also "fake" a check condition with
2373 * a sense code of ABORTED COMMAND. This seems to
2374 * evoke a retry even if this command is being sent
2375 * via the eh thread. Ick! Ick! Ick!
2376 */
2377 if (cmd->retries > 0)
2378 cmd->retries--;
2379 new_status = DID_OK;
2380 ahc_cmd_set_scsi_status(cmd, SCSI_STATUS_CHECK_COND);
2381 cmd->result |= (DRIVER_SENSE << 24);
2382 memset(cmd->sense_buffer, 0,
2383 sizeof(cmd->sense_buffer));
2384 cmd->sense_buffer[0] = SSD_ERRCODE_VALID
2385 | SSD_CURRENT_ERROR;
2386 cmd->sense_buffer[2] = SSD_KEY_ABORTED_COMMAND;
2387 break;
2388 default:
2389 /* We should never get here */
2390 new_status = DID_ERROR;
2391 break;
2392 }
2393
2394 ahc_cmd_set_transaction_status(cmd, new_status);
2395 }
2396
2397 completeq = &ahc->platform_data->completeq;
2398 list_cmd = TAILQ_FIRST(completeq);
2399 acmd = (struct ahc_cmd *)cmd;
2400 while (list_cmd != NULL
2401 && acmd_scsi_cmd(list_cmd).serial_number
2402 < acmd_scsi_cmd(acmd).serial_number)
2403 list_cmd = TAILQ_NEXT(list_cmd, acmd_links.tqe);
2404 if (list_cmd != NULL)
2405 TAILQ_INSERT_BEFORE(list_cmd, acmd, acmd_links.tqe);
2406 else
2407 TAILQ_INSERT_TAIL(completeq, acmd, acmd_links.tqe);
2408}
2409
2410static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411ahc_linux_sem_timeout(u_long arg)
2412{
2413 struct ahc_softc *ahc;
2414 u_long s;
2415
2416 ahc = (struct ahc_softc *)arg;
2417
2418 ahc_lock(ahc, &s);
2419 if ((ahc->platform_data->flags & AHC_UP_EH_SEMAPHORE) != 0) {
2420 ahc->platform_data->flags &= ~AHC_UP_EH_SEMAPHORE;
2421 up(&ahc->platform_data->eh_sem);
2422 }
2423 ahc_unlock(ahc, &s);
2424}
2425
2426static void
2427ahc_linux_freeze_simq(struct ahc_softc *ahc)
2428{
2429 ahc->platform_data->qfrozen++;
2430 if (ahc->platform_data->qfrozen == 1) {
2431 scsi_block_requests(ahc->platform_data->host);
2432
2433 /* XXX What about Twin channels? */
2434 ahc_platform_abort_scbs(ahc, CAM_TARGET_WILDCARD, ALL_CHANNELS,
2435 CAM_LUN_WILDCARD, SCB_LIST_NULL,
2436 ROLE_INITIATOR, CAM_REQUEUE_REQ);
2437 }
2438}
2439
2440static void
2441ahc_linux_release_simq(u_long arg)
2442{
2443 struct ahc_softc *ahc;
2444 u_long s;
2445 int unblock_reqs;
2446
2447 ahc = (struct ahc_softc *)arg;
2448
2449 unblock_reqs = 0;
2450 ahc_lock(ahc, &s);
2451 if (ahc->platform_data->qfrozen > 0)
2452 ahc->platform_data->qfrozen--;
2453 if (ahc->platform_data->qfrozen == 0)
2454 unblock_reqs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 ahc_unlock(ahc, &s);
2456 /*
2457 * There is still a race here. The mid-layer
2458 * should keep its own freeze count and use
2459 * a bottom half handler to run the queues
2460 * so we can unblock with our own lock held.
2461 */
2462 if (unblock_reqs)
2463 scsi_unblock_requests(ahc->platform_data->host);
2464}
2465
2466static void
2467ahc_linux_dev_timed_unfreeze(u_long arg)
2468{
2469 struct ahc_linux_device *dev;
2470 struct ahc_softc *ahc;
2471 u_long s;
2472
2473 dev = (struct ahc_linux_device *)arg;
2474 ahc = dev->target->ahc;
2475 ahc_lock(ahc, &s);
2476 dev->flags &= ~AHC_DEV_TIMER_ACTIVE;
2477 if (dev->qfrozen > 0)
2478 dev->qfrozen--;
James Bottomley e4e360c2005-05-16 16:39:38 -05002479 if (dev->active == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 __ahc_linux_free_device(ahc, dev);
2481 ahc_unlock(ahc, &s);
2482}
2483
2484static int
2485ahc_linux_queue_recovery_cmd(Scsi_Cmnd *cmd, scb_flag flag)
2486{
2487 struct ahc_softc *ahc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 struct ahc_linux_device *dev;
2489 struct scb *pending_scb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 u_int saved_scbptr;
2491 u_int active_scb_index;
2492 u_int last_phase;
2493 u_int saved_scsiid;
2494 u_int cdb_byte;
2495 int retval;
2496 int was_paused;
2497 int paused;
2498 int wait;
2499 int disconnected;
2500
2501 pending_scb = NULL;
2502 paused = FALSE;
2503 wait = FALSE;
2504 ahc = *(struct ahc_softc **)cmd->device->host->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 printf("%s:%d:%d:%d: Attempting to queue a%s message\n",
2507 ahc_name(ahc), cmd->device->channel,
2508 cmd->device->id, cmd->device->lun,
2509 flag == SCB_ABORT ? "n ABORT" : " TARGET RESET");
2510
2511 printf("CDB:");
2512 for (cdb_byte = 0; cdb_byte < cmd->cmd_len; cdb_byte++)
2513 printf(" 0x%x", cmd->cmnd[cdb_byte]);
2514 printf("\n");
2515
2516 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 * First determine if we currently own this command.
2518 * Start by searching the device queue. If not found
2519 * there, check the pending_scb list. If not found
2520 * at all, and the system wanted us to just abort the
2521 * command, return success.
2522 */
2523 dev = ahc_linux_get_device(ahc, cmd->device->channel, cmd->device->id,
2524 cmd->device->lun, /*alloc*/FALSE);
2525
2526 if (dev == NULL) {
2527 /*
2528 * No target device for this command exists,
2529 * so we must not still own the command.
2530 */
2531 printf("%s:%d:%d:%d: Is not an active device\n",
2532 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2533 cmd->device->lun);
2534 retval = SUCCESS;
2535 goto no_cmd;
2536 }
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 if ((dev->flags & (AHC_DEV_Q_BASIC|AHC_DEV_Q_TAGGED)) == 0
2539 && ahc_search_untagged_queues(ahc, cmd, cmd->device->id,
2540 cmd->device->channel + 'A',
2541 cmd->device->lun,
2542 CAM_REQ_ABORTED, SEARCH_COMPLETE) != 0) {
2543 printf("%s:%d:%d:%d: Command found on untagged queue\n",
2544 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2545 cmd->device->lun);
2546 retval = SUCCESS;
2547 goto done;
2548 }
2549
2550 /*
2551 * See if we can find a matching cmd in the pending list.
2552 */
2553 LIST_FOREACH(pending_scb, &ahc->pending_scbs, pending_links) {
2554 if (pending_scb->io_ctx == cmd)
2555 break;
2556 }
2557
2558 if (pending_scb == NULL && flag == SCB_DEVICE_RESET) {
2559
2560 /* Any SCB for this device will do for a target reset */
2561 LIST_FOREACH(pending_scb, &ahc->pending_scbs, pending_links) {
2562 if (ahc_match_scb(ahc, pending_scb, cmd->device->id,
2563 cmd->device->channel + 'A',
2564 CAM_LUN_WILDCARD,
2565 SCB_LIST_NULL, ROLE_INITIATOR) == 0)
2566 break;
2567 }
2568 }
2569
2570 if (pending_scb == NULL) {
2571 printf("%s:%d:%d:%d: Command not found\n",
2572 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2573 cmd->device->lun);
2574 goto no_cmd;
2575 }
2576
2577 if ((pending_scb->flags & SCB_RECOVERY_SCB) != 0) {
2578 /*
2579 * We can't queue two recovery actions using the same SCB
2580 */
2581 retval = FAILED;
2582 goto done;
2583 }
2584
2585 /*
2586 * Ensure that the card doesn't do anything
2587 * behind our back and that we didn't "just" miss
2588 * an interrupt that would affect this cmd.
2589 */
2590 was_paused = ahc_is_paused(ahc);
2591 ahc_pause_and_flushwork(ahc);
2592 paused = TRUE;
2593
2594 if ((pending_scb->flags & SCB_ACTIVE) == 0) {
2595 printf("%s:%d:%d:%d: Command already completed\n",
2596 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2597 cmd->device->lun);
2598 goto no_cmd;
2599 }
2600
2601 printf("%s: At time of recovery, card was %spaused\n",
2602 ahc_name(ahc), was_paused ? "" : "not ");
2603 ahc_dump_card_state(ahc);
2604
2605 disconnected = TRUE;
2606 if (flag == SCB_ABORT) {
2607 if (ahc_search_qinfifo(ahc, cmd->device->id,
2608 cmd->device->channel + 'A',
2609 cmd->device->lun,
2610 pending_scb->hscb->tag,
2611 ROLE_INITIATOR, CAM_REQ_ABORTED,
2612 SEARCH_COMPLETE) > 0) {
2613 printf("%s:%d:%d:%d: Cmd aborted from QINFIFO\n",
2614 ahc_name(ahc), cmd->device->channel,
2615 cmd->device->id, cmd->device->lun);
2616 retval = SUCCESS;
2617 goto done;
2618 }
2619 } else if (ahc_search_qinfifo(ahc, cmd->device->id,
2620 cmd->device->channel + 'A',
2621 cmd->device->lun, pending_scb->hscb->tag,
2622 ROLE_INITIATOR, /*status*/0,
2623 SEARCH_COUNT) > 0) {
2624 disconnected = FALSE;
2625 }
2626
2627 if (disconnected && (ahc_inb(ahc, SEQ_FLAGS) & NOT_IDENTIFIED) == 0) {
2628 struct scb *bus_scb;
2629
2630 bus_scb = ahc_lookup_scb(ahc, ahc_inb(ahc, SCB_TAG));
2631 if (bus_scb == pending_scb)
2632 disconnected = FALSE;
2633 else if (flag != SCB_ABORT
2634 && ahc_inb(ahc, SAVED_SCSIID) == pending_scb->hscb->scsiid
2635 && ahc_inb(ahc, SAVED_LUN) == SCB_GET_LUN(pending_scb))
2636 disconnected = FALSE;
2637 }
2638
2639 /*
2640 * At this point, pending_scb is the scb associated with the
2641 * passed in command. That command is currently active on the
2642 * bus, is in the disconnected state, or we're hoping to find
2643 * a command for the same target active on the bus to abuse to
2644 * send a BDR. Queue the appropriate message based on which of
2645 * these states we are in.
2646 */
2647 last_phase = ahc_inb(ahc, LASTPHASE);
2648 saved_scbptr = ahc_inb(ahc, SCBPTR);
2649 active_scb_index = ahc_inb(ahc, SCB_TAG);
2650 saved_scsiid = ahc_inb(ahc, SAVED_SCSIID);
2651 if (last_phase != P_BUSFREE
2652 && (pending_scb->hscb->tag == active_scb_index
2653 || (flag == SCB_DEVICE_RESET
2654 && SCSIID_TARGET(ahc, saved_scsiid) == cmd->device->id))) {
2655
2656 /*
2657 * We're active on the bus, so assert ATN
2658 * and hope that the target responds.
2659 */
2660 pending_scb = ahc_lookup_scb(ahc, active_scb_index);
2661 pending_scb->flags |= SCB_RECOVERY_SCB|flag;
2662 ahc_outb(ahc, MSG_OUT, HOST_MSG);
2663 ahc_outb(ahc, SCSISIGO, last_phase|ATNO);
2664 printf("%s:%d:%d:%d: Device is active, asserting ATN\n",
2665 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2666 cmd->device->lun);
2667 wait = TRUE;
2668 } else if (disconnected) {
2669
2670 /*
2671 * Actually re-queue this SCB in an attempt
2672 * to select the device before it reconnects.
2673 * In either case (selection or reselection),
2674 * we will now issue the approprate message
2675 * to the timed-out device.
2676 *
2677 * Set the MK_MESSAGE control bit indicating
2678 * that we desire to send a message. We
2679 * also set the disconnected flag since
2680 * in the paging case there is no guarantee
2681 * that our SCB control byte matches the
2682 * version on the card. We don't want the
2683 * sequencer to abort the command thinking
2684 * an unsolicited reselection occurred.
2685 */
2686 pending_scb->hscb->control |= MK_MESSAGE|DISCONNECTED;
2687 pending_scb->flags |= SCB_RECOVERY_SCB|flag;
2688
2689 /*
2690 * Remove any cached copy of this SCB in the
2691 * disconnected list in preparation for the
2692 * queuing of our abort SCB. We use the
2693 * same element in the SCB, SCB_NEXT, for
2694 * both the qinfifo and the disconnected list.
2695 */
2696 ahc_search_disc_list(ahc, cmd->device->id,
2697 cmd->device->channel + 'A',
2698 cmd->device->lun, pending_scb->hscb->tag,
2699 /*stop_on_first*/TRUE,
2700 /*remove*/TRUE,
2701 /*save_state*/FALSE);
2702
2703 /*
2704 * In the non-paging case, the sequencer will
2705 * never re-reference the in-core SCB.
2706 * To make sure we are notified during
2707 * reslection, set the MK_MESSAGE flag in
2708 * the card's copy of the SCB.
2709 */
2710 if ((ahc->flags & AHC_PAGESCBS) == 0) {
2711 ahc_outb(ahc, SCBPTR, pending_scb->hscb->tag);
2712 ahc_outb(ahc, SCB_CONTROL,
2713 ahc_inb(ahc, SCB_CONTROL)|MK_MESSAGE);
2714 }
2715
2716 /*
2717 * Clear out any entries in the QINFIFO first
2718 * so we are the next SCB for this target
2719 * to run.
2720 */
2721 ahc_search_qinfifo(ahc, cmd->device->id,
2722 cmd->device->channel + 'A',
2723 cmd->device->lun, SCB_LIST_NULL,
2724 ROLE_INITIATOR, CAM_REQUEUE_REQ,
2725 SEARCH_COMPLETE);
2726 ahc_qinfifo_requeue_tail(ahc, pending_scb);
2727 ahc_outb(ahc, SCBPTR, saved_scbptr);
2728 ahc_print_path(ahc, pending_scb);
2729 printf("Device is disconnected, re-queuing SCB\n");
2730 wait = TRUE;
2731 } else {
2732 printf("%s:%d:%d:%d: Unable to deliver message\n",
2733 ahc_name(ahc), cmd->device->channel, cmd->device->id,
2734 cmd->device->lun);
2735 retval = FAILED;
2736 goto done;
2737 }
2738
2739no_cmd:
2740 /*
2741 * Our assumption is that if we don't have the command, no
2742 * recovery action was required, so we return success. Again,
2743 * the semantics of the mid-layer recovery engine are not
2744 * well defined, so this may change in time.
2745 */
2746 retval = SUCCESS;
2747done:
2748 if (paused)
2749 ahc_unpause(ahc);
2750 if (wait) {
2751 struct timer_list timer;
2752 int ret;
2753
2754 ahc->platform_data->flags |= AHC_UP_EH_SEMAPHORE;
2755 spin_unlock_irq(&ahc->platform_data->spin_lock);
2756 init_timer(&timer);
2757 timer.data = (u_long)ahc;
2758 timer.expires = jiffies + (5 * HZ);
2759 timer.function = ahc_linux_sem_timeout;
2760 add_timer(&timer);
2761 printf("Recovery code sleeping\n");
2762 down(&ahc->platform_data->eh_sem);
2763 printf("Recovery code awake\n");
2764 ret = del_timer_sync(&timer);
2765 if (ret == 0) {
2766 printf("Timer Expired\n");
2767 retval = FAILED;
2768 }
2769 spin_lock_irq(&ahc->platform_data->spin_lock);
2770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 ahc_linux_run_complete_queue(ahc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 return (retval);
2773}
2774
2775void
2776ahc_platform_dump_card_state(struct ahc_softc *ahc)
2777{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778}
2779
2780static void ahc_linux_exit(void);
2781
James Bottomley fad01ef2005-05-08 16:00:15 -05002782static void ahc_linux_get_width(struct scsi_target *starget)
2783{
2784 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2785 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2786 struct ahc_tmode_tstate *tstate;
2787 struct ahc_initiator_tinfo *tinfo
2788 = ahc_fetch_transinfo(ahc,
2789 starget->channel + 'A',
2790 shost->this_id, starget->id, &tstate);
2791 spi_width(starget) = tinfo->curr.width;
2792}
2793
2794static void ahc_linux_set_width(struct scsi_target *starget, int width)
2795{
2796 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2797 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2798 struct ahc_devinfo devinfo;
2799 unsigned long flags;
2800
2801 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2802 starget->channel + 'A', ROLE_INITIATOR);
2803 ahc_lock(ahc, &flags);
2804 ahc_set_width(ahc, &devinfo, width, AHC_TRANS_GOAL, FALSE);
2805 ahc_unlock(ahc, &flags);
2806}
2807
92d161c2005-04-17 16:59:33 -05002808static void ahc_linux_get_period(struct scsi_target *starget)
2809{
2810 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2811 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2812 struct ahc_tmode_tstate *tstate;
2813 struct ahc_initiator_tinfo *tinfo
2814 = ahc_fetch_transinfo(ahc,
2815 starget->channel + 'A',
2816 shost->this_id, starget->id, &tstate);
2817 spi_period(starget) = tinfo->curr.period;
2818}
2819
2820static void ahc_linux_set_period(struct scsi_target *starget, int period)
2821{
2822 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2823 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2824 struct ahc_tmode_tstate *tstate;
2825 struct ahc_initiator_tinfo *tinfo
2826 = ahc_fetch_transinfo(ahc,
2827 starget->channel + 'A',
2828 shost->this_id, starget->id, &tstate);
2829 struct ahc_devinfo devinfo;
2830 unsigned int ppr_options = tinfo->curr.ppr_options;
2831 unsigned long flags;
2832 unsigned long offset = tinfo->curr.offset;
2833 struct ahc_syncrate *syncrate;
2834
2835 if (offset == 0)
2836 offset = MAX_OFFSET;
2837
2838 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2839 starget->channel + 'A', ROLE_INITIATOR);
James Bottomley fad01ef2005-05-08 16:00:15 -05002840
2841 /* all PPR requests apart from QAS require wide transfers */
2842 if (ppr_options & ~MSG_EXT_PPR_QAS_REQ) {
2843 ahc_linux_get_width(starget);
2844 if (spi_width(starget) == 0)
2845 ppr_options &= MSG_EXT_PPR_QAS_REQ;
2846 }
2847
92d161c2005-04-17 16:59:33 -05002848 syncrate = ahc_find_syncrate(ahc, &period, &ppr_options, AHC_SYNCRATE_DT);
2849 ahc_lock(ahc, &flags);
2850 ahc_set_syncrate(ahc, &devinfo, syncrate, period, offset,
2851 ppr_options, AHC_TRANS_GOAL, FALSE);
2852 ahc_unlock(ahc, &flags);
2853}
2854
2855static void ahc_linux_get_offset(struct scsi_target *starget)
2856{
2857 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2858 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2859 struct ahc_tmode_tstate *tstate;
2860 struct ahc_initiator_tinfo *tinfo
2861 = ahc_fetch_transinfo(ahc,
2862 starget->channel + 'A',
2863 shost->this_id, starget->id, &tstate);
2864 spi_offset(starget) = tinfo->curr.offset;
2865}
2866
2867static void ahc_linux_set_offset(struct scsi_target *starget, int offset)
2868{
2869 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2870 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2871 struct ahc_tmode_tstate *tstate;
2872 struct ahc_initiator_tinfo *tinfo
2873 = ahc_fetch_transinfo(ahc,
2874 starget->channel + 'A',
2875 shost->this_id, starget->id, &tstate);
2876 struct ahc_devinfo devinfo;
2877 unsigned int ppr_options = 0;
2878 unsigned int period = 0;
2879 unsigned long flags;
2880 struct ahc_syncrate *syncrate = NULL;
2881
2882 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2883 starget->channel + 'A', ROLE_INITIATOR);
2884 if (offset != 0) {
2885 syncrate = ahc_find_syncrate(ahc, &period, &ppr_options, AHC_SYNCRATE_DT);
2886 period = tinfo->curr.period;
2887 ppr_options = tinfo->curr.ppr_options;
2888 }
2889 ahc_lock(ahc, &flags);
2890 ahc_set_syncrate(ahc, &devinfo, syncrate, period, offset,
2891 ppr_options, AHC_TRANS_GOAL, FALSE);
2892 ahc_unlock(ahc, &flags);
2893}
2894
92d161c2005-04-17 16:59:33 -05002895static void ahc_linux_get_dt(struct scsi_target *starget)
2896{
2897 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2898 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2899 struct ahc_tmode_tstate *tstate;
2900 struct ahc_initiator_tinfo *tinfo
2901 = ahc_fetch_transinfo(ahc,
2902 starget->channel + 'A',
2903 shost->this_id, starget->id, &tstate);
2904 spi_dt(starget) = tinfo->curr.ppr_options & MSG_EXT_PPR_DT_REQ;
2905}
2906
2907static void ahc_linux_set_dt(struct scsi_target *starget, int dt)
2908{
2909 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2910 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2911 struct ahc_tmode_tstate *tstate;
2912 struct ahc_initiator_tinfo *tinfo
2913 = ahc_fetch_transinfo(ahc,
2914 starget->channel + 'A',
2915 shost->this_id, starget->id, &tstate);
2916 struct ahc_devinfo devinfo;
2917 unsigned int ppr_options = tinfo->curr.ppr_options
2918 & ~MSG_EXT_PPR_DT_REQ;
2919 unsigned int period = tinfo->curr.period;
2920 unsigned long flags;
2921 struct ahc_syncrate *syncrate;
2922
2923 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2924 starget->channel + 'A', ROLE_INITIATOR);
James Bottomley fad01ef2005-05-08 16:00:15 -05002925 syncrate = ahc_find_syncrate(ahc, &period, &ppr_options,AHC_SYNCRATE_DT);
92d161c2005-04-17 16:59:33 -05002926 ahc_lock(ahc, &flags);
2927 ahc_set_syncrate(ahc, &devinfo, syncrate, period, tinfo->curr.offset,
2928 ppr_options, AHC_TRANS_GOAL, FALSE);
2929 ahc_unlock(ahc, &flags);
2930}
2931
2932static void ahc_linux_get_qas(struct scsi_target *starget)
2933{
2934 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2935 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2936 struct ahc_tmode_tstate *tstate;
2937 struct ahc_initiator_tinfo *tinfo
2938 = ahc_fetch_transinfo(ahc,
2939 starget->channel + 'A',
2940 shost->this_id, starget->id, &tstate);
2941 spi_dt(starget) = tinfo->curr.ppr_options & MSG_EXT_PPR_QAS_REQ;
2942}
2943
2944static void ahc_linux_set_qas(struct scsi_target *starget, int qas)
2945{
2946 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2947 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2948 struct ahc_tmode_tstate *tstate;
2949 struct ahc_initiator_tinfo *tinfo
2950 = ahc_fetch_transinfo(ahc,
2951 starget->channel + 'A',
2952 shost->this_id, starget->id, &tstate);
2953 struct ahc_devinfo devinfo;
2954 unsigned int ppr_options = tinfo->curr.ppr_options
2955 & ~MSG_EXT_PPR_QAS_REQ;
2956 unsigned int period = tinfo->curr.period;
92d161c2005-04-17 16:59:33 -05002957 unsigned long flags;
2958 struct ahc_syncrate *syncrate;
2959
2960 if (qas)
2961 ppr_options |= MSG_EXT_PPR_QAS_REQ;
2962
2963 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
2964 starget->channel + 'A', ROLE_INITIATOR);
James Bottomley fad01ef2005-05-08 16:00:15 -05002965 syncrate = ahc_find_syncrate(ahc, &period, &ppr_options, AHC_SYNCRATE_DT);
92d161c2005-04-17 16:59:33 -05002966 ahc_lock(ahc, &flags);
2967 ahc_set_syncrate(ahc, &devinfo, syncrate, period, tinfo->curr.offset,
2968 ppr_options, AHC_TRANS_GOAL, FALSE);
2969 ahc_unlock(ahc, &flags);
2970}
2971
2972static void ahc_linux_get_iu(struct scsi_target *starget)
2973{
2974 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2975 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2976 struct ahc_tmode_tstate *tstate;
2977 struct ahc_initiator_tinfo *tinfo
2978 = ahc_fetch_transinfo(ahc,
2979 starget->channel + 'A',
2980 shost->this_id, starget->id, &tstate);
2981 spi_dt(starget) = tinfo->curr.ppr_options & MSG_EXT_PPR_IU_REQ;
2982}
2983
2984static void ahc_linux_set_iu(struct scsi_target *starget, int iu)
2985{
2986 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
2987 struct ahc_softc *ahc = *((struct ahc_softc **)shost->hostdata);
2988 struct ahc_tmode_tstate *tstate;
2989 struct ahc_initiator_tinfo *tinfo
2990 = ahc_fetch_transinfo(ahc,
2991 starget->channel + 'A',
2992 shost->this_id, starget->id, &tstate);
2993 struct ahc_devinfo devinfo;
2994 unsigned int ppr_options = tinfo->curr.ppr_options
2995 & ~MSG_EXT_PPR_IU_REQ;
2996 unsigned int period = tinfo->curr.period;
92d161c2005-04-17 16:59:33 -05002997 unsigned long flags;
2998 struct ahc_syncrate *syncrate;
2999
3000 if (iu)
3001 ppr_options |= MSG_EXT_PPR_IU_REQ;
3002
3003 ahc_compile_devinfo(&devinfo, shost->this_id, starget->id, 0,
3004 starget->channel + 'A', ROLE_INITIATOR);
James Bottomley fad01ef2005-05-08 16:00:15 -05003005 syncrate = ahc_find_syncrate(ahc, &period, &ppr_options, AHC_SYNCRATE_DT);
92d161c2005-04-17 16:59:33 -05003006 ahc_lock(ahc, &flags);
3007 ahc_set_syncrate(ahc, &devinfo, syncrate, period, tinfo->curr.offset,
3008 ppr_options, AHC_TRANS_GOAL, FALSE);
3009 ahc_unlock(ahc, &flags);
3010}
3011
3012static struct spi_function_template ahc_linux_transport_functions = {
3013 .get_offset = ahc_linux_get_offset,
3014 .set_offset = ahc_linux_set_offset,
3015 .show_offset = 1,
3016 .get_period = ahc_linux_get_period,
3017 .set_period = ahc_linux_set_period,
3018 .show_period = 1,
3019 .get_width = ahc_linux_get_width,
3020 .set_width = ahc_linux_set_width,
3021 .show_width = 1,
3022 .get_dt = ahc_linux_get_dt,
3023 .set_dt = ahc_linux_set_dt,
3024 .show_dt = 1,
3025 .get_iu = ahc_linux_get_iu,
3026 .set_iu = ahc_linux_set_iu,
3027 .show_iu = 1,
3028 .get_qas = ahc_linux_get_qas,
3029 .set_qas = ahc_linux_set_qas,
3030 .show_qas = 1,
3031};
3032
3033
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035static int __init
3036ahc_linux_init(void)
3037{
92d161c2005-04-17 16:59:33 -05003038 ahc_linux_transport_template = spi_attach_transport(&ahc_linux_transport_functions);
3039 if (!ahc_linux_transport_template)
3040 return -ENODEV;
James Bottomley858eaca162005-04-21 07:35:45 -07003041 if (ahc_linux_detect(&aic7xxx_driver_template))
3042 return 0;
92d161c2005-04-17 16:59:33 -05003043 spi_release_transport(ahc_linux_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 ahc_linux_exit();
3045 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046}
3047
3048static void
3049ahc_linux_exit(void)
3050{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 ahc_linux_pci_exit();
3052 ahc_linux_eisa_exit();
92d161c2005-04-17 16:59:33 -05003053 spi_release_transport(ahc_linux_transport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054}
3055
3056module_init(ahc_linux_init);
3057module_exit(ahc_linux_exit);