mpt_pci.c revision 1.2 1 1.2 lukem /* $NetBSD: mpt_pci.c,v 1.2 2003/07/14 15:47:26 lukem Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*
4 1.1 thorpej * Copyright (c) 2003 Wasabi Systems, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8 1.1 thorpej *
9 1.1 thorpej * Redistribution and use in source and binary forms, with or without
10 1.1 thorpej * modification, are permitted provided that the following conditions
11 1.1 thorpej * are met:
12 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer.
14 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
16 1.1 thorpej * documentation and/or other materials provided with the distribution.
17 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
18 1.1 thorpej * must display the following acknowledgement:
19 1.1 thorpej * This product includes software developed for the NetBSD Project by
20 1.1 thorpej * Wasabi Systems, Inc.
21 1.1 thorpej * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.1 thorpej * or promote products derived from this software without specific prior
23 1.1 thorpej * written permission.
24 1.1 thorpej *
25 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
36 1.1 thorpej */
37 1.1 thorpej
38 1.1 thorpej /*
39 1.1 thorpej * mpt_pci.c:
40 1.1 thorpej *
41 1.1 thorpej * NetBSD PCI-specific routines for LSI Fusion adapters.
42 1.1 thorpej */
43 1.2 lukem
44 1.2 lukem #include <sys/cdefs.h>
45 1.2 lukem __KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.2 2003/07/14 15:47:26 lukem Exp $");
46 1.1 thorpej
47 1.1 thorpej #include <dev/ic/mpt.h> /* pulls in all headers */
48 1.1 thorpej
49 1.1 thorpej #include <dev/pci/pcireg.h>
50 1.1 thorpej #include <dev/pci/pcivar.h>
51 1.1 thorpej #include <dev/pci/pcidevs.h>
52 1.1 thorpej
53 1.1 thorpej #define MPT_PCI_MMBA (PCI_MAPREG_START+0x04)
54 1.1 thorpej
55 1.1 thorpej struct mpt_pci_softc {
56 1.1 thorpej mpt_softc_t sc_mpt;
57 1.1 thorpej
58 1.1 thorpej pci_chipset_tag_t sc_pc;
59 1.1 thorpej pcitag_t sc_tag;
60 1.1 thorpej
61 1.1 thorpej void *sc_ih;
62 1.1 thorpej
63 1.1 thorpej /* Saved volatile PCI configuration registers. */
64 1.1 thorpej pcireg_t sc_pci_csr;
65 1.1 thorpej pcireg_t sc_pci_bhlc;
66 1.1 thorpej pcireg_t sc_pci_io_bar;
67 1.1 thorpej pcireg_t sc_pci_mem0_bar[2];
68 1.1 thorpej pcireg_t sc_pci_mem1_bar[2];
69 1.1 thorpej pcireg_t sc_pci_rom_bar;
70 1.1 thorpej pcireg_t sc_pci_int;
71 1.1 thorpej pcireg_t sc_pci_pmcsr;
72 1.1 thorpej };
73 1.1 thorpej
74 1.1 thorpej static void mpt_pci_link_peer(mpt_softc_t *);
75 1.1 thorpej static void mpt_pci_read_config_regs(mpt_softc_t *);
76 1.1 thorpej static void mpt_pci_set_config_regs(mpt_softc_t *);
77 1.1 thorpej
78 1.1 thorpej #define MPP_F_FC 0x01 /* Fibre Channel adapter */
79 1.1 thorpej #define MPP_F_DUAL 0x02 /* Dual port adapter */
80 1.1 thorpej
81 1.1 thorpej static const struct mpt_pci_product {
82 1.1 thorpej pci_vendor_id_t mpp_vendor;
83 1.1 thorpej pci_product_id_t mpp_product;
84 1.1 thorpej int mpp_flags;
85 1.1 thorpej const char *mpp_name;
86 1.1 thorpej } mpt_pci_products[] = {
87 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030,
88 1.1 thorpej MPP_F_DUAL,
89 1.1 thorpej "LSI Logic 53c1030 Ultra320 SCSI" },
90 1.1 thorpej
91 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909,
92 1.1 thorpej MPP_F_FC,
93 1.1 thorpej "LSI Logic FC909 FC Adapter" },
94 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909A,
95 1.1 thorpej MPP_F_FC,
96 1.1 thorpej "LSI Logic FC909A FC Adapter" },
97 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929,
98 1.1 thorpej MPP_F_FC | MPP_F_DUAL,
99 1.1 thorpej "LSI Logic FC929 FC Adapter" },
100 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1,
101 1.1 thorpej MPP_F_FC | MPP_F_DUAL,
102 1.1 thorpej "LSI Logic FC929 FC Adapter" },
103 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919,
104 1.1 thorpej MPP_F_FC,
105 1.1 thorpej "LSI Logic FC919 FC Adapter" },
106 1.1 thorpej { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919_1,
107 1.1 thorpej MPP_F_FC,
108 1.1 thorpej "LSI Logic FC919 FC Adapter" },
109 1.1 thorpej
110 1.1 thorpej { 0, 0,
111 1.1 thorpej 0,
112 1.1 thorpej NULL },
113 1.1 thorpej };
114 1.1 thorpej
115 1.1 thorpej static const struct mpt_pci_product *
116 1.1 thorpej mpt_pci_lookup(const struct pci_attach_args *pa)
117 1.1 thorpej {
118 1.1 thorpej const struct mpt_pci_product *mpp;
119 1.1 thorpej
120 1.1 thorpej for (mpp = mpt_pci_products; mpp->mpp_name != NULL; mpp++) {
121 1.1 thorpej if (PCI_VENDOR(pa->pa_id) == mpp->mpp_vendor &&
122 1.1 thorpej PCI_PRODUCT(pa->pa_id) == mpp->mpp_product)
123 1.1 thorpej return (mpp);
124 1.1 thorpej }
125 1.1 thorpej return (NULL);
126 1.1 thorpej }
127 1.1 thorpej
128 1.1 thorpej static int
129 1.1 thorpej mpt_pci_match(struct device *parent, struct cfdata *cf, void *aux)
130 1.1 thorpej {
131 1.1 thorpej struct pci_attach_args *pa = aux;
132 1.1 thorpej
133 1.1 thorpej if (mpt_pci_lookup(pa) != NULL)
134 1.1 thorpej return (1);
135 1.1 thorpej
136 1.1 thorpej return (0);
137 1.1 thorpej }
138 1.1 thorpej
139 1.1 thorpej static void
140 1.1 thorpej mpt_pci_attach(struct device *parent, struct device *self, void *aux)
141 1.1 thorpej {
142 1.1 thorpej struct mpt_pci_softc *psc = (void *) self;
143 1.1 thorpej mpt_softc_t *mpt = &psc->sc_mpt;
144 1.1 thorpej struct pci_attach_args *pa = aux;
145 1.1 thorpej const struct mpt_pci_product *mpp;
146 1.1 thorpej pci_intr_handle_t ih;
147 1.1 thorpej const char *intrstr;
148 1.1 thorpej pcireg_t reg, memtype;
149 1.1 thorpej bus_space_tag_t memt;
150 1.1 thorpej bus_space_handle_t memh;
151 1.1 thorpej int memh_valid;
152 1.1 thorpej
153 1.1 thorpej mpp = mpt_pci_lookup(pa);
154 1.1 thorpej if (mpp == NULL) {
155 1.1 thorpej printf("\n");
156 1.1 thorpej panic("mpt_pci_attach");
157 1.1 thorpej }
158 1.1 thorpej
159 1.1 thorpej if (mpp->mpp_flags & MPP_F_FC) {
160 1.1 thorpej mpt->is_fc = 1;
161 1.1 thorpej aprint_naive(": Fibre Channel controller\n");
162 1.1 thorpej } else
163 1.1 thorpej aprint_naive(": SCSI controller\n");
164 1.1 thorpej aprint_normal(": %s\n", mpp->mpp_name);
165 1.1 thorpej
166 1.1 thorpej psc->sc_pc = pa->pa_pc;
167 1.1 thorpej psc->sc_tag = pa->pa_tag;
168 1.1 thorpej
169 1.1 thorpej mpt->sc_dmat = pa->pa_dmat;
170 1.1 thorpej mpt->sc_set_config_regs = mpt_pci_set_config_regs;
171 1.1 thorpej
172 1.1 thorpej /*
173 1.1 thorpej * Map the device.
174 1.1 thorpej */
175 1.1 thorpej memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, MPT_PCI_MMBA);
176 1.1 thorpej switch (memtype) {
177 1.1 thorpej case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
178 1.1 thorpej case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
179 1.1 thorpej memh_valid = (pci_mapreg_map(pa, MPT_PCI_MMBA,
180 1.1 thorpej memtype, 0, &memt, &memh, NULL, NULL) == 0);
181 1.1 thorpej break;
182 1.1 thorpej
183 1.1 thorpej default:
184 1.1 thorpej memh_valid = 0;
185 1.1 thorpej }
186 1.1 thorpej
187 1.1 thorpej if (memh_valid) {
188 1.1 thorpej mpt->sc_st = memt;
189 1.1 thorpej mpt->sc_sh = memh;
190 1.1 thorpej } else {
191 1.1 thorpej aprint_error("%s: unable to map device registers\n",
192 1.1 thorpej mpt->sc_dev.dv_xname);
193 1.1 thorpej return;
194 1.1 thorpej }
195 1.1 thorpej
196 1.1 thorpej /*
197 1.1 thorpej * Make sure the PCI command register is properly configured.
198 1.1 thorpej */
199 1.1 thorpej reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
200 1.1 thorpej reg |= PCI_COMMAND_MASTER_ENABLE;
201 1.1 thorpej /* XXX PCI_COMMAND_INVALIDATE_ENABLE */
202 1.1 thorpej /* XXX PCI_COMMAND_PARITY_ENABLE */
203 1.1 thorpej /* XXX PCI_COMMAND_SERR_ENABLE */
204 1.1 thorpej pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, reg);
205 1.1 thorpej
206 1.1 thorpej /*
207 1.1 thorpej * Ensure that the ROM is diabled.
208 1.1 thorpej */
209 1.1 thorpej reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM);
210 1.1 thorpej reg &= ~1;
211 1.1 thorpej pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM, reg);
212 1.1 thorpej
213 1.1 thorpej /*
214 1.1 thorpej * Map and establish our interrupt.
215 1.1 thorpej */
216 1.1 thorpej if (pci_intr_map(pa, &ih) != 0) {
217 1.1 thorpej aprint_error("%s: unable to map interrupt\n",
218 1.1 thorpej mpt->sc_dev.dv_xname);
219 1.1 thorpej return;
220 1.1 thorpej }
221 1.1 thorpej intrstr = pci_intr_string(pa->pa_pc, ih);
222 1.1 thorpej psc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, mpt_intr, mpt);
223 1.1 thorpej if (psc->sc_ih == NULL) {
224 1.1 thorpej aprint_error("%s: unable to establish interrupt",
225 1.1 thorpej mpt->sc_dev.dv_xname);
226 1.1 thorpej if (intrstr != NULL)
227 1.1 thorpej aprint_normal(" at %s", intrstr);
228 1.1 thorpej aprint_normal("\n");
229 1.1 thorpej return;
230 1.1 thorpej }
231 1.1 thorpej aprint_normal("%s: interrupting at %s\n", mpt->sc_dev.dv_xname,
232 1.1 thorpej intrstr);
233 1.1 thorpej
234 1.1 thorpej /* Disable interrupts on the part. */
235 1.1 thorpej mpt_disable_ints(mpt);
236 1.1 thorpej
237 1.1 thorpej /* Allocate DMA memory. */
238 1.1 thorpej if (mpt_dma_mem_alloc(mpt) != 0) {
239 1.1 thorpej aprint_error("%s: unable to allocate DMA memory\n",
240 1.1 thorpej mpt->sc_dev.dv_xname);
241 1.1 thorpej return;
242 1.1 thorpej }
243 1.1 thorpej
244 1.1 thorpej /*
245 1.1 thorpej * Save the PCI config register values.
246 1.1 thorpej *
247 1.1 thorpej * Hard resets are known to screw up the BAR for diagnostic
248 1.1 thorpej * memory accesses (Mem1).
249 1.1 thorpej *
250 1.1 thorpej * Using Mem1 is know to make the chip stop responding to
251 1.1 thorpej * configuration cycles, so we need to save it now.
252 1.1 thorpej */
253 1.1 thorpej mpt_pci_read_config_regs(mpt);
254 1.1 thorpej
255 1.1 thorpej /*
256 1.1 thorpej * If we're a dual-port adapter, try to find our peer. We
257 1.1 thorpej * need to fix his PCI config registers, too.
258 1.1 thorpej */
259 1.1 thorpej if (mpp->mpp_flags & MPP_F_DUAL)
260 1.1 thorpej mpt_pci_link_peer(mpt);
261 1.1 thorpej
262 1.1 thorpej /* Initialize the hardware. */
263 1.1 thorpej if (mpt_init(mpt, MPT_DB_INIT_HOST) != 0) {
264 1.1 thorpej /* Error message already printed. */
265 1.1 thorpej return;
266 1.1 thorpej }
267 1.1 thorpej
268 1.1 thorpej /* Attach to scsipi. */
269 1.1 thorpej mpt_scsipi_attach(mpt);
270 1.1 thorpej }
271 1.1 thorpej
272 1.1 thorpej CFATTACH_DECL(mpt_pci, sizeof(struct mpt_pci_softc),
273 1.1 thorpej mpt_pci_match, mpt_pci_attach, NULL, NULL);
274 1.1 thorpej
275 1.1 thorpej /*
276 1.1 thorpej * Find and remember our peer PCI function on a dual-port device.
277 1.1 thorpej */
278 1.1 thorpej static void
279 1.1 thorpej mpt_pci_link_peer(mpt_softc_t *mpt)
280 1.1 thorpej {
281 1.1 thorpej extern struct cfdriver mpt_cd;
282 1.1 thorpej
283 1.1 thorpej struct mpt_pci_softc *peer_psc, *psc = (void *) mpt;
284 1.1 thorpej struct device *dev;
285 1.1 thorpej int unit, b, d, f, peer_b, peer_d, peer_f;
286 1.1 thorpej
287 1.1 thorpej pci_decompose_tag(psc->sc_pc, psc->sc_tag, &b, &d, &f);
288 1.1 thorpej
289 1.1 thorpej for (unit = 0; unit < mpt_cd.cd_ndevs; unit++) {
290 1.1 thorpej if (unit == mpt->sc_dev.dv_unit)
291 1.1 thorpej continue;
292 1.1 thorpej dev = device_lookup(&mpt_cd, unit);
293 1.1 thorpej if (dev == NULL)
294 1.1 thorpej continue;
295 1.1 thorpej if (dev->dv_cfattach != &mpt_pci_ca)
296 1.1 thorpej continue;
297 1.1 thorpej peer_psc = (void *) dev;
298 1.1 thorpej if (peer_psc->sc_pc != psc->sc_pc)
299 1.1 thorpej continue;
300 1.1 thorpej pci_decompose_tag(peer_psc->sc_pc, peer_psc->sc_tag,
301 1.1 thorpej &peer_b, &peer_d, &peer_f);
302 1.1 thorpej if (peer_b == b && peer_d == d) {
303 1.1 thorpej if (mpt->verbose)
304 1.1 thorpej mpt_prt(mpt, "linking with peer: %s",
305 1.1 thorpej peer_psc->sc_mpt.sc_dev.dv_xname);
306 1.1 thorpej mpt->mpt2 = (mpt_softc_t *) peer_psc;
307 1.1 thorpej peer_psc->sc_mpt.mpt2 = mpt;
308 1.1 thorpej return;
309 1.1 thorpej }
310 1.1 thorpej }
311 1.1 thorpej }
312 1.1 thorpej
313 1.1 thorpej /*
314 1.1 thorpej * Save the volatile PCI configuration registers.
315 1.1 thorpej */
316 1.1 thorpej static void
317 1.1 thorpej mpt_pci_read_config_regs(mpt_softc_t *mpt)
318 1.1 thorpej {
319 1.1 thorpej struct mpt_pci_softc *psc = (void *) mpt;
320 1.1 thorpej
321 1.1 thorpej psc->sc_pci_csr = pci_conf_read(psc->sc_pc, psc->sc_tag,
322 1.1 thorpej PCI_COMMAND_STATUS_REG);
323 1.1 thorpej psc->sc_pci_bhlc = pci_conf_read(psc->sc_pc, psc->sc_tag,
324 1.1 thorpej PCI_BHLC_REG);
325 1.1 thorpej psc->sc_pci_io_bar = pci_conf_read(psc->sc_pc, psc->sc_tag,
326 1.1 thorpej PCI_MAPREG_START);
327 1.1 thorpej psc->sc_pci_mem0_bar[0] = pci_conf_read(psc->sc_pc, psc->sc_tag,
328 1.1 thorpej PCI_MAPREG_START+0x04);
329 1.1 thorpej psc->sc_pci_mem0_bar[1] = pci_conf_read(psc->sc_pc, psc->sc_tag,
330 1.1 thorpej PCI_MAPREG_START+0x08);
331 1.1 thorpej psc->sc_pci_mem1_bar[0] = pci_conf_read(psc->sc_pc, psc->sc_tag,
332 1.1 thorpej PCI_MAPREG_START+0x0c);
333 1.1 thorpej psc->sc_pci_mem1_bar[1] = pci_conf_read(psc->sc_pc, psc->sc_tag,
334 1.1 thorpej PCI_MAPREG_START+0x10);
335 1.1 thorpej psc->sc_pci_rom_bar = pci_conf_read(psc->sc_pc, psc->sc_tag,
336 1.1 thorpej PCI_MAPREG_ROM);
337 1.1 thorpej psc->sc_pci_int = pci_conf_read(psc->sc_pc, psc->sc_tag,
338 1.1 thorpej PCI_INTERRUPT_REG);
339 1.1 thorpej psc->sc_pci_pmcsr = pci_conf_read(psc->sc_pc, psc->sc_tag, 0x44);
340 1.1 thorpej }
341 1.1 thorpej
342 1.1 thorpej /*
343 1.1 thorpej * Restore the volatile PCI configuration registers.
344 1.1 thorpej */
345 1.1 thorpej static void
346 1.1 thorpej mpt_pci_set_config_regs(mpt_softc_t *mpt)
347 1.1 thorpej {
348 1.1 thorpej struct mpt_pci_softc *psc = (void *) mpt;
349 1.1 thorpej
350 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_COMMAND_STATUS_REG,
351 1.1 thorpej psc->sc_pci_csr);
352 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_BHLC_REG,
353 1.1 thorpej psc->sc_pci_bhlc);
354 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START,
355 1.1 thorpej psc->sc_pci_io_bar);
356 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x04,
357 1.1 thorpej psc->sc_pci_mem0_bar[0]);
358 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x08,
359 1.1 thorpej psc->sc_pci_mem0_bar[1]);
360 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x0c,
361 1.1 thorpej psc->sc_pci_mem1_bar[0]);
362 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x10,
363 1.1 thorpej psc->sc_pci_mem1_bar[1]);
364 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_ROM,
365 1.1 thorpej psc->sc_pci_rom_bar);
366 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_INTERRUPT_REG,
367 1.1 thorpej psc->sc_pci_int);
368 1.1 thorpej pci_conf_write(psc->sc_pc, psc->sc_tag, 0x44, psc->sc_pci_pmcsr);
369 1.1 thorpej }
370