Home | History | Annotate | Line # | Download | only in pci
piix.c revision 1.4
      1  1.4  explorer /*	$NetBSD: piix.c,v 1.4 2002/12/30 21:55:05 explorer 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  * 3. All advertising materials mentioning features or use of this software
     20  1.1   thorpej  *    must display the following acknowledgement:
     21  1.1   thorpej  *	This product includes software developed by the NetBSD
     22  1.1   thorpej  *	Foundation, Inc. and its contributors.
     23  1.1   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1   thorpej  *    contributors may be used to endorse or promote products derived
     25  1.1   thorpej  *    from this software without specific prior written permission.
     26  1.1   thorpej  *
     27  1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1   thorpej  */
     39  1.1   thorpej 
     40  1.1   thorpej /*
     41  1.1   thorpej  * Copyright (c) 1999, by UCHIYAMA Yasushi
     42  1.1   thorpej  * All rights reserved.
     43  1.1   thorpej  *
     44  1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     45  1.1   thorpej  * modification, are permitted provided that the following conditions
     46  1.1   thorpej  * are met:
     47  1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     48  1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     49  1.1   thorpej  * 2. The name of the developer may NOT be used to endorse or promote products
     50  1.1   thorpej  *    derived from this software without specific prior written permission.
     51  1.1   thorpej  *
     52  1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     53  1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     54  1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     55  1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     56  1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     57  1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     58  1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     59  1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     60  1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     61  1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     62  1.1   thorpej  * SUCH DAMAGE.
     63  1.1   thorpej  */
     64  1.1   thorpej 
     65  1.1   thorpej /*
     66  1.1   thorpej  * Support for the Intel PIIX PCI-ISA bridge interrupt controller.
     67  1.1   thorpej  */
     68  1.3     lukem 
     69  1.3     lukem #include <sys/cdefs.h>
     70  1.4  explorer __KERNEL_RCSID(0, "$NetBSD: piix.c,v 1.4 2002/12/30 21:55:05 explorer Exp $");
     71  1.1   thorpej 
     72  1.1   thorpej #include <sys/param.h>
     73  1.1   thorpej #include <sys/systm.h>
     74  1.1   thorpej #include <sys/device.h>
     75  1.1   thorpej #include <sys/malloc.h>
     76  1.1   thorpej 
     77  1.1   thorpej #include <machine/intr.h>
     78  1.1   thorpej #include <machine/bus.h>
     79  1.1   thorpej 
     80  1.1   thorpej #include <dev/pci/pcivar.h>
     81  1.1   thorpej #include <dev/pci/pcireg.h>
     82  1.1   thorpej #include <dev/pci/pcidevs.h>
     83  1.1   thorpej 
     84  1.1   thorpej #include <i386/pci/pci_intr_fixup.h>
     85  1.1   thorpej #include <i386/pci/piixreg.h>
     86  1.1   thorpej #include <i386/pci/piixvar.h>
     87  1.1   thorpej 
     88  1.2      soda #ifdef PIIX_DEBUG
     89  1.2      soda #define	DPRINTF(arg) printf arg
     90  1.2      soda #else
     91  1.2      soda #define	DPRINTF(arg)
     92  1.2      soda #endif
     93  1.2      soda 
     94  1.1   thorpej int	piix_getclink __P((pciintr_icu_handle_t, int, int *));
     95  1.1   thorpej int	piix_get_intr __P((pciintr_icu_handle_t, int, int *));
     96  1.1   thorpej int	piix_set_intr __P((pciintr_icu_handle_t, int, int));
     97  1.2      soda #ifdef PIIX_DEBUG
     98  1.2      soda void	piix_pir_dump __P((struct piix_handle *));
     99  1.2      soda #endif
    100  1.1   thorpej 
    101  1.1   thorpej const struct pciintr_icu piix_pci_icu = {
    102  1.1   thorpej 	piix_getclink,
    103  1.1   thorpej 	piix_get_intr,
    104  1.1   thorpej 	piix_set_intr,
    105  1.1   thorpej 	piix_get_trigger,
    106  1.1   thorpej 	piix_set_trigger,
    107  1.1   thorpej };
    108  1.1   thorpej 
    109  1.1   thorpej int
    110  1.1   thorpej piix_init(pc, iot, tag, ptagp, phandp)
    111  1.1   thorpej 	pci_chipset_tag_t pc;
    112  1.1   thorpej 	bus_space_tag_t iot;
    113  1.1   thorpej 	pcitag_t tag;
    114  1.1   thorpej 	pciintr_icu_tag_t *ptagp;
    115  1.1   thorpej 	pciintr_icu_handle_t *phandp;
    116  1.1   thorpej {
    117  1.1   thorpej 	struct piix_handle *ph;
    118  1.1   thorpej 
    119  1.1   thorpej 	ph = malloc(sizeof(*ph), M_DEVBUF, M_NOWAIT);
    120  1.1   thorpej 	if (ph == NULL)
    121  1.1   thorpej 		return (1);
    122  1.1   thorpej 
    123  1.1   thorpej 	ph->ph_iot = iot;
    124  1.1   thorpej 	ph->ph_pc = pc;
    125  1.1   thorpej 	ph->ph_tag = tag;
    126  1.1   thorpej 
    127  1.1   thorpej 	if (bus_space_map(iot, PIIX_REG_ELCR, PIIX_REG_ELCR_SIZE, 0,
    128  1.1   thorpej 	    &ph->ph_elcr_ioh) != 0) {
    129  1.1   thorpej 		free(ph, M_DEVBUF);
    130  1.1   thorpej 		return (1);
    131  1.1   thorpej 	}
    132  1.1   thorpej 
    133  1.2      soda #ifdef PIIX_DEBUG
    134  1.2      soda 	piix_pir_dump(ph);
    135  1.2      soda #endif
    136  1.1   thorpej 	*ptagp = &piix_pci_icu;
    137  1.1   thorpej 	*phandp = ph;
    138  1.1   thorpej 	return (0);
    139  1.1   thorpej }
    140  1.1   thorpej 
    141  1.1   thorpej int
    142  1.1   thorpej piix_getclink(v, link, clinkp)
    143  1.1   thorpej 	pciintr_icu_handle_t v;
    144  1.1   thorpej 	int link, *clinkp;
    145  1.1   thorpej {
    146  1.2      soda 	DPRINTF(("PIIX link value 0x%x: ", link));
    147  1.1   thorpej 
    148  1.1   thorpej 	/* Pattern 1: simple. */
    149  1.1   thorpej 	if (PIIX_LEGAL_LINK(link - 1)) {
    150  1.1   thorpej 		*clinkp = link - 1;
    151  1.2      soda 		DPRINTF(("PIRQ %d (simple)\n", *clinkp));
    152  1.1   thorpej 		return (0);
    153  1.1   thorpej 	}
    154  1.1   thorpej 
    155  1.1   thorpej 	/* Pattern 2: configuration register offset */
    156  1.1   thorpej 	if (link >= 0x60 && link <= 0x63) {
    157  1.1   thorpej 		*clinkp = link - 0x60;
    158  1.2      soda 		DPRINTF(("PIRQ %d (register offset)\n", *clinkp));
    159  1.4  explorer 		return (0);
    160  1.4  explorer 	}
    161  1.4  explorer 
    162  1.4  explorer 	/*
    163  1.4  explorer 	 * XXX Pattern 3: configuration register offset 1
    164  1.4  explorer 	 *  Some BIOS return 0x68, 0x69
    165  1.4  explorer 	 */
    166  1.4  explorer 	if (link >= 0x68 && link <= 0x69) {
    167  1.4  explorer 		*clinkp = link - 0x67;
    168  1.4  explorer 		DPRINTF(("PIRQ %d (register offset 1)\n", *clinkp));
    169  1.1   thorpej 		return (0);
    170  1.1   thorpej 	}
    171  1.1   thorpej 
    172  1.2      soda 	DPRINTF(("bogus IRQ selection source\n"));
    173  1.1   thorpej 	return (1);
    174  1.1   thorpej }
    175  1.1   thorpej 
    176  1.1   thorpej int
    177  1.1   thorpej piix_get_intr(v, clink, irqp)
    178  1.1   thorpej 	pciintr_icu_handle_t v;
    179  1.1   thorpej 	int clink, *irqp;
    180  1.1   thorpej {
    181  1.1   thorpej 	struct piix_handle *ph = v;
    182  1.1   thorpej 	int shift;
    183  1.1   thorpej 	pcireg_t reg;
    184  1.1   thorpej 
    185  1.1   thorpej 	if (PIIX_LEGAL_LINK(clink) == 0)
    186  1.1   thorpej 		return (1);
    187  1.1   thorpej 
    188  1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ);
    189  1.1   thorpej 	shift = clink << 3;
    190  1.1   thorpej 	if ((reg >> shift) & PIIX_CFG_PIRQ_NONE)
    191  1.2      soda 		*irqp = I386_PCI_INTERRUPT_LINE_NO_CONNECTION;
    192  1.1   thorpej 	else
    193  1.1   thorpej 		*irqp = PIIX_PIRQ(reg, clink);
    194  1.1   thorpej 
    195  1.1   thorpej 	return (0);
    196  1.1   thorpej }
    197  1.1   thorpej 
    198  1.1   thorpej int
    199  1.1   thorpej piix_set_intr(v, clink, irq)
    200  1.1   thorpej 	pciintr_icu_handle_t v;
    201  1.1   thorpej 	int clink, irq;
    202  1.1   thorpej {
    203  1.1   thorpej 	struct piix_handle *ph = v;
    204  1.1   thorpej 	int shift;
    205  1.1   thorpej 	pcireg_t reg;
    206  1.1   thorpej 
    207  1.1   thorpej 	if (PIIX_LEGAL_LINK(clink) == 0 || PIIX_LEGAL_IRQ(irq) == 0)
    208  1.1   thorpej 		return (1);
    209  1.1   thorpej 
    210  1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ);
    211  1.1   thorpej 	shift = clink << 3;
    212  1.1   thorpej 	reg &= ~((PIIX_CFG_PIRQ_NONE | PIIX_CFG_PIRQ_MASK) << shift);
    213  1.1   thorpej 	reg |= irq << shift;
    214  1.1   thorpej 	pci_conf_write(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ, reg);
    215  1.1   thorpej 
    216  1.1   thorpej 	return (0);
    217  1.1   thorpej }
    218  1.1   thorpej 
    219  1.1   thorpej int
    220  1.1   thorpej piix_get_trigger(v, irq, triggerp)
    221  1.1   thorpej 	pciintr_icu_handle_t v;
    222  1.1   thorpej 	int irq, *triggerp;
    223  1.1   thorpej {
    224  1.1   thorpej 	struct piix_handle *ph = v;
    225  1.1   thorpej 	int off, bit;
    226  1.1   thorpej 	u_int8_t elcr;
    227  1.1   thorpej 
    228  1.1   thorpej 	if (PIIX_LEGAL_IRQ(irq) == 0)
    229  1.1   thorpej 		return (1);
    230  1.1   thorpej 
    231  1.1   thorpej 	off = (irq > 7) ? 1 : 0;
    232  1.1   thorpej 	bit = irq & 7;
    233  1.1   thorpej 
    234  1.1   thorpej 	elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
    235  1.1   thorpej 	if (elcr & (1 << bit))
    236  1.1   thorpej 		*triggerp = IST_LEVEL;
    237  1.1   thorpej 	else
    238  1.1   thorpej 		*triggerp = IST_EDGE;
    239  1.1   thorpej 
    240  1.1   thorpej 	return (0);
    241  1.1   thorpej }
    242  1.1   thorpej 
    243  1.1   thorpej int
    244  1.1   thorpej piix_set_trigger(v, irq, trigger)
    245  1.1   thorpej 	pciintr_icu_handle_t v;
    246  1.1   thorpej 	int irq, trigger;
    247  1.1   thorpej {
    248  1.1   thorpej 	struct piix_handle *ph = v;
    249  1.1   thorpej 	int off, bit;
    250  1.1   thorpej 	u_int8_t elcr;
    251  1.1   thorpej 
    252  1.1   thorpej 	if (PIIX_LEGAL_IRQ(irq) == 0)
    253  1.1   thorpej 		return (1);
    254  1.1   thorpej 
    255  1.1   thorpej 	off = (irq > 7) ? 1 : 0;
    256  1.1   thorpej 	bit = irq & 7;
    257  1.1   thorpej 
    258  1.1   thorpej 	elcr = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, off);
    259  1.1   thorpej 	if (trigger == IST_LEVEL)
    260  1.1   thorpej 		elcr |= (1 << bit);
    261  1.1   thorpej 	else
    262  1.1   thorpej 		elcr &= ~(1 << bit);
    263  1.1   thorpej 	bus_space_write_1(ph->ph_iot, ph->ph_elcr_ioh, off, elcr);
    264  1.1   thorpej 
    265  1.1   thorpej 	return (0);
    266  1.1   thorpej }
    267  1.2      soda 
    268  1.2      soda #ifdef PIIX_DEBUG
    269  1.2      soda void
    270  1.2      soda piix_pir_dump(ph)
    271  1.2      soda 	struct piix_handle *ph;
    272  1.2      soda {
    273  1.2      soda 	int i, irq;
    274  1.2      soda 	pcireg_t irqs = pci_conf_read(ph->ph_pc, ph->ph_tag, PIIX_CFG_PIRQ);
    275  1.2      soda 	u_int8_t elcr[2];
    276  1.2      soda 
    277  1.2      soda 	elcr[0] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 0);
    278  1.2      soda 	elcr[1] = bus_space_read_1(ph->ph_iot, ph->ph_elcr_ioh, 1);
    279  1.2      soda 
    280  1.2      soda 	for (i = 0; i < 4; i++) {
    281  1.2      soda 		irq = PIIX_PIRQ(irqs, i);
    282  1.2      soda 		if (irq & PIIX_CFG_PIRQ_NONE)
    283  1.2      soda 			printf("PIIX PIRQ %d: irq none (0x%x)\n", i, irq);
    284  1.2      soda 		else
    285  1.2      soda 			printf("PIIX PIRQ %d: irq %d\n", i, irq);
    286  1.2      soda 	}
    287  1.2      soda 	printf("PIIX irq:");
    288  1.2      soda 	for (i = 0; i < 16; i++)
    289  1.2      soda 		printf(" %2d", i);
    290  1.2      soda 	printf("\n");
    291  1.2      soda 	printf(" trigger:");
    292  1.2      soda 	for (i = 0; i < 16; i++)
    293  1.2      soda 		printf("  %c", (elcr[(i & 8) ? 1 : 0] & (1 << (i & 7))) ?
    294  1.2      soda 		       'L' : 'E');
    295  1.2      soda 	printf("\n");
    296  1.2      soda }
    297  1.2      soda #endif /* PIIX_DEBUG */
    298