sh: Move clock reporting to its own proc entry.
[linux-2.6/sactl.git] / drivers / scsi / aic7xxx / aic7xxx_pci.c
blob09c8172c9e5ec82e3b049d11702fcddbfd613fae
1 /*
2 * Product specific probe and attach routines for:
3 * 3940, 2940, aic7895, aic7890, aic7880,
4 * aic7870, aic7860 and aic7850 SCSI controllers
6 * Copyright (c) 1994-2001 Justin T. Gibbs.
7 * Copyright (c) 2000-2001 Adaptec Inc.
8 * All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions, and the following disclaimer,
15 * without modification.
16 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
17 * substantially similar to the "NO WARRANTY" disclaimer below
18 * ("Disclaimer") and any redistribution must be conditioned upon
19 * including a substantially similar Disclaimer requirement for further
20 * binary redistribution.
21 * 3. Neither the names of the above-listed copyright holders nor the names
22 * of any contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * Alternatively, this software may be distributed under the terms of the
26 * GNU General Public License ("GPL") version 2 as published by the Free
27 * Software Foundation.
29 * NO WARRANTY
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
33 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
39 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGES.
42 * $Id: //depot/aic7xxx/aic7xxx/aic7xxx_pci.c#79 $
45 #ifdef __linux__
46 #include "aic7xxx_osm.h"
47 #include "aic7xxx_inline.h"
48 #include "aic7xxx_93cx6.h"
49 #else
50 #include <dev/aic7xxx/aic7xxx_osm.h>
51 #include <dev/aic7xxx/aic7xxx_inline.h>
52 #include <dev/aic7xxx/aic7xxx_93cx6.h>
53 #endif
55 #include "aic7xxx_pci.h"
57 static __inline uint64_t
58 ahc_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor)
60 uint64_t id;
62 id = subvendor
63 | (subdevice << 16)
64 | ((uint64_t)vendor << 32)
65 | ((uint64_t)device << 48);
67 return (id);
70 #define AHC_PCI_IOADDR PCIR_MAPS /* I/O Address */
71 #define AHC_PCI_MEMADDR (PCIR_MAPS + 4) /* Mem I/O Address */
73 #define DEVID_9005_TYPE(id) ((id) & 0xF)
74 #define DEVID_9005_TYPE_HBA 0x0 /* Standard Card */
75 #define DEVID_9005_TYPE_AAA 0x3 /* RAID Card */
76 #define DEVID_9005_TYPE_SISL 0x5 /* Container ROMB */
77 #define DEVID_9005_TYPE_MB 0xF /* On Motherboard */
79 #define DEVID_9005_MAXRATE(id) (((id) & 0x30) >> 4)
80 #define DEVID_9005_MAXRATE_U160 0x0
81 #define DEVID_9005_MAXRATE_ULTRA2 0x1
82 #define DEVID_9005_MAXRATE_ULTRA 0x2
83 #define DEVID_9005_MAXRATE_FAST 0x3
85 #define DEVID_9005_MFUNC(id) (((id) & 0x40) >> 6)
87 #define DEVID_9005_CLASS(id) (((id) & 0xFF00) >> 8)
88 #define DEVID_9005_CLASS_SPI 0x0 /* Parallel SCSI */
90 #define SUBID_9005_TYPE(id) ((id) & 0xF)
91 #define SUBID_9005_TYPE_MB 0xF /* On Motherboard */
92 #define SUBID_9005_TYPE_CARD 0x0 /* Standard Card */
93 #define SUBID_9005_TYPE_LCCARD 0x1 /* Low Cost Card */
94 #define SUBID_9005_TYPE_RAID 0x3 /* Combined with Raid */
96 #define SUBID_9005_TYPE_KNOWN(id) \
97 ((((id) & 0xF) == SUBID_9005_TYPE_MB) \
98 || (((id) & 0xF) == SUBID_9005_TYPE_CARD) \
99 || (((id) & 0xF) == SUBID_9005_TYPE_LCCARD) \
100 || (((id) & 0xF) == SUBID_9005_TYPE_RAID))
102 #define SUBID_9005_MAXRATE(id) (((id) & 0x30) >> 4)
103 #define SUBID_9005_MAXRATE_ULTRA2 0x0
104 #define SUBID_9005_MAXRATE_ULTRA 0x1
105 #define SUBID_9005_MAXRATE_U160 0x2
106 #define SUBID_9005_MAXRATE_RESERVED 0x3
108 #define SUBID_9005_SEEPTYPE(id) \
109 ((SUBID_9005_TYPE(id) == SUBID_9005_TYPE_MB) \
110 ? ((id) & 0xC0) >> 6 \
111 : ((id) & 0x300) >> 8)
112 #define SUBID_9005_SEEPTYPE_NONE 0x0
113 #define SUBID_9005_SEEPTYPE_1K 0x1
114 #define SUBID_9005_SEEPTYPE_2K_4K 0x2
115 #define SUBID_9005_SEEPTYPE_RESERVED 0x3
116 #define SUBID_9005_AUTOTERM(id) \
117 ((SUBID_9005_TYPE(id) == SUBID_9005_TYPE_MB) \
118 ? (((id) & 0x400) >> 10) == 0 \
119 : (((id) & 0x40) >> 6) == 0)
121 #define SUBID_9005_NUMCHAN(id) \
122 ((SUBID_9005_TYPE(id) == SUBID_9005_TYPE_MB) \
123 ? ((id) & 0x300) >> 8 \
124 : ((id) & 0xC00) >> 10)
126 #define SUBID_9005_LEGACYCONN(id) \
127 ((SUBID_9005_TYPE(id) == SUBID_9005_TYPE_MB) \
128 ? 0 \
129 : ((id) & 0x80) >> 7)
131 #define SUBID_9005_MFUNCENB(id) \
132 ((SUBID_9005_TYPE(id) == SUBID_9005_TYPE_MB) \
133 ? ((id) & 0x800) >> 11 \
134 : ((id) & 0x1000) >> 12)
136 * Informational only. Should use chip register to be
137 * certain, but may be use in identification strings.
139 #define SUBID_9005_CARD_SCSIWIDTH_MASK 0x2000
140 #define SUBID_9005_CARD_PCIWIDTH_MASK 0x4000
141 #define SUBID_9005_CARD_SEDIFF_MASK 0x8000
143 static ahc_device_setup_t ahc_aic785X_setup;
144 static ahc_device_setup_t ahc_aic7860_setup;
145 static ahc_device_setup_t ahc_apa1480_setup;
146 static ahc_device_setup_t ahc_aic7870_setup;
147 static ahc_device_setup_t ahc_aic7870h_setup;
148 static ahc_device_setup_t ahc_aha394X_setup;
149 static ahc_device_setup_t ahc_aha394Xh_setup;
150 static ahc_device_setup_t ahc_aha494X_setup;
151 static ahc_device_setup_t ahc_aha494Xh_setup;
152 static ahc_device_setup_t ahc_aha398X_setup;
153 static ahc_device_setup_t ahc_aic7880_setup;
154 static ahc_device_setup_t ahc_aic7880h_setup;
155 static ahc_device_setup_t ahc_aha2940Pro_setup;
156 static ahc_device_setup_t ahc_aha394XU_setup;
157 static ahc_device_setup_t ahc_aha394XUh_setup;
158 static ahc_device_setup_t ahc_aha398XU_setup;
159 static ahc_device_setup_t ahc_aic7890_setup;
160 static ahc_device_setup_t ahc_aic7892_setup;
161 static ahc_device_setup_t ahc_aic7895_setup;
162 static ahc_device_setup_t ahc_aic7895h_setup;
163 static ahc_device_setup_t ahc_aic7896_setup;
164 static ahc_device_setup_t ahc_aic7899_setup;
165 static ahc_device_setup_t ahc_aha29160C_setup;
166 static ahc_device_setup_t ahc_raid_setup;
167 static ahc_device_setup_t ahc_aha394XX_setup;
168 static ahc_device_setup_t ahc_aha494XX_setup;
169 static ahc_device_setup_t ahc_aha398XX_setup;
171 static struct ahc_pci_identity ahc_pci_ident_table [] =
173 /* aic7850 based controllers */
175 ID_AHA_2902_04_10_15_20C_30C,
176 ID_ALL_MASK,
177 "Adaptec 2902/04/10/15/20C/30C SCSI adapter",
178 ahc_aic785X_setup
180 /* aic7860 based controllers */
182 ID_AHA_2930CU,
183 ID_ALL_MASK,
184 "Adaptec 2930CU SCSI adapter",
185 ahc_aic7860_setup
188 ID_AHA_1480A & ID_DEV_VENDOR_MASK,
189 ID_DEV_VENDOR_MASK,
190 "Adaptec 1480A Ultra SCSI adapter",
191 ahc_apa1480_setup
194 ID_AHA_2940AU_0 & ID_DEV_VENDOR_MASK,
195 ID_DEV_VENDOR_MASK,
196 "Adaptec 2940A Ultra SCSI adapter",
197 ahc_aic7860_setup
200 ID_AHA_2940AU_CN & ID_DEV_VENDOR_MASK,
201 ID_DEV_VENDOR_MASK,
202 "Adaptec 2940A/CN Ultra SCSI adapter",
203 ahc_aic7860_setup
206 ID_AHA_2930C_VAR & ID_DEV_VENDOR_MASK,
207 ID_DEV_VENDOR_MASK,
208 "Adaptec 2930C Ultra SCSI adapter (VAR)",
209 ahc_aic7860_setup
211 /* aic7870 based controllers */
213 ID_AHA_2940,
214 ID_ALL_MASK,
215 "Adaptec 2940 SCSI adapter",
216 ahc_aic7870_setup
219 ID_AHA_3940,
220 ID_ALL_MASK,
221 "Adaptec 3940 SCSI adapter",
222 ahc_aha394X_setup
225 ID_AHA_398X,
226 ID_ALL_MASK,
227 "Adaptec 398X SCSI RAID adapter",
228 ahc_aha398X_setup
231 ID_AHA_2944,
232 ID_ALL_MASK,
233 "Adaptec 2944 SCSI adapter",
234 ahc_aic7870h_setup
237 ID_AHA_3944,
238 ID_ALL_MASK,
239 "Adaptec 3944 SCSI adapter",
240 ahc_aha394Xh_setup
243 ID_AHA_4944,
244 ID_ALL_MASK,
245 "Adaptec 4944 SCSI adapter",
246 ahc_aha494Xh_setup
248 /* aic7880 based controllers */
250 ID_AHA_2940U & ID_DEV_VENDOR_MASK,
251 ID_DEV_VENDOR_MASK,
252 "Adaptec 2940 Ultra SCSI adapter",
253 ahc_aic7880_setup
256 ID_AHA_3940U & ID_DEV_VENDOR_MASK,
257 ID_DEV_VENDOR_MASK,
258 "Adaptec 3940 Ultra SCSI adapter",
259 ahc_aha394XU_setup
262 ID_AHA_2944U & ID_DEV_VENDOR_MASK,
263 ID_DEV_VENDOR_MASK,
264 "Adaptec 2944 Ultra SCSI adapter",
265 ahc_aic7880h_setup
268 ID_AHA_3944U & ID_DEV_VENDOR_MASK,
269 ID_DEV_VENDOR_MASK,
270 "Adaptec 3944 Ultra SCSI adapter",
271 ahc_aha394XUh_setup
274 ID_AHA_398XU & ID_DEV_VENDOR_MASK,
275 ID_DEV_VENDOR_MASK,
276 "Adaptec 398X Ultra SCSI RAID adapter",
277 ahc_aha398XU_setup
281 * XXX Don't know the slot numbers
282 * so we can't identify channels
284 ID_AHA_4944U & ID_DEV_VENDOR_MASK,
285 ID_DEV_VENDOR_MASK,
286 "Adaptec 4944 Ultra SCSI adapter",
287 ahc_aic7880h_setup
290 ID_AHA_2930U & ID_DEV_VENDOR_MASK,
291 ID_DEV_VENDOR_MASK,
292 "Adaptec 2930 Ultra SCSI adapter",
293 ahc_aic7880_setup
296 ID_AHA_2940U_PRO & ID_DEV_VENDOR_MASK,
297 ID_DEV_VENDOR_MASK,
298 "Adaptec 2940 Pro Ultra SCSI adapter",
299 ahc_aha2940Pro_setup
302 ID_AHA_2940U_CN & ID_DEV_VENDOR_MASK,
303 ID_DEV_VENDOR_MASK,
304 "Adaptec 2940/CN Ultra SCSI adapter",
305 ahc_aic7880_setup
307 /* Ignore all SISL (AAC on MB) based controllers. */
309 ID_9005_SISL_ID,
310 ID_9005_SISL_MASK,
311 NULL,
312 NULL
314 /* aic7890 based controllers */
316 ID_AHA_2930U2,
317 ID_ALL_MASK,
318 "Adaptec 2930 Ultra2 SCSI adapter",
319 ahc_aic7890_setup
322 ID_AHA_2940U2B,
323 ID_ALL_MASK,
324 "Adaptec 2940B Ultra2 SCSI adapter",
325 ahc_aic7890_setup
328 ID_AHA_2940U2_OEM,
329 ID_ALL_MASK,
330 "Adaptec 2940 Ultra2 SCSI adapter (OEM)",
331 ahc_aic7890_setup
334 ID_AHA_2940U2,
335 ID_ALL_MASK,
336 "Adaptec 2940 Ultra2 SCSI adapter",
337 ahc_aic7890_setup
340 ID_AHA_2950U2B,
341 ID_ALL_MASK,
342 "Adaptec 2950 Ultra2 SCSI adapter",
343 ahc_aic7890_setup
346 ID_AIC7890_ARO,
347 ID_ALL_MASK,
348 "Adaptec aic7890/91 Ultra2 SCSI adapter (ARO)",
349 ahc_aic7890_setup
352 ID_AAA_131U2,
353 ID_ALL_MASK,
354 "Adaptec AAA-131 Ultra2 RAID adapter",
355 ahc_aic7890_setup
357 /* aic7892 based controllers */
359 ID_AHA_29160,
360 ID_ALL_MASK,
361 "Adaptec 29160 Ultra160 SCSI adapter",
362 ahc_aic7892_setup
365 ID_AHA_29160_CPQ,
366 ID_ALL_MASK,
367 "Adaptec (Compaq OEM) 29160 Ultra160 SCSI adapter",
368 ahc_aic7892_setup
371 ID_AHA_29160N,
372 ID_ALL_MASK,
373 "Adaptec 29160N Ultra160 SCSI adapter",
374 ahc_aic7892_setup
377 ID_AHA_29160C,
378 ID_ALL_MASK,
379 "Adaptec 29160C Ultra160 SCSI adapter",
380 ahc_aha29160C_setup
383 ID_AHA_29160B,
384 ID_ALL_MASK,
385 "Adaptec 29160B Ultra160 SCSI adapter",
386 ahc_aic7892_setup
389 ID_AHA_19160B,
390 ID_ALL_MASK,
391 "Adaptec 19160B Ultra160 SCSI adapter",
392 ahc_aic7892_setup
395 ID_AIC7892_ARO,
396 ID_ALL_MASK,
397 "Adaptec aic7892 Ultra160 SCSI adapter (ARO)",
398 ahc_aic7892_setup
401 ID_AHA_2915_30LP,
402 ID_ALL_MASK,
403 "Adaptec 2915/30LP Ultra160 SCSI adapter",
404 ahc_aic7892_setup
406 /* aic7895 based controllers */
408 ID_AHA_2940U_DUAL,
409 ID_ALL_MASK,
410 "Adaptec 2940/DUAL Ultra SCSI adapter",
411 ahc_aic7895_setup
414 ID_AHA_3940AU,
415 ID_ALL_MASK,
416 "Adaptec 3940A Ultra SCSI adapter",
417 ahc_aic7895_setup
420 ID_AHA_3944AU,
421 ID_ALL_MASK,
422 "Adaptec 3944A Ultra SCSI adapter",
423 ahc_aic7895h_setup
426 ID_AIC7895_ARO,
427 ID_AIC7895_ARO_MASK,
428 "Adaptec aic7895 Ultra SCSI adapter (ARO)",
429 ahc_aic7895_setup
431 /* aic7896/97 based controllers */
433 ID_AHA_3950U2B_0,
434 ID_ALL_MASK,
435 "Adaptec 3950B Ultra2 SCSI adapter",
436 ahc_aic7896_setup
439 ID_AHA_3950U2B_1,
440 ID_ALL_MASK,
441 "Adaptec 3950B Ultra2 SCSI adapter",
442 ahc_aic7896_setup
445 ID_AHA_3950U2D_0,
446 ID_ALL_MASK,
447 "Adaptec 3950D Ultra2 SCSI adapter",
448 ahc_aic7896_setup
451 ID_AHA_3950U2D_1,
452 ID_ALL_MASK,
453 "Adaptec 3950D Ultra2 SCSI adapter",
454 ahc_aic7896_setup
457 ID_AIC7896_ARO,
458 ID_ALL_MASK,
459 "Adaptec aic7896/97 Ultra2 SCSI adapter (ARO)",
460 ahc_aic7896_setup
462 /* aic7899 based controllers */
464 ID_AHA_3960D,
465 ID_ALL_MASK,
466 "Adaptec 3960D Ultra160 SCSI adapter",
467 ahc_aic7899_setup
470 ID_AHA_3960D_CPQ,
471 ID_ALL_MASK,
472 "Adaptec (Compaq OEM) 3960D Ultra160 SCSI adapter",
473 ahc_aic7899_setup
476 ID_AIC7899_ARO,
477 ID_ALL_MASK,
478 "Adaptec aic7899 Ultra160 SCSI adapter (ARO)",
479 ahc_aic7899_setup
481 /* Generic chip probes for devices we don't know 'exactly' */
483 ID_AIC7850 & ID_DEV_VENDOR_MASK,
484 ID_DEV_VENDOR_MASK,
485 "Adaptec aic7850 SCSI adapter",
486 ahc_aic785X_setup
489 ID_AIC7855 & ID_DEV_VENDOR_MASK,
490 ID_DEV_VENDOR_MASK,
491 "Adaptec aic7855 SCSI adapter",
492 ahc_aic785X_setup
495 ID_AIC7859 & ID_DEV_VENDOR_MASK,
496 ID_DEV_VENDOR_MASK,
497 "Adaptec aic7859 SCSI adapter",
498 ahc_aic7860_setup
501 ID_AIC7860 & ID_DEV_VENDOR_MASK,
502 ID_DEV_VENDOR_MASK,
503 "Adaptec aic7860 Ultra SCSI adapter",
504 ahc_aic7860_setup
507 ID_AIC7870 & ID_DEV_VENDOR_MASK,
508 ID_DEV_VENDOR_MASK,
509 "Adaptec aic7870 SCSI adapter",
510 ahc_aic7870_setup
513 ID_AIC7880 & ID_DEV_VENDOR_MASK,
514 ID_DEV_VENDOR_MASK,
515 "Adaptec aic7880 Ultra SCSI adapter",
516 ahc_aic7880_setup
519 ID_AIC7890 & ID_9005_GENERIC_MASK,
520 ID_9005_GENERIC_MASK,
521 "Adaptec aic7890/91 Ultra2 SCSI adapter",
522 ahc_aic7890_setup
525 ID_AIC7892 & ID_9005_GENERIC_MASK,
526 ID_9005_GENERIC_MASK,
527 "Adaptec aic7892 Ultra160 SCSI adapter",
528 ahc_aic7892_setup
531 ID_AIC7895 & ID_DEV_VENDOR_MASK,
532 ID_DEV_VENDOR_MASK,
533 "Adaptec aic7895 Ultra SCSI adapter",
534 ahc_aic7895_setup
537 ID_AIC7896 & ID_9005_GENERIC_MASK,
538 ID_9005_GENERIC_MASK,
539 "Adaptec aic7896/97 Ultra2 SCSI adapter",
540 ahc_aic7896_setup
543 ID_AIC7899 & ID_9005_GENERIC_MASK,
544 ID_9005_GENERIC_MASK,
545 "Adaptec aic7899 Ultra160 SCSI adapter",
546 ahc_aic7899_setup
549 ID_AIC7810 & ID_DEV_VENDOR_MASK,
550 ID_DEV_VENDOR_MASK,
551 "Adaptec aic7810 RAID memory controller",
552 ahc_raid_setup
555 ID_AIC7815 & ID_DEV_VENDOR_MASK,
556 ID_DEV_VENDOR_MASK,
557 "Adaptec aic7815 RAID memory controller",
558 ahc_raid_setup
562 static const u_int ahc_num_pci_devs = ARRAY_SIZE(ahc_pci_ident_table);
564 #define AHC_394X_SLOT_CHANNEL_A 4
565 #define AHC_394X_SLOT_CHANNEL_B 5
567 #define AHC_398X_SLOT_CHANNEL_A 4
568 #define AHC_398X_SLOT_CHANNEL_B 8
569 #define AHC_398X_SLOT_CHANNEL_C 12
571 #define AHC_494X_SLOT_CHANNEL_A 4
572 #define AHC_494X_SLOT_CHANNEL_B 5
573 #define AHC_494X_SLOT_CHANNEL_C 6
574 #define AHC_494X_SLOT_CHANNEL_D 7
576 #define DEVCONFIG 0x40
577 #define PCIERRGENDIS 0x80000000ul
578 #define SCBSIZE32 0x00010000ul /* aic789X only */
579 #define REXTVALID 0x00001000ul /* ultra cards only */
580 #define MPORTMODE 0x00000400ul /* aic7870+ only */
581 #define RAMPSM 0x00000200ul /* aic7870+ only */
582 #define VOLSENSE 0x00000100ul
583 #define PCI64BIT 0x00000080ul /* 64Bit PCI bus (Ultra2 Only)*/
584 #define SCBRAMSEL 0x00000080ul
585 #define MRDCEN 0x00000040ul
586 #define EXTSCBTIME 0x00000020ul /* aic7870 only */
587 #define EXTSCBPEN 0x00000010ul /* aic7870 only */
588 #define BERREN 0x00000008ul
589 #define DACEN 0x00000004ul
590 #define STPWLEVEL 0x00000002ul
591 #define DIFACTNEGEN 0x00000001ul /* aic7870 only */
593 #define CSIZE_LATTIME 0x0c
594 #define CACHESIZE 0x0000003ful /* only 5 bits */
595 #define LATTIME 0x0000ff00ul
597 /* PCI STATUS definitions */
598 #define DPE 0x80
599 #define SSE 0x40
600 #define RMA 0x20
601 #define RTA 0x10
602 #define STA 0x08
603 #define DPR 0x01
605 static int ahc_9005_subdevinfo_valid(uint16_t vendor, uint16_t device,
606 uint16_t subvendor, uint16_t subdevice);
607 static int ahc_ext_scbram_present(struct ahc_softc *ahc);
608 static void ahc_scbram_config(struct ahc_softc *ahc, int enable,
609 int pcheck, int fast, int large);
610 static void ahc_probe_ext_scbram(struct ahc_softc *ahc);
611 static void check_extport(struct ahc_softc *ahc, u_int *sxfrctl1);
612 static void ahc_parse_pci_eeprom(struct ahc_softc *ahc,
613 struct seeprom_config *sc);
614 static void configure_termination(struct ahc_softc *ahc,
615 struct seeprom_descriptor *sd,
616 u_int adapter_control,
617 u_int *sxfrctl1);
619 static void ahc_new_term_detect(struct ahc_softc *ahc,
620 int *enableSEC_low,
621 int *enableSEC_high,
622 int *enablePRI_low,
623 int *enablePRI_high,
624 int *eeprom_present);
625 static void aic787X_cable_detect(struct ahc_softc *ahc, int *internal50_present,
626 int *internal68_present,
627 int *externalcable_present,
628 int *eeprom_present);
629 static void aic785X_cable_detect(struct ahc_softc *ahc, int *internal50_present,
630 int *externalcable_present,
631 int *eeprom_present);
632 static void write_brdctl(struct ahc_softc *ahc, uint8_t value);
633 static uint8_t read_brdctl(struct ahc_softc *ahc);
634 static void ahc_pci_intr(struct ahc_softc *ahc);
635 static int ahc_pci_chip_init(struct ahc_softc *ahc);
636 static int ahc_pci_suspend(struct ahc_softc *ahc);
637 static int ahc_pci_resume(struct ahc_softc *ahc);
639 static int
640 ahc_9005_subdevinfo_valid(uint16_t device, uint16_t vendor,
641 uint16_t subdevice, uint16_t subvendor)
643 int result;
645 /* Default to invalid. */
646 result = 0;
647 if (vendor == 0x9005
648 && subvendor == 0x9005
649 && subdevice != device
650 && SUBID_9005_TYPE_KNOWN(subdevice) != 0) {
652 switch (SUBID_9005_TYPE(subdevice)) {
653 case SUBID_9005_TYPE_MB:
654 break;
655 case SUBID_9005_TYPE_CARD:
656 case SUBID_9005_TYPE_LCCARD:
658 * Currently only trust Adaptec cards to
659 * get the sub device info correct.
661 if (DEVID_9005_TYPE(device) == DEVID_9005_TYPE_HBA)
662 result = 1;
663 break;
664 case SUBID_9005_TYPE_RAID:
665 break;
666 default:
667 break;
670 return (result);
673 struct ahc_pci_identity *
674 ahc_find_pci_device(ahc_dev_softc_t pci)
676 uint64_t full_id;
677 uint16_t device;
678 uint16_t vendor;
679 uint16_t subdevice;
680 uint16_t subvendor;
681 struct ahc_pci_identity *entry;
682 u_int i;
684 vendor = ahc_pci_read_config(pci, PCIR_DEVVENDOR, /*bytes*/2);
685 device = ahc_pci_read_config(pci, PCIR_DEVICE, /*bytes*/2);
686 subvendor = ahc_pci_read_config(pci, PCIR_SUBVEND_0, /*bytes*/2);
687 subdevice = ahc_pci_read_config(pci, PCIR_SUBDEV_0, /*bytes*/2);
688 full_id = ahc_compose_id(device, vendor, subdevice, subvendor);
691 * If the second function is not hooked up, ignore it.
692 * Unfortunately, not all MB vendors implement the
693 * subdevice ID as per the Adaptec spec, so do our best
694 * to sanity check it prior to accepting the subdevice
695 * ID as valid.
697 if (ahc_get_pci_function(pci) > 0
698 && ahc_9005_subdevinfo_valid(vendor, device, subvendor, subdevice)
699 && SUBID_9005_MFUNCENB(subdevice) == 0)
700 return (NULL);
702 for (i = 0; i < ahc_num_pci_devs; i++) {
703 entry = &ahc_pci_ident_table[i];
704 if (entry->full_id == (full_id & entry->id_mask)) {
705 /* Honor exclusion entries. */
706 if (entry->name == NULL)
707 return (NULL);
708 return (entry);
711 return (NULL);
715 ahc_pci_config(struct ahc_softc *ahc, struct ahc_pci_identity *entry)
717 u_int command;
718 u_int our_id;
719 u_int sxfrctl1;
720 u_int scsiseq;
721 u_int dscommand0;
722 uint32_t devconfig;
723 int error;
724 uint8_t sblkctl;
726 our_id = 0;
727 error = entry->setup(ahc);
728 if (error != 0)
729 return (error);
730 ahc->chip |= AHC_PCI;
731 ahc->description = entry->name;
733 pci_set_power_state(ahc->dev_softc, AHC_POWER_STATE_D0);
735 error = ahc_pci_map_registers(ahc);
736 if (error != 0)
737 return (error);
740 * Before we continue probing the card, ensure that
741 * its interrupts are *disabled*. We don't want
742 * a misstep to hang the machine in an interrupt
743 * storm.
745 ahc_intr_enable(ahc, FALSE);
747 devconfig = ahc_pci_read_config(ahc->dev_softc, DEVCONFIG, /*bytes*/4);
750 * If we need to support high memory, enable dual
751 * address cycles. This bit must be set to enable
752 * high address bit generation even if we are on a
753 * 64bit bus (PCI64BIT set in devconfig).
755 if ((ahc->flags & AHC_39BIT_ADDRESSING) != 0) {
757 if (bootverbose)
758 printf("%s: Enabling 39Bit Addressing\n",
759 ahc_name(ahc));
760 devconfig |= DACEN;
763 /* Ensure that pci error generation, a test feature, is disabled. */
764 devconfig |= PCIERRGENDIS;
766 ahc_pci_write_config(ahc->dev_softc, DEVCONFIG, devconfig, /*bytes*/4);
768 /* Ensure busmastering is enabled */
769 command = ahc_pci_read_config(ahc->dev_softc, PCIR_COMMAND, /*bytes*/2);
770 command |= PCIM_CMD_BUSMASTEREN;
772 ahc_pci_write_config(ahc->dev_softc, PCIR_COMMAND, command, /*bytes*/2);
774 /* On all PCI adapters, we allow SCB paging */
775 ahc->flags |= AHC_PAGESCBS;
777 error = ahc_softc_init(ahc);
778 if (error != 0)
779 return (error);
782 * Disable PCI parity error checking. Users typically
783 * do this to work around broken PCI chipsets that get
784 * the parity timing wrong and thus generate lots of spurious
785 * errors. The chip only allows us to disable *all* parity
786 * error reporting when doing this, so CIO bus, scb ram, and
787 * scratch ram parity errors will be ignored too.
789 if ((ahc->flags & AHC_DISABLE_PCI_PERR) != 0)
790 ahc->seqctl |= FAILDIS;
792 ahc->bus_intr = ahc_pci_intr;
793 ahc->bus_chip_init = ahc_pci_chip_init;
794 ahc->bus_suspend = ahc_pci_suspend;
795 ahc->bus_resume = ahc_pci_resume;
797 /* Remeber how the card was setup in case there is no SEEPROM */
798 if ((ahc_inb(ahc, HCNTRL) & POWRDN) == 0) {
799 ahc_pause(ahc);
800 if ((ahc->features & AHC_ULTRA2) != 0)
801 our_id = ahc_inb(ahc, SCSIID_ULTRA2) & OID;
802 else
803 our_id = ahc_inb(ahc, SCSIID) & OID;
804 sxfrctl1 = ahc_inb(ahc, SXFRCTL1) & STPWEN;
805 scsiseq = ahc_inb(ahc, SCSISEQ);
806 } else {
807 sxfrctl1 = STPWEN;
808 our_id = 7;
809 scsiseq = 0;
812 error = ahc_reset(ahc, /*reinit*/FALSE);
813 if (error != 0)
814 return (ENXIO);
816 if ((ahc->features & AHC_DT) != 0) {
817 u_int sfunct;
819 /* Perform ALT-Mode Setup */
820 sfunct = ahc_inb(ahc, SFUNCT) & ~ALT_MODE;
821 ahc_outb(ahc, SFUNCT, sfunct | ALT_MODE);
822 ahc_outb(ahc, OPTIONMODE,
823 OPTIONMODE_DEFAULTS|AUTOACKEN|BUSFREEREV|EXPPHASEDIS);
824 ahc_outb(ahc, SFUNCT, sfunct);
826 /* Normal mode setup */
827 ahc_outb(ahc, CRCCONTROL1, CRCVALCHKEN|CRCENDCHKEN|CRCREQCHKEN
828 |TARGCRCENDEN);
831 dscommand0 = ahc_inb(ahc, DSCOMMAND0);
832 dscommand0 |= MPARCKEN|CACHETHEN;
833 if ((ahc->features & AHC_ULTRA2) != 0) {
836 * DPARCKEN doesn't work correctly on
837 * some MBs so don't use it.
839 dscommand0 &= ~DPARCKEN;
843 * Handle chips that must have cache line
844 * streaming (dis/en)abled.
846 if ((ahc->bugs & AHC_CACHETHEN_DIS_BUG) != 0)
847 dscommand0 |= CACHETHEN;
849 if ((ahc->bugs & AHC_CACHETHEN_BUG) != 0)
850 dscommand0 &= ~CACHETHEN;
852 ahc_outb(ahc, DSCOMMAND0, dscommand0);
854 ahc->pci_cachesize =
855 ahc_pci_read_config(ahc->dev_softc, CSIZE_LATTIME,
856 /*bytes*/1) & CACHESIZE;
857 ahc->pci_cachesize *= 4;
859 if ((ahc->bugs & AHC_PCI_2_1_RETRY_BUG) != 0
860 && ahc->pci_cachesize == 4) {
862 ahc_pci_write_config(ahc->dev_softc, CSIZE_LATTIME,
863 0, /*bytes*/1);
864 ahc->pci_cachesize = 0;
868 * We cannot perform ULTRA speeds without the presense
869 * of the external precision resistor.
871 if ((ahc->features & AHC_ULTRA) != 0) {
872 uint32_t devconfig;
874 devconfig = ahc_pci_read_config(ahc->dev_softc,
875 DEVCONFIG, /*bytes*/4);
876 if ((devconfig & REXTVALID) == 0)
877 ahc->features &= ~AHC_ULTRA;
880 /* See if we have a SEEPROM and perform auto-term */
881 check_extport(ahc, &sxfrctl1);
884 * Take the LED out of diagnostic mode
886 sblkctl = ahc_inb(ahc, SBLKCTL);
887 ahc_outb(ahc, SBLKCTL, (sblkctl & ~(DIAGLEDEN|DIAGLEDON)));
889 if ((ahc->features & AHC_ULTRA2) != 0) {
890 ahc_outb(ahc, DFF_THRSH, RD_DFTHRSH_MAX|WR_DFTHRSH_MAX);
891 } else {
892 ahc_outb(ahc, DSPCISTATUS, DFTHRSH_100);
895 if (ahc->flags & AHC_USEDEFAULTS) {
897 * PCI Adapter default setup
898 * Should only be used if the adapter does not have
899 * a SEEPROM.
901 /* See if someone else set us up already */
902 if ((ahc->flags & AHC_NO_BIOS_INIT) == 0
903 && scsiseq != 0) {
904 printf("%s: Using left over BIOS settings\n",
905 ahc_name(ahc));
906 ahc->flags &= ~AHC_USEDEFAULTS;
907 ahc->flags |= AHC_BIOS_ENABLED;
908 } else {
910 * Assume only one connector and always turn
911 * on termination.
913 our_id = 0x07;
914 sxfrctl1 = STPWEN;
916 ahc_outb(ahc, SCSICONF, our_id|ENSPCHK|RESET_SCSI);
918 ahc->our_id = our_id;
922 * Take a look to see if we have external SRAM.
923 * We currently do not attempt to use SRAM that is
924 * shared among multiple controllers.
926 ahc_probe_ext_scbram(ahc);
929 * Record our termination setting for the
930 * generic initialization routine.
932 if ((sxfrctl1 & STPWEN) != 0)
933 ahc->flags |= AHC_TERM_ENB_A;
936 * Save chip register configuration data for chip resets
937 * that occur during runtime and resume events.
939 ahc->bus_softc.pci_softc.devconfig =
940 ahc_pci_read_config(ahc->dev_softc, DEVCONFIG, /*bytes*/4);
941 ahc->bus_softc.pci_softc.command =
942 ahc_pci_read_config(ahc->dev_softc, PCIR_COMMAND, /*bytes*/1);
943 ahc->bus_softc.pci_softc.csize_lattime =
944 ahc_pci_read_config(ahc->dev_softc, CSIZE_LATTIME, /*bytes*/1);
945 ahc->bus_softc.pci_softc.dscommand0 = ahc_inb(ahc, DSCOMMAND0);
946 ahc->bus_softc.pci_softc.dspcistatus = ahc_inb(ahc, DSPCISTATUS);
947 if ((ahc->features & AHC_DT) != 0) {
948 u_int sfunct;
950 sfunct = ahc_inb(ahc, SFUNCT) & ~ALT_MODE;
951 ahc_outb(ahc, SFUNCT, sfunct | ALT_MODE);
952 ahc->bus_softc.pci_softc.optionmode = ahc_inb(ahc, OPTIONMODE);
953 ahc->bus_softc.pci_softc.targcrccnt = ahc_inw(ahc, TARGCRCCNT);
954 ahc_outb(ahc, SFUNCT, sfunct);
955 ahc->bus_softc.pci_softc.crccontrol1 =
956 ahc_inb(ahc, CRCCONTROL1);
958 if ((ahc->features & AHC_MULTI_FUNC) != 0)
959 ahc->bus_softc.pci_softc.scbbaddr = ahc_inb(ahc, SCBBADDR);
961 if ((ahc->features & AHC_ULTRA2) != 0)
962 ahc->bus_softc.pci_softc.dff_thrsh = ahc_inb(ahc, DFF_THRSH);
964 /* Core initialization */
965 error = ahc_init(ahc);
966 if (error != 0)
967 return (error);
970 * Allow interrupts now that we are completely setup.
972 error = ahc_pci_map_int(ahc);
973 if (error != 0)
974 return (error);
976 ahc->init_level++;
977 return (0);
981 * Test for the presense of external sram in an
982 * "unshared" configuration.
984 static int
985 ahc_ext_scbram_present(struct ahc_softc *ahc)
987 u_int chip;
988 int ramps;
989 int single_user;
990 uint32_t devconfig;
992 chip = ahc->chip & AHC_CHIPID_MASK;
993 devconfig = ahc_pci_read_config(ahc->dev_softc,
994 DEVCONFIG, /*bytes*/4);
995 single_user = (devconfig & MPORTMODE) != 0;
997 if ((ahc->features & AHC_ULTRA2) != 0)
998 ramps = (ahc_inb(ahc, DSCOMMAND0) & RAMPS) != 0;
999 else if (chip == AHC_AIC7895 || chip == AHC_AIC7895C)
1001 * External SCBRAM arbitration is flakey
1002 * on these chips. Unfortunately this means
1003 * we don't use the extra SCB ram space on the
1004 * 3940AUW.
1006 ramps = 0;
1007 else if (chip >= AHC_AIC7870)
1008 ramps = (devconfig & RAMPSM) != 0;
1009 else
1010 ramps = 0;
1012 if (ramps && single_user)
1013 return (1);
1014 return (0);
1018 * Enable external scbram.
1020 static void
1021 ahc_scbram_config(struct ahc_softc *ahc, int enable, int pcheck,
1022 int fast, int large)
1024 uint32_t devconfig;
1026 if (ahc->features & AHC_MULTI_FUNC) {
1028 * Set the SCB Base addr (highest address bit)
1029 * depending on which channel we are.
1031 ahc_outb(ahc, SCBBADDR, ahc_get_pci_function(ahc->dev_softc));
1034 ahc->flags &= ~AHC_LSCBS_ENABLED;
1035 if (large)
1036 ahc->flags |= AHC_LSCBS_ENABLED;
1037 devconfig = ahc_pci_read_config(ahc->dev_softc, DEVCONFIG, /*bytes*/4);
1038 if ((ahc->features & AHC_ULTRA2) != 0) {
1039 u_int dscommand0;
1041 dscommand0 = ahc_inb(ahc, DSCOMMAND0);
1042 if (enable)
1043 dscommand0 &= ~INTSCBRAMSEL;
1044 else
1045 dscommand0 |= INTSCBRAMSEL;
1046 if (large)
1047 dscommand0 &= ~USCBSIZE32;
1048 else
1049 dscommand0 |= USCBSIZE32;
1050 ahc_outb(ahc, DSCOMMAND0, dscommand0);
1051 } else {
1052 if (fast)
1053 devconfig &= ~EXTSCBTIME;
1054 else
1055 devconfig |= EXTSCBTIME;
1056 if (enable)
1057 devconfig &= ~SCBRAMSEL;
1058 else
1059 devconfig |= SCBRAMSEL;
1060 if (large)
1061 devconfig &= ~SCBSIZE32;
1062 else
1063 devconfig |= SCBSIZE32;
1065 if (pcheck)
1066 devconfig |= EXTSCBPEN;
1067 else
1068 devconfig &= ~EXTSCBPEN;
1070 ahc_pci_write_config(ahc->dev_softc, DEVCONFIG, devconfig, /*bytes*/4);
1074 * Take a look to see if we have external SRAM.
1075 * We currently do not attempt to use SRAM that is
1076 * shared among multiple controllers.
1078 static void
1079 ahc_probe_ext_scbram(struct ahc_softc *ahc)
1081 int num_scbs;
1082 int test_num_scbs;
1083 int enable;
1084 int pcheck;
1085 int fast;
1086 int large;
1088 enable = FALSE;
1089 pcheck = FALSE;
1090 fast = FALSE;
1091 large = FALSE;
1092 num_scbs = 0;
1094 if (ahc_ext_scbram_present(ahc) == 0)
1095 goto done;
1098 * Probe for the best parameters to use.
1100 ahc_scbram_config(ahc, /*enable*/TRUE, pcheck, fast, large);
1101 num_scbs = ahc_probe_scbs(ahc);
1102 if (num_scbs == 0) {
1103 /* The SRAM wasn't really present. */
1104 goto done;
1106 enable = TRUE;
1109 * Clear any outstanding parity error
1110 * and ensure that parity error reporting
1111 * is enabled.
1113 ahc_outb(ahc, SEQCTL, 0);
1114 ahc_outb(ahc, CLRINT, CLRPARERR);
1115 ahc_outb(ahc, CLRINT, CLRBRKADRINT);
1117 /* Now see if we can do parity */
1118 ahc_scbram_config(ahc, enable, /*pcheck*/TRUE, fast, large);
1119 num_scbs = ahc_probe_scbs(ahc);
1120 if ((ahc_inb(ahc, INTSTAT) & BRKADRINT) == 0
1121 || (ahc_inb(ahc, ERROR) & MPARERR) == 0)
1122 pcheck = TRUE;
1124 /* Clear any resulting parity error */
1125 ahc_outb(ahc, CLRINT, CLRPARERR);
1126 ahc_outb(ahc, CLRINT, CLRBRKADRINT);
1128 /* Now see if we can do fast timing */
1129 ahc_scbram_config(ahc, enable, pcheck, /*fast*/TRUE, large);
1130 test_num_scbs = ahc_probe_scbs(ahc);
1131 if (test_num_scbs == num_scbs
1132 && ((ahc_inb(ahc, INTSTAT) & BRKADRINT) == 0
1133 || (ahc_inb(ahc, ERROR) & MPARERR) == 0))
1134 fast = TRUE;
1137 * See if we can use large SCBs and still maintain
1138 * the same overall count of SCBs.
1140 if ((ahc->features & AHC_LARGE_SCBS) != 0) {
1141 ahc_scbram_config(ahc, enable, pcheck, fast, /*large*/TRUE);
1142 test_num_scbs = ahc_probe_scbs(ahc);
1143 if (test_num_scbs >= num_scbs) {
1144 large = TRUE;
1145 num_scbs = test_num_scbs;
1146 if (num_scbs >= 64) {
1148 * We have enough space to move the
1149 * "busy targets table" into SCB space
1150 * and make it qualify all the way to the
1151 * lun level.
1153 ahc->flags |= AHC_SCB_BTT;
1157 done:
1159 * Disable parity error reporting until we
1160 * can load instruction ram.
1162 ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS);
1163 /* Clear any latched parity error */
1164 ahc_outb(ahc, CLRINT, CLRPARERR);
1165 ahc_outb(ahc, CLRINT, CLRBRKADRINT);
1166 if (bootverbose && enable) {
1167 printf("%s: External SRAM, %s access%s, %dbytes/SCB\n",
1168 ahc_name(ahc), fast ? "fast" : "slow",
1169 pcheck ? ", parity checking enabled" : "",
1170 large ? 64 : 32);
1172 ahc_scbram_config(ahc, enable, pcheck, fast, large);
1176 * Perform some simple tests that should catch situations where
1177 * our registers are invalidly mapped.
1180 ahc_pci_test_register_access(struct ahc_softc *ahc)
1182 int error;
1183 u_int status1;
1184 uint32_t cmd;
1185 uint8_t hcntrl;
1187 error = EIO;
1190 * Enable PCI error interrupt status, but suppress NMIs
1191 * generated by SERR raised due to target aborts.
1193 cmd = ahc_pci_read_config(ahc->dev_softc, PCIR_COMMAND, /*bytes*/2);
1194 ahc_pci_write_config(ahc->dev_softc, PCIR_COMMAND,
1195 cmd & ~PCIM_CMD_SERRESPEN, /*bytes*/2);
1198 * First a simple test to see if any
1199 * registers can be read. Reading
1200 * HCNTRL has no side effects and has
1201 * at least one bit that is guaranteed to
1202 * be zero so it is a good register to
1203 * use for this test.
1205 hcntrl = ahc_inb(ahc, HCNTRL);
1207 if (hcntrl == 0xFF)
1208 goto fail;
1210 if ((hcntrl & CHIPRST) != 0) {
1212 * The chip has not been initialized since
1213 * PCI/EISA/VLB bus reset. Don't trust
1214 * "left over BIOS data".
1216 ahc->flags |= AHC_NO_BIOS_INIT;
1220 * Next create a situation where write combining
1221 * or read prefetching could be initiated by the
1222 * CPU or host bridge. Our device does not support
1223 * either, so look for data corruption and/or flagged
1224 * PCI errors. First pause without causing another
1225 * chip reset.
1227 hcntrl &= ~CHIPRST;
1228 ahc_outb(ahc, HCNTRL, hcntrl|PAUSE);
1229 while (ahc_is_paused(ahc) == 0)
1232 /* Clear any PCI errors that occurred before our driver attached. */
1233 status1 = ahc_pci_read_config(ahc->dev_softc,
1234 PCIR_STATUS + 1, /*bytes*/1);
1235 ahc_pci_write_config(ahc->dev_softc, PCIR_STATUS + 1,
1236 status1, /*bytes*/1);
1237 ahc_outb(ahc, CLRINT, CLRPARERR);
1239 ahc_outb(ahc, SEQCTL, PERRORDIS);
1240 ahc_outb(ahc, SCBPTR, 0);
1241 ahc_outl(ahc, SCB_BASE, 0x5aa555aa);
1242 if (ahc_inl(ahc, SCB_BASE) != 0x5aa555aa)
1243 goto fail;
1245 status1 = ahc_pci_read_config(ahc->dev_softc,
1246 PCIR_STATUS + 1, /*bytes*/1);
1247 if ((status1 & STA) != 0)
1248 goto fail;
1250 error = 0;
1252 fail:
1253 /* Silently clear any latched errors. */
1254 status1 = ahc_pci_read_config(ahc->dev_softc,
1255 PCIR_STATUS + 1, /*bytes*/1);
1256 ahc_pci_write_config(ahc->dev_softc, PCIR_STATUS + 1,
1257 status1, /*bytes*/1);
1258 ahc_outb(ahc, CLRINT, CLRPARERR);
1259 ahc_outb(ahc, SEQCTL, PERRORDIS|FAILDIS);
1260 ahc_pci_write_config(ahc->dev_softc, PCIR_COMMAND, cmd, /*bytes*/2);
1261 return (error);
1265 * Check the external port logic for a serial eeprom
1266 * and termination/cable detection contrls.
1268 static void
1269 check_extport(struct ahc_softc *ahc, u_int *sxfrctl1)
1271 struct seeprom_descriptor sd;
1272 struct seeprom_config *sc;
1273 int have_seeprom;
1274 int have_autoterm;
1276 sd.sd_ahc = ahc;
1277 sd.sd_control_offset = SEECTL;
1278 sd.sd_status_offset = SEECTL;
1279 sd.sd_dataout_offset = SEECTL;
1280 sc = ahc->seep_config;
1283 * For some multi-channel devices, the c46 is simply too
1284 * small to work. For the other controller types, we can
1285 * get our information from either SEEPROM type. Set the
1286 * type to start our probe with accordingly.
1288 if (ahc->flags & AHC_LARGE_SEEPROM)
1289 sd.sd_chip = C56_66;
1290 else
1291 sd.sd_chip = C46;
1293 sd.sd_MS = SEEMS;
1294 sd.sd_RDY = SEERDY;
1295 sd.sd_CS = SEECS;
1296 sd.sd_CK = SEECK;
1297 sd.sd_DO = SEEDO;
1298 sd.sd_DI = SEEDI;
1300 have_seeprom = ahc_acquire_seeprom(ahc, &sd);
1301 if (have_seeprom) {
1303 if (bootverbose)
1304 printf("%s: Reading SEEPROM...", ahc_name(ahc));
1306 for (;;) {
1307 u_int start_addr;
1309 start_addr = 32 * (ahc->channel - 'A');
1311 have_seeprom = ahc_read_seeprom(&sd, (uint16_t *)sc,
1312 start_addr,
1313 sizeof(*sc)/2);
1315 if (have_seeprom)
1316 have_seeprom = ahc_verify_cksum(sc);
1318 if (have_seeprom != 0 || sd.sd_chip == C56_66) {
1319 if (bootverbose) {
1320 if (have_seeprom == 0)
1321 printf ("checksum error\n");
1322 else
1323 printf ("done.\n");
1325 break;
1327 sd.sd_chip = C56_66;
1329 ahc_release_seeprom(&sd);
1331 /* Remember the SEEPROM type for later */
1332 if (sd.sd_chip == C56_66)
1333 ahc->flags |= AHC_LARGE_SEEPROM;
1336 if (!have_seeprom) {
1338 * Pull scratch ram settings and treat them as
1339 * if they are the contents of an seeprom if
1340 * the 'ADPT' signature is found in SCB2.
1341 * We manually compose the data as 16bit values
1342 * to avoid endian issues.
1344 ahc_outb(ahc, SCBPTR, 2);
1345 if (ahc_inb(ahc, SCB_BASE) == 'A'
1346 && ahc_inb(ahc, SCB_BASE + 1) == 'D'
1347 && ahc_inb(ahc, SCB_BASE + 2) == 'P'
1348 && ahc_inb(ahc, SCB_BASE + 3) == 'T') {
1349 uint16_t *sc_data;
1350 int i;
1352 sc_data = (uint16_t *)sc;
1353 for (i = 0; i < 32; i++, sc_data++) {
1354 int j;
1356 j = i * 2;
1357 *sc_data = ahc_inb(ahc, SRAM_BASE + j)
1358 | ahc_inb(ahc, SRAM_BASE + j + 1) << 8;
1360 have_seeprom = ahc_verify_cksum(sc);
1361 if (have_seeprom)
1362 ahc->flags |= AHC_SCB_CONFIG_USED;
1365 * Clear any SCB parity errors in case this data and
1366 * its associated parity was not initialized by the BIOS
1368 ahc_outb(ahc, CLRINT, CLRPARERR);
1369 ahc_outb(ahc, CLRINT, CLRBRKADRINT);
1372 if (!have_seeprom) {
1373 if (bootverbose)
1374 printf("%s: No SEEPROM available.\n", ahc_name(ahc));
1375 ahc->flags |= AHC_USEDEFAULTS;
1376 free(ahc->seep_config, M_DEVBUF);
1377 ahc->seep_config = NULL;
1378 sc = NULL;
1379 } else {
1380 ahc_parse_pci_eeprom(ahc, sc);
1384 * Cards that have the external logic necessary to talk to
1385 * a SEEPROM, are almost certain to have the remaining logic
1386 * necessary for auto-termination control. This assumption
1387 * hasn't failed yet...
1389 have_autoterm = have_seeprom;
1392 * Some low-cost chips have SEEPROM and auto-term control built
1393 * in, instead of using a GAL. They can tell us directly
1394 * if the termination logic is enabled.
1396 if ((ahc->features & AHC_SPIOCAP) != 0) {
1397 if ((ahc_inb(ahc, SPIOCAP) & SSPIOCPS) == 0)
1398 have_autoterm = FALSE;
1401 if (have_autoterm) {
1402 ahc->flags |= AHC_HAS_TERM_LOGIC;
1403 ahc_acquire_seeprom(ahc, &sd);
1404 configure_termination(ahc, &sd, sc->adapter_control, sxfrctl1);
1405 ahc_release_seeprom(&sd);
1406 } else if (have_seeprom) {
1407 *sxfrctl1 &= ~STPWEN;
1408 if ((sc->adapter_control & CFSTERM) != 0)
1409 *sxfrctl1 |= STPWEN;
1410 if (bootverbose)
1411 printf("%s: Low byte termination %sabled\n",
1412 ahc_name(ahc),
1413 (*sxfrctl1 & STPWEN) ? "en" : "dis");
1417 static void
1418 ahc_parse_pci_eeprom(struct ahc_softc *ahc, struct seeprom_config *sc)
1421 * Put the data we've collected down into SRAM
1422 * where ahc_init will find it.
1424 int i;
1425 int max_targ = sc->max_targets & CFMAXTARG;
1426 u_int scsi_conf;
1427 uint16_t discenable;
1428 uint16_t ultraenb;
1430 discenable = 0;
1431 ultraenb = 0;
1432 if ((sc->adapter_control & CFULTRAEN) != 0) {
1434 * Determine if this adapter has a "newstyle"
1435 * SEEPROM format.
1437 for (i = 0; i < max_targ; i++) {
1438 if ((sc->device_flags[i] & CFSYNCHISULTRA) != 0) {
1439 ahc->flags |= AHC_NEWEEPROM_FMT;
1440 break;
1445 for (i = 0; i < max_targ; i++) {
1446 u_int scsirate;
1447 uint16_t target_mask;
1449 target_mask = 0x01 << i;
1450 if (sc->device_flags[i] & CFDISC)
1451 discenable |= target_mask;
1452 if ((ahc->flags & AHC_NEWEEPROM_FMT) != 0) {
1453 if ((sc->device_flags[i] & CFSYNCHISULTRA) != 0)
1454 ultraenb |= target_mask;
1455 } else if ((sc->adapter_control & CFULTRAEN) != 0) {
1456 ultraenb |= target_mask;
1458 if ((sc->device_flags[i] & CFXFER) == 0x04
1459 && (ultraenb & target_mask) != 0) {
1460 /* Treat 10MHz as a non-ultra speed */
1461 sc->device_flags[i] &= ~CFXFER;
1462 ultraenb &= ~target_mask;
1464 if ((ahc->features & AHC_ULTRA2) != 0) {
1465 u_int offset;
1467 if (sc->device_flags[i] & CFSYNCH)
1468 offset = MAX_OFFSET_ULTRA2;
1469 else
1470 offset = 0;
1471 ahc_outb(ahc, TARG_OFFSET + i, offset);
1474 * The ultra enable bits contain the
1475 * high bit of the ultra2 sync rate
1476 * field.
1478 scsirate = (sc->device_flags[i] & CFXFER)
1479 | ((ultraenb & target_mask) ? 0x8 : 0x0);
1480 if (sc->device_flags[i] & CFWIDEB)
1481 scsirate |= WIDEXFER;
1482 } else {
1483 scsirate = (sc->device_flags[i] & CFXFER) << 4;
1484 if (sc->device_flags[i] & CFSYNCH)
1485 scsirate |= SOFS;
1486 if (sc->device_flags[i] & CFWIDEB)
1487 scsirate |= WIDEXFER;
1489 ahc_outb(ahc, TARG_SCSIRATE + i, scsirate);
1491 ahc->our_id = sc->brtime_id & CFSCSIID;
1493 scsi_conf = (ahc->our_id & 0x7);
1494 if (sc->adapter_control & CFSPARITY)
1495 scsi_conf |= ENSPCHK;
1496 if (sc->adapter_control & CFRESETB)
1497 scsi_conf |= RESET_SCSI;
1499 ahc->flags |= (sc->adapter_control & CFBOOTCHAN) >> CFBOOTCHANSHIFT;
1501 if (sc->bios_control & CFEXTEND)
1502 ahc->flags |= AHC_EXTENDED_TRANS_A;
1504 if (sc->bios_control & CFBIOSEN)
1505 ahc->flags |= AHC_BIOS_ENABLED;
1506 if (ahc->features & AHC_ULTRA
1507 && (ahc->flags & AHC_NEWEEPROM_FMT) == 0) {
1508 /* Should we enable Ultra mode? */
1509 if (!(sc->adapter_control & CFULTRAEN))
1510 /* Treat us as a non-ultra card */
1511 ultraenb = 0;
1514 if (sc->signature == CFSIGNATURE
1515 || sc->signature == CFSIGNATURE2) {
1516 uint32_t devconfig;
1518 /* Honor the STPWLEVEL settings */
1519 devconfig = ahc_pci_read_config(ahc->dev_softc,
1520 DEVCONFIG, /*bytes*/4);
1521 devconfig &= ~STPWLEVEL;
1522 if ((sc->bios_control & CFSTPWLEVEL) != 0)
1523 devconfig |= STPWLEVEL;
1524 ahc_pci_write_config(ahc->dev_softc, DEVCONFIG,
1525 devconfig, /*bytes*/4);
1527 /* Set SCSICONF info */
1528 ahc_outb(ahc, SCSICONF, scsi_conf);
1529 ahc_outb(ahc, DISC_DSB, ~(discenable & 0xff));
1530 ahc_outb(ahc, DISC_DSB + 1, ~((discenable >> 8) & 0xff));
1531 ahc_outb(ahc, ULTRA_ENB, ultraenb & 0xff);
1532 ahc_outb(ahc, ULTRA_ENB + 1, (ultraenb >> 8) & 0xff);
1535 static void
1536 configure_termination(struct ahc_softc *ahc,
1537 struct seeprom_descriptor *sd,
1538 u_int adapter_control,
1539 u_int *sxfrctl1)
1541 uint8_t brddat;
1543 brddat = 0;
1546 * Update the settings in sxfrctl1 to match the
1547 * termination settings
1549 *sxfrctl1 = 0;
1552 * SEECS must be on for the GALS to latch
1553 * the data properly. Be sure to leave MS
1554 * on or we will release the seeprom.
1556 SEEPROM_OUTB(sd, sd->sd_MS | sd->sd_CS);
1557 if ((adapter_control & CFAUTOTERM) != 0
1558 || (ahc->features & AHC_NEW_TERMCTL) != 0) {
1559 int internal50_present;
1560 int internal68_present;
1561 int externalcable_present;
1562 int eeprom_present;
1563 int enableSEC_low;
1564 int enableSEC_high;
1565 int enablePRI_low;
1566 int enablePRI_high;
1567 int sum;
1569 enableSEC_low = 0;
1570 enableSEC_high = 0;
1571 enablePRI_low = 0;
1572 enablePRI_high = 0;
1573 if ((ahc->features & AHC_NEW_TERMCTL) != 0) {
1574 ahc_new_term_detect(ahc, &enableSEC_low,
1575 &enableSEC_high,
1576 &enablePRI_low,
1577 &enablePRI_high,
1578 &eeprom_present);
1579 if ((adapter_control & CFSEAUTOTERM) == 0) {
1580 if (bootverbose)
1581 printf("%s: Manual SE Termination\n",
1582 ahc_name(ahc));
1583 enableSEC_low = (adapter_control & CFSELOWTERM);
1584 enableSEC_high =
1585 (adapter_control & CFSEHIGHTERM);
1587 if ((adapter_control & CFAUTOTERM) == 0) {
1588 if (bootverbose)
1589 printf("%s: Manual LVD Termination\n",
1590 ahc_name(ahc));
1591 enablePRI_low = (adapter_control & CFSTERM);
1592 enablePRI_high = (adapter_control & CFWSTERM);
1594 /* Make the table calculations below happy */
1595 internal50_present = 0;
1596 internal68_present = 1;
1597 externalcable_present = 1;
1598 } else if ((ahc->features & AHC_SPIOCAP) != 0) {
1599 aic785X_cable_detect(ahc, &internal50_present,
1600 &externalcable_present,
1601 &eeprom_present);
1602 /* Can never support a wide connector. */
1603 internal68_present = 0;
1604 } else {
1605 aic787X_cable_detect(ahc, &internal50_present,
1606 &internal68_present,
1607 &externalcable_present,
1608 &eeprom_present);
1611 if ((ahc->features & AHC_WIDE) == 0)
1612 internal68_present = 0;
1614 if (bootverbose
1615 && (ahc->features & AHC_ULTRA2) == 0) {
1616 printf("%s: internal 50 cable %s present",
1617 ahc_name(ahc),
1618 internal50_present ? "is":"not");
1620 if ((ahc->features & AHC_WIDE) != 0)
1621 printf(", internal 68 cable %s present",
1622 internal68_present ? "is":"not");
1623 printf("\n%s: external cable %s present\n",
1624 ahc_name(ahc),
1625 externalcable_present ? "is":"not");
1627 if (bootverbose)
1628 printf("%s: BIOS eeprom %s present\n",
1629 ahc_name(ahc), eeprom_present ? "is" : "not");
1631 if ((ahc->flags & AHC_INT50_SPEEDFLEX) != 0) {
1633 * The 50 pin connector is a separate bus,
1634 * so force it to always be terminated.
1635 * In the future, perform current sensing
1636 * to determine if we are in the middle of
1637 * a properly terminated bus.
1639 internal50_present = 0;
1643 * Now set the termination based on what
1644 * we found.
1645 * Flash Enable = BRDDAT7
1646 * Secondary High Term Enable = BRDDAT6
1647 * Secondary Low Term Enable = BRDDAT5 (7890)
1648 * Primary High Term Enable = BRDDAT4 (7890)
1650 if ((ahc->features & AHC_ULTRA2) == 0
1651 && (internal50_present != 0)
1652 && (internal68_present != 0)
1653 && (externalcable_present != 0)) {
1654 printf("%s: Illegal cable configuration!!. "
1655 "Only two connectors on the "
1656 "adapter may be used at a "
1657 "time!\n", ahc_name(ahc));
1660 * Pretend there are no cables in the hope
1661 * that having all of the termination on
1662 * gives us a more stable bus.
1664 internal50_present = 0;
1665 internal68_present = 0;
1666 externalcable_present = 0;
1669 if ((ahc->features & AHC_WIDE) != 0
1670 && ((externalcable_present == 0)
1671 || (internal68_present == 0)
1672 || (enableSEC_high != 0))) {
1673 brddat |= BRDDAT6;
1674 if (bootverbose) {
1675 if ((ahc->flags & AHC_INT50_SPEEDFLEX) != 0)
1676 printf("%s: 68 pin termination "
1677 "Enabled\n", ahc_name(ahc));
1678 else
1679 printf("%s: %sHigh byte termination "
1680 "Enabled\n", ahc_name(ahc),
1681 enableSEC_high ? "Secondary "
1682 : "");
1686 sum = internal50_present + internal68_present
1687 + externalcable_present;
1688 if (sum < 2 || (enableSEC_low != 0)) {
1689 if ((ahc->features & AHC_ULTRA2) != 0)
1690 brddat |= BRDDAT5;
1691 else
1692 *sxfrctl1 |= STPWEN;
1693 if (bootverbose) {
1694 if ((ahc->flags & AHC_INT50_SPEEDFLEX) != 0)
1695 printf("%s: 50 pin termination "
1696 "Enabled\n", ahc_name(ahc));
1697 else
1698 printf("%s: %sLow byte termination "
1699 "Enabled\n", ahc_name(ahc),
1700 enableSEC_low ? "Secondary "
1701 : "");
1705 if (enablePRI_low != 0) {
1706 *sxfrctl1 |= STPWEN;
1707 if (bootverbose)
1708 printf("%s: Primary Low Byte termination "
1709 "Enabled\n", ahc_name(ahc));
1713 * Setup STPWEN before setting up the rest of
1714 * the termination per the tech note on the U160 cards.
1716 ahc_outb(ahc, SXFRCTL1, *sxfrctl1);
1718 if (enablePRI_high != 0) {
1719 brddat |= BRDDAT4;
1720 if (bootverbose)
1721 printf("%s: Primary High Byte "
1722 "termination Enabled\n",
1723 ahc_name(ahc));
1726 write_brdctl(ahc, brddat);
1728 } else {
1729 if ((adapter_control & CFSTERM) != 0) {
1730 *sxfrctl1 |= STPWEN;
1732 if (bootverbose)
1733 printf("%s: %sLow byte termination Enabled\n",
1734 ahc_name(ahc),
1735 (ahc->features & AHC_ULTRA2) ? "Primary "
1736 : "");
1739 if ((adapter_control & CFWSTERM) != 0
1740 && (ahc->features & AHC_WIDE) != 0) {
1741 brddat |= BRDDAT6;
1742 if (bootverbose)
1743 printf("%s: %sHigh byte termination Enabled\n",
1744 ahc_name(ahc),
1745 (ahc->features & AHC_ULTRA2)
1746 ? "Secondary " : "");
1750 * Setup STPWEN before setting up the rest of
1751 * the termination per the tech note on the U160 cards.
1753 ahc_outb(ahc, SXFRCTL1, *sxfrctl1);
1755 if ((ahc->features & AHC_WIDE) != 0)
1756 write_brdctl(ahc, brddat);
1758 SEEPROM_OUTB(sd, sd->sd_MS); /* Clear CS */
1761 static void
1762 ahc_new_term_detect(struct ahc_softc *ahc, int *enableSEC_low,
1763 int *enableSEC_high, int *enablePRI_low,
1764 int *enablePRI_high, int *eeprom_present)
1766 uint8_t brdctl;
1769 * BRDDAT7 = Eeprom
1770 * BRDDAT6 = Enable Secondary High Byte termination
1771 * BRDDAT5 = Enable Secondary Low Byte termination
1772 * BRDDAT4 = Enable Primary high byte termination
1773 * BRDDAT3 = Enable Primary low byte termination
1775 brdctl = read_brdctl(ahc);
1776 *eeprom_present = brdctl & BRDDAT7;
1777 *enableSEC_high = (brdctl & BRDDAT6);
1778 *enableSEC_low = (brdctl & BRDDAT5);
1779 *enablePRI_high = (brdctl & BRDDAT4);
1780 *enablePRI_low = (brdctl & BRDDAT3);
1783 static void
1784 aic787X_cable_detect(struct ahc_softc *ahc, int *internal50_present,
1785 int *internal68_present, int *externalcable_present,
1786 int *eeprom_present)
1788 uint8_t brdctl;
1791 * First read the status of our cables.
1792 * Set the rom bank to 0 since the
1793 * bank setting serves as a multiplexor
1794 * for the cable detection logic.
1795 * BRDDAT5 controls the bank switch.
1797 write_brdctl(ahc, 0);
1800 * Now read the state of the internal
1801 * connectors. BRDDAT6 is INT50 and
1802 * BRDDAT7 is INT68.
1804 brdctl = read_brdctl(ahc);
1805 *internal50_present = (brdctl & BRDDAT6) ? 0 : 1;
1806 *internal68_present = (brdctl & BRDDAT7) ? 0 : 1;
1809 * Set the rom bank to 1 and determine
1810 * the other signals.
1812 write_brdctl(ahc, BRDDAT5);
1815 * Now read the state of the external
1816 * connectors. BRDDAT6 is EXT68 and
1817 * BRDDAT7 is EPROMPS.
1819 brdctl = read_brdctl(ahc);
1820 *externalcable_present = (brdctl & BRDDAT6) ? 0 : 1;
1821 *eeprom_present = (brdctl & BRDDAT7) ? 1 : 0;
1824 static void
1825 aic785X_cable_detect(struct ahc_softc *ahc, int *internal50_present,
1826 int *externalcable_present, int *eeprom_present)
1828 uint8_t brdctl;
1829 uint8_t spiocap;
1831 spiocap = ahc_inb(ahc, SPIOCAP);
1832 spiocap &= ~SOFTCMDEN;
1833 spiocap |= EXT_BRDCTL;
1834 ahc_outb(ahc, SPIOCAP, spiocap);
1835 ahc_outb(ahc, BRDCTL, BRDRW|BRDCS);
1836 ahc_flush_device_writes(ahc);
1837 ahc_delay(500);
1838 ahc_outb(ahc, BRDCTL, 0);
1839 ahc_flush_device_writes(ahc);
1840 ahc_delay(500);
1841 brdctl = ahc_inb(ahc, BRDCTL);
1842 *internal50_present = (brdctl & BRDDAT5) ? 0 : 1;
1843 *externalcable_present = (brdctl & BRDDAT6) ? 0 : 1;
1844 *eeprom_present = (ahc_inb(ahc, SPIOCAP) & EEPROM) ? 1 : 0;
1848 ahc_acquire_seeprom(struct ahc_softc *ahc, struct seeprom_descriptor *sd)
1850 int wait;
1852 if ((ahc->features & AHC_SPIOCAP) != 0
1853 && (ahc_inb(ahc, SPIOCAP) & SEEPROM) == 0)
1854 return (0);
1857 * Request access of the memory port. When access is
1858 * granted, SEERDY will go high. We use a 1 second
1859 * timeout which should be near 1 second more than
1860 * is needed. Reason: after the chip reset, there
1861 * should be no contention.
1863 SEEPROM_OUTB(sd, sd->sd_MS);
1864 wait = 1000; /* 1 second timeout in msec */
1865 while (--wait && ((SEEPROM_STATUS_INB(sd) & sd->sd_RDY) == 0)) {
1866 ahc_delay(1000); /* delay 1 msec */
1868 if ((SEEPROM_STATUS_INB(sd) & sd->sd_RDY) == 0) {
1869 SEEPROM_OUTB(sd, 0);
1870 return (0);
1872 return(1);
1875 void
1876 ahc_release_seeprom(struct seeprom_descriptor *sd)
1878 /* Release access to the memory port and the serial EEPROM. */
1879 SEEPROM_OUTB(sd, 0);
1882 static void
1883 write_brdctl(struct ahc_softc *ahc, uint8_t value)
1885 uint8_t brdctl;
1887 if ((ahc->chip & AHC_CHIPID_MASK) == AHC_AIC7895) {
1888 brdctl = BRDSTB;
1889 if (ahc->channel == 'B')
1890 brdctl |= BRDCS;
1891 } else if ((ahc->features & AHC_ULTRA2) != 0) {
1892 brdctl = 0;
1893 } else {
1894 brdctl = BRDSTB|BRDCS;
1896 ahc_outb(ahc, BRDCTL, brdctl);
1897 ahc_flush_device_writes(ahc);
1898 brdctl |= value;
1899 ahc_outb(ahc, BRDCTL, brdctl);
1900 ahc_flush_device_writes(ahc);
1901 if ((ahc->features & AHC_ULTRA2) != 0)
1902 brdctl |= BRDSTB_ULTRA2;
1903 else
1904 brdctl &= ~BRDSTB;
1905 ahc_outb(ahc, BRDCTL, brdctl);
1906 ahc_flush_device_writes(ahc);
1907 if ((ahc->features & AHC_ULTRA2) != 0)
1908 brdctl = 0;
1909 else
1910 brdctl &= ~BRDCS;
1911 ahc_outb(ahc, BRDCTL, brdctl);
1914 static uint8_t
1915 read_brdctl(struct ahc_softc *ahc)
1917 uint8_t brdctl;
1918 uint8_t value;
1920 if ((ahc->chip & AHC_CHIPID_MASK) == AHC_AIC7895) {
1921 brdctl = BRDRW;
1922 if (ahc->channel == 'B')
1923 brdctl |= BRDCS;
1924 } else if ((ahc->features & AHC_ULTRA2) != 0) {
1925 brdctl = BRDRW_ULTRA2;
1926 } else {
1927 brdctl = BRDRW|BRDCS;
1929 ahc_outb(ahc, BRDCTL, brdctl);
1930 ahc_flush_device_writes(ahc);
1931 value = ahc_inb(ahc, BRDCTL);
1932 ahc_outb(ahc, BRDCTL, 0);
1933 return (value);
1936 static void
1937 ahc_pci_intr(struct ahc_softc *ahc)
1939 u_int error;
1940 u_int status1;
1942 error = ahc_inb(ahc, ERROR);
1943 if ((error & PCIERRSTAT) == 0)
1944 return;
1946 status1 = ahc_pci_read_config(ahc->dev_softc,
1947 PCIR_STATUS + 1, /*bytes*/1);
1949 printf("%s: PCI error Interrupt at seqaddr = 0x%x\n",
1950 ahc_name(ahc),
1951 ahc_inb(ahc, SEQADDR0) | (ahc_inb(ahc, SEQADDR1) << 8));
1953 if (status1 & DPE) {
1954 ahc->pci_target_perr_count++;
1955 printf("%s: Data Parity Error Detected during address "
1956 "or write data phase\n", ahc_name(ahc));
1958 if (status1 & SSE) {
1959 printf("%s: Signal System Error Detected\n", ahc_name(ahc));
1961 if (status1 & RMA) {
1962 printf("%s: Received a Master Abort\n", ahc_name(ahc));
1964 if (status1 & RTA) {
1965 printf("%s: Received a Target Abort\n", ahc_name(ahc));
1967 if (status1 & STA) {
1968 printf("%s: Signaled a Target Abort\n", ahc_name(ahc));
1970 if (status1 & DPR) {
1971 printf("%s: Data Parity Error has been reported via PERR#\n",
1972 ahc_name(ahc));
1975 /* Clear latched errors. */
1976 ahc_pci_write_config(ahc->dev_softc, PCIR_STATUS + 1,
1977 status1, /*bytes*/1);
1979 if ((status1 & (DPE|SSE|RMA|RTA|STA|DPR)) == 0) {
1980 printf("%s: Latched PCIERR interrupt with "
1981 "no status bits set\n", ahc_name(ahc));
1982 } else {
1983 ahc_outb(ahc, CLRINT, CLRPARERR);
1986 if (ahc->pci_target_perr_count > AHC_PCI_TARGET_PERR_THRESH) {
1987 printf(
1988 "%s: WARNING WARNING WARNING WARNING\n"
1989 "%s: Too many PCI parity errors observed as a target.\n"
1990 "%s: Some device on this bus is generating bad parity.\n"
1991 "%s: This is an error *observed by*, not *generated by*, this controller.\n"
1992 "%s: PCI parity error checking has been disabled.\n"
1993 "%s: WARNING WARNING WARNING WARNING\n",
1994 ahc_name(ahc), ahc_name(ahc), ahc_name(ahc),
1995 ahc_name(ahc), ahc_name(ahc), ahc_name(ahc));
1996 ahc->seqctl |= FAILDIS;
1997 ahc_outb(ahc, SEQCTL, ahc->seqctl);
1999 ahc_unpause(ahc);
2002 static int
2003 ahc_pci_chip_init(struct ahc_softc *ahc)
2005 ahc_outb(ahc, DSCOMMAND0, ahc->bus_softc.pci_softc.dscommand0);
2006 ahc_outb(ahc, DSPCISTATUS, ahc->bus_softc.pci_softc.dspcistatus);
2007 if ((ahc->features & AHC_DT) != 0) {
2008 u_int sfunct;
2010 sfunct = ahc_inb(ahc, SFUNCT) & ~ALT_MODE;
2011 ahc_outb(ahc, SFUNCT, sfunct | ALT_MODE);
2012 ahc_outb(ahc, OPTIONMODE, ahc->bus_softc.pci_softc.optionmode);
2013 ahc_outw(ahc, TARGCRCCNT, ahc->bus_softc.pci_softc.targcrccnt);
2014 ahc_outb(ahc, SFUNCT, sfunct);
2015 ahc_outb(ahc, CRCCONTROL1,
2016 ahc->bus_softc.pci_softc.crccontrol1);
2018 if ((ahc->features & AHC_MULTI_FUNC) != 0)
2019 ahc_outb(ahc, SCBBADDR, ahc->bus_softc.pci_softc.scbbaddr);
2021 if ((ahc->features & AHC_ULTRA2) != 0)
2022 ahc_outb(ahc, DFF_THRSH, ahc->bus_softc.pci_softc.dff_thrsh);
2024 return (ahc_chip_init(ahc));
2027 static int
2028 ahc_pci_suspend(struct ahc_softc *ahc)
2030 return (ahc_suspend(ahc));
2033 static int
2034 ahc_pci_resume(struct ahc_softc *ahc)
2037 pci_set_power_state(ahc->dev_softc, AHC_POWER_STATE_D0);
2040 * We assume that the OS has restored our register
2041 * mappings, etc. Just update the config space registers
2042 * that the OS doesn't know about and rely on our chip
2043 * reset handler to handle the rest.
2045 ahc_pci_write_config(ahc->dev_softc, DEVCONFIG,
2046 ahc->bus_softc.pci_softc.devconfig, /*bytes*/4);
2047 ahc_pci_write_config(ahc->dev_softc, PCIR_COMMAND,
2048 ahc->bus_softc.pci_softc.command, /*bytes*/1);
2049 ahc_pci_write_config(ahc->dev_softc, CSIZE_LATTIME,
2050 ahc->bus_softc.pci_softc.csize_lattime, /*bytes*/1);
2051 if ((ahc->flags & AHC_HAS_TERM_LOGIC) != 0) {
2052 struct seeprom_descriptor sd;
2053 u_int sxfrctl1;
2055 sd.sd_ahc = ahc;
2056 sd.sd_control_offset = SEECTL;
2057 sd.sd_status_offset = SEECTL;
2058 sd.sd_dataout_offset = SEECTL;
2060 ahc_acquire_seeprom(ahc, &sd);
2061 configure_termination(ahc, &sd,
2062 ahc->seep_config->adapter_control,
2063 &sxfrctl1);
2064 ahc_release_seeprom(&sd);
2066 return (ahc_resume(ahc));
2069 static int
2070 ahc_aic785X_setup(struct ahc_softc *ahc)
2072 ahc_dev_softc_t pci;
2073 uint8_t rev;
2075 pci = ahc->dev_softc;
2076 ahc->channel = 'A';
2077 ahc->chip = AHC_AIC7850;
2078 ahc->features = AHC_AIC7850_FE;
2079 ahc->bugs |= AHC_TMODE_WIDEODD_BUG|AHC_CACHETHEN_BUG|AHC_PCI_MWI_BUG;
2080 rev = ahc_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
2081 if (rev >= 1)
2082 ahc->bugs |= AHC_PCI_2_1_RETRY_BUG;
2083 ahc->instruction_ram_size = 512;
2084 return (0);
2087 static int
2088 ahc_aic7860_setup(struct ahc_softc *ahc)
2090 ahc_dev_softc_t pci;
2091 uint8_t rev;
2093 pci = ahc->dev_softc;
2094 ahc->channel = 'A';
2095 ahc->chip = AHC_AIC7860;
2096 ahc->features = AHC_AIC7860_FE;
2097 ahc->bugs |= AHC_TMODE_WIDEODD_BUG|AHC_CACHETHEN_BUG|AHC_PCI_MWI_BUG;
2098 rev = ahc_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
2099 if (rev >= 1)
2100 ahc->bugs |= AHC_PCI_2_1_RETRY_BUG;
2101 ahc->instruction_ram_size = 512;
2102 return (0);
2105 static int
2106 ahc_apa1480_setup(struct ahc_softc *ahc)
2108 int error;
2110 error = ahc_aic7860_setup(ahc);
2111 if (error != 0)
2112 return (error);
2113 ahc->features |= AHC_REMOVABLE;
2114 return (0);
2117 static int
2118 ahc_aic7870_setup(struct ahc_softc *ahc)
2121 ahc->channel = 'A';
2122 ahc->chip = AHC_AIC7870;
2123 ahc->features = AHC_AIC7870_FE;
2124 ahc->bugs |= AHC_TMODE_WIDEODD_BUG|AHC_CACHETHEN_BUG|AHC_PCI_MWI_BUG;
2125 ahc->instruction_ram_size = 512;
2126 return (0);
2129 static int
2130 ahc_aic7870h_setup(struct ahc_softc *ahc)
2132 int error = ahc_aic7870_setup(ahc);
2134 ahc->features |= AHC_HVD;
2136 return error;
2139 static int
2140 ahc_aha394X_setup(struct ahc_softc *ahc)
2142 int error;
2144 error = ahc_aic7870_setup(ahc);
2145 if (error == 0)
2146 error = ahc_aha394XX_setup(ahc);
2147 return (error);
2150 static int
2151 ahc_aha394Xh_setup(struct ahc_softc *ahc)
2153 int error = ahc_aha394X_setup(ahc);
2155 ahc->features |= AHC_HVD;
2157 return error;
2160 static int
2161 ahc_aha398X_setup(struct ahc_softc *ahc)
2163 int error;
2165 error = ahc_aic7870_setup(ahc);
2166 if (error == 0)
2167 error = ahc_aha398XX_setup(ahc);
2168 return (error);
2171 static int
2172 ahc_aha494X_setup(struct ahc_softc *ahc)
2174 int error;
2176 error = ahc_aic7870_setup(ahc);
2177 if (error == 0)
2178 error = ahc_aha494XX_setup(ahc);
2179 return (error);
2182 static int
2183 ahc_aha494Xh_setup(struct ahc_softc *ahc)
2185 int error = ahc_aha494X_setup(ahc);
2187 ahc->features |= AHC_HVD;
2189 return error;
2192 static int
2193 ahc_aic7880_setup(struct ahc_softc *ahc)
2195 ahc_dev_softc_t pci;
2196 uint8_t rev;
2198 pci = ahc->dev_softc;
2199 ahc->channel = 'A';
2200 ahc->chip = AHC_AIC7880;
2201 ahc->features = AHC_AIC7880_FE;
2202 ahc->bugs |= AHC_TMODE_WIDEODD_BUG;
2203 rev = ahc_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
2204 if (rev >= 1) {
2205 ahc->bugs |= AHC_PCI_2_1_RETRY_BUG;
2206 } else {
2207 ahc->bugs |= AHC_CACHETHEN_BUG|AHC_PCI_MWI_BUG;
2209 ahc->instruction_ram_size = 512;
2210 return (0);
2213 static int
2214 ahc_aic7880h_setup(struct ahc_softc *ahc)
2216 int error = ahc_aic7880_setup(ahc);
2218 ahc->features |= AHC_HVD;
2220 return error;
2224 static int
2225 ahc_aha2940Pro_setup(struct ahc_softc *ahc)
2228 ahc->flags |= AHC_INT50_SPEEDFLEX;
2229 return (ahc_aic7880_setup(ahc));
2232 static int
2233 ahc_aha394XU_setup(struct ahc_softc *ahc)
2235 int error;
2237 error = ahc_aic7880_setup(ahc);
2238 if (error == 0)
2239 error = ahc_aha394XX_setup(ahc);
2240 return (error);
2243 static int
2244 ahc_aha394XUh_setup(struct ahc_softc *ahc)
2246 int error = ahc_aha394XU_setup(ahc);
2248 ahc->features |= AHC_HVD;
2250 return error;
2253 static int
2254 ahc_aha398XU_setup(struct ahc_softc *ahc)
2256 int error;
2258 error = ahc_aic7880_setup(ahc);
2259 if (error == 0)
2260 error = ahc_aha398XX_setup(ahc);
2261 return (error);
2264 static int
2265 ahc_aic7890_setup(struct ahc_softc *ahc)
2267 ahc_dev_softc_t pci;
2268 uint8_t rev;
2270 pci = ahc->dev_softc;
2271 ahc->channel = 'A';
2272 ahc->chip = AHC_AIC7890;
2273 ahc->features = AHC_AIC7890_FE;
2274 ahc->flags |= AHC_NEWEEPROM_FMT;
2275 rev = ahc_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
2276 if (rev == 0)
2277 ahc->bugs |= AHC_AUTOFLUSH_BUG|AHC_CACHETHEN_BUG;
2278 ahc->instruction_ram_size = 768;
2279 return (0);
2282 static int
2283 ahc_aic7892_setup(struct ahc_softc *ahc)
2286 ahc->channel = 'A';
2287 ahc->chip = AHC_AIC7892;
2288 ahc->features = AHC_AIC7892_FE;
2289 ahc->flags |= AHC_NEWEEPROM_FMT;
2290 ahc->bugs |= AHC_SCBCHAN_UPLOAD_BUG;
2291 ahc->instruction_ram_size = 1024;
2292 return (0);
2295 static int
2296 ahc_aic7895_setup(struct ahc_softc *ahc)
2298 ahc_dev_softc_t pci;
2299 uint8_t rev;
2301 pci = ahc->dev_softc;
2302 ahc->channel = ahc_get_pci_function(pci) == 1 ? 'B' : 'A';
2304 * The 'C' revision of the aic7895 has a few additional features.
2306 rev = ahc_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
2307 if (rev >= 4) {
2308 ahc->chip = AHC_AIC7895C;
2309 ahc->features = AHC_AIC7895C_FE;
2310 } else {
2311 u_int command;
2313 ahc->chip = AHC_AIC7895;
2314 ahc->features = AHC_AIC7895_FE;
2317 * The BIOS disables the use of MWI transactions
2318 * since it does not have the MWI bug work around
2319 * we have. Disabling MWI reduces performance, so
2320 * turn it on again.
2322 command = ahc_pci_read_config(pci, PCIR_COMMAND, /*bytes*/1);
2323 command |= PCIM_CMD_MWRICEN;
2324 ahc_pci_write_config(pci, PCIR_COMMAND, command, /*bytes*/1);
2325 ahc->bugs |= AHC_PCI_MWI_BUG;
2328 * XXX Does CACHETHEN really not work??? What about PCI retry?
2329 * on C level chips. Need to test, but for now, play it safe.
2331 ahc->bugs |= AHC_TMODE_WIDEODD_BUG|AHC_PCI_2_1_RETRY_BUG
2332 | AHC_CACHETHEN_BUG;
2334 #if 0
2335 uint32_t devconfig;
2338 * Cachesize must also be zero due to stray DAC
2339 * problem when sitting behind some bridges.
2341 ahc_pci_write_config(pci, CSIZE_LATTIME, 0, /*bytes*/1);
2342 devconfig = ahc_pci_read_config(pci, DEVCONFIG, /*bytes*/1);
2343 devconfig |= MRDCEN;
2344 ahc_pci_write_config(pci, DEVCONFIG, devconfig, /*bytes*/1);
2345 #endif
2346 ahc->flags |= AHC_NEWEEPROM_FMT;
2347 ahc->instruction_ram_size = 512;
2348 return (0);
2351 static int
2352 ahc_aic7895h_setup(struct ahc_softc *ahc)
2354 int error = ahc_aic7895_setup(ahc);
2356 ahc->features |= AHC_HVD;
2358 return error;
2361 static int
2362 ahc_aic7896_setup(struct ahc_softc *ahc)
2364 ahc_dev_softc_t pci;
2366 pci = ahc->dev_softc;
2367 ahc->channel = ahc_get_pci_function(pci) == 1 ? 'B' : 'A';
2368 ahc->chip = AHC_AIC7896;
2369 ahc->features = AHC_AIC7896_FE;
2370 ahc->flags |= AHC_NEWEEPROM_FMT;
2371 ahc->bugs |= AHC_CACHETHEN_DIS_BUG;
2372 ahc->instruction_ram_size = 768;
2373 return (0);
2376 static int
2377 ahc_aic7899_setup(struct ahc_softc *ahc)
2379 ahc_dev_softc_t pci;
2381 pci = ahc->dev_softc;
2382 ahc->channel = ahc_get_pci_function(pci) == 1 ? 'B' : 'A';
2383 ahc->chip = AHC_AIC7899;
2384 ahc->features = AHC_AIC7899_FE;
2385 ahc->flags |= AHC_NEWEEPROM_FMT;
2386 ahc->bugs |= AHC_SCBCHAN_UPLOAD_BUG;
2387 ahc->instruction_ram_size = 1024;
2388 return (0);
2391 static int
2392 ahc_aha29160C_setup(struct ahc_softc *ahc)
2394 int error;
2396 error = ahc_aic7899_setup(ahc);
2397 if (error != 0)
2398 return (error);
2399 ahc->features |= AHC_REMOVABLE;
2400 return (0);
2403 static int
2404 ahc_raid_setup(struct ahc_softc *ahc)
2406 printf("RAID functionality unsupported\n");
2407 return (ENXIO);
2410 static int
2411 ahc_aha394XX_setup(struct ahc_softc *ahc)
2413 ahc_dev_softc_t pci;
2415 pci = ahc->dev_softc;
2416 switch (ahc_get_pci_slot(pci)) {
2417 case AHC_394X_SLOT_CHANNEL_A:
2418 ahc->channel = 'A';
2419 break;
2420 case AHC_394X_SLOT_CHANNEL_B:
2421 ahc->channel = 'B';
2422 break;
2423 default:
2424 printf("adapter at unexpected slot %d\n"
2425 "unable to map to a channel\n",
2426 ahc_get_pci_slot(pci));
2427 ahc->channel = 'A';
2429 return (0);
2432 static int
2433 ahc_aha398XX_setup(struct ahc_softc *ahc)
2435 ahc_dev_softc_t pci;
2437 pci = ahc->dev_softc;
2438 switch (ahc_get_pci_slot(pci)) {
2439 case AHC_398X_SLOT_CHANNEL_A:
2440 ahc->channel = 'A';
2441 break;
2442 case AHC_398X_SLOT_CHANNEL_B:
2443 ahc->channel = 'B';
2444 break;
2445 case AHC_398X_SLOT_CHANNEL_C:
2446 ahc->channel = 'C';
2447 break;
2448 default:
2449 printf("adapter at unexpected slot %d\n"
2450 "unable to map to a channel\n",
2451 ahc_get_pci_slot(pci));
2452 ahc->channel = 'A';
2453 break;
2455 ahc->flags |= AHC_LARGE_SEEPROM;
2456 return (0);
2459 static int
2460 ahc_aha494XX_setup(struct ahc_softc *ahc)
2462 ahc_dev_softc_t pci;
2464 pci = ahc->dev_softc;
2465 switch (ahc_get_pci_slot(pci)) {
2466 case AHC_494X_SLOT_CHANNEL_A:
2467 ahc->channel = 'A';
2468 break;
2469 case AHC_494X_SLOT_CHANNEL_B:
2470 ahc->channel = 'B';
2471 break;
2472 case AHC_494X_SLOT_CHANNEL_C:
2473 ahc->channel = 'C';
2474 break;
2475 case AHC_494X_SLOT_CHANNEL_D:
2476 ahc->channel = 'D';
2477 break;
2478 default:
2479 printf("adapter at unexpected slot %d\n"
2480 "unable to map to a channel\n",
2481 ahc_get_pci_slot(pci));
2482 ahc->channel = 'A';
2484 ahc->flags |= AHC_LARGE_SEEPROM;
2485 return (0);