Merge with Linux 2.5.74.
[linux-2.6/linux-mips.git] / drivers / scsi / ncr53c8xx.h
blob3742b08320cd429b8baadf73e14bd001dbd00439
1 /******************************************************************************
2 ** Device driver for the PCI-SCSI NCR538XX controller family.
3 **
4 ** Copyright (C) 1994 Wolfgang Stanglmeier
5 **
6 ** This program is free software; you can redistribute it and/or modify
7 ** it under the terms of the GNU General Public License as published by
8 ** the Free Software Foundation; either version 2 of the License, or
9 ** (at your option) any later version.
11 ** This program is distributed in the hope that it will be useful,
12 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ** GNU General Public License for more details.
16 ** You should have received a copy of the GNU General Public License
17 ** along with this program; if not, write to the Free Software
18 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 **-----------------------------------------------------------------------------
22 ** This driver has been ported to Linux from the FreeBSD NCR53C8XX driver
23 ** and is currently maintained by
25 ** Gerard Roudier <groudier@free.fr>
27 ** Being given that this driver originates from the FreeBSD version, and
28 ** in order to keep synergy on both, any suggested enhancements and corrections
29 ** received on Linux are automatically a potential candidate for the FreeBSD
30 ** version.
32 ** The original driver has been written for 386bsd and FreeBSD by
33 ** Wolfgang Stanglmeier <wolf@cologne.de>
34 ** Stefan Esser <se@mi.Uni-Koeln.de>
36 ** And has been ported to NetBSD by
37 ** Charles M. Hannum <mycroft@gnu.ai.mit.edu>
39 *******************************************************************************
42 #ifndef NCR53C8XX_H
43 #define NCR53C8XX_H
46 ** Define the BSD style u_int32 and u_int64 type.
47 ** Are in fact u_int32_t and u_int64_t :-)
49 typedef u32 u_int32;
50 typedef u64 u_int64;
51 typedef u_long vm_offset_t;
53 #include "sym53c8xx_defs.h"
55 /*==========================================================
57 ** Structures used by the detection routine to transmit
58 ** device configuration to the attach function.
60 **==========================================================
62 typedef struct {
63 int bus;
64 u_char device_fn;
65 u_long base;
66 u_long base_2;
67 u_long io_port;
68 u_long base_c;
69 u_long base_2_c;
70 u_long base_v;
71 u_long base_2_v;
72 int irq;
73 /* port and reg fields to use INB, OUTB macros */
74 u_long base_io;
75 volatile struct ncr_reg *reg;
76 } ncr_slot;
78 /*==========================================================
80 ** Structure used to store the NVRAM content.
82 **==========================================================
84 typedef struct {
85 int type;
86 #define SCSI_NCR_SYMBIOS_NVRAM (1)
87 #define SCSI_NCR_TEKRAM_NVRAM (2)
88 #ifdef SCSI_NCR_NVRAM_SUPPORT
89 union {
90 Symbios_nvram Symbios;
91 Tekram_nvram Tekram;
92 } data;
93 #endif
94 } ncr_nvram;
96 /*==========================================================
98 ** Structure used by detection routine to save data on
99 ** each detected board for attach.
101 **==========================================================
103 typedef struct {
104 struct device *dev;
105 ncr_slot slot;
106 ncr_chip chip;
107 ncr_nvram *nvram;
108 u_char host_id;
109 #ifdef SCSI_NCR_PQS_PDS_SUPPORT
110 u_char pqs_pds;
111 #endif
112 __u8 differential;
113 int attach_done;
114 } ncr_device;
116 extern struct Scsi_Host *ncr_attach (Scsi_Host_Template *tpnt, int unit, ncr_device *device);
117 extern int ncr53c8xx_release(struct Scsi_Host *host);
118 irqreturn_t ncr53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs);
120 #endif /* NCR53C8XX_H */