Home | History | Annotate | Line # | Download | only in pci
piix.c revision 1.13.56.1
      1  1.13.56.1      yamt /*	$NetBSD: piix.c,v 1.13.56.1 2008/05/16 02:22:38 yamt Exp $	*/
      2        1.1   thorpej 
      3        1.1   thorpej /*-
      4        1.1   thorpej  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5        1.1   thorpej  * All rights reserved.
      6        1.1   thorpej  *
      7        1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9        1.1   thorpej  * NASA Ames Research Center.
     10        1.1   thorpej  *
     11        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     12        1.1   thorpej  * modification, are permitted provided that the following conditions
     13        1.1   thorpej  * are met:
     14        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     15        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     16        1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17        1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18        1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     19        1.1   thorpej  *
     20        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21        1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22        1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23        1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24        1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25        1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26        1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27        1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28        1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29        1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30        1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31        1.1   thorpej  */
     32        1.1   thorpej 
     33        1.1   thorpej /*
     34        1.1   thorpej  * Copyright (c) 1999, by UCHIYAMA Yasushi
     35        1.1   thorpej  * All rights reserved.
     36        1.1   thorpej  *
     37        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     38        1.1   thorpej  * modification, are permitted provided that the following conditions
     39        1.1   thorpej  * are met:
     40        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     41        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     42        1.1   thorpej  * 2. The name of the developer may NOT be used to endorse or promote products
     43        1.1   thorpej  *    derived from this software without specific prior written permission.
     44        1.1   thorpej  *
     45        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     46        1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47        1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48        1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     49        1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50        1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51        1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52        1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53        1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54        1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55        1.1   thorpej  * SUCH DAMAGE.
     56        1.1   thorpej  */
     57        1.1   thorpej 
     58        1.1   thorpej /*
     59        1.6     kochi  * Support for the Intel PIIX PCI-ISA bridge interrupt controller
     60        1.6     kochi  * and ICHn I/O controller hub
     61        1.6     kochi  */
     62        1.6     kochi 
     63        1.6     kochi /*
     64        1.6     kochi  * ICH2 and later support 8 interrupt routers while the first
     65        1.6     kochi  * generation (ICH and ICH0) support 4 which is same as PIIX.
     66        1.1   thorpej  */
     67        1.3     lukem 
     68        1.3     lukem #include <sys/cdefs.h>
     69  1.13.56.1      yamt __KERNEL_RCSID(0, "$NetBSD: piix.c,v 1.13.56.1 2008/05/16 02:22:38 yamt Exp $");
     70        1.1   thorpej 
     71        1.1   thorpej #include <sys/param.h>
     72        1.1   thorpej #include <sys/systm.h>
     73        1.1   thorpej #include <sys/device.h>
     74        1.1   thorpej #include <sys/malloc.h>
     75        1.1   thorpej 
     76        1.1   thorpej #include <machine/intr.h>
     77        1.1   thorpej #include <machine/bus.h>
     78        1.1   thorpej 
     79        1.1   thorpej #include <dev/pci/pcivar.h>
     80        1.1   thorpej #include <dev/pci/pcireg.h>
     81        1.1   thorpej #include <dev/pci/pcidevs.h>
     82        1.1   thorpej 
     83        1.1   thorpej #include <i386/pci/pci_intr_fixup.h>
     84        1.1   thorpej #include <i386/pci/piixreg.h>
     85        1.1   thorpej #include <i386/pci/piixvar.h>
     86        1.1   thorpej 
     87        1.2      soda #ifdef PIIX_DEBUG
     88        1.2      soda #define	DPRINTF(arg) printf arg
     89        1.2      soda #else
     90        1.2      soda #define	DPRINTF(arg)
     91        1.2      soda #endif
     92        1.2      soda 
     93        1.7     kochi int	piix_getclink(pciintr_icu_handle_t, int, int *);
     94        1.7     kochi int	ich_getclink(pciintr_icu_handle_t, int, int *);
     95        1.7     kochi int	piix_get_intr(pciintr_icu_handle_t, int, int *);
     96        1.7     kochi int	piix_set_intr(pciintr_icu_handle_t, int, int);
     97        1.2      soda #ifdef PIIX_DEBUG
     98        1.7     kochi void	piix_pir_dump(struct piix_handle *);
     99        1.8     kochi void	ich_pir_dump(struct piix_handle *);
    100        1.2      soda #endif
    101        1.1   thorpej 
    102        1.1   thorpej const struct pciintr_icu piix_pci_icu = {
    103        1.1   thorpej 	piix_getclink,
    104        1.1   thorpej 	piix_get_intr,
    105        1.1   thorpej 	piix_set_intr,
    106        1.1   thorpej 	piix_get_trigger,
    107        1.1   thorpej 	piix_set_trigger,
    108        1.1   thorpej };
    109        1.1   thorpej 
    110        1.6     kochi const struct pciintr_icu ich_pci_icu = {
    111        1.6     kochi 	ich_getclink,
    112        1.6     kochi 	piix_get_intr,
    113        1.6     kochi 	piix_set_intr,
    114        1.6     kochi 	piix_get_trigger,
    115        1.6     kochi 	piix_set_trigger,
    116        1.6     kochi };
    117        1.6     kochi 
    118        1.6     kochi static int piix_max_link = 3;
    119        1.6     kochi 
    120        1.1   thorpej int
    121        1.7     kochi piix_init(pci_chipset_tag_t pc, bus_space_tag_t iot, pcitag_t tag,
    122        1.7     kochi     pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp)
    123        1.1   thorpej {
    124        1.1   thorpej 	struct piix_handle *ph;
    125        1.1   thorpej 
    126        1.1   thorpej 	ph = malloc(sizeof(*ph), M_DEVBUF, M_NOWAIT);
    127        1.1   thorpej 	if (ph == NULL)
    128        1.1   thorpej 		return (1);
    129        1.1   thorpej 
    130        1.1   thorpej 	ph->ph_iot = iot;
    131        1.1   thorpej 	ph->ph_pc = pc;
    132        1.1   thorpej 	ph->ph_tag = tag;
    133        1.1   thorpej 
    134        1.1   thorpej 	if (bus_space_map(iot, PIIX_REG_ELCR, PIIX_REG_ELCR_SIZE, 0,
    135        1.1   thorpej 	    &ph->ph_elcr_ioh) != 0) {
    136        1.1   thorpej 		free(ph, M_DEVBUF);
    137        1.1   thorpej 		return (1);
    138        1.1   thorpej 	}
    139        1.1   thorpej 
    140        1.2      soda #ifdef PIIX_DEBUG
    141        1.2      soda 	piix_pir_dump(ph);
    142        1.2      soda #endif
    143        1.1   thorpej 	*ptagp = &piix_pci_icu;
    144        1.1   thorpej 	*phandp = ph;
    145        1.1   thorpej 	return (0);
    146        1.1   thorpej }
    147        1.1   thorpej 
    148       1.11  jmcneill void
    149       1.11  jmcneill piix_uninit(pciintr_icu_handle_t v)
    150       1.11  jmcneill {
    151       1.11  jmcneill 	struct piix_handle *ph = v;
    152       1.11  jmcneill 
    153       1.11  jmcneill 	if (ph == NULL)
    154       1.11  jmcneill 		return;
    155       1.11  jmcneill 
    156       1.11  jmcneill 	bus_space_unmap(ph->ph_iot, ph->ph_elcr_ioh, PIIX_REG_ELCR_SIZE);
    157       1.11  jmcneill 
    158       1.11  jmcneill 	return;
    159       1.11  jmcneill }
    160       1.11  jmcneill 
    161        1.1   thorpej int
    162        1.7     kochi ich_init(pci_chipset_tag_t pc, bus_space_tag_t iot, pcitag_t tag,
    163        1.7     kochi     pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp)
    164        1.6     kochi {
    165        1.6     kochi 	int rv;
    166        1.6     kochi 
    167        1.6     kochi 	rv = piix_init(pc, iot, tag, ptagp, phandp);
    168        1.6     kochi 
    169        1.6     kochi 	if (rv == 0) {
    170        1.6     kochi 		piix_max_link = 7;
    171        1.6     kochi 		*ptagp = &ich_pci_icu;
    172        1.8     kochi 
    173        1.8     kochi #ifdef PIIX_DEBUG
    174        1.8     kochi 		ich_pir_dump(*phandp);
    175        1.8     kochi #endif
    176        1.6     kochi 	}
    177        1.6     kochi 
    178        1.6     kochi 	return (rv);
    179        1.6     kochi }
    180        1.6     kochi 
    181        1.6     kochi int
    182       1.13  christos piix_getclink(pciintr_icu_handle_t v, int link, int *clinkp)
    183        1.1   thorpej {
    184        1.2      soda 	DPRINTF(("PIIX link value 0x%x: ", link));
    185        1.1   thorpej 
    186        1.1   thorpej 	/* Pattern 1: simple. */
    187        1.1   thorpej 	if (PIIX_LEGAL_LINK(link - 1)) {
    188        1.1   thorpej 		*clinkp = link - 1;
    189        1.2      soda 		DPRINTF(("PIRQ %d (simple)\n", *clinkp));
    190        1.1   thorpej 		return (0);
    191        1.1   thorpej 	}
    192        1.1   thorpej 
    193        1.1   thorpej 	/* Pattern 2: configuration register offset */
    194        1.1   thorpej 	if (link >= 0x60 && link <= 0x63) {
    195        1.1   thorpej 		*clinkp = link - 0x60;
    196        1.2      soda 		DPRINTF(("PIRQ %d (register offset)\n", *clinkp));
    197        1.4  explorer 		return (0);
    198        1.4  explorer 	}
    199        1.4  explorer 
    200        1.4  explorer 	/*
    201        1.4  explorer 	 * XXX Pattern 3: configuration register offset 1
    202        1.4  explorer 	 *  Some BIOS return 0x68, 0x69
    203        1.4  explorer 	 */
    204        1.4  explorer 	if (link >= 0x68 && link <= 0x69) {
    205        1.4  explorer 		*clinkp = link - 0x67;
    206        1.4  explorer 		DPRINTF(("PIRQ %d (register offset 1)\n", *clinkp));
    207        1.1   thorpej 		return (0);
    208        1.1   thorpej 	}
    209        1.1   thorpej 
    210        1.2      soda 	DPRINTF(("bogus IRQ selection source\n"));
    211        1.1   thorpej 	return (1);
    212        1.1   thorpej }
    213        1.1   thorpej 
    214        1.1   thorpej int
    215        1.7     kochi ich_getclink(pciintr_icu_handle_t v, int link, int *clinkp)
    216        1.6     kochi {
    217        1.6     kochi 	/*
    218        1.6     kochi 	 * configuration registers 0x68..0x6b are for PIRQ[EFGH]
    219        1.6     kochi 	 */
    220        1.6     kochi 	if (link >= 0x68 && link <= 0x6b) {
    221        1.6     kochi 		*clinkp = link - 0x68 + 4;
    222        1.8     kochi 		DPRINTF(("PIIX link value 0x%x: ", link));
    223        1.6     kochi 		DPRINTF(("PIRQ %d (register offset)\n", *clinkp));
    224        1.6     kochi 		return (0);
    225        1.6     kochi 	}
    226        1.6     kochi 
    227        1.6     kochi 	return piix_getclink(v, link, clinkp);
    228        1.6     kochi }
    229        1.6     kochi 
    230        1.6     kochi int
    231        1.7     kochi piix_get_intr(pciintr_icu_handle_t v, int clink, int *irqp)
    232        1.1   thorpej {
    233        1.1   thorpej 	struct piix_handle *ph = v;
    234        1.1   thorpej 	int shift;
    235        1.1   thorpej 	pcireg_t reg;
    236        1.6     kochi 	int cfgreg;
    237        1.1   thorpej 
    238        1.1   thorpej 	if (PIIX_LEGAL_LINK(clink) == 0)
    239        1.1   thorpej 		return (1);
    240        1.1   thorpej 
    241        1.6     kochi 	cfgreg = clink <= 3 ? PIIX_CFG_PIRQ : PIIX_CFG_PIRQ2;
    242        1.6     kochi 	clink &= 0x03;
    243        1.6     kochi 
    244        1.6     kochi 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, cfgreg);
    245        1.1   thorpej 	shift = clink << 3;
    246        1.1   thorpej 	if ((reg >> shift) & PIIX_CFG_PIRQ_NONE)
    247        1.5      fvdl 		*irqp = X86_PCI_INTERRUPT_LINE_NO_CONNECTION;
    248        1.1   thorpej 	else
    249        1.1   thorpej 		*irqp = PIIX_PIRQ(reg, clink);
    250        1.1   thorpej 
    251        1.1   thorpej 	return (0);
    252        1.1   thorpej }
    253        1.1   thorpej 
    254        1.1   thorpej int
    255        1.7     kochi piix_set_intr(pciintr_icu_handle_t v, int clink, int irq)
    256        1.1   thorpej {
    257        1.1   thorpej 	struct piix_handle *ph = v;
    258        1.1   thorpej 	int shift;
    259        1.1   thorpej 	pcireg_t reg;
    260        1.6     kochi 	int cfgreg;
    261        1.1   thorpej 
    262        1.1   thorpej 	if (PIIX_LEGAL_LINK(clink) == 0 || PIIX_LEGAL_IRQ(irq) == 0)
    263        1.1   thorpej 		return (1);
    264        1.1   thorpej 
    265        1.6     kochi 	cfgreg = clink <= 3 ? PIIX_CFG_PIRQ : PIIX_CFG_PIRQ2;
    266        1.6     kochi 	clink &= 0x03;
    267        1.6     kochi 
    268        1.6     kochi 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, cfgreg);
    269        1.1   thorpej 	shift = clink << 3;
    270        1.1   thorpej 	reg &= ~((PIIX_CFG_PIRQ_NONE | PIIX_CFG_PIRQ_MASK) << shift);
    271        1.1   thorpej 	reg |= irq << shift;
    272        1.6     kochi 	pci_conf_write(ph->ph_pc, ph->ph_tag, cfgreg, reg);
    273        1.1   thorpej 
    274        1.1   thorpej 	return (0);
    275        1.1   thorpej }
    276        1.1   thorpej 
    277        1.1   thorpej int
    278        1.7     kochi piix_get_trigger(pciintr_icu_handle_t v, int irq, int *triggerp)
    279        1.1   thorpej {
    280        1.1   thorpej 	struct piix_handle *ph = v;
    281        1.1   thorpej 	int off, bit;
    282       1.10     perry 	uint8_t elcr;
    283        1.1   thorpej 
    284        1.1   thorpej 	if (PIIX_LEGAL_IRQ(irq) == 0)
    285        1.1   thorpej 		return (1);
    286        1.1   thorpej 
    287        1.1   thorpej 	off = (irq > 7) ? 1 : 0;
    288        1.1   thorpej 	bit = irq & 7;
    289        1.1   thorpej 
    290        1.1   thorpej 	elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
    291        1.1   thorpej 	if (elcr & (1 << bit))
    292        1.1   thorpej 		*triggerp = IST_LEVEL;
    293        1.1   thorpej 	else
    294        1.1   thorpej 		*triggerp = IST_EDGE;
    295        1.1   thorpej 
    296        1.1   thorpej 	return (0);
    297        1.1   thorpej }
    298        1.1   thorpej 
    299        1.1   thorpej int
    300        1.7     kochi piix_set_trigger(pciintr_icu_handle_t v, int irq, int trigger)
    301        1.1   thorpej {
    302        1.1   thorpej 	struct piix_handle *ph = v;
    303        1.1   thorpej 	int off, bit;
    304       1.10     perry 	uint8_t elcr;
    305        1.1   thorpej 
    306        1.1   thorpej 	if (PIIX_LEGAL_IRQ(irq) == 0)
    307        1.1   thorpej 		return (1);
    308        1.1   thorpej 
    309        1.1   thorpej 	off = (irq > 7) ? 1 : 0;
    310        1.1   thorpej 	bit = irq & 7;
    311        1.1   thorpej 
    312        1.1   thorpej 	elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
    313        1.1   thorpej 	if (trigger == IST_LEVEL)
    314        1.1   thorpej 		elcr |= (1 << bit);
    315        1.1   thorpej 	else
    316        1.1   thorpej 		elcr &= ~(1 << bit);
    317        1.1   thorpej 	bus_space_write_1(ph->ph_iot, ph->ph_elcr_ioh, off, elcr);
    318        1.1   thorpej 
    319        1.1   thorpej 	return (0);
    320        1.1   thorpej }
    321        1.2      soda 
    322        1.2      soda #ifdef PIIX_DEBUG
    323        1.2      soda void
    324        1.7     kochi piix_pir_dump(struct piix_handle *ph)
    325        1.2      soda {
    326        1.2      soda 	int i, irq;
    327        1.2      soda 	pcireg_t irqs = pci_conf_read(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ);
    328       1.10     perry 	uint8_t elcr[2];
    329        1.2      soda 
    330        1.2      soda 	elcr[0] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 0);
    331        1.2      soda 	elcr[1] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 1);
    332        1.2      soda 
    333        1.2      soda 	for (i = 0; i < 4; i++) {
    334        1.2      soda 		irq = PIIX_PIRQ(irqs, i);
    335        1.2      soda 		if (irq & PIIX_CFG_PIRQ_NONE)
    336        1.2      soda 			printf("PIIX PIRQ %d: irq none (0x%x)\n", i, irq);
    337        1.2      soda 		else
    338        1.2      soda 			printf("PIIX PIRQ %d: irq %d\n", i, irq);
    339        1.2      soda 	}
    340        1.2      soda 	printf("PIIX irq:");
    341        1.2      soda 	for (i = 0; i < 16; i++)
    342        1.2      soda 		printf(" %2d", i);
    343        1.2      soda 	printf("\n");
    344        1.2      soda 	printf(" trigger:");
    345        1.2      soda 	for (i = 0; i < 16; i++)
    346        1.2      soda 		printf("  %c", (elcr[(i & 8) ? 1 : 0] & (1 << (i & 7))) ?
    347        1.2      soda 		       'L' : 'E');
    348        1.2      soda 	printf("\n");
    349        1.2      soda }
    350        1.8     kochi 
    351        1.8     kochi void
    352        1.8     kochi ich_pir_dump(struct piix_handle *ph)
    353        1.8     kochi {
    354        1.8     kochi 	int i, irq;
    355        1.8     kochi 	pcireg_t irqs = pci_conf_read(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ2);
    356        1.8     kochi 
    357        1.8     kochi 	for (i = 0; i < 4; i++) {
    358        1.8     kochi 		irq = PIIX_PIRQ(irqs, i);
    359        1.8     kochi 		if (irq & PIIX_CFG_PIRQ_NONE)
    360        1.8     kochi 			printf("PIIX PIRQ %d: irq none (0x%x)\n", i+4, irq);
    361        1.8     kochi 		else
    362        1.8     kochi 			printf("PIIX PIRQ %d: irq %d\n", i+4, irq);
    363        1.8     kochi 	}
    364        1.8     kochi }
    365        1.2      soda #endif /* PIIX_DEBUG */
    366