Home | History | Annotate | Line # | Download | only in pci
opti82c558.c revision 1.8.56.1
      1  1.8.56.1      yamt /*	$NetBSD: opti82c558.c,v 1.8.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.1   thorpej  * Support for the Opti 82c558 PCI-ISA bridge interrupt controller.
     60       1.1   thorpej  */
     61       1.3     lukem 
     62       1.3     lukem #include <sys/cdefs.h>
     63  1.8.56.1      yamt __KERNEL_RCSID(0, "$NetBSD: opti82c558.c,v 1.8.56.1 2008/05/16 02:22:38 yamt Exp $");
     64       1.1   thorpej 
     65       1.1   thorpej #include <sys/param.h>
     66       1.1   thorpej #include <sys/systm.h>
     67       1.1   thorpej #include <sys/device.h>
     68       1.1   thorpej #include <sys/malloc.h>
     69       1.1   thorpej 
     70       1.1   thorpej #include <machine/intr.h>
     71       1.1   thorpej #include <machine/bus.h>
     72       1.1   thorpej 
     73       1.1   thorpej #include <dev/pci/pcivar.h>
     74       1.1   thorpej #include <dev/pci/pcireg.h>
     75       1.1   thorpej #include <dev/pci/pcidevs.h>
     76       1.1   thorpej 
     77       1.1   thorpej #include <i386/pci/pci_intr_fixup.h>
     78       1.1   thorpej #include <i386/pci/opti82c558reg.h>
     79       1.1   thorpej 
     80       1.5     kochi int	opti82c558_getclink(pciintr_icu_handle_t, int, int *);
     81       1.5     kochi int	opti82c558_get_intr(pciintr_icu_handle_t, int, int *);
     82       1.5     kochi int	opti82c558_set_intr(pciintr_icu_handle_t, int, int);
     83       1.5     kochi int	opti82c558_get_trigger(pciintr_icu_handle_t, int, int *);
     84       1.5     kochi int	opti82c558_set_trigger(pciintr_icu_handle_t, int, int);
     85       1.1   thorpej 
     86       1.1   thorpej const struct pciintr_icu opti82c558_pci_icu = {
     87       1.1   thorpej 	opti82c558_getclink,
     88       1.1   thorpej 	opti82c558_get_intr,
     89       1.1   thorpej 	opti82c558_set_intr,
     90       1.1   thorpej 	opti82c558_get_trigger,
     91       1.1   thorpej 	opti82c558_set_trigger,
     92       1.1   thorpej };
     93       1.1   thorpej 
     94       1.1   thorpej struct opti82c558_handle {
     95       1.1   thorpej 	pci_chipset_tag_t ph_pc;
     96       1.1   thorpej 	pcitag_t ph_tag;
     97       1.1   thorpej };
     98       1.1   thorpej 
     99       1.1   thorpej static const int viper_pirq_decode[] = {
    100       1.1   thorpej 	-1, 5, 9, 10, 11, 12, 14, 15
    101       1.1   thorpej };
    102       1.1   thorpej 
    103       1.1   thorpej static const int viper_pirq_encode[] = {
    104       1.1   thorpej 	-1,		/* 0 */
    105       1.1   thorpej 	-1,		/* 1 */
    106       1.1   thorpej 	-1,		/* 2 */
    107       1.1   thorpej 	-1,		/* 3 */
    108       1.1   thorpej 	-1,		/* 4 */
    109       1.1   thorpej 	VIPER_PIRQ_5,	/* 5 */
    110       1.1   thorpej 	-1,		/* 6 */
    111       1.1   thorpej 	-1,		/* 7 */
    112       1.1   thorpej 	-1,		/* 8 */
    113       1.1   thorpej 	VIPER_PIRQ_9,	/* 9 */
    114       1.1   thorpej 	VIPER_PIRQ_10,	/* 10 */
    115       1.1   thorpej 	VIPER_PIRQ_11,	/* 11 */
    116       1.1   thorpej 	VIPER_PIRQ_12,	/* 12 */
    117       1.1   thorpej 	-1,		/* 13 */
    118       1.1   thorpej 	VIPER_PIRQ_14,	/* 14 */
    119       1.1   thorpej 	VIPER_PIRQ_15,	/* 15 */
    120       1.1   thorpej };
    121       1.1   thorpej 
    122       1.1   thorpej int
    123       1.8  christos opti82c558_init(pci_chipset_tag_t pc, bus_space_tag_t iot,
    124       1.5     kochi     pcitag_t tag, pciintr_icu_tag_t *ptagp, pciintr_icu_handle_t *phandp)
    125       1.1   thorpej {
    126       1.1   thorpej 	struct opti82c558_handle *ph;
    127       1.1   thorpej 
    128       1.1   thorpej 	ph = malloc(sizeof(*ph), M_DEVBUF, M_NOWAIT);
    129       1.1   thorpej 	if (ph == NULL)
    130       1.1   thorpej 		return (1);
    131       1.1   thorpej 
    132       1.1   thorpej 	ph->ph_pc = pc;
    133       1.1   thorpej 	ph->ph_tag = tag;
    134       1.1   thorpej 
    135       1.1   thorpej 	*ptagp = &opti82c558_pci_icu;
    136       1.1   thorpej 	*phandp = ph;
    137       1.1   thorpej 	return (0);
    138       1.1   thorpej }
    139       1.1   thorpej 
    140       1.1   thorpej int
    141       1.8  christos opti82c558_getclink(pciintr_icu_handle_t v, int link, int *clinkp)
    142       1.1   thorpej {
    143       1.1   thorpej 
    144       1.1   thorpej 	if (VIPER_LEGAL_LINK(link - 1)) {
    145       1.1   thorpej 		*clinkp = link - 1;
    146       1.1   thorpej 		return (0);
    147       1.1   thorpej 	}
    148       1.1   thorpej 
    149       1.1   thorpej 	return (1);
    150       1.1   thorpej }
    151       1.1   thorpej 
    152       1.1   thorpej int
    153       1.5     kochi opti82c558_get_intr(pciintr_icu_handle_t v, int clink, int *irqp)
    154       1.1   thorpej {
    155       1.1   thorpej 	struct opti82c558_handle *ph = v;
    156       1.1   thorpej 	pcireg_t reg;
    157       1.1   thorpej 	int val;
    158       1.1   thorpej 
    159       1.1   thorpej 	if (VIPER_LEGAL_LINK(clink) == 0)
    160       1.1   thorpej 		return (1);
    161       1.1   thorpej 
    162       1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ);
    163       1.1   thorpej 	val = VIPER_PIRQ(reg, clink);
    164       1.2      soda 	*irqp = (val == VIPER_PIRQ_NONE) ?
    165       1.4      fvdl 	    X86_PCI_INTERRUPT_LINE_NO_CONNECTION : viper_pirq_decode[val];
    166       1.1   thorpej 
    167       1.1   thorpej 	return (0);
    168       1.1   thorpej }
    169       1.1   thorpej 
    170       1.1   thorpej int
    171       1.5     kochi opti82c558_set_intr(pciintr_icu_handle_t v, int clink, int irq)
    172       1.1   thorpej {
    173       1.1   thorpej 	struct opti82c558_handle *ph = v;
    174       1.1   thorpej 	int shift;
    175       1.1   thorpej 	pcireg_t reg;
    176       1.1   thorpej 
    177       1.1   thorpej 	if (VIPER_LEGAL_LINK(clink) == 0 || VIPER_LEGAL_IRQ(irq) == 0)
    178       1.1   thorpej 		return (1);
    179       1.1   thorpej 
    180       1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ);
    181       1.1   thorpej 	shift = VIPER_PIRQ_SELECT_SHIFT * clink;
    182       1.1   thorpej 	reg &= ~(VIPER_PIRQ_SELECT_MASK << shift);
    183       1.1   thorpej 	reg |= (viper_pirq_encode[irq] << shift);
    184       1.1   thorpej 	pci_conf_write(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ, reg);
    185       1.1   thorpej 
    186       1.1   thorpej 	return (0);
    187       1.1   thorpej }
    188       1.1   thorpej 
    189       1.1   thorpej int
    190       1.5     kochi opti82c558_get_trigger(pciintr_icu_handle_t v, int irq, int *triggerp)
    191       1.1   thorpej {
    192       1.1   thorpej 	struct opti82c558_handle *ph = v;
    193       1.1   thorpej 	pcireg_t reg;
    194       1.1   thorpej 
    195       1.1   thorpej 	if (VIPER_LEGAL_IRQ(irq) == 0) {
    196       1.1   thorpej 		/* ISA IRQ? */
    197       1.1   thorpej 		*triggerp = IST_EDGE;
    198       1.1   thorpej 		return (0);
    199       1.1   thorpej 	}
    200       1.1   thorpej 
    201       1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ);
    202       1.1   thorpej 	if ((reg >> (VIPER_CFG_TRIGGER_SHIFT + viper_pirq_encode[irq])) & 1)
    203       1.1   thorpej 		*triggerp = IST_LEVEL;
    204       1.1   thorpej 	else
    205       1.1   thorpej 		*triggerp = IST_EDGE;
    206       1.1   thorpej 
    207       1.1   thorpej 	return (0);
    208       1.1   thorpej }
    209       1.1   thorpej 
    210       1.1   thorpej int
    211       1.5     kochi opti82c558_set_trigger(pciintr_icu_handle_t v, int irq, int trigger)
    212       1.1   thorpej {
    213       1.1   thorpej 	struct opti82c558_handle *ph = v;
    214       1.1   thorpej 	int shift;
    215       1.1   thorpej 	pcireg_t reg;
    216       1.1   thorpej 
    217       1.1   thorpej 	if (VIPER_LEGAL_IRQ(irq) == 0) {
    218       1.1   thorpej 		/* ISA IRQ? */
    219       1.1   thorpej 		return ((trigger != IST_LEVEL) ? 0 : 1);
    220       1.1   thorpej 	}
    221       1.1   thorpej 
    222       1.1   thorpej 	reg = pci_conf_read(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ);
    223       1.1   thorpej 	shift = (VIPER_CFG_TRIGGER_SHIFT + viper_pirq_encode[irq]);
    224       1.1   thorpej 	if (trigger == IST_LEVEL)
    225       1.1   thorpej 		reg |= (1 << shift);
    226       1.1   thorpej 	else
    227       1.1   thorpej 		reg &= ~(1 << shift);
    228       1.1   thorpej 	pci_conf_write(ph->ph_pc, ph->ph_tag, VIPER_CFG_PIRQ, reg);
    229       1.1   thorpej 
    230       1.1   thorpej 	return (0);
    231       1.1   thorpej }
    232