blob: 2131db60018a3242592344d69b6b794233b041a1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Product specific probe and attach routines for:
3 * aic7901 and aic7902 SCSI controllers
4 *
5 * Copyright (c) 1994-2001 Justin T. Gibbs.
6 * Copyright (c) 2000-2002 Adaptec Inc.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
16 * substantially similar to the "NO WARRANTY" disclaimer below
17 * ("Disclaimer") and any redistribution must be conditioned upon
18 * including a substantially similar Disclaimer requirement for further
19 * binary redistribution.
20 * 3. Neither the names of the above-listed copyright holders nor the names
21 * of any contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * Alternatively, this software may be distributed under the terms of the
25 * GNU General Public License ("GPL") version 2 as published by the Free
26 * Software Foundation.
27 *
28 * NO WARRANTY
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
37 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
38 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 * POSSIBILITY OF SUCH DAMAGES.
40 *
41 * $Id: //depot/aic7xxx/aic7xxx/aic79xx_pci.c#77 $
42 *
43 * $FreeBSD$
44 */
45
46#ifdef __linux__
47#include "aic79xx_osm.h"
48#include "aic79xx_inline.h"
49#else
50#include <dev/aic7xxx/aic79xx_osm.h>
51#include <dev/aic7xxx/aic79xx_inline.h>
52#endif
53
54#include "aic79xx_pci.h"
55
56static __inline uint64_t
57ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor)
58{
59 uint64_t id;
60
61 id = subvendor
62 | (subdevice << 16)
63 | ((uint64_t)vendor << 32)
64 | ((uint64_t)device << 48);
65
66 return (id);
67}
68
69#define ID_AIC7902_PCI_REV_A4 0x3
70#define ID_AIC7902_PCI_REV_B0 0x10
71#define SUBID_HP 0x0E11
72
73#define DEVID_9005_HOSTRAID(id) ((id) & 0x80)
74
75#define DEVID_9005_TYPE(id) ((id) & 0xF)
76#define DEVID_9005_TYPE_HBA 0x0 /* Standard Card */
77#define DEVID_9005_TYPE_HBA_2EXT 0x1 /* 2 External Ports */
78#define DEVID_9005_TYPE_IROC 0x8 /* Raid(0,1,10) Card */
79#define DEVID_9005_TYPE_MB 0xF /* On Motherboard */
80
81#define DEVID_9005_MFUNC(id) ((id) & 0x10)
82
83#define DEVID_9005_PACKETIZED(id) ((id) & 0x8000)
84
85#define SUBID_9005_TYPE(id) ((id) & 0xF)
86#define SUBID_9005_TYPE_HBA 0x0 /* Standard Card */
87#define SUBID_9005_TYPE_MB 0xF /* On Motherboard */
88
89#define SUBID_9005_AUTOTERM(id) (((id) & 0x10) == 0)
90
91#define SUBID_9005_LEGACYCONN_FUNC(id) ((id) & 0x20)
92
93#define SUBID_9005_SEEPTYPE(id) ((id) & 0x0C0) >> 6)
94#define SUBID_9005_SEEPTYPE_NONE 0x0
95#define SUBID_9005_SEEPTYPE_4K 0x1
96
97static ahd_device_setup_t ahd_aic7901_setup;
98static ahd_device_setup_t ahd_aic7901A_setup;
99static ahd_device_setup_t ahd_aic7902_setup;
100static ahd_device_setup_t ahd_aic790X_setup;
101
102struct ahd_pci_identity ahd_pci_ident_table [] =
103{
104 /* aic7901 based controllers */
105 {
106 ID_AHA_29320A,
107 ID_ALL_MASK,
108 "Adaptec 29320A Ultra320 SCSI adapter",
109 ahd_aic7901_setup
110 },
111 {
112 ID_AHA_29320ALP,
113 ID_ALL_MASK,
114 "Adaptec 29320ALP Ultra320 SCSI adapter",
115 ahd_aic7901_setup
116 },
117 /* aic7902 based controllers */
118 {
119 ID_AHA_29320,
120 ID_ALL_MASK,
121 "Adaptec 29320 Ultra320 SCSI adapter",
122 ahd_aic7902_setup
123 },
124 {
125 ID_AHA_29320B,
126 ID_ALL_MASK,
127 "Adaptec 29320B Ultra320 SCSI adapter",
128 ahd_aic7902_setup
129 },
130 {
131 ID_AHA_29320LP,
132 ID_ALL_MASK,
133 "Adaptec 29320LP Ultra320 SCSI adapter",
134 ahd_aic7901A_setup
135 },
136 {
137 ID_AHA_39320,
138 ID_ALL_MASK,
139 "Adaptec 39320 Ultra320 SCSI adapter",
140 ahd_aic7902_setup
141 },
142 {
143 ID_AHA_39320_B,
144 ID_ALL_MASK,
145 "Adaptec 39320 Ultra320 SCSI adapter",
146 ahd_aic7902_setup
147 },
148 {
149 ID_AHA_39320A,
150 ID_ALL_MASK,
151 "Adaptec 39320A Ultra320 SCSI adapter",
152 ahd_aic7902_setup
153 },
154 {
155 ID_AHA_39320D,
156 ID_ALL_MASK,
157 "Adaptec 39320D Ultra320 SCSI adapter",
158 ahd_aic7902_setup
159 },
160 {
161 ID_AHA_39320D_HP,
162 ID_ALL_MASK,
163 "Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
164 ahd_aic7902_setup
165 },
166 {
167 ID_AHA_39320D_B,
168 ID_ALL_MASK,
169 "Adaptec 39320D Ultra320 SCSI adapter",
170 ahd_aic7902_setup
171 },
172 {
173 ID_AHA_39320D_B_HP,
174 ID_ALL_MASK,
175 "Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
176 ahd_aic7902_setup
177 },
178 /* Generic chip probes for devices we don't know 'exactly' */
179 {
180 ID_AIC7901 & ID_9005_GENERIC_MASK,
181 ID_9005_GENERIC_MASK,
182 "Adaptec AIC7901 Ultra320 SCSI adapter",
183 ahd_aic7901_setup
184 },
185 {
186 ID_AIC7901A & ID_DEV_VENDOR_MASK,
187 ID_DEV_VENDOR_MASK,
188 "Adaptec AIC7901A Ultra320 SCSI adapter",
189 ahd_aic7901A_setup
190 },
191 {
192 ID_AIC7902 & ID_9005_GENERIC_MASK,
193 ID_9005_GENERIC_MASK,
194 "Adaptec AIC7902 Ultra320 SCSI adapter",
195 ahd_aic7902_setup
196 }
197};
198
199const u_int ahd_num_pci_devs = NUM_ELEMENTS(ahd_pci_ident_table);
200
201#define DEVCONFIG 0x40
202#define PCIXINITPAT 0x0000E000ul
203#define PCIXINIT_PCI33_66 0x0000E000ul
204#define PCIXINIT_PCIX50_66 0x0000C000ul
205#define PCIXINIT_PCIX66_100 0x0000A000ul
206#define PCIXINIT_PCIX100_133 0x00008000ul
207#define PCI_BUS_MODES_INDEX(devconfig) \
208 (((devconfig) & PCIXINITPAT) >> 13)
209static const char *pci_bus_modes[] =
210{
211 "PCI bus mode unknown",
212 "PCI bus mode unknown",
213 "PCI bus mode unknown",
214 "PCI bus mode unknown",
215 "PCI-X 101-133Mhz",
216 "PCI-X 67-100Mhz",
217 "PCI-X 50-66Mhz",
218 "PCI 33 or 66Mhz"
219};
220
221#define TESTMODE 0x00000800ul
222#define IRDY_RST 0x00000200ul
223#define FRAME_RST 0x00000100ul
224#define PCI64BIT 0x00000080ul
225#define MRDCEN 0x00000040ul
226#define ENDIANSEL 0x00000020ul
227#define MIXQWENDIANEN 0x00000008ul
228#define DACEN 0x00000004ul
229#define STPWLEVEL 0x00000002ul
230#define QWENDIANSEL 0x00000001ul
231
232#define DEVCONFIG1 0x44
233#define PREQDIS 0x01
234
235#define CSIZE_LATTIME 0x0c
236#define CACHESIZE 0x000000fful
237#define LATTIME 0x0000ff00ul
238
239static int ahd_check_extport(struct ahd_softc *ahd);
240static void ahd_configure_termination(struct ahd_softc *ahd,
241 u_int adapter_control);
242static void ahd_pci_split_intr(struct ahd_softc *ahd, u_int intstat);
243
244struct ahd_pci_identity *
245ahd_find_pci_device(ahd_dev_softc_t pci)
246{
247 uint64_t full_id;
248 uint16_t device;
249 uint16_t vendor;
250 uint16_t subdevice;
251 uint16_t subvendor;
252 struct ahd_pci_identity *entry;
253 u_int i;
254
255 vendor = ahd_pci_read_config(pci, PCIR_DEVVENDOR, /*bytes*/2);
256 device = ahd_pci_read_config(pci, PCIR_DEVICE, /*bytes*/2);
257 subvendor = ahd_pci_read_config(pci, PCIR_SUBVEND_0, /*bytes*/2);
258 subdevice = ahd_pci_read_config(pci, PCIR_SUBDEV_0, /*bytes*/2);
259 full_id = ahd_compose_id(device,
260 vendor,
261 subdevice,
262 subvendor);
263
264 /*
265 * Controllers, mask out the IROC/HostRAID bit
266 */
267
268 full_id &= ID_ALL_IROC_MASK;
269
270 for (i = 0; i < ahd_num_pci_devs; i++) {
271 entry = &ahd_pci_ident_table[i];
272 if (entry->full_id == (full_id & entry->id_mask)) {
273 /* Honor exclusion entries. */
274 if (entry->name == NULL)
275 return (NULL);
276 return (entry);
277 }
278 }
279 return (NULL);
280}
281
282int
283ahd_pci_config(struct ahd_softc *ahd, struct ahd_pci_identity *entry)
284{
285 struct scb_data *shared_scb_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 u_int command;
287 uint32_t devconfig;
288 uint16_t subvendor;
289 int error;
290
291 shared_scb_data = NULL;
292 ahd->description = entry->name;
293 /*
294 * Record if this is an HP board.
295 */
296 subvendor = ahd_pci_read_config(ahd->dev_softc,
297 PCIR_SUBVEND_0, /*bytes*/2);
298 if (subvendor == SUBID_HP)
299 ahd->flags |= AHD_HP_BOARD;
300
301 error = entry->setup(ahd);
302 if (error != 0)
303 return (error);
304
305 devconfig = ahd_pci_read_config(ahd->dev_softc, DEVCONFIG, /*bytes*/4);
306 if ((devconfig & PCIXINITPAT) == PCIXINIT_PCI33_66) {
307 ahd->chip |= AHD_PCI;
308 /* Disable PCIX workarounds when running in PCI mode. */
309 ahd->bugs &= ~AHD_PCIX_BUG_MASK;
310 } else {
311 ahd->chip |= AHD_PCIX;
312 }
313 ahd->bus_description = pci_bus_modes[PCI_BUS_MODES_INDEX(devconfig)];
314
315 ahd_power_state_change(ahd, AHD_POWER_STATE_D0);
316
317 error = ahd_pci_map_registers(ahd);
318 if (error != 0)
319 return (error);
320
321 /*
322 * If we need to support high memory, enable dual
323 * address cycles. This bit must be set to enable
324 * high address bit generation even if we are on a
325 * 64bit bus (PCI64BIT set in devconfig).
326 */
327 if ((ahd->flags & (AHD_39BIT_ADDRESSING|AHD_64BIT_ADDRESSING)) != 0) {
328 uint32_t devconfig;
329
330 if (bootverbose)
331 printf("%s: Enabling 39Bit Addressing\n",
332 ahd_name(ahd));
333 devconfig = ahd_pci_read_config(ahd->dev_softc,
334 DEVCONFIG, /*bytes*/4);
335 devconfig |= DACEN;
336 ahd_pci_write_config(ahd->dev_softc, DEVCONFIG,
337 devconfig, /*bytes*/4);
338 }
339
340 /* Ensure busmastering is enabled */
341 command = ahd_pci_read_config(ahd->dev_softc, PCIR_COMMAND, /*bytes*/2);
342 command |= PCIM_CMD_BUSMASTEREN;
343 ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND, command, /*bytes*/2);
344
345 error = ahd_softc_init(ahd);
346 if (error != 0)
347 return (error);
348
349 ahd->bus_intr = ahd_pci_intr;
350
351 error = ahd_reset(ahd, /*reinit*/FALSE);
352 if (error != 0)
353 return (ENXIO);
354
355 ahd->pci_cachesize =
356 ahd_pci_read_config(ahd->dev_softc, CSIZE_LATTIME,
357 /*bytes*/1) & CACHESIZE;
358 ahd->pci_cachesize *= 4;
359
360 ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
361 /* See if we have a SEEPROM and perform auto-term */
362 error = ahd_check_extport(ahd);
363 if (error != 0)
364 return (error);
365
366 /* Core initialization */
367 error = ahd_init(ahd);
368 if (error != 0)
369 return (error);
370
371 /*
372 * Allow interrupts now that we are completely setup.
373 */
374 error = ahd_pci_map_int(ahd);
Christoph Hellwig85a46522005-08-15 13:28:46 +0200375 if (!error)
376 ahd->init_level++;
377 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380/*
381 * Perform some simple tests that should catch situations where
382 * our registers are invalidly mapped.
383 */
384int
385ahd_pci_test_register_access(struct ahd_softc *ahd)
386{
387 uint32_t cmd;
388 u_int targpcistat;
389 u_int pci_status1;
390 int error;
391 uint8_t hcntrl;
392
393 error = EIO;
394
395 /*
396 * Enable PCI error interrupt status, but suppress NMIs
397 * generated by SERR raised due to target aborts.
398 */
399 cmd = ahd_pci_read_config(ahd->dev_softc, PCIR_COMMAND, /*bytes*/2);
400 ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND,
401 cmd & ~PCIM_CMD_SERRESPEN, /*bytes*/2);
402
403 /*
404 * First a simple test to see if any
405 * registers can be read. Reading
406 * HCNTRL has no side effects and has
407 * at least one bit that is guaranteed to
408 * be zero so it is a good register to
409 * use for this test.
410 */
411 hcntrl = ahd_inb(ahd, HCNTRL);
412 if (hcntrl == 0xFF)
413 goto fail;
414
415 /*
416 * Next create a situation where write combining
417 * or read prefetching could be initiated by the
418 * CPU or host bridge. Our device does not support
419 * either, so look for data corruption and/or flaged
420 * PCI errors. First pause without causing another
421 * chip reset.
422 */
423 hcntrl &= ~CHIPRST;
424 ahd_outb(ahd, HCNTRL, hcntrl|PAUSE);
425 while (ahd_is_paused(ahd) == 0)
426 ;
427
428 /* Clear any PCI errors that occurred before our driver attached. */
429 ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
430 targpcistat = ahd_inb(ahd, TARGPCISTAT);
431 ahd_outb(ahd, TARGPCISTAT, targpcistat);
432 pci_status1 = ahd_pci_read_config(ahd->dev_softc,
433 PCIR_STATUS + 1, /*bytes*/1);
434 ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
435 pci_status1, /*bytes*/1);
436 ahd_set_modes(ahd, AHD_MODE_SCSI, AHD_MODE_SCSI);
437 ahd_outb(ahd, CLRINT, CLRPCIINT);
438
439 ahd_outb(ahd, SEQCTL0, PERRORDIS);
440 ahd_outl(ahd, SRAM_BASE, 0x5aa555aa);
441 if (ahd_inl(ahd, SRAM_BASE) != 0x5aa555aa)
442 goto fail;
443
444 if ((ahd_inb(ahd, INTSTAT) & PCIINT) != 0) {
445 u_int targpcistat;
446
447 ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
448 targpcistat = ahd_inb(ahd, TARGPCISTAT);
449 if ((targpcistat & STA) != 0)
450 goto fail;
451 }
452
453 error = 0;
454
455fail:
456 if ((ahd_inb(ahd, INTSTAT) & PCIINT) != 0) {
457
458 ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
459 targpcistat = ahd_inb(ahd, TARGPCISTAT);
460
461 /* Silently clear any latched errors. */
462 ahd_outb(ahd, TARGPCISTAT, targpcistat);
463 pci_status1 = ahd_pci_read_config(ahd->dev_softc,
464 PCIR_STATUS + 1, /*bytes*/1);
465 ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
466 pci_status1, /*bytes*/1);
467 ahd_outb(ahd, CLRINT, CLRPCIINT);
468 }
469 ahd_outb(ahd, SEQCTL0, PERRORDIS|FAILDIS);
470 ahd_pci_write_config(ahd->dev_softc, PCIR_COMMAND, cmd, /*bytes*/2);
471 return (error);
472}
473
474/*
475 * Check the external port logic for a serial eeprom
476 * and termination/cable detection contrls.
477 */
478static int
479ahd_check_extport(struct ahd_softc *ahd)
480{
481 struct vpd_config vpd;
482 struct seeprom_config *sc;
483 u_int adapter_control;
484 int have_seeprom;
485 int error;
486
487 sc = ahd->seep_config;
488 have_seeprom = ahd_acquire_seeprom(ahd);
489 if (have_seeprom) {
490 u_int start_addr;
491
492 /*
493 * Fetch VPD for this function and parse it.
494 */
495 if (bootverbose)
496 printf("%s: Reading VPD from SEEPROM...",
497 ahd_name(ahd));
498
499 /* Address is always in units of 16bit words */
500 start_addr = ((2 * sizeof(*sc))
501 + (sizeof(vpd) * (ahd->channel - 'A'))) / 2;
502
503 error = ahd_read_seeprom(ahd, (uint16_t *)&vpd,
504 start_addr, sizeof(vpd)/2,
505 /*bytestream*/TRUE);
506 if (error == 0)
507 error = ahd_parse_vpddata(ahd, &vpd);
508 if (bootverbose)
509 printf("%s: VPD parsing %s\n",
510 ahd_name(ahd),
511 error == 0 ? "successful" : "failed");
512
513 if (bootverbose)
514 printf("%s: Reading SEEPROM...", ahd_name(ahd));
515
516 /* Address is always in units of 16bit words */
517 start_addr = (sizeof(*sc) / 2) * (ahd->channel - 'A');
518
519 error = ahd_read_seeprom(ahd, (uint16_t *)sc,
520 start_addr, sizeof(*sc)/2,
521 /*bytestream*/FALSE);
522
523 if (error != 0) {
524 printf("Unable to read SEEPROM\n");
525 have_seeprom = 0;
526 } else {
527 have_seeprom = ahd_verify_cksum(sc);
528
529 if (bootverbose) {
530 if (have_seeprom == 0)
531 printf ("checksum error\n");
532 else
533 printf ("done.\n");
534 }
535 }
536 ahd_release_seeprom(ahd);
537 }
538
539 if (!have_seeprom) {
540 u_int nvram_scb;
541
542 /*
543 * Pull scratch ram settings and treat them as
544 * if they are the contents of an seeprom if
545 * the 'ADPT', 'BIOS', or 'ASPI' signature is found
546 * in SCB 0xFF. We manually compose the data as 16bit
547 * values to avoid endian issues.
548 */
549 ahd_set_scbptr(ahd, 0xFF);
550 nvram_scb = ahd_inb_scbram(ahd, SCB_BASE + NVRAM_SCB_OFFSET);
551 if (nvram_scb != 0xFF
552 && ((ahd_inb_scbram(ahd, SCB_BASE + 0) == 'A'
553 && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'D'
554 && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'P'
555 && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'T')
556 || (ahd_inb_scbram(ahd, SCB_BASE + 0) == 'B'
557 && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'I'
558 && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'O'
559 && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'S')
560 || (ahd_inb_scbram(ahd, SCB_BASE + 0) == 'A'
561 && ahd_inb_scbram(ahd, SCB_BASE + 1) == 'S'
562 && ahd_inb_scbram(ahd, SCB_BASE + 2) == 'P'
563 && ahd_inb_scbram(ahd, SCB_BASE + 3) == 'I'))) {
564 uint16_t *sc_data;
565 int i;
566
567 ahd_set_scbptr(ahd, nvram_scb);
568 sc_data = (uint16_t *)sc;
569 for (i = 0; i < 64; i += 2)
570 *sc_data++ = ahd_inw_scbram(ahd, SCB_BASE+i);
571 have_seeprom = ahd_verify_cksum(sc);
572 if (have_seeprom)
573 ahd->flags |= AHD_SCB_CONFIG_USED;
574 }
575 }
576
Olaf Hering44456d32005-07-27 11:45:17 -0700577#ifdef AHD_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (have_seeprom != 0
579 && (ahd_debug & AHD_DUMP_SEEPROM) != 0) {
580 uint16_t *sc_data;
581 int i;
582
583 printf("%s: Seeprom Contents:", ahd_name(ahd));
584 sc_data = (uint16_t *)sc;
585 for (i = 0; i < (sizeof(*sc)); i += 2)
586 printf("\n\t0x%.4x", sc_data[i]);
587 printf("\n");
588 }
589#endif
590
591 if (!have_seeprom) {
592 if (bootverbose)
593 printf("%s: No SEEPROM available.\n", ahd_name(ahd));
594 ahd->flags |= AHD_USEDEFAULTS;
595 error = ahd_default_config(ahd);
596 adapter_control = CFAUTOTERM|CFSEAUTOTERM;
597 free(ahd->seep_config, M_DEVBUF);
598 ahd->seep_config = NULL;
599 } else {
600 error = ahd_parse_cfgdata(ahd, sc);
601 adapter_control = sc->adapter_control;
602 }
603 if (error != 0)
604 return (error);
605
606 ahd_configure_termination(ahd, adapter_control);
607
608 return (0);
609}
610
611static void
612ahd_configure_termination(struct ahd_softc *ahd, u_int adapter_control)
613{
614 int error;
615 u_int sxfrctl1;
616 uint8_t termctl;
617 uint32_t devconfig;
618
619 devconfig = ahd_pci_read_config(ahd->dev_softc, DEVCONFIG, /*bytes*/4);
620 devconfig &= ~STPWLEVEL;
621 if ((ahd->flags & AHD_STPWLEVEL_A) != 0)
622 devconfig |= STPWLEVEL;
623 if (bootverbose)
624 printf("%s: STPWLEVEL is %s\n",
625 ahd_name(ahd), (devconfig & STPWLEVEL) ? "on" : "off");
626 ahd_pci_write_config(ahd->dev_softc, DEVCONFIG, devconfig, /*bytes*/4);
627
628 /* Make sure current sensing is off. */
629 if ((ahd->flags & AHD_CURRENT_SENSING) != 0) {
630 (void)ahd_write_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL, 0);
631 }
632
633 /*
634 * Read to sense. Write to set.
635 */
636 error = ahd_read_flexport(ahd, FLXADDR_TERMCTL, &termctl);
637 if ((adapter_control & CFAUTOTERM) == 0) {
638 if (bootverbose)
639 printf("%s: Manual Primary Termination\n",
640 ahd_name(ahd));
641 termctl &= ~(FLX_TERMCTL_ENPRILOW|FLX_TERMCTL_ENPRIHIGH);
642 if ((adapter_control & CFSTERM) != 0)
643 termctl |= FLX_TERMCTL_ENPRILOW;
644 if ((adapter_control & CFWSTERM) != 0)
645 termctl |= FLX_TERMCTL_ENPRIHIGH;
646 } else if (error != 0) {
647 printf("%s: Primary Auto-Term Sensing failed! "
648 "Using Defaults.\n", ahd_name(ahd));
649 termctl = FLX_TERMCTL_ENPRILOW|FLX_TERMCTL_ENPRIHIGH;
650 }
651
652 if ((adapter_control & CFSEAUTOTERM) == 0) {
653 if (bootverbose)
654 printf("%s: Manual Secondary Termination\n",
655 ahd_name(ahd));
656 termctl &= ~(FLX_TERMCTL_ENSECLOW|FLX_TERMCTL_ENSECHIGH);
657 if ((adapter_control & CFSELOWTERM) != 0)
658 termctl |= FLX_TERMCTL_ENSECLOW;
659 if ((adapter_control & CFSEHIGHTERM) != 0)
660 termctl |= FLX_TERMCTL_ENSECHIGH;
661 } else if (error != 0) {
662 printf("%s: Secondary Auto-Term Sensing failed! "
663 "Using Defaults.\n", ahd_name(ahd));
664 termctl |= FLX_TERMCTL_ENSECLOW|FLX_TERMCTL_ENSECHIGH;
665 }
666
667 /*
668 * Now set the termination based on what we found.
669 */
670 sxfrctl1 = ahd_inb(ahd, SXFRCTL1) & ~STPWEN;
671 if ((termctl & FLX_TERMCTL_ENPRILOW) != 0) {
672 ahd->flags |= AHD_TERM_ENB_A;
673 sxfrctl1 |= STPWEN;
674 }
675 /* Must set the latch once in order to be effective. */
676 ahd_outb(ahd, SXFRCTL1, sxfrctl1|STPWEN);
677 ahd_outb(ahd, SXFRCTL1, sxfrctl1);
678
679 error = ahd_write_flexport(ahd, FLXADDR_TERMCTL, termctl);
680 if (error != 0) {
681 printf("%s: Unable to set termination settings!\n",
682 ahd_name(ahd));
683 } else if (bootverbose) {
684 printf("%s: Primary High byte termination %sabled\n",
685 ahd_name(ahd),
686 (termctl & FLX_TERMCTL_ENPRIHIGH) ? "En" : "Dis");
687
688 printf("%s: Primary Low byte termination %sabled\n",
689 ahd_name(ahd),
690 (termctl & FLX_TERMCTL_ENPRILOW) ? "En" : "Dis");
691
692 printf("%s: Secondary High byte termination %sabled\n",
693 ahd_name(ahd),
694 (termctl & FLX_TERMCTL_ENSECHIGH) ? "En" : "Dis");
695
696 printf("%s: Secondary Low byte termination %sabled\n",
697 ahd_name(ahd),
698 (termctl & FLX_TERMCTL_ENSECLOW) ? "En" : "Dis");
699 }
700 return;
701}
702
703#define DPE 0x80
704#define SSE 0x40
705#define RMA 0x20
706#define RTA 0x10
707#define STA 0x08
708#define DPR 0x01
709
710static const char *split_status_source[] =
711{
712 "DFF0",
713 "DFF1",
714 "OVLY",
715 "CMC",
716};
717
718static const char *pci_status_source[] =
719{
720 "DFF0",
721 "DFF1",
722 "SG",
723 "CMC",
724 "OVLY",
725 "NONE",
726 "MSI",
727 "TARG"
728};
729
730static const char *split_status_strings[] =
731{
732 "%s: Received split response in %s.\n",
733 "%s: Received split completion error message in %s\n",
734 "%s: Receive overrun in %s\n",
735 "%s: Count not complete in %s\n",
736 "%s: Split completion data bucket in %s\n",
737 "%s: Split completion address error in %s\n",
738 "%s: Split completion byte count error in %s\n",
739 "%s: Signaled Target-abort to early terminate a split in %s\n"
740};
741
742static const char *pci_status_strings[] =
743{
744 "%s: Data Parity Error has been reported via PERR# in %s\n",
745 "%s: Target initial wait state error in %s\n",
746 "%s: Split completion read data parity error in %s\n",
747 "%s: Split completion address attribute parity error in %s\n",
748 "%s: Received a Target Abort in %s\n",
749 "%s: Received a Master Abort in %s\n",
750 "%s: Signal System Error Detected in %s\n",
751 "%s: Address or Write Phase Parity Error Detected in %s.\n"
752};
753
754void
755ahd_pci_intr(struct ahd_softc *ahd)
756{
757 uint8_t pci_status[8];
758 ahd_mode_state saved_modes;
759 u_int pci_status1;
760 u_int intstat;
761 u_int i;
762 u_int reg;
763
764 intstat = ahd_inb(ahd, INTSTAT);
765
766 if ((intstat & SPLTINT) != 0)
767 ahd_pci_split_intr(ahd, intstat);
768
769 if ((intstat & PCIINT) == 0)
770 return;
771
772 printf("%s: PCI error Interrupt\n", ahd_name(ahd));
773 saved_modes = ahd_save_modes(ahd);
774 ahd_dump_card_state(ahd);
775 ahd_set_modes(ahd, AHD_MODE_CFG, AHD_MODE_CFG);
776 for (i = 0, reg = DF0PCISTAT; i < 8; i++, reg++) {
777
778 if (i == 5)
779 continue;
780 pci_status[i] = ahd_inb(ahd, reg);
781 /* Clear latched errors. So our interrupt deasserts. */
782 ahd_outb(ahd, reg, pci_status[i]);
783 }
784
785 for (i = 0; i < 8; i++) {
786 u_int bit;
787
788 if (i == 5)
789 continue;
790
791 for (bit = 0; bit < 8; bit++) {
792
793 if ((pci_status[i] & (0x1 << bit)) != 0) {
794 static const char *s;
795
796 s = pci_status_strings[bit];
797 if (i == 7/*TARG*/ && bit == 3)
798 s = "%s: Signaled Target Abort\n";
799 printf(s, ahd_name(ahd), pci_status_source[i]);
800 }
801 }
802 }
803 pci_status1 = ahd_pci_read_config(ahd->dev_softc,
804 PCIR_STATUS + 1, /*bytes*/1);
805 ahd_pci_write_config(ahd->dev_softc, PCIR_STATUS + 1,
806 pci_status1, /*bytes*/1);
807 ahd_restore_modes(ahd, saved_modes);
808 ahd_outb(ahd, CLRINT, CLRPCIINT);
809 ahd_unpause(ahd);
810}
811
812static void
813ahd_pci_split_intr(struct ahd_softc *ahd, u_int intstat)
814{
815 uint8_t split_status[4];
816 uint8_t split_status1[4];
817 uint8_t sg_split_status[2];
818 uint8_t sg_split_status1[2];
819 ahd_mode_state saved_modes;
820 u_int i;
821 uint16_t pcix_status;
822
823 /*
824 * Check for splits in all modes. Modes 0 and 1
825 * additionally have SG engine splits to look at.
826 */
827 pcix_status = ahd_pci_read_config(ahd->dev_softc, PCIXR_STATUS,
828 /*bytes*/2);
829 printf("%s: PCI Split Interrupt - PCI-X status = 0x%x\n",
830 ahd_name(ahd), pcix_status);
831 saved_modes = ahd_save_modes(ahd);
832 for (i = 0; i < 4; i++) {
833 ahd_set_modes(ahd, i, i);
834
835 split_status[i] = ahd_inb(ahd, DCHSPLTSTAT0);
836 split_status1[i] = ahd_inb(ahd, DCHSPLTSTAT1);
837 /* Clear latched errors. So our interrupt deasserts. */
838 ahd_outb(ahd, DCHSPLTSTAT0, split_status[i]);
839 ahd_outb(ahd, DCHSPLTSTAT1, split_status1[i]);
840 if (i > 1)
841 continue;
842 sg_split_status[i] = ahd_inb(ahd, SGSPLTSTAT0);
843 sg_split_status1[i] = ahd_inb(ahd, SGSPLTSTAT1);
844 /* Clear latched errors. So our interrupt deasserts. */
845 ahd_outb(ahd, SGSPLTSTAT0, sg_split_status[i]);
846 ahd_outb(ahd, SGSPLTSTAT1, sg_split_status1[i]);
847 }
848
849 for (i = 0; i < 4; i++) {
850 u_int bit;
851
852 for (bit = 0; bit < 8; bit++) {
853
854 if ((split_status[i] & (0x1 << bit)) != 0) {
855 static const char *s;
856
857 s = split_status_strings[bit];
858 printf(s, ahd_name(ahd),
859 split_status_source[i]);
860 }
861
862 if (i > 1)
863 continue;
864
865 if ((sg_split_status[i] & (0x1 << bit)) != 0) {
866 static const char *s;
867
868 s = split_status_strings[bit];
869 printf(s, ahd_name(ahd), "SG");
870 }
871 }
872 }
873 /*
874 * Clear PCI-X status bits.
875 */
876 ahd_pci_write_config(ahd->dev_softc, PCIXR_STATUS,
877 pcix_status, /*bytes*/2);
878 ahd_outb(ahd, CLRINT, CLRSPLTINT);
879 ahd_restore_modes(ahd, saved_modes);
880}
881
882static int
883ahd_aic7901_setup(struct ahd_softc *ahd)
884{
885
886 ahd->chip = AHD_AIC7901;
887 ahd->features = AHD_AIC7901_FE;
888 return (ahd_aic790X_setup(ahd));
889}
890
891static int
892ahd_aic7901A_setup(struct ahd_softc *ahd)
893{
894
895 ahd->chip = AHD_AIC7901A;
896 ahd->features = AHD_AIC7901A_FE;
897 return (ahd_aic790X_setup(ahd));
898}
899
900static int
901ahd_aic7902_setup(struct ahd_softc *ahd)
902{
903 ahd->chip = AHD_AIC7902;
904 ahd->features = AHD_AIC7902_FE;
905 return (ahd_aic790X_setup(ahd));
906}
907
908static int
909ahd_aic790X_setup(struct ahd_softc *ahd)
910{
911 ahd_dev_softc_t pci;
912 u_int rev;
913
914 pci = ahd->dev_softc;
915 rev = ahd_pci_read_config(pci, PCIR_REVID, /*bytes*/1);
916 if (rev < ID_AIC7902_PCI_REV_A4) {
917 printf("%s: Unable to attach to unsupported chip revision %d\n",
918 ahd_name(ahd), rev);
919 ahd_pci_write_config(pci, PCIR_COMMAND, 0, /*bytes*/2);
920 return (ENXIO);
921 }
922 ahd->channel = ahd_get_pci_function(pci) + 'A';
923 if (rev < ID_AIC7902_PCI_REV_B0) {
924 /*
925 * Enable A series workarounds.
926 */
927 ahd->bugs |= AHD_SENT_SCB_UPDATE_BUG|AHD_ABORT_LQI_BUG
928 | AHD_PKT_BITBUCKET_BUG|AHD_LONG_SETIMO_BUG
929 | AHD_NLQICRC_DELAYED_BUG|AHD_SCSIRST_BUG
930 | AHD_LQO_ATNO_BUG|AHD_AUTOFLUSH_BUG
931 | AHD_CLRLQO_AUTOCLR_BUG|AHD_PCIX_MMAPIO_BUG
932 | AHD_PCIX_CHIPRST_BUG|AHD_PCIX_SCBRAM_RD_BUG
933 | AHD_PKTIZED_STATUS_BUG|AHD_PKT_LUN_BUG
934 | AHD_MDFF_WSCBPTR_BUG|AHD_REG_SLOW_SETTLE_BUG
935 | AHD_SET_MODE_BUG|AHD_BUSFREEREV_BUG
936 | AHD_NONPACKFIFO_BUG|AHD_PACED_NEGTABLE_BUG
937 | AHD_FAINT_LED_BUG;
938
939 /*
940 * IO Cell paramter setup.
941 */
942 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
943
944 if ((ahd->flags & AHD_HP_BOARD) == 0)
945 AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVA);
946 } else {
947 u_int devconfig1;
948
949 ahd->features |= AHD_RTI|AHD_NEW_IOCELL_OPTS
950 | AHD_NEW_DFCNTRL_OPTS|AHD_FAST_CDB_DELIVERY;
951 ahd->bugs |= AHD_LQOOVERRUN_BUG|AHD_EARLY_REQ_BUG;
952
953 /*
954 * Some issues have been resolved in the 7901B.
955 */
956 if ((ahd->features & AHD_MULTI_FUNC) != 0)
957 ahd->bugs |= AHD_INTCOLLISION_BUG|AHD_ABORT_LQI_BUG;
958
959 /*
960 * IO Cell paramter setup.
961 */
962 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29);
963 AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVB);
964 AHD_SET_AMPLITUDE(ahd, AHD_AMPLITUDE_DEF);
965
966 /*
967 * Set the PREQDIS bit for H2B which disables some workaround
968 * that doesn't work on regular PCI busses.
969 * XXX - Find out exactly what this does from the hardware
970 * folks!
971 */
972 devconfig1 = ahd_pci_read_config(pci, DEVCONFIG1, /*bytes*/1);
973 ahd_pci_write_config(pci, DEVCONFIG1,
974 devconfig1|PREQDIS, /*bytes*/1);
975 devconfig1 = ahd_pci_read_config(pci, DEVCONFIG1, /*bytes*/1);
976 }
977
978 return (0);
979}