via82c586.c revision 1.6.12.1       1  1.6.12.1     yamt /*	$NetBSD: via82c586.c,v 1.6.12.1 2006/06/21 14:52:31 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  * 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 VIA 82c586 PCI-ISA bridge interrupt controller.
     67       1.1  thorpej  */
     68       1.4    lukem 
     69       1.4    lukem #include <sys/cdefs.h>
     70  1.6.12.1     yamt __KERNEL_RCSID(0, "$NetBSD: via82c586.c,v 1.6.12.1 2006/06/21 14:52:31 yamt 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 
     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/via82c586reg.h>
     85       1.1  thorpej #include <i386/pci/piixvar.h>
     86       1.1  thorpej 
     87       1.6    kochi int	via82c586_getclink(pciintr_icu_handle_t, int, int *);
     88       1.6    kochi int	via82c586_get_intr(pciintr_icu_handle_t, int, int *);
     89       1.6    kochi int	via82c586_set_intr(pciintr_icu_handle_t, int, int);
     90       1.6    kochi int	via82c586_get_trigger(pciintr_icu_handle_t, int, int *);
     91       1.6    kochi int	via82c586_set_trigger(pciintr_icu_handle_t, int, int);
     92       1.1  thorpej 
     93       1.1  thorpej const struct pciintr_icu via82c586_pci_icu = {
     94       1.1  thorpej 	via82c586_getclink,
     95       1.1  thorpej 	via82c586_get_intr,
     96       1.1  thorpej 	via82c586_set_intr,
     97       1.1  thorpej 	via82c586_get_trigger,
     98       1.1  thorpej 	via82c586_set_trigger,
     99       1.1  thorpej };
    100       1.1  thorpej 
    101       1.1  thorpej const int vp3_cfg_trigger_shift[] = {
    102       1.1  thorpej 	VP3_CFG_TRIGGER_SHIFT_PIRQA,
    103       1.1  thorpej 	VP3_CFG_TRIGGER_SHIFT_PIRQB,
    104       1.1  thorpej 	VP3_CFG_TRIGGER_SHIFT_PIRQC,
    105       1.1  thorpej 	VP3_CFG_TRIGGER_SHIFT_PIRQD,
    106       1.1  thorpej };
    107       1.1  thorpej 
    108       1.1  thorpej #define	VP3_TRIGGER(reg, pirq)	(((reg) >> vp3_cfg_trigger_shift[(pirq)]) & \
    109       1.1  thorpej 				 VP3_CFG_TRIGGER_MASK)
    110       1.1  thorpej 
    111       1.1  thorpej const int vp3_cfg_intr_shift[] = {
    112       1.1  thorpej 	VP3_CFG_INTR_SHIFT_PIRQA,
    113       1.1  thorpej 	VP3_CFG_INTR_SHIFT_PIRQB,
    114       1.1  thorpej 	VP3_CFG_INTR_SHIFT_PIRQC,
    115       1.1  thorpej 	VP3_CFG_INTR_SHIFT_PIRQD,
    116  1.6.12.1     yamt 	VP3_CFG_INTR_SHIFT_PIRQ0,
    117  1.6.12.1     yamt 	VP3_CFG_INTR_SHIFT_PIRQ1,
    118  1.6.12.1     yamt 	VP3_CFG_INTR_SHIFT_PIRQ2,
    119       1.1  thorpej };
    120       1.1  thorpej 
    121       1.3  tsutsui #define	VP3_PIRQ(reg, pirq)	(((reg) >> vp3_cfg_intr_shift[(pirq)]) & \
    122       1.1  thorpej 				 VP3_CFG_INTR_MASK)
    123       1.1  thorpej 
    124       1.1  thorpej int
    125       1.6    kochi via82c586_init(pci_chipset_tag_t pc, bus_space_tag_t iot, pcitag_t tag,
    126       1.6    kochi     pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp)
    127       1.1  thorpej {
    128       1.1  thorpej 	pcireg_t reg;
    129       1.1  thorpej 
    130       1.1  thorpej 	if (piix_init(pc, iot, tag, ptagp, phandp) == 0) {
    131       1.1  thorpej 		*ptagp = &via82c586_pci_icu;
    132       1.1  thorpej 
    133       1.1  thorpej 		/*
    134       1.1  thorpej 		 * Enable EISA ELCR.
    135       1.1  thorpej 		 */
    136       1.1  thorpej 		reg = pci_conf_read(pc, tag, VP3_CFG_KBDMISCCTRL12_REG);
    137       1.1  thorpej 		reg |= VP3_CFG_MISCCTRL2_EISA4D04D1PORT_ENABLE <<
    138       1.1  thorpej 		    VP3_CFG_MISCCTRL2_SHIFT;
    139       1.1  thorpej 		pci_conf_write(pc, tag, VP3_CFG_KBDMISCCTRL12_REG, reg);
    140       1.1  thorpej 
    141       1.1  thorpej 		return (0);
    142       1.1  thorpej 	}
    143       1.1  thorpej 
    144       1.1  thorpej 	return (1);
    145       1.1  thorpej }
    146       1.1  thorpej 
    147       1.1  thorpej int
    148       1.6    kochi via82c586_getclink(pciintr_icu_handle_t v, int link, int *clinkp)
    149       1.1  thorpej {
    150       1.1  thorpej 
    151       1.1  thorpej 	if (VP3_LEGAL_LINK(link - 1)) {
    152       1.1  thorpej 		*clinkp = link - 1;
    153       1.1  thorpej 		return (0);
    154       1.1  thorpej 	}
    155       1.1  thorpej 
    156       1.1  thorpej 	return (1);
    157       1.1  thorpej }
    158       1.1  thorpej 
    159       1.1  thorpej int
    160       1.6    kochi via82c586_get_intr(pciintr_icu_handle_t v, int clink, int *irqp)
    161       1.1  thorpej {
    162       1.1  thorpej 	struct piix_handle *ph = v;
    163       1.1  thorpej 	pcireg_t reg;
    164       1.1  thorpej 	int val;
    165       1.1  thorpej 
    166       1.1  thorpej 	if (VP3_LEGAL_LINK(clink) == 0)
    167       1.1  thorpej 		return (1);
    168       1.1  thorpej 
    169       1.1  thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG);
    170       1.1  thorpej 	val = VP3_PIRQ(reg, clink);
    171       1.2     soda 	*irqp = (val == VP3_PIRQ_NONE) ?
    172       1.5     fvdl 	    X86_PCI_INTERRUPT_LINE_NO_CONNECTION : val;
    173       1.1  thorpej 
    174       1.1  thorpej 	return (0);
    175       1.1  thorpej }
    176       1.1  thorpej 
    177       1.1  thorpej int
    178       1.6    kochi via82c586_set_intr(pciintr_icu_handle_t v, int clink, int irq)
    179       1.1  thorpej {
    180       1.1  thorpej 	struct piix_handle *ph = v;
    181       1.1  thorpej 	int shift, val;
    182       1.1  thorpej 	pcireg_t reg;
    183       1.1  thorpej 
    184       1.1  thorpej 	if (VP3_LEGAL_LINK(clink) == 0 || VP3_LEGAL_IRQ(irq) == 0)
    185       1.1  thorpej 		return (1);
    186       1.1  thorpej 
    187       1.1  thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG);
    188       1.1  thorpej 	via82c586_get_intr(v, clink, &val);
    189       1.1  thorpej 	shift = vp3_cfg_intr_shift[clink];
    190       1.1  thorpej 	reg &= ~(VP3_CFG_INTR_MASK << shift);
    191       1.1  thorpej 	reg |= (irq << shift);
    192       1.1  thorpej 	pci_conf_write(ph->ph_pc, ph->ph_tag, VP3_CFG_PIRQ_REG, reg);
    193       1.1  thorpej 	if (via82c586_get_intr(v, clink, &val) != 0 ||
    194       1.1  thorpej 	    val != irq)
    195       1.1  thorpej 		return (1);
    196       1.1  thorpej 
    197       1.1  thorpej 	return (0);
    198       1.1  thorpej }
    199       1.1  thorpej 
    200       1.1  thorpej int
    201       1.6    kochi via82c586_get_trigger(pciintr_icu_handle_t v, int irq, int *triggerp)
    202       1.1  thorpej {
    203       1.1  thorpej 	struct piix_handle *ph = v;
    204       1.1  thorpej 	int i, error, check_consistency, pciirq, pcitrigger = IST_NONE;
    205       1.1  thorpej 	pcireg_t reg;
    206       1.1  thorpej 
    207       1.1  thorpej 	if (VP3_LEGAL_IRQ(irq) == 0)
    208       1.1  thorpej 		return (1);
    209       1.1  thorpej 
    210       1.1  thorpej 	check_consistency = 0;
    211       1.1  thorpej 	for (i = 0; i <= 3; i++) {
    212       1.1  thorpej 		via82c586_get_intr(v, i, &pciirq);
    213       1.1  thorpej 		if (pciirq == irq) {
    214       1.1  thorpej 			reg = pci_conf_read(ph->ph_pc, ph->ph_tag,
    215       1.1  thorpej 			    VP3_CFG_PIRQ_REG);
    216       1.1  thorpej 			if (VP3_TRIGGER(reg, i) == VP3_CFG_TRIGGER_EDGE)
    217       1.1  thorpej 				pcitrigger = IST_EDGE;
    218       1.1  thorpej 			else
    219       1.1  thorpej 				pcitrigger = IST_LEVEL;
    220       1.1  thorpej 			check_consistency = 1;
    221       1.1  thorpej 			break;
    222       1.1  thorpej 		}
    223       1.1  thorpej 	}
    224       1.1  thorpej 
    225       1.1  thorpej 	error = piix_get_trigger(v, irq, triggerp);
    226       1.1  thorpej 	if (error == 0 && check_consistency && pcitrigger != *triggerp)
    227       1.1  thorpej 		return (1);
    228       1.1  thorpej 	return (error);
    229       1.1  thorpej }
    230       1.1  thorpej 
    231       1.1  thorpej int
    232       1.6    kochi via82c586_set_trigger(pciintr_icu_handle_t v, int irq, int trigger)
    233       1.1  thorpej {
    234       1.1  thorpej 	struct piix_handle *ph = v;
    235       1.1  thorpej 	int i, pciirq, shift, testtrig;
    236       1.1  thorpej 	pcireg_t reg;
    237       1.1  thorpej 
    238       1.1  thorpej 	if (VP3_LEGAL_IRQ(irq) == 0)
    239       1.1  thorpej 		return (1);
    240       1.1  thorpej 
    241       1.1  thorpej 	for (i = 0; i <= 3; i++) {
    242       1.1  thorpej 		via82c586_get_intr(v, i, &pciirq);
    243       1.1  thorpej 		if (pciirq == irq) {
    244       1.1  thorpej 			reg = pci_conf_read(ph->ph_pc, ph->ph_tag,
    245       1.1  thorpej 			    VP3_CFG_PIRQ_REG);
    246       1.1  thorpej 			shift = vp3_cfg_trigger_shift[i];
    247       1.1  thorpej 			if (trigger == IST_LEVEL)
    248       1.1  thorpej 				reg &= ~(VP3_CFG_TRIGGER_MASK << shift);
    249       1.1  thorpej 			else
    250       1.1  thorpej 				reg |= (VP3_CFG_TRIGGER_EDGE << shift);
    251       1.1  thorpej 			pci_conf_write(ph->ph_pc, ph->ph_tag,
    252       1.1  thorpej 			    VP3_CFG_PIRQ_REG, reg);
    253       1.1  thorpej 			break;
    254       1.1  thorpej 		}
    255       1.1  thorpej 	}
    256       1.1  thorpej 
    257       1.1  thorpej 	if (piix_set_trigger(v, irq, trigger) != 0 ||
    258       1.1  thorpej 	    via82c586_get_trigger(v, irq, &testtrig) != 0 ||
    259       1.1  thorpej 	    testtrig != trigger)
    260       1.1  thorpej 		return (1);
    261       1.1  thorpej 
    262       1.1  thorpej 	return (0);
    263       1.1  thorpej }
    264