xref: /netbsd-src/sys/dev/pci/ahc_pci.c (revision 1394f01b4a9e99092957ca5d824d67219565d9b5)
1 /*	$NetBSD: ahc_pci.c,v 1.15 1997/05/08 04:39:03 thorpej Exp $	*/
2 
3 /*
4  * Product specific probe and attach routines for:
5  *      3940, 2940, aic7880, aic7870, aic7860 and aic7850 SCSI controllers
6  *
7  * Copyright (c) 1995, 1996 Justin T. Gibbs.
8  * All rights reserved.
9  *
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 immediately at the beginning of the file, without modification,
15  *    this list of conditions, and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
26  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * from	Id: aic7870.c,v 1.37 1996/06/08 06:55:55 gibbs Exp
35  */
36 
37 #if defined(__FreeBSD__)
38 #include <pci.h>
39 #endif
40 #if NPCI > 0 || defined(__NetBSD__)
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/malloc.h>
44 #include <sys/kernel.h>
45 #include <sys/queue.h>
46 #if defined(__NetBSD__)
47 #include <sys/device.h>
48 #include <machine/bus.h>
49 #include <machine/intr.h>
50 #endif /* defined(__NetBSD__) */
51 
52 #include <scsi/scsi_all.h>
53 #include <scsi/scsiconf.h>
54 
55 #if defined(__FreeBSD__)
56 
57 #include <pci/pcireg.h>
58 #include <pci/pcivar.h>
59 
60 #include <machine/clock.h>
61 
62 #include <i386/scsi/aic7xxx.h>
63 #include <i386/scsi/93cx6.h>
64 
65 #include <dev/aic7xxx/aic7xxx_reg.h>
66 
67 #define PCI_BASEADR0	PCI_MAP_REG_START
68 
69 #elif defined(__NetBSD__)
70 
71 #include <dev/pci/pcireg.h>
72 #include <dev/pci/pcivar.h>
73 
74 #include <dev/ic/aic7xxxreg.h>
75 #include <dev/ic/aic7xxxvar.h>
76 #include <dev/ic/smc93cx6var.h>
77 
78 /*
79  * Under normal circumstances, these messages are unnecessary
80  * and not terribly cosmetic.
81  */
82 #ifdef DEBUG
83 #define bootverbose	1
84 #else
85 #define bootverbose	0
86 #endif
87 
88 #define PCI_BASEADR_IO	0x10
89 #define PCI_BASEADR_MEM	0x14
90 
91 #endif /* defined(__NetBSD__) */
92 
93 #define PCI_DEVICE_ID_ADAPTEC_3940U	0x82789004ul
94 #define PCI_DEVICE_ID_ADAPTEC_2944U	0x84789004ul
95 #define PCI_DEVICE_ID_ADAPTEC_2940U	0x81789004ul
96 #define PCI_DEVICE_ID_ADAPTEC_2940AU	0x61789004ul
97 #define PCI_DEVICE_ID_ADAPTEC_3940	0x72789004ul
98 #define PCI_DEVICE_ID_ADAPTEC_2944	0x74789004ul
99 #define PCI_DEVICE_ID_ADAPTEC_2940	0x71789004ul
100 #define PCI_DEVICE_ID_ADAPTEC_AIC7880	0x80789004ul
101 #define PCI_DEVICE_ID_ADAPTEC_AIC7870	0x70789004ul
102 #define PCI_DEVICE_ID_ADAPTEC_AIC7860	0x60789004ul
103 #define PCI_DEVICE_ID_ADAPTEC_AIC7855	0x55789004ul
104 #define PCI_DEVICE_ID_ADAPTEC_AIC7850	0x50789004ul
105 
106 #define	DEVCONFIG		0x40
107 #define		MPORTMODE	0x00000400ul	/* aic7870 only */
108 #define		RAMPSM		0x00000200ul	/* aic7870 only */
109 #define		VOLSENSE	0x00000100ul
110 #define		SCBRAMSEL	0x00000080ul
111 #define		MRDCEN		0x00000040ul
112 #define		EXTSCBTIME	0x00000020ul	/* aic7870 only */
113 #define		EXTSCBPEN	0x00000010ul	/* aic7870 only */
114 #define		BERREN		0x00000008ul
115 #define		DACEN		0x00000004ul
116 #define		STPWLEVEL	0x00000002ul
117 #define		DIFACTNEGEN	0x00000001ul	/* aic7870 only */
118 
119 #define	CSIZE_LATTIME		0x0c
120 #define		CACHESIZE	0x0000003ful	/* only 5 bits */
121 #define		LATTIME		0x0000ff00ul
122 
123 /*
124  * Define the format of the aic78X0 SEEPROM registers (16 bits).
125  *
126  */
127 
128 struct seeprom_config {
129 
130 /*
131  * SCSI ID Configuration Flags
132  */
133 #define CFXFER		0x0007		/* synchronous transfer rate */
134 #define CFSYNCH		0x0008		/* enable synchronous transfer */
135 #define CFDISC		0x0010		/* enable disconnection */
136 #define CFWIDEB		0x0020		/* wide bus device */
137 /* UNUSED		0x00C0 */
138 #define CFSTART		0x0100		/* send start unit SCSI command */
139 #define CFINCBIOS	0x0200		/* include in BIOS scan */
140 #define CFRNFOUND	0x0400		/* report even if not found */
141 /* UNUSED		0xf800 */
142   u_int16_t device_flags[16];	/* words 0-15 */
143 
144 /*
145  * BIOS Control Bits
146  */
147 #define CFSUPREM	0x0001		/* support all removeable drives */
148 #define CFSUPREMB	0x0002		/* support removeable drives for boot only */
149 #define CFBIOSEN	0x0004		/* BIOS enabled */
150 /* UNUSED		0x0008 */
151 #define CFSM2DRV	0x0010		/* support more than two drives */
152 /* UNUSED		0x0060 */
153 #define CFEXTEND	0x0080		/* extended translation enabled */
154 /* UNUSED		0xff00 */
155   u_int16_t bios_control;		/* word 16 */
156 
157 /*
158  * Host Adapter Control Bits
159  */
160 /* UNUSED		0x0001 */
161 #define CFULTRAEN       0x0002          /* Ultra SCSI speed enable (Ultra cards) */
162 #define CFSTERM		0x0004		/* SCSI low byte termination (non-wide cards) */
163 #define CFWSTERM	0x0008		/* SCSI high byte termination (wide card) */
164 #define CFSPARITY	0x0010		/* SCSI parity */
165 /* UNUSED		0x0020 */
166 #define CFRESETB	0x0040		/* reset SCSI bus at IC initialization */
167 /* UNUSED		0xff80 */
168   u_int16_t adapter_control;	/* word 17 */
169 
170 /*
171  * Bus Release, Host Adapter ID
172  */
173 #define CFSCSIID	0x000f		/* host adapter SCSI ID */
174 /* UNUSED		0x00f0 */
175 #define CFBRTIME	0xff00		/* bus release time */
176  u_int16_t brtime_id;		/* word 18 */
177 
178 /*
179  * Maximum targets
180  */
181 #define CFMAXTARG	0x00ff	/* maximum targets */
182 /* UNUSED		0xff00 */
183   u_int16_t max_targets;		/* word 19 */
184 
185   u_int16_t res_1[11];		/* words 20-30 */
186   u_int16_t checksum;		/* word 31 */
187 };
188 
189 static void load_seeprom __P((struct ahc_data *ahc));
190 static int acquire_seeprom __P((struct seeprom_descriptor *sd));
191 static void release_seeprom __P((struct seeprom_descriptor *sd));
192 
193 static u_char aic3940_count;
194 
195 #if defined(__FreeBSD__)
196 
197 static char* aic7870_probe __P((pcici_t tag, pcidi_t type));
198 static void aic7870_attach __P((pcici_t config_id, int unit));
199 
200 static struct  pci_device ahc_pci_driver = {
201 	"ahc",
202         aic7870_probe,
203         aic7870_attach,
204         &ahc_unit,
205 	NULL
206 };
207 
208 DATA_SET (pcidevice_set, ahc_pci_driver);
209 
210 static  char*
211 aic7870_probe (pcici_t tag, pcidi_t type)
212 {
213 	switch(type) {
214 		case PCI_DEVICE_ID_ADAPTEC_3940U:
215 			return ("Adaptec 3940 Ultra SCSI host adapter");
216 			break;
217 		case PCI_DEVICE_ID_ADAPTEC_3940:
218 			return ("Adaptec 3940 SCSI host adapter");
219 			break;
220 		case PCI_DEVICE_ID_ADAPTEC_2944U:
221 			return ("Adaptec 2944 Ultra SCSI host adapter");
222 			break;
223 		case PCI_DEVICE_ID_ADAPTEC_2940U:
224 			return ("Adaptec 2940 Ultra SCSI host adapter");
225 			break;
226 		case PCI_DEVICE_ID_ADAPTEC_2944:
227 			return ("Adaptec 2944 SCSI host adapter");
228 			break;
229 		case PCI_DEVICE_ID_ADAPTEC_2940:
230 			return ("Adaptec 2940 SCSI host adapter");
231 			break;
232 		case PCI_DEVICE_ID_ADAPTEC_2940AU:
233 			return ("Adaptec 2940A Ultra SCSI host adapter");
234 			break;
235 		case PCI_DEVICE_ID_ADAPTEC_AIC7880:
236 			return ("Adaptec aic7880 Ultra SCSI host adapter");
237 			break;
238 		case PCI_DEVICE_ID_ADAPTEC_AIC7870:
239 			return ("Adaptec aic7870 SCSI host adapter");
240 			break;
241 		case PCI_DEVICE_ID_ADAPTEC_AIC7860:
242 			return ("Adaptec aic7860 SCSI host adapter");
243 			break;
244 		case PCI_DEVICE_ID_ADAPTEC_AIC7855:
245 			return ("Adaptec aic7855 SCSI host adapter");
246 			break;
247 		case PCI_DEVICE_ID_ADAPTEC_AIC7850:
248 			return ("Adaptec aic7850 SCSI host adapter");
249 			break;
250 		default:
251 			break;
252 	}
253 	return (0);
254 
255 }
256 
257 #elif defined(__NetBSD__)
258 
259 #ifdef	__BROKEN_INDIRECT_CONFIG
260 int ahc_pci_probe __P((struct device *, void *, void *));
261 #else
262 int ahc_pci_probe __P((struct device *, struct cfdata *, void *));
263 #endif
264 void ahc_pci_attach __P((struct device *, struct device *, void *));
265 
266 struct cfattach ahc_pci_ca = {
267 	sizeof(struct ahc_data), ahc_pci_probe, ahc_pci_attach
268 };
269 
270 int
271 ahc_pci_probe(parent, match, aux)
272         struct device *parent;
273 #ifdef	__BROKEN_INDIRECT_CONFIG
274         void *match;
275 #else
276         struct cfdata *match;
277 #endif
278         void *aux;
279 {
280         struct pci_attach_args *pa = aux;
281 
282 	switch (pa->pa_id) {
283 	case PCI_DEVICE_ID_ADAPTEC_3940U:
284 	case PCI_DEVICE_ID_ADAPTEC_2944U:
285 	case PCI_DEVICE_ID_ADAPTEC_2940U:
286 	case PCI_DEVICE_ID_ADAPTEC_2940AU:
287 	case PCI_DEVICE_ID_ADAPTEC_3940:
288 	case PCI_DEVICE_ID_ADAPTEC_2944:
289 	case PCI_DEVICE_ID_ADAPTEC_2940:
290 	case PCI_DEVICE_ID_ADAPTEC_AIC7880:
291 	case PCI_DEVICE_ID_ADAPTEC_AIC7870:
292 	case PCI_DEVICE_ID_ADAPTEC_AIC7860:
293 	case PCI_DEVICE_ID_ADAPTEC_AIC7855:
294 	case PCI_DEVICE_ID_ADAPTEC_AIC7850:
295 		return 1;
296 	}
297 	return 0;
298 }
299 #endif /* defined(__NetBSD__) */
300 
301 #if defined(__FreeBSD__)
302 static void
303 aic7870_attach(config_id, unit)
304 	pcici_t config_id;
305 	int	unit;
306 #elif defined(__NetBSD__)
307 void
308 ahc_pci_attach(parent, self, aux)
309         struct device *parent, *self;
310         void *aux;
311 #endif
312 {
313 #if defined(__FreeBSD__)
314 	u_long io_port;
315 	int unit = ahc->sc_dev.dv_unit;
316 #elif defined(__NetBSD__)
317 	struct pci_attach_args *pa = aux;
318 	struct ahc_data *ahc = (void *)self;
319 	bus_space_tag_t st, iot, memt;
320 	bus_space_handle_t sh, ioh, memh;
321 	int ioh_valid, memh_valid;
322 	pci_intr_handle_t ih;
323 	const char *intrstr;
324 #endif
325 	u_long id;
326 	unsigned opri = 0;
327 	ahc_type ahc_t = AHC_NONE;
328 	ahc_flag ahc_f = AHC_FNONE;
329 #if defined(__FreeBSD__)
330 	struct ahc_data *ahc;
331 #endif
332 	u_char ultra_enb = 0;
333 	u_char our_id = 0;
334 
335 #if defined(__FreeBSD__)
336         if(!(io_port = pci_conf_read(config_id, PCI_BASEADR0)))
337 		return;
338 	/*
339 	 * The first bit of PCI_BASEADR0 is always
340 	 * set hence we mask it off.
341 	 */
342 	io_port &= 0xfffffffe;
343 #elif defined(__NetBSD__)
344 	ioh_valid = (pci_mapreg_map(pa, PCI_BASEADR_IO,
345 	    PCI_MAPREG_TYPE_IO, 0,
346 	    &iot, &ioh, NULL, NULL) == 0);
347 	memh_valid = (pci_mapreg_map(pa, PCI_BASEADR_MEM,
348 	    PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT, 0,
349 	    &memt, &memh, NULL, NULL) == 0);
350 
351 	if (memh_valid) {
352 		st = memt;
353 		sh = memh;
354 	} else if (ioh_valid) {
355 		st = iot;
356 		sh = ioh;
357 	} else {
358 		printf(": unable to map registers\n");
359 		return;
360 	}
361 	printf("\n");
362 #endif
363 
364 #if defined(__FreeBSD__)
365 	switch ((id = pci_conf_read(config_id, PCI_ID_REG))) {
366 #elif defined(__NetBSD__)
367 	switch (id = pa->pa_id) {
368 #endif
369 		case PCI_DEVICE_ID_ADAPTEC_3940U:
370 		case PCI_DEVICE_ID_ADAPTEC_3940:
371 			if (id == PCI_DEVICE_ID_ADAPTEC_3940U)
372 				ahc_t = AHC_394U;
373 			else
374 				ahc_t = AHC_394;
375 			aic3940_count++;
376 			if(!(aic3940_count & 0x01))
377 				/* Even count implies second channel */
378 				ahc_f |= AHC_CHNLB;
379 			break;
380 		case PCI_DEVICE_ID_ADAPTEC_2944U:
381 		case PCI_DEVICE_ID_ADAPTEC_2940U:
382 			ahc_t = AHC_294U;
383 			break;
384 		case PCI_DEVICE_ID_ADAPTEC_2944:
385 		case PCI_DEVICE_ID_ADAPTEC_2940:
386 			ahc_t = AHC_294;
387 			break;
388 		case PCI_DEVICE_ID_ADAPTEC_2940AU:
389 			ahc_t = AHC_294AU;
390 			break;
391 		case PCI_DEVICE_ID_ADAPTEC_AIC7880:
392 			ahc_t = AHC_AIC7880;
393 			break;
394 		case PCI_DEVICE_ID_ADAPTEC_AIC7870:
395 			ahc_t = AHC_AIC7870;
396 			break;
397 		case PCI_DEVICE_ID_ADAPTEC_AIC7860:
398 			ahc_t = AHC_AIC7860;
399 			break;
400 		case PCI_DEVICE_ID_ADAPTEC_AIC7855:
401 		case PCI_DEVICE_ID_ADAPTEC_AIC7850:
402 			ahc_t = AHC_AIC7850;
403 			break;
404 		default:
405 			break;
406 	}
407 
408 	/* On all PCI adapters, we allow SCB paging */
409 	ahc_f |= AHC_PAGESCBS;
410 
411 	/* Remeber how the card was setup in case there is no SEEPROM */
412 #if defined(__FreeBSD__)
413 	our_id = inb(SCSIID + io_port) & OID;
414 	if(ahc_t & AHC_ULTRA)
415 		ultra_enb = inb(SXFRCTL0 + io_port) & ULTRAEN;
416 #else
417 	our_id = bus_space_read_1(st, sh, SCSIID) & OID;
418 	if(ahc_t & AHC_ULTRA)
419 		ultra_enb = bus_space_read_1(st, sh, SXFRCTL0) & ULTRAEN;
420 #endif
421 
422 #if defined(__FreeBSD__)
423 	ahc_reset(io_port);
424 #elif defined(__NetBSD__)
425 	ahc_reset(ahc->sc_dev.dv_xname, st, sh);
426 #endif
427 
428 	if(ahc_t & AHC_AIC7870){
429 #if defined(__FreeBSD__)
430 		u_long devconfig = pci_conf_read(config_id, DEVCONFIG);
431 #elif defined(__NetBSD__)
432 		u_long devconfig =
433 			pci_conf_read(pa->pa_pc, pa->pa_tag, DEVCONFIG);
434 #endif
435 
436 		if(devconfig & (RAMPSM)) {
437 			/*
438 			 * External SRAM present.  Have the probe walk
439 			 * the SCBs to see how much SRAM we have and set
440 			 * the number of SCBs accordingly.  We have to
441 			 * turn off SCBRAMSEL to access the external
442 			 * SCB SRAM.
443 			 *
444 			 * It seems that early versions of the aic7870
445 			 * didn't use these bits, hence the hack for the
446 			 * 3940 above.  I would guess that recent 3940s
447 			 * using later aic7870 or aic7880 chips do
448 			 * actually set RAMPSM.
449 			 *
450 			 * The documentation isn't clear, but it sounds
451 			 * like the value written to devconfig must not
452 			 * have RAMPSM set.  The second sixteen bits of
453 			 * the register are R/O anyway, so it shouldn't
454 			 * affect RAMPSM either way.
455 			 */
456 			devconfig &= ~(RAMPSM|SCBRAMSEL);
457 #if defined(__FreeBSD__)
458 			pci_conf_write(config_id, DEVCONFIG, devconfig);
459 #elif defined(__NetBSD__)
460 			pci_conf_write(pa->pa_pc, pa->pa_tag,
461 				       DEVCONFIG, devconfig);
462 #endif
463 		}
464 	}
465 
466 #if defined(__FreeBSD__)
467 	if(!(ahc = ahc_alloc(unit, io_port, ahc_t, ahc_f)))
468 		return;  /* XXX PCI code should take return status */
469 
470 	if(!(pci_map_int(config_id, ahc_intr, (void *)ahc, &bio_imask))) {
471 		ahc_free(ahc);
472 		return;
473 	}
474 #elif defined(__NetBSD__)
475 	ahc_construct(ahc, st, sh, ahc_t, ahc_f);
476 
477 	if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin,
478 			 pa->pa_intrline, &ih)) {
479 		printf("%s: couldn't map interrupt\n", ahc->sc_dev.dv_xname);
480 		ahc_free(ahc);
481 		return;
482 	}
483 	intrstr = pci_intr_string(pa->pa_pc, ih);
484 	ahc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, ahc_intr, ahc);
485 	if (ahc->sc_ih == NULL) {
486 		printf("%s: couldn't establish interrupt",
487 		       ahc->sc_dev.dv_xname);
488 		if (intrstr != NULL)
489 			printf(" at %s", intrstr);
490 		printf("\n");
491 		ahc_free(ahc);
492 		return;
493 	}
494 	if (intrstr != NULL)
495 		printf("%s: interrupting at %s\n", ahc->sc_dev.dv_xname,
496 		       intrstr);
497 #endif
498 	/*
499 	 * Protect ourself from spurrious interrupts during
500 	 * intialization.
501 	 */
502 	opri = splbio();
503 
504 	/*
505 	 * Do aic7870/aic7880/aic7850 specific initialization
506 	 */
507 	{
508 		u_char	sblkctl;
509 		char	*id_string;
510 
511 		switch(ahc->type) {
512 		   case AHC_394U:
513 		   case AHC_294U:
514 		   case AHC_AIC7880:
515 		   {
516 			id_string = "aic7880 ";
517 			load_seeprom(ahc);
518 			break;
519 		   }
520 		   case AHC_394:
521 		   case AHC_294:
522 		   case AHC_AIC7870:
523 		   {
524 			id_string = "aic7870 ";
525 			load_seeprom(ahc);
526 			break;
527 		   }
528 		   case AHC_294AU:
529 		   case AHC_AIC7860:
530 		   {
531 			id_string = "aic7860 ";
532 			load_seeprom(ahc);
533 			break;
534 		   }
535 		   case AHC_AIC7850:
536 		   {
537 			id_string = "aic7850 ";
538 			/*
539 			 * Use defaults, if the chip wasn't initialized by
540 			 * a BIOS.
541 			 */
542 			ahc->flags |= AHC_USEDEFAULTS;
543 			break;
544 		   }
545 		   default:
546 		   {
547 			printf("ahc: Unknown controller type.  Ignoring.\n");
548 			ahc_free(ahc);
549 			splx(opri);
550 			return;
551 		   }
552 		}
553 
554 		/*
555 		 * Take the LED out of diagnostic mode
556 		 */
557 		sblkctl = AHC_INB(ahc, SBLKCTL);
558 		AHC_OUTB(ahc, SBLKCTL, (sblkctl & ~(DIAGLEDEN|DIAGLEDON)));
559 
560 		/*
561 		 * I don't know where this is set in the SEEPROM or by the
562 		 * BIOS, so we default to 100%.
563 		 */
564 		AHC_OUTB(ahc, DSPCISTATUS, DFTHRSH_100);
565 
566 		if(ahc->flags & AHC_USEDEFAULTS) {
567 			/*
568 			 * PCI Adapter default setup
569 			 * Should only be used if the adapter does not have
570 			 * an SEEPROM.
571 			 */
572 			/* See if someone else set us up already */
573 			u_long i;
574 		        for(i = TARG_SCRATCH; i < 0x60; i++) {
575                         	if(AHC_INB(ahc, i) != 0x00)
576 					break;
577 			}
578 			if(i == TARG_SCRATCH) {
579 				/*
580 				 * Try looking for all ones.  You can get
581 				 * either.
582 				 */
583 		        	for (i = TARG_SCRATCH; i < 0x60; i++) {
584                         		if(AHC_INB(ahc, i) != 0xff)
585 						break;
586 				}
587 			}
588 			if((i != 0x60) && (our_id != 0)) {
589 				printf("%s: Using left over BIOS settings\n",
590 					ahc_name(ahc));
591 				ahc->flags &= ~AHC_USEDEFAULTS;
592 			}
593 			else
594 				our_id = 0x07;
595 			AHC_OUTB(ahc, SCSICONF,
596 				 (our_id & 0x07)|ENSPCHK|RESET_SCSI);
597 			/* In case we are a wide card */
598 			AHC_OUTB(ahc, SCSICONF + 1, our_id);
599 
600 			if(!ultra_enb || (ahc->flags & AHC_USEDEFAULTS)) {
601 				/*
602 				 * If there wasn't a BIOS or the board
603 				 * wasn't in this mode to begin with,
604 				 * turn off ultra.
605 				 */
606 				ahc->type &= ~AHC_ULTRA;
607 			}
608 		}
609 
610 		printf("%s: %s", ahc_name(ahc), id_string);
611 	}
612 
613 	if(ahc_init(ahc)){
614 		ahc_free(ahc);
615 		splx(opri);
616 		return; /* XXX PCI code should take return status */
617 	}
618 	splx(opri);
619 
620 	ahc_attach(ahc);
621 }
622 
623 /*
624  * Read the SEEPROM.  Return 0 on failure
625  */
626 void
627 load_seeprom(ahc)
628 	struct	ahc_data *ahc;
629 {
630 	struct	seeprom_descriptor sd;
631 	struct	seeprom_config sc;
632 	u_short *scarray = (u_short *)&sc;
633 	u_short	checksum = 0;
634 	u_char	scsi_conf;
635 	u_char	host_id;
636 	int	have_seeprom;
637 
638 #if defined(__FreeBSD__)
639 	sd.sd_iobase = ahc->baseport + SEECTL;
640 #elif defined(__NetBSD__)
641 	sd.sd_st = ahc->sc_st;
642 	sd.sd_sh = ahc->sc_sh;
643 	sd.sd_offset = SEECTL;
644 #endif
645 	sd.sd_MS = SEEMS;
646 	sd.sd_RDY = SEERDY;
647 	sd.sd_CS = SEECS;
648 	sd.sd_CK = SEECK;
649 	sd.sd_DO = SEEDO;
650 	sd.sd_DI = SEEDI;
651 
652 	if(bootverbose)
653 		printf("%s: Reading SEEPROM...", ahc_name(ahc));
654 	have_seeprom = acquire_seeprom(&sd);
655 	if (have_seeprom) {
656 		have_seeprom = read_seeprom(&sd,
657 					    (u_int16_t *)&sc,
658 					    ahc->flags & AHC_CHNLB,
659 					    sizeof(sc)/2);
660 		release_seeprom(&sd);
661 		if (have_seeprom) {
662 			/* Check checksum */
663 			int i;
664 
665 			for (i = 0;i < (sizeof(sc)/2 - 1);i = i + 1)
666 				checksum = checksum + scarray[i];
667 			if (checksum != sc.checksum) {
668 				if(bootverbose)
669 					printf ("checksum error");
670 				have_seeprom = 0;
671 			}
672 			else if(bootverbose)
673 				printf("done.\n");
674 		}
675 	}
676 	if (!have_seeprom) {
677 		if(bootverbose)
678 			printf("\n%s: No SEEPROM availible\n", ahc_name(ahc));
679 		ahc->flags |= AHC_USEDEFAULTS;
680 	}
681 	else {
682 		/*
683 		 * Put the data we've collected down into SRAM
684 		 * where ahc_init will find it.
685 		 */
686 		int i;
687 		int max_targ = sc.max_targets & CFMAXTARG;
688 
689 	        for(i = 0; i < max_targ; i++){
690 	                u_char target_settings;
691 			target_settings = (sc.device_flags[i] & CFXFER) << 4;
692 			if (sc.device_flags[i] & CFSYNCH)
693 				target_settings |= SOFS;
694 			if (sc.device_flags[i] & CFWIDEB)
695 				target_settings |= WIDEXFER;
696 			if (sc.device_flags[i] & CFDISC)
697 				ahc->discenable |= (0x01 << i);
698 			AHC_OUTB(ahc, TARG_SCRATCH+i, target_settings);
699 		}
700 		AHC_OUTB(ahc, DISC_DSB, ~(ahc->discenable & 0xff));
701 		AHC_OUTB(ahc, DISC_DSB + 1, ~((ahc->discenable >> 8) & 0xff));
702 
703 		host_id = sc.brtime_id & CFSCSIID;
704 
705 		scsi_conf = (host_id & 0x7);
706 		if(sc.adapter_control & CFSPARITY)
707 			scsi_conf |= ENSPCHK;
708 		if(sc.adapter_control & CFRESETB)
709 			scsi_conf |= RESET_SCSI;
710 
711 		if(ahc->type & AHC_ULTRA) {
712 			/* Should we enable Ultra mode? */
713 			if(!(sc.adapter_control & CFULTRAEN))
714 				/* Treat us as a non-ultra card */
715 				ahc->type &= ~AHC_ULTRA;
716 		}
717 		/* Set the host ID */
718 		AHC_OUTB(ahc, SCSICONF, scsi_conf);
719 		/* In case we are a wide card */
720 		AHC_OUTB(ahc, SCSICONF + 1, host_id);
721 	}
722 }
723 
724 static int
725 acquire_seeprom(sd)
726 	struct seeprom_descriptor *sd;
727 {
728 	int wait;
729 
730 	/*
731 	 * Request access of the memory port.  When access is
732 	 * granted, SEERDY will go high.  We use a 1 second
733 	 * timeout which should be near 1 second more than
734 	 * is needed.  Reason: after the chip reset, there
735 	 * should be no contention.
736 	 */
737 	SEEPROM_OUTB(sd, sd->sd_MS);
738 	wait = 1000;  /* 1 second timeout in msec */
739 	while (--wait && ((SEEPROM_INB(sd) & sd->sd_RDY) == 0)) {
740 		DELAY (1000);  /* delay 1 msec */
741         }
742 	if ((SEEPROM_INB(sd) & sd->sd_RDY) == 0) {
743 		SEEPROM_OUTB(sd, 0);
744 		return (0);
745 	}
746 	return(1);
747 }
748 
749 static void
750 release_seeprom(sd)
751 	struct seeprom_descriptor *sd;
752 {
753 	/* Release access to the memory port and the serial EEPROM. */
754 	SEEPROM_OUTB(sd, 0);
755 }
756 
757 #endif /* NPCI > 0 */
758