Home | History | Annotate | Line # | Download | only in pci
igsfb_pci.c revision 1.9.4.1
      1  1.9.4.1   rpaulo /*	$NetBSD: igsfb_pci.c,v 1.9.4.1 2006/09/09 02:52:18 rpaulo Exp $ */
      2      1.1      uwe 
      3      1.1      uwe /*
      4      1.7      uwe  * Copyright (c) 2002, 2003 Valeriy E. Ushakov
      5      1.1      uwe  * All rights reserved.
      6      1.1      uwe  *
      7      1.1      uwe  * Redistribution and use in source and binary forms, with or without
      8      1.1      uwe  * modification, are permitted provided that the following conditions
      9      1.1      uwe  * are met:
     10      1.1      uwe  * 1. Redistributions of source code must retain the above copyright
     11      1.1      uwe  *    notice, this list of conditions and the following disclaimer.
     12      1.1      uwe  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1      uwe  *    notice, this list of conditions and the following disclaimer in the
     14      1.1      uwe  *    documentation and/or other materials provided with the distribution.
     15      1.1      uwe  * 3. The name of the author may not be used to endorse or promote products
     16      1.1      uwe  *    derived from this software without specific prior written permission
     17      1.1      uwe  *
     18      1.1      uwe  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19      1.1      uwe  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20      1.1      uwe  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21      1.1      uwe  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22      1.1      uwe  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23      1.1      uwe  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24      1.1      uwe  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25      1.1      uwe  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26      1.1      uwe  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27      1.1      uwe  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28      1.1      uwe  */
     29      1.1      uwe 
     30      1.1      uwe /*
     31      1.3      uwe  * Integraphics Systems IGA 168x and CyberPro series.
     32      1.1      uwe  */
     33      1.1      uwe #include <sys/cdefs.h>
     34  1.9.4.1   rpaulo __KERNEL_RCSID(0, "$NetBSD: igsfb_pci.c,v 1.9.4.1 2006/09/09 02:52:18 rpaulo Exp $");
     35      1.1      uwe 
     36      1.1      uwe #include <sys/param.h>
     37      1.1      uwe #include <sys/systm.h>
     38      1.1      uwe #include <sys/kernel.h>
     39      1.1      uwe #include <sys/device.h>
     40      1.1      uwe #include <sys/malloc.h>
     41      1.1      uwe #include <sys/buf.h>
     42      1.1      uwe 
     43      1.4      uwe #ifdef __sparc__  /* XXX: this doesn't belong here */
     44      1.1      uwe #include <machine/autoconf.h>
     45      1.4      uwe #endif
     46      1.1      uwe #include <machine/bus.h>
     47      1.1      uwe #include <machine/intr.h>
     48      1.1      uwe 
     49      1.1      uwe #include <dev/pci/pcivar.h>
     50      1.1      uwe #include <dev/pci/pcireg.h>
     51      1.1      uwe #include <dev/pci/pcidevs.h>
     52      1.1      uwe 
     53      1.7      uwe #include <dev/wscons/wsdisplayvar.h>
     54      1.1      uwe #include <dev/wscons/wsconsio.h>
     55      1.7      uwe #include <dev/rasops/rasops.h>
     56  1.9.4.1   rpaulo #include <dev/wscons/wsdisplay_vconsvar.h>
     57      1.7      uwe 
     58      1.1      uwe #include <dev/ic/igsfbreg.h>
     59      1.1      uwe #include <dev/ic/igsfbvar.h>
     60      1.7      uwe #include <dev/pci/igsfb_pcivar.h>
     61      1.7      uwe 
     62      1.7      uwe 
     63      1.7      uwe static int	igsfb_pci_match_by_id(pcireg_t);
     64      1.7      uwe static int	igsfb_pci_map_regs(struct igsfb_devconfig *,
     65      1.7      uwe 				   bus_space_tag_t, bus_space_tag_t,
     66      1.7      uwe 				   pci_chipset_tag_t,
     67      1.7      uwe 				   pcitag_t, pci_product_id_t);
     68      1.7      uwe static int	igsfb_pci_is_console(pci_chipset_tag_t, pcitag_t);
     69      1.7      uwe 
     70      1.7      uwe static int igsfb_pci_console = 0;
     71      1.7      uwe static pcitag_t igsfb_pci_constag;
     72      1.7      uwe 
     73      1.1      uwe 
     74      1.1      uwe 
     75      1.1      uwe static int	igsfb_pci_match(struct device *, struct cfdata *, void *);
     76      1.1      uwe static void	igsfb_pci_attach(struct device *, struct device *, void *);
     77      1.1      uwe 
     78      1.5  thorpej CFATTACH_DECL(igsfb_pci, sizeof(struct igsfb_softc),
     79      1.6  thorpej     igsfb_pci_match, igsfb_pci_attach, NULL, NULL);
     80      1.1      uwe 
     81      1.7      uwe 
     82      1.1      uwe static int
     83  1.9.4.1   rpaulo igsfb_pci_match_by_id(pcireg_t id)
     84      1.1      uwe {
     85      1.1      uwe 
     86      1.7      uwe 	if (PCI_VENDOR(id) != PCI_VENDOR_INTEGRAPHICS)
     87  1.9.4.1   rpaulo 		return 0;
     88      1.7      uwe 
     89      1.7      uwe 	switch (PCI_PRODUCT(id)) {
     90      1.7      uwe 	case PCI_PRODUCT_INTEGRAPHICS_IGA1682:		/* FALLTHROUGH */
     91      1.7      uwe 	case PCI_PRODUCT_INTEGRAPHICS_CYBERPRO2000:	/* FALLTHROUGH */
     92      1.7      uwe 	case PCI_PRODUCT_INTEGRAPHICS_CYBERPRO2010:
     93  1.9.4.1   rpaulo 		return 1;
     94      1.7      uwe 	default:
     95  1.9.4.1   rpaulo 		return 0;
     96      1.7      uwe 	}
     97      1.7      uwe }
     98      1.1      uwe 
     99      1.7      uwe 
    100      1.7      uwe int
    101  1.9.4.1   rpaulo igsfb_pci_cnattach(bus_space_tag_t iot, bus_space_tag_t memt,
    102  1.9.4.1   rpaulo 		   pci_chipset_tag_t pc,
    103  1.9.4.1   rpaulo 		   int bus, int device, int function)
    104      1.7      uwe {
    105      1.7      uwe 	struct igsfb_devconfig *dc;
    106      1.7      uwe 	pcitag_t tag;
    107      1.7      uwe 	pcireg_t id;
    108      1.7      uwe 	int ret;
    109      1.7      uwe 
    110      1.7      uwe 	tag = pci_make_tag(pc, bus, device, function);
    111      1.7      uwe 	id = pci_conf_read(pc, tag, PCI_ID_REG);
    112      1.7      uwe 
    113      1.7      uwe 	if (igsfb_pci_match_by_id(id) == 0)
    114  1.9.4.1   rpaulo 		return 1;
    115      1.1      uwe 
    116      1.7      uwe 	dc = &igsfb_console_dc;
    117      1.7      uwe 	if (igsfb_pci_map_regs(dc, iot, memt, pc, tag, PCI_PRODUCT(id)) != 0)
    118  1.9.4.1   rpaulo 		return 1;
    119      1.4      uwe 
    120      1.7      uwe 	ret = igsfb_enable(dc->dc_iot, dc->dc_iobase, dc->dc_ioflags);
    121      1.7      uwe 	if (ret)
    122  1.9.4.1   rpaulo 		return ret;
    123      1.7      uwe 
    124      1.7      uwe 	ret = igsfb_cnattach_subr(dc);
    125      1.7      uwe 	if (ret)
    126  1.9.4.1   rpaulo 		return ret;
    127      1.7      uwe 
    128      1.7      uwe 	igsfb_pci_console = 1;
    129      1.7      uwe 	igsfb_pci_constag = tag;
    130      1.7      uwe 
    131  1.9.4.1   rpaulo 	return 0;
    132      1.1      uwe }
    133      1.1      uwe 
    134      1.1      uwe 
    135      1.7      uwe static int
    136  1.9.4.1   rpaulo igsfb_pci_is_console(pci_chipset_tag_t pc, pcitag_t tag)
    137      1.7      uwe {
    138      1.7      uwe 
    139  1.9.4.1   rpaulo 	return igsfb_pci_console && (tag == igsfb_pci_constag);
    140      1.7      uwe }
    141      1.7      uwe 
    142      1.7      uwe 
    143      1.7      uwe static int
    144  1.9.4.1   rpaulo igsfb_pci_match(struct device *parent, struct cfdata *match, void *aux)
    145      1.7      uwe {
    146      1.7      uwe 	struct pci_attach_args *pa = aux;
    147      1.7      uwe 
    148  1.9.4.1   rpaulo 	return igsfb_pci_match_by_id(pa->pa_id);
    149      1.7      uwe }
    150      1.7      uwe 
    151      1.7      uwe 
    152      1.1      uwe static void
    153  1.9.4.1   rpaulo igsfb_pci_attach(struct device *parent, struct device *self, void *aux)
    154      1.1      uwe {
    155      1.1      uwe 	struct igsfb_softc *sc = (struct igsfb_softc *)self;
    156      1.1      uwe 	struct pci_attach_args *pa = aux;
    157      1.1      uwe 	int isconsole;
    158      1.1      uwe 	char devinfo[256];
    159      1.1      uwe 
    160      1.8   itojun 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
    161      1.4      uwe 	printf(": %s (rev. 0x%02x)\n", devinfo, PCI_REVISION(pa->pa_class));
    162      1.1      uwe 
    163      1.7      uwe 
    164      1.7      uwe #if defined(__sparc__) && !defined(KRUPS_FORCE_SERIAL_CONSOLE)
    165      1.7      uwe 	/* XXX: this doesn't belong here */
    166      1.7      uwe 	if (PCITAG_NODE(pa->pa_tag) == prom_instance_to_package(prom_stdout()))
    167      1.7      uwe 	{
    168      1.7      uwe 		int b, d, f;
    169      1.7      uwe 
    170      1.7      uwe 		pci_decompose_tag(pa->pa_pc, pa->pa_tag, &b, &d, &f);
    171      1.7      uwe 		igsfb_pci_cnattach(pa->pa_iot, pa->pa_memt, pa->pa_pc, b,d,f);
    172      1.7      uwe 	}
    173      1.7      uwe #endif
    174      1.7      uwe 
    175      1.7      uwe 	isconsole = 0;
    176      1.7      uwe 	if (igsfb_pci_is_console(pa->pa_pc, pa->pa_tag)) {
    177      1.7      uwe 		sc->sc_dc = &igsfb_console_dc;
    178      1.7      uwe 		isconsole = 1;
    179      1.7      uwe 	} else {
    180      1.7      uwe 		sc->sc_dc = malloc(sizeof(struct igsfb_devconfig),
    181      1.7      uwe 				   M_DEVBUF, M_NOWAIT | M_ZERO);
    182      1.7      uwe 		if (sc->sc_dc == NULL)
    183      1.7      uwe 			panic("unable to allocate igsfb_devconfig");
    184      1.7      uwe 		if (igsfb_pci_map_regs(sc->sc_dc,
    185      1.7      uwe 			    pa->pa_iot, pa->pa_memt, pa->pa_pc,
    186      1.7      uwe 			    pa->pa_tag, PCI_PRODUCT(pa->pa_id)) != 0)
    187      1.7      uwe 		{
    188      1.7      uwe 			printf("unable to map device registers\n");
    189      1.7      uwe 			free(sc->sc_dc, M_DEVBUF);
    190      1.7      uwe 			sc->sc_dc = NULL;
    191      1.7      uwe 			return;
    192      1.7      uwe 		}
    193      1.7      uwe 
    194      1.7      uwe 		igsfb_enable(sc->sc_dc->dc_iot, sc->sc_dc->dc_iobase,
    195      1.7      uwe 			     sc->sc_dc->dc_ioflags);
    196      1.7      uwe 	}
    197      1.7      uwe 
    198      1.7      uwe 	igsfb_attach_subr(sc, isconsole);
    199      1.7      uwe }
    200      1.7      uwe 
    201      1.7      uwe 
    202      1.7      uwe /*
    203      1.7      uwe  * Init memory and i/o bus space tags.  Map device registers.
    204      1.7      uwe  * Use memory space mapped i/o space access for i/o registers
    205      1.7      uwe  * for CyberPro cards.
    206      1.7      uwe  */
    207      1.7      uwe static int
    208  1.9.4.1   rpaulo igsfb_pci_map_regs(struct igsfb_devconfig *dc,
    209  1.9.4.1   rpaulo 		   bus_space_tag_t iot, bus_space_tag_t memt,
    210  1.9.4.1   rpaulo 		   pci_chipset_tag_t pc, pcitag_t tag,
    211  1.9.4.1   rpaulo 		   pci_product_id_t id)
    212      1.7      uwe {
    213      1.7      uwe 
    214      1.7      uwe 	dc->dc_id = id;
    215      1.1      uwe 
    216      1.1      uwe 	/*
    217      1.3      uwe 	 * Configure memory space first since for CyberPro we use
    218      1.3      uwe 	 * memory-mapped i/o access.  Note that we are NOT mapping any
    219      1.4      uwe 	 * of it yet.  (XXX: search for memory BAR?)
    220      1.1      uwe 	 */
    221      1.1      uwe #define IGS_MEM_MAPREG (PCI_MAPREG_START + 0)
    222      1.1      uwe 
    223      1.7      uwe 	dc->dc_memt = memt;
    224      1.7      uwe 	if (pci_mapreg_info(pc, tag,
    225      1.1      uwe 		IGS_MEM_MAPREG, PCI_MAPREG_TYPE_MEM,
    226      1.7      uwe 		&dc->dc_memaddr, &dc->dc_memsz, &dc->dc_memflags) != 0)
    227      1.1      uwe 	{
    228      1.1      uwe 		printf("unable to configure memory space\n");
    229  1.9.4.1   rpaulo 		return 1;
    230      1.1      uwe 	}
    231      1.1      uwe 
    232      1.1      uwe 	/*
    233      1.7      uwe 	 * Configure I/O space.  On CyberPro use MMIO.  IGS 168x doesn't
    234      1.7      uwe 	 * have a BAR for its i/o space, so we have to hardcode it.
    235      1.1      uwe 	 */
    236      1.7      uwe 	if (id >= PCI_PRODUCT_INTEGRAPHICS_CYBERPRO2000) {
    237      1.7      uwe 		dc->dc_iot = dc->dc_memt;
    238      1.7      uwe 		dc->dc_iobase = dc->dc_memaddr | IGS_MEM_MMIO_SELECT;
    239      1.7      uwe 		dc->dc_ioflags = dc->dc_memflags;
    240      1.1      uwe 	} else {
    241      1.7      uwe 		dc->dc_iot = iot;
    242      1.7      uwe 		dc->dc_iobase = 0;
    243      1.7      uwe 		dc->dc_ioflags = 0;
    244      1.1      uwe 	}
    245      1.1      uwe 
    246      1.3      uwe 	/*
    247      1.3      uwe 	 * Map I/O registers.  This is done in bus glue, not in common
    248      1.3      uwe 	 * code because on e.g. ISA bus we'd need to access registers
    249      1.3      uwe 	 * to obtain/program linear memory location.
    250      1.3      uwe 	 */
    251      1.7      uwe 	if (bus_space_map(dc->dc_iot,
    252      1.7      uwe 			  dc->dc_iobase + IGS_REG_BASE, IGS_REG_SIZE,
    253      1.7      uwe 			  dc->dc_ioflags,
    254      1.7      uwe 			  &dc->dc_ioh) != 0)
    255      1.1      uwe 	{
    256      1.3      uwe 		printf("unable to map I/O registers\n");
    257  1.9.4.1   rpaulo 		return 1;
    258      1.1      uwe 	}
    259      1.1      uwe 
    260  1.9.4.1   rpaulo 	return 0;
    261      1.1      uwe }
    262