Home | History | Annotate | Line # | Download | only in pci
siop_pci_common.c revision 1.27.4.3
      1  1.27.4.3      yamt /*	$NetBSD: siop_pci_common.c,v 1.27.4.3 2010/03/11 15:03:59 yamt Exp $	*/
      2       1.1    bouyer 
      3       1.1    bouyer /*
      4       1.1    bouyer  * Copyright (c) 2000 Manuel Bouyer.
      5       1.1    bouyer  *
      6       1.1    bouyer  * Redistribution and use in source and binary forms, with or without
      7       1.1    bouyer  * modification, are permitted provided that the following conditions
      8       1.1    bouyer  * are met:
      9       1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     10       1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     11       1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     13       1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     14       1.1    bouyer  *
     15       1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     16       1.1    bouyer  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     17       1.1    bouyer  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     18      1.24     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     19       1.1    bouyer  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     20       1.1    bouyer  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     21       1.1    bouyer  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     22       1.1    bouyer  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     23       1.1    bouyer  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     24       1.1    bouyer  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     25       1.1    bouyer  */
     26       1.1    bouyer 
     27       1.1    bouyer /* SYM53c8xx PCI-SCSI I/O Processors driver: PCI front-end */
     28       1.9     lukem 
     29       1.9     lukem #include <sys/cdefs.h>
     30  1.27.4.3      yamt __KERNEL_RCSID(0, "$NetBSD: siop_pci_common.c,v 1.27.4.3 2010/03/11 15:03:59 yamt Exp $");
     31       1.1    bouyer 
     32       1.1    bouyer #include <sys/param.h>
     33       1.1    bouyer #include <sys/systm.h>
     34       1.1    bouyer #include <sys/device.h>
     35       1.1    bouyer #include <sys/malloc.h>
     36       1.1    bouyer #include <sys/buf.h>
     37       1.1    bouyer #include <sys/kernel.h>
     38      1.19   thorpej 
     39      1.19   thorpej #include <uvm/uvm_extern.h>
     40       1.1    bouyer 
     41       1.1    bouyer #include <machine/endian.h>
     42       1.1    bouyer 
     43       1.1    bouyer #include <dev/pci/pcireg.h>
     44       1.1    bouyer #include <dev/pci/pcivar.h>
     45       1.1    bouyer #include <dev/pci/pcidevs.h>
     46       1.1    bouyer 
     47       1.1    bouyer #include <dev/scsipi/scsipi_all.h>
     48       1.1    bouyer #include <dev/scsipi/scsipiconf.h>
     49       1.1    bouyer 
     50       1.1    bouyer #include <dev/ic/siopreg.h>
     51      1.11    bouyer #include <dev/ic/siopvar_common.h>
     52       1.1    bouyer #include <dev/pci/siop_pci_common.h>
     53       1.1    bouyer 
     54       1.1    bouyer /* List (array, really :) of chips we know how to handle */
     55      1.25   thorpej static const struct siop_product_desc siop_products[] = {
     56       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_810,
     57       1.1    bouyer 	0x00,
     58       1.1    bouyer 	"Symbios Logic 53c810 (fast scsi)",
     59       1.1    bouyer 	SF_PCI_RL | SF_CHIP_LS,
     60       1.3    bouyer 	4, 8, 3, 250, 0
     61       1.1    bouyer 	},
     62       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_810,
     63       1.1    bouyer 	0x10,
     64       1.1    bouyer 	"Symbios Logic 53c810a (fast scsi)",
     65       1.1    bouyer 	SF_PCI_RL | SF_PCI_BOF | SF_CHIP_PF | SF_CHIP_LS,
     66       1.3    bouyer 	4, 8, 3, 250, 0
     67       1.1    bouyer 	},
     68       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_815,
     69       1.1    bouyer 	0x00,
     70       1.1    bouyer 	"Symbios Logic 53c815 (fast scsi)",
     71       1.1    bouyer 	SF_PCI_RL | SF_PCI_BOF,
     72       1.3    bouyer 	4, 8, 3, 250, 0
     73       1.1    bouyer 	},
     74       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_820,
     75       1.1    bouyer 	0x00,
     76       1.1    bouyer 	"Symbios Logic 53c820 (fast wide scsi)",
     77       1.1    bouyer 	SF_PCI_RL | SF_CHIP_LS | SF_BUS_WIDE,
     78       1.3    bouyer 	4, 8, 3, 250, 0
     79       1.1    bouyer 	},
     80       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_825,
     81       1.1    bouyer 	0x00,
     82       1.1    bouyer 	"Symbios Logic 53c825 (fast wide scsi)",
     83       1.1    bouyer 	SF_PCI_RL | SF_PCI_BOF | SF_BUS_WIDE,
     84       1.3    bouyer 	4, 8, 3, 250, 0
     85       1.1    bouyer 	},
     86       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_825,
     87       1.1    bouyer 	0x10,
     88       1.1    bouyer 	"Symbios Logic 53c825a (fast wide scsi)",
     89       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
     90       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_LS | SF_CHIP_10REGS |
     91       1.1    bouyer 	SF_BUS_WIDE,
     92       1.3    bouyer 	7, 8, 3, 250, 4096
     93       1.1    bouyer 	},
     94       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_860,
     95       1.1    bouyer 	0x00,
     96       1.1    bouyer 	"Symbios Logic 53c860 (ultra scsi)",
     97       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
     98       1.1    bouyer 	SF_CHIP_PF | SF_CHIP_LS |
     99       1.1    bouyer 	SF_BUS_ULTRA,
    100       1.3    bouyer 	4, 8, 5, 125, 0
    101       1.1    bouyer 	},
    102       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_875,
    103       1.1    bouyer 	0x00,
    104       1.1    bouyer 	"Symbios Logic 53c875 (ultra-wide scsi)",
    105       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    106       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_LS | SF_CHIP_10REGS |
    107       1.1    bouyer 	SF_BUS_ULTRA | SF_BUS_WIDE,
    108       1.3    bouyer 	7, 16, 5, 125, 4096
    109       1.1    bouyer 	},
    110       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_875,
    111       1.1    bouyer 	0x02,
    112       1.1    bouyer 	"Symbios Logic 53c875 (ultra-wide scsi)",
    113       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    114       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_DBLR |
    115       1.1    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS |
    116       1.1    bouyer 	SF_BUS_ULTRA | SF_BUS_WIDE,
    117       1.3    bouyer 	7, 16, 5, 125, 4096
    118       1.1    bouyer 	},
    119       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_875J,
    120       1.1    bouyer 	0x00,
    121       1.1    bouyer 	"Symbios Logic 53c875j (ultra-wide scsi)",
    122       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    123       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_DBLR |
    124       1.1    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS |
    125       1.1    bouyer 	SF_BUS_ULTRA | SF_BUS_WIDE,
    126       1.3    bouyer 	7, 16, 5, 125, 4096
    127       1.1    bouyer 	},
    128       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_885,
    129       1.1    bouyer 	0x00,
    130       1.1    bouyer 	"Symbios Logic 53c885 (ultra-wide scsi)",
    131       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    132       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_DBLR |
    133       1.1    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS |
    134       1.1    bouyer 	SF_BUS_ULTRA | SF_BUS_WIDE,
    135       1.3    bouyer 	7, 16, 5, 125, 4096
    136       1.1    bouyer 	},
    137       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_895,
    138       1.1    bouyer 	0x00,
    139       1.1    bouyer 	"Symbios Logic 53c895 (ultra2-wide scsi)",
    140       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    141       1.1    bouyer 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_QUAD |
    142       1.1    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS |
    143       1.1    bouyer 	SF_BUS_ULTRA2 | SF_BUS_WIDE,
    144       1.3    bouyer 	7, 31, 7, 62, 4096
    145       1.1    bouyer 	},
    146       1.1    bouyer 	{ PCI_PRODUCT_SYMBIOS_896,
    147       1.1    bouyer 	0x00,
    148       1.1    bouyer 	"Symbios Logic 53c896 (ultra2-wide scsi)",
    149       1.1    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    150      1.12    bouyer 	SF_CHIP_LEDC | SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_QUAD |
    151       1.1    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS |
    152       1.1    bouyer 	SF_BUS_ULTRA2 | SF_BUS_WIDE,
    153       1.3    bouyer 	7, 31, 7, 62, 8192
    154       1.6   thorpej 	},
    155       1.6   thorpej 	{ PCI_PRODUCT_SYMBIOS_895A,
    156       1.6   thorpej 	0x00,
    157       1.6   thorpej 	"Symbios Logic 53c895a (ultra2-wide scsi)",
    158       1.6   thorpej 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    159      1.12    bouyer 	SF_CHIP_LEDC | SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_QUAD |
    160       1.6   thorpej 	SF_CHIP_LS | SF_CHIP_10REGS |
    161       1.6   thorpej 	SF_BUS_ULTRA2 | SF_BUS_WIDE,
    162       1.7    bouyer 	7, 31, 7, 62, 8192
    163       1.7    bouyer 	},
    164       1.7    bouyer 	{ PCI_PRODUCT_SYMBIOS_1010,
    165       1.7    bouyer 	0x00,
    166      1.16   thorpej 	"Symbios Logic 53c1010-33 rev 0 (ultra3-wide scsi)",
    167      1.14    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    168      1.14    bouyer 	SF_CHIP_LEDC | SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM |
    169      1.14    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS | SF_CHIP_DFBC | SF_CHIP_DBLR |
    170      1.17    bouyer 	SF_CHIP_GEBUG |
    171      1.14    bouyer 	SF_BUS_ULTRA3 | SF_BUS_WIDE,
    172      1.14    bouyer 	7, 31, 0, 62, 8192
    173      1.14    bouyer 	},
    174      1.14    bouyer 	{ PCI_PRODUCT_SYMBIOS_1010,
    175      1.14    bouyer 	0x01,
    176      1.16   thorpej 	"Symbios Logic 53c1010-33 (ultra3-wide scsi)",
    177      1.10    briggs 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    178      1.12    bouyer 	SF_CHIP_LEDC | SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM |
    179      1.14    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS | SF_CHIP_DFBC | SF_CHIP_DBLR | SF_CHIP_DT |
    180      1.17    bouyer 	SF_CHIP_GEBUG |
    181      1.14    bouyer 	SF_BUS_ULTRA3 | SF_BUS_WIDE,
    182      1.14    bouyer 	7, 62, 0, 62, 8192
    183      1.10    briggs 	},
    184      1.10    briggs 	{ PCI_PRODUCT_SYMBIOS_1010_2,
    185      1.10    briggs 	0x00,
    186      1.16   thorpej 	"Symbios Logic 53c1010-66 (ultra3-wide scsi)",
    187       1.7    bouyer 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    188      1.12    bouyer 	SF_CHIP_LEDC | SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM |
    189      1.14    bouyer 	SF_CHIP_LS | SF_CHIP_10REGS | SF_CHIP_DFBC | SF_CHIP_DBLR | SF_CHIP_DT |
    190      1.22    bouyer 	SF_CHIP_AAIP |
    191      1.24     perry 	SF_BUS_ULTRA3 | SF_BUS_WIDE,
    192      1.14    bouyer 	7, 62, 0, 62, 8192
    193       1.6   thorpej 	},
    194       1.6   thorpej 	{ PCI_PRODUCT_SYMBIOS_1510D,
    195       1.6   thorpej 	0x00,
    196       1.6   thorpej 	"Symbios Logic 53c1510d (ultra2-wide scsi)",
    197       1.6   thorpej 	SF_PCI_RL | SF_PCI_CLS | SF_PCI_WRI | SF_PCI_RM |
    198       1.6   thorpej 	SF_CHIP_FIFO | SF_CHIP_PF | SF_CHIP_RAM | SF_CHIP_QUAD |
    199       1.6   thorpej 	SF_CHIP_LS | SF_CHIP_10REGS |
    200       1.6   thorpej 	SF_BUS_ULTRA2 | SF_BUS_WIDE,
    201       1.6   thorpej 	7, 31, 7, 62, 4096
    202       1.1    bouyer 	},
    203       1.1    bouyer 	{ 0,
    204       1.1    bouyer 	0x00,
    205       1.1    bouyer 	NULL,
    206       1.1    bouyer 	0x00,
    207       1.3    bouyer 	0, 0, 0, 0, 0
    208       1.1    bouyer 	},
    209       1.1    bouyer };
    210       1.1    bouyer 
    211       1.1    bouyer const struct siop_product_desc *
    212  1.27.4.2      yamt siop_lookup_product(uint32_t id, int rev)
    213       1.1    bouyer {
    214       1.1    bouyer 	const struct siop_product_desc *pp;
    215       1.1    bouyer 	const struct siop_product_desc *rp = NULL;
    216       1.1    bouyer 
    217       1.1    bouyer 	if (PCI_VENDOR(id) != PCI_VENDOR_SYMBIOS)
    218       1.1    bouyer 		return NULL;
    219       1.1    bouyer 
    220       1.1    bouyer 	for (pp = siop_products; pp->name != NULL; pp++) {
    221       1.1    bouyer 		if (PCI_PRODUCT(id) == pp->product && pp->revision <= rev)
    222       1.1    bouyer 			if (rp == NULL || pp->revision > rp->revision)
    223       1.1    bouyer 				rp = pp;
    224       1.1    bouyer 	}
    225       1.1    bouyer 	return rp;
    226       1.1    bouyer }
    227       1.1    bouyer 
    228       1.1    bouyer int
    229      1.25   thorpej siop_pci_attach_common(struct siop_pci_common_softc *pci_sc,
    230      1.25   thorpej     struct siop_common_softc *siop_sc, struct pci_attach_args *pa,
    231      1.25   thorpej     int (*intr)(void *))
    232       1.1    bouyer {
    233       1.1    bouyer 	pci_chipset_tag_t pc = pa->pa_pc;
    234      1.24     perry 	pcitag_t tag = pa->pa_tag;
    235       1.1    bouyer 	const char *intrstr;
    236       1.1    bouyer 	pci_intr_handle_t intrhandle;
    237       1.1    bouyer 	bus_space_tag_t iot, memt;
    238       1.1    bouyer 	bus_space_handle_t ioh, memh;
    239       1.1    bouyer 	pcireg_t memtype;
    240  1.27.4.1      yamt 	prop_dictionary_t dict;
    241       1.1    bouyer 	int memh_valid, ioh_valid;
    242       1.1    bouyer 	bus_addr_t ioaddr, memaddr;
    243  1.27.4.1      yamt 	bool use_pciclock;
    244       1.1    bouyer 
    245      1.18   thorpej 	aprint_naive(": SCSI controller\n");
    246      1.18   thorpej 
    247      1.11    bouyer 	pci_sc->sc_pp =
    248      1.11    bouyer 	    siop_lookup_product(pa->pa_id, PCI_REVISION(pa->pa_class));
    249      1.11    bouyer 	if (pci_sc->sc_pp == NULL) {
    250      1.18   thorpej 		aprint_error("sym: broken match/attach!!\n");
    251       1.1    bouyer 		return 0;
    252       1.1    bouyer 	}
    253       1.2    bouyer 	/* copy interesting infos about the chip */
    254      1.11    bouyer 	siop_sc->features = pci_sc->sc_pp->features;
    255      1.13    bouyer #ifdef SIOP_SYMLED    /* XXX Should be a devprop! */
    256      1.13    bouyer 	siop_sc->features |= SF_CHIP_LED0;
    257      1.13    bouyer #endif
    258  1.27.4.2      yamt 	dict = device_properties(siop_sc->sc_dev);
    259  1.27.4.1      yamt 	if (prop_dictionary_get_bool(dict, "use_pciclock", &use_pciclock))
    260  1.27.4.1      yamt 		if (use_pciclock)
    261  1.27.4.1      yamt 			siop_sc->features |= SF_CHIP_USEPCIC;
    262      1.11    bouyer 	siop_sc->maxburst = pci_sc->sc_pp->maxburst;
    263      1.11    bouyer 	siop_sc->maxoff = pci_sc->sc_pp->maxoff;
    264      1.11    bouyer 	siop_sc->clock_div = pci_sc->sc_pp->clock_div;
    265      1.11    bouyer 	siop_sc->clock_period = pci_sc->sc_pp->clock_period;
    266      1.11    bouyer 	siop_sc->ram_size = pci_sc->sc_pp->ram_size;
    267      1.11    bouyer 
    268      1.11    bouyer 	siop_sc->sc_reset = siop_pci_reset;
    269      1.18   thorpej 	aprint_normal(": %s\n", pci_sc->sc_pp->name);
    270      1.11    bouyer 	pci_sc->sc_pc = pc;
    271      1.11    bouyer 	pci_sc->sc_tag = tag;
    272      1.11    bouyer 	siop_sc->sc_dmat = pa->pa_dmat;
    273       1.1    bouyer 
    274       1.1    bouyer 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, 0x14);
    275       1.1    bouyer 	switch (memtype) {
    276       1.1    bouyer 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
    277       1.1    bouyer 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
    278       1.1    bouyer 		memh_valid = (pci_mapreg_map(pa, 0x14, memtype, 0,
    279       1.1    bouyer 		    &memt, &memh, &memaddr, NULL) == 0);
    280       1.1    bouyer 		break;
    281       1.1    bouyer 	default:
    282       1.1    bouyer 		memh_valid = 0;
    283       1.1    bouyer 	}
    284       1.1    bouyer 
    285       1.1    bouyer 	ioh_valid = (pci_mapreg_map(pa, 0x10, PCI_MAPREG_TYPE_IO, 0,
    286       1.1    bouyer 	    &iot, &ioh, &ioaddr, NULL) == 0);
    287       1.1    bouyer 
    288       1.1    bouyer 	if (memh_valid) {
    289      1.11    bouyer 		siop_sc->sc_rt = memt;
    290      1.11    bouyer 		siop_sc->sc_rh = memh;
    291      1.11    bouyer 		siop_sc->sc_raddr = memaddr;
    292       1.1    bouyer 	} else if (ioh_valid) {
    293      1.11    bouyer 		siop_sc->sc_rt = iot;
    294      1.11    bouyer 		siop_sc->sc_rh = ioh;
    295      1.11    bouyer 		siop_sc->sc_raddr = ioaddr;
    296       1.1    bouyer 	} else {
    297  1.27.4.2      yamt 		aprint_error_dev(siop_sc->sc_dev,
    298  1.27.4.2      yamt 		    "unable to map device registers\n");
    299       1.1    bouyer 		return 0;
    300       1.1    bouyer 	}
    301       1.1    bouyer 
    302      1.11    bouyer 	if (siop_sc->features & SF_CHIP_RAM) {
    303       1.4      matt 		int bar;
    304       1.4      matt 		switch (memtype) {
    305       1.4      matt 		case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
    306       1.4      matt 			bar = 0x18;
    307       1.4      matt 			break;
    308       1.4      matt 		case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
    309       1.4      matt 			bar = 0x1c;
    310      1.20  christos 			break;
    311      1.20  christos 		default:
    312  1.27.4.2      yamt 			aprint_error_dev(siop_sc->sc_dev,
    313  1.27.4.2      yamt 			    "invalid memory type %d\n",
    314      1.27    cegger 			    memtype);
    315      1.21  christos 			return 0;
    316       1.4      matt 		}
    317       1.4      matt 		if (pci_mapreg_map(pa, bar, memtype, 0,
    318      1.11    bouyer                     &siop_sc->sc_ramt, &siop_sc->sc_ramh,
    319      1.11    bouyer 		    &siop_sc->sc_scriptaddr, NULL) == 0) {
    320  1.27.4.2      yamt 			aprint_normal_dev(siop_sc->sc_dev,
    321  1.27.4.2      yamt 			    "using on-board RAM\n");
    322       1.2    bouyer 		} else {
    323  1.27.4.2      yamt 			aprint_error_dev(siop_sc->sc_dev,
    324  1.27.4.2      yamt 			    "can't map on-board RAM\n");
    325      1.11    bouyer 			siop_sc->features &= ~SF_CHIP_RAM;
    326       1.2    bouyer 		}
    327       1.2    bouyer 	}
    328       1.2    bouyer 
    329       1.5  sommerfe 	if (pci_intr_map(pa, &intrhandle) != 0) {
    330  1.27.4.2      yamt 		aprint_error_dev(siop_sc->sc_dev, "couldn't map interrupt\n");
    331       1.1    bouyer 		return 0;
    332       1.1    bouyer 	}
    333       1.1    bouyer 	intrstr = pci_intr_string(pa->pa_pc, intrhandle);
    334      1.11    bouyer 	pci_sc->sc_ih = pci_intr_establish(pa->pa_pc, intrhandle, IPL_BIO,
    335      1.11    bouyer 	    intr, siop_sc);
    336      1.11    bouyer 	if (pci_sc->sc_ih != NULL) {
    337  1.27.4.2      yamt 		aprint_normal_dev(siop_sc->sc_dev, "interrupting at %s\n",
    338       1.1    bouyer 		    intrstr ? intrstr : "unknown interrupt");
    339       1.1    bouyer 	} else {
    340  1.27.4.2      yamt 		aprint_error_dev(siop_sc->sc_dev,
    341  1.27.4.2      yamt 		    "couldn't establish interrupt");
    342       1.1    bouyer 		if (intrstr != NULL)
    343  1.27.4.3      yamt 			aprint_error(" at %s", intrstr);
    344  1.27.4.3      yamt 		aprint_error("\n");
    345       1.1    bouyer 		return 0;
    346       1.1    bouyer 	}
    347  1.27.4.1      yamt 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    348  1.27.4.1      yamt 	    pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    349  1.27.4.1      yamt 	    PCI_COMMAND_MASTER_ENABLE);
    350       1.1    bouyer 	return 1;
    351       1.1    bouyer }
    352       1.1    bouyer 
    353       1.1    bouyer void
    354      1.25   thorpej siop_pci_reset(struct siop_common_softc *sc)
    355       1.1    bouyer {
    356       1.1    bouyer 	int dmode;
    357       1.1    bouyer 
    358       1.1    bouyer 	dmode = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_DMODE);
    359       1.1    bouyer 	if (sc->features & SF_PCI_RL)
    360       1.1    bouyer 		dmode |= DMODE_ERL;
    361       1.1    bouyer 	if (sc->features & SF_PCI_RM)
    362       1.1    bouyer 		dmode |= DMODE_ERMP;
    363       1.1    bouyer 	if (sc->features & SF_PCI_BOF)
    364       1.1    bouyer 		dmode |= DMODE_BOF;
    365       1.1    bouyer 	if (sc->features & SF_PCI_CLS)
    366       1.1    bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DCNTL,
    367       1.1    bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_DCNTL) |
    368       1.1    bouyer 		    DCNTL_CLSE);
    369       1.1    bouyer 	if (sc->features & SF_PCI_WRI)
    370       1.1    bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3,
    371       1.1    bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3) |
    372       1.1    bouyer 		    CTEST3_WRIE);
    373       1.1    bouyer 	if (sc->maxburst) {
    374       1.1    bouyer 		int ctest5 = bus_space_read_1(sc->sc_rt, sc->sc_rh,
    375       1.1    bouyer 		    SIOP_CTEST5);
    376       1.1    bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST4,
    377       1.1    bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST4) &
    378       1.1    bouyer 		    ~CTEST4_BDIS);
    379       1.1    bouyer 		dmode &= ~DMODE_BL_MASK;
    380       1.1    bouyer 		dmode |= ((sc->maxburst - 1) << DMODE_BL_SHIFT) & DMODE_BL_MASK;
    381       1.1    bouyer 		ctest5 &= ~CTEST5_BBCK;
    382       1.1    bouyer 		ctest5 |= (sc->maxburst - 1) & CTEST5_BBCK;
    383       1.1    bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST5, ctest5);
    384       1.1    bouyer 	} else {
    385       1.1    bouyer 		bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST4,
    386       1.1    bouyer 		    bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST4) |
    387       1.1    bouyer 		    CTEST4_BDIS);
    388       1.1    bouyer 	}
    389       1.1    bouyer 	bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_DMODE, dmode);
    390       1.1    bouyer }
    391