aceride.c revision 1.27 1 1.27 nakayama /* $NetBSD: aceride.c,v 1.27 2010/05/08 19:49:02 nakayama Exp $ */
2 1.1 bouyer
3 1.1 bouyer /*
4 1.1 bouyer * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
5 1.1 bouyer *
6 1.1 bouyer * Redistribution and use in source and binary forms, with or without
7 1.1 bouyer * modification, are permitted provided that the following conditions
8 1.1 bouyer * are met:
9 1.1 bouyer * 1. Redistributions of source code must retain the above copyright
10 1.1 bouyer * notice, this list of conditions and the following disclaimer.
11 1.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 bouyer * notice, this list of conditions and the following disclaimer in the
13 1.1 bouyer * documentation and/or other materials provided with the distribution.
14 1.1 bouyer *
15 1.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 1.1 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 1.1 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 1.14 perry * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 1.1 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 1.1 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 1.1 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 1.1 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 1.1 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 1.1 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 1.1 bouyer */
26 1.1 bouyer
27 1.15 lukem #include <sys/cdefs.h>
28 1.27 nakayama __KERNEL_RCSID(0, "$NetBSD: aceride.c,v 1.27 2010/05/08 19:49:02 nakayama Exp $");
29 1.15 lukem
30 1.1 bouyer #include <sys/param.h>
31 1.1 bouyer #include <sys/systm.h>
32 1.1 bouyer
33 1.1 bouyer #include <dev/pci/pcivar.h>
34 1.1 bouyer #include <dev/pci/pcidevs.h>
35 1.1 bouyer #include <dev/pci/pciidereg.h>
36 1.1 bouyer #include <dev/pci/pciidevar.h>
37 1.1 bouyer #include <dev/pci/pciide_acer_reg.h>
38 1.1 bouyer
39 1.16 bouyer static int acer_pcib_match(struct pci_attach_args *);
40 1.16 bouyer static void acer_do_reset(struct ata_channel *, int);
41 1.2 thorpej static void acer_chip_map(struct pciide_softc*, struct pci_attach_args*);
42 1.10 thorpej static void acer_setup_channel(struct ata_channel*);
43 1.2 thorpej static int acer_pci_intr(void *);
44 1.1 bouyer
45 1.25 cube static int aceride_match(device_t, cfdata_t, void *);
46 1.25 cube static void aceride_attach(device_t, device_t, void *);
47 1.1 bouyer
48 1.16 bouyer struct aceride_softc {
49 1.16 bouyer struct pciide_softc pciide_sc;
50 1.16 bouyer struct pci_attach_args pcib_pa;
51 1.16 bouyer };
52 1.16 bouyer
53 1.25 cube CFATTACH_DECL_NEW(aceride, sizeof(struct aceride_softc),
54 1.1 bouyer aceride_match, aceride_attach, NULL, NULL);
55 1.1 bouyer
56 1.2 thorpej static const struct pciide_product_desc pciide_acer_products[] = {
57 1.1 bouyer { PCI_PRODUCT_ALI_M5229,
58 1.1 bouyer 0,
59 1.1 bouyer "Acer Labs M5229 UDMA IDE Controller",
60 1.1 bouyer acer_chip_map,
61 1.1 bouyer },
62 1.1 bouyer { 0,
63 1.1 bouyer 0,
64 1.1 bouyer NULL,
65 1.1 bouyer NULL
66 1.1 bouyer }
67 1.1 bouyer };
68 1.1 bouyer
69 1.2 thorpej static int
70 1.25 cube aceride_match(device_t parent, cfdata_t match, void *aux)
71 1.1 bouyer {
72 1.1 bouyer struct pci_attach_args *pa = aux;
73 1.1 bouyer
74 1.3 mycroft if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI &&
75 1.3 mycroft PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
76 1.3 mycroft PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
77 1.1 bouyer if (pciide_lookup_product(pa->pa_id, pciide_acer_products))
78 1.1 bouyer return (2);
79 1.1 bouyer }
80 1.1 bouyer return (0);
81 1.1 bouyer }
82 1.1 bouyer
83 1.2 thorpej static void
84 1.25 cube aceride_attach(device_t parent, device_t self, void *aux)
85 1.1 bouyer {
86 1.1 bouyer struct pci_attach_args *pa = aux;
87 1.25 cube struct pciide_softc *sc = device_private(self);
88 1.25 cube
89 1.25 cube sc->sc_wdcdev.sc_atac.atac_dev = self;
90 1.1 bouyer
91 1.1 bouyer pciide_common_attach(sc, pa,
92 1.1 bouyer pciide_lookup_product(pa->pa_id, pciide_acer_products));
93 1.1 bouyer }
94 1.1 bouyer
95 1.16 bouyer static int
96 1.16 bouyer acer_pcib_match(struct pci_attach_args *pa)
97 1.16 bouyer {
98 1.16 bouyer /*
99 1.16 bouyer * we need to access the PCI config space of the pcib, see
100 1.16 bouyer * acer_do_reset()
101 1.16 bouyer */
102 1.16 bouyer if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
103 1.16 bouyer PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA &&
104 1.16 bouyer PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ALI &&
105 1.27 nakayama PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_ALI_M1533)
106 1.16 bouyer return 1;
107 1.16 bouyer return 0;
108 1.16 bouyer }
109 1.16 bouyer
110 1.2 thorpej static void
111 1.2 thorpej acer_chip_map(struct pciide_softc *sc, struct pci_attach_args *pa)
112 1.1 bouyer {
113 1.1 bouyer struct pciide_channel *cp;
114 1.1 bouyer int channel;
115 1.1 bouyer pcireg_t cr, interface;
116 1.1 bouyer bus_size_t cmdsize, ctlsize;
117 1.1 bouyer pcireg_t rev = PCI_REVISION(pa->pa_class);
118 1.16 bouyer struct aceride_softc *acer_sc = (struct aceride_softc *)sc;
119 1.1 bouyer
120 1.1 bouyer if (pciide_chipen(sc, pa) == 0)
121 1.1 bouyer return;
122 1.1 bouyer
123 1.25 cube aprint_verbose_dev(sc->sc_wdcdev.sc_atac.atac_dev,
124 1.25 cube "bus-master DMA support present");
125 1.1 bouyer pciide_mapreg_dma(sc, pa);
126 1.23 ad aprint_verbose("\n");
127 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_cap = ATAC_CAP_DATA16 | ATAC_CAP_DATA32;
128 1.1 bouyer if (sc->sc_dma_ok) {
129 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
130 1.1 bouyer if (rev >= 0x20) {
131 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_UDMA;
132 1.22 christos if (rev >= 0xC7)
133 1.22 christos sc->sc_wdcdev.sc_atac.atac_udma_cap = 6;
134 1.22 christos else if (rev >= 0xC4)
135 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
136 1.1 bouyer else if (rev >= 0xC2)
137 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
138 1.1 bouyer else
139 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_udma_cap = 2;
140 1.1 bouyer }
141 1.1 bouyer sc->sc_wdcdev.irqack = pciide_irqack;
142 1.1 bouyer }
143 1.14 perry
144 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
145 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
146 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_set_modes = acer_setup_channel;
147 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_channels = sc->wdc_chanarray;
148 1.12 thorpej sc->sc_wdcdev.sc_atac.atac_nchannels = PCIIDE_NUM_CHANNELS;
149 1.1 bouyer
150 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CDRC,
151 1.1 bouyer (pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CDRC) |
152 1.1 bouyer ACER_CDRC_DMA_EN) & ~ACER_CDRC_FIFO_DISABLE);
153 1.1 bouyer
154 1.1 bouyer /* Enable "microsoft register bits" R/W. */
155 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR3,
156 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR3) | ACER_CCAR3_PI);
157 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR1,
158 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR1) &
159 1.1 bouyer ~(ACER_CHANSTATUS_RO|PCIIDE_CHAN_RO(0)|PCIIDE_CHAN_RO(1)));
160 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR2,
161 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR2) &
162 1.1 bouyer ~ACER_CHANSTATUSREGS_RO);
163 1.1 bouyer cr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG);
164 1.1 bouyer cr |= (PCIIDE_CHANSTATUS_EN << PCI_INTERFACE_SHIFT);
165 1.24 chris
166 1.24 chris {
167 1.24 chris /*
168 1.24 chris * some BIOSes (port-cats ABLE) enable native mode, but don't
169 1.24 chris * setup everything correctly, so allow the forcing of
170 1.24 chris * compat mode
171 1.24 chris */
172 1.24 chris bool force_compat_mode;
173 1.24 chris bool property_is_set;
174 1.24 chris property_is_set = prop_dictionary_get_bool(
175 1.25 cube device_properties(sc->sc_wdcdev.sc_atac.atac_dev),
176 1.24 chris "ali1543-ide-force-compat-mode",
177 1.24 chris &force_compat_mode);
178 1.24 chris if (property_is_set && force_compat_mode) {
179 1.24 chris cr &= ~((PCIIDE_INTERFACE_PCI(0)
180 1.24 chris | PCIIDE_INTERFACE_PCI(1))
181 1.24 chris << PCI_INTERFACE_SHIFT);
182 1.24 chris }
183 1.24 chris }
184 1.24 chris
185 1.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG, cr);
186 1.1 bouyer /* Don't use cr, re-read the real register content instead */
187 1.1 bouyer interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc, sc->sc_tag,
188 1.1 bouyer PCI_CLASS_REG));
189 1.1 bouyer
190 1.1 bouyer /* From linux: enable "Cable Detection" */
191 1.1 bouyer if (rev >= 0xC2) {
192 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_0x4B,
193 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_0x4B)
194 1.1 bouyer | ACER_0x4B_CDETECT);
195 1.1 bouyer }
196 1.1 bouyer
197 1.10 thorpej wdc_allocate_regs(&sc->sc_wdcdev);
198 1.16 bouyer if (rev == 0xC3) {
199 1.16 bouyer /* install reset bug workaround */
200 1.16 bouyer if (pci_find_device(&acer_sc->pcib_pa, acer_pcib_match) == 0) {
201 1.25 cube aprint_error_dev(sc->sc_wdcdev.sc_atac.atac_dev,
202 1.25 cube "WARNING: can't find pci-isa bridge\n");
203 1.16 bouyer } else
204 1.16 bouyer sc->sc_wdcdev.reset = acer_do_reset;
205 1.16 bouyer }
206 1.10 thorpej
207 1.12 thorpej for (channel = 0; channel < sc->sc_wdcdev.sc_atac.atac_nchannels;
208 1.12 thorpej channel++) {
209 1.1 bouyer cp = &sc->pciide_channels[channel];
210 1.1 bouyer if (pciide_chansetup(sc, channel, interface) == 0)
211 1.1 bouyer continue;
212 1.1 bouyer if ((interface & PCIIDE_CHAN_EN(channel)) == 0) {
213 1.25 cube aprint_normal_dev(sc->sc_wdcdev.sc_atac.atac_dev,
214 1.25 cube "%s channel ignored (disabled)\n", cp->name);
215 1.10 thorpej cp->ata_channel.ch_flags |= ATACH_DISABLED;
216 1.1 bouyer continue;
217 1.1 bouyer }
218 1.1 bouyer /* newer controllers seems to lack the ACER_CHIDS. Sigh */
219 1.1 bouyer pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
220 1.1 bouyer (rev >= 0xC2) ? pciide_pci_intr : acer_pci_intr);
221 1.1 bouyer }
222 1.1 bouyer }
223 1.1 bouyer
224 1.2 thorpej static void
225 1.16 bouyer acer_do_reset(struct ata_channel *chp, int poll)
226 1.16 bouyer {
227 1.16 bouyer struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
228 1.16 bouyer struct aceride_softc *acer_sc = (struct aceride_softc *)sc;
229 1.16 bouyer u_int8_t reg;
230 1.16 bouyer
231 1.16 bouyer /*
232 1.16 bouyer * From OpenSolaris: after a reset we need to disable/enable the
233 1.16 bouyer * corresponding channel, or data corruption will occur in
234 1.16 bouyer * UltraDMA modes
235 1.16 bouyer */
236 1.16 bouyer
237 1.16 bouyer wdc_do_reset(chp, poll);
238 1.16 bouyer reg = pciide_pci_read(acer_sc->pcib_pa.pa_pc, acer_sc->pcib_pa.pa_tag,
239 1.16 bouyer ACER_PCIB_CTRL);
240 1.16 bouyer pciide_pci_write(acer_sc->pcib_pa.pa_pc, acer_sc->pcib_pa.pa_tag,
241 1.18 bouyer ACER_PCIB_CTRL, reg & ~ACER_PCIB_CTRL_ENCHAN(chp->ch_channel));
242 1.16 bouyer delay(1000);
243 1.16 bouyer pciide_pci_write(acer_sc->pcib_pa.pa_pc, acer_sc->pcib_pa.pa_tag,
244 1.16 bouyer ACER_PCIB_CTRL, reg);
245 1.16 bouyer }
246 1.16 bouyer
247 1.16 bouyer static void
248 1.10 thorpej acer_setup_channel(struct ata_channel *chp)
249 1.1 bouyer {
250 1.1 bouyer struct ata_drive_datas *drvp;
251 1.13 thorpej int drive, s;
252 1.1 bouyer u_int32_t acer_fifo_udma;
253 1.1 bouyer u_int32_t idedma_ctl;
254 1.1 bouyer struct pciide_channel *cp = (struct pciide_channel*)chp;
255 1.11 thorpej struct pciide_softc *sc = CHAN_TO_PCIIDE(chp);
256 1.1 bouyer
257 1.1 bouyer idedma_ctl = 0;
258 1.1 bouyer acer_fifo_udma = pci_conf_read(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA);
259 1.14 perry ATADEBUG_PRINT(("acer_setup_channel: old fifo/udma reg 0x%x\n",
260 1.1 bouyer acer_fifo_udma), DEBUG_PROBE);
261 1.1 bouyer /* setup DMA if needed */
262 1.1 bouyer pciide_channel_dma_setup(cp);
263 1.1 bouyer
264 1.1 bouyer if ((chp->ch_drive[0].drive_flags | chp->ch_drive[1].drive_flags) &
265 1.1 bouyer DRIVE_UDMA) { /* check 80 pins cable */
266 1.1 bouyer if (pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_0x4A) &
267 1.6 thorpej ACER_0x4A_80PIN(chp->ch_channel)) {
268 1.1 bouyer if (chp->ch_drive[0].UDMA_mode > 2)
269 1.1 bouyer chp->ch_drive[0].UDMA_mode = 2;
270 1.1 bouyer if (chp->ch_drive[1].UDMA_mode > 2)
271 1.1 bouyer chp->ch_drive[1].UDMA_mode = 2;
272 1.1 bouyer }
273 1.1 bouyer }
274 1.1 bouyer
275 1.1 bouyer for (drive = 0; drive < 2; drive++) {
276 1.1 bouyer drvp = &chp->ch_drive[drive];
277 1.1 bouyer /* If no drive, skip */
278 1.1 bouyer if ((drvp->drive_flags & DRIVE) == 0)
279 1.1 bouyer continue;
280 1.9 thorpej ATADEBUG_PRINT(("acer_setup_channel: old timings reg for "
281 1.6 thorpej "channel %d drive %d 0x%x\n", chp->ch_channel, drive,
282 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag,
283 1.6 thorpej ACER_IDETIM(chp->ch_channel, drive))), DEBUG_PROBE);
284 1.1 bouyer /* clear FIFO/DMA mode */
285 1.6 thorpej acer_fifo_udma &= ~(ACER_FTH_OPL(chp->ch_channel, drive, 0x3) |
286 1.6 thorpej ACER_UDMA_EN(chp->ch_channel, drive) |
287 1.6 thorpej ACER_UDMA_TIM(chp->ch_channel, drive, 0x7));
288 1.1 bouyer
289 1.1 bouyer /* add timing values, setup DMA if needed */
290 1.1 bouyer if ((drvp->drive_flags & DRIVE_DMA) == 0 &&
291 1.1 bouyer (drvp->drive_flags & DRIVE_UDMA) == 0) {
292 1.1 bouyer acer_fifo_udma |=
293 1.6 thorpej ACER_FTH_OPL(chp->ch_channel, drive, 0x1);
294 1.1 bouyer goto pio;
295 1.1 bouyer }
296 1.1 bouyer
297 1.6 thorpej acer_fifo_udma |= ACER_FTH_OPL(chp->ch_channel, drive, 0x2);
298 1.1 bouyer if (drvp->drive_flags & DRIVE_UDMA) {
299 1.1 bouyer /* use Ultra/DMA */
300 1.13 thorpej s = splbio();
301 1.1 bouyer drvp->drive_flags &= ~DRIVE_DMA;
302 1.13 thorpej splx(s);
303 1.6 thorpej acer_fifo_udma |= ACER_UDMA_EN(chp->ch_channel, drive);
304 1.14 perry acer_fifo_udma |=
305 1.6 thorpej ACER_UDMA_TIM(chp->ch_channel, drive,
306 1.1 bouyer acer_udma[drvp->UDMA_mode]);
307 1.1 bouyer /* XXX disable if one drive < UDMA3 ? */
308 1.1 bouyer if (drvp->UDMA_mode >= 3) {
309 1.1 bouyer pciide_pci_write(sc->sc_pc, sc->sc_tag,
310 1.1 bouyer ACER_0x4B,
311 1.1 bouyer pciide_pci_read(sc->sc_pc, sc->sc_tag,
312 1.1 bouyer ACER_0x4B) | ACER_0x4B_UDMA66);
313 1.1 bouyer }
314 1.1 bouyer } else {
315 1.1 bouyer /*
316 1.1 bouyer * use Multiword DMA
317 1.1 bouyer * Timings will be used for both PIO and DMA,
318 1.1 bouyer * so adjust DMA mode if needed
319 1.1 bouyer */
320 1.1 bouyer if (drvp->PIO_mode > (drvp->DMA_mode + 2))
321 1.1 bouyer drvp->PIO_mode = drvp->DMA_mode + 2;
322 1.1 bouyer if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
323 1.1 bouyer drvp->DMA_mode = (drvp->PIO_mode > 2) ?
324 1.1 bouyer drvp->PIO_mode - 2 : 0;
325 1.1 bouyer if (drvp->DMA_mode == 0)
326 1.1 bouyer drvp->PIO_mode = 0;
327 1.1 bouyer }
328 1.1 bouyer idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
329 1.1 bouyer pio: pciide_pci_write(sc->sc_pc, sc->sc_tag,
330 1.6 thorpej ACER_IDETIM(chp->ch_channel, drive),
331 1.1 bouyer acer_pio[drvp->PIO_mode]);
332 1.1 bouyer }
333 1.9 thorpej ATADEBUG_PRINT(("acer_setup_channel: new fifo/udma reg 0x%x\n",
334 1.1 bouyer acer_fifo_udma), DEBUG_PROBE);
335 1.1 bouyer pci_conf_write(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA, acer_fifo_udma);
336 1.1 bouyer if (idedma_ctl != 0) {
337 1.1 bouyer /* Add software bits in status register */
338 1.4 fvdl bus_space_write_1(sc->sc_dma_iot, cp->dma_iohs[IDEDMA_CTL], 0,
339 1.1 bouyer idedma_ctl);
340 1.1 bouyer }
341 1.1 bouyer }
342 1.1 bouyer
343 1.2 thorpej static int
344 1.2 thorpej acer_pci_intr(void *arg)
345 1.1 bouyer {
346 1.1 bouyer struct pciide_softc *sc = arg;
347 1.1 bouyer struct pciide_channel *cp;
348 1.10 thorpej struct ata_channel *wdc_cp;
349 1.14 perry int i, rv, crv;
350 1.1 bouyer u_int32_t chids;
351 1.1 bouyer
352 1.1 bouyer rv = 0;
353 1.1 bouyer chids = pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CHIDS);
354 1.12 thorpej for (i = 0; i < sc->sc_wdcdev.sc_atac.atac_nchannels; i++) {
355 1.1 bouyer cp = &sc->pciide_channels[i];
356 1.10 thorpej wdc_cp = &cp->ata_channel;
357 1.1 bouyer /* If a compat channel skip. */
358 1.1 bouyer if (cp->compat)
359 1.1 bouyer continue;
360 1.1 bouyer if (chids & ACER_CHIDS_INT(i)) {
361 1.1 bouyer crv = wdcintr(wdc_cp);
362 1.7 bouyer if (crv == 0) {
363 1.25 cube aprint_error("%s:%d: bogus intr\n",
364 1.25 cube device_xname(
365 1.25 cube sc->sc_wdcdev.sc_atac.atac_dev), i);
366 1.7 bouyer pciide_irqack(wdc_cp);
367 1.7 bouyer } else
368 1.1 bouyer rv = 1;
369 1.1 bouyer }
370 1.1 bouyer }
371 1.1 bouyer return rv;
372 1.1 bouyer }
373