1 /* $NetBSD: adv_pci.c,v 1.25 2009/05/06 10:34:32 cegger Exp $ */
4 * Copyright (c) 1998 The NetBSD Foundation, Inc. All rights reserved.
6 * Author: Baldassare Dante Profeta <dante@mclink.it>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
30 * Device probe and attach routines for the following
31 * Advanced Systems Inc. SCSI controllers:
33 * Connectivity Products:
34 * ABP920 - Bus-Master PCI (16 CDB)
35 * ABP930 - Bus-Master PCI (16 CDB) (Footnote 1)
36 * ABP930U - Bus-Master PCI Ultra (16 CDB)
37 * ABP930UA - Bus-Master PCI Ultra (16 CDB)
38 * ABP960 - Bus-Master PCI MAC/PC (16 CDB) (Footnote 2)
39 * ABP960U - Bus-Master PCI MAC/PC Ultra (16 CDB) (Footnote 2)
41 * Single Channel Products:
42 * ABP940 - Bus-Master PCI (240 CDB)
43 * ABP940U - Bus-Master PCI Ultra (240 CDB)
44 * ABP970 - Bus-Master PCI MAC/PC (240 CDB)
45 * ABP970U - Bus-Master PCI MAC/PC Ultra (240 CDB)
46 * ABP940UW - Bus-Master PCI Ultra-Wide (240 CDB)
48 * Multi Channel Products:
49 * ABP950 - Dual Channel Bus-Master PCI (240 CDB Per Channel)
50 * ABP980 - Four Channel Bus-Master PCI (240 CDB Per Channel)
51 * ABP980U - Four Channel Bus-Master PCI Ultra (240 CDB Per Channel)
54 * 1. This board has been sold by SIIG as the Fast SCSI Pro PCI.
55 * 2. This board has been sold by Iomega as a Jaz Jet PCI adapter.
58 #include <sys/cdefs.h>
59 __KERNEL_RCSID(0, "$NetBSD: adv_pci.c,v 1.25 2009/05/06 10:34:32 cegger Exp $");
61 #include <sys/param.h>
62 #include <sys/systm.h>
63 #include <sys/malloc.h>
64 #include <sys/kernel.h>
65 #include <sys/queue.h>
66 #include <sys/device.h>
71 #include <dev/scsipi/scsi_all.h>
72 #include <dev/scsipi/scsipi_all.h>
73 #include <dev/scsipi/scsiconf.h>
75 #include <dev/pci/pcireg.h>
76 #include <dev/pci/pcivar.h>
77 #include <dev/pci/pcidevs.h>
79 #include <dev/ic/advlib.h>
80 #include <dev/ic/adv.h>
82 /******************************************************************************/
84 #define PCI_BASEADR_IO 0x10
86 /******************************************************************************/
88 * Check the slots looking for a board we recognise
89 * If we find one, note it's address (slot) and call
90 * the actual probe routine to check it out.
93 adv_pci_match(device_t parent
, cfdata_t match
, void *aux
)
95 struct pci_attach_args
*pa
= aux
;
97 if (PCI_VENDOR(pa
->pa_id
) == PCI_VENDOR_ADVSYS
)
98 switch (PCI_PRODUCT(pa
->pa_id
)) {
99 case PCI_PRODUCT_ADVSYS_1200A
:
100 case PCI_PRODUCT_ADVSYS_1200B
:
101 case PCI_PRODUCT_ADVSYS_ULTRA
:
109 adv_pci_attach(device_t parent
, device_t self
, void *aux
)
111 struct pci_attach_args
*pa
= aux
;
112 ASC_SOFTC
*sc
= (void *) self
;
114 bus_space_handle_t ioh
;
115 pci_intr_handle_t ih
;
116 pci_chipset_tag_t pc
= pa
->pa_pc
;
120 aprint_naive(": SCSI controller\n");
123 if (PCI_VENDOR(pa
->pa_id
) == PCI_VENDOR_ADVSYS
)
124 switch (PCI_PRODUCT(pa
->pa_id
)) {
125 case PCI_PRODUCT_ADVSYS_1200A
:
126 aprint_normal(": AdvanSys ASC1200A SCSI adapter\n");
129 case PCI_PRODUCT_ADVSYS_1200B
:
130 aprint_normal(": AdvanSys ASC1200B SCSI adapter\n");
133 case PCI_PRODUCT_ADVSYS_ULTRA
:
134 switch (PCI_REVISION(pa
->pa_class
)) {
135 case ASC_PCI_REVISION_3050
:
137 ": AdvanSys ABP-9xxUA SCSI adapter\n");
140 case ASC_PCI_REVISION_3150
:
142 ": AdvanSys ABP-9xxU SCSI adapter\n");
148 aprint_error(": unknown model!\n");
154 * Make sure IO/MEM/MASTER are enabled
156 command
= pci_conf_read(pa
->pa_pc
, pa
->pa_tag
, PCI_COMMAND_STATUS_REG
);
157 if ((command
& (PCI_COMMAND_IO_ENABLE
| PCI_COMMAND_MEM_ENABLE
|
158 PCI_COMMAND_MASTER_ENABLE
)) !=
159 (PCI_COMMAND_IO_ENABLE
| PCI_COMMAND_MEM_ENABLE
|
160 PCI_COMMAND_MASTER_ENABLE
)) {
161 pci_conf_write(pa
->pa_pc
, pa
->pa_tag
, PCI_COMMAND_STATUS_REG
,
162 command
| (PCI_COMMAND_IO_ENABLE
| PCI_COMMAND_MEM_ENABLE
|
163 PCI_COMMAND_MASTER_ENABLE
));
166 * Latency timer settings.
171 bhlcr
= pci_conf_read(pa
->pa_pc
, pa
->pa_tag
, PCI_BHLC_REG
);
173 if (PCI_PRODUCT(pa
->pa_id
) == PCI_PRODUCT_ADVSYS_1200A
||
174 PCI_PRODUCT(pa
->pa_id
) == PCI_PRODUCT_ADVSYS_1200B
) {
175 bhlcr
&= 0xFFFF00FFul
;
176 pci_conf_write(pa
->pa_pc
, pa
->pa_tag
,
177 PCI_BHLC_REG
, bhlcr
);
178 } else if ((PCI_PRODUCT(pa
->pa_id
) == PCI_PRODUCT_ADVSYS_ULTRA
)
179 && (PCI_LATTIMER(bhlcr
) < 0x20)) {
180 bhlcr
&= 0xFFFF00FFul
;
181 bhlcr
|= 0x00002000ul
;
182 pci_conf_write(pa
->pa_pc
, pa
->pa_tag
,
183 PCI_BHLC_REG
, bhlcr
);
189 * Map Device Registers for I/O
191 if (pci_mapreg_map(pa
, PCI_BASEADR_IO
, PCI_MAPREG_TYPE_IO
, 0,
192 &iot
, &ioh
, NULL
, NULL
)) {
193 aprint_error_dev(&sc
->sc_dev
, "unable to map device registers\n");
197 ASC_SET_CHIP_CONTROL(iot
, ioh
, ASC_CC_HALT
);
198 ASC_SET_CHIP_STATUS(iot
, ioh
, 0);
202 sc
->sc_dmat
= pa
->pa_dmat
;
203 sc
->pci_device_id
= pa
->pa_id
;
204 sc
->bus_type
= ASC_IS_PCI
;
205 sc
->chip_version
= ASC_GET_CHIP_VER_NO(iot
, ioh
);
208 * Initialize the board
211 panic("adv_pci_attach: adv_init failed");
216 if (pci_intr_map(pa
, &ih
)) {
217 aprint_error_dev(&sc
->sc_dev
, "couldn't map interrupt\n");
220 intrstr
= pci_intr_string(pc
, ih
);
223 * Establish Interrupt handler
225 sc
->sc_ih
= pci_intr_establish(pc
, ih
, IPL_BIO
, adv_intr
, sc
);
226 if (sc
->sc_ih
== NULL
) {
227 aprint_error_dev(&sc
->sc_dev
, "couldn't establish interrupt");
229 aprint_error(" at %s", intrstr
);
233 aprint_normal_dev(&sc
->sc_dev
, "interrupting at %s\n", intrstr
);
236 * Attach all the sub-devices we can find
241 CFATTACH_DECL(adv_pci
, sizeof(ASC_SOFTC
),
242 adv_pci_match
, adv_pci_attach
, NULL
, NULL
);