bha_pci.c revision 1.18 1 /* $NetBSD: bha_pci.c,v 1.18 2001/04/25 17:53:36 bouyer Exp $ */
2
3 /*-
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Charles M. Hannum.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 #include <sys/types.h>
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/device.h>
43
44 #include <machine/bus.h>
45 #include <machine/intr.h>
46
47 #include <dev/scsipi/scsipi_all.h>
48 #include <dev/scsipi/scsiconf.h>
49
50 #include <dev/pci/pcivar.h>
51 #include <dev/pci/pcidevs.h>
52
53 #include <dev/ic/bhareg.h>
54 #include <dev/ic/bhavar.h>
55
56 #define PCI_CBIO 0x10
57
58 int bha_pci_match __P((struct device *, struct cfdata *, void *));
59 void bha_pci_attach __P((struct device *, struct device *, void *));
60
61 struct cfattach bha_pci_ca = {
62 sizeof(struct bha_softc), bha_pci_match, bha_pci_attach
63 };
64
65 /*
66 * Check the slots looking for a board we recognise
67 * If we find one, note it's address (slot) and call
68 * the actual probe routine to check it out.
69 */
70 int
71 bha_pci_match(parent, match, aux)
72 struct device *parent;
73 struct cfdata *match;
74 void *aux;
75 {
76 struct pci_attach_args *pa = aux;
77 bus_space_tag_t iot;
78 bus_space_handle_t ioh;
79 bus_size_t iosize;
80 int rv;
81
82 if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_BUSLOGIC)
83 return (0);
84
85 if (PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_BUSLOGIC_MULTIMASTER_NC &&
86 PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_BUSLOGIC_MULTIMASTER)
87 return (0);
88
89 if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0, &iot, &ioh,
90 NULL, &iosize))
91 return (0);
92
93 rv = bha_find(iot, ioh, NULL);
94
95 bus_space_unmap(iot, ioh, iosize);
96
97 return (rv);
98 }
99
100 /*
101 * Attach all the sub-devices we can find
102 */
103 void
104 bha_pci_attach(parent, self, aux)
105 struct device *parent, *self;
106 void *aux;
107 {
108 struct pci_attach_args *pa = aux;
109 struct bha_softc *sc = (void *)self;
110 bus_space_tag_t iot;
111 bus_space_handle_t ioh;
112 struct bha_probe_data bpd;
113 pci_chipset_tag_t pc = pa->pa_pc;
114 pci_intr_handle_t ih;
115 pcireg_t csr;
116 const char *model, *intrstr;
117
118 if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BUSLOGIC_MULTIMASTER_NC)
119 model = "BusLogic 9xxC SCSI";
120 else if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BUSLOGIC_MULTIMASTER)
121 model = "BusLogic 9xxC SCSI";
122 else
123 model = "unknown model!";
124 printf(": %s\n", model);
125
126 if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0, &iot, &ioh,
127 NULL, NULL)) {
128 printf("%s: unable to map device registers\n",
129 sc->sc_dev.dv_xname);
130 return;
131 }
132
133 sc->sc_iot = iot;
134 sc->sc_ioh = ioh;
135 sc->sc_dmat = pa->pa_dmat;
136 if (!bha_find(iot, ioh, &bpd))
137 panic("bha_pci_attach: bha_find failed");
138
139 sc->sc_dmaflags = 0;
140
141 csr = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
142 pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
143 csr | PCI_COMMAND_MASTER_ENABLE | PCI_COMMAND_IO_ENABLE);
144
145 if (pci_intr_map(pa, &ih)) {
146 printf("%s: couldn't map interrupt\n", sc->sc_dev.dv_xname);
147 return;
148 }
149 intrstr = pci_intr_string(pc, ih);
150 sc->sc_ih = pci_intr_establish(pc, ih, IPL_BIO, bha_intr, sc);
151 if (sc->sc_ih == NULL) {
152 printf("%s: couldn't establish interrupt",
153 sc->sc_dev.dv_xname);
154 if (intrstr != NULL)
155 printf(" at %s", intrstr);
156 printf("\n");
157 return;
158 }
159 printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
160
161 bha_attach(sc, &bpd);
162
163 bha_disable_isacompat(sc);
164 }
165