pciide.c revision 1.113 1 /* $NetBSD: pciide.c,v 1.113 2001/05/04 15:25:05 bouyer Exp $ */
2
3
4 /*
5 * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
35
36
37 /*
38 * Copyright (c) 1996, 1998 Christopher G. Demetriou. All rights reserved.
39 *
40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions
42 * are met:
43 * 1. Redistributions of source code must retain the above copyright
44 * notice, this list of conditions and the following disclaimer.
45 * 2. Redistributions in binary form must reproduce the above copyright
46 * notice, this list of conditions and the following disclaimer in the
47 * documentation and/or other materials provided with the distribution.
48 * 3. All advertising materials mentioning features or use of this software
49 * must display the following acknowledgement:
50 * This product includes software developed by Christopher G. Demetriou
51 * for the NetBSD Project.
52 * 4. The name of the author may not be used to endorse or promote products
53 * derived from this software without specific prior written permission
54 *
55 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
56 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
57 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
58 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
59 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
60 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
61 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
62 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
63 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
64 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
65 */
66
67 /*
68 * PCI IDE controller driver.
69 *
70 * Author: Christopher G. Demetriou, March 2, 1998 (derived from NetBSD
71 * sys/dev/pci/ppb.c, revision 1.16).
72 *
73 * See "PCI IDE Controller Specification, Revision 1.0 3/4/94" and
74 * "Programming Interface for Bus Master IDE Controller, Revision 1.0
75 * 5/16/94" from the PCI SIG.
76 *
77 */
78
79 #ifndef WDCDEBUG
80 #define WDCDEBUG
81 #endif
82
83 #define DEBUG_DMA 0x01
84 #define DEBUG_XFERS 0x02
85 #define DEBUG_FUNCS 0x08
86 #define DEBUG_PROBE 0x10
87 #ifdef WDCDEBUG
88 int wdcdebug_pciide_mask = 0;
89 #define WDCDEBUG_PRINT(args, level) \
90 if (wdcdebug_pciide_mask & (level)) printf args
91 #else
92 #define WDCDEBUG_PRINT(args, level)
93 #endif
94 #include <sys/param.h>
95 #include <sys/systm.h>
96 #include <sys/device.h>
97 #include <sys/malloc.h>
98
99 #include <uvm/uvm_extern.h>
100
101 #include <machine/endian.h>
102
103 #include <dev/pci/pcireg.h>
104 #include <dev/pci/pcivar.h>
105 #include <dev/pci/pcidevs.h>
106 #include <dev/pci/pciidereg.h>
107 #include <dev/pci/pciidevar.h>
108 #include <dev/pci/pciide_piix_reg.h>
109 #include <dev/pci/pciide_amd_reg.h>
110 #include <dev/pci/pciide_apollo_reg.h>
111 #include <dev/pci/pciide_cmd_reg.h>
112 #include <dev/pci/pciide_cy693_reg.h>
113 #include <dev/pci/pciide_sis_reg.h>
114 #include <dev/pci/pciide_acer_reg.h>
115 #include <dev/pci/pciide_pdc202xx_reg.h>
116 #include <dev/pci/pciide_opti_reg.h>
117 #include <dev/pci/pciide_hpt_reg.h>
118 #include <dev/pci/pciide_acard_reg.h>
119 #include <dev/pci/cy82c693var.h>
120
121 #include "opt_pciide.h"
122
123 /* inlines for reading/writing 8-bit PCI registers */
124 static __inline u_int8_t pciide_pci_read __P((pci_chipset_tag_t, pcitag_t,
125 int));
126 static __inline void pciide_pci_write __P((pci_chipset_tag_t, pcitag_t,
127 int, u_int8_t));
128
129 static __inline u_int8_t
130 pciide_pci_read(pc, pa, reg)
131 pci_chipset_tag_t pc;
132 pcitag_t pa;
133 int reg;
134 {
135
136 return (pci_conf_read(pc, pa, (reg & ~0x03)) >>
137 ((reg & 0x03) * 8) & 0xff);
138 }
139
140 static __inline void
141 pciide_pci_write(pc, pa, reg, val)
142 pci_chipset_tag_t pc;
143 pcitag_t pa;
144 int reg;
145 u_int8_t val;
146 {
147 pcireg_t pcival;
148
149 pcival = pci_conf_read(pc, pa, (reg & ~0x03));
150 pcival &= ~(0xff << ((reg & 0x03) * 8));
151 pcival |= (val << ((reg & 0x03) * 8));
152 pci_conf_write(pc, pa, (reg & ~0x03), pcival);
153 }
154
155 void default_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
156
157 void piix_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
158 void piix_setup_channel __P((struct channel_softc*));
159 void piix3_4_setup_channel __P((struct channel_softc*));
160 static u_int32_t piix_setup_idetim_timings __P((u_int8_t, u_int8_t, u_int8_t));
161 static u_int32_t piix_setup_idetim_drvs __P((struct ata_drive_datas*));
162 static u_int32_t piix_setup_sidetim_timings __P((u_int8_t, u_int8_t, u_int8_t));
163
164 void amd756_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
165 void amd756_setup_channel __P((struct channel_softc*));
166
167 void apollo_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
168 void apollo_setup_channel __P((struct channel_softc*));
169
170 void cmd_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
171 void cmd0643_9_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
172 void cmd0643_9_setup_channel __P((struct channel_softc*));
173 void cmd_channel_map __P((struct pci_attach_args *,
174 struct pciide_softc *, int));
175 int cmd_pci_intr __P((void *));
176 void cmd646_9_irqack __P((struct channel_softc *));
177
178 void cy693_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
179 void cy693_setup_channel __P((struct channel_softc*));
180
181 void sis_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
182 void sis_setup_channel __P((struct channel_softc*));
183
184 void acer_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
185 void acer_setup_channel __P((struct channel_softc*));
186 int acer_pci_intr __P((void *));
187
188 void pdc202xx_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
189 void pdc202xx_setup_channel __P((struct channel_softc*));
190 int pdc202xx_pci_intr __P((void *));
191 int pdc20265_pci_intr __P((void *));
192
193 void opti_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
194 void opti_setup_channel __P((struct channel_softc*));
195
196 void hpt_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
197 void hpt_setup_channel __P((struct channel_softc*));
198 int hpt_pci_intr __P((void *));
199
200 void acard_chip_map __P((struct pciide_softc*, struct pci_attach_args*));
201 void acard_setup_channel __P((struct channel_softc*));
202 int acard_pci_intr __P((void *));
203
204 void pciide_channel_dma_setup __P((struct pciide_channel *));
205 int pciide_dma_table_setup __P((struct pciide_softc*, int, int));
206 int pciide_dma_init __P((void*, int, int, void *, size_t, int));
207 void pciide_dma_start __P((void*, int, int));
208 int pciide_dma_finish __P((void*, int, int, int));
209 void pciide_irqack __P((struct channel_softc *));
210 void pciide_print_modes __P((struct pciide_channel *));
211
212 struct pciide_product_desc {
213 u_int32_t ide_product;
214 int ide_flags;
215 const char *ide_name;
216 /* map and setup chip, probe drives */
217 void (*chip_map) __P((struct pciide_softc*, struct pci_attach_args*));
218 };
219
220 /* Flags for ide_flags */
221 #define IDE_PCI_CLASS_OVERRIDE 0x0001 /* accept even if class != pciide */
222 #define IDE_16BIT_IOSPACE 0x0002 /* I/O space BARS ignore upper word */
223
224 /* Default product description for devices not known from this controller */
225 const struct pciide_product_desc default_product_desc = {
226 0,
227 0,
228 "Generic PCI IDE controller",
229 default_chip_map,
230 };
231
232 const struct pciide_product_desc pciide_intel_products[] = {
233 { PCI_PRODUCT_INTEL_82092AA,
234 0,
235 "Intel 82092AA IDE controller",
236 default_chip_map,
237 },
238 { PCI_PRODUCT_INTEL_82371FB_IDE,
239 0,
240 "Intel 82371FB IDE controller (PIIX)",
241 piix_chip_map,
242 },
243 { PCI_PRODUCT_INTEL_82371SB_IDE,
244 0,
245 "Intel 82371SB IDE Interface (PIIX3)",
246 piix_chip_map,
247 },
248 { PCI_PRODUCT_INTEL_82371AB_IDE,
249 0,
250 "Intel 82371AB IDE controller (PIIX4)",
251 piix_chip_map,
252 },
253 { PCI_PRODUCT_INTEL_82440MX_IDE,
254 0,
255 "Intel 82440MX IDE controller",
256 piix_chip_map
257 },
258 { PCI_PRODUCT_INTEL_82801AA_IDE,
259 0,
260 "Intel 82801AA IDE Controller (ICH)",
261 piix_chip_map,
262 },
263 { PCI_PRODUCT_INTEL_82801AB_IDE,
264 0,
265 "Intel 82801AB IDE Controller (ICH0)",
266 piix_chip_map,
267 },
268 { PCI_PRODUCT_INTEL_82801BA_IDE,
269 0,
270 "Intel 82801BA IDE Controller (ICH2)",
271 piix_chip_map,
272 },
273 { PCI_PRODUCT_INTEL_82801BAM_IDE,
274 0,
275 "Intel 82801BAM IDE Controller (ICH2)",
276 piix_chip_map,
277 },
278 { 0,
279 0,
280 NULL,
281 NULL
282 }
283 };
284
285 const struct pciide_product_desc pciide_amd_products[] = {
286 { PCI_PRODUCT_AMD_PBC756_IDE,
287 0,
288 "Advanced Micro Devices AMD756 IDE Controller",
289 amd756_chip_map
290 },
291 { 0,
292 0,
293 NULL,
294 NULL
295 }
296 };
297
298 const struct pciide_product_desc pciide_cmd_products[] = {
299 { PCI_PRODUCT_CMDTECH_640,
300 0,
301 "CMD Technology PCI0640",
302 cmd_chip_map
303 },
304 { PCI_PRODUCT_CMDTECH_643,
305 0,
306 "CMD Technology PCI0643",
307 cmd0643_9_chip_map,
308 },
309 { PCI_PRODUCT_CMDTECH_646,
310 0,
311 "CMD Technology PCI0646",
312 cmd0643_9_chip_map,
313 },
314 { PCI_PRODUCT_CMDTECH_648,
315 IDE_PCI_CLASS_OVERRIDE,
316 "CMD Technology PCI0648",
317 cmd0643_9_chip_map,
318 },
319 { PCI_PRODUCT_CMDTECH_649,
320 IDE_PCI_CLASS_OVERRIDE,
321 "CMD Technology PCI0649",
322 cmd0643_9_chip_map,
323 },
324 { 0,
325 0,
326 NULL,
327 NULL
328 }
329 };
330
331 const struct pciide_product_desc pciide_via_products[] = {
332 { PCI_PRODUCT_VIATECH_VT82C586_IDE,
333 0,
334 NULL,
335 apollo_chip_map,
336 },
337 { PCI_PRODUCT_VIATECH_VT82C586A_IDE,
338 0,
339 NULL,
340 apollo_chip_map,
341 },
342 { 0,
343 0,
344 NULL,
345 NULL
346 }
347 };
348
349 const struct pciide_product_desc pciide_cypress_products[] = {
350 { PCI_PRODUCT_CONTAQ_82C693,
351 IDE_16BIT_IOSPACE,
352 "Cypress 82C693 IDE Controller",
353 cy693_chip_map,
354 },
355 { 0,
356 0,
357 NULL,
358 NULL
359 }
360 };
361
362 const struct pciide_product_desc pciide_sis_products[] = {
363 { PCI_PRODUCT_SIS_5597_IDE,
364 0,
365 "Silicon Integrated System 5597/5598 IDE controller",
366 sis_chip_map,
367 },
368 { 0,
369 0,
370 NULL,
371 NULL
372 }
373 };
374
375 const struct pciide_product_desc pciide_acer_products[] = {
376 { PCI_PRODUCT_ALI_M5229,
377 0,
378 "Acer Labs M5229 UDMA IDE Controller",
379 acer_chip_map,
380 },
381 { 0,
382 0,
383 NULL,
384 NULL
385 }
386 };
387
388 const struct pciide_product_desc pciide_promise_products[] = {
389 { PCI_PRODUCT_PROMISE_ULTRA33,
390 IDE_PCI_CLASS_OVERRIDE,
391 "Promise Ultra33/ATA Bus Master IDE Accelerator",
392 pdc202xx_chip_map,
393 },
394 { PCI_PRODUCT_PROMISE_ULTRA66,
395 IDE_PCI_CLASS_OVERRIDE,
396 "Promise Ultra66/ATA Bus Master IDE Accelerator",
397 pdc202xx_chip_map,
398 },
399 { PCI_PRODUCT_PROMISE_ULTRA100,
400 IDE_PCI_CLASS_OVERRIDE,
401 "Promise Ultra100/ATA Bus Master IDE Accelerator",
402 pdc202xx_chip_map,
403 },
404 { PCI_PRODUCT_PROMISE_ULTRA100X,
405 IDE_PCI_CLASS_OVERRIDE,
406 "Promise Ultra100/ATA Bus Master IDE Accelerator",
407 pdc202xx_chip_map,
408 },
409 { 0,
410 0,
411 NULL,
412 NULL
413 }
414 };
415
416 const struct pciide_product_desc pciide_opti_products[] = {
417 { PCI_PRODUCT_OPTI_82C621,
418 0,
419 "OPTi 82c621 PCI IDE controller",
420 opti_chip_map,
421 },
422 { PCI_PRODUCT_OPTI_82C568,
423 0,
424 "OPTi 82c568 (82c621 compatible) PCI IDE controller",
425 opti_chip_map,
426 },
427 { PCI_PRODUCT_OPTI_82D568,
428 0,
429 "OPTi 82d568 (82c621 compatible) PCI IDE controller",
430 opti_chip_map,
431 },
432 { 0,
433 0,
434 NULL,
435 NULL
436 }
437 };
438
439 const struct pciide_product_desc pciide_triones_products[] = {
440 { PCI_PRODUCT_TRIONES_HPT366,
441 IDE_PCI_CLASS_OVERRIDE,
442 "Triones/Highpoint HPT366/370 IDE Controller",
443 hpt_chip_map,
444 },
445 { 0,
446 0,
447 NULL,
448 NULL
449 }
450 };
451
452 const struct pciide_product_desc pciide_acard_products[] = {
453 { PCI_PRODUCT_ACARD_ATP850U,
454 IDE_PCI_CLASS_OVERRIDE,
455 "Acard ATP850U Ultra33 IDE Controller",
456 acard_chip_map,
457 },
458 { PCI_PRODUCT_ACARD_ATP860,
459 IDE_PCI_CLASS_OVERRIDE,
460 "Acard ATP860 Ultra66 IDE Controller",
461 acard_chip_map,
462 },
463 { PCI_PRODUCT_ACARD_ATP860A,
464 IDE_PCI_CLASS_OVERRIDE,
465 "Acard ATP860-A Ultra66 IDE Controller",
466 acard_chip_map,
467 },
468 { 0,
469 0,
470 NULL,
471 NULL
472 }
473 };
474
475 struct pciide_vendor_desc {
476 u_int32_t ide_vendor;
477 const struct pciide_product_desc *ide_products;
478 };
479
480 const struct pciide_vendor_desc pciide_vendors[] = {
481 { PCI_VENDOR_INTEL, pciide_intel_products },
482 { PCI_VENDOR_CMDTECH, pciide_cmd_products },
483 { PCI_VENDOR_VIATECH, pciide_via_products },
484 { PCI_VENDOR_CONTAQ, pciide_cypress_products },
485 { PCI_VENDOR_SIS, pciide_sis_products },
486 { PCI_VENDOR_ALI, pciide_acer_products },
487 { PCI_VENDOR_PROMISE, pciide_promise_products },
488 { PCI_VENDOR_AMD, pciide_amd_products },
489 { PCI_VENDOR_OPTI, pciide_opti_products },
490 { PCI_VENDOR_TRIONES, pciide_triones_products },
491 #ifdef PCIIDE_ACARD_ENABLE
492 { PCI_VENDOR_ACARD, pciide_acard_products },
493 #endif
494 { 0, NULL }
495 };
496
497 /* options passed via the 'flags' config keyword */
498 #define PCIIDE_OPTIONS_DMA 0x01
499
500 int pciide_match __P((struct device *, struct cfdata *, void *));
501 void pciide_attach __P((struct device *, struct device *, void *));
502
503 struct cfattach pciide_ca = {
504 sizeof(struct pciide_softc), pciide_match, pciide_attach
505 };
506 int pciide_chipen __P((struct pciide_softc *, struct pci_attach_args *));
507 int pciide_mapregs_compat __P(( struct pci_attach_args *,
508 struct pciide_channel *, int, bus_size_t *, bus_size_t*));
509 int pciide_mapregs_native __P((struct pci_attach_args *,
510 struct pciide_channel *, bus_size_t *, bus_size_t *,
511 int (*pci_intr) __P((void *))));
512 void pciide_mapreg_dma __P((struct pciide_softc *,
513 struct pci_attach_args *));
514 int pciide_chansetup __P((struct pciide_softc *, int, pcireg_t));
515 void pciide_mapchan __P((struct pci_attach_args *,
516 struct pciide_channel *, pcireg_t, bus_size_t *, bus_size_t *,
517 int (*pci_intr) __P((void *))));
518 int pciide_chan_candisable __P((struct pciide_channel *));
519 void pciide_map_compat_intr __P(( struct pci_attach_args *,
520 struct pciide_channel *, int, int));
521 int pciide_print __P((void *, const char *pnp));
522 int pciide_compat_intr __P((void *));
523 int pciide_pci_intr __P((void *));
524 const struct pciide_product_desc* pciide_lookup_product __P((u_int32_t));
525
526 const struct pciide_product_desc *
527 pciide_lookup_product(id)
528 u_int32_t id;
529 {
530 const struct pciide_product_desc *pp;
531 const struct pciide_vendor_desc *vp;
532
533 for (vp = pciide_vendors; vp->ide_products != NULL; vp++)
534 if (PCI_VENDOR(id) == vp->ide_vendor)
535 break;
536
537 if ((pp = vp->ide_products) == NULL)
538 return NULL;
539
540 for (; pp->chip_map != NULL; pp++)
541 if (PCI_PRODUCT(id) == pp->ide_product)
542 break;
543
544 if (pp->chip_map == NULL)
545 return NULL;
546 return pp;
547 }
548
549 int
550 pciide_match(parent, match, aux)
551 struct device *parent;
552 struct cfdata *match;
553 void *aux;
554 {
555 struct pci_attach_args *pa = aux;
556 const struct pciide_product_desc *pp;
557
558 /*
559 * Check the ID register to see that it's a PCI IDE controller.
560 * If it is, we assume that we can deal with it; it _should_
561 * work in a standardized way...
562 */
563 if (PCI_CLASS(pa->pa_class) == PCI_CLASS_MASS_STORAGE &&
564 PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
565 return (1);
566 }
567
568 /*
569 * Some controllers (e.g. promise Utra-33) don't claim to be PCI IDE
570 * controllers. Let see if we can deal with it anyway.
571 */
572 pp = pciide_lookup_product(pa->pa_id);
573 if (pp && (pp->ide_flags & IDE_PCI_CLASS_OVERRIDE)) {
574 return (1);
575 }
576
577 return (0);
578 }
579
580 void
581 pciide_attach(parent, self, aux)
582 struct device *parent, *self;
583 void *aux;
584 {
585 struct pci_attach_args *pa = aux;
586 pci_chipset_tag_t pc = pa->pa_pc;
587 pcitag_t tag = pa->pa_tag;
588 struct pciide_softc *sc = (struct pciide_softc *)self;
589 pcireg_t csr;
590 char devinfo[256];
591 const char *displaydev;
592
593 sc->sc_pp = pciide_lookup_product(pa->pa_id);
594 if (sc->sc_pp == NULL) {
595 sc->sc_pp = &default_product_desc;
596 pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo);
597 displaydev = devinfo;
598 } else
599 displaydev = sc->sc_pp->ide_name;
600
601 /* if displaydev == NULL, printf is done in chip-specific map */
602 if (displaydev)
603 printf(": %s (rev. 0x%02x)\n", displaydev,
604 PCI_REVISION(pa->pa_class));
605
606 sc->sc_pc = pa->pa_pc;
607 sc->sc_tag = pa->pa_tag;
608 #ifdef WDCDEBUG
609 if (wdcdebug_pciide_mask & DEBUG_PROBE)
610 pci_conf_print(sc->sc_pc, sc->sc_tag, NULL);
611 #endif
612 sc->sc_pp->chip_map(sc, pa);
613
614 if (sc->sc_dma_ok) {
615 csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
616 csr |= PCI_COMMAND_MASTER_ENABLE;
617 pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, csr);
618 }
619 WDCDEBUG_PRINT(("pciide: command/status register=%x\n",
620 pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG)), DEBUG_PROBE);
621 }
622
623 /* tell wether the chip is enabled or not */
624 int
625 pciide_chipen(sc, pa)
626 struct pciide_softc *sc;
627 struct pci_attach_args *pa;
628 {
629 pcireg_t csr;
630 if ((pa->pa_flags & PCI_FLAGS_IO_ENABLED) == 0) {
631 csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
632 PCI_COMMAND_STATUS_REG);
633 printf("%s: device disabled (at %s)\n",
634 sc->sc_wdcdev.sc_dev.dv_xname,
635 (csr & PCI_COMMAND_IO_ENABLE) == 0 ?
636 "device" : "bridge");
637 return 0;
638 }
639 return 1;
640 }
641
642 int
643 pciide_mapregs_compat(pa, cp, compatchan, cmdsizep, ctlsizep)
644 struct pci_attach_args *pa;
645 struct pciide_channel *cp;
646 int compatchan;
647 bus_size_t *cmdsizep, *ctlsizep;
648 {
649 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
650 struct channel_softc *wdc_cp = &cp->wdc_channel;
651
652 cp->compat = 1;
653 *cmdsizep = PCIIDE_COMPAT_CMD_SIZE;
654 *ctlsizep = PCIIDE_COMPAT_CTL_SIZE;
655
656 wdc_cp->cmd_iot = pa->pa_iot;
657 if (bus_space_map(wdc_cp->cmd_iot, PCIIDE_COMPAT_CMD_BASE(compatchan),
658 PCIIDE_COMPAT_CMD_SIZE, 0, &wdc_cp->cmd_ioh) != 0) {
659 printf("%s: couldn't map %s channel cmd regs\n",
660 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
661 return (0);
662 }
663
664 wdc_cp->ctl_iot = pa->pa_iot;
665 if (bus_space_map(wdc_cp->ctl_iot, PCIIDE_COMPAT_CTL_BASE(compatchan),
666 PCIIDE_COMPAT_CTL_SIZE, 0, &wdc_cp->ctl_ioh) != 0) {
667 printf("%s: couldn't map %s channel ctl regs\n",
668 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
669 bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh,
670 PCIIDE_COMPAT_CMD_SIZE);
671 return (0);
672 }
673
674 return (1);
675 }
676
677 int
678 pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep, pci_intr)
679 struct pci_attach_args * pa;
680 struct pciide_channel *cp;
681 bus_size_t *cmdsizep, *ctlsizep;
682 int (*pci_intr) __P((void *));
683 {
684 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
685 struct channel_softc *wdc_cp = &cp->wdc_channel;
686 const char *intrstr;
687 pci_intr_handle_t intrhandle;
688
689 cp->compat = 0;
690
691 if (sc->sc_pci_ih == NULL) {
692 if (pci_intr_map(pa, &intrhandle) != 0) {
693 printf("%s: couldn't map native-PCI interrupt\n",
694 sc->sc_wdcdev.sc_dev.dv_xname);
695 return 0;
696 }
697 intrstr = pci_intr_string(pa->pa_pc, intrhandle);
698 sc->sc_pci_ih = pci_intr_establish(pa->pa_pc,
699 intrhandle, IPL_BIO, pci_intr, sc);
700 if (sc->sc_pci_ih != NULL) {
701 printf("%s: using %s for native-PCI interrupt\n",
702 sc->sc_wdcdev.sc_dev.dv_xname,
703 intrstr ? intrstr : "unknown interrupt");
704 } else {
705 printf("%s: couldn't establish native-PCI interrupt",
706 sc->sc_wdcdev.sc_dev.dv_xname);
707 if (intrstr != NULL)
708 printf(" at %s", intrstr);
709 printf("\n");
710 return 0;
711 }
712 }
713 cp->ih = sc->sc_pci_ih;
714 if (pci_mapreg_map(pa, PCIIDE_REG_CMD_BASE(wdc_cp->channel),
715 PCI_MAPREG_TYPE_IO, 0,
716 &wdc_cp->cmd_iot, &wdc_cp->cmd_ioh, NULL, cmdsizep) != 0) {
717 printf("%s: couldn't map %s channel cmd regs\n",
718 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
719 return 0;
720 }
721
722 if (pci_mapreg_map(pa, PCIIDE_REG_CTL_BASE(wdc_cp->channel),
723 PCI_MAPREG_TYPE_IO, 0,
724 &wdc_cp->ctl_iot, &cp->ctl_baseioh, NULL, ctlsizep) != 0) {
725 printf("%s: couldn't map %s channel ctl regs\n",
726 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
727 bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh, *cmdsizep);
728 return 0;
729 }
730 /*
731 * In native mode, 4 bytes of I/O space are mapped for the control
732 * register, the control register is at offset 2. Pass the generic
733 * code a handle for only one byte at the rigth offset.
734 */
735 if (bus_space_subregion(wdc_cp->ctl_iot, cp->ctl_baseioh, 2, 1,
736 &wdc_cp->ctl_ioh) != 0) {
737 printf("%s: unable to subregion %s channel ctl regs\n",
738 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
739 bus_space_unmap(wdc_cp->cmd_iot, wdc_cp->cmd_ioh, *cmdsizep);
740 bus_space_unmap(wdc_cp->cmd_iot, cp->ctl_baseioh, *ctlsizep);
741 return 0;
742 }
743 return (1);
744 }
745
746 void
747 pciide_mapreg_dma(sc, pa)
748 struct pciide_softc *sc;
749 struct pci_attach_args *pa;
750 {
751 pcireg_t maptype;
752 bus_addr_t addr;
753
754 /*
755 * Map DMA registers
756 *
757 * Note that sc_dma_ok is the right variable to test to see if
758 * DMA can be done. If the interface doesn't support DMA,
759 * sc_dma_ok will never be non-zero. If the DMA regs couldn't
760 * be mapped, it'll be zero. I.e., sc_dma_ok will only be
761 * non-zero if the interface supports DMA and the registers
762 * could be mapped.
763 *
764 * XXX Note that despite the fact that the Bus Master IDE specs
765 * XXX say that "The bus master IDE function uses 16 bytes of IO
766 * XXX space," some controllers (at least the United
767 * XXX Microelectronics UM8886BF) place it in memory space.
768 */
769 maptype = pci_mapreg_type(pa->pa_pc, pa->pa_tag,
770 PCIIDE_REG_BUS_MASTER_DMA);
771
772 switch (maptype) {
773 case PCI_MAPREG_TYPE_IO:
774 sc->sc_dma_ok = (pci_mapreg_info(pa->pa_pc, pa->pa_tag,
775 PCIIDE_REG_BUS_MASTER_DMA, PCI_MAPREG_TYPE_IO,
776 &addr, NULL, NULL) == 0);
777 if (sc->sc_dma_ok == 0) {
778 printf(", but unused (couldn't query registers)");
779 break;
780 }
781 if ((sc->sc_pp->ide_flags & IDE_16BIT_IOSPACE)
782 && addr >= 0x10000) {
783 sc->sc_dma_ok = 0;
784 printf(", but unused (registers at unsafe address %#lx)", (unsigned long)addr);
785 break;
786 }
787 /* FALLTHROUGH */
788
789 case PCI_MAPREG_MEM_TYPE_32BIT:
790 sc->sc_dma_ok = (pci_mapreg_map(pa,
791 PCIIDE_REG_BUS_MASTER_DMA, maptype, 0,
792 &sc->sc_dma_iot, &sc->sc_dma_ioh, NULL, NULL) == 0);
793 sc->sc_dmat = pa->pa_dmat;
794 if (sc->sc_dma_ok == 0) {
795 printf(", but unused (couldn't map registers)");
796 } else {
797 sc->sc_wdcdev.dma_arg = sc;
798 sc->sc_wdcdev.dma_init = pciide_dma_init;
799 sc->sc_wdcdev.dma_start = pciide_dma_start;
800 sc->sc_wdcdev.dma_finish = pciide_dma_finish;
801 }
802 break;
803
804 default:
805 sc->sc_dma_ok = 0;
806 printf(", but unsupported register maptype (0x%x)", maptype);
807 }
808 }
809
810 int
811 pciide_compat_intr(arg)
812 void *arg;
813 {
814 struct pciide_channel *cp = arg;
815
816 #ifdef DIAGNOSTIC
817 /* should only be called for a compat channel */
818 if (cp->compat == 0)
819 panic("pciide compat intr called for non-compat chan %p\n", cp);
820 #endif
821 return (wdcintr(&cp->wdc_channel));
822 }
823
824 int
825 pciide_pci_intr(arg)
826 void *arg;
827 {
828 struct pciide_softc *sc = arg;
829 struct pciide_channel *cp;
830 struct channel_softc *wdc_cp;
831 int i, rv, crv;
832
833 rv = 0;
834 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
835 cp = &sc->pciide_channels[i];
836 wdc_cp = &cp->wdc_channel;
837
838 /* If a compat channel skip. */
839 if (cp->compat)
840 continue;
841 /* if this channel not waiting for intr, skip */
842 if ((wdc_cp->ch_flags & WDCF_IRQ_WAIT) == 0)
843 continue;
844
845 crv = wdcintr(wdc_cp);
846 if (crv == 0)
847 ; /* leave rv alone */
848 else if (crv == 1)
849 rv = 1; /* claim the intr */
850 else if (rv == 0) /* crv should be -1 in this case */
851 rv = crv; /* if we've done no better, take it */
852 }
853 return (rv);
854 }
855
856 void
857 pciide_channel_dma_setup(cp)
858 struct pciide_channel *cp;
859 {
860 int drive;
861 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
862 struct ata_drive_datas *drvp;
863
864 for (drive = 0; drive < 2; drive++) {
865 drvp = &cp->wdc_channel.ch_drive[drive];
866 /* If no drive, skip */
867 if ((drvp->drive_flags & DRIVE) == 0)
868 continue;
869 /* setup DMA if needed */
870 if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
871 (drvp->drive_flags & DRIVE_UDMA) == 0) ||
872 sc->sc_dma_ok == 0) {
873 drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
874 continue;
875 }
876 if (pciide_dma_table_setup(sc, cp->wdc_channel.channel, drive)
877 != 0) {
878 /* Abort DMA setup */
879 drvp->drive_flags &= ~(DRIVE_DMA | DRIVE_UDMA);
880 continue;
881 }
882 }
883 }
884
885 int
886 pciide_dma_table_setup(sc, channel, drive)
887 struct pciide_softc *sc;
888 int channel, drive;
889 {
890 bus_dma_segment_t seg;
891 int error, rseg;
892 const bus_size_t dma_table_size =
893 sizeof(struct idedma_table) * NIDEDMA_TABLES;
894 struct pciide_dma_maps *dma_maps =
895 &sc->pciide_channels[channel].dma_maps[drive];
896
897 /* If table was already allocated, just return */
898 if (dma_maps->dma_table)
899 return 0;
900
901 /* Allocate memory for the DMA tables and map it */
902 if ((error = bus_dmamem_alloc(sc->sc_dmat, dma_table_size,
903 IDEDMA_TBL_ALIGN, IDEDMA_TBL_ALIGN, &seg, 1, &rseg,
904 BUS_DMA_NOWAIT)) != 0) {
905 printf("%s:%d: unable to allocate table DMA for "
906 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
907 channel, drive, error);
908 return error;
909 }
910 if ((error = bus_dmamem_map(sc->sc_dmat, &seg, rseg,
911 dma_table_size,
912 (caddr_t *)&dma_maps->dma_table,
913 BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) != 0) {
914 printf("%s:%d: unable to map table DMA for"
915 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
916 channel, drive, error);
917 return error;
918 }
919 WDCDEBUG_PRINT(("pciide_dma_table_setup: table at %p len %lu, "
920 "phy 0x%lx\n", dma_maps->dma_table, (u_long)dma_table_size,
921 (unsigned long)seg.ds_addr), DEBUG_PROBE);
922
923 /* Create and load table DMA map for this disk */
924 if ((error = bus_dmamap_create(sc->sc_dmat, dma_table_size,
925 1, dma_table_size, IDEDMA_TBL_ALIGN, BUS_DMA_NOWAIT,
926 &dma_maps->dmamap_table)) != 0) {
927 printf("%s:%d: unable to create table DMA map for "
928 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
929 channel, drive, error);
930 return error;
931 }
932 if ((error = bus_dmamap_load(sc->sc_dmat,
933 dma_maps->dmamap_table,
934 dma_maps->dma_table,
935 dma_table_size, NULL, BUS_DMA_NOWAIT)) != 0) {
936 printf("%s:%d: unable to load table DMA map for "
937 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
938 channel, drive, error);
939 return error;
940 }
941 WDCDEBUG_PRINT(("pciide_dma_table_setup: phy addr of table 0x%lx\n",
942 (unsigned long)dma_maps->dmamap_table->dm_segs[0].ds_addr),
943 DEBUG_PROBE);
944 /* Create a xfer DMA map for this drive */
945 if ((error = bus_dmamap_create(sc->sc_dmat, IDEDMA_BYTE_COUNT_MAX,
946 NIDEDMA_TABLES, IDEDMA_BYTE_COUNT_MAX, IDEDMA_BYTE_COUNT_ALIGN,
947 BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW,
948 &dma_maps->dmamap_xfer)) != 0) {
949 printf("%s:%d: unable to create xfer DMA map for "
950 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
951 channel, drive, error);
952 return error;
953 }
954 return 0;
955 }
956
957 int
958 pciide_dma_init(v, channel, drive, databuf, datalen, flags)
959 void *v;
960 int channel, drive;
961 void *databuf;
962 size_t datalen;
963 int flags;
964 {
965 struct pciide_softc *sc = v;
966 int error, seg;
967 struct pciide_dma_maps *dma_maps =
968 &sc->pciide_channels[channel].dma_maps[drive];
969
970 error = bus_dmamap_load(sc->sc_dmat,
971 dma_maps->dmamap_xfer,
972 databuf, datalen, NULL, BUS_DMA_NOWAIT | BUS_DMA_STREAMING);
973 if (error) {
974 printf("%s:%d: unable to load xfer DMA map for"
975 "drive %d, error=%d\n", sc->sc_wdcdev.sc_dev.dv_xname,
976 channel, drive, error);
977 return error;
978 }
979
980 bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
981 dma_maps->dmamap_xfer->dm_mapsize,
982 (flags & WDC_DMA_READ) ?
983 BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
984
985 for (seg = 0; seg < dma_maps->dmamap_xfer->dm_nsegs; seg++) {
986 #ifdef DIAGNOSTIC
987 /* A segment must not cross a 64k boundary */
988 {
989 u_long phys = dma_maps->dmamap_xfer->dm_segs[seg].ds_addr;
990 u_long len = dma_maps->dmamap_xfer->dm_segs[seg].ds_len;
991 if ((phys & ~IDEDMA_BYTE_COUNT_MASK) !=
992 ((phys + len - 1) & ~IDEDMA_BYTE_COUNT_MASK)) {
993 printf("pciide_dma: segment %d physical addr 0x%lx"
994 " len 0x%lx not properly aligned\n",
995 seg, phys, len);
996 panic("pciide_dma: buf align");
997 }
998 }
999 #endif
1000 dma_maps->dma_table[seg].base_addr =
1001 htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_addr);
1002 dma_maps->dma_table[seg].byte_count =
1003 htole32(dma_maps->dmamap_xfer->dm_segs[seg].ds_len &
1004 IDEDMA_BYTE_COUNT_MASK);
1005 WDCDEBUG_PRINT(("\t seg %d len %d addr 0x%x\n",
1006 seg, le32toh(dma_maps->dma_table[seg].byte_count),
1007 le32toh(dma_maps->dma_table[seg].base_addr)), DEBUG_DMA);
1008
1009 }
1010 dma_maps->dma_table[dma_maps->dmamap_xfer->dm_nsegs -1].byte_count |=
1011 htole32(IDEDMA_BYTE_COUNT_EOT);
1012
1013 bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_table, 0,
1014 dma_maps->dmamap_table->dm_mapsize,
1015 BUS_DMASYNC_PREWRITE);
1016
1017 /* Maps are ready. Start DMA function */
1018 #ifdef DIAGNOSTIC
1019 if (dma_maps->dmamap_table->dm_segs[0].ds_addr & ~IDEDMA_TBL_MASK) {
1020 printf("pciide_dma_init: addr 0x%lx not properly aligned\n",
1021 (u_long)dma_maps->dmamap_table->dm_segs[0].ds_addr);
1022 panic("pciide_dma_init: table align");
1023 }
1024 #endif
1025
1026 /* Clear status bits */
1027 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1028 IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel,
1029 bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1030 IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel));
1031 /* Write table addr */
1032 bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
1033 IDEDMA_TBL + IDEDMA_SCH_OFFSET * channel,
1034 dma_maps->dmamap_table->dm_segs[0].ds_addr);
1035 /* set read/write */
1036 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1037 IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
1038 (flags & WDC_DMA_READ) ? IDEDMA_CMD_WRITE: 0);
1039 /* remember flags */
1040 dma_maps->dma_flags = flags;
1041 return 0;
1042 }
1043
1044 void
1045 pciide_dma_start(v, channel, drive)
1046 void *v;
1047 int channel, drive;
1048 {
1049 struct pciide_softc *sc = v;
1050
1051 WDCDEBUG_PRINT(("pciide_dma_start\n"),DEBUG_XFERS);
1052 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1053 IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
1054 bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1055 IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel) | IDEDMA_CMD_START);
1056 }
1057
1058 int
1059 pciide_dma_finish(v, channel, drive, force)
1060 void *v;
1061 int channel, drive;
1062 int force;
1063 {
1064 struct pciide_softc *sc = v;
1065 u_int8_t status;
1066 int error = 0;
1067 struct pciide_dma_maps *dma_maps =
1068 &sc->pciide_channels[channel].dma_maps[drive];
1069
1070 status = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1071 IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel);
1072 WDCDEBUG_PRINT(("pciide_dma_finish: status 0x%x\n", status),
1073 DEBUG_XFERS);
1074
1075 if (force == 0 && (status & IDEDMA_CTL_INTR) == 0)
1076 return WDC_DMAST_NOIRQ;
1077
1078 /* stop DMA channel */
1079 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1080 IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel,
1081 bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1082 IDEDMA_CMD + IDEDMA_SCH_OFFSET * channel) & ~IDEDMA_CMD_START);
1083
1084 /* Unload the map of the data buffer */
1085 bus_dmamap_sync(sc->sc_dmat, dma_maps->dmamap_xfer, 0,
1086 dma_maps->dmamap_xfer->dm_mapsize,
1087 (dma_maps->dma_flags & WDC_DMA_READ) ?
1088 BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
1089 bus_dmamap_unload(sc->sc_dmat, dma_maps->dmamap_xfer);
1090
1091 if ((status & IDEDMA_CTL_ERR) != 0) {
1092 printf("%s:%d:%d: bus-master DMA error: status=0x%x\n",
1093 sc->sc_wdcdev.sc_dev.dv_xname, channel, drive, status);
1094 error |= WDC_DMAST_ERR;
1095 }
1096
1097 if ((status & IDEDMA_CTL_INTR) == 0) {
1098 printf("%s:%d:%d: bus-master DMA error: missing interrupt, "
1099 "status=0x%x\n", sc->sc_wdcdev.sc_dev.dv_xname, channel,
1100 drive, status);
1101 error |= WDC_DMAST_NOIRQ;
1102 }
1103
1104 if ((status & IDEDMA_CTL_ACT) != 0) {
1105 /* data underrun, may be a valid condition for ATAPI */
1106 error |= WDC_DMAST_UNDER;
1107 }
1108 return error;
1109 }
1110
1111 void
1112 pciide_irqack(chp)
1113 struct channel_softc *chp;
1114 {
1115 struct pciide_channel *cp = (struct pciide_channel*)chp;
1116 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1117
1118 /* clear status bits in IDE DMA registers */
1119 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1120 IDEDMA_CTL + IDEDMA_SCH_OFFSET * chp->channel,
1121 bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1122 IDEDMA_CTL + IDEDMA_SCH_OFFSET * chp->channel));
1123 }
1124
1125 /* some common code used by several chip_map */
1126 int
1127 pciide_chansetup(sc, channel, interface)
1128 struct pciide_softc *sc;
1129 int channel;
1130 pcireg_t interface;
1131 {
1132 struct pciide_channel *cp = &sc->pciide_channels[channel];
1133 sc->wdc_chanarray[channel] = &cp->wdc_channel;
1134 cp->name = PCIIDE_CHANNEL_NAME(channel);
1135 cp->wdc_channel.channel = channel;
1136 cp->wdc_channel.wdc = &sc->sc_wdcdev;
1137 cp->wdc_channel.ch_queue =
1138 malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
1139 if (cp->wdc_channel.ch_queue == NULL) {
1140 printf("%s %s channel: "
1141 "can't allocate memory for command queue",
1142 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1143 return 0;
1144 }
1145 printf("%s: %s channel %s to %s mode\n",
1146 sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
1147 (interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
1148 "configured" : "wired",
1149 (interface & PCIIDE_INTERFACE_PCI(channel)) ?
1150 "native-PCI" : "compatibility");
1151 return 1;
1152 }
1153
1154 /* some common code used by several chip channel_map */
1155 void
1156 pciide_mapchan(pa, cp, interface, cmdsizep, ctlsizep, pci_intr)
1157 struct pci_attach_args *pa;
1158 struct pciide_channel *cp;
1159 pcireg_t interface;
1160 bus_size_t *cmdsizep, *ctlsizep;
1161 int (*pci_intr) __P((void *));
1162 {
1163 struct channel_softc *wdc_cp = &cp->wdc_channel;
1164
1165 if (interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel))
1166 cp->hw_ok = pciide_mapregs_native(pa, cp, cmdsizep, ctlsizep,
1167 pci_intr);
1168 else
1169 cp->hw_ok = pciide_mapregs_compat(pa, cp,
1170 wdc_cp->channel, cmdsizep, ctlsizep);
1171
1172 if (cp->hw_ok == 0)
1173 return;
1174 wdc_cp->data32iot = wdc_cp->cmd_iot;
1175 wdc_cp->data32ioh = wdc_cp->cmd_ioh;
1176 wdcattach(wdc_cp);
1177 }
1178
1179 /*
1180 * Generic code to call to know if a channel can be disabled. Return 1
1181 * if channel can be disabled, 0 if not
1182 */
1183 int
1184 pciide_chan_candisable(cp)
1185 struct pciide_channel *cp;
1186 {
1187 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1188 struct channel_softc *wdc_cp = &cp->wdc_channel;
1189
1190 if ((wdc_cp->ch_drive[0].drive_flags & DRIVE) == 0 &&
1191 (wdc_cp->ch_drive[1].drive_flags & DRIVE) == 0) {
1192 printf("%s: disabling %s channel (no drives)\n",
1193 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1194 cp->hw_ok = 0;
1195 return 1;
1196 }
1197 return 0;
1198 }
1199
1200 /*
1201 * generic code to map the compat intr if hw_ok=1 and it is a compat channel.
1202 * Set hw_ok=0 on failure
1203 */
1204 void
1205 pciide_map_compat_intr(pa, cp, compatchan, interface)
1206 struct pci_attach_args *pa;
1207 struct pciide_channel *cp;
1208 int compatchan, interface;
1209 {
1210 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1211 struct channel_softc *wdc_cp = &cp->wdc_channel;
1212
1213 if (cp->hw_ok == 0)
1214 return;
1215 if ((interface & PCIIDE_INTERFACE_PCI(wdc_cp->channel)) != 0)
1216 return;
1217
1218 cp->ih = pciide_machdep_compat_intr_establish(&sc->sc_wdcdev.sc_dev,
1219 pa, compatchan, pciide_compat_intr, cp);
1220 if (cp->ih == NULL) {
1221 printf("%s: no compatibility interrupt for use by %s "
1222 "channel\n", sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1223 cp->hw_ok = 0;
1224 }
1225 }
1226
1227 void
1228 pciide_print_modes(cp)
1229 struct pciide_channel *cp;
1230 {
1231 wdc_print_modes(&cp->wdc_channel);
1232 }
1233
1234 void
1235 default_chip_map(sc, pa)
1236 struct pciide_softc *sc;
1237 struct pci_attach_args *pa;
1238 {
1239 struct pciide_channel *cp;
1240 pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1241 pcireg_t csr;
1242 int channel, drive;
1243 struct ata_drive_datas *drvp;
1244 u_int8_t idedma_ctl;
1245 bus_size_t cmdsize, ctlsize;
1246 char *failreason;
1247
1248 if (pciide_chipen(sc, pa) == 0)
1249 return;
1250
1251 if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
1252 printf("%s: bus-master DMA support present",
1253 sc->sc_wdcdev.sc_dev.dv_xname);
1254 if (sc->sc_pp == &default_product_desc &&
1255 (sc->sc_wdcdev.sc_dev.dv_cfdata->cf_flags &
1256 PCIIDE_OPTIONS_DMA) == 0) {
1257 printf(", but unused (no driver support)");
1258 sc->sc_dma_ok = 0;
1259 } else {
1260 pciide_mapreg_dma(sc, pa);
1261 if (sc->sc_dma_ok != 0)
1262 printf(", used without full driver "
1263 "support");
1264 }
1265 } else {
1266 printf("%s: hardware does not support DMA",
1267 sc->sc_wdcdev.sc_dev.dv_xname);
1268 sc->sc_dma_ok = 0;
1269 }
1270 printf("\n");
1271 if (sc->sc_dma_ok) {
1272 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
1273 sc->sc_wdcdev.irqack = pciide_irqack;
1274 }
1275 sc->sc_wdcdev.PIO_cap = 0;
1276 sc->sc_wdcdev.DMA_cap = 0;
1277
1278 sc->sc_wdcdev.channels = sc->wdc_chanarray;
1279 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1280 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16;
1281
1282 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1283 cp = &sc->pciide_channels[channel];
1284 if (pciide_chansetup(sc, channel, interface) == 0)
1285 continue;
1286 if (interface & PCIIDE_INTERFACE_PCI(channel)) {
1287 cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize,
1288 &ctlsize, pciide_pci_intr);
1289 } else {
1290 cp->hw_ok = pciide_mapregs_compat(pa, cp,
1291 channel, &cmdsize, &ctlsize);
1292 }
1293 if (cp->hw_ok == 0)
1294 continue;
1295 /*
1296 * Check to see if something appears to be there.
1297 */
1298 failreason = NULL;
1299 if (!wdcprobe(&cp->wdc_channel)) {
1300 failreason = "not responding; disabled or no drives?";
1301 goto next;
1302 }
1303 /*
1304 * Now, make sure it's actually attributable to this PCI IDE
1305 * channel by trying to access the channel again while the
1306 * PCI IDE controller's I/O space is disabled. (If the
1307 * channel no longer appears to be there, it belongs to
1308 * this controller.) YUCK!
1309 */
1310 csr = pci_conf_read(sc->sc_pc, sc->sc_tag,
1311 PCI_COMMAND_STATUS_REG);
1312 pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_COMMAND_STATUS_REG,
1313 csr & ~PCI_COMMAND_IO_ENABLE);
1314 if (wdcprobe(&cp->wdc_channel))
1315 failreason = "other hardware responding at addresses";
1316 pci_conf_write(sc->sc_pc, sc->sc_tag,
1317 PCI_COMMAND_STATUS_REG, csr);
1318 next:
1319 if (failreason) {
1320 printf("%s: %s channel ignored (%s)\n",
1321 sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
1322 failreason);
1323 cp->hw_ok = 0;
1324 bus_space_unmap(cp->wdc_channel.cmd_iot,
1325 cp->wdc_channel.cmd_ioh, cmdsize);
1326 bus_space_unmap(cp->wdc_channel.ctl_iot,
1327 cp->wdc_channel.ctl_ioh, ctlsize);
1328 } else {
1329 pciide_map_compat_intr(pa, cp, channel, interface);
1330 }
1331 if (cp->hw_ok) {
1332 cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
1333 cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
1334 wdcattach(&cp->wdc_channel);
1335 }
1336 }
1337
1338 if (sc->sc_dma_ok == 0)
1339 return;
1340
1341 /* Allocate DMA maps */
1342 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1343 idedma_ctl = 0;
1344 cp = &sc->pciide_channels[channel];
1345 for (drive = 0; drive < 2; drive++) {
1346 drvp = &cp->wdc_channel.ch_drive[drive];
1347 /* If no drive, skip */
1348 if ((drvp->drive_flags & DRIVE) == 0)
1349 continue;
1350 if ((drvp->drive_flags & DRIVE_DMA) == 0)
1351 continue;
1352 if (pciide_dma_table_setup(sc, channel, drive) != 0) {
1353 /* Abort DMA setup */
1354 printf("%s:%d:%d: can't allocate DMA maps, "
1355 "using PIO transfers\n",
1356 sc->sc_wdcdev.sc_dev.dv_xname,
1357 channel, drive);
1358 drvp->drive_flags &= ~DRIVE_DMA;
1359 }
1360 printf("%s:%d:%d: using DMA data transfers\n",
1361 sc->sc_wdcdev.sc_dev.dv_xname,
1362 channel, drive);
1363 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1364 }
1365 if (idedma_ctl != 0) {
1366 /* Add software bits in status register */
1367 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1368 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * channel),
1369 idedma_ctl);
1370 }
1371 }
1372 }
1373
1374 void
1375 piix_chip_map(sc, pa)
1376 struct pciide_softc *sc;
1377 struct pci_attach_args *pa;
1378 {
1379 struct pciide_channel *cp;
1380 int channel;
1381 u_int32_t idetim;
1382 bus_size_t cmdsize, ctlsize;
1383
1384 if (pciide_chipen(sc, pa) == 0)
1385 return;
1386
1387 printf("%s: bus-master DMA support present",
1388 sc->sc_wdcdev.sc_dev.dv_xname);
1389 pciide_mapreg_dma(sc, pa);
1390 printf("\n");
1391 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
1392 WDC_CAPABILITY_MODE;
1393 if (sc->sc_dma_ok) {
1394 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
1395 sc->sc_wdcdev.irqack = pciide_irqack;
1396 switch(sc->sc_pp->ide_product) {
1397 case PCI_PRODUCT_INTEL_82371AB_IDE:
1398 case PCI_PRODUCT_INTEL_82440MX_IDE:
1399 case PCI_PRODUCT_INTEL_82801AA_IDE:
1400 case PCI_PRODUCT_INTEL_82801AB_IDE:
1401 case PCI_PRODUCT_INTEL_82801BA_IDE:
1402 case PCI_PRODUCT_INTEL_82801BAM_IDE:
1403 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
1404 }
1405 }
1406 sc->sc_wdcdev.PIO_cap = 4;
1407 sc->sc_wdcdev.DMA_cap = 2;
1408 switch(sc->sc_pp->ide_product) {
1409 case PCI_PRODUCT_INTEL_82801AA_IDE:
1410 sc->sc_wdcdev.UDMA_cap = 4;
1411 break;
1412 case PCI_PRODUCT_INTEL_82801BA_IDE:
1413 case PCI_PRODUCT_INTEL_82801BAM_IDE:
1414 sc->sc_wdcdev.UDMA_cap = 5;
1415 break;
1416 default:
1417 sc->sc_wdcdev.UDMA_cap = 2;
1418 }
1419 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82371FB_IDE)
1420 sc->sc_wdcdev.set_modes = piix_setup_channel;
1421 else
1422 sc->sc_wdcdev.set_modes = piix3_4_setup_channel;
1423 sc->sc_wdcdev.channels = sc->wdc_chanarray;
1424 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1425
1426 WDCDEBUG_PRINT(("piix_setup_chip: old idetim=0x%x",
1427 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
1428 DEBUG_PROBE);
1429 if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
1430 WDCDEBUG_PRINT((", sidetim=0x%x",
1431 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
1432 DEBUG_PROBE);
1433 if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
1434 WDCDEBUG_PRINT((", udamreg 0x%x",
1435 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
1436 DEBUG_PROBE);
1437 }
1438 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1439 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1440 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
1441 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE) {
1442 WDCDEBUG_PRINT((", IDE_CONTROL 0x%x",
1443 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
1444 DEBUG_PROBE);
1445 }
1446
1447 }
1448 WDCDEBUG_PRINT(("\n"), DEBUG_PROBE);
1449
1450 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1451 cp = &sc->pciide_channels[channel];
1452 /* PIIX is compat-only */
1453 if (pciide_chansetup(sc, channel, 0) == 0)
1454 continue;
1455 idetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1456 if ((PIIX_IDETIM_READ(idetim, channel) &
1457 PIIX_IDETIM_IDE) == 0) {
1458 printf("%s: %s channel ignored (disabled)\n",
1459 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1460 continue;
1461 }
1462 /* PIIX are compat-only pciide devices */
1463 pciide_mapchan(pa, cp, 0, &cmdsize, &ctlsize, pciide_pci_intr);
1464 if (cp->hw_ok == 0)
1465 continue;
1466 if (pciide_chan_candisable(cp)) {
1467 idetim = PIIX_IDETIM_CLEAR(idetim, PIIX_IDETIM_IDE,
1468 channel);
1469 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM,
1470 idetim);
1471 }
1472 pciide_map_compat_intr(pa, cp, channel, 0);
1473 if (cp->hw_ok == 0)
1474 continue;
1475 sc->sc_wdcdev.set_modes(&cp->wdc_channel);
1476 }
1477
1478 WDCDEBUG_PRINT(("piix_setup_chip: idetim=0x%x",
1479 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM)),
1480 DEBUG_PROBE);
1481 if (sc->sc_pp->ide_product != PCI_PRODUCT_INTEL_82371FB_IDE) {
1482 WDCDEBUG_PRINT((", sidetim=0x%x",
1483 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM)),
1484 DEBUG_PROBE);
1485 if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
1486 WDCDEBUG_PRINT((", udamreg 0x%x",
1487 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG)),
1488 DEBUG_PROBE);
1489 }
1490 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1491 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1492 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
1493 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE) {
1494 WDCDEBUG_PRINT((", IDE_CONTROL 0x%x",
1495 pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG)),
1496 DEBUG_PROBE);
1497 }
1498 }
1499 WDCDEBUG_PRINT(("\n"), DEBUG_PROBE);
1500 }
1501
1502 void
1503 piix_setup_channel(chp)
1504 struct channel_softc *chp;
1505 {
1506 u_int8_t mode[2], drive;
1507 u_int32_t oidetim, idetim, idedma_ctl;
1508 struct pciide_channel *cp = (struct pciide_channel*)chp;
1509 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1510 struct ata_drive_datas *drvp = cp->wdc_channel.ch_drive;
1511
1512 oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1513 idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, chp->channel);
1514 idedma_ctl = 0;
1515
1516 /* set up new idetim: Enable IDE registers decode */
1517 idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE,
1518 chp->channel);
1519
1520 /* setup DMA */
1521 pciide_channel_dma_setup(cp);
1522
1523 /*
1524 * Here we have to mess up with drives mode: PIIX can't have
1525 * different timings for master and slave drives.
1526 * We need to find the best combination.
1527 */
1528
1529 /* If both drives supports DMA, take the lower mode */
1530 if ((drvp[0].drive_flags & DRIVE_DMA) &&
1531 (drvp[1].drive_flags & DRIVE_DMA)) {
1532 mode[0] = mode[1] =
1533 min(drvp[0].DMA_mode, drvp[1].DMA_mode);
1534 drvp[0].DMA_mode = mode[0];
1535 drvp[1].DMA_mode = mode[1];
1536 goto ok;
1537 }
1538 /*
1539 * If only one drive supports DMA, use its mode, and
1540 * put the other one in PIO mode 0 if mode not compatible
1541 */
1542 if (drvp[0].drive_flags & DRIVE_DMA) {
1543 mode[0] = drvp[0].DMA_mode;
1544 mode[1] = drvp[1].PIO_mode;
1545 if (piix_isp_pio[mode[1]] != piix_isp_dma[mode[0]] ||
1546 piix_rtc_pio[mode[1]] != piix_rtc_dma[mode[0]])
1547 mode[1] = drvp[1].PIO_mode = 0;
1548 goto ok;
1549 }
1550 if (drvp[1].drive_flags & DRIVE_DMA) {
1551 mode[1] = drvp[1].DMA_mode;
1552 mode[0] = drvp[0].PIO_mode;
1553 if (piix_isp_pio[mode[0]] != piix_isp_dma[mode[1]] ||
1554 piix_rtc_pio[mode[0]] != piix_rtc_dma[mode[1]])
1555 mode[0] = drvp[0].PIO_mode = 0;
1556 goto ok;
1557 }
1558 /*
1559 * If both drives are not DMA, takes the lower mode, unless
1560 * one of them is PIO mode < 2
1561 */
1562 if (drvp[0].PIO_mode < 2) {
1563 mode[0] = drvp[0].PIO_mode = 0;
1564 mode[1] = drvp[1].PIO_mode;
1565 } else if (drvp[1].PIO_mode < 2) {
1566 mode[1] = drvp[1].PIO_mode = 0;
1567 mode[0] = drvp[0].PIO_mode;
1568 } else {
1569 mode[0] = mode[1] =
1570 min(drvp[1].PIO_mode, drvp[0].PIO_mode);
1571 drvp[0].PIO_mode = mode[0];
1572 drvp[1].PIO_mode = mode[1];
1573 }
1574 ok: /* The modes are setup */
1575 for (drive = 0; drive < 2; drive++) {
1576 if (drvp[drive].drive_flags & DRIVE_DMA) {
1577 idetim |= piix_setup_idetim_timings(
1578 mode[drive], 1, chp->channel);
1579 goto end;
1580 }
1581 }
1582 /* If we are there, none of the drives are DMA */
1583 if (mode[0] >= 2)
1584 idetim |= piix_setup_idetim_timings(
1585 mode[0], 0, chp->channel);
1586 else
1587 idetim |= piix_setup_idetim_timings(
1588 mode[1], 0, chp->channel);
1589 end: /*
1590 * timing mode is now set up in the controller. Enable
1591 * it per-drive
1592 */
1593 for (drive = 0; drive < 2; drive++) {
1594 /* If no drive, skip */
1595 if ((drvp[drive].drive_flags & DRIVE) == 0)
1596 continue;
1597 idetim |= piix_setup_idetim_drvs(&drvp[drive]);
1598 if (drvp[drive].drive_flags & DRIVE_DMA)
1599 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1600 }
1601 if (idedma_ctl != 0) {
1602 /* Add software bits in status register */
1603 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1604 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
1605 idedma_ctl);
1606 }
1607 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
1608 pciide_print_modes(cp);
1609 }
1610
1611 void
1612 piix3_4_setup_channel(chp)
1613 struct channel_softc *chp;
1614 {
1615 struct ata_drive_datas *drvp;
1616 u_int32_t oidetim, idetim, sidetim, udmareg, ideconf, idedma_ctl;
1617 struct pciide_channel *cp = (struct pciide_channel*)chp;
1618 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1619 int drive;
1620 int channel = chp->channel;
1621
1622 oidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_IDETIM);
1623 sidetim = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM);
1624 udmareg = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG);
1625 ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, PIIX_CONFIG);
1626 idetim = PIIX_IDETIM_CLEAR(oidetim, 0xffff, channel);
1627 sidetim &= ~(PIIX_SIDETIM_ISP_MASK(channel) |
1628 PIIX_SIDETIM_RTC_MASK(channel));
1629
1630 idedma_ctl = 0;
1631 /* If channel disabled, no need to go further */
1632 if ((PIIX_IDETIM_READ(oidetim, channel) & PIIX_IDETIM_IDE) == 0)
1633 return;
1634 /* set up new idetim: Enable IDE registers decode */
1635 idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, channel);
1636
1637 /* setup DMA if needed */
1638 pciide_channel_dma_setup(cp);
1639
1640 for (drive = 0; drive < 2; drive++) {
1641 udmareg &= ~(PIIX_UDMACTL_DRV_EN(channel, drive) |
1642 PIIX_UDMATIM_SET(0x3, channel, drive));
1643 drvp = &chp->ch_drive[drive];
1644 /* If no drive, skip */
1645 if ((drvp->drive_flags & DRIVE) == 0)
1646 continue;
1647 if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
1648 (drvp->drive_flags & DRIVE_UDMA) == 0))
1649 goto pio;
1650
1651 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE ||
1652 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AB_IDE ||
1653 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
1654 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE) {
1655 ideconf |= PIIX_CONFIG_PINGPONG;
1656 }
1657 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BA_IDE ||
1658 sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801BAM_IDE) {
1659 /* setup Ultra/100 */
1660 if (drvp->UDMA_mode > 2 &&
1661 (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
1662 drvp->UDMA_mode = 2;
1663 if (drvp->UDMA_mode > 4) {
1664 ideconf |= PIIX_CONFIG_UDMA100(channel, drive);
1665 } else {
1666 ideconf &= ~PIIX_CONFIG_UDMA100(channel, drive);
1667 if (drvp->UDMA_mode > 2) {
1668 ideconf |= PIIX_CONFIG_UDMA66(channel,
1669 drive);
1670 } else {
1671 ideconf &= ~PIIX_CONFIG_UDMA66(channel,
1672 drive);
1673 }
1674 }
1675 }
1676 if (sc->sc_pp->ide_product == PCI_PRODUCT_INTEL_82801AA_IDE) {
1677 /* setup Ultra/66 */
1678 if (drvp->UDMA_mode > 2 &&
1679 (ideconf & PIIX_CONFIG_CR(channel, drive)) == 0)
1680 drvp->UDMA_mode = 2;
1681 if (drvp->UDMA_mode > 2)
1682 ideconf |= PIIX_CONFIG_UDMA66(channel, drive);
1683 else
1684 ideconf &= ~PIIX_CONFIG_UDMA66(channel, drive);
1685 }
1686 if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
1687 (drvp->drive_flags & DRIVE_UDMA)) {
1688 /* use Ultra/DMA */
1689 drvp->drive_flags &= ~DRIVE_DMA;
1690 udmareg |= PIIX_UDMACTL_DRV_EN( channel, drive);
1691 udmareg |= PIIX_UDMATIM_SET(
1692 piix4_sct_udma[drvp->UDMA_mode], channel, drive);
1693 } else {
1694 /* use Multiword DMA */
1695 drvp->drive_flags &= ~DRIVE_UDMA;
1696 if (drive == 0) {
1697 idetim |= piix_setup_idetim_timings(
1698 drvp->DMA_mode, 1, channel);
1699 } else {
1700 sidetim |= piix_setup_sidetim_timings(
1701 drvp->DMA_mode, 1, channel);
1702 idetim =PIIX_IDETIM_SET(idetim,
1703 PIIX_IDETIM_SITRE, channel);
1704 }
1705 }
1706 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1707
1708 pio: /* use PIO mode */
1709 idetim |= piix_setup_idetim_drvs(drvp);
1710 if (drive == 0) {
1711 idetim |= piix_setup_idetim_timings(
1712 drvp->PIO_mode, 0, channel);
1713 } else {
1714 sidetim |= piix_setup_sidetim_timings(
1715 drvp->PIO_mode, 0, channel);
1716 idetim =PIIX_IDETIM_SET(idetim,
1717 PIIX_IDETIM_SITRE, channel);
1718 }
1719 }
1720 if (idedma_ctl != 0) {
1721 /* Add software bits in status register */
1722 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1723 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * channel),
1724 idedma_ctl);
1725 }
1726 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_IDETIM, idetim);
1727 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_SIDETIM, sidetim);
1728 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_UDMAREG, udmareg);
1729 pci_conf_write(sc->sc_pc, sc->sc_tag, PIIX_CONFIG, ideconf);
1730 pciide_print_modes(cp);
1731 }
1732
1733
1734 /* setup ISP and RTC fields, based on mode */
1735 static u_int32_t
1736 piix_setup_idetim_timings(mode, dma, channel)
1737 u_int8_t mode;
1738 u_int8_t dma;
1739 u_int8_t channel;
1740 {
1741
1742 if (dma)
1743 return PIIX_IDETIM_SET(0,
1744 PIIX_IDETIM_ISP_SET(piix_isp_dma[mode]) |
1745 PIIX_IDETIM_RTC_SET(piix_rtc_dma[mode]),
1746 channel);
1747 else
1748 return PIIX_IDETIM_SET(0,
1749 PIIX_IDETIM_ISP_SET(piix_isp_pio[mode]) |
1750 PIIX_IDETIM_RTC_SET(piix_rtc_pio[mode]),
1751 channel);
1752 }
1753
1754 /* setup DTE, PPE, IE and TIME field based on PIO mode */
1755 static u_int32_t
1756 piix_setup_idetim_drvs(drvp)
1757 struct ata_drive_datas *drvp;
1758 {
1759 u_int32_t ret = 0;
1760 struct channel_softc *chp = drvp->chnl_softc;
1761 u_int8_t channel = chp->channel;
1762 u_int8_t drive = drvp->drive;
1763
1764 /*
1765 * If drive is using UDMA, timings setups are independant
1766 * So just check DMA and PIO here.
1767 */
1768 if (drvp->drive_flags & DRIVE_DMA) {
1769 /* if mode = DMA mode 0, use compatible timings */
1770 if ((drvp->drive_flags & DRIVE_DMA) &&
1771 drvp->DMA_mode == 0) {
1772 drvp->PIO_mode = 0;
1773 return ret;
1774 }
1775 ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
1776 /*
1777 * PIO and DMA timings are the same, use fast timings for PIO
1778 * too, else use compat timings.
1779 */
1780 if ((piix_isp_pio[drvp->PIO_mode] !=
1781 piix_isp_dma[drvp->DMA_mode]) ||
1782 (piix_rtc_pio[drvp->PIO_mode] !=
1783 piix_rtc_dma[drvp->DMA_mode]))
1784 drvp->PIO_mode = 0;
1785 /* if PIO mode <= 2, use compat timings for PIO */
1786 if (drvp->PIO_mode <= 2) {
1787 ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_DTE(drive),
1788 channel);
1789 return ret;
1790 }
1791 }
1792
1793 /*
1794 * Now setup PIO modes. If mode < 2, use compat timings.
1795 * Else enable fast timings. Enable IORDY and prefetch/post
1796 * if PIO mode >= 3.
1797 */
1798
1799 if (drvp->PIO_mode < 2)
1800 return ret;
1801
1802 ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_TIME(drive), channel);
1803 if (drvp->PIO_mode >= 3) {
1804 ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_IE(drive), channel);
1805 ret = PIIX_IDETIM_SET(ret, PIIX_IDETIM_PPE(drive), channel);
1806 }
1807 return ret;
1808 }
1809
1810 /* setup values in SIDETIM registers, based on mode */
1811 static u_int32_t
1812 piix_setup_sidetim_timings(mode, dma, channel)
1813 u_int8_t mode;
1814 u_int8_t dma;
1815 u_int8_t channel;
1816 {
1817 if (dma)
1818 return PIIX_SIDETIM_ISP_SET(piix_isp_dma[mode], channel) |
1819 PIIX_SIDETIM_RTC_SET(piix_rtc_dma[mode], channel);
1820 else
1821 return PIIX_SIDETIM_ISP_SET(piix_isp_pio[mode], channel) |
1822 PIIX_SIDETIM_RTC_SET(piix_rtc_pio[mode], channel);
1823 }
1824
1825 void
1826 amd756_chip_map(sc, pa)
1827 struct pciide_softc *sc;
1828 struct pci_attach_args *pa;
1829 {
1830 struct pciide_channel *cp;
1831 pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1832 int channel;
1833 pcireg_t chanenable;
1834 bus_size_t cmdsize, ctlsize;
1835
1836 if (pciide_chipen(sc, pa) == 0)
1837 return;
1838 printf("%s: bus-master DMA support present",
1839 sc->sc_wdcdev.sc_dev.dv_xname);
1840 pciide_mapreg_dma(sc, pa);
1841 printf("\n");
1842 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
1843 WDC_CAPABILITY_MODE;
1844 if (sc->sc_dma_ok) {
1845 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
1846 sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
1847 sc->sc_wdcdev.irqack = pciide_irqack;
1848 }
1849 sc->sc_wdcdev.PIO_cap = 4;
1850 sc->sc_wdcdev.DMA_cap = 2;
1851 sc->sc_wdcdev.UDMA_cap = 4;
1852 sc->sc_wdcdev.set_modes = amd756_setup_channel;
1853 sc->sc_wdcdev.channels = sc->wdc_chanarray;
1854 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
1855 chanenable = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_CHANSTATUS_EN);
1856
1857 WDCDEBUG_PRINT(("amd756_chip_map: Channel enable=0x%x\n", chanenable),
1858 DEBUG_PROBE);
1859 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
1860 cp = &sc->pciide_channels[channel];
1861 if (pciide_chansetup(sc, channel, interface) == 0)
1862 continue;
1863
1864 if ((chanenable & AMD756_CHAN_EN(channel)) == 0) {
1865 printf("%s: %s channel ignored (disabled)\n",
1866 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
1867 continue;
1868 }
1869 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
1870 pciide_pci_intr);
1871
1872 if (pciide_chan_candisable(cp))
1873 chanenable &= ~AMD756_CHAN_EN(channel);
1874 pciide_map_compat_intr(pa, cp, channel, interface);
1875 if (cp->hw_ok == 0)
1876 continue;
1877
1878 amd756_setup_channel(&cp->wdc_channel);
1879 }
1880 pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_CHANSTATUS_EN,
1881 chanenable);
1882 return;
1883 }
1884
1885 void
1886 amd756_setup_channel(chp)
1887 struct channel_softc *chp;
1888 {
1889 u_int32_t udmatim_reg, datatim_reg;
1890 u_int8_t idedma_ctl;
1891 int mode, drive;
1892 struct ata_drive_datas *drvp;
1893 struct pciide_channel *cp = (struct pciide_channel*)chp;
1894 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
1895 #ifndef PCIIDE_AMD756_ENABLEDMA
1896 int rev = PCI_REVISION(
1897 pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
1898 #endif
1899
1900 idedma_ctl = 0;
1901 datatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_DATATIM);
1902 udmatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, AMD756_UDMA);
1903 datatim_reg &= ~AMD756_DATATIM_MASK(chp->channel);
1904 udmatim_reg &= ~AMD756_UDMA_MASK(chp->channel);
1905
1906 /* setup DMA if needed */
1907 pciide_channel_dma_setup(cp);
1908
1909 for (drive = 0; drive < 2; drive++) {
1910 drvp = &chp->ch_drive[drive];
1911 /* If no drive, skip */
1912 if ((drvp->drive_flags & DRIVE) == 0)
1913 continue;
1914 /* add timing values, setup DMA if needed */
1915 if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
1916 (drvp->drive_flags & DRIVE_UDMA) == 0)) {
1917 mode = drvp->PIO_mode;
1918 goto pio;
1919 }
1920 if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
1921 (drvp->drive_flags & DRIVE_UDMA)) {
1922 /* use Ultra/DMA */
1923 drvp->drive_flags &= ~DRIVE_DMA;
1924 udmatim_reg |= AMD756_UDMA_EN(chp->channel, drive) |
1925 AMD756_UDMA_EN_MTH(chp->channel, drive) |
1926 AMD756_UDMA_TIME(chp->channel, drive,
1927 amd756_udma_tim[drvp->UDMA_mode]);
1928 /* can use PIO timings, MW DMA unused */
1929 mode = drvp->PIO_mode;
1930 } else {
1931 /* use Multiword DMA, but only if revision is OK */
1932 drvp->drive_flags &= ~DRIVE_UDMA;
1933 #ifndef PCIIDE_AMD756_ENABLEDMA
1934 /*
1935 * The workaround doesn't seem to be necessary
1936 * with all drives, so it can be disabled by
1937 * PCIIDE_AMD756_ENABLEDMA. It causes a hard hang if
1938 * triggered.
1939 */
1940 if (AMD756_CHIPREV_DISABLEDMA(rev)) {
1941 printf("%s:%d:%d: multi-word DMA disabled due "
1942 "to chip revision\n",
1943 sc->sc_wdcdev.sc_dev.dv_xname,
1944 chp->channel, drive);
1945 mode = drvp->PIO_mode;
1946 drvp->drive_flags &= ~DRIVE_DMA;
1947 goto pio;
1948 }
1949 #endif
1950 /* mode = min(pio, dma+2) */
1951 if (drvp->PIO_mode <= (drvp->DMA_mode +2))
1952 mode = drvp->PIO_mode;
1953 else
1954 mode = drvp->DMA_mode + 2;
1955 }
1956 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
1957
1958 pio: /* setup PIO mode */
1959 if (mode <= 2) {
1960 drvp->DMA_mode = 0;
1961 drvp->PIO_mode = 0;
1962 mode = 0;
1963 } else {
1964 drvp->PIO_mode = mode;
1965 drvp->DMA_mode = mode - 2;
1966 }
1967 datatim_reg |=
1968 AMD756_DATATIM_PULSE(chp->channel, drive,
1969 amd756_pio_set[mode]) |
1970 AMD756_DATATIM_RECOV(chp->channel, drive,
1971 amd756_pio_rec[mode]);
1972 }
1973 if (idedma_ctl != 0) {
1974 /* Add software bits in status register */
1975 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
1976 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
1977 idedma_ctl);
1978 }
1979 pciide_print_modes(cp);
1980 pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_DATATIM, datatim_reg);
1981 pci_conf_write(sc->sc_pc, sc->sc_tag, AMD756_UDMA, udmatim_reg);
1982 }
1983
1984 void
1985 apollo_chip_map(sc, pa)
1986 struct pciide_softc *sc;
1987 struct pci_attach_args *pa;
1988 {
1989 struct pciide_channel *cp;
1990 pcireg_t interface = PCI_INTERFACE(pa->pa_class);
1991 int channel;
1992 u_int32_t ideconf;
1993 bus_size_t cmdsize, ctlsize;
1994 pcitag_t pcib_tag;
1995 pcireg_t pcib_id, pcib_class;
1996
1997 if (pciide_chipen(sc, pa) == 0)
1998 return;
1999 /* get a PCI tag for the ISA bridge (function 0 of the same device) */
2000 pcib_tag = pci_make_tag(pa->pa_pc, pa->pa_bus, pa->pa_device, 0);
2001 /* and read ID and rev of the ISA bridge */
2002 pcib_id = pci_conf_read(sc->sc_pc, pcib_tag, PCI_ID_REG);
2003 pcib_class = pci_conf_read(sc->sc_pc, pcib_tag, PCI_CLASS_REG);
2004 printf(": VIA Technologies ");
2005 switch (PCI_PRODUCT(pcib_id)) {
2006 case PCI_PRODUCT_VIATECH_VT82C586_ISA:
2007 printf("VT82C586 (Apollo VP) ");
2008 if(PCI_REVISION(pcib_class) >= 0x02) {
2009 printf("ATA33 controller\n");
2010 sc->sc_wdcdev.UDMA_cap = 2;
2011 } else {
2012 printf("controller\n");
2013 sc->sc_wdcdev.UDMA_cap = 0;
2014 }
2015 break;
2016 case PCI_PRODUCT_VIATECH_VT82C596A:
2017 printf("VT82C596A (Apollo Pro) ");
2018 if (PCI_REVISION(pcib_class) >= 0x12) {
2019 printf("ATA66 controller\n");
2020 sc->sc_wdcdev.UDMA_cap = 4;
2021 } else {
2022 printf("ATA33 controller\n");
2023 sc->sc_wdcdev.UDMA_cap = 2;
2024 }
2025 break;
2026 case PCI_PRODUCT_VIATECH_VT82C686A_ISA:
2027 printf("VT82C686A (Apollo KX133) ");
2028 if (PCI_REVISION(pcib_class) >= 0x40) {
2029 printf("ATA100 controller\n");
2030 sc->sc_wdcdev.UDMA_cap = 5;
2031 } else {
2032 printf("ATA66 controller\n");
2033 sc->sc_wdcdev.UDMA_cap = 4;
2034 }
2035 default:
2036 printf("unknown ATA controller\n");
2037 sc->sc_wdcdev.UDMA_cap = 0;
2038 }
2039
2040 printf("%s: bus-master DMA support present",
2041 sc->sc_wdcdev.sc_dev.dv_xname);
2042 pciide_mapreg_dma(sc, pa);
2043 printf("\n");
2044 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2045 WDC_CAPABILITY_MODE;
2046 if (sc->sc_dma_ok) {
2047 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2048 sc->sc_wdcdev.irqack = pciide_irqack;
2049 if (sc->sc_wdcdev.UDMA_cap > 0)
2050 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2051 }
2052 sc->sc_wdcdev.PIO_cap = 4;
2053 sc->sc_wdcdev.DMA_cap = 2;
2054 sc->sc_wdcdev.set_modes = apollo_setup_channel;
2055 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2056 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2057
2058 WDCDEBUG_PRINT(("apollo_chip_map: old APO_IDECONF=0x%x, "
2059 "APO_CTLMISC=0x%x, APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
2060 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF),
2061 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_CTLMISC),
2062 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM),
2063 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA)),
2064 DEBUG_PROBE);
2065
2066 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2067 cp = &sc->pciide_channels[channel];
2068 if (pciide_chansetup(sc, channel, interface) == 0)
2069 continue;
2070
2071 ideconf = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_IDECONF);
2072 if ((ideconf & APO_IDECONF_EN(channel)) == 0) {
2073 printf("%s: %s channel ignored (disabled)\n",
2074 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2075 continue;
2076 }
2077 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
2078 pciide_pci_intr);
2079 if (cp->hw_ok == 0)
2080 continue;
2081 if (pciide_chan_candisable(cp)) {
2082 ideconf &= ~APO_IDECONF_EN(channel);
2083 pci_conf_write(sc->sc_pc, sc->sc_tag, APO_IDECONF,
2084 ideconf);
2085 }
2086 pciide_map_compat_intr(pa, cp, channel, interface);
2087
2088 if (cp->hw_ok == 0)
2089 continue;
2090 apollo_setup_channel(&sc->pciide_channels[channel].wdc_channel);
2091 }
2092 WDCDEBUG_PRINT(("apollo_chip_map: APO_DATATIM=0x%x, APO_UDMA=0x%x\n",
2093 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM),
2094 pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA)), DEBUG_PROBE);
2095 }
2096
2097 void
2098 apollo_setup_channel(chp)
2099 struct channel_softc *chp;
2100 {
2101 u_int32_t udmatim_reg, datatim_reg;
2102 u_int8_t idedma_ctl;
2103 int mode, drive;
2104 struct ata_drive_datas *drvp;
2105 struct pciide_channel *cp = (struct pciide_channel*)chp;
2106 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2107
2108 idedma_ctl = 0;
2109 datatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_DATATIM);
2110 udmatim_reg = pci_conf_read(sc->sc_pc, sc->sc_tag, APO_UDMA);
2111 datatim_reg &= ~APO_DATATIM_MASK(chp->channel);
2112 udmatim_reg &= ~APO_UDMA_MASK(chp->channel);
2113
2114 /* setup DMA if needed */
2115 pciide_channel_dma_setup(cp);
2116
2117 for (drive = 0; drive < 2; drive++) {
2118 drvp = &chp->ch_drive[drive];
2119 /* If no drive, skip */
2120 if ((drvp->drive_flags & DRIVE) == 0)
2121 continue;
2122 /* add timing values, setup DMA if needed */
2123 if (((drvp->drive_flags & DRIVE_DMA) == 0 &&
2124 (drvp->drive_flags & DRIVE_UDMA) == 0)) {
2125 mode = drvp->PIO_mode;
2126 goto pio;
2127 }
2128 if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
2129 (drvp->drive_flags & DRIVE_UDMA)) {
2130 /* use Ultra/DMA */
2131 drvp->drive_flags &= ~DRIVE_DMA;
2132 udmatim_reg |= APO_UDMA_EN(chp->channel, drive) |
2133 APO_UDMA_EN_MTH(chp->channel, drive);
2134 if (sc->sc_wdcdev.UDMA_cap == 5) {
2135 /* 686b */
2136 udmatim_reg |= APO_UDMA_CLK66(chp->channel);
2137 udmatim_reg |= APO_UDMA_TIME(chp->channel,
2138 drive, apollo_udma100_tim[drvp->UDMA_mode]);
2139 } else if (sc->sc_wdcdev.UDMA_cap == 4) {
2140 /* 596b or 686a */
2141 udmatim_reg |= APO_UDMA_CLK66(chp->channel);
2142 udmatim_reg |= APO_UDMA_TIME(chp->channel,
2143 drive, apollo_udma66_tim[drvp->UDMA_mode]);
2144 } else {
2145 /* 596a or 586b */
2146 udmatim_reg |= APO_UDMA_TIME(chp->channel,
2147 drive, apollo_udma33_tim[drvp->UDMA_mode]);
2148 }
2149 /* can use PIO timings, MW DMA unused */
2150 mode = drvp->PIO_mode;
2151 } else {
2152 /* use Multiword DMA */
2153 drvp->drive_flags &= ~DRIVE_UDMA;
2154 /* mode = min(pio, dma+2) */
2155 if (drvp->PIO_mode <= (drvp->DMA_mode +2))
2156 mode = drvp->PIO_mode;
2157 else
2158 mode = drvp->DMA_mode + 2;
2159 }
2160 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2161
2162 pio: /* setup PIO mode */
2163 if (mode <= 2) {
2164 drvp->DMA_mode = 0;
2165 drvp->PIO_mode = 0;
2166 mode = 0;
2167 } else {
2168 drvp->PIO_mode = mode;
2169 drvp->DMA_mode = mode - 2;
2170 }
2171 datatim_reg |=
2172 APO_DATATIM_PULSE(chp->channel, drive,
2173 apollo_pio_set[mode]) |
2174 APO_DATATIM_RECOV(chp->channel, drive,
2175 apollo_pio_rec[mode]);
2176 }
2177 if (idedma_ctl != 0) {
2178 /* Add software bits in status register */
2179 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2180 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
2181 idedma_ctl);
2182 }
2183 pciide_print_modes(cp);
2184 pci_conf_write(sc->sc_pc, sc->sc_tag, APO_DATATIM, datatim_reg);
2185 pci_conf_write(sc->sc_pc, sc->sc_tag, APO_UDMA, udmatim_reg);
2186 }
2187
2188 void
2189 cmd_channel_map(pa, sc, channel)
2190 struct pci_attach_args *pa;
2191 struct pciide_softc *sc;
2192 int channel;
2193 {
2194 struct pciide_channel *cp = &sc->pciide_channels[channel];
2195 bus_size_t cmdsize, ctlsize;
2196 u_int8_t ctrl = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CTRL);
2197 int interface;
2198
2199 /*
2200 * The 0648/0649 can be told to identify as a RAID controller.
2201 * In this case, we have to fake interface
2202 */
2203 if (PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_MASS_STORAGE_IDE) {
2204 interface = PCIIDE_INTERFACE_SETTABLE(0) |
2205 PCIIDE_INTERFACE_SETTABLE(1);
2206 if (pciide_pci_read(pa->pa_pc, pa->pa_tag, CMD_CONF) &
2207 CMD_CONF_DSA1)
2208 interface |= PCIIDE_INTERFACE_PCI(0) |
2209 PCIIDE_INTERFACE_PCI(1);
2210 } else {
2211 interface = PCI_INTERFACE(pa->pa_class);
2212 }
2213
2214 sc->wdc_chanarray[channel] = &cp->wdc_channel;
2215 cp->name = PCIIDE_CHANNEL_NAME(channel);
2216 cp->wdc_channel.channel = channel;
2217 cp->wdc_channel.wdc = &sc->sc_wdcdev;
2218
2219 if (channel > 0) {
2220 cp->wdc_channel.ch_queue =
2221 sc->pciide_channels[0].wdc_channel.ch_queue;
2222 } else {
2223 cp->wdc_channel.ch_queue =
2224 malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
2225 }
2226 if (cp->wdc_channel.ch_queue == NULL) {
2227 printf("%s %s channel: "
2228 "can't allocate memory for command queue",
2229 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2230 return;
2231 }
2232
2233 printf("%s: %s channel %s to %s mode\n",
2234 sc->sc_wdcdev.sc_dev.dv_xname, cp->name,
2235 (interface & PCIIDE_INTERFACE_SETTABLE(channel)) ?
2236 "configured" : "wired",
2237 (interface & PCIIDE_INTERFACE_PCI(channel)) ?
2238 "native-PCI" : "compatibility");
2239
2240 /*
2241 * with a CMD PCI64x, if we get here, the first channel is enabled:
2242 * there's no way to disable the first channel without disabling
2243 * the whole device
2244 */
2245 if (channel != 0 && (ctrl & CMD_CTRL_2PORT) == 0) {
2246 printf("%s: %s channel ignored (disabled)\n",
2247 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2248 return;
2249 }
2250
2251 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize, cmd_pci_intr);
2252 if (cp->hw_ok == 0)
2253 return;
2254 if (channel == 1) {
2255 if (pciide_chan_candisable(cp)) {
2256 ctrl &= ~CMD_CTRL_2PORT;
2257 pciide_pci_write(pa->pa_pc, pa->pa_tag,
2258 CMD_CTRL, ctrl);
2259 }
2260 }
2261 pciide_map_compat_intr(pa, cp, channel, interface);
2262 }
2263
2264 int
2265 cmd_pci_intr(arg)
2266 void *arg;
2267 {
2268 struct pciide_softc *sc = arg;
2269 struct pciide_channel *cp;
2270 struct channel_softc *wdc_cp;
2271 int i, rv, crv;
2272 u_int32_t priirq, secirq;
2273
2274 rv = 0;
2275 priirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CONF);
2276 secirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23);
2277 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
2278 cp = &sc->pciide_channels[i];
2279 wdc_cp = &cp->wdc_channel;
2280 /* If a compat channel skip. */
2281 if (cp->compat)
2282 continue;
2283 if ((i == 0 && (priirq & CMD_CONF_DRV0_INTR)) ||
2284 (i == 1 && (secirq & CMD_ARTTIM23_IRQ))) {
2285 crv = wdcintr(wdc_cp);
2286 if (crv == 0)
2287 printf("%s:%d: bogus intr\n",
2288 sc->sc_wdcdev.sc_dev.dv_xname, i);
2289 else
2290 rv = 1;
2291 }
2292 }
2293 return rv;
2294 }
2295
2296 void
2297 cmd_chip_map(sc, pa)
2298 struct pciide_softc *sc;
2299 struct pci_attach_args *pa;
2300 {
2301 int channel;
2302
2303 /*
2304 * For a CMD PCI064x, the use of PCI_COMMAND_IO_ENABLE
2305 * and base adresses registers can be disabled at
2306 * hardware level. In this case, the device is wired
2307 * in compat mode and its first channel is always enabled,
2308 * but we can't rely on PCI_COMMAND_IO_ENABLE.
2309 * In fact, it seems that the first channel of the CMD PCI0640
2310 * can't be disabled.
2311 */
2312
2313 #ifdef PCIIDE_CMD064x_DISABLE
2314 if (pciide_chipen(sc, pa) == 0)
2315 return;
2316 #endif
2317
2318 printf("%s: hardware does not support DMA\n",
2319 sc->sc_wdcdev.sc_dev.dv_xname);
2320 sc->sc_dma_ok = 0;
2321
2322 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2323 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2324 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16;
2325
2326 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2327 cmd_channel_map(pa, sc, channel);
2328 }
2329 }
2330
2331 void
2332 cmd0643_9_chip_map(sc, pa)
2333 struct pciide_softc *sc;
2334 struct pci_attach_args *pa;
2335 {
2336 struct pciide_channel *cp;
2337 int channel;
2338 int rev = PCI_REVISION(
2339 pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG));
2340
2341 /*
2342 * For a CMD PCI064x, the use of PCI_COMMAND_IO_ENABLE
2343 * and base adresses registers can be disabled at
2344 * hardware level. In this case, the device is wired
2345 * in compat mode and its first channel is always enabled,
2346 * but we can't rely on PCI_COMMAND_IO_ENABLE.
2347 * In fact, it seems that the first channel of the CMD PCI0640
2348 * can't be disabled.
2349 */
2350
2351 #ifdef PCIIDE_CMD064x_DISABLE
2352 if (pciide_chipen(sc, pa) == 0)
2353 return;
2354 #endif
2355 printf("%s: bus-master DMA support present",
2356 sc->sc_wdcdev.sc_dev.dv_xname);
2357 pciide_mapreg_dma(sc, pa);
2358 printf("\n");
2359 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2360 WDC_CAPABILITY_MODE;
2361 if (sc->sc_dma_ok) {
2362 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2363 switch (sc->sc_pp->ide_product) {
2364 case PCI_PRODUCT_CMDTECH_649:
2365 case PCI_PRODUCT_CMDTECH_648:
2366 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2367 sc->sc_wdcdev.UDMA_cap = 4;
2368 sc->sc_wdcdev.irqack = cmd646_9_irqack;
2369 break;
2370 case PCI_PRODUCT_CMDTECH_646:
2371 if (rev >= CMD0646U2_REV) {
2372 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2373 sc->sc_wdcdev.UDMA_cap = 2;
2374 } else if (rev >= CMD0646U_REV) {
2375 /*
2376 * Linux's driver claims that the 646U is broken
2377 * with UDMA. Only enable it if we know what we're
2378 * doing
2379 */
2380 #ifdef PCIIDE_CMD0646U_ENABLEUDMA
2381 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2382 sc->sc_wdcdev.UDMA_cap = 2;
2383 #endif
2384 /* explicitely disable UDMA */
2385 pciide_pci_write(sc->sc_pc, sc->sc_tag,
2386 CMD_UDMATIM(0), 0);
2387 pciide_pci_write(sc->sc_pc, sc->sc_tag,
2388 CMD_UDMATIM(1), 0);
2389 }
2390 sc->sc_wdcdev.irqack = cmd646_9_irqack;
2391 break;
2392 default:
2393 sc->sc_wdcdev.irqack = pciide_irqack;
2394 }
2395 }
2396
2397 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2398 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2399 sc->sc_wdcdev.PIO_cap = 4;
2400 sc->sc_wdcdev.DMA_cap = 2;
2401 sc->sc_wdcdev.set_modes = cmd0643_9_setup_channel;
2402
2403 WDCDEBUG_PRINT(("cmd0643_9_chip_map: old timings reg 0x%x 0x%x\n",
2404 pci_conf_read(sc->sc_pc, sc->sc_tag, 0x54),
2405 pci_conf_read(sc->sc_pc, sc->sc_tag, 0x58)),
2406 DEBUG_PROBE);
2407
2408 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2409 cp = &sc->pciide_channels[channel];
2410 cmd_channel_map(pa, sc, channel);
2411 if (cp->hw_ok == 0)
2412 continue;
2413 cmd0643_9_setup_channel(&cp->wdc_channel);
2414 }
2415 /*
2416 * note - this also makes sure we clear the irq disable and reset
2417 * bits
2418 */
2419 pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_DMA_MODE, CMD_DMA_MULTIPLE);
2420 WDCDEBUG_PRINT(("cmd0643_9_chip_map: timings reg now 0x%x 0x%x\n",
2421 pci_conf_read(sc->sc_pc, sc->sc_tag, 0x54),
2422 pci_conf_read(sc->sc_pc, sc->sc_tag, 0x58)),
2423 DEBUG_PROBE);
2424 }
2425
2426 void
2427 cmd0643_9_setup_channel(chp)
2428 struct channel_softc *chp;
2429 {
2430 struct ata_drive_datas *drvp;
2431 u_int8_t tim;
2432 u_int32_t idedma_ctl, udma_reg;
2433 int drive;
2434 struct pciide_channel *cp = (struct pciide_channel*)chp;
2435 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2436
2437 idedma_ctl = 0;
2438 /* setup DMA if needed */
2439 pciide_channel_dma_setup(cp);
2440
2441 for (drive = 0; drive < 2; drive++) {
2442 drvp = &chp->ch_drive[drive];
2443 /* If no drive, skip */
2444 if ((drvp->drive_flags & DRIVE) == 0)
2445 continue;
2446 /* add timing values, setup DMA if needed */
2447 tim = cmd0643_9_data_tim_pio[drvp->PIO_mode];
2448 if (drvp->drive_flags & (DRIVE_DMA | DRIVE_UDMA)) {
2449 if (drvp->drive_flags & DRIVE_UDMA) {
2450 /* UltraDMA on a 646U2, 0648 or 0649 */
2451 drvp->drive_flags &= ~DRIVE_DMA;
2452 udma_reg = pciide_pci_read(sc->sc_pc,
2453 sc->sc_tag, CMD_UDMATIM(chp->channel));
2454 if (drvp->UDMA_mode > 2 &&
2455 (pciide_pci_read(sc->sc_pc, sc->sc_tag,
2456 CMD_BICSR) &
2457 CMD_BICSR_80(chp->channel)) == 0)
2458 drvp->UDMA_mode = 2;
2459 if (drvp->UDMA_mode > 2)
2460 udma_reg &= ~CMD_UDMATIM_UDMA33(drive);
2461 else if (sc->sc_wdcdev.UDMA_cap > 2)
2462 udma_reg |= CMD_UDMATIM_UDMA33(drive);
2463 udma_reg |= CMD_UDMATIM_UDMA(drive);
2464 udma_reg &= ~(CMD_UDMATIM_TIM_MASK <<
2465 CMD_UDMATIM_TIM_OFF(drive));
2466 udma_reg |=
2467 (cmd0646_9_tim_udma[drvp->UDMA_mode] <<
2468 CMD_UDMATIM_TIM_OFF(drive));
2469 pciide_pci_write(sc->sc_pc, sc->sc_tag,
2470 CMD_UDMATIM(chp->channel), udma_reg);
2471 } else {
2472 /*
2473 * use Multiword DMA.
2474 * Timings will be used for both PIO and DMA,
2475 * so adjust DMA mode if needed
2476 * if we have a 0646U2/8/9, turn off UDMA
2477 */
2478 if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA) {
2479 udma_reg = pciide_pci_read(sc->sc_pc,
2480 sc->sc_tag,
2481 CMD_UDMATIM(chp->channel));
2482 udma_reg &= ~CMD_UDMATIM_UDMA(drive);
2483 pciide_pci_write(sc->sc_pc, sc->sc_tag,
2484 CMD_UDMATIM(chp->channel),
2485 udma_reg);
2486 }
2487 if (drvp->PIO_mode >= 3 &&
2488 (drvp->DMA_mode + 2) > drvp->PIO_mode) {
2489 drvp->DMA_mode = drvp->PIO_mode - 2;
2490 }
2491 tim = cmd0643_9_data_tim_dma[drvp->DMA_mode];
2492 }
2493 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2494 }
2495 pciide_pci_write(sc->sc_pc, sc->sc_tag,
2496 CMD_DATA_TIM(chp->channel, drive), tim);
2497 }
2498 if (idedma_ctl != 0) {
2499 /* Add software bits in status register */
2500 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2501 IDEDMA_CTL + (IDEDMA_SCH_OFFSET * chp->channel),
2502 idedma_ctl);
2503 }
2504 pciide_print_modes(cp);
2505 }
2506
2507 void
2508 cmd646_9_irqack(chp)
2509 struct channel_softc *chp;
2510 {
2511 u_int32_t priirq, secirq;
2512 struct pciide_channel *cp = (struct pciide_channel*)chp;
2513 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2514
2515 if (chp->channel == 0) {
2516 priirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_CONF);
2517 pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_CONF, priirq);
2518 } else {
2519 secirq = pciide_pci_read(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23);
2520 pciide_pci_write(sc->sc_pc, sc->sc_tag, CMD_ARTTIM23, secirq);
2521 }
2522 pciide_irqack(chp);
2523 }
2524
2525 void
2526 cy693_chip_map(sc, pa)
2527 struct pciide_softc *sc;
2528 struct pci_attach_args *pa;
2529 {
2530 struct pciide_channel *cp;
2531 pcireg_t interface = PCI_INTERFACE(pa->pa_class);
2532 bus_size_t cmdsize, ctlsize;
2533
2534 if (pciide_chipen(sc, pa) == 0)
2535 return;
2536 /*
2537 * this chip has 2 PCI IDE functions, one for primary and one for
2538 * secondary. So we need to call pciide_mapregs_compat() with
2539 * the real channel
2540 */
2541 if (pa->pa_function == 1) {
2542 sc->sc_cy_compatchan = 0;
2543 } else if (pa->pa_function == 2) {
2544 sc->sc_cy_compatchan = 1;
2545 } else {
2546 printf("%s: unexpected PCI function %d\n",
2547 sc->sc_wdcdev.sc_dev.dv_xname, pa->pa_function);
2548 return;
2549 }
2550 if (interface & PCIIDE_INTERFACE_BUS_MASTER_DMA) {
2551 printf("%s: bus-master DMA support present",
2552 sc->sc_wdcdev.sc_dev.dv_xname);
2553 pciide_mapreg_dma(sc, pa);
2554 } else {
2555 printf("%s: hardware does not support DMA",
2556 sc->sc_wdcdev.sc_dev.dv_xname);
2557 sc->sc_dma_ok = 0;
2558 }
2559 printf("\n");
2560
2561 sc->sc_cy_handle = cy82c693_init(pa->pa_iot);
2562 if (sc->sc_cy_handle == NULL) {
2563 printf("%s: unable to map hyperCache control registers\n",
2564 sc->sc_wdcdev.sc_dev.dv_xname);
2565 sc->sc_dma_ok = 0;
2566 }
2567
2568 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2569 WDC_CAPABILITY_MODE;
2570 if (sc->sc_dma_ok) {
2571 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2572 sc->sc_wdcdev.irqack = pciide_irqack;
2573 }
2574 sc->sc_wdcdev.PIO_cap = 4;
2575 sc->sc_wdcdev.DMA_cap = 2;
2576 sc->sc_wdcdev.set_modes = cy693_setup_channel;
2577
2578 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2579 sc->sc_wdcdev.nchannels = 1;
2580
2581 /* Only one channel for this chip; if we are here it's enabled */
2582 cp = &sc->pciide_channels[0];
2583 sc->wdc_chanarray[0] = &cp->wdc_channel;
2584 cp->name = PCIIDE_CHANNEL_NAME(0);
2585 cp->wdc_channel.channel = 0;
2586 cp->wdc_channel.wdc = &sc->sc_wdcdev;
2587 cp->wdc_channel.ch_queue =
2588 malloc(sizeof(struct channel_queue), M_DEVBUF, M_NOWAIT);
2589 if (cp->wdc_channel.ch_queue == NULL) {
2590 printf("%s primary channel: "
2591 "can't allocate memory for command queue",
2592 sc->sc_wdcdev.sc_dev.dv_xname);
2593 return;
2594 }
2595 printf("%s: primary channel %s to ",
2596 sc->sc_wdcdev.sc_dev.dv_xname,
2597 (interface & PCIIDE_INTERFACE_SETTABLE(0)) ?
2598 "configured" : "wired");
2599 if (interface & PCIIDE_INTERFACE_PCI(0)) {
2600 printf("native-PCI");
2601 cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize, &ctlsize,
2602 pciide_pci_intr);
2603 } else {
2604 printf("compatibility");
2605 cp->hw_ok = pciide_mapregs_compat(pa, cp, sc->sc_cy_compatchan,
2606 &cmdsize, &ctlsize);
2607 }
2608 printf(" mode\n");
2609 cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
2610 cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
2611 wdcattach(&cp->wdc_channel);
2612 if (pciide_chan_candisable(cp)) {
2613 pci_conf_write(sc->sc_pc, sc->sc_tag,
2614 PCI_COMMAND_STATUS_REG, 0);
2615 }
2616 pciide_map_compat_intr(pa, cp, sc->sc_cy_compatchan, interface);
2617 if (cp->hw_ok == 0)
2618 return;
2619 WDCDEBUG_PRINT(("cy693_chip_map: old timings reg 0x%x\n",
2620 pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)),DEBUG_PROBE);
2621 cy693_setup_channel(&cp->wdc_channel);
2622 WDCDEBUG_PRINT(("cy693_chip_map: new timings reg 0x%x\n",
2623 pci_conf_read(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL)), DEBUG_PROBE);
2624 }
2625
2626 void
2627 cy693_setup_channel(chp)
2628 struct channel_softc *chp;
2629 {
2630 struct ata_drive_datas *drvp;
2631 int drive;
2632 u_int32_t cy_cmd_ctrl;
2633 u_int32_t idedma_ctl;
2634 struct pciide_channel *cp = (struct pciide_channel*)chp;
2635 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2636 int dma_mode = -1;
2637
2638 cy_cmd_ctrl = idedma_ctl = 0;
2639
2640 /* setup DMA if needed */
2641 pciide_channel_dma_setup(cp);
2642
2643 for (drive = 0; drive < 2; drive++) {
2644 drvp = &chp->ch_drive[drive];
2645 /* If no drive, skip */
2646 if ((drvp->drive_flags & DRIVE) == 0)
2647 continue;
2648 /* add timing values, setup DMA if needed */
2649 if (drvp->drive_flags & DRIVE_DMA) {
2650 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2651 /* use Multiword DMA */
2652 if (dma_mode == -1 || dma_mode > drvp->DMA_mode)
2653 dma_mode = drvp->DMA_mode;
2654 }
2655 cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
2656 CY_CMD_CTRL_IOW_PULSE_OFF(drive));
2657 cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
2658 CY_CMD_CTRL_IOW_REC_OFF(drive));
2659 cy_cmd_ctrl |= (cy_pio_pulse[drvp->PIO_mode] <<
2660 CY_CMD_CTRL_IOR_PULSE_OFF(drive));
2661 cy_cmd_ctrl |= (cy_pio_rec[drvp->PIO_mode] <<
2662 CY_CMD_CTRL_IOR_REC_OFF(drive));
2663 }
2664 pci_conf_write(sc->sc_pc, sc->sc_tag, CY_CMD_CTRL, cy_cmd_ctrl);
2665 chp->ch_drive[0].DMA_mode = dma_mode;
2666 chp->ch_drive[1].DMA_mode = dma_mode;
2667
2668 if (dma_mode == -1)
2669 dma_mode = 0;
2670
2671 if (sc->sc_cy_handle != NULL) {
2672 /* Note: `multiple' is implied. */
2673 cy82c693_write(sc->sc_cy_handle,
2674 (sc->sc_cy_compatchan == 0) ?
2675 CY_DMA_IDX_PRIMARY : CY_DMA_IDX_SECONDARY, dma_mode);
2676 }
2677
2678 pciide_print_modes(cp);
2679
2680 if (idedma_ctl != 0) {
2681 /* Add software bits in status register */
2682 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2683 IDEDMA_CTL, idedma_ctl);
2684 }
2685 }
2686
2687 void
2688 sis_chip_map(sc, pa)
2689 struct pciide_softc *sc;
2690 struct pci_attach_args *pa;
2691 {
2692 struct pciide_channel *cp;
2693 int channel;
2694 u_int8_t sis_ctr0 = pciide_pci_read(sc->sc_pc, sc->sc_tag, SIS_CTRL0);
2695 pcireg_t interface = PCI_INTERFACE(pa->pa_class);
2696 pcireg_t rev = PCI_REVISION(pa->pa_class);
2697 bus_size_t cmdsize, ctlsize;
2698
2699 if (pciide_chipen(sc, pa) == 0)
2700 return;
2701 printf("%s: bus-master DMA support present",
2702 sc->sc_wdcdev.sc_dev.dv_xname);
2703 pciide_mapreg_dma(sc, pa);
2704 printf("\n");
2705 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2706 WDC_CAPABILITY_MODE;
2707 if (sc->sc_dma_ok) {
2708 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
2709 sc->sc_wdcdev.irqack = pciide_irqack;
2710 if (rev > 0xd0)
2711 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2712 }
2713
2714 sc->sc_wdcdev.PIO_cap = 4;
2715 sc->sc_wdcdev.DMA_cap = 2;
2716 if (sc->sc_wdcdev.cap & WDC_CAPABILITY_UDMA)
2717 sc->sc_wdcdev.UDMA_cap = 2;
2718 sc->sc_wdcdev.set_modes = sis_setup_channel;
2719
2720 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2721 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2722
2723 pciide_pci_write(sc->sc_pc, sc->sc_tag, SIS_MISC,
2724 pciide_pci_read(sc->sc_pc, sc->sc_tag, SIS_MISC) |
2725 SIS_MISC_TIM_SEL | SIS_MISC_FIFO_SIZE);
2726
2727 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2728 cp = &sc->pciide_channels[channel];
2729 if (pciide_chansetup(sc, channel, interface) == 0)
2730 continue;
2731 if ((channel == 0 && (sis_ctr0 & SIS_CTRL0_CHAN0_EN) == 0) ||
2732 (channel == 1 && (sis_ctr0 & SIS_CTRL0_CHAN1_EN) == 0)) {
2733 printf("%s: %s channel ignored (disabled)\n",
2734 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2735 continue;
2736 }
2737 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
2738 pciide_pci_intr);
2739 if (cp->hw_ok == 0)
2740 continue;
2741 if (pciide_chan_candisable(cp)) {
2742 if (channel == 0)
2743 sis_ctr0 &= ~SIS_CTRL0_CHAN0_EN;
2744 else
2745 sis_ctr0 &= ~SIS_CTRL0_CHAN1_EN;
2746 pciide_pci_write(sc->sc_pc, sc->sc_tag, SIS_CTRL0,
2747 sis_ctr0);
2748 }
2749 pciide_map_compat_intr(pa, cp, channel, interface);
2750 if (cp->hw_ok == 0)
2751 continue;
2752 sis_setup_channel(&cp->wdc_channel);
2753 }
2754 }
2755
2756 void
2757 sis_setup_channel(chp)
2758 struct channel_softc *chp;
2759 {
2760 struct ata_drive_datas *drvp;
2761 int drive;
2762 u_int32_t sis_tim;
2763 u_int32_t idedma_ctl;
2764 struct pciide_channel *cp = (struct pciide_channel*)chp;
2765 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2766
2767 WDCDEBUG_PRINT(("sis_setup_channel: old timings reg for "
2768 "channel %d 0x%x\n", chp->channel,
2769 pci_conf_read(sc->sc_pc, sc->sc_tag, SIS_TIM(chp->channel))),
2770 DEBUG_PROBE);
2771 sis_tim = 0;
2772 idedma_ctl = 0;
2773 /* setup DMA if needed */
2774 pciide_channel_dma_setup(cp);
2775
2776 for (drive = 0; drive < 2; drive++) {
2777 drvp = &chp->ch_drive[drive];
2778 /* If no drive, skip */
2779 if ((drvp->drive_flags & DRIVE) == 0)
2780 continue;
2781 /* add timing values, setup DMA if needed */
2782 if ((drvp->drive_flags & DRIVE_DMA) == 0 &&
2783 (drvp->drive_flags & DRIVE_UDMA) == 0)
2784 goto pio;
2785
2786 if (drvp->drive_flags & DRIVE_UDMA) {
2787 /* use Ultra/DMA */
2788 drvp->drive_flags &= ~DRIVE_DMA;
2789 sis_tim |= sis_udma_tim[drvp->UDMA_mode] <<
2790 SIS_TIM_UDMA_TIME_OFF(drive);
2791 sis_tim |= SIS_TIM_UDMA_EN(drive);
2792 } else {
2793 /*
2794 * use Multiword DMA
2795 * Timings will be used for both PIO and DMA,
2796 * so adjust DMA mode if needed
2797 */
2798 if (drvp->PIO_mode > (drvp->DMA_mode + 2))
2799 drvp->PIO_mode = drvp->DMA_mode + 2;
2800 if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
2801 drvp->DMA_mode = (drvp->PIO_mode > 2) ?
2802 drvp->PIO_mode - 2 : 0;
2803 if (drvp->DMA_mode == 0)
2804 drvp->PIO_mode = 0;
2805 }
2806 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2807 pio: sis_tim |= sis_pio_act[drvp->PIO_mode] <<
2808 SIS_TIM_ACT_OFF(drive);
2809 sis_tim |= sis_pio_rec[drvp->PIO_mode] <<
2810 SIS_TIM_REC_OFF(drive);
2811 }
2812 WDCDEBUG_PRINT(("sis_setup_channel: new timings reg for "
2813 "channel %d 0x%x\n", chp->channel, sis_tim), DEBUG_PROBE);
2814 pci_conf_write(sc->sc_pc, sc->sc_tag, SIS_TIM(chp->channel), sis_tim);
2815 if (idedma_ctl != 0) {
2816 /* Add software bits in status register */
2817 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2818 IDEDMA_CTL, idedma_ctl);
2819 }
2820 pciide_print_modes(cp);
2821 }
2822
2823 void
2824 acer_chip_map(sc, pa)
2825 struct pciide_softc *sc;
2826 struct pci_attach_args *pa;
2827 {
2828 struct pciide_channel *cp;
2829 int channel;
2830 pcireg_t cr, interface;
2831 bus_size_t cmdsize, ctlsize;
2832 pcireg_t rev = PCI_REVISION(pa->pa_class);
2833
2834 if (pciide_chipen(sc, pa) == 0)
2835 return;
2836 printf("%s: bus-master DMA support present",
2837 sc->sc_wdcdev.sc_dev.dv_xname);
2838 pciide_mapreg_dma(sc, pa);
2839 printf("\n");
2840 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
2841 WDC_CAPABILITY_MODE;
2842 if (sc->sc_dma_ok) {
2843 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA;
2844 if (rev >= 0x20)
2845 sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
2846 sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
2847 sc->sc_wdcdev.irqack = pciide_irqack;
2848 }
2849
2850 sc->sc_wdcdev.PIO_cap = 4;
2851 sc->sc_wdcdev.DMA_cap = 2;
2852 sc->sc_wdcdev.UDMA_cap = 2;
2853 sc->sc_wdcdev.set_modes = acer_setup_channel;
2854 sc->sc_wdcdev.channels = sc->wdc_chanarray;
2855 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
2856
2857 pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CDRC,
2858 (pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CDRC) |
2859 ACER_CDRC_DMA_EN) & ~ACER_CDRC_FIFO_DISABLE);
2860
2861 /* Enable "microsoft register bits" R/W. */
2862 pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR3,
2863 pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR3) | ACER_CCAR3_PI);
2864 pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR1,
2865 pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR1) &
2866 ~(ACER_CHANSTATUS_RO|PCIIDE_CHAN_RO(0)|PCIIDE_CHAN_RO(1)));
2867 pciide_pci_write(sc->sc_pc, sc->sc_tag, ACER_CCAR2,
2868 pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CCAR2) &
2869 ~ACER_CHANSTATUSREGS_RO);
2870 cr = pci_conf_read(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG);
2871 cr |= (PCIIDE_CHANSTATUS_EN << PCI_INTERFACE_SHIFT);
2872 pci_conf_write(sc->sc_pc, sc->sc_tag, PCI_CLASS_REG, cr);
2873 /* Don't use cr, re-read the real register content instead */
2874 interface = PCI_INTERFACE(pci_conf_read(sc->sc_pc, sc->sc_tag,
2875 PCI_CLASS_REG));
2876
2877 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
2878 cp = &sc->pciide_channels[channel];
2879 if (pciide_chansetup(sc, channel, interface) == 0)
2880 continue;
2881 if ((interface & PCIIDE_CHAN_EN(channel)) == 0) {
2882 printf("%s: %s channel ignored (disabled)\n",
2883 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
2884 continue;
2885 }
2886 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
2887 acer_pci_intr);
2888 if (cp->hw_ok == 0)
2889 continue;
2890 if (pciide_chan_candisable(cp)) {
2891 cr &= ~(PCIIDE_CHAN_EN(channel) << PCI_INTERFACE_SHIFT);
2892 pci_conf_write(sc->sc_pc, sc->sc_tag,
2893 PCI_CLASS_REG, cr);
2894 }
2895 pciide_map_compat_intr(pa, cp, channel, interface);
2896 acer_setup_channel(&cp->wdc_channel);
2897 }
2898 }
2899
2900 void
2901 acer_setup_channel(chp)
2902 struct channel_softc *chp;
2903 {
2904 struct ata_drive_datas *drvp;
2905 int drive;
2906 u_int32_t acer_fifo_udma;
2907 u_int32_t idedma_ctl;
2908 struct pciide_channel *cp = (struct pciide_channel*)chp;
2909 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
2910
2911 idedma_ctl = 0;
2912 acer_fifo_udma = pci_conf_read(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA);
2913 WDCDEBUG_PRINT(("acer_setup_channel: old fifo/udma reg 0x%x\n",
2914 acer_fifo_udma), DEBUG_PROBE);
2915 /* setup DMA if needed */
2916 pciide_channel_dma_setup(cp);
2917
2918 for (drive = 0; drive < 2; drive++) {
2919 drvp = &chp->ch_drive[drive];
2920 /* If no drive, skip */
2921 if ((drvp->drive_flags & DRIVE) == 0)
2922 continue;
2923 WDCDEBUG_PRINT(("acer_setup_channel: old timings reg for "
2924 "channel %d drive %d 0x%x\n", chp->channel, drive,
2925 pciide_pci_read(sc->sc_pc, sc->sc_tag,
2926 ACER_IDETIM(chp->channel, drive))), DEBUG_PROBE);
2927 /* clear FIFO/DMA mode */
2928 acer_fifo_udma &= ~(ACER_FTH_OPL(chp->channel, drive, 0x3) |
2929 ACER_UDMA_EN(chp->channel, drive) |
2930 ACER_UDMA_TIM(chp->channel, drive, 0x7));
2931
2932 /* add timing values, setup DMA if needed */
2933 if ((drvp->drive_flags & DRIVE_DMA) == 0 &&
2934 (drvp->drive_flags & DRIVE_UDMA) == 0) {
2935 acer_fifo_udma |=
2936 ACER_FTH_OPL(chp->channel, drive, 0x1);
2937 goto pio;
2938 }
2939
2940 acer_fifo_udma |= ACER_FTH_OPL(chp->channel, drive, 0x2);
2941 if (drvp->drive_flags & DRIVE_UDMA) {
2942 /* use Ultra/DMA */
2943 drvp->drive_flags &= ~DRIVE_DMA;
2944 acer_fifo_udma |= ACER_UDMA_EN(chp->channel, drive);
2945 acer_fifo_udma |=
2946 ACER_UDMA_TIM(chp->channel, drive,
2947 acer_udma[drvp->UDMA_mode]);
2948 } else {
2949 /*
2950 * use Multiword DMA
2951 * Timings will be used for both PIO and DMA,
2952 * so adjust DMA mode if needed
2953 */
2954 if (drvp->PIO_mode > (drvp->DMA_mode + 2))
2955 drvp->PIO_mode = drvp->DMA_mode + 2;
2956 if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
2957 drvp->DMA_mode = (drvp->PIO_mode > 2) ?
2958 drvp->PIO_mode - 2 : 0;
2959 if (drvp->DMA_mode == 0)
2960 drvp->PIO_mode = 0;
2961 }
2962 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
2963 pio: pciide_pci_write(sc->sc_pc, sc->sc_tag,
2964 ACER_IDETIM(chp->channel, drive),
2965 acer_pio[drvp->PIO_mode]);
2966 }
2967 WDCDEBUG_PRINT(("acer_setup_channel: new fifo/udma reg 0x%x\n",
2968 acer_fifo_udma), DEBUG_PROBE);
2969 pci_conf_write(sc->sc_pc, sc->sc_tag, ACER_FTH_UDMA, acer_fifo_udma);
2970 if (idedma_ctl != 0) {
2971 /* Add software bits in status register */
2972 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
2973 IDEDMA_CTL, idedma_ctl);
2974 }
2975 pciide_print_modes(cp);
2976 }
2977
2978 int
2979 acer_pci_intr(arg)
2980 void *arg;
2981 {
2982 struct pciide_softc *sc = arg;
2983 struct pciide_channel *cp;
2984 struct channel_softc *wdc_cp;
2985 int i, rv, crv;
2986 u_int32_t chids;
2987
2988 rv = 0;
2989 chids = pciide_pci_read(sc->sc_pc, sc->sc_tag, ACER_CHIDS);
2990 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
2991 cp = &sc->pciide_channels[i];
2992 wdc_cp = &cp->wdc_channel;
2993 /* If a compat channel skip. */
2994 if (cp->compat)
2995 continue;
2996 if (chids & ACER_CHIDS_INT(i)) {
2997 crv = wdcintr(wdc_cp);
2998 if (crv == 0)
2999 printf("%s:%d: bogus intr\n",
3000 sc->sc_wdcdev.sc_dev.dv_xname, i);
3001 else
3002 rv = 1;
3003 }
3004 }
3005 return rv;
3006 }
3007
3008 void
3009 hpt_chip_map(sc, pa)
3010 struct pciide_softc *sc;
3011 struct pci_attach_args *pa;
3012 {
3013 struct pciide_channel *cp;
3014 int i, compatchan, revision;
3015 pcireg_t interface;
3016 bus_size_t cmdsize, ctlsize;
3017
3018 if (pciide_chipen(sc, pa) == 0)
3019 return;
3020 revision = PCI_REVISION(pa->pa_class);
3021
3022 /*
3023 * when the chip is in native mode it identifies itself as a
3024 * 'misc mass storage'. Fake interface in this case.
3025 */
3026 if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
3027 interface = PCI_INTERFACE(pa->pa_class);
3028 } else {
3029 interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
3030 PCIIDE_INTERFACE_PCI(0);
3031 if (revision == HPT370_REV)
3032 interface |= PCIIDE_INTERFACE_PCI(1);
3033 }
3034
3035 printf("%s: bus-master DMA support present",
3036 sc->sc_wdcdev.sc_dev.dv_xname);
3037 pciide_mapreg_dma(sc, pa);
3038 printf("\n");
3039 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3040 WDC_CAPABILITY_MODE;
3041 if (sc->sc_dma_ok) {
3042 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
3043 sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
3044 sc->sc_wdcdev.irqack = pciide_irqack;
3045 }
3046 sc->sc_wdcdev.PIO_cap = 4;
3047 sc->sc_wdcdev.DMA_cap = 2;
3048
3049 sc->sc_wdcdev.set_modes = hpt_setup_channel;
3050 sc->sc_wdcdev.channels = sc->wdc_chanarray;
3051 if (revision == HPT366_REV) {
3052 sc->sc_wdcdev.UDMA_cap = 4;
3053 /*
3054 * The 366 has 2 PCI IDE functions, one for primary and one
3055 * for secondary. So we need to call pciide_mapregs_compat()
3056 * with the real channel
3057 */
3058 if (pa->pa_function == 0) {
3059 compatchan = 0;
3060 } else if (pa->pa_function == 1) {
3061 compatchan = 1;
3062 } else {
3063 printf("%s: unexpected PCI function %d\n",
3064 sc->sc_wdcdev.sc_dev.dv_xname, pa->pa_function);
3065 return;
3066 }
3067 sc->sc_wdcdev.nchannels = 1;
3068 } else {
3069 sc->sc_wdcdev.nchannels = 2;
3070 sc->sc_wdcdev.UDMA_cap = 5;
3071 }
3072 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3073 cp = &sc->pciide_channels[i];
3074 if (sc->sc_wdcdev.nchannels > 1) {
3075 compatchan = i;
3076 if((pciide_pci_read(sc->sc_pc, sc->sc_tag,
3077 HPT370_CTRL1(i)) & HPT370_CTRL1_EN) == 0) {
3078 printf("%s: %s channel ignored (disabled)\n",
3079 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
3080 continue;
3081 }
3082 }
3083 if (pciide_chansetup(sc, i, interface) == 0)
3084 continue;
3085 if (interface & PCIIDE_INTERFACE_PCI(i)) {
3086 cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize,
3087 &ctlsize, hpt_pci_intr);
3088 } else {
3089 cp->hw_ok = pciide_mapregs_compat(pa, cp, compatchan,
3090 &cmdsize, &ctlsize);
3091 }
3092 if (cp->hw_ok == 0)
3093 return;
3094 cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
3095 cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
3096 wdcattach(&cp->wdc_channel);
3097 hpt_setup_channel(&cp->wdc_channel);
3098 }
3099 if (revision == HPT370_REV) {
3100 /*
3101 * HPT370_REV has a bit to disable interrupts, make sure
3102 * to clear it
3103 */
3104 pciide_pci_write(sc->sc_pc, sc->sc_tag, HPT_CSEL,
3105 pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL) &
3106 ~HPT_CSEL_IRQDIS);
3107 }
3108 return;
3109 }
3110
3111 void
3112 hpt_setup_channel(chp)
3113 struct channel_softc *chp;
3114 {
3115 struct ata_drive_datas *drvp;
3116 int drive;
3117 int cable;
3118 u_int32_t before, after;
3119 u_int32_t idedma_ctl;
3120 struct pciide_channel *cp = (struct pciide_channel*)chp;
3121 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3122
3123 cable = pciide_pci_read(sc->sc_pc, sc->sc_tag, HPT_CSEL);
3124
3125 /* setup DMA if needed */
3126 pciide_channel_dma_setup(cp);
3127
3128 idedma_ctl = 0;
3129
3130 /* Per drive settings */
3131 for (drive = 0; drive < 2; drive++) {
3132 drvp = &chp->ch_drive[drive];
3133 /* If no drive, skip */
3134 if ((drvp->drive_flags & DRIVE) == 0)
3135 continue;
3136 before = pci_conf_read(sc->sc_pc, sc->sc_tag,
3137 HPT_IDETIM(chp->channel, drive));
3138
3139 /* add timing values, setup DMA if needed */
3140 if (drvp->drive_flags & DRIVE_UDMA) {
3141 /* use Ultra/DMA */
3142 drvp->drive_flags &= ~DRIVE_DMA;
3143 if ((cable & HPT_CSEL_CBLID(chp->channel)) != 0 &&
3144 drvp->UDMA_mode > 2)
3145 drvp->UDMA_mode = 2;
3146 after = (sc->sc_wdcdev.nchannels == 2) ?
3147 hpt370_udma[drvp->UDMA_mode] :
3148 hpt366_udma[drvp->UDMA_mode];
3149 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3150 } else if (drvp->drive_flags & DRIVE_DMA) {
3151 /*
3152 * use Multiword DMA.
3153 * Timings will be used for both PIO and DMA, so adjust
3154 * DMA mode if needed
3155 */
3156 if (drvp->PIO_mode >= 3 &&
3157 (drvp->DMA_mode + 2) > drvp->PIO_mode) {
3158 drvp->DMA_mode = drvp->PIO_mode - 2;
3159 }
3160 after = (sc->sc_wdcdev.nchannels == 2) ?
3161 hpt370_dma[drvp->DMA_mode] :
3162 hpt366_dma[drvp->DMA_mode];
3163 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3164 } else {
3165 /* PIO only */
3166 after = (sc->sc_wdcdev.nchannels == 2) ?
3167 hpt370_pio[drvp->PIO_mode] :
3168 hpt366_pio[drvp->PIO_mode];
3169 }
3170 pci_conf_write(sc->sc_pc, sc->sc_tag,
3171 HPT_IDETIM(chp->channel, drive), after);
3172 WDCDEBUG_PRINT(("%s: bus speed register set to 0x%08x "
3173 "(BIOS 0x%08x)\n", drvp->drv_softc->dv_xname,
3174 after, before), DEBUG_PROBE);
3175 }
3176 if (idedma_ctl != 0) {
3177 /* Add software bits in status register */
3178 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3179 IDEDMA_CTL, idedma_ctl);
3180 }
3181 pciide_print_modes(cp);
3182 }
3183
3184 int
3185 hpt_pci_intr(arg)
3186 void *arg;
3187 {
3188 struct pciide_softc *sc = arg;
3189 struct pciide_channel *cp;
3190 struct channel_softc *wdc_cp;
3191 int rv = 0;
3192 int dmastat, i, crv;
3193
3194 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3195 dmastat = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3196 IDEDMA_CTL + IDEDMA_SCH_OFFSET * i);
3197 if((dmastat & IDEDMA_CTL_INTR) == 0)
3198 continue;
3199 cp = &sc->pciide_channels[i];
3200 wdc_cp = &cp->wdc_channel;
3201 crv = wdcintr(wdc_cp);
3202 if (crv == 0) {
3203 printf("%s:%d: bogus intr\n",
3204 sc->sc_wdcdev.sc_dev.dv_xname, i);
3205 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3206 IDEDMA_CTL + IDEDMA_SCH_OFFSET * i, dmastat);
3207 } else
3208 rv = 1;
3209 }
3210 return rv;
3211 }
3212
3213
3214 /* Macros to test product */
3215 #define PDC_IS_262(sc) \
3216 ((sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA66 || \
3217 (sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100 || \
3218 (sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100X)
3219 #define PDC_IS_265(sc) \
3220 ((sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100 || \
3221 (sc)->sc_pp->ide_product == PCI_PRODUCT_PROMISE_ULTRA100X)
3222
3223 void
3224 pdc202xx_chip_map(sc, pa)
3225 struct pciide_softc *sc;
3226 struct pci_attach_args *pa;
3227 {
3228 struct pciide_channel *cp;
3229 int channel;
3230 pcireg_t interface, st, mode;
3231 bus_size_t cmdsize, ctlsize;
3232
3233 st = pci_conf_read(sc->sc_pc, sc->sc_tag, PDC2xx_STATE);
3234 WDCDEBUG_PRINT(("pdc202xx_setup_chip: controller state 0x%x\n", st),
3235 DEBUG_PROBE);
3236 if (pciide_chipen(sc, pa) == 0)
3237 return;
3238
3239 /* turn off RAID mode */
3240 st &= ~PDC2xx_STATE_IDERAID;
3241
3242 /*
3243 * can't rely on the PCI_CLASS_REG content if the chip was in raid
3244 * mode. We have to fake interface
3245 */
3246 interface = PCIIDE_INTERFACE_SETTABLE(0) | PCIIDE_INTERFACE_SETTABLE(1);
3247 if (st & PDC2xx_STATE_NATIVE)
3248 interface |= PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
3249
3250 printf("%s: bus-master DMA support present",
3251 sc->sc_wdcdev.sc_dev.dv_xname);
3252 pciide_mapreg_dma(sc, pa);
3253 printf("\n");
3254 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3255 WDC_CAPABILITY_MODE;
3256 if (sc->sc_dma_ok) {
3257 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
3258 sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
3259 sc->sc_wdcdev.irqack = pciide_irqack;
3260 }
3261 sc->sc_wdcdev.PIO_cap = 4;
3262 sc->sc_wdcdev.DMA_cap = 2;
3263 if (PDC_IS_265(sc))
3264 sc->sc_wdcdev.UDMA_cap = 5;
3265 else if (PDC_IS_262(sc))
3266 sc->sc_wdcdev.UDMA_cap = 4;
3267 else
3268 sc->sc_wdcdev.UDMA_cap = 2;
3269 sc->sc_wdcdev.set_modes = pdc202xx_setup_channel;
3270 sc->sc_wdcdev.channels = sc->wdc_chanarray;
3271 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
3272
3273 /* setup failsafe defaults */
3274 mode = 0;
3275 mode = PDC2xx_TIM_SET_PA(mode, pdc2xx_pa[0]);
3276 mode = PDC2xx_TIM_SET_PB(mode, pdc2xx_pb[0]);
3277 mode = PDC2xx_TIM_SET_MB(mode, pdc2xx_dma_mb[0]);
3278 mode = PDC2xx_TIM_SET_MC(mode, pdc2xx_dma_mc[0]);
3279 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3280 WDCDEBUG_PRINT(("pdc202xx_setup_chip: channel %d drive 0 "
3281 "initial timings 0x%x, now 0x%x\n", channel,
3282 pci_conf_read(sc->sc_pc, sc->sc_tag,
3283 PDC2xx_TIM(channel, 0)), mode | PDC2xx_TIM_IORDYp),
3284 DEBUG_PROBE);
3285 pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_TIM(channel, 0),
3286 mode | PDC2xx_TIM_IORDYp);
3287 WDCDEBUG_PRINT(("pdc202xx_setup_chip: channel %d drive 1 "
3288 "initial timings 0x%x, now 0x%x\n", channel,
3289 pci_conf_read(sc->sc_pc, sc->sc_tag,
3290 PDC2xx_TIM(channel, 1)), mode), DEBUG_PROBE);
3291 pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_TIM(channel, 1),
3292 mode);
3293 }
3294
3295 mode = PDC2xx_SCR_DMA;
3296 if (PDC_IS_262(sc)) {
3297 mode = PDC2xx_SCR_SET_GEN(mode, PDC262_SCR_GEN_LAT);
3298 } else {
3299 /* the BIOS set it up this way */
3300 mode = PDC2xx_SCR_SET_GEN(mode, 0x1);
3301 }
3302 mode = PDC2xx_SCR_SET_I2C(mode, 0x3); /* ditto */
3303 mode = PDC2xx_SCR_SET_POLL(mode, 0x1); /* ditto */
3304 WDCDEBUG_PRINT(("pdc202xx_setup_chip: initial SCR 0x%x, now 0x%x\n",
3305 bus_space_read_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR), mode),
3306 DEBUG_PROBE);
3307 bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR, mode);
3308
3309 /* controller initial state register is OK even without BIOS */
3310 /* Set DMA mode to IDE DMA compatibility */
3311 mode = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_PM);
3312 WDCDEBUG_PRINT(("pdc202xx_setup_chip: primary mode 0x%x", mode ),
3313 DEBUG_PROBE);
3314 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_PM,
3315 mode | 0x1);
3316 mode = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SM);
3317 WDCDEBUG_PRINT((", secondary mode 0x%x\n", mode ), DEBUG_PROBE);
3318 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SM,
3319 mode | 0x1);
3320
3321 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3322 cp = &sc->pciide_channels[channel];
3323 if (pciide_chansetup(sc, channel, interface) == 0)
3324 continue;
3325 if ((st & (PDC_IS_262(sc) ?
3326 PDC262_STATE_EN(channel):PDC246_STATE_EN(channel))) == 0) {
3327 printf("%s: %s channel ignored (disabled)\n",
3328 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
3329 continue;
3330 }
3331 if (PDC_IS_265(sc))
3332 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
3333 pdc20265_pci_intr);
3334 else
3335 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
3336 pdc202xx_pci_intr);
3337 if (cp->hw_ok == 0)
3338 continue;
3339 if (pciide_chan_candisable(cp))
3340 st &= ~(PDC_IS_262(sc) ?
3341 PDC262_STATE_EN(channel):PDC246_STATE_EN(channel));
3342 pciide_map_compat_intr(pa, cp, channel, interface);
3343 pdc202xx_setup_channel(&cp->wdc_channel);
3344 }
3345 WDCDEBUG_PRINT(("pdc202xx_setup_chip: new controller state 0x%x\n", st),
3346 DEBUG_PROBE);
3347 pci_conf_write(sc->sc_pc, sc->sc_tag, PDC2xx_STATE, st);
3348 return;
3349 }
3350
3351 void
3352 pdc202xx_setup_channel(chp)
3353 struct channel_softc *chp;
3354 {
3355 struct ata_drive_datas *drvp;
3356 int drive;
3357 pcireg_t mode, st;
3358 u_int32_t idedma_ctl, scr, atapi;
3359 struct pciide_channel *cp = (struct pciide_channel*)chp;
3360 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3361 int channel = chp->channel;
3362
3363 /* setup DMA if needed */
3364 pciide_channel_dma_setup(cp);
3365
3366 idedma_ctl = 0;
3367 WDCDEBUG_PRINT(("pdc202xx_setup_channel %s: scr 0x%x\n",
3368 sc->sc_wdcdev.sc_dev.dv_xname,
3369 bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh, PDC262_U66)),
3370 DEBUG_PROBE);
3371
3372 /* Per channel settings */
3373 if (PDC_IS_262(sc)) {
3374 scr = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3375 PDC262_U66);
3376 st = pci_conf_read(sc->sc_pc, sc->sc_tag, PDC2xx_STATE);
3377 /* Trimm UDMA mode */
3378 if ((st & PDC262_STATE_80P(channel)) != 0 ||
3379 (chp->ch_drive[0].drive_flags & DRIVE_UDMA &&
3380 chp->ch_drive[0].UDMA_mode <= 2) ||
3381 (chp->ch_drive[1].drive_flags & DRIVE_UDMA &&
3382 chp->ch_drive[1].UDMA_mode <= 2)) {
3383 if (chp->ch_drive[0].UDMA_mode > 2)
3384 chp->ch_drive[0].UDMA_mode = 2;
3385 if (chp->ch_drive[1].UDMA_mode > 2)
3386 chp->ch_drive[1].UDMA_mode = 2;
3387 }
3388 /* Set U66 if needed */
3389 if ((chp->ch_drive[0].drive_flags & DRIVE_UDMA &&
3390 chp->ch_drive[0].UDMA_mode > 2) ||
3391 (chp->ch_drive[1].drive_flags & DRIVE_UDMA &&
3392 chp->ch_drive[1].UDMA_mode > 2))
3393 scr |= PDC262_U66_EN(channel);
3394 else
3395 scr &= ~PDC262_U66_EN(channel);
3396 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3397 PDC262_U66, scr);
3398 WDCDEBUG_PRINT(("pdc202xx_setup_channel %s:%d: ATAPI 0x%x\n",
3399 sc->sc_wdcdev.sc_dev.dv_xname, channel,
3400 bus_space_read_4(sc->sc_dma_iot, sc->sc_dma_ioh,
3401 PDC262_ATAPI(channel))), DEBUG_PROBE);
3402 if (chp->ch_drive[0].drive_flags & DRIVE_ATAPI ||
3403 chp->ch_drive[1].drive_flags & DRIVE_ATAPI) {
3404 if (((chp->ch_drive[0].drive_flags & DRIVE_UDMA) &&
3405 !(chp->ch_drive[1].drive_flags & DRIVE_UDMA) &&
3406 (chp->ch_drive[1].drive_flags & DRIVE_DMA)) ||
3407 ((chp->ch_drive[1].drive_flags & DRIVE_UDMA) &&
3408 !(chp->ch_drive[0].drive_flags & DRIVE_UDMA) &&
3409 (chp->ch_drive[0].drive_flags & DRIVE_DMA)))
3410 atapi = 0;
3411 else
3412 atapi = PDC262_ATAPI_UDMA;
3413 bus_space_write_4(sc->sc_dma_iot, sc->sc_dma_ioh,
3414 PDC262_ATAPI(channel), atapi);
3415 }
3416 }
3417 for (drive = 0; drive < 2; drive++) {
3418 drvp = &chp->ch_drive[drive];
3419 /* If no drive, skip */
3420 if ((drvp->drive_flags & DRIVE) == 0)
3421 continue;
3422 mode = 0;
3423 if (drvp->drive_flags & DRIVE_UDMA) {
3424 /* use Ultra/DMA */
3425 drvp->drive_flags &= ~DRIVE_DMA;
3426 mode = PDC2xx_TIM_SET_MB(mode,
3427 pdc2xx_udma_mb[drvp->UDMA_mode]);
3428 mode = PDC2xx_TIM_SET_MC(mode,
3429 pdc2xx_udma_mc[drvp->UDMA_mode]);
3430 drvp->drive_flags &= ~DRIVE_DMA;
3431 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3432 } else if (drvp->drive_flags & DRIVE_DMA) {
3433 mode = PDC2xx_TIM_SET_MB(mode,
3434 pdc2xx_dma_mb[drvp->DMA_mode]);
3435 mode = PDC2xx_TIM_SET_MC(mode,
3436 pdc2xx_dma_mc[drvp->DMA_mode]);
3437 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3438 } else {
3439 mode = PDC2xx_TIM_SET_MB(mode,
3440 pdc2xx_dma_mb[0]);
3441 mode = PDC2xx_TIM_SET_MC(mode,
3442 pdc2xx_dma_mc[0]);
3443 }
3444 mode = PDC2xx_TIM_SET_PA(mode, pdc2xx_pa[drvp->PIO_mode]);
3445 mode = PDC2xx_TIM_SET_PB(mode, pdc2xx_pb[drvp->PIO_mode]);
3446 if (drvp->drive_flags & DRIVE_ATA)
3447 mode |= PDC2xx_TIM_PRE;
3448 mode |= PDC2xx_TIM_SYNC | PDC2xx_TIM_ERRDY;
3449 if (drvp->PIO_mode >= 3) {
3450 mode |= PDC2xx_TIM_IORDY;
3451 if (drive == 0)
3452 mode |= PDC2xx_TIM_IORDYp;
3453 }
3454 WDCDEBUG_PRINT(("pdc202xx_setup_channel: %s:%d:%d "
3455 "timings 0x%x\n",
3456 sc->sc_wdcdev.sc_dev.dv_xname,
3457 chp->channel, drive, mode), DEBUG_PROBE);
3458 pci_conf_write(sc->sc_pc, sc->sc_tag,
3459 PDC2xx_TIM(chp->channel, drive), mode);
3460 }
3461 if (idedma_ctl != 0) {
3462 /* Add software bits in status register */
3463 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3464 IDEDMA_CTL, idedma_ctl);
3465 }
3466 pciide_print_modes(cp);
3467 }
3468
3469 int
3470 pdc202xx_pci_intr(arg)
3471 void *arg;
3472 {
3473 struct pciide_softc *sc = arg;
3474 struct pciide_channel *cp;
3475 struct channel_softc *wdc_cp;
3476 int i, rv, crv;
3477 u_int32_t scr;
3478
3479 rv = 0;
3480 scr = bus_space_read_4(sc->sc_dma_iot, sc->sc_dma_ioh, PDC2xx_SCR);
3481 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3482 cp = &sc->pciide_channels[i];
3483 wdc_cp = &cp->wdc_channel;
3484 /* If a compat channel skip. */
3485 if (cp->compat)
3486 continue;
3487 if (scr & PDC2xx_SCR_INT(i)) {
3488 crv = wdcintr(wdc_cp);
3489 if (crv == 0)
3490 printf("%s:%d: bogus intr (reg 0x%x)\n",
3491 sc->sc_wdcdev.sc_dev.dv_xname, i, scr);
3492 else
3493 rv = 1;
3494 }
3495 }
3496 return rv;
3497 }
3498
3499 int
3500 pdc20265_pci_intr(arg)
3501 void *arg;
3502 {
3503 struct pciide_softc *sc = arg;
3504 struct pciide_channel *cp;
3505 struct channel_softc *wdc_cp;
3506 int i, rv, crv;
3507 u_int32_t dmastat;
3508
3509 rv = 0;
3510 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3511 cp = &sc->pciide_channels[i];
3512 wdc_cp = &cp->wdc_channel;
3513 /* If a compat channel skip. */
3514 if (cp->compat)
3515 continue;
3516 /*
3517 * The Ultra/100 seems to assert PDC2xx_SCR_INT * spuriously,
3518 * however it asserts INT in IDEDMA_CTL even for non-DMA ops.
3519 * So use it instead (requires 2 reg reads instead of 1,
3520 * but we can't do it another way).
3521 */
3522 dmastat = bus_space_read_1(sc->sc_dma_iot,
3523 sc->sc_dma_ioh, IDEDMA_CTL + IDEDMA_SCH_OFFSET * i);
3524 if((dmastat & IDEDMA_CTL_INTR) == 0)
3525 continue;
3526 crv = wdcintr(wdc_cp);
3527 if (crv == 0)
3528 printf("%s:%d: bogus intr\n",
3529 sc->sc_wdcdev.sc_dev.dv_xname, i);
3530 else
3531 rv = 1;
3532 }
3533 return rv;
3534 }
3535
3536 void
3537 opti_chip_map(sc, pa)
3538 struct pciide_softc *sc;
3539 struct pci_attach_args *pa;
3540 {
3541 struct pciide_channel *cp;
3542 bus_size_t cmdsize, ctlsize;
3543 pcireg_t interface;
3544 u_int8_t init_ctrl;
3545 int channel;
3546
3547 if (pciide_chipen(sc, pa) == 0)
3548 return;
3549 printf("%s: bus-master DMA support present",
3550 sc->sc_wdcdev.sc_dev.dv_xname);
3551 pciide_mapreg_dma(sc, pa);
3552 printf("\n");
3553
3554 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3555 WDC_CAPABILITY_MODE;
3556 sc->sc_wdcdev.PIO_cap = 4;
3557 if (sc->sc_dma_ok) {
3558 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK;
3559 sc->sc_wdcdev.irqack = pciide_irqack;
3560 sc->sc_wdcdev.DMA_cap = 2;
3561 }
3562 sc->sc_wdcdev.set_modes = opti_setup_channel;
3563
3564 sc->sc_wdcdev.channels = sc->wdc_chanarray;
3565 sc->sc_wdcdev.nchannels = PCIIDE_NUM_CHANNELS;
3566
3567 init_ctrl = pciide_pci_read(sc->sc_pc, sc->sc_tag,
3568 OPTI_REG_INIT_CONTROL);
3569
3570 interface = PCI_INTERFACE(pa->pa_class);
3571
3572 for (channel = 0; channel < sc->sc_wdcdev.nchannels; channel++) {
3573 cp = &sc->pciide_channels[channel];
3574 if (pciide_chansetup(sc, channel, interface) == 0)
3575 continue;
3576 if (channel == 1 &&
3577 (init_ctrl & OPTI_INIT_CONTROL_CH2_DISABLE) != 0) {
3578 printf("%s: %s channel ignored (disabled)\n",
3579 sc->sc_wdcdev.sc_dev.dv_xname, cp->name);
3580 continue;
3581 }
3582 pciide_mapchan(pa, cp, interface, &cmdsize, &ctlsize,
3583 pciide_pci_intr);
3584 if (cp->hw_ok == 0)
3585 continue;
3586 pciide_map_compat_intr(pa, cp, channel, interface);
3587 if (cp->hw_ok == 0)
3588 continue;
3589 opti_setup_channel(&cp->wdc_channel);
3590 }
3591 }
3592
3593 void
3594 opti_setup_channel(chp)
3595 struct channel_softc *chp;
3596 {
3597 struct ata_drive_datas *drvp;
3598 struct pciide_channel *cp = (struct pciide_channel*)chp;
3599 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3600 int drive, spd;
3601 int mode[2];
3602 u_int8_t rv, mr;
3603
3604 /*
3605 * The `Delay' and `Address Setup Time' fields of the
3606 * Miscellaneous Register are always zero initially.
3607 */
3608 mr = opti_read_config(chp, OPTI_REG_MISC) & ~OPTI_MISC_INDEX_MASK;
3609 mr &= ~(OPTI_MISC_DELAY_MASK |
3610 OPTI_MISC_ADDR_SETUP_MASK |
3611 OPTI_MISC_INDEX_MASK);
3612
3613 /* Prime the control register before setting timing values */
3614 opti_write_config(chp, OPTI_REG_CONTROL, OPTI_CONTROL_DISABLE);
3615
3616 /* Determine the clockrate of the PCIbus the chip is attached to */
3617 spd = (int) opti_read_config(chp, OPTI_REG_STRAP);
3618 spd &= OPTI_STRAP_PCI_SPEED_MASK;
3619
3620 /* setup DMA if needed */
3621 pciide_channel_dma_setup(cp);
3622
3623 for (drive = 0; drive < 2; drive++) {
3624 drvp = &chp->ch_drive[drive];
3625 /* If no drive, skip */
3626 if ((drvp->drive_flags & DRIVE) == 0) {
3627 mode[drive] = -1;
3628 continue;
3629 }
3630
3631 if ((drvp->drive_flags & DRIVE_DMA)) {
3632 /*
3633 * Timings will be used for both PIO and DMA,
3634 * so adjust DMA mode if needed
3635 */
3636 if (drvp->PIO_mode > (drvp->DMA_mode + 2))
3637 drvp->PIO_mode = drvp->DMA_mode + 2;
3638 if (drvp->DMA_mode + 2 > (drvp->PIO_mode))
3639 drvp->DMA_mode = (drvp->PIO_mode > 2) ?
3640 drvp->PIO_mode - 2 : 0;
3641 if (drvp->DMA_mode == 0)
3642 drvp->PIO_mode = 0;
3643
3644 mode[drive] = drvp->DMA_mode + 5;
3645 } else
3646 mode[drive] = drvp->PIO_mode;
3647
3648 if (drive && mode[0] >= 0 &&
3649 (opti_tim_as[spd][mode[0]] != opti_tim_as[spd][mode[1]])) {
3650 /*
3651 * Can't have two drives using different values
3652 * for `Address Setup Time'.
3653 * Slow down the faster drive to compensate.
3654 */
3655 int d = (opti_tim_as[spd][mode[0]] >
3656 opti_tim_as[spd][mode[1]]) ? 0 : 1;
3657
3658 mode[d] = mode[1-d];
3659 chp->ch_drive[d].PIO_mode = chp->ch_drive[1-d].PIO_mode;
3660 chp->ch_drive[d].DMA_mode = 0;
3661 chp->ch_drive[d].drive_flags &= DRIVE_DMA;
3662 }
3663 }
3664
3665 for (drive = 0; drive < 2; drive++) {
3666 int m;
3667 if ((m = mode[drive]) < 0)
3668 continue;
3669
3670 /* Set the Address Setup Time and select appropriate index */
3671 rv = opti_tim_as[spd][m] << OPTI_MISC_ADDR_SETUP_SHIFT;
3672 rv |= OPTI_MISC_INDEX(drive);
3673 opti_write_config(chp, OPTI_REG_MISC, mr | rv);
3674
3675 /* Set the pulse width and recovery timing parameters */
3676 rv = opti_tim_cp[spd][m] << OPTI_PULSE_WIDTH_SHIFT;
3677 rv |= opti_tim_rt[spd][m] << OPTI_RECOVERY_TIME_SHIFT;
3678 opti_write_config(chp, OPTI_REG_READ_CYCLE_TIMING, rv);
3679 opti_write_config(chp, OPTI_REG_WRITE_CYCLE_TIMING, rv);
3680
3681 /* Set the Enhanced Mode register appropriately */
3682 rv = pciide_pci_read(sc->sc_pc, sc->sc_tag, OPTI_REG_ENH_MODE);
3683 rv &= ~OPTI_ENH_MODE_MASK(chp->channel, drive);
3684 rv |= OPTI_ENH_MODE(chp->channel, drive, opti_tim_em[m]);
3685 pciide_pci_write(sc->sc_pc, sc->sc_tag, OPTI_REG_ENH_MODE, rv);
3686 }
3687
3688 /* Finally, enable the timings */
3689 opti_write_config(chp, OPTI_REG_CONTROL, OPTI_CONTROL_ENABLE);
3690
3691 pciide_print_modes(cp);
3692 }
3693
3694 #define ACARD_IS_850(sc) \
3695 ((sc)->sc_pp->ide_product == PCI_PRODUCT_ACARD_ATP850U)
3696
3697 void
3698 acard_chip_map(sc, pa)
3699 struct pciide_softc *sc;
3700 struct pci_attach_args *pa;
3701 {
3702 struct pciide_channel *cp;
3703 int i, compatchan;
3704 pcireg_t interface;
3705 bus_size_t cmdsize, ctlsize;
3706
3707 if (pciide_chipen(sc, pa) == 0)
3708 return;
3709
3710 /*
3711 * when the chip is in native mode it identifies itself as a
3712 * 'misc mass storage'. Fake interface in this case.
3713 */
3714 if (PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_MASS_STORAGE_IDE) {
3715 interface = PCI_INTERFACE(pa->pa_class);
3716 } else {
3717 interface = PCIIDE_INTERFACE_BUS_MASTER_DMA |
3718 PCIIDE_INTERFACE_PCI(0) | PCIIDE_INTERFACE_PCI(1);
3719 }
3720
3721 printf("%s: bus-master DMA support present",
3722 sc->sc_wdcdev.sc_dev.dv_xname);
3723 pciide_mapreg_dma(sc, pa);
3724 printf("\n");
3725 sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 |
3726 WDC_CAPABILITY_MODE;
3727
3728 if (sc->sc_dma_ok) {
3729 sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_UDMA;
3730 sc->sc_wdcdev.cap |= WDC_CAPABILITY_IRQACK;
3731 sc->sc_wdcdev.irqack = pciide_irqack;
3732 }
3733 sc->sc_wdcdev.PIO_cap = 4;
3734 sc->sc_wdcdev.DMA_cap = 2;
3735 sc->sc_wdcdev.UDMA_cap = ACARD_IS_850(sc) ? 2 : 4;
3736
3737 sc->sc_wdcdev.set_modes = acard_setup_channel;
3738 sc->sc_wdcdev.channels = sc->wdc_chanarray;
3739 sc->sc_wdcdev.nchannels = 2;
3740
3741 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3742 cp = &sc->pciide_channels[i];
3743 if (pciide_chansetup(sc, i, interface) == 0)
3744 continue;
3745 if (interface & PCIIDE_INTERFACE_PCI(i)) {
3746 cp->hw_ok = pciide_mapregs_native(pa, cp, &cmdsize,
3747 &ctlsize, pciide_pci_intr);
3748 } else {
3749 cp->hw_ok = pciide_mapregs_compat(pa, cp, compatchan,
3750 &cmdsize, &ctlsize);
3751 }
3752 if (cp->hw_ok == 0)
3753 return;
3754 cp->wdc_channel.data32iot = cp->wdc_channel.cmd_iot;
3755 cp->wdc_channel.data32ioh = cp->wdc_channel.cmd_ioh;
3756 wdcattach(&cp->wdc_channel);
3757 acard_setup_channel(&cp->wdc_channel);
3758 }
3759 if (!ACARD_IS_850(sc)) {
3760 u_int32_t reg;
3761 reg = pci_conf_read(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL);
3762 reg &= ~ATP860_CTRL_INT;
3763 pci_conf_write(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL, reg);
3764 }
3765 }
3766
3767 void
3768 acard_setup_channel(chp)
3769 struct channel_softc *chp;
3770 {
3771 struct ata_drive_datas *drvp;
3772 struct pciide_channel *cp = (struct pciide_channel*)chp;
3773 struct pciide_softc *sc = (struct pciide_softc *)cp->wdc_channel.wdc;
3774 int channel = chp->channel;
3775 int drive;
3776 u_int32_t idetime, udma_mode;
3777 u_int32_t idedma_ctl;
3778
3779 /* setup DMA if needed */
3780 pciide_channel_dma_setup(cp);
3781
3782 if (ACARD_IS_850(sc)) {
3783 idetime = 0;
3784 udma_mode = pci_conf_read(sc->sc_pc, sc->sc_tag, ATP850_UDMA);
3785 udma_mode &= ~ATP850_UDMA_MASK(channel);
3786 } else {
3787 idetime = pci_conf_read(sc->sc_pc, sc->sc_tag, ATP860_IDETIME);
3788 idetime &= ~ATP860_SETTIME_MASK(channel);
3789 udma_mode = pci_conf_read(sc->sc_pc, sc->sc_tag, ATP860_UDMA);
3790 udma_mode &= ~ATP860_UDMA_MASK(channel);
3791 }
3792
3793 idedma_ctl = 0;
3794
3795 /* Per drive settings */
3796 for (drive = 0; drive < 2; drive++) {
3797 drvp = &chp->ch_drive[drive];
3798 /* If no drive, skip */
3799 if ((drvp->drive_flags & DRIVE) == 0)
3800 continue;
3801 /* add timing values, setup DMA if needed */
3802 if ((chp->wdc->cap & WDC_CAPABILITY_UDMA) &&
3803 (drvp->drive_flags & DRIVE_UDMA)) {
3804 /* use Ultra/DMA */
3805 if (ACARD_IS_850(sc)) {
3806 idetime |= ATP850_SETTIME(drive,
3807 acard_act_udma[drvp->UDMA_mode],
3808 acard_rec_udma[drvp->UDMA_mode]);
3809 udma_mode |= ATP850_UDMA_MODE(channel, drive,
3810 acard_udma_conf[drvp->UDMA_mode]);
3811 } else {
3812 idetime |= ATP860_SETTIME(channel, drive,
3813 acard_act_udma[drvp->UDMA_mode],
3814 acard_rec_udma[drvp->UDMA_mode]);
3815 udma_mode |= ATP860_UDMA_MODE(channel, drive,
3816 acard_udma_conf[drvp->UDMA_mode]);
3817 }
3818 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3819 } else if ((chp->wdc->cap & WDC_CAPABILITY_DMA) &&
3820 (drvp->drive_flags & DRIVE_DMA)) {
3821 /* use Multiword DMA */
3822 drvp->drive_flags &= ~DRIVE_UDMA;
3823 if (ACARD_IS_850(sc)) {
3824 idetime |= ATP850_SETTIME(drive,
3825 acard_act_dma[drvp->DMA_mode],
3826 acard_rec_dma[drvp->DMA_mode]);
3827 } else {
3828 idetime |= ATP860_SETTIME(channel, drive,
3829 acard_act_dma[drvp->DMA_mode],
3830 acard_rec_dma[drvp->DMA_mode]);
3831 }
3832 idedma_ctl |= IDEDMA_CTL_DRV_DMA(drive);
3833 } else {
3834 /* PIO only */
3835 drvp->drive_flags &= ~(DRIVE_UDMA | DRIVE_DMA);
3836 if (ACARD_IS_850(sc)) {
3837 idetime |= ATP850_SETTIME(drive,
3838 acard_act_pio[drvp->PIO_mode],
3839 acard_rec_pio[drvp->PIO_mode]);
3840 } else {
3841 idetime |= ATP860_SETTIME(channel, drive,
3842 acard_act_pio[drvp->PIO_mode],
3843 acard_rec_pio[drvp->PIO_mode]);
3844 }
3845 pci_conf_write(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL,
3846 pci_conf_read(sc->sc_pc, sc->sc_tag, ATP8x0_CTRL)
3847 | ATP8x0_CTRL_EN(channel));
3848 }
3849 }
3850
3851 if (idedma_ctl != 0) {
3852 /* Add software bits in status register */
3853 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3854 IDEDMA_CTL + IDEDMA_SCH_OFFSET * channel, idedma_ctl);
3855 }
3856 pciide_print_modes(cp);
3857
3858 if (ACARD_IS_850(sc)) {
3859 pci_conf_write(sc->sc_pc, sc->sc_tag,
3860 ATP850_IDETIME(channel), idetime);
3861 pci_conf_write(sc->sc_pc, sc->sc_tag, ATP850_UDMA, udma_mode);
3862 } else {
3863 pci_conf_write(sc->sc_pc, sc->sc_tag, ATP860_IDETIME, idetime);
3864 pci_conf_write(sc->sc_pc, sc->sc_tag, ATP860_UDMA, udma_mode);
3865 }
3866 }
3867
3868 int
3869 acard_pci_intr(arg)
3870 void *arg;
3871 {
3872 struct pciide_softc *sc = arg;
3873 struct pciide_channel *cp;
3874 struct channel_softc *wdc_cp;
3875 int rv = 0;
3876 int dmastat, i, crv;
3877
3878 for (i = 0; i < sc->sc_wdcdev.nchannels; i++) {
3879 dmastat = bus_space_read_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3880 IDEDMA_CTL + IDEDMA_SCH_OFFSET * i);
3881 if ((dmastat & IDEDMA_CTL_INTR) == 0)
3882 continue;
3883 cp = &sc->pciide_channels[i];
3884 wdc_cp = &cp->wdc_channel;
3885 if ((wdc_cp->ch_flags & WDCF_IRQ_WAIT) == 0) {
3886 (void)wdcintr(wdc_cp);
3887 bus_space_write_1(sc->sc_dma_iot, sc->sc_dma_ioh,
3888 IDEDMA_CTL + IDEDMA_SCH_OFFSET * i, dmastat);
3889 continue;
3890 }
3891 crv = wdcintr(wdc_cp);
3892 if (crv == 0)
3893 printf("%s:%d: bogus intr\n",
3894 sc->sc_wdcdev.sc_dev.dv_xname, i);
3895 else if (crv == 1)
3896 rv = 1;
3897 else if (rv == 0)
3898 rv = crv;
3899 }
3900 return rv;
3901 }
3902