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