2 * Adaptec AIC7xxx device driver for Linux.
4 * Copyright (c) 1994 John Aycock
5 * The University of Calgary Department of Computer Science.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, write to
19 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21 * Copyright (c) 2000-2003 Adaptec Inc.
22 * All rights reserved.
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
27 * 1. Redistributions of source code must retain the above copyright
28 * notice, this list of conditions, and the following disclaimer,
29 * without modification.
30 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
31 * substantially similar to the "NO WARRANTY" disclaimer below
32 * ("Disclaimer") and any redistribution must be conditioned upon
33 * including a substantially similar Disclaimer requirement for further
34 * binary redistribution.
35 * 3. Neither the names of the above-listed copyright holders nor the names
36 * of any contributors may be used to endorse or promote products derived
37 * from this software without specific prior written permission.
39 * Alternatively, this software may be distributed under the terms of the
40 * GNU General Public License ("GPL") version 2 as published by the Free
41 * Software Foundation.
44 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
45 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
46 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
47 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
48 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
52 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
53 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
54 * POSSIBILITY OF SUCH DAMAGES.
56 * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7xxx_osm.h#151 $
59 #ifndef _AIC7XXX_LINUX_H_
60 #define _AIC7XXX_LINUX_H_
62 #include <linux/config.h>
63 #include <linux/types.h>
64 #include <linux/blkdev.h>
65 #include <linux/delay.h>
66 #include <linux/ioport.h>
67 #include <linux/pci.h>
68 #include <linux/smp_lock.h>
69 #include <linux/version.h>
70 #include <linux/interrupt.h>
71 #include <linux/module.h>
72 #include <linux/slab.h>
73 #include <asm/byteorder.h>
76 #include <scsi/scsi.h>
77 #include <scsi/scsi_cmnd.h>
78 #include <scsi/scsi_eh.h>
79 #include <scsi/scsi_device.h>
80 #include <scsi/scsi_host.h>
81 #include <scsi/scsi_tcq.h>
83 /* Core SCSI definitions */
84 #define AIC_LIB_PREFIX ahc
86 /* Name space conflict with BSD queue macros */
93 #include "scsi_message.h"
96 /*********************************** Debugging ********************************/
97 #ifdef CONFIG_AIC7XXX_DEBUG_ENABLE
98 #ifdef CONFIG_AIC7XXX_DEBUG_MASK
100 #define AHC_DEBUG_OPTS CONFIG_AIC7XXX_DEBUG_MASK
103 * Compile in debugging code, but do not enable any printfs.
107 /* No debugging code. */
110 /************************* Forward Declarations *******************************/
112 typedef struct pci_dev *ahc_dev_softc_t;
113 typedef struct scsi_cmnd *ahc_io_ctx_t;
115 /******************************* Byte Order ***********************************/
116 #define ahc_htobe16(x) cpu_to_be16(x)
117 #define ahc_htobe32(x) cpu_to_be32(x)
118 #define ahc_htobe64(x) cpu_to_be64(x)
119 #define ahc_htole16(x) cpu_to_le16(x)
120 #define ahc_htole32(x) cpu_to_le32(x)
121 #define ahc_htole64(x) cpu_to_le64(x)
123 #define ahc_be16toh(x) be16_to_cpu(x)
124 #define ahc_be32toh(x) be32_to_cpu(x)
125 #define ahc_be64toh(x) be64_to_cpu(x)
126 #define ahc_le16toh(x) le16_to_cpu(x)
127 #define ahc_le32toh(x) le32_to_cpu(x)
128 #define ahc_le64toh(x) le64_to_cpu(x)
130 #ifndef LITTLE_ENDIAN
131 #define LITTLE_ENDIAN 1234
135 #define BIG_ENDIAN 4321
139 #if defined(__BIG_ENDIAN)
140 #define BYTE_ORDER BIG_ENDIAN
142 #if defined(__LITTLE_ENDIAN)
143 #define BYTE_ORDER LITTLE_ENDIAN
145 #endif /* BYTE_ORDER */
147 /************************* Configuration Data *********************************/
148 extern u_int aic7xxx_no_probe;
149 extern u_int aic7xxx_allow_memio;
150 extern int aic7xxx_detect_complete;
151 extern struct scsi_host_template aic7xxx_driver_template;
153 /***************************** Bus Space/DMA **********************************/
155 typedef uint32_t bus_size_t;
164 volatile uint8_t __iomem *maddr;
165 } bus_space_handle_t;
167 typedef struct bus_dma_segment
173 struct ahc_linux_dma_tag
175 bus_size_t alignment;
179 typedef struct ahc_linux_dma_tag* bus_dma_tag_t;
181 typedef dma_addr_t bus_dmamap_t;
183 typedef int bus_dma_filter_t(void*, dma_addr_t);
184 typedef void bus_dmamap_callback_t(void *, bus_dma_segment_t *, int, int);
186 #define BUS_DMA_WAITOK 0x0
187 #define BUS_DMA_NOWAIT 0x1
188 #define BUS_DMA_ALLOCNOW 0x2
189 #define BUS_DMA_LOAD_SEGS 0x4 /*
190 * Argument is an S/G list not
194 #define BUS_SPACE_MAXADDR 0xFFFFFFFF
195 #define BUS_SPACE_MAXADDR_32BIT 0xFFFFFFFF
196 #define BUS_SPACE_MAXSIZE_32BIT 0xFFFFFFFF
198 int ahc_dma_tag_create(struct ahc_softc *, bus_dma_tag_t /*parent*/,
199 bus_size_t /*alignment*/, bus_size_t /*boundary*/,
200 dma_addr_t /*lowaddr*/, dma_addr_t /*highaddr*/,
201 bus_dma_filter_t*/*filter*/, void */*filterarg*/,
202 bus_size_t /*maxsize*/, int /*nsegments*/,
203 bus_size_t /*maxsegsz*/, int /*flags*/,
204 bus_dma_tag_t */*dma_tagp*/);
206 void ahc_dma_tag_destroy(struct ahc_softc *, bus_dma_tag_t /*tag*/);
208 int ahc_dmamem_alloc(struct ahc_softc *, bus_dma_tag_t /*dmat*/,
209 void** /*vaddr*/, int /*flags*/,
210 bus_dmamap_t* /*mapp*/);
212 void ahc_dmamem_free(struct ahc_softc *, bus_dma_tag_t /*dmat*/,
213 void* /*vaddr*/, bus_dmamap_t /*map*/);
215 void ahc_dmamap_destroy(struct ahc_softc *, bus_dma_tag_t /*tag*/,
216 bus_dmamap_t /*map*/);
218 int ahc_dmamap_load(struct ahc_softc *ahc, bus_dma_tag_t /*dmat*/,
219 bus_dmamap_t /*map*/, void * /*buf*/,
220 bus_size_t /*buflen*/, bus_dmamap_callback_t *,
221 void */*callback_arg*/, int /*flags*/);
223 int ahc_dmamap_unload(struct ahc_softc *, bus_dma_tag_t, bus_dmamap_t);
226 * Operations performed by ahc_dmamap_sync().
228 #define BUS_DMASYNC_PREREAD 0x01 /* pre-read synchronization */
229 #define BUS_DMASYNC_POSTREAD 0x02 /* post-read synchronization */
230 #define BUS_DMASYNC_PREWRITE 0x04 /* pre-write synchronization */
231 #define BUS_DMASYNC_POSTWRITE 0x08 /* post-write synchronization */
235 * ahc_dmamap_sync is only used on buffers allocated with
236 * the pci_alloc_consistent() API. Although I'm not sure how
237 * this works on architectures with a write buffer, Linux does
238 * not have an API to sync "coherent" memory. Perhaps we need
241 #define ahc_dmamap_sync(ahc, dma_tag, dmamap, offset, len, op)
243 /************************** Timer DataStructures ******************************/
244 typedef struct timer_list ahc_timer_t;
246 /********************************** Includes **********************************/
247 #ifdef CONFIG_AIC7XXX_REG_PRETTY_PRINT
248 #define AIC_DEBUG_REGISTERS 1
250 #define AIC_DEBUG_REGISTERS 0
254 /***************************** Timer Facilities *******************************/
255 #define ahc_timer_init init_timer
256 #define ahc_timer_stop del_timer_sync
257 typedef void ahc_linux_callback_t (u_long);
258 static __inline void ahc_timer_reset(ahc_timer_t *timer, int usec,
259 ahc_callback_t *func, void *arg);
260 static __inline void ahc_scb_timer_reset(struct scb *scb, u_int usec);
263 ahc_timer_reset(ahc_timer_t *timer, int usec, ahc_callback_t *func, void *arg)
265 struct ahc_softc *ahc;
267 ahc = (struct ahc_softc *)arg;
269 timer->data = (u_long)arg;
270 timer->expires = jiffies + (usec * HZ)/1000000;
271 timer->function = (ahc_linux_callback_t*)func;
276 ahc_scb_timer_reset(struct scb *scb, u_int usec)
278 mod_timer(&scb->io_ctx->eh_timeout, jiffies + (usec * HZ)/1000000);
281 /***************************** SMP support ************************************/
282 #include <linux/spinlock.h>
284 #define AIC7XXX_DRIVER_VERSION "6.2.36"
286 /**************************** Front End Queues ********************************/
288 * Data structure used to cast the Linux struct scsi_cmnd to something
289 * that allows us to use the queue macros. The linux structure has
290 * plenty of space to hold the links fields as required by the queue
291 * macros, but the queue macors require them to have the correct type.
293 struct ahc_cmd_internal {
294 /* Area owned by the Linux scsi layer. */
295 uint8_t private[offsetof(struct scsi_cmnd, SCp.Status)];
297 STAILQ_ENTRY(ahc_cmd) ste;
298 LIST_ENTRY(ahc_cmd) le;
299 TAILQ_ENTRY(ahc_cmd) tqe;
306 struct ahc_cmd_internal icmd;
307 struct scsi_cmnd scsi_cmd;
311 #define acmd_icmd(cmd) ((cmd)->un.icmd)
312 #define acmd_scsi_cmd(cmd) ((cmd)->un.scsi_cmd)
313 #define acmd_links un.icmd.links
315 /*************************** Device Data Structures ***************************/
317 * A per probed device structure used to deal with some error recovery
318 * scenarios that the Linux mid-layer code just doesn't know how to
319 * handle. The structure allocated for a device only becomes persistent
320 * after a successfully completed inquiry command to the target when
321 * that inquiry data indicates a lun is present.
323 TAILQ_HEAD(ahc_busyq, ahc_cmd);
325 AHC_DEV_UNCONFIGURED = 0x01,
326 AHC_DEV_FREEZE_TIL_EMPTY = 0x02, /* Freeze queue until active == 0 */
327 AHC_DEV_TIMER_ACTIVE = 0x04, /* Our timer is active */
328 AHC_DEV_Q_BASIC = 0x10, /* Allow basic device queuing */
329 AHC_DEV_Q_TAGGED = 0x20, /* Allow full SCSI2 command queueing */
330 AHC_DEV_PERIODIC_OTAG = 0x40, /* Send OTAG to prevent starvation */
331 AHC_DEV_SLAVE_CONFIGURED = 0x80 /* slave_configure() has been called */
332 } ahc_linux_dev_flags;
334 struct ahc_linux_target;
335 struct ahc_linux_device {
336 TAILQ_ENTRY(ahc_linux_device) links;
339 * The number of transactions currently
340 * queued to the device.
345 * The currently allowed number of
346 * transactions that can be queued to
347 * the device. Must be signed for
348 * conversion from tagged to untagged
349 * mode where the device may have more
350 * than one outstanding active transaction.
355 * A positive count indicates that this
356 * device's queue is halted.
361 * Cumulative command counter.
363 u_long commands_issued;
366 * The number of tagged transactions when
367 * running at our current opening level
368 * that have been successfully received by
369 * this device since the last QUEUE FULL.
371 u_int tag_success_count;
372 #define AHC_TAG_SUCCESS_INTERVAL 50
374 ahc_linux_dev_flags flags;
379 struct timer_list timer;
382 * The high limit for the tags variable.
387 * The computed number of tags outstanding
388 * at the time of the last QUEUE FULL event.
390 u_int tags_on_last_queuefull;
393 * How many times we have seen a queue full
394 * with the same number of tags. This is used
395 * to stop our adaptive queue depth algorithm
396 * on devices with a fixed number of tags.
398 u_int last_queuefull_same_count;
399 #define AHC_LOCK_TAGS_COUNT 50
402 * How many transactions have been queued
403 * without the device going idle. We use
404 * this statistic to determine when to issue
405 * an ordered tag to prevent transaction
406 * starvation. This statistic is only updated
407 * if the AHC_DEV_PERIODIC_OTAG flag is set
410 u_int commands_since_idle_or_otag;
411 #define AHC_OTAG_THRESH 500
414 struct scsi_device *scsi_device;
415 struct ahc_linux_target *target;
418 struct ahc_linux_target {
419 struct ahc_linux_device *devices[AHC_NUM_LUNS];
423 struct ahc_transinfo last_tinfo;
424 struct ahc_softc *ahc;
427 /********************* Definitions Required by the Core ***********************/
429 * Number of SG segments we require. So long as the S/G segments for
430 * a particular transaction are allocated in a physically contiguous
431 * manner and are allocated below 4GB, the number of S/G segments is
437 * Per-SCB OSM storage.
439 struct scb_platform_data {
440 struct ahc_linux_device *dev;
441 dma_addr_t buf_busaddr;
443 uint32_t sense_resid; /* Auto-Sense residual */
447 * Define a structure used for each host adapter. All members are
448 * aligned on a boundary >= the size of the member to honor the
449 * alignment restrictions of the various platforms supported by
452 struct ahc_platform_data {
454 * Fields accessed from interrupt context.
456 struct ahc_linux_target *targets[AHC_NUM_TARGETS];
458 spinlock_t spin_lock;
460 struct timer_list reset_timer;
461 struct semaphore eh_sem;
462 struct Scsi_Host *host; /* pointer to scsi host */
463 #define AHC_LINUX_NOIRQ ((uint32_t)~0)
464 uint32_t irq; /* IRQ for this adapter */
465 uint32_t bios_address;
466 uint32_t mem_busaddr; /* Mem Base Addr */
468 #define AHC_UP_EH_SEMAPHORE 0x1
472 /************************** OS Utility Wrappers *******************************/
473 #define printf printk
474 #define M_NOWAIT GFP_ATOMIC
476 #define malloc(size, type, flags) kmalloc(size, flags)
477 #define free(ptr, type) kfree(ptr)
479 static __inline void ahc_delay(long);
484 * udelay on Linux can have problems for
485 * multi-millisecond waits. Wait at most
495 /***************************** Low Level I/O **********************************/
496 static __inline uint8_t ahc_inb(struct ahc_softc * ahc, long port);
497 static __inline void ahc_outb(struct ahc_softc * ahc, long port, uint8_t val);
498 static __inline void ahc_outsb(struct ahc_softc * ahc, long port,
499 uint8_t *, int count);
500 static __inline void ahc_insb(struct ahc_softc * ahc, long port,
501 uint8_t *, int count);
503 static __inline uint8_t
504 ahc_inb(struct ahc_softc * ahc, long port)
508 if (ahc->tag == BUS_SPACE_MEMIO) {
509 x = readb(ahc->bsh.maddr + port);
511 x = inb(ahc->bsh.ioport + port);
518 ahc_outb(struct ahc_softc * ahc, long port, uint8_t val)
520 if (ahc->tag == BUS_SPACE_MEMIO) {
521 writeb(val, ahc->bsh.maddr + port);
523 outb(val, ahc->bsh.ioport + port);
529 ahc_outsb(struct ahc_softc * ahc, long port, uint8_t *array, int count)
534 * There is probably a more efficient way to do this on Linux
535 * but we don't use this for anything speed critical and this
538 for (i = 0; i < count; i++)
539 ahc_outb(ahc, port, *array++);
543 ahc_insb(struct ahc_softc * ahc, long port, uint8_t *array, int count)
548 * There is probably a more efficient way to do this on Linux
549 * but we don't use this for anything speed critical and this
552 for (i = 0; i < count; i++)
553 *array++ = ahc_inb(ahc, port);
556 /**************************** Initialization **********************************/
557 int ahc_linux_register_host(struct ahc_softc *,
558 struct scsi_host_template *);
560 uint64_t ahc_linux_get_memsize(void);
562 /*************************** Pretty Printing **********************************/
570 void ahc_format_transinfo(struct info_str *info,
571 struct ahc_transinfo *tinfo);
573 /******************************** Locking *************************************/
574 /* Lock protecting internal data structures */
575 static __inline void ahc_lockinit(struct ahc_softc *);
576 static __inline void ahc_lock(struct ahc_softc *, unsigned long *flags);
577 static __inline void ahc_unlock(struct ahc_softc *, unsigned long *flags);
579 /* Lock held during ahc_list manipulation and ahc softc frees */
580 extern spinlock_t ahc_list_spinlock;
581 static __inline void ahc_list_lockinit(void);
582 static __inline void ahc_list_lock(unsigned long *flags);
583 static __inline void ahc_list_unlock(unsigned long *flags);
586 ahc_lockinit(struct ahc_softc *ahc)
588 spin_lock_init(&ahc->platform_data->spin_lock);
592 ahc_lock(struct ahc_softc *ahc, unsigned long *flags)
594 spin_lock_irqsave(&ahc->platform_data->spin_lock, *flags);
598 ahc_unlock(struct ahc_softc *ahc, unsigned long *flags)
600 spin_unlock_irqrestore(&ahc->platform_data->spin_lock, *flags);
604 ahc_list_lockinit(void)
606 spin_lock_init(&ahc_list_spinlock);
610 ahc_list_lock(unsigned long *flags)
612 spin_lock_irqsave(&ahc_list_spinlock, *flags);
616 ahc_list_unlock(unsigned long *flags)
618 spin_unlock_irqrestore(&ahc_list_spinlock, *flags);
621 /******************************* PCI Definitions ******************************/
623 * PCIM_xxx: mask to locate subfield in register
624 * PCIR_xxx: config register offset
625 * PCIC_xxx: device class
626 * PCIS_xxx: device subclass
627 * PCIP_xxx: device programming interface
628 * PCIV_xxx: PCI vendor ID (only required to fixup ancient devices)
629 * PCID_xxx: device ID
631 #define PCIR_DEVVENDOR 0x00
632 #define PCIR_VENDOR 0x00
633 #define PCIR_DEVICE 0x02
634 #define PCIR_COMMAND 0x04
635 #define PCIM_CMD_PORTEN 0x0001
636 #define PCIM_CMD_MEMEN 0x0002
637 #define PCIM_CMD_BUSMASTEREN 0x0004
638 #define PCIM_CMD_MWRICEN 0x0010
639 #define PCIM_CMD_PERRESPEN 0x0040
640 #define PCIM_CMD_SERRESPEN 0x0100
641 #define PCIR_STATUS 0x06
642 #define PCIR_REVID 0x08
643 #define PCIR_PROGIF 0x09
644 #define PCIR_SUBCLASS 0x0a
645 #define PCIR_CLASS 0x0b
646 #define PCIR_CACHELNSZ 0x0c
647 #define PCIR_LATTIMER 0x0d
648 #define PCIR_HEADERTYPE 0x0e
649 #define PCIM_MFDEV 0x80
650 #define PCIR_BIST 0x0f
651 #define PCIR_CAP_PTR 0x34
653 /* config registers for header type 0 devices */
654 #define PCIR_MAPS 0x10
655 #define PCIR_SUBVEND_0 0x2c
656 #define PCIR_SUBDEV_0 0x2e
658 extern struct pci_driver aic7xxx_pci_driver;
668 /**************************** VL/EISA Routines ********************************/
670 extern uint32_t aic7xxx_probe_eisa_vl;
671 int ahc_linux_eisa_init(void);
672 void ahc_linux_eisa_exit(void);
673 int aic7770_map_registers(struct ahc_softc *ahc,
675 int aic7770_map_int(struct ahc_softc *ahc, u_int irq);
677 static inline int ahc_linux_eisa_init(void) {
680 static inline void ahc_linux_eisa_exit(void) {
684 /******************************* PCI Routines *********************************/
686 int ahc_linux_pci_init(void);
687 void ahc_linux_pci_exit(void);
688 int ahc_pci_map_registers(struct ahc_softc *ahc);
689 int ahc_pci_map_int(struct ahc_softc *ahc);
691 static __inline uint32_t ahc_pci_read_config(ahc_dev_softc_t pci,
694 static __inline uint32_t
695 ahc_pci_read_config(ahc_dev_softc_t pci, int reg, int width)
702 pci_read_config_byte(pci, reg, &retval);
708 pci_read_config_word(pci, reg, &retval);
714 pci_read_config_dword(pci, reg, &retval);
718 panic("ahc_pci_read_config: Read size too big");
724 static __inline void ahc_pci_write_config(ahc_dev_softc_t pci,
725 int reg, uint32_t value,
729 ahc_pci_write_config(ahc_dev_softc_t pci, int reg, uint32_t value, int width)
733 pci_write_config_byte(pci, reg, value);
736 pci_write_config_word(pci, reg, value);
739 pci_write_config_dword(pci, reg, value);
742 panic("ahc_pci_write_config: Write size too big");
747 static __inline int ahc_get_pci_function(ahc_dev_softc_t);
749 ahc_get_pci_function(ahc_dev_softc_t pci)
751 return (PCI_FUNC(pci->devfn));
754 static __inline int ahc_get_pci_slot(ahc_dev_softc_t);
756 ahc_get_pci_slot(ahc_dev_softc_t pci)
758 return (PCI_SLOT(pci->devfn));
761 static __inline int ahc_get_pci_bus(ahc_dev_softc_t);
763 ahc_get_pci_bus(ahc_dev_softc_t pci)
765 return (pci->bus->number);
768 static inline int ahc_linux_pci_init(void) {
771 static inline void ahc_linux_pci_exit(void) {
775 static __inline void ahc_flush_device_writes(struct ahc_softc *);
777 ahc_flush_device_writes(struct ahc_softc *ahc)
779 /* XXX Is this sufficient for all architectures??? */
780 ahc_inb(ahc, INTSTAT);
783 /**************************** Proc FS Support *********************************/
784 int ahc_linux_proc_info(struct Scsi_Host *, char *, char **,
787 /*************************** Domain Validation ********************************/
788 /*********************** Transaction Access Wrappers *************************/
789 static __inline void ahc_cmd_set_transaction_status(struct scsi_cmnd *, uint32_t);
790 static __inline void ahc_set_transaction_status(struct scb *, uint32_t);
791 static __inline void ahc_cmd_set_scsi_status(struct scsi_cmnd *, uint32_t);
792 static __inline void ahc_set_scsi_status(struct scb *, uint32_t);
793 static __inline uint32_t ahc_cmd_get_transaction_status(struct scsi_cmnd *cmd);
794 static __inline uint32_t ahc_get_transaction_status(struct scb *);
795 static __inline uint32_t ahc_cmd_get_scsi_status(struct scsi_cmnd *cmd);
796 static __inline uint32_t ahc_get_scsi_status(struct scb *);
797 static __inline void ahc_set_transaction_tag(struct scb *, int, u_int);
798 static __inline u_long ahc_get_transfer_length(struct scb *);
799 static __inline int ahc_get_transfer_dir(struct scb *);
800 static __inline void ahc_set_residual(struct scb *, u_long);
801 static __inline void ahc_set_sense_residual(struct scb *scb, u_long resid);
802 static __inline u_long ahc_get_residual(struct scb *);
803 static __inline u_long ahc_get_sense_residual(struct scb *);
804 static __inline int ahc_perform_autosense(struct scb *);
805 static __inline uint32_t ahc_get_sense_bufsize(struct ahc_softc *,
807 static __inline void ahc_notify_xfer_settings_change(struct ahc_softc *,
808 struct ahc_devinfo *);
809 static __inline void ahc_platform_scb_free(struct ahc_softc *ahc,
811 static __inline void ahc_freeze_scb(struct scb *scb);
814 void ahc_cmd_set_transaction_status(struct scsi_cmnd *cmd, uint32_t status)
816 cmd->result &= ~(CAM_STATUS_MASK << 16);
817 cmd->result |= status << 16;
821 void ahc_set_transaction_status(struct scb *scb, uint32_t status)
823 ahc_cmd_set_transaction_status(scb->io_ctx,status);
827 void ahc_cmd_set_scsi_status(struct scsi_cmnd *cmd, uint32_t status)
829 cmd->result &= ~0xFFFF;
830 cmd->result |= status;
834 void ahc_set_scsi_status(struct scb *scb, uint32_t status)
836 ahc_cmd_set_scsi_status(scb->io_ctx, status);
840 uint32_t ahc_cmd_get_transaction_status(struct scsi_cmnd *cmd)
842 return ((cmd->result >> 16) & CAM_STATUS_MASK);
846 uint32_t ahc_get_transaction_status(struct scb *scb)
848 return (ahc_cmd_get_transaction_status(scb->io_ctx));
852 uint32_t ahc_cmd_get_scsi_status(struct scsi_cmnd *cmd)
854 return (cmd->result & 0xFFFF);
858 uint32_t ahc_get_scsi_status(struct scb *scb)
860 return (ahc_cmd_get_scsi_status(scb->io_ctx));
864 void ahc_set_transaction_tag(struct scb *scb, int enabled, u_int type)
867 * Nothing to do for linux as the incoming transaction
868 * has no concept of tag/non tagged, etc.
873 u_long ahc_get_transfer_length(struct scb *scb)
875 return (scb->platform_data->xfer_len);
879 int ahc_get_transfer_dir(struct scb *scb)
881 return (scb->io_ctx->sc_data_direction);
885 void ahc_set_residual(struct scb *scb, u_long resid)
887 scb->io_ctx->resid = resid;
891 void ahc_set_sense_residual(struct scb *scb, u_long resid)
893 scb->platform_data->sense_resid = resid;
897 u_long ahc_get_residual(struct scb *scb)
899 return (scb->io_ctx->resid);
903 u_long ahc_get_sense_residual(struct scb *scb)
905 return (scb->platform_data->sense_resid);
909 int ahc_perform_autosense(struct scb *scb)
912 * We always perform autosense in Linux.
913 * On other platforms this is set on a
914 * per-transaction basis.
919 static __inline uint32_t
920 ahc_get_sense_bufsize(struct ahc_softc *ahc, struct scb *scb)
922 return (sizeof(struct scsi_sense_data));
926 ahc_notify_xfer_settings_change(struct ahc_softc *ahc,
927 struct ahc_devinfo *devinfo)
929 /* Nothing to do here for linux */
933 ahc_platform_scb_free(struct ahc_softc *ahc, struct scb *scb)
935 ahc->flags &= ~AHC_RESOURCE_SHORTAGE;
938 int ahc_platform_alloc(struct ahc_softc *ahc, void *platform_arg);
939 void ahc_platform_free(struct ahc_softc *ahc);
940 void ahc_platform_freeze_devq(struct ahc_softc *ahc, struct scb *scb);
943 ahc_freeze_scb(struct scb *scb)
945 if ((scb->io_ctx->result & (CAM_DEV_QFRZN << 16)) == 0) {
946 scb->io_ctx->result |= CAM_DEV_QFRZN << 16;
947 scb->platform_data->dev->qfrozen++;
951 void ahc_platform_set_tags(struct ahc_softc *ahc,
952 struct ahc_devinfo *devinfo, ahc_queue_alg);
953 int ahc_platform_abort_scbs(struct ahc_softc *ahc, int target,
954 char channel, int lun, u_int tag,
955 role_t role, uint32_t status);
957 ahc_linux_isr(int irq, void *dev_id, struct pt_regs * regs);
958 void ahc_platform_flushwork(struct ahc_softc *ahc);
959 int ahc_softc_comp(struct ahc_softc *, struct ahc_softc *);
960 void ahc_done(struct ahc_softc*, struct scb*);
961 void ahc_send_async(struct ahc_softc *, char channel,
962 u_int target, u_int lun, ac_code, void *);
963 void ahc_print_path(struct ahc_softc *, struct scb *);
964 void ahc_platform_dump_card_state(struct ahc_softc *ahc);
967 #define AHC_PCI_CONFIG 1
969 #define AHC_PCI_CONFIG 0
971 #define bootverbose aic7xxx_verbose
972 extern u_int aic7xxx_verbose;
973 #endif /* _AIC7XXX_LINUX_H_ */