blob: 3a67fc578d78051f6f43b4643e26e54eb4b356b2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Adaptec AIC79xx device driver for Linux.
3 *
4 * Copyright (c) 2000-2001 Adaptec Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer,
12 * without modification.
13 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
14 * substantially similar to the "NO WARRANTY" disclaimer below
15 * ("Disclaimer") and any redistribution must be conditioned upon
16 * including a substantially similar Disclaimer requirement for further
17 * binary redistribution.
18 * 3. Neither the names of the above-listed copyright holders nor the names
19 * of any contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
21 *
22 * Alternatively, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") version 2 as published by the Free
24 * Software Foundation.
25 *
26 * NO WARRANTY
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
35 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
36 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGES.
38 *
Hannes Reinecke53467e62006-01-24 10:43:26 +010039 * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic79xx_osm.h#166 $
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 *
41 */
42#ifndef _AIC79XX_LINUX_H_
43#define _AIC79XX_LINUX_H_
44
45#include <linux/types.h>
46#include <linux/blkdev.h>
47#include <linux/delay.h>
48#include <linux/ioport.h>
49#include <linux/pci.h>
50#include <linux/smp_lock.h>
Hannes Reinecke73a25462005-07-22 16:44:04 +020051#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <linux/module.h>
Hannes Reinecke73a25462005-07-22 16:44:04 +020053#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/byteorder.h>
55#include <asm/io.h>
56
Hannes Reinecke73a25462005-07-22 16:44:04 +020057#include <scsi/scsi.h>
58#include <scsi/scsi_cmnd.h>
59#include <scsi/scsi_eh.h>
60#include <scsi/scsi_device.h>
61#include <scsi/scsi_host.h>
62#include <scsi/scsi_tcq.h>
63#include <scsi/scsi_transport.h>
64#include <scsi/scsi_transport_spi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* Core SCSI definitions */
67#define AIC_LIB_PREFIX ahd
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* Name space conflict with BSD queue macros */
70#ifdef LIST_HEAD
71#undef LIST_HEAD
72#endif
73
74#include "cam.h"
75#include "queue.h"
76#include "scsi_message.h"
77#include "scsi_iu.h"
78#include "aiclib.h"
79
80/*********************************** Debugging ********************************/
81#ifdef CONFIG_AIC79XX_DEBUG_ENABLE
82#ifdef CONFIG_AIC79XX_DEBUG_MASK
83#define AHD_DEBUG 1
84#define AHD_DEBUG_OPTS CONFIG_AIC79XX_DEBUG_MASK
85#else
86/*
87 * Compile in debugging code, but do not enable any printfs.
88 */
89#define AHD_DEBUG 1
90#define AHD_DEBUG_OPTS 0
91#endif
92/* No debugging code. */
93#endif
94
95/********************************** Misc Macros *******************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#define powerof2(x) ((((x)-1)&(x))==0)
97
98/************************* Forward Declarations *******************************/
99struct ahd_softc;
100typedef struct pci_dev *ahd_dev_softc_t;
Hannes Reinecke73a25462005-07-22 16:44:04 +0200101typedef struct scsi_cmnd *ahd_io_ctx_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/******************************* Byte Order ***********************************/
104#define ahd_htobe16(x) cpu_to_be16(x)
105#define ahd_htobe32(x) cpu_to_be32(x)
106#define ahd_htobe64(x) cpu_to_be64(x)
107#define ahd_htole16(x) cpu_to_le16(x)
108#define ahd_htole32(x) cpu_to_le32(x)
109#define ahd_htole64(x) cpu_to_le64(x)
110
111#define ahd_be16toh(x) be16_to_cpu(x)
112#define ahd_be32toh(x) be32_to_cpu(x)
113#define ahd_be64toh(x) be64_to_cpu(x)
114#define ahd_le16toh(x) le16_to_cpu(x)
115#define ahd_le32toh(x) le32_to_cpu(x)
116#define ahd_le64toh(x) le64_to_cpu(x)
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/************************* Configuration Data *********************************/
119extern uint32_t aic79xx_allow_memio;
Hannes Reinecke73a25462005-07-22 16:44:04 +0200120extern struct scsi_host_template aic79xx_driver_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/***************************** Bus Space/DMA **********************************/
123
124typedef uint32_t bus_size_t;
125
126typedef enum {
127 BUS_SPACE_MEMIO,
128 BUS_SPACE_PIO
129} bus_space_tag_t;
130
131typedef union {
132 u_long ioport;
133 volatile uint8_t __iomem *maddr;
134} bus_space_handle_t;
135
136typedef struct bus_dma_segment
137{
138 dma_addr_t ds_addr;
139 bus_size_t ds_len;
140} bus_dma_segment_t;
141
142struct ahd_linux_dma_tag
143{
144 bus_size_t alignment;
145 bus_size_t boundary;
146 bus_size_t maxsize;
147};
148typedef struct ahd_linux_dma_tag* bus_dma_tag_t;
149
Hannes Reinecke73a25462005-07-22 16:44:04 +0200150typedef dma_addr_t bus_dmamap_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152typedef int bus_dma_filter_t(void*, dma_addr_t);
153typedef void bus_dmamap_callback_t(void *, bus_dma_segment_t *, int, int);
154
155#define BUS_DMA_WAITOK 0x0
156#define BUS_DMA_NOWAIT 0x1
157#define BUS_DMA_ALLOCNOW 0x2
158#define BUS_DMA_LOAD_SEGS 0x4 /*
159 * Argument is an S/G list not
160 * a single buffer.
161 */
162
163#define BUS_SPACE_MAXADDR 0xFFFFFFFF
164#define BUS_SPACE_MAXADDR_32BIT 0xFFFFFFFF
165#define BUS_SPACE_MAXSIZE_32BIT 0xFFFFFFFF
166
167int ahd_dma_tag_create(struct ahd_softc *, bus_dma_tag_t /*parent*/,
168 bus_size_t /*alignment*/, bus_size_t /*boundary*/,
169 dma_addr_t /*lowaddr*/, dma_addr_t /*highaddr*/,
170 bus_dma_filter_t*/*filter*/, void */*filterarg*/,
171 bus_size_t /*maxsize*/, int /*nsegments*/,
172 bus_size_t /*maxsegsz*/, int /*flags*/,
173 bus_dma_tag_t */*dma_tagp*/);
174
175void ahd_dma_tag_destroy(struct ahd_softc *, bus_dma_tag_t /*tag*/);
176
177int ahd_dmamem_alloc(struct ahd_softc *, bus_dma_tag_t /*dmat*/,
178 void** /*vaddr*/, int /*flags*/,
179 bus_dmamap_t* /*mapp*/);
180
181void ahd_dmamem_free(struct ahd_softc *, bus_dma_tag_t /*dmat*/,
182 void* /*vaddr*/, bus_dmamap_t /*map*/);
183
184void ahd_dmamap_destroy(struct ahd_softc *, bus_dma_tag_t /*tag*/,
185 bus_dmamap_t /*map*/);
186
187int ahd_dmamap_load(struct ahd_softc *ahd, bus_dma_tag_t /*dmat*/,
188 bus_dmamap_t /*map*/, void * /*buf*/,
189 bus_size_t /*buflen*/, bus_dmamap_callback_t *,
190 void */*callback_arg*/, int /*flags*/);
191
192int ahd_dmamap_unload(struct ahd_softc *, bus_dma_tag_t, bus_dmamap_t);
193
194/*
195 * Operations performed by ahd_dmamap_sync().
196 */
197#define BUS_DMASYNC_PREREAD 0x01 /* pre-read synchronization */
198#define BUS_DMASYNC_POSTREAD 0x02 /* post-read synchronization */
199#define BUS_DMASYNC_PREWRITE 0x04 /* pre-write synchronization */
200#define BUS_DMASYNC_POSTWRITE 0x08 /* post-write synchronization */
201
202/*
203 * XXX
204 * ahd_dmamap_sync is only used on buffers allocated with
205 * the pci_alloc_consistent() API. Although I'm not sure how
206 * this works on architectures with a write buffer, Linux does
207 * not have an API to sync "coherent" memory. Perhaps we need
208 * to do an mb()?
209 */
210#define ahd_dmamap_sync(ahd, dma_tag, dmamap, offset, len, op)
211
212/************************** Timer DataStructures ******************************/
213typedef struct timer_list ahd_timer_t;
214
215/********************************** Includes **********************************/
216#ifdef CONFIG_AIC79XX_REG_PRETTY_PRINT
217#define AIC_DEBUG_REGISTERS 1
218#else
219#define AIC_DEBUG_REGISTERS 0
220#endif
221#include "aic79xx.h"
222
223/***************************** Timer Facilities *******************************/
224#define ahd_timer_init init_timer
225#define ahd_timer_stop del_timer_sync
226typedef void ahd_linux_callback_t (u_long);
Hannes Reinecke73a25462005-07-22 16:44:04 +0200227static __inline void ahd_timer_reset(ahd_timer_t *timer, int usec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 ahd_callback_t *func, void *arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230static __inline void
Hannes Reinecke73a25462005-07-22 16:44:04 +0200231ahd_timer_reset(ahd_timer_t *timer, int usec, ahd_callback_t *func, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct ahd_softc *ahd;
234
235 ahd = (struct ahd_softc *)arg;
236 del_timer(timer);
237 timer->data = (u_long)arg;
238 timer->expires = jiffies + (usec * HZ)/1000000;
239 timer->function = (ahd_linux_callback_t*)func;
240 add_timer(timer);
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/***************************** SMP support ************************************/
244#include <linux/spinlock.h>
245
James Bottomleycd2f1e62006-01-12 12:07:13 -0600246#define AIC79XX_DRIVER_VERSION "3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/*************************** Device Data Structures ***************************/
249/*
250 * A per probed device structure used to deal with some error recovery
251 * scenarios that the Linux mid-layer code just doesn't know how to
252 * handle. The structure allocated for a device only becomes persistent
253 * after a successfully completed inquiry command to the target when
254 * that inquiry data indicates a lun is present.
255 */
Hannes Reinecke60a13212005-07-22 16:42:28 +0200256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257typedef enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 AHD_DEV_FREEZE_TIL_EMPTY = 0x02, /* Freeze queue until active == 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 AHD_DEV_Q_BASIC = 0x10, /* Allow basic device queuing */
260 AHD_DEV_Q_TAGGED = 0x20, /* Allow full SCSI2 command queueing */
261 AHD_DEV_PERIODIC_OTAG = 0x40, /* Send OTAG to prevent starvation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262} ahd_linux_dev_flags;
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264struct ahd_linux_device {
265 TAILQ_ENTRY(ahd_linux_device) links;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /*
268 * The number of transactions currently
269 * queued to the device.
270 */
271 int active;
272
273 /*
274 * The currently allowed number of
275 * transactions that can be queued to
276 * the device. Must be signed for
277 * conversion from tagged to untagged
278 * mode where the device may have more
279 * than one outstanding active transaction.
280 */
281 int openings;
282
283 /*
284 * A positive count indicates that this
285 * device's queue is halted.
286 */
287 u_int qfrozen;
288
289 /*
290 * Cumulative command counter.
291 */
292 u_long commands_issued;
293
294 /*
295 * The number of tagged transactions when
296 * running at our current opening level
297 * that have been successfully received by
298 * this device since the last QUEUE FULL.
299 */
300 u_int tag_success_count;
301#define AHD_TAG_SUCCESS_INTERVAL 50
302
303 ahd_linux_dev_flags flags;
304
305 /*
306 * Per device timer.
307 */
308 struct timer_list timer;
309
310 /*
311 * The high limit for the tags variable.
312 */
313 u_int maxtags;
314
315 /*
316 * The computed number of tags outstanding
317 * at the time of the last QUEUE FULL event.
318 */
319 u_int tags_on_last_queuefull;
320
321 /*
322 * How many times we have seen a queue full
323 * with the same number of tags. This is used
324 * to stop our adaptive queue depth algorithm
325 * on devices with a fixed number of tags.
326 */
327 u_int last_queuefull_same_count;
328#define AHD_LOCK_TAGS_COUNT 50
329
330 /*
331 * How many transactions have been queued
332 * without the device going idle. We use
333 * this statistic to determine when to issue
334 * an ordered tag to prevent transaction
335 * starvation. This statistic is only updated
336 * if the AHD_DEV_PERIODIC_OTAG flag is set
337 * on this device.
338 */
339 u_int commands_since_idle_or_otag;
340#define AHD_OTAG_THRESH 500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343/********************* Definitions Required by the Core ***********************/
344/*
345 * Number of SG segments we require. So long as the S/G segments for
346 * a particular transaction are allocated in a physically contiguous
347 * manner and are allocated below 4GB, the number of S/G segments is
348 * unrestricted.
349 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#define AHD_NSEG 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352/*
353 * Per-SCB OSM storage.
354 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355struct scb_platform_data {
356 struct ahd_linux_device *dev;
357 dma_addr_t buf_busaddr;
358 uint32_t xfer_len;
359 uint32_t sense_resid; /* Auto-Sense residual */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360};
361
362/*
363 * Define a structure used for each host adapter. All members are
364 * aligned on a boundary >= the size of the member to honor the
365 * alignment restrictions of the various platforms supported by
366 * this driver.
367 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368struct ahd_platform_data {
369 /*
370 * Fields accessed from interrupt context.
371 */
Hannes Reinecke73a25462005-07-22 16:44:04 +0200372 struct scsi_target *starget[AHD_NUM_TARGETS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 spinlock_t spin_lock;
Hannes Reinecke7b22da32006-03-08 12:56:14 +0100375 struct completion *eh_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct Scsi_Host *host; /* pointer to scsi host */
377#define AHD_LINUX_NOIRQ ((uint32_t)~0)
378 uint32_t irq; /* IRQ for this adapter */
379 uint32_t bios_address;
380 uint32_t mem_busaddr; /* Mem Base Addr */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381};
382
383/************************** OS Utility Wrappers *******************************/
384#define printf printk
385#define M_NOWAIT GFP_ATOMIC
386#define M_WAITOK 0
387#define malloc(size, type, flags) kmalloc(size, flags)
388#define free(ptr, type) kfree(ptr)
389
390static __inline void ahd_delay(long);
391static __inline void
392ahd_delay(long usec)
393{
394 /*
395 * udelay on Linux can have problems for
396 * multi-millisecond waits. Wait at most
397 * 1024us per call.
398 */
399 while (usec > 0) {
400 udelay(usec % 1024);
401 usec -= 1024;
402 }
403}
404
405
406/***************************** Low Level I/O **********************************/
407static __inline uint8_t ahd_inb(struct ahd_softc * ahd, long port);
408static __inline uint16_t ahd_inw_atomic(struct ahd_softc * ahd, long port);
409static __inline void ahd_outb(struct ahd_softc * ahd, long port, uint8_t val);
410static __inline void ahd_outw_atomic(struct ahd_softc * ahd,
411 long port, uint16_t val);
412static __inline void ahd_outsb(struct ahd_softc * ahd, long port,
413 uint8_t *, int count);
414static __inline void ahd_insb(struct ahd_softc * ahd, long port,
415 uint8_t *, int count);
416
417static __inline uint8_t
418ahd_inb(struct ahd_softc * ahd, long port)
419{
420 uint8_t x;
421
422 if (ahd->tags[0] == BUS_SPACE_MEMIO) {
423 x = readb(ahd->bshs[0].maddr + port);
424 } else {
425 x = inb(ahd->bshs[(port) >> 8].ioport + ((port) & 0xFF));
426 }
427 mb();
428 return (x);
429}
430
431static __inline uint16_t
432ahd_inw_atomic(struct ahd_softc * ahd, long port)
433{
434 uint8_t x;
435
436 if (ahd->tags[0] == BUS_SPACE_MEMIO) {
437 x = readw(ahd->bshs[0].maddr + port);
438 } else {
439 x = inw(ahd->bshs[(port) >> 8].ioport + ((port) & 0xFF));
440 }
441 mb();
442 return (x);
443}
444
445static __inline void
446ahd_outb(struct ahd_softc * ahd, long port, uint8_t val)
447{
448 if (ahd->tags[0] == BUS_SPACE_MEMIO) {
449 writeb(val, ahd->bshs[0].maddr + port);
450 } else {
451 outb(val, ahd->bshs[(port) >> 8].ioport + (port & 0xFF));
452 }
453 mb();
454}
455
456static __inline void
457ahd_outw_atomic(struct ahd_softc * ahd, long port, uint16_t val)
458{
459 if (ahd->tags[0] == BUS_SPACE_MEMIO) {
460 writew(val, ahd->bshs[0].maddr + port);
461 } else {
462 outw(val, ahd->bshs[(port) >> 8].ioport + (port & 0xFF));
463 }
464 mb();
465}
466
467static __inline void
468ahd_outsb(struct ahd_softc * ahd, long port, uint8_t *array, int count)
469{
470 int i;
471
472 /*
473 * There is probably a more efficient way to do this on Linux
474 * but we don't use this for anything speed critical and this
475 * should work.
476 */
477 for (i = 0; i < count; i++)
478 ahd_outb(ahd, port, *array++);
479}
480
481static __inline void
482ahd_insb(struct ahd_softc * ahd, long port, uint8_t *array, int count)
483{
484 int i;
485
486 /*
487 * There is probably a more efficient way to do this on Linux
488 * but we don't use this for anything speed critical and this
489 * should work.
490 */
491 for (i = 0; i < count; i++)
492 *array++ = ahd_inb(ahd, port);
493}
494
495/**************************** Initialization **********************************/
496int ahd_linux_register_host(struct ahd_softc *,
Hannes Reinecke73a25462005-07-22 16:44:04 +0200497 struct scsi_host_template *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499uint64_t ahd_linux_get_memsize(void);
500
501/*************************** Pretty Printing **********************************/
502struct info_str {
503 char *buffer;
504 int length;
505 off_t offset;
506 int pos;
507};
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/******************************** Locking *************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510static __inline void
511ahd_lockinit(struct ahd_softc *ahd)
512{
513 spin_lock_init(&ahd->platform_data->spin_lock);
514}
515
516static __inline void
517ahd_lock(struct ahd_softc *ahd, unsigned long *flags)
518{
519 spin_lock_irqsave(&ahd->platform_data->spin_lock, *flags);
520}
521
522static __inline void
523ahd_unlock(struct ahd_softc *ahd, unsigned long *flags)
524{
525 spin_unlock_irqrestore(&ahd->platform_data->spin_lock, *flags);
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/******************************* PCI Definitions ******************************/
529/*
530 * PCIM_xxx: mask to locate subfield in register
531 * PCIR_xxx: config register offset
532 * PCIC_xxx: device class
533 * PCIS_xxx: device subclass
534 * PCIP_xxx: device programming interface
535 * PCIV_xxx: PCI vendor ID (only required to fixup ancient devices)
536 * PCID_xxx: device ID
537 */
538#define PCIR_DEVVENDOR 0x00
539#define PCIR_VENDOR 0x00
540#define PCIR_DEVICE 0x02
541#define PCIR_COMMAND 0x04
542#define PCIM_CMD_PORTEN 0x0001
543#define PCIM_CMD_MEMEN 0x0002
544#define PCIM_CMD_BUSMASTEREN 0x0004
545#define PCIM_CMD_MWRICEN 0x0010
546#define PCIM_CMD_PERRESPEN 0x0040
547#define PCIM_CMD_SERRESPEN 0x0100
548#define PCIR_STATUS 0x06
549#define PCIR_REVID 0x08
550#define PCIR_PROGIF 0x09
551#define PCIR_SUBCLASS 0x0a
552#define PCIR_CLASS 0x0b
553#define PCIR_CACHELNSZ 0x0c
554#define PCIR_LATTIMER 0x0d
555#define PCIR_HEADERTYPE 0x0e
556#define PCIM_MFDEV 0x80
557#define PCIR_BIST 0x0f
558#define PCIR_CAP_PTR 0x34
559
560/* config registers for header type 0 devices */
561#define PCIR_MAPS 0x10
562#define PCIR_SUBVEND_0 0x2c
563#define PCIR_SUBDEV_0 0x2e
564
565/****************************** PCI-X definitions *****************************/
566#define PCIXR_COMMAND 0x96
567#define PCIXR_DEVADDR 0x98
568#define PCIXM_DEVADDR_FNUM 0x0003 /* Function Number */
569#define PCIXM_DEVADDR_DNUM 0x00F8 /* Device Number */
570#define PCIXM_DEVADDR_BNUM 0xFF00 /* Bus Number */
571#define PCIXR_STATUS 0x9A
572#define PCIXM_STATUS_64BIT 0x0001 /* Active 64bit connection to device. */
573#define PCIXM_STATUS_133CAP 0x0002 /* Device is 133MHz capable */
574#define PCIXM_STATUS_SCDISC 0x0004 /* Split Completion Discarded */
575#define PCIXM_STATUS_UNEXPSC 0x0008 /* Unexpected Split Completion */
576#define PCIXM_STATUS_CMPLEXDEV 0x0010 /* Device Complexity (set == bridge) */
577#define PCIXM_STATUS_MAXMRDBC 0x0060 /* Maximum Burst Read Count */
578#define PCIXM_STATUS_MAXSPLITS 0x0380 /* Maximum Split Transactions */
579#define PCIXM_STATUS_MAXCRDS 0x1C00 /* Maximum Cumulative Read Size */
580#define PCIXM_STATUS_RCVDSCEM 0x2000 /* Received a Split Comp w/Error msg */
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582typedef enum
583{
584 AHD_POWER_STATE_D0,
585 AHD_POWER_STATE_D1,
586 AHD_POWER_STATE_D2,
587 AHD_POWER_STATE_D3
588} ahd_power_state;
589
590void ahd_power_state_change(struct ahd_softc *ahd,
591 ahd_power_state new_state);
592
593/******************************* PCI Routines *********************************/
594int ahd_linux_pci_init(void);
595void ahd_linux_pci_exit(void);
596int ahd_pci_map_registers(struct ahd_softc *ahd);
597int ahd_pci_map_int(struct ahd_softc *ahd);
598
599static __inline uint32_t ahd_pci_read_config(ahd_dev_softc_t pci,
600 int reg, int width);
601
602static __inline uint32_t
603ahd_pci_read_config(ahd_dev_softc_t pci, int reg, int width)
604{
605 switch (width) {
606 case 1:
607 {
608 uint8_t retval;
609
610 pci_read_config_byte(pci, reg, &retval);
611 return (retval);
612 }
613 case 2:
614 {
615 uint16_t retval;
616 pci_read_config_word(pci, reg, &retval);
617 return (retval);
618 }
619 case 4:
620 {
621 uint32_t retval;
622 pci_read_config_dword(pci, reg, &retval);
623 return (retval);
624 }
625 default:
626 panic("ahd_pci_read_config: Read size too big");
627 /* NOTREACHED */
628 return (0);
629 }
630}
631
632static __inline void ahd_pci_write_config(ahd_dev_softc_t pci,
633 int reg, uint32_t value,
634 int width);
635
636static __inline void
637ahd_pci_write_config(ahd_dev_softc_t pci, int reg, uint32_t value, int width)
638{
639 switch (width) {
640 case 1:
641 pci_write_config_byte(pci, reg, value);
642 break;
643 case 2:
644 pci_write_config_word(pci, reg, value);
645 break;
646 case 4:
647 pci_write_config_dword(pci, reg, value);
648 break;
649 default:
650 panic("ahd_pci_write_config: Write size too big");
651 /* NOTREACHED */
652 }
653}
654
655static __inline int ahd_get_pci_function(ahd_dev_softc_t);
656static __inline int
657ahd_get_pci_function(ahd_dev_softc_t pci)
658{
659 return (PCI_FUNC(pci->devfn));
660}
661
662static __inline int ahd_get_pci_slot(ahd_dev_softc_t);
663static __inline int
664ahd_get_pci_slot(ahd_dev_softc_t pci)
665{
666 return (PCI_SLOT(pci->devfn));
667}
668
669static __inline int ahd_get_pci_bus(ahd_dev_softc_t);
670static __inline int
671ahd_get_pci_bus(ahd_dev_softc_t pci)
672{
673 return (pci->bus->number);
674}
675
676static __inline void ahd_flush_device_writes(struct ahd_softc *);
677static __inline void
678ahd_flush_device_writes(struct ahd_softc *ahd)
679{
680 /* XXX Is this sufficient for all architectures??? */
681 ahd_inb(ahd, INTSTAT);
682}
683
684/**************************** Proc FS Support *********************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685int ahd_linux_proc_info(struct Scsi_Host *, char *, char **,
686 off_t, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*********************** Transaction Access Wrappers **************************/
Hannes Reinecke73a25462005-07-22 16:44:04 +0200689static __inline void ahd_cmd_set_transaction_status(struct scsi_cmnd *, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690static __inline void ahd_set_transaction_status(struct scb *, uint32_t);
Hannes Reinecke73a25462005-07-22 16:44:04 +0200691static __inline void ahd_cmd_set_scsi_status(struct scsi_cmnd *, uint32_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692static __inline void ahd_set_scsi_status(struct scb *, uint32_t);
Hannes Reinecke73a25462005-07-22 16:44:04 +0200693static __inline uint32_t ahd_cmd_get_transaction_status(struct scsi_cmnd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694static __inline uint32_t ahd_get_transaction_status(struct scb *);
Hannes Reinecke73a25462005-07-22 16:44:04 +0200695static __inline uint32_t ahd_cmd_get_scsi_status(struct scsi_cmnd *cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696static __inline uint32_t ahd_get_scsi_status(struct scb *);
697static __inline void ahd_set_transaction_tag(struct scb *, int, u_int);
698static __inline u_long ahd_get_transfer_length(struct scb *);
699static __inline int ahd_get_transfer_dir(struct scb *);
700static __inline void ahd_set_residual(struct scb *, u_long);
701static __inline void ahd_set_sense_residual(struct scb *scb, u_long resid);
702static __inline u_long ahd_get_residual(struct scb *);
703static __inline u_long ahd_get_sense_residual(struct scb *);
704static __inline int ahd_perform_autosense(struct scb *);
705static __inline uint32_t ahd_get_sense_bufsize(struct ahd_softc *,
706 struct scb *);
707static __inline void ahd_notify_xfer_settings_change(struct ahd_softc *,
708 struct ahd_devinfo *);
709static __inline void ahd_platform_scb_free(struct ahd_softc *ahd,
710 struct scb *scb);
711static __inline void ahd_freeze_scb(struct scb *scb);
712
713static __inline
Hannes Reinecke73a25462005-07-22 16:44:04 +0200714void ahd_cmd_set_transaction_status(struct scsi_cmnd *cmd, uint32_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 cmd->result &= ~(CAM_STATUS_MASK << 16);
717 cmd->result |= status << 16;
718}
719
720static __inline
721void ahd_set_transaction_status(struct scb *scb, uint32_t status)
722{
723 ahd_cmd_set_transaction_status(scb->io_ctx,status);
724}
725
726static __inline
Hannes Reinecke73a25462005-07-22 16:44:04 +0200727void ahd_cmd_set_scsi_status(struct scsi_cmnd *cmd, uint32_t status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 cmd->result &= ~0xFFFF;
730 cmd->result |= status;
731}
732
733static __inline
734void ahd_set_scsi_status(struct scb *scb, uint32_t status)
735{
736 ahd_cmd_set_scsi_status(scb->io_ctx, status);
737}
738
739static __inline
Hannes Reinecke73a25462005-07-22 16:44:04 +0200740uint32_t ahd_cmd_get_transaction_status(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 return ((cmd->result >> 16) & CAM_STATUS_MASK);
743}
744
745static __inline
746uint32_t ahd_get_transaction_status(struct scb *scb)
747{
748 return (ahd_cmd_get_transaction_status(scb->io_ctx));
749}
750
751static __inline
Hannes Reinecke73a25462005-07-22 16:44:04 +0200752uint32_t ahd_cmd_get_scsi_status(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 return (cmd->result & 0xFFFF);
755}
756
757static __inline
758uint32_t ahd_get_scsi_status(struct scb *scb)
759{
760 return (ahd_cmd_get_scsi_status(scb->io_ctx));
761}
762
763static __inline
764void ahd_set_transaction_tag(struct scb *scb, int enabled, u_int type)
765{
766 /*
767 * Nothing to do for linux as the incoming transaction
768 * has no concept of tag/non tagged, etc.
769 */
770}
771
772static __inline
773u_long ahd_get_transfer_length(struct scb *scb)
774{
775 return (scb->platform_data->xfer_len);
776}
777
778static __inline
779int ahd_get_transfer_dir(struct scb *scb)
780{
781 return (scb->io_ctx->sc_data_direction);
782}
783
784static __inline
785void ahd_set_residual(struct scb *scb, u_long resid)
786{
787 scb->io_ctx->resid = resid;
788}
789
790static __inline
791void ahd_set_sense_residual(struct scb *scb, u_long resid)
792{
793 scb->platform_data->sense_resid = resid;
794}
795
796static __inline
797u_long ahd_get_residual(struct scb *scb)
798{
799 return (scb->io_ctx->resid);
800}
801
802static __inline
803u_long ahd_get_sense_residual(struct scb *scb)
804{
805 return (scb->platform_data->sense_resid);
806}
807
808static __inline
809int ahd_perform_autosense(struct scb *scb)
810{
811 /*
812 * We always perform autosense in Linux.
813 * On other platforms this is set on a
814 * per-transaction basis.
815 */
816 return (1);
817}
818
819static __inline uint32_t
820ahd_get_sense_bufsize(struct ahd_softc *ahd, struct scb *scb)
821{
822 return (sizeof(struct scsi_sense_data));
823}
824
825static __inline void
826ahd_notify_xfer_settings_change(struct ahd_softc *ahd,
827 struct ahd_devinfo *devinfo)
828{
829 /* Nothing to do here for linux */
830}
831
832static __inline void
833ahd_platform_scb_free(struct ahd_softc *ahd, struct scb *scb)
834{
835 ahd->flags &= ~AHD_RESOURCE_SHORTAGE;
836}
837
838int ahd_platform_alloc(struct ahd_softc *ahd, void *platform_arg);
839void ahd_platform_free(struct ahd_softc *ahd);
840void ahd_platform_init(struct ahd_softc *ahd);
841void ahd_platform_freeze_devq(struct ahd_softc *ahd, struct scb *scb);
842void ahd_freeze_simq(struct ahd_softc *ahd);
843void ahd_release_simq(struct ahd_softc *ahd);
844
845static __inline void
846ahd_freeze_scb(struct scb *scb)
847{
848 if ((scb->io_ctx->result & (CAM_DEV_QFRZN << 16)) == 0) {
849 scb->io_ctx->result |= CAM_DEV_QFRZN << 16;
850 scb->platform_data->dev->qfrozen++;
851 }
852}
853
Hannes Reineckef89d0a42006-06-22 11:45:00 +0200854void ahd_platform_set_tags(struct ahd_softc *ahd, struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct ahd_devinfo *devinfo, ahd_queue_alg);
856int ahd_platform_abort_scbs(struct ahd_softc *ahd, int target,
857 char channel, int lun, u_int tag,
858 role_t role, uint32_t status);
859irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100860 ahd_linux_isr(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861void ahd_done(struct ahd_softc*, struct scb*);
862void ahd_send_async(struct ahd_softc *, char channel,
Hannes Reineckef89d0a42006-06-22 11:45:00 +0200863 u_int target, u_int lun, ac_code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864void ahd_print_path(struct ahd_softc *, struct scb *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866#ifdef CONFIG_PCI
867#define AHD_PCI_CONFIG 1
868#else
869#define AHD_PCI_CONFIG 0
870#endif
871#define bootverbose aic79xx_verbose
872extern uint32_t aic79xx_verbose;
873
874#endif /* _AIC79XX_LINUX_H_ */