Home | History | Annotate | Line # | Download | only in pci
agp_i810.c revision 1.73.14.1
      1  1.73.14.1       tls /*	$NetBSD: agp_i810.c,v 1.73.14.1 2014/08/20 00:03:41 tls Exp $	*/
      2        1.1      fvdl 
      3        1.1      fvdl /*-
      4        1.1      fvdl  * Copyright (c) 2000 Doug Rabson
      5        1.1      fvdl  * Copyright (c) 2000 Ruslan Ermilov
      6        1.1      fvdl  * All rights reserved.
      7        1.1      fvdl  *
      8        1.1      fvdl  * Redistribution and use in source and binary forms, with or without
      9        1.1      fvdl  * modification, are permitted provided that the following conditions
     10        1.1      fvdl  * are met:
     11        1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     12        1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     13        1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     14        1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     15        1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     16        1.1      fvdl  *
     17        1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     18        1.1      fvdl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     19        1.1      fvdl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     20        1.1      fvdl  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     21        1.1      fvdl  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     22        1.1      fvdl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     23        1.1      fvdl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24        1.1      fvdl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     25        1.1      fvdl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26        1.1      fvdl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27        1.1      fvdl  * SUCH DAMAGE.
     28        1.1      fvdl  *
     29  1.73.14.1       tls  *	$FreeBSD$
     30        1.1      fvdl  */
     31        1.9     lukem 
     32        1.9     lukem #include <sys/cdefs.h>
     33  1.73.14.1       tls __KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.73.14.1 2014/08/20 00:03:41 tls Exp $");
     34        1.1      fvdl 
     35        1.1      fvdl #include <sys/param.h>
     36        1.1      fvdl #include <sys/systm.h>
     37        1.1      fvdl #include <sys/malloc.h>
     38        1.1      fvdl #include <sys/kernel.h>
     39        1.1      fvdl #include <sys/proc.h>
     40        1.1      fvdl #include <sys/device.h>
     41        1.1      fvdl #include <sys/conf.h>
     42  1.73.14.1       tls #include <sys/xcall.h>
     43        1.1      fvdl 
     44        1.1      fvdl #include <dev/pci/pcivar.h>
     45        1.1      fvdl #include <dev/pci/pcireg.h>
     46        1.1      fvdl #include <dev/pci/pcidevs.h>
     47        1.1      fvdl #include <dev/pci/agpvar.h>
     48        1.1      fvdl #include <dev/pci/agpreg.h>
     49  1.73.14.1       tls #include <dev/pci/agp_i810var.h>
     50        1.1      fvdl 
     51        1.1      fvdl #include <sys/agpio.h>
     52        1.1      fvdl 
     53       1.43        ad #include <sys/bus.h>
     54        1.1      fvdl 
     55       1.20      tron #include "agp_intel.h"
     56       1.20      tron 
     57  1.73.14.1       tls #ifdef AGP_DEBUG
     58  1.73.14.1       tls #define	DPRINTF(sc, fmt, ...)						      \
     59  1.73.14.1       tls 	device_printf((sc)->as_dev, "%s: " fmt, __func__, ##__VA_ARGS__)
     60  1.73.14.1       tls #else
     61  1.73.14.1       tls #define	DPRINTF(sc, fmt, ...)	do {} while (0)
     62  1.73.14.1       tls #endif
     63  1.73.14.1       tls 
     64  1.73.14.1       tls struct agp_softc *agp_i810_sc = NULL;
     65  1.73.14.1       tls 
     66        1.1      fvdl #define READ1(off)	bus_space_read_1(isc->bst, isc->bsh, off)
     67       1.14       scw #define READ4(off)	bus_space_read_4(isc->bst, isc->bsh, off)
     68        1.1      fvdl #define WRITE4(off,v)	bus_space_write_4(isc->bst, isc->bsh, off, v)
     69        1.1      fvdl 
     70       1.14       scw #define CHIP_I810 0	/* i810/i815 */
     71       1.17   hannken #define CHIP_I830 1	/* 830M/845G */
     72       1.17   hannken #define CHIP_I855 2	/* 852GM/855GM/865G */
     73       1.56       tnn #define CHIP_I915 3	/* 915G/915GM/945G/945GM/945GME */
     74       1.45     joerg #define CHIP_I965 4	/* 965Q/965PM */
     75       1.45     joerg #define CHIP_G33  5	/* G33/Q33/Q35 */
     76       1.58  christos #define CHIP_G4X  6	/* G45/Q45 */
     77       1.14       scw 
     78       1.49  drochner /* XXX hack, see below */
     79       1.50  drochner static bus_addr_t agp_i810_vga_regbase;
     80  1.73.14.1       tls static bus_size_t agp_i810_vga_regsize;
     81  1.73.14.1       tls static bus_space_tag_t agp_i810_vga_bst;
     82       1.50  drochner static bus_space_handle_t agp_i810_vga_bsh;
     83       1.49  drochner 
     84        1.1      fvdl static u_int32_t agp_i810_get_aperture(struct agp_softc *);
     85        1.1      fvdl static int agp_i810_set_aperture(struct agp_softc *, u_int32_t);
     86        1.1      fvdl static int agp_i810_bind_page(struct agp_softc *, off_t, bus_addr_t);
     87        1.1      fvdl static int agp_i810_unbind_page(struct agp_softc *, off_t);
     88        1.1      fvdl static void agp_i810_flush_tlb(struct agp_softc *);
     89        1.1      fvdl static int agp_i810_enable(struct agp_softc *, u_int32_t mode);
     90        1.1      fvdl static struct agp_memory *agp_i810_alloc_memory(struct agp_softc *, int,
     91        1.1      fvdl 						vsize_t);
     92        1.1      fvdl static int agp_i810_free_memory(struct agp_softc *, struct agp_memory *);
     93  1.73.14.1       tls static int agp_i810_bind_memory(struct agp_softc *, struct agp_memory *,
     94  1.73.14.1       tls 		off_t);
     95  1.73.14.1       tls static int agp_i810_bind_memory_dcache(struct agp_softc *, struct agp_memory *,
     96  1.73.14.1       tls 		off_t);
     97  1.73.14.1       tls static int agp_i810_bind_memory_hwcursor(struct agp_softc *,
     98  1.73.14.1       tls 		struct agp_memory *, off_t);
     99        1.1      fvdl static int agp_i810_unbind_memory(struct agp_softc *, struct agp_memory *);
    100       1.47  jmcneill 
    101       1.66    dyoung static bool agp_i810_resume(device_t, const pmf_qual_t *);
    102       1.47  jmcneill static int agp_i810_init(struct agp_softc *);
    103        1.1      fvdl 
    104  1.73.14.1       tls static int agp_i810_setup_chipset_flush_page(struct agp_softc *);
    105  1.73.14.1       tls static void agp_i810_teardown_chipset_flush_page(struct agp_softc *);
    106       1.45     joerg static int agp_i810_init(struct agp_softc *);
    107       1.45     joerg 
    108       1.26   thorpej static struct agp_methods agp_i810_methods = {
    109        1.1      fvdl 	agp_i810_get_aperture,
    110        1.1      fvdl 	agp_i810_set_aperture,
    111        1.1      fvdl 	agp_i810_bind_page,
    112        1.1      fvdl 	agp_i810_unbind_page,
    113        1.1      fvdl 	agp_i810_flush_tlb,
    114        1.1      fvdl 	agp_i810_enable,
    115        1.1      fvdl 	agp_i810_alloc_memory,
    116        1.1      fvdl 	agp_i810_free_memory,
    117        1.1      fvdl 	agp_i810_bind_memory,
    118        1.1      fvdl 	agp_i810_unbind_memory,
    119        1.1      fvdl };
    120        1.1      fvdl 
    121  1.73.14.1       tls int
    122       1.71    gsutre agp_i810_write_gtt_entry(struct agp_i810_softc *isc, off_t off, bus_addr_t v)
    123       1.58  christos {
    124       1.71    gsutre 	u_int32_t pte;
    125       1.71    gsutre 
    126       1.71    gsutre 	/* Bits 11:4 (physical start address extension) should be zero. */
    127       1.71    gsutre 	if ((v & 0xff0) != 0)
    128       1.71    gsutre 		return EINVAL;
    129       1.71    gsutre 
    130       1.71    gsutre 	pte = (u_int32_t)v;
    131       1.71    gsutre 	/*
    132       1.71    gsutre 	 * We need to massage the pte if bus_addr_t is wider than 32 bits.
    133       1.71    gsutre 	 * The compiler isn't smart enough, hence the casts to uintmax_t.
    134       1.71    gsutre 	 */
    135       1.71    gsutre 	if (sizeof(bus_addr_t) > sizeof(u_int32_t)) {
    136       1.71    gsutre 		/* 965+ can do 36-bit addressing, add in the extra bits. */
    137       1.71    gsutre 		if (isc->chiptype == CHIP_I965 ||
    138       1.71    gsutre 		    isc->chiptype == CHIP_G33 ||
    139       1.71    gsutre 		    isc->chiptype == CHIP_G4X) {
    140       1.71    gsutre 			if (((uintmax_t)v >> 36) != 0)
    141       1.71    gsutre 				return EINVAL;
    142       1.71    gsutre 			pte |= (v >> 28) & 0xf0;
    143       1.71    gsutre 		} else {
    144       1.71    gsutre 			if (((uintmax_t)v >> 32) != 0)
    145       1.71    gsutre 				return EINVAL;
    146       1.71    gsutre 		}
    147       1.71    gsutre 	}
    148       1.58  christos 
    149  1.73.14.1       tls 	bus_space_write_4(isc->gtt_bst, isc->gtt_bsh,
    150  1.73.14.1       tls 	    4*(off >> AGP_PAGE_SHIFT), pte);
    151  1.73.14.1       tls 
    152  1.73.14.1       tls 	return 0;
    153  1.73.14.1       tls }
    154  1.73.14.1       tls 
    155  1.73.14.1       tls void
    156  1.73.14.1       tls agp_i810_post_gtt_entry(struct agp_i810_softc *isc, off_t off)
    157  1.73.14.1       tls {
    158  1.73.14.1       tls 
    159  1.73.14.1       tls 	(void)bus_space_read_4(isc->gtt_bst, isc->gtt_bsh,
    160  1.73.14.1       tls 	    4*(off >> AGP_PAGE_SHIFT));
    161  1.73.14.1       tls }
    162  1.73.14.1       tls 
    163  1.73.14.1       tls static void
    164  1.73.14.1       tls agp_flush_cache_xc(void *a __unused, void *b __unused)
    165  1.73.14.1       tls {
    166  1.73.14.1       tls 
    167  1.73.14.1       tls 	agp_flush_cache();
    168  1.73.14.1       tls }
    169  1.73.14.1       tls 
    170  1.73.14.1       tls void
    171  1.73.14.1       tls agp_i810_chipset_flush(struct agp_i810_softc *isc)
    172  1.73.14.1       tls {
    173  1.73.14.1       tls 	unsigned int timo = 20000; /* * 50 us = 1 s */
    174       1.58  christos 
    175       1.58  christos 	switch (isc->chiptype) {
    176       1.58  christos 	case CHIP_I810:
    177  1.73.14.1       tls 		break;
    178       1.58  christos 	case CHIP_I830:
    179       1.58  christos 	case CHIP_I855:
    180  1.73.14.1       tls 		/*
    181  1.73.14.1       tls 		 * Flush all CPU caches.  If we're cold, we can't run
    182  1.73.14.1       tls 		 * xcalls, but there should be only one CPU up, so
    183  1.73.14.1       tls 		 * flushing only the local CPU's cache should suffice.
    184  1.73.14.1       tls 		 *
    185  1.73.14.1       tls 		 * XXX Come to think of it, do these chipsets appear in
    186  1.73.14.1       tls 		 * any multi-CPU systems?
    187  1.73.14.1       tls 		 */
    188  1.73.14.1       tls 		if (cold)
    189  1.73.14.1       tls 			agp_flush_cache();
    190  1.73.14.1       tls 		else
    191  1.73.14.1       tls 			xc_wait(xc_broadcast(0, &agp_flush_cache_xc,
    192  1.73.14.1       tls 				NULL, NULL));
    193  1.73.14.1       tls 		WRITE4(AGP_I830_HIC, READ4(AGP_I830_HIC) | __BIT(31));
    194  1.73.14.1       tls 		while (ISSET(READ4(AGP_I830_HIC), __BIT(31))) {
    195  1.73.14.1       tls 			if (timo-- == 0)
    196  1.73.14.1       tls 				break;
    197  1.73.14.1       tls 			DELAY(50);
    198  1.73.14.1       tls 		}
    199       1.58  christos 		break;
    200  1.73.14.1       tls 	case CHIP_I915:
    201       1.58  christos 	case CHIP_I965:
    202  1.73.14.1       tls 	case CHIP_G33:
    203       1.58  christos 	case CHIP_G4X:
    204  1.73.14.1       tls 		bus_space_write_4(isc->flush_bst, isc->flush_bsh, 0, 1);
    205       1.58  christos 		break;
    206       1.58  christos 	}
    207       1.58  christos }
    208       1.58  christos 
    209       1.55  matthias /* XXXthorpej -- duplicated code (see arch/x86/pci/pchb.c) */
    210        1.1      fvdl static int
    211       1.73    dyoung agp_i810_vgamatch(const struct pci_attach_args *pa)
    212        1.1      fvdl {
    213        1.6   thorpej 
    214        1.2      fvdl 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
    215        1.2      fvdl 	    PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
    216        1.6   thorpej 		return (0);
    217        1.6   thorpej 
    218        1.1      fvdl 	switch (PCI_PRODUCT(pa->pa_id)) {
    219        1.1      fvdl 	case PCI_PRODUCT_INTEL_82810_GC:
    220        1.1      fvdl 	case PCI_PRODUCT_INTEL_82810_DC100_GC:
    221        1.1      fvdl 	case PCI_PRODUCT_INTEL_82810E_GC:
    222        1.1      fvdl 	case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
    223       1.14       scw 	case PCI_PRODUCT_INTEL_82830MP_IV:
    224       1.14       scw 	case PCI_PRODUCT_INTEL_82845G_IGD:
    225       1.17   hannken 	case PCI_PRODUCT_INTEL_82855GM_IGD:
    226       1.18      tron 	case PCI_PRODUCT_INTEL_82865_IGD:
    227       1.28  christos 	case PCI_PRODUCT_INTEL_82915G_IGD:
    228       1.28  christos 	case PCI_PRODUCT_INTEL_82915GM_IGD:
    229       1.32    simonb 	case PCI_PRODUCT_INTEL_82945P_IGD:
    230       1.32    simonb 	case PCI_PRODUCT_INTEL_82945GM_IGD:
    231       1.32    simonb 	case PCI_PRODUCT_INTEL_82945GM_IGD_1:
    232       1.56       tnn 	case PCI_PRODUCT_INTEL_82945GME_IGD:
    233       1.68       riz 	case PCI_PRODUCT_INTEL_E7221_IGD:
    234       1.42     markd 	case PCI_PRODUCT_INTEL_82965Q_IGD:
    235       1.42     markd 	case PCI_PRODUCT_INTEL_82965Q_IGD_1:
    236       1.45     joerg 	case PCI_PRODUCT_INTEL_82965PM_IGD:
    237       1.45     joerg 	case PCI_PRODUCT_INTEL_82965PM_IGD_1:
    238       1.45     joerg 	case PCI_PRODUCT_INTEL_82G33_IGD:
    239       1.45     joerg 	case PCI_PRODUCT_INTEL_82G33_IGD_1:
    240       1.44   jnemeth 	case PCI_PRODUCT_INTEL_82965G_IGD:
    241       1.44   jnemeth 	case PCI_PRODUCT_INTEL_82965G_IGD_1:
    242       1.68       riz 	case PCI_PRODUCT_INTEL_82965GME_IGD:
    243       1.46     markd 	case PCI_PRODUCT_INTEL_82Q35_IGD:
    244       1.46     markd 	case PCI_PRODUCT_INTEL_82Q35_IGD_1:
    245       1.46     markd 	case PCI_PRODUCT_INTEL_82Q33_IGD:
    246       1.46     markd 	case PCI_PRODUCT_INTEL_82Q33_IGD_1:
    247       1.57  christos 	case PCI_PRODUCT_INTEL_82G35_IGD:
    248       1.57  christos 	case PCI_PRODUCT_INTEL_82G35_IGD_1:
    249       1.55  matthias 	case PCI_PRODUCT_INTEL_82946GZ_IGD:
    250       1.58  christos 	case PCI_PRODUCT_INTEL_82GM45_IGD:
    251       1.58  christos 	case PCI_PRODUCT_INTEL_82GM45_IGD_1:
    252       1.62     markd 	case PCI_PRODUCT_INTEL_82IGD_E_IGD:
    253       1.62     markd 	case PCI_PRODUCT_INTEL_82Q45_IGD:
    254       1.62     markd 	case PCI_PRODUCT_INTEL_82G45_IGD:
    255       1.68       riz 	case PCI_PRODUCT_INTEL_82G41_IGD:
    256       1.68       riz 	case PCI_PRODUCT_INTEL_82B43_IGD:
    257       1.68       riz 	case PCI_PRODUCT_INTEL_IRONLAKE_D_IGD:
    258       1.68       riz 	case PCI_PRODUCT_INTEL_IRONLAKE_M_IGD:
    259       1.72      matt 	case PCI_PRODUCT_INTEL_PINEVIEW_IGD:
    260       1.72      matt 	case PCI_PRODUCT_INTEL_PINEVIEW_M_IGD:
    261        1.6   thorpej 		return (1);
    262        1.1      fvdl 	}
    263        1.1      fvdl 
    264        1.6   thorpej 	return (0);
    265        1.1      fvdl }
    266        1.1      fvdl 
    267       1.42     markd static int
    268       1.42     markd agp_i965_map_aperture(struct pci_attach_args *pa, struct agp_softc *sc, int reg)
    269       1.42     markd {
    270       1.42     markd         /*
    271       1.42     markd          * Find the aperture. Don't map it (yet), this would
    272       1.42     markd          * eat KVA.
    273       1.42     markd          */
    274       1.42     markd         if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, reg,
    275       1.42     markd             PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_64BIT, &sc->as_apaddr, &sc->as_apsize,
    276       1.42     markd             &sc->as_apflags) != 0)
    277       1.42     markd                 return ENXIO;
    278       1.42     markd 
    279       1.42     markd         sc->as_apt = pa->pa_memt;
    280       1.42     markd 
    281       1.42     markd         return 0;
    282       1.42     markd }
    283       1.42     markd 
    284        1.1      fvdl int
    285       1.54     freza agp_i810_attach(device_t parent, device_t self, void *aux)
    286        1.1      fvdl {
    287       1.54     freza 	struct agp_softc *sc = device_private(self);
    288        1.1      fvdl 	struct agp_i810_softc *isc;
    289  1.73.14.1       tls 	int apbase, mmadr_bar, gtt_bar;
    290  1.73.14.1       tls 	int mmadr_type, mmadr_flags;
    291       1.49  drochner 	bus_addr_t mmadr;
    292  1.73.14.1       tls 	bus_size_t mmadr_size, gtt_off;
    293  1.73.14.1       tls 	int error;
    294        1.1      fvdl 
    295       1.10   tsutsui 	isc = malloc(sizeof *isc, M_AGP, M_NOWAIT|M_ZERO);
    296        1.1      fvdl 	if (isc == NULL) {
    297       1.15   thorpej 		aprint_error(": can't allocate chipset-specific softc\n");
    298  1.73.14.1       tls 		error = ENOMEM;
    299  1.73.14.1       tls 		goto fail0;
    300        1.1      fvdl 	}
    301        1.1      fvdl 	sc->as_chipc = isc;
    302        1.1      fvdl 	sc->as_methods = &agp_i810_methods;
    303        1.1      fvdl 
    304        1.1      fvdl 	if (pci_find_device(&isc->vga_pa, agp_i810_vgamatch) == 0) {
    305       1.20      tron #if NAGP_INTEL > 0
    306       1.19      tron 		const struct pci_attach_args *pa = aux;
    307       1.19      tron 
    308       1.19      tron 		switch (PCI_PRODUCT(pa->pa_id)) {
    309       1.19      tron 		case PCI_PRODUCT_INTEL_82840_HB:
    310       1.19      tron 		case PCI_PRODUCT_INTEL_82865_HB:
    311       1.21      tron 		case PCI_PRODUCT_INTEL_82845G_DRAM:
    312       1.23   xtraeme 		case PCI_PRODUCT_INTEL_82815_FULL_HUB:
    313       1.67  jakllsch 		case PCI_PRODUCT_INTEL_82855GM_MCH:
    314  1.73.14.1       tls 			free(isc, M_AGP);
    315       1.19      tron 			return agp_intel_attach(parent, self, aux);
    316       1.20      tron 		}
    317       1.20      tron #endif
    318  1.73.14.1       tls 		aprint_error(": can't find internal VGA"
    319  1.73.14.1       tls 		    " config space\n");
    320  1.73.14.1       tls 		error = ENOENT;
    321  1.73.14.1       tls 		goto fail1;
    322        1.1      fvdl 	}
    323        1.1      fvdl 
    324        1.1      fvdl 	/* XXXfvdl */
    325        1.1      fvdl 	sc->as_dmat = isc->vga_pa.pa_dmat;
    326        1.1      fvdl 
    327       1.14       scw 	switch (PCI_PRODUCT(isc->vga_pa.pa_id)) {
    328       1.14       scw 	case PCI_PRODUCT_INTEL_82810_GC:
    329       1.14       scw 	case PCI_PRODUCT_INTEL_82810_DC100_GC:
    330       1.14       scw 	case PCI_PRODUCT_INTEL_82810E_GC:
    331       1.14       scw 	case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
    332       1.14       scw 		isc->chiptype = CHIP_I810;
    333  1.73.14.1       tls 		aprint_normal(": i810-family chipset\n");
    334       1.14       scw 		break;
    335       1.14       scw 	case PCI_PRODUCT_INTEL_82830MP_IV:
    336       1.14       scw 	case PCI_PRODUCT_INTEL_82845G_IGD:
    337       1.14       scw 		isc->chiptype = CHIP_I830;
    338  1.73.14.1       tls 		aprint_normal(": i830-family chipset\n");
    339       1.14       scw 		break;
    340       1.17   hannken 	case PCI_PRODUCT_INTEL_82855GM_IGD:
    341       1.18      tron 	case PCI_PRODUCT_INTEL_82865_IGD:
    342       1.17   hannken 		isc->chiptype = CHIP_I855;
    343  1.73.14.1       tls 		aprint_normal(": i855-family chipset\n");
    344       1.17   hannken 		break;
    345       1.28  christos 	case PCI_PRODUCT_INTEL_82915G_IGD:
    346       1.28  christos 	case PCI_PRODUCT_INTEL_82915GM_IGD:
    347       1.32    simonb 	case PCI_PRODUCT_INTEL_82945P_IGD:
    348       1.32    simonb 	case PCI_PRODUCT_INTEL_82945GM_IGD:
    349       1.32    simonb 	case PCI_PRODUCT_INTEL_82945GM_IGD_1:
    350       1.56       tnn 	case PCI_PRODUCT_INTEL_82945GME_IGD:
    351       1.68       riz 	case PCI_PRODUCT_INTEL_E7221_IGD:
    352       1.72      matt 	case PCI_PRODUCT_INTEL_PINEVIEW_IGD:
    353       1.72      matt 	case PCI_PRODUCT_INTEL_PINEVIEW_M_IGD:
    354       1.28  christos 		isc->chiptype = CHIP_I915;
    355  1.73.14.1       tls 		aprint_normal(": i915-family chipset\n");
    356       1.28  christos 		break;
    357       1.42     markd 	case PCI_PRODUCT_INTEL_82965Q_IGD:
    358       1.42     markd 	case PCI_PRODUCT_INTEL_82965Q_IGD_1:
    359       1.45     joerg 	case PCI_PRODUCT_INTEL_82965PM_IGD:
    360       1.45     joerg 	case PCI_PRODUCT_INTEL_82965PM_IGD_1:
    361       1.44   jnemeth 	case PCI_PRODUCT_INTEL_82965G_IGD:
    362       1.44   jnemeth 	case PCI_PRODUCT_INTEL_82965G_IGD_1:
    363       1.68       riz 	case PCI_PRODUCT_INTEL_82965GME_IGD:
    364       1.55  matthias 	case PCI_PRODUCT_INTEL_82946GZ_IGD:
    365       1.57  christos 	case PCI_PRODUCT_INTEL_82G35_IGD:
    366       1.57  christos 	case PCI_PRODUCT_INTEL_82G35_IGD_1:
    367       1.42     markd 		isc->chiptype = CHIP_I965;
    368  1.73.14.1       tls 		aprint_normal(": i965-family chipset\n");
    369       1.42     markd 		break;
    370       1.46     markd 	case PCI_PRODUCT_INTEL_82Q35_IGD:
    371       1.46     markd 	case PCI_PRODUCT_INTEL_82Q35_IGD_1:
    372       1.45     joerg 	case PCI_PRODUCT_INTEL_82G33_IGD:
    373       1.45     joerg 	case PCI_PRODUCT_INTEL_82G33_IGD_1:
    374       1.46     markd 	case PCI_PRODUCT_INTEL_82Q33_IGD:
    375       1.46     markd 	case PCI_PRODUCT_INTEL_82Q33_IGD_1:
    376       1.45     joerg 		isc->chiptype = CHIP_G33;
    377  1.73.14.1       tls 		aprint_normal(": G33-family chipset\n");
    378       1.63     markd 		break;
    379       1.58  christos 	case PCI_PRODUCT_INTEL_82GM45_IGD:
    380       1.58  christos 	case PCI_PRODUCT_INTEL_82GM45_IGD_1:
    381       1.62     markd 	case PCI_PRODUCT_INTEL_82IGD_E_IGD:
    382       1.62     markd 	case PCI_PRODUCT_INTEL_82Q45_IGD:
    383       1.62     markd 	case PCI_PRODUCT_INTEL_82G45_IGD:
    384       1.68       riz 	case PCI_PRODUCT_INTEL_82G41_IGD:
    385       1.68       riz 	case PCI_PRODUCT_INTEL_82B43_IGD:
    386       1.68       riz 	case PCI_PRODUCT_INTEL_IRONLAKE_D_IGD:
    387       1.68       riz 	case PCI_PRODUCT_INTEL_IRONLAKE_M_IGD:
    388       1.58  christos 		isc->chiptype = CHIP_G4X;
    389  1.73.14.1       tls 		aprint_normal(": G4X-family chipset\n");
    390       1.45     joerg 		break;
    391       1.14       scw 	}
    392  1.73.14.1       tls 	aprint_naive("\n");
    393       1.14       scw 
    394  1.73.14.1       tls 	mmadr_type = PCI_MAPREG_TYPE_MEM;
    395       1.45     joerg 	switch (isc->chiptype) {
    396       1.45     joerg 	case CHIP_I915:
    397       1.45     joerg 	case CHIP_G33:
    398       1.45     joerg 		apbase = AGP_I915_GMADR;
    399  1.73.14.1       tls 		mmadr_bar = AGP_I915_MMADR;
    400  1.73.14.1       tls 		isc->size = 512*1024;
    401  1.73.14.1       tls 		gtt_bar = AGP_I915_GTTADR;
    402  1.73.14.1       tls 		gtt_off = ~(bus_size_t)0; /* XXXGCC */
    403       1.45     joerg 		break;
    404       1.58  christos 	case CHIP_I965:
    405  1.73.14.1       tls 		apbase = AGP_I965_GMADR;
    406  1.73.14.1       tls 		mmadr_bar = AGP_I965_MMADR;
    407  1.73.14.1       tls 		mmadr_type |= PCI_MAPREG_MEM_TYPE_64BIT;
    408  1.73.14.1       tls 		isc->size = 512*1024;
    409  1.73.14.1       tls 		gtt_bar = 0;
    410  1.73.14.1       tls 		gtt_off = AGP_I965_GTT;
    411  1.73.14.1       tls 		break;
    412       1.58  christos 	case CHIP_G4X:
    413       1.58  christos 		apbase = AGP_I965_GMADR;
    414  1.73.14.1       tls 		mmadr_bar = AGP_I965_MMADR;
    415  1.73.14.1       tls 		mmadr_type |= PCI_MAPREG_MEM_TYPE_64BIT;
    416  1.73.14.1       tls 		isc->size = 512*1024;
    417  1.73.14.1       tls 		gtt_bar = 0;
    418  1.73.14.1       tls 		gtt_off = AGP_G4X_GTT;
    419       1.58  christos 		break;
    420       1.45     joerg 	default:
    421       1.45     joerg 		apbase = AGP_I810_GMADR;
    422  1.73.14.1       tls 		mmadr_bar = AGP_I810_MMADR;
    423  1.73.14.1       tls 		isc->size = 512*1024;
    424  1.73.14.1       tls 		gtt_bar = 0;
    425  1.73.14.1       tls 		gtt_off = AGP_I810_GTT;
    426       1.45     joerg 		break;
    427       1.45     joerg 	}
    428       1.58  christos 
    429  1.73.14.1       tls 	/* Map (or, rather, find the address and size of) the aperture.  */
    430  1.73.14.1       tls 	if (isc->chiptype == CHIP_I965 || isc->chiptype == CHIP_G4X)
    431       1.58  christos 		error = agp_i965_map_aperture(&isc->vga_pa, sc, apbase);
    432  1.73.14.1       tls 	else
    433       1.42     markd 		error = agp_map_aperture(&isc->vga_pa, sc, apbase);
    434  1.73.14.1       tls 	if (error) {
    435  1.73.14.1       tls 		aprint_error_dev(self, "can't map aperture: %d\n", error);
    436  1.73.14.1       tls 		goto fail1;
    437  1.73.14.1       tls 	}
    438  1.73.14.1       tls 
    439  1.73.14.1       tls 	/* Map the memory-mapped I/O registers, or the non-GTT part.  */
    440  1.73.14.1       tls 	if (pci_mapreg_info(isc->vga_pa.pa_pc, isc->vga_pa.pa_tag, mmadr_bar,
    441  1.73.14.1       tls 		mmadr_type, &mmadr, &mmadr_size, &mmadr_flags)) {
    442  1.73.14.1       tls 		aprint_error_dev(self, "can't find MMIO registers\n");
    443  1.73.14.1       tls 		error = ENXIO;
    444  1.73.14.1       tls 		goto fail1;
    445  1.73.14.1       tls 	}
    446  1.73.14.1       tls 	if (mmadr_size < isc->size) {
    447  1.73.14.1       tls 		aprint_error_dev(self, "MMIO registers too small"
    448  1.73.14.1       tls 		    ": %"PRIuMAX" < %"PRIuMAX"\n",
    449  1.73.14.1       tls 		    (uintmax_t)mmadr_size, (uintmax_t)isc->size);
    450  1.73.14.1       tls 		error = ENXIO;
    451  1.73.14.1       tls 		goto fail1;
    452  1.73.14.1       tls 	}
    453  1.73.14.1       tls 	isc->bst = isc->vga_pa.pa_memt;
    454  1.73.14.1       tls 	error = bus_space_map(isc->bst, mmadr, isc->size, mmadr_flags,
    455  1.73.14.1       tls 	    &isc->bsh);
    456  1.73.14.1       tls 	if (error) {
    457  1.73.14.1       tls 		aprint_error_dev(self, "can't map MMIO registers: %d\n",
    458  1.73.14.1       tls 		    error);
    459  1.73.14.1       tls 		error = ENXIO;
    460  1.73.14.1       tls 		goto fail1;
    461        1.1      fvdl 	}
    462        1.1      fvdl 
    463  1.73.14.1       tls 	/* Set up a chipset flush page if necessary.  */
    464  1.73.14.1       tls 	switch (isc->chiptype) {
    465  1.73.14.1       tls 	case CHIP_I915:
    466  1.73.14.1       tls 	case CHIP_I965:
    467  1.73.14.1       tls 	case CHIP_G33:
    468  1.73.14.1       tls 	case CHIP_G4X:
    469  1.73.14.1       tls 		error = agp_i810_setup_chipset_flush_page(sc);
    470  1.73.14.1       tls 		if (error) {
    471  1.73.14.1       tls 			aprint_error_dev(self,
    472  1.73.14.1       tls 			    "can't set up chipset flush page: %d\n", error);
    473  1.73.14.1       tls 			goto fail2;
    474       1.28  christos 		}
    475  1.73.14.1       tls 		break;
    476  1.73.14.1       tls 	}
    477  1.73.14.1       tls 
    478  1.73.14.1       tls 	/*
    479  1.73.14.1       tls 	 * XXX horrible hack to allow drm code to use our mapping
    480  1.73.14.1       tls 	 * of VGA chip registers
    481  1.73.14.1       tls 	 */
    482  1.73.14.1       tls 	agp_i810_vga_regbase = mmadr;
    483  1.73.14.1       tls 	agp_i810_vga_regsize = isc->size;
    484  1.73.14.1       tls 	agp_i810_vga_bst = isc->bst;
    485  1.73.14.1       tls 	agp_i810_vga_bsh = isc->bsh;
    486  1.73.14.1       tls 
    487  1.73.14.1       tls 	/* Initialize the chipset.  */
    488  1.73.14.1       tls 	error = agp_i810_init(sc);
    489  1.73.14.1       tls 	if (error)
    490  1.73.14.1       tls 		goto fail3;
    491  1.73.14.1       tls 
    492  1.73.14.1       tls 	/* Map the GTT, from either part of the MMIO region or its own BAR.  */
    493  1.73.14.1       tls 	if (gtt_bar == 0) {
    494  1.73.14.1       tls 		isc->gtt_bst = isc->bst;
    495  1.73.14.1       tls 		if ((mmadr_size - gtt_off) < isc->gtt_size) {
    496  1.73.14.1       tls 			aprint_error_dev(self, "GTTMMADR too small for GTT"
    497  1.73.14.1       tls 			    ": (%"PRIxMAX" - %"PRIxMAX") < %"PRIxMAX"\n",
    498  1.73.14.1       tls 			    (uintmax_t)mmadr_size,
    499  1.73.14.1       tls 			    (uintmax_t)gtt_off,
    500  1.73.14.1       tls 			    (uintmax_t)isc->gtt_size);
    501  1.73.14.1       tls 			error = ENXIO;
    502  1.73.14.1       tls 			goto fail4;
    503       1.28  christos 		}
    504  1.73.14.1       tls 		/*
    505  1.73.14.1       tls 		 * Map the GTT separately if we can, so that we can map
    506  1.73.14.1       tls 		 * it prefetchable, but in early models, there are MMIO
    507  1.73.14.1       tls 		 * registers before and after the GTT, so we can only
    508  1.73.14.1       tls 		 * take a subregion.
    509  1.73.14.1       tls 		 */
    510  1.73.14.1       tls 		if (isc->size < gtt_off)
    511  1.73.14.1       tls 			error = bus_space_map(isc->gtt_bst, (mmadr + gtt_off),
    512  1.73.14.1       tls 			    isc->gtt_size, mmadr_flags, &isc->gtt_bsh);
    513  1.73.14.1       tls 		else
    514  1.73.14.1       tls 			error = bus_space_subregion(isc->bst, isc->bsh,
    515  1.73.14.1       tls 			    gtt_off, isc->gtt_size, &isc->gtt_bsh);
    516  1.73.14.1       tls 		if (error) {
    517  1.73.14.1       tls 			aprint_error_dev(self, "can't map GTT: %d\n", error);
    518  1.73.14.1       tls 			error = ENXIO;
    519  1.73.14.1       tls 			goto fail4;
    520       1.42     markd 		}
    521       1.28  christos 	} else {
    522  1.73.14.1       tls 		bus_size_t gtt_bar_size;
    523  1.73.14.1       tls 		/*
    524  1.73.14.1       tls 		 * All chipsets with a separate BAR for the GTT, namely
    525  1.73.14.1       tls 		 * the i915 and G33 families, have 32-bit GTT BARs.
    526  1.73.14.1       tls 		 *
    527  1.73.14.1       tls 		 * XXX [citation needed]
    528  1.73.14.1       tls 		 */
    529  1.73.14.1       tls 		if (pci_mapreg_map(&isc->vga_pa, gtt_bar, PCI_MAPREG_TYPE_MEM,
    530  1.73.14.1       tls 			0,
    531  1.73.14.1       tls 			&isc->gtt_bst, &isc->gtt_bsh, NULL, &gtt_bar_size)) {
    532  1.73.14.1       tls 			aprint_error_dev(self, "can't map GTT\n");
    533  1.73.14.1       tls 			error = ENXIO;
    534  1.73.14.1       tls 			goto fail4;
    535  1.73.14.1       tls 		}
    536  1.73.14.1       tls 		if (gtt_bar_size != isc->gtt_size) {
    537  1.73.14.1       tls 			aprint_error_dev(self,
    538  1.73.14.1       tls 			    "BAR size %"PRIxMAX
    539  1.73.14.1       tls 			    " mismatches detected GTT size %"PRIxMAX
    540  1.73.14.1       tls 			    "; trusting BAR\n",
    541  1.73.14.1       tls 			    (uintmax_t)gtt_bar_size,
    542  1.73.14.1       tls 			    (uintmax_t)isc->gtt_size);
    543  1.73.14.1       tls 			isc->gtt_size = gtt_bar_size;
    544       1.28  christos 		}
    545       1.28  christos 	}
    546       1.28  christos 
    547  1.73.14.1       tls 	/* Power management.  (XXX Nothing to save on suspend?  Fishy...)  */
    548  1.73.14.1       tls 	if (!pmf_device_register(self, NULL, agp_i810_resume))
    549  1.73.14.1       tls 		aprint_error_dev(self, "can't establish power handler\n");
    550  1.73.14.1       tls 
    551  1.73.14.1       tls 	/* Match the generic AGP code's autoconf output format.  */
    552  1.73.14.1       tls 	aprint_normal("%s", device_xname(self));
    553        1.1      fvdl 
    554  1.73.14.1       tls 	/* Success!  */
    555  1.73.14.1       tls 	return 0;
    556  1.73.14.1       tls 
    557  1.73.14.1       tls fail5: __unused
    558  1.73.14.1       tls 	pmf_device_deregister(self);
    559  1.73.14.1       tls 	if ((gtt_bar != 0) || (isc->size < gtt_off))
    560  1.73.14.1       tls 		bus_space_unmap(isc->gtt_bst, isc->gtt_bsh, isc->gtt_size);
    561  1.73.14.1       tls 	isc->gtt_size = 0;
    562  1.73.14.1       tls fail4:
    563  1.73.14.1       tls #if notyet
    564  1.73.14.1       tls 	agp_i810_fini(sc);
    565  1.73.14.1       tls #endif
    566  1.73.14.1       tls fail3:	switch (isc->chiptype) {
    567  1.73.14.1       tls 	case CHIP_I915:
    568  1.73.14.1       tls 	case CHIP_I965:
    569  1.73.14.1       tls 	case CHIP_G33:
    570  1.73.14.1       tls 	case CHIP_G4X:
    571  1.73.14.1       tls 		agp_i810_teardown_chipset_flush_page(sc);
    572  1.73.14.1       tls 		break;
    573       1.14       scw 	}
    574  1.73.14.1       tls fail2:	bus_space_unmap(isc->bst, isc->bsh, isc->size);
    575  1.73.14.1       tls 	isc->size = 0;
    576  1.73.14.1       tls fail1:	free(isc, M_AGP);
    577  1.73.14.1       tls 	sc->as_chipc = NULL;
    578  1.73.14.1       tls fail0:	agp_generic_detach(sc);
    579  1.73.14.1       tls 	KASSERT(error);
    580  1.73.14.1       tls 	return error;
    581  1.73.14.1       tls }
    582       1.14       scw 
    583  1.73.14.1       tls static int
    584  1.73.14.1       tls agp_i810_setup_chipset_flush_page(struct agp_softc *sc)
    585  1.73.14.1       tls {
    586  1.73.14.1       tls 	struct agp_i810_softc *const isc = sc->as_chipc;
    587  1.73.14.1       tls 	const pci_chipset_tag_t pc = sc->as_pc;
    588  1.73.14.1       tls 	const pcitag_t tag = sc->as_tag;
    589  1.73.14.1       tls 	pcireg_t lo, hi;
    590  1.73.14.1       tls 	bus_addr_t addr, minaddr, maxaddr;
    591  1.73.14.1       tls 	int error;
    592        1.1      fvdl 
    593  1.73.14.1       tls 	/* We always use memory-mapped I/O.  */
    594  1.73.14.1       tls 	isc->flush_bst = isc->vga_pa.pa_memt;
    595       1.47  jmcneill 
    596  1.73.14.1       tls 	/* No page allocated yet.  */
    597  1.73.14.1       tls 	isc->flush_addr = 0;
    598  1.73.14.1       tls 
    599  1.73.14.1       tls 	/* Read the PCI config register: 4-byte on gen3, 8-byte on gen>=4.  */
    600  1.73.14.1       tls 	if (isc->chiptype == CHIP_I915) {
    601  1.73.14.1       tls 		addr = pci_conf_read(pc, tag, AGP_I915_IFPADDR);
    602  1.73.14.1       tls 		minaddr = PAGE_SIZE;	/* XXX PCIBIOS_MIN_MEM?  */
    603  1.73.14.1       tls 		maxaddr = UINT32_MAX;
    604  1.73.14.1       tls 	} else {
    605  1.73.14.1       tls 		hi = pci_conf_read(pc, tag, AGP_I965_IFPADDR+4);
    606  1.73.14.1       tls 		lo = pci_conf_read(pc, tag, AGP_I965_IFPADDR);
    607  1.73.14.1       tls 		/*
    608  1.73.14.1       tls 		 * Convert to uint64_t, rather than bus_addr_t which
    609  1.73.14.1       tls 		 * may be 32-bit, to avoid undefined behaviour with a
    610  1.73.14.1       tls 		 * too-wide shift.  Since the BIOS doesn't know whether
    611  1.73.14.1       tls 		 * the OS will run 64-bit or with PAE, it ought to
    612  1.73.14.1       tls 		 * configure at most a 32-bit physical address, so
    613  1.73.14.1       tls 		 * let's print a warning in case that happens.
    614  1.73.14.1       tls 		 */
    615  1.73.14.1       tls 		addr = ((uint64_t)hi << 32) | lo;
    616  1.73.14.1       tls 		if (hi) {
    617  1.73.14.1       tls 			aprint_error_dev(sc->as_dev,
    618  1.73.14.1       tls 			    "BIOS configured >32-bit flush page address"
    619  1.73.14.1       tls 			    ": %"PRIx64"\n", ((uint64_t)hi << 32) | lo);
    620  1.73.14.1       tls #if __i386__ && !PAE
    621  1.73.14.1       tls 			return EIO;
    622  1.73.14.1       tls #endif
    623  1.73.14.1       tls 		}
    624  1.73.14.1       tls 		minaddr = PAGE_SIZE;	/* XXX PCIBIOS_MIN_MEM?  */
    625  1.73.14.1       tls 		maxaddr = MIN(UINT64_MAX, ~(bus_addr_t)0);
    626  1.73.14.1       tls 	}
    627  1.73.14.1       tls 
    628  1.73.14.1       tls 	/* Allocate or map a pre-allocated a page for it.  */
    629  1.73.14.1       tls 	if (ISSET(addr, 1)) {
    630  1.73.14.1       tls 		/* BIOS allocated it for us.  Use that.  */
    631  1.73.14.1       tls 		error = bus_space_map(isc->flush_bst, addr & ~1, PAGE_SIZE, 0,
    632  1.73.14.1       tls 		    &isc->flush_bsh);
    633  1.73.14.1       tls 		if (error)
    634  1.73.14.1       tls 			return error;
    635  1.73.14.1       tls 	} else {
    636  1.73.14.1       tls 		/* None allocated.  Allocate one.  */
    637  1.73.14.1       tls 		error = bus_space_alloc(isc->flush_bst, minaddr, maxaddr,
    638  1.73.14.1       tls 		    PAGE_SIZE, PAGE_SIZE, 0, 0,
    639  1.73.14.1       tls 		    &isc->flush_addr, &isc->flush_bsh);
    640  1.73.14.1       tls 		if (error)
    641  1.73.14.1       tls 			return error;
    642  1.73.14.1       tls 		KASSERT(isc->flush_addr != 0);
    643  1.73.14.1       tls 		/* Write it into the PCI config register.  */
    644  1.73.14.1       tls 		addr = isc->flush_addr | 1;
    645  1.73.14.1       tls 		if (isc->chiptype == CHIP_I915) {
    646  1.73.14.1       tls 			pci_conf_write(pc, tag, AGP_I915_IFPADDR, addr);
    647  1.73.14.1       tls 		} else {
    648  1.73.14.1       tls 			hi = __SHIFTOUT(addr, __BITS(63, 32));
    649  1.73.14.1       tls 			lo = __SHIFTOUT(addr, __BITS(31, 0));
    650  1.73.14.1       tls 			pci_conf_write(pc, tag, AGP_I965_IFPADDR+4, hi);
    651  1.73.14.1       tls 			pci_conf_write(pc, tag, AGP_I965_IFPADDR, lo);
    652  1.73.14.1       tls 		}
    653  1.73.14.1       tls 	}
    654  1.73.14.1       tls 
    655  1.73.14.1       tls 	/* Success!  */
    656  1.73.14.1       tls 	return 0;
    657  1.73.14.1       tls }
    658  1.73.14.1       tls 
    659  1.73.14.1       tls static void
    660  1.73.14.1       tls agp_i810_teardown_chipset_flush_page(struct agp_softc *sc)
    661  1.73.14.1       tls {
    662  1.73.14.1       tls 	struct agp_i810_softc *const isc = sc->as_chipc;
    663       1.49  drochner 
    664  1.73.14.1       tls 	if (isc->flush_addr) {
    665  1.73.14.1       tls 		/* If we allocated a page, clear it.  */
    666  1.73.14.1       tls 		if (isc->chiptype == CHIP_I915) {
    667  1.73.14.1       tls 			pci_conf_write(sc->as_pc, sc->as_tag, AGP_I915_IFPADDR,
    668  1.73.14.1       tls 			    0);
    669  1.73.14.1       tls 		} else {
    670  1.73.14.1       tls 			pci_conf_write(sc->as_pc, sc->as_tag,
    671  1.73.14.1       tls 			    AGP_I965_IFPADDR, 0);
    672  1.73.14.1       tls 			pci_conf_write(sc->as_pc, sc->as_tag,
    673  1.73.14.1       tls 			    AGP_I965_IFPADDR + 4, 0);
    674  1.73.14.1       tls 		}
    675  1.73.14.1       tls 		isc->flush_addr = 0;
    676  1.73.14.1       tls 		bus_space_free(isc->flush_bst, isc->flush_bsh,
    677  1.73.14.1       tls 		    PAGE_SIZE);
    678  1.73.14.1       tls 	} else {
    679  1.73.14.1       tls 		/* Otherwise, just unmap the pre-allocated page.  */
    680  1.73.14.1       tls 		bus_space_unmap(isc->flush_bst, isc->flush_bsh, PAGE_SIZE);
    681  1.73.14.1       tls 	}
    682       1.45     joerg }
    683       1.45     joerg 
    684       1.49  drochner /*
    685       1.49  drochner  * XXX horrible hack to allow drm code to use our mapping
    686       1.49  drochner  * of VGA chip registers
    687       1.49  drochner  */
    688       1.49  drochner int
    689  1.73.14.1       tls agp_i810_borrow(bus_addr_t base, bus_size_t size, bus_space_handle_t *hdlp)
    690       1.49  drochner {
    691       1.49  drochner 
    692  1.73.14.1       tls 	if (agp_i810_vga_regbase == 0)
    693  1.73.14.1       tls 		return 0;
    694  1.73.14.1       tls 	if (base < agp_i810_vga_regbase)
    695  1.73.14.1       tls 		return 0;
    696  1.73.14.1       tls 	if (agp_i810_vga_regsize < size)
    697  1.73.14.1       tls 		return 0;
    698  1.73.14.1       tls 	if ((base - agp_i810_vga_regbase) > (agp_i810_vga_regsize - size))
    699  1.73.14.1       tls 		return 0;
    700  1.73.14.1       tls 	if (bus_space_subregion(agp_i810_vga_bst, agp_i810_vga_bsh,
    701  1.73.14.1       tls 		(base - agp_i810_vga_regbase), (agp_i810_vga_regsize - size),
    702  1.73.14.1       tls 		hdlp))
    703       1.49  drochner 		return 0;
    704       1.49  drochner 	return 1;
    705       1.49  drochner }
    706       1.49  drochner 
    707  1.73.14.1       tls static int
    708  1.73.14.1       tls agp_i810_init(struct agp_softc *sc)
    709       1.45     joerg {
    710       1.45     joerg 	struct agp_i810_softc *isc;
    711  1.73.14.1       tls 	int error;
    712       1.45     joerg 
    713       1.45     joerg 	isc = sc->as_chipc;
    714       1.45     joerg 
    715       1.14       scw 	if (isc->chiptype == CHIP_I810) {
    716  1.73.14.1       tls 		struct agp_gatt *gatt;
    717       1.36  christos 		void *virtual;
    718       1.14       scw 		int dummyseg;
    719       1.31      tron 
    720       1.14       scw 		/* Some i810s have on-chip memory called dcache */
    721       1.14       scw 		if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
    722       1.14       scw 			isc->dcache_size = 4 * 1024 * 1024;
    723       1.14       scw 		else
    724       1.14       scw 			isc->dcache_size = 0;
    725       1.14       scw 
    726       1.14       scw 		/* According to the specs the gatt on the i810 must be 64k */
    727  1.73.14.1       tls 		isc->gtt_size = 64 * 1024;
    728  1.73.14.1       tls 		gatt = malloc(sizeof(*gatt), M_AGP, M_NOWAIT);
    729  1.73.14.1       tls 		if (gatt == NULL) {
    730  1.73.14.1       tls 			aprint_error_dev(sc->as_dev,
    731  1.73.14.1       tls 			    "can't malloc GATT record\n");
    732  1.73.14.1       tls 			error = ENOMEM;
    733  1.73.14.1       tls 			goto fail0;
    734  1.73.14.1       tls 		}
    735  1.73.14.1       tls 		gatt->ag_entries = isc->gtt_size / sizeof(uint32_t);
    736  1.73.14.1       tls 		error = agp_alloc_dmamem(sc->as_dmat, isc->gtt_size,
    737       1.31      tron 		    0, &gatt->ag_dmamap, &virtual, &gatt->ag_physical,
    738  1.73.14.1       tls 		    &gatt->ag_dmaseg, 1, &dummyseg);
    739  1.73.14.1       tls 		if (error) {
    740  1.73.14.1       tls 			aprint_error_dev(sc->as_dev,
    741  1.73.14.1       tls 			    "can't allocate memory for GTT: %d\n", error);
    742       1.14       scw 			free(gatt, M_AGP);
    743  1.73.14.1       tls 			goto fail0;
    744        1.1      fvdl 		}
    745  1.73.14.1       tls 
    746       1.31      tron 		gatt->ag_virtual = (uint32_t *)virtual;
    747  1.73.14.1       tls 		gatt->ag_size = gatt->ag_entries * sizeof(uint32_t);
    748       1.14       scw 		memset(gatt->ag_virtual, 0, gatt->ag_size);
    749       1.14       scw 		agp_flush_cache();
    750  1.73.14.1       tls 
    751       1.14       scw 		/* Install the GATT. */
    752  1.73.14.1       tls 		isc->pgtblctl = gatt->ag_physical | 1;
    753  1.73.14.1       tls 		WRITE4(AGP_I810_PGTBL_CTL, isc->pgtblctl);
    754  1.73.14.1       tls 		isc->gatt = gatt;
    755       1.17   hannken 	} else if (isc->chiptype == CHIP_I830) {
    756       1.14       scw 		/* The i830 automatically initializes the 128k gatt on boot. */
    757  1.73.14.1       tls 		/* XXX [citation needed] */
    758       1.14       scw 		pcireg_t reg;
    759       1.14       scw 		u_int16_t gcc1;
    760       1.14       scw 
    761  1.73.14.1       tls 		isc->gtt_size = 128 * 1024;
    762  1.73.14.1       tls 
    763       1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
    764       1.14       scw 		gcc1 = (u_int16_t)(reg >> 16);
    765       1.14       scw 		switch (gcc1 & AGP_I830_GCC1_GMS) {
    766       1.14       scw 		case AGP_I830_GCC1_GMS_STOLEN_512:
    767       1.14       scw 			isc->stolen = (512 - 132) * 1024 / 4096;
    768       1.14       scw 			break;
    769       1.25     perry 		case AGP_I830_GCC1_GMS_STOLEN_1024:
    770       1.14       scw 			isc->stolen = (1024 - 132) * 1024 / 4096;
    771       1.14       scw 			break;
    772       1.25     perry 		case AGP_I830_GCC1_GMS_STOLEN_8192:
    773       1.14       scw 			isc->stolen = (8192 - 132) * 1024 / 4096;
    774       1.14       scw 			break;
    775       1.14       scw 		default:
    776       1.14       scw 			isc->stolen = 0;
    777  1.73.14.1       tls 			aprint_error_dev(sc->as_dev,
    778  1.73.14.1       tls 			    "unknown memory configuration, disabling\n");
    779  1.73.14.1       tls 			error = ENXIO;
    780  1.73.14.1       tls 			goto fail0;
    781       1.14       scw 		}
    782       1.45     joerg 
    783       1.14       scw 		if (isc->stolen > 0) {
    784  1.73.14.1       tls 			aprint_normal_dev(sc->as_dev,
    785  1.73.14.1       tls 			    "detected %dk stolen memory\n",
    786  1.73.14.1       tls 			    isc->stolen * 4);
    787       1.14       scw 		}
    788       1.17   hannken 
    789       1.17   hannken 		/* GATT address is already in there, make sure it's enabled */
    790  1.73.14.1       tls 		isc->pgtblctl = READ4(AGP_I810_PGTBL_CTL);
    791  1.73.14.1       tls 		isc->pgtblctl |= 1;
    792  1.73.14.1       tls 		WRITE4(AGP_I810_PGTBL_CTL, isc->pgtblctl);
    793       1.42     markd 	} else if (isc->chiptype == CHIP_I855 || isc->chiptype == CHIP_I915 ||
    794       1.58  christos 		   isc->chiptype == CHIP_I965 || isc->chiptype == CHIP_G33 ||
    795       1.58  christos 		   isc->chiptype == CHIP_G4X) {
    796       1.17   hannken 		pcireg_t reg;
    797  1.73.14.1       tls 		u_int32_t gtt_size, stolen;	/* XXX kilobytes */
    798       1.17   hannken 		u_int16_t gcc1;
    799       1.17   hannken 
    800       1.45     joerg 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I855_GCC1);
    801       1.45     joerg 		gcc1 = (u_int16_t)(reg >> 16);
    802       1.45     joerg 
    803  1.73.14.1       tls 		isc->pgtblctl = READ4(AGP_I810_PGTBL_CTL);
    804       1.58  christos 
    805       1.42     markd 		/* Stolen memory is set up at the beginning of the aperture by
    806       1.42     markd                  * the BIOS, consisting of the GATT followed by 4kb for the
    807       1.42     markd 		 * BIOS display.
    808       1.42     markd                  */
    809       1.42     markd                 switch (isc->chiptype) {
    810       1.42     markd 		case CHIP_I855:
    811       1.58  christos 			gtt_size = 128;
    812       1.42     markd 			break;
    813       1.42     markd                 case CHIP_I915:
    814       1.58  christos 			gtt_size = 256;
    815       1.42     markd 			break;
    816       1.42     markd 		case CHIP_I965:
    817  1.73.14.1       tls 			switch (isc->pgtblctl & AGP_I810_PGTBL_SIZE_MASK) {
    818       1.58  christos 			case AGP_I810_PGTBL_SIZE_128KB:
    819       1.58  christos 			case AGP_I810_PGTBL_SIZE_512KB:
    820       1.58  christos 				gtt_size = 512;
    821       1.58  christos 				break;
    822       1.58  christos 			case AGP_I965_PGTBL_SIZE_1MB:
    823       1.58  christos 				gtt_size = 1024;
    824       1.58  christos 				break;
    825       1.58  christos 			case AGP_I965_PGTBL_SIZE_2MB:
    826       1.61    sketch 				gtt_size = 2048;
    827       1.58  christos 				break;
    828       1.58  christos 			case AGP_I965_PGTBL_SIZE_1_5MB:
    829       1.61    sketch 				gtt_size = 1024 + 512;
    830       1.58  christos 				break;
    831       1.58  christos 			default:
    832  1.73.14.1       tls 				aprint_error_dev(sc->as_dev,
    833  1.73.14.1       tls 				    "bad PGTBL size\n");
    834  1.73.14.1       tls 				error = ENXIO;
    835  1.73.14.1       tls 				goto fail0;
    836       1.58  christos 			}
    837       1.42     markd 			break;
    838       1.45     joerg 		case CHIP_G33:
    839       1.45     joerg 			switch (gcc1 & AGP_G33_PGTBL_SIZE_MASK) {
    840       1.45     joerg 			case AGP_G33_PGTBL_SIZE_1M:
    841       1.58  christos 				gtt_size = 1024;
    842       1.45     joerg 				break;
    843       1.45     joerg 			case AGP_G33_PGTBL_SIZE_2M:
    844       1.58  christos 				gtt_size = 2048;
    845       1.45     joerg 				break;
    846       1.45     joerg 			default:
    847  1.73.14.1       tls 				aprint_error_dev(sc->as_dev,
    848  1.73.14.1       tls 				    "bad PGTBL size\n");
    849  1.73.14.1       tls 				error = ENXIO;
    850  1.73.14.1       tls 				goto fail0;
    851       1.45     joerg 			}
    852       1.45     joerg 			break;
    853       1.58  christos 		case CHIP_G4X:
    854  1.73.14.1       tls 			switch (isc->pgtblctl & AGP_G4X_PGTBL_SIZE_MASK) {
    855  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_512K:
    856  1.73.14.1       tls 				gtt_size = 512;
    857  1.73.14.1       tls 				break;
    858  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_256K:
    859  1.73.14.1       tls 				gtt_size = 256;
    860  1.73.14.1       tls 				break;
    861  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_128K:
    862  1.73.14.1       tls 				gtt_size = 128;
    863  1.73.14.1       tls 				break;
    864  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_1M:
    865  1.73.14.1       tls 				gtt_size = 1*1024;
    866  1.73.14.1       tls 				break;
    867  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_2M:
    868  1.73.14.1       tls 				gtt_size = 2*1024;
    869  1.73.14.1       tls 				break;
    870  1.73.14.1       tls 			case AGP_G4X_PGTBL_SIZE_1_5M:
    871  1.73.14.1       tls 				gtt_size = 1*1024 + 512;
    872  1.73.14.1       tls 				break;
    873  1.73.14.1       tls 			default:
    874  1.73.14.1       tls 				aprint_error_dev(sc->as_dev,
    875  1.73.14.1       tls 				    "bad PGTBL size\n");
    876  1.73.14.1       tls 				error = ENXIO;
    877  1.73.14.1       tls 				goto fail0;
    878  1.73.14.1       tls 			}
    879       1.58  christos 			break;
    880       1.42     markd 		default:
    881  1.73.14.1       tls 			panic("impossible chiptype %d", isc->chiptype);
    882       1.58  christos 		}
    883       1.42     markd 
    884  1.73.14.1       tls 		/*
    885  1.73.14.1       tls 		 * XXX If I'm reading the datasheets right, this stolen
    886  1.73.14.1       tls 		 * memory detection logic is totally wrong.
    887  1.73.14.1       tls 		 */
    888       1.17   hannken 		switch (gcc1 & AGP_I855_GCC1_GMS) {
    889       1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_1M:
    890       1.58  christos 			stolen = 1024;
    891       1.17   hannken 			break;
    892       1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_4M:
    893       1.58  christos 			stolen = 4 * 1024;
    894       1.17   hannken 			break;
    895       1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_8M:
    896       1.58  christos 			stolen = 8 * 1024;
    897       1.17   hannken 			break;
    898       1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_16M:
    899       1.58  christos 			stolen = 16 * 1024;
    900       1.17   hannken 			break;
    901       1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_32M:
    902       1.58  christos 			stolen = 32 * 1024;
    903       1.41  sborrill 			break;
    904       1.41  sborrill 		case AGP_I915_GCC1_GMS_STOLEN_48M:
    905       1.58  christos 			stolen = 48 * 1024;
    906       1.41  sborrill 			break;
    907       1.41  sborrill 		case AGP_I915_GCC1_GMS_STOLEN_64M:
    908       1.58  christos 			stolen = 64 * 1024;
    909       1.41  sborrill 			break;
    910       1.46     markd 		case AGP_G33_GCC1_GMS_STOLEN_128M:
    911       1.58  christos 			stolen = 128 * 1024;
    912       1.46     markd 			break;
    913       1.46     markd 		case AGP_G33_GCC1_GMS_STOLEN_256M:
    914       1.58  christos 			stolen = 256 * 1024;
    915       1.58  christos 			break;
    916       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_96M:
    917       1.58  christos 			stolen = 96 * 1024;
    918       1.58  christos 			break;
    919       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_160M:
    920       1.58  christos 			stolen = 160 * 1024;
    921       1.58  christos 			break;
    922       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_224M:
    923       1.58  christos 			stolen = 224 * 1024;
    924       1.58  christos 			break;
    925       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_352M:
    926       1.58  christos 			stolen = 352 * 1024;
    927       1.46     markd 			break;
    928       1.28  christos 		default:
    929  1.73.14.1       tls 			aprint_error_dev(sc->as_dev,
    930  1.73.14.1       tls 			    "unknown memory configuration, disabling\n");
    931  1.73.14.1       tls 			error = ENXIO;
    932  1.73.14.1       tls 			goto fail0;
    933       1.28  christos 		}
    934       1.58  christos 
    935       1.58  christos 		switch (gcc1 & AGP_I855_GCC1_GMS) {
    936       1.58  christos 		case AGP_I915_GCC1_GMS_STOLEN_48M:
    937       1.58  christos 		case AGP_I915_GCC1_GMS_STOLEN_64M:
    938       1.58  christos 			if (isc->chiptype != CHIP_I915 &&
    939       1.58  christos 			    isc->chiptype != CHIP_I965 &&
    940       1.58  christos 			    isc->chiptype != CHIP_G33 &&
    941       1.58  christos 			    isc->chiptype != CHIP_G4X)
    942       1.58  christos 				stolen = 0;
    943       1.58  christos 			break;
    944       1.58  christos 		case AGP_G33_GCC1_GMS_STOLEN_128M:
    945       1.58  christos 		case AGP_G33_GCC1_GMS_STOLEN_256M:
    946       1.58  christos 			if (isc->chiptype != CHIP_I965 &&
    947       1.58  christos 			    isc->chiptype != CHIP_G33 &&
    948       1.58  christos 			    isc->chiptype != CHIP_G4X)
    949       1.58  christos 				stolen = 0;
    950       1.58  christos 			break;
    951       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_96M:
    952       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_160M:
    953       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_224M:
    954       1.58  christos 		case AGP_G4X_GCC1_GMS_STOLEN_352M:
    955       1.58  christos 			if (isc->chiptype != CHIP_I965 &&
    956       1.58  christos 			    isc->chiptype != CHIP_G4X)
    957       1.58  christos 				stolen = 0;
    958       1.58  christos 			break;
    959       1.58  christos 		}
    960       1.58  christos 
    961  1.73.14.1       tls 		isc->gtt_size = gtt_size * 1024;
    962  1.73.14.1       tls 
    963       1.58  christos 		/* BIOS space */
    964  1.73.14.1       tls 		/* XXX [citation needed] */
    965       1.62     markd 		gtt_size += 4;
    966       1.58  christos 
    967  1.73.14.1       tls 		/* XXX [citation needed] for this subtraction */
    968       1.58  christos 		isc->stolen = (stolen - gtt_size) * 1024 / 4096;
    969       1.58  christos 
    970       1.28  christos 		if (isc->stolen > 0) {
    971  1.73.14.1       tls 			aprint_normal_dev(sc->as_dev,
    972  1.73.14.1       tls 			    "detected %dk stolen memory\n",
    973  1.73.14.1       tls 			    isc->stolen * 4);
    974       1.28  christos 		}
    975       1.28  christos 
    976       1.28  christos 		/* GATT address is already in there, make sure it's enabled */
    977  1.73.14.1       tls 		isc->pgtblctl |= 1;
    978  1.73.14.1       tls 		WRITE4(AGP_I810_PGTBL_CTL, isc->pgtblctl);
    979        1.1      fvdl 	}
    980        1.1      fvdl 
    981        1.1      fvdl 	/*
    982        1.1      fvdl 	 * Make sure the chipset can see everything.
    983        1.1      fvdl 	 */
    984        1.1      fvdl 	agp_flush_cache();
    985       1.14       scw 
    986  1.73.14.1       tls 	/*
    987  1.73.14.1       tls 	 * Publish what we found for kludgey drivers (I'm looking at
    988  1.73.14.1       tls 	 * you, drm).
    989  1.73.14.1       tls 	 */
    990  1.73.14.1       tls 	if (agp_i810_sc == NULL)
    991  1.73.14.1       tls 		agp_i810_sc = sc;
    992  1.73.14.1       tls 	else
    993  1.73.14.1       tls 		aprint_error_dev(sc->as_dev, "agp already attached\n");
    994  1.73.14.1       tls 
    995  1.73.14.1       tls 	/* Success!  */
    996        1.1      fvdl 	return 0;
    997  1.73.14.1       tls 
    998  1.73.14.1       tls fail0:	KASSERT(error);
    999  1.73.14.1       tls 	return error;
   1000        1.1      fvdl }
   1001        1.1      fvdl 
   1002        1.1      fvdl #if 0
   1003        1.1      fvdl static int
   1004        1.1      fvdl agp_i810_detach(struct agp_softc *sc)
   1005        1.1      fvdl {
   1006        1.1      fvdl 	int error;
   1007        1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
   1008        1.1      fvdl 
   1009        1.1      fvdl 	error = agp_generic_detach(sc);
   1010        1.1      fvdl 	if (error)
   1011        1.1      fvdl 		return error;
   1012        1.1      fvdl 
   1013  1.73.14.1       tls 	switch (isc->chiptype) {
   1014  1.73.14.1       tls 	case CHIP_I915:
   1015  1.73.14.1       tls 	case CHIP_I965:
   1016  1.73.14.1       tls 	case CHIP_G33:
   1017  1.73.14.1       tls 	case CHIP_G4X:
   1018  1.73.14.1       tls 		agp_i810_teardown_chipset_flush_page(sc);
   1019  1.73.14.1       tls 		break;
   1020  1.73.14.1       tls 	}
   1021  1.73.14.1       tls 
   1022        1.1      fvdl 	/* Clear the GATT base. */
   1023       1.14       scw 	if (sc->chiptype == CHIP_I810) {
   1024       1.14       scw 		WRITE4(AGP_I810_PGTBL_CTL, 0);
   1025       1.14       scw 	} else {
   1026       1.14       scw 		unsigned int pgtblctl;
   1027       1.14       scw 		pgtblctl = READ4(AGP_I810_PGTBL_CTL);
   1028       1.14       scw 		pgtblctl &= ~1;
   1029       1.14       scw 		WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
   1030       1.14       scw 	}
   1031        1.1      fvdl 
   1032       1.14       scw 	if (sc->chiptype == CHIP_I810) {
   1033       1.14       scw 		agp_free_dmamem(sc->as_dmat, gatt->ag_size, gatt->ag_dmamap,
   1034       1.36  christos 		    (void *)gatt->ag_virtual, &gatt->ag_dmaseg, 1);
   1035  1.73.14.1       tls 		free(isc->gatt, M_AGP);
   1036       1.14       scw 	}
   1037        1.1      fvdl 
   1038        1.1      fvdl 	return 0;
   1039        1.1      fvdl }
   1040        1.1      fvdl #endif
   1041        1.1      fvdl 
   1042        1.1      fvdl static u_int32_t
   1043        1.1      fvdl agp_i810_get_aperture(struct agp_softc *sc)
   1044        1.1      fvdl {
   1045       1.14       scw 	struct agp_i810_softc *isc = sc->as_chipc;
   1046       1.14       scw 	pcireg_t reg;
   1047       1.58  christos 	u_int32_t size;
   1048  1.73.14.1       tls 	u_int16_t miscc, gcc1;
   1049       1.14       scw 
   1050       1.58  christos 	size = 0;
   1051       1.58  christos 
   1052       1.42     markd 	switch (isc->chiptype) {
   1053       1.42     markd 	case CHIP_I810:
   1054       1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
   1055       1.14       scw 		miscc = (u_int16_t)(reg >> 16);
   1056       1.14       scw 		if ((miscc & AGP_I810_MISCC_WINSIZE) ==
   1057       1.14       scw 		    AGP_I810_MISCC_WINSIZE_32)
   1058       1.58  christos 			size = 32 * 1024 * 1024;
   1059       1.14       scw 		else
   1060       1.58  christos 			size = 64 * 1024 * 1024;
   1061       1.58  christos 		break;
   1062       1.42     markd 	case CHIP_I830:
   1063       1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
   1064       1.14       scw 		gcc1 = (u_int16_t)(reg >> 16);
   1065       1.14       scw 		if ((gcc1 & AGP_I830_GCC1_GMASIZE) == AGP_I830_GCC1_GMASIZE_64)
   1066       1.58  christos 			size = 64 * 1024 * 1024;
   1067       1.14       scw 		else
   1068       1.58  christos 			size = 128 * 1024 * 1024;
   1069       1.58  christos 		break;
   1070       1.42     markd 	case CHIP_I855:
   1071       1.58  christos 		size = 128 * 1024 * 1024;
   1072       1.58  christos 		break;
   1073       1.42     markd 	case CHIP_I915:
   1074       1.45     joerg 	case CHIP_G33:
   1075       1.64     markd 	case CHIP_G4X:
   1076  1.73.14.1       tls 		size = sc->as_apsize;
   1077       1.58  christos 		break;
   1078       1.42     markd 	case CHIP_I965:
   1079       1.58  christos 		size = 512 * 1024 * 1024;
   1080       1.58  christos 		break;
   1081       1.42     markd 	default:
   1082       1.42     markd 		aprint_error(": Unknown chipset\n");
   1083       1.14       scw 	}
   1084       1.42     markd 
   1085       1.58  christos 	return size;
   1086        1.1      fvdl }
   1087        1.1      fvdl 
   1088        1.1      fvdl static int
   1089  1.73.14.1       tls agp_i810_set_aperture(struct agp_softc *sc __unused,
   1090  1.73.14.1       tls     uint32_t aperture __unused)
   1091        1.1      fvdl {
   1092       1.14       scw 
   1093  1.73.14.1       tls 	return ENOSYS;
   1094        1.1      fvdl }
   1095        1.1      fvdl 
   1096        1.1      fvdl static int
   1097        1.1      fvdl agp_i810_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
   1098        1.1      fvdl {
   1099        1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
   1100        1.1      fvdl 
   1101  1.73.14.1       tls 	if (offset < 0 || offset >= ((isc->gtt_size/4) << AGP_PAGE_SHIFT)) {
   1102  1.73.14.1       tls 		DPRINTF(sc, "failed"
   1103  1.73.14.1       tls 		    ": offset 0x%"PRIxMAX", shift %u, entries %"PRIuMAX"\n",
   1104  1.73.14.1       tls 		    (uintmax_t)offset,
   1105  1.73.14.1       tls 		    (unsigned)AGP_PAGE_SHIFT,
   1106  1.73.14.1       tls 		    (uintmax_t)isc->gtt_size/4);
   1107        1.1      fvdl 		return EINVAL;
   1108       1.14       scw 	}
   1109       1.14       scw 
   1110       1.70    gsutre 	if (isc->chiptype != CHIP_I810) {
   1111       1.14       scw 		if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
   1112  1.73.14.1       tls 			DPRINTF(sc, "trying to bind into stolen memory\n");
   1113       1.14       scw 			return EINVAL;
   1114       1.14       scw 		}
   1115       1.14       scw 	}
   1116        1.1      fvdl 
   1117       1.71    gsutre 	return agp_i810_write_gtt_entry(isc, offset, physical | 1);
   1118        1.1      fvdl }
   1119        1.1      fvdl 
   1120        1.1      fvdl static int
   1121        1.1      fvdl agp_i810_unbind_page(struct agp_softc *sc, off_t offset)
   1122        1.1      fvdl {
   1123        1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
   1124        1.1      fvdl 
   1125  1.73.14.1       tls 	if (offset < 0 || offset >= ((isc->gtt_size/4) << AGP_PAGE_SHIFT))
   1126        1.1      fvdl 		return EINVAL;
   1127        1.1      fvdl 
   1128       1.17   hannken 	if (isc->chiptype != CHIP_I810 ) {
   1129       1.14       scw 		if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
   1130  1.73.14.1       tls 			DPRINTF(sc, "trying to unbind from stolen memory\n");
   1131       1.14       scw 			return EINVAL;
   1132       1.14       scw 		}
   1133       1.14       scw 	}
   1134       1.14       scw 
   1135       1.71    gsutre 	return agp_i810_write_gtt_entry(isc, offset, 0);
   1136        1.1      fvdl }
   1137        1.1      fvdl 
   1138        1.1      fvdl /*
   1139        1.1      fvdl  * Writing via memory mapped registers already flushes all TLBs.
   1140        1.1      fvdl  */
   1141        1.1      fvdl static void
   1142       1.35  christos agp_i810_flush_tlb(struct agp_softc *sc)
   1143        1.1      fvdl {
   1144        1.1      fvdl }
   1145        1.1      fvdl 
   1146        1.1      fvdl static int
   1147       1.35  christos agp_i810_enable(struct agp_softc *sc, u_int32_t mode)
   1148        1.1      fvdl {
   1149        1.1      fvdl 
   1150        1.1      fvdl 	return 0;
   1151        1.1      fvdl }
   1152        1.1      fvdl 
   1153  1.73.14.1       tls #define	AGP_I810_MEMTYPE_MAIN		0
   1154  1.73.14.1       tls #define	AGP_I810_MEMTYPE_DCACHE		1
   1155  1.73.14.1       tls #define	AGP_I810_MEMTYPE_HWCURSOR	2
   1156  1.73.14.1       tls 
   1157        1.1      fvdl static struct agp_memory *
   1158        1.1      fvdl agp_i810_alloc_memory(struct agp_softc *sc, int type, vsize_t size)
   1159        1.1      fvdl {
   1160        1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
   1161        1.1      fvdl 	struct agp_memory *mem;
   1162  1.73.14.1       tls 	int error;
   1163        1.1      fvdl 
   1164  1.73.14.1       tls 	DPRINTF(sc, "AGP: alloc(%d, 0x%"PRIxMAX")\n", type, (uintmax_t)size);
   1165       1.28  christos 
   1166  1.73.14.1       tls 	if (size <= 0)
   1167  1.73.14.1       tls 		return NULL;
   1168        1.1      fvdl 	if ((size & (AGP_PAGE_SIZE - 1)) != 0)
   1169  1.73.14.1       tls 		return NULL;
   1170  1.73.14.1       tls 	KASSERT(sc->as_allocated <= sc->as_maxmem);
   1171  1.73.14.1       tls 	if (size > (sc->as_maxmem - sc->as_allocated))
   1172  1.73.14.1       tls 		return NULL;
   1173  1.73.14.1       tls 	if (size > ((isc->gtt_size/4) << AGP_PAGE_SHIFT))
   1174  1.73.14.1       tls 		return NULL;
   1175        1.1      fvdl 
   1176  1.73.14.1       tls 	switch (type) {
   1177  1.73.14.1       tls 	case AGP_I810_MEMTYPE_MAIN:
   1178  1.73.14.1       tls 		break;
   1179  1.73.14.1       tls 	case AGP_I810_MEMTYPE_DCACHE:
   1180  1.73.14.1       tls 		if (isc->chiptype != CHIP_I810)
   1181  1.73.14.1       tls 			return NULL;
   1182        1.1      fvdl 		if (size != isc->dcache_size)
   1183  1.73.14.1       tls 			return NULL;
   1184  1.73.14.1       tls 		break;
   1185  1.73.14.1       tls 	case AGP_I810_MEMTYPE_HWCURSOR:
   1186  1.73.14.1       tls 		if ((size != AGP_PAGE_SIZE) &&
   1187  1.73.14.1       tls 		    (size != AGP_PAGE_SIZE*4))
   1188  1.73.14.1       tls 			return NULL;
   1189  1.73.14.1       tls 		break;
   1190  1.73.14.1       tls 	default:
   1191  1.73.14.1       tls 		return NULL;
   1192        1.1      fvdl 	}
   1193        1.1      fvdl 
   1194  1.73.14.1       tls 	mem = malloc(sizeof(*mem), M_AGP, M_WAITOK|M_ZERO);
   1195        1.1      fvdl 	if (mem == NULL)
   1196  1.73.14.1       tls 		goto fail0;
   1197        1.1      fvdl 	mem->am_id = sc->as_nextid++;
   1198        1.1      fvdl 	mem->am_size = size;
   1199        1.1      fvdl 	mem->am_type = type;
   1200        1.1      fvdl 
   1201  1.73.14.1       tls 	switch (type) {
   1202  1.73.14.1       tls 	case AGP_I810_MEMTYPE_MAIN:
   1203  1.73.14.1       tls 		error = bus_dmamap_create(sc->as_dmat, size,
   1204  1.73.14.1       tls 		    (size >> AGP_PAGE_SHIFT) + 1, size, 0, BUS_DMA_WAITOK,
   1205  1.73.14.1       tls 		    &mem->am_dmamap);
   1206  1.73.14.1       tls 		if (error)
   1207  1.73.14.1       tls 			goto fail1;
   1208  1.73.14.1       tls 		break;
   1209  1.73.14.1       tls 	case AGP_I810_MEMTYPE_DCACHE:
   1210  1.73.14.1       tls 		break;
   1211  1.73.14.1       tls 	case AGP_I810_MEMTYPE_HWCURSOR:
   1212  1.73.14.1       tls 		mem->am_dmaseg = malloc(sizeof(*mem->am_dmaseg), M_AGP,
   1213        1.1      fvdl 		    M_WAITOK);
   1214  1.73.14.1       tls 		error = agp_alloc_dmamem(sc->as_dmat, size, 0, &mem->am_dmamap,
   1215  1.73.14.1       tls 		    &mem->am_virtual, &mem->am_physical, mem->am_dmaseg, 1,
   1216  1.73.14.1       tls 		    &mem->am_nseg);
   1217  1.73.14.1       tls 		if (error) {
   1218        1.1      fvdl 			free(mem->am_dmaseg, M_AGP);
   1219  1.73.14.1       tls 			goto fail1;
   1220        1.1      fvdl 		}
   1221  1.73.14.1       tls 		(void)memset(mem->am_virtual, 0, size);
   1222  1.73.14.1       tls 		break;
   1223  1.73.14.1       tls 	default:
   1224  1.73.14.1       tls 		panic("invalid agp memory type: %d", type);
   1225        1.1      fvdl 	}
   1226        1.1      fvdl 
   1227        1.1      fvdl 	TAILQ_INSERT_TAIL(&sc->as_memory, mem, am_link);
   1228        1.1      fvdl 	sc->as_allocated += size;
   1229        1.1      fvdl 
   1230        1.1      fvdl 	return mem;
   1231  1.73.14.1       tls 
   1232  1.73.14.1       tls fail1:	free(mem, M_AGP);
   1233  1.73.14.1       tls fail0:	return NULL;
   1234        1.1      fvdl }
   1235        1.1      fvdl 
   1236        1.1      fvdl static int
   1237        1.1      fvdl agp_i810_free_memory(struct agp_softc *sc, struct agp_memory *mem)
   1238        1.1      fvdl {
   1239  1.73.14.1       tls 
   1240        1.1      fvdl 	if (mem->am_is_bound)
   1241        1.1      fvdl 		return EBUSY;
   1242        1.1      fvdl 
   1243  1.73.14.1       tls 	switch (mem->am_type) {
   1244  1.73.14.1       tls 	case AGP_I810_MEMTYPE_MAIN:
   1245  1.73.14.1       tls 		bus_dmamap_destroy(sc->as_dmat, mem->am_dmamap);
   1246  1.73.14.1       tls 		break;
   1247  1.73.14.1       tls 	case AGP_I810_MEMTYPE_DCACHE:
   1248  1.73.14.1       tls 		break;
   1249  1.73.14.1       tls 	case AGP_I810_MEMTYPE_HWCURSOR:
   1250        1.1      fvdl 		agp_free_dmamem(sc->as_dmat, mem->am_size, mem->am_dmamap,
   1251        1.1      fvdl 		    mem->am_virtual, mem->am_dmaseg, mem->am_nseg);
   1252        1.1      fvdl 		free(mem->am_dmaseg, M_AGP);
   1253  1.73.14.1       tls 		break;
   1254  1.73.14.1       tls 	default:
   1255  1.73.14.1       tls 		panic("invalid agp i810 memory type: %d", mem->am_type);
   1256        1.1      fvdl 	}
   1257        1.1      fvdl 
   1258        1.1      fvdl 	sc->as_allocated -= mem->am_size;
   1259        1.1      fvdl 	TAILQ_REMOVE(&sc->as_memory, mem, am_link);
   1260        1.1      fvdl 	free(mem, M_AGP);
   1261  1.73.14.1       tls 
   1262        1.1      fvdl 	return 0;
   1263        1.1      fvdl }
   1264        1.1      fvdl 
   1265        1.1      fvdl static int
   1266        1.1      fvdl agp_i810_bind_memory(struct agp_softc *sc, struct agp_memory *mem,
   1267  1.73.14.1       tls     off_t offset)
   1268        1.1      fvdl {
   1269        1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
   1270  1.73.14.1       tls 	uint32_t pgtblctl;
   1271  1.73.14.1       tls 	int error;
   1272        1.4  drochner 
   1273  1.73.14.1       tls 	if (mem->am_is_bound)
   1274       1.70    gsutre 		return EINVAL;
   1275       1.70    gsutre 
   1276        1.4  drochner 	/*
   1277        1.4  drochner 	 * XXX evil hack: the PGTBL_CTL appearently gets overwritten by the
   1278        1.4  drochner 	 * X server for mysterious reasons which leads to crashes if we write
   1279        1.4  drochner 	 * to the GTT through the MMIO window.
   1280        1.4  drochner 	 * Until the issue is solved, simply restore it.
   1281        1.4  drochner 	 */
   1282  1.73.14.1       tls 	pgtblctl = bus_space_read_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL);
   1283  1.73.14.1       tls 	if (pgtblctl != isc->pgtblctl) {
   1284  1.73.14.1       tls 		printf("agp_i810_bind_memory: PGTBL_CTL is 0x%"PRIx32
   1285  1.73.14.1       tls 		    " - fixing\n", pgtblctl);
   1286        1.4  drochner 		bus_space_write_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL,
   1287  1.73.14.1       tls 		    isc->pgtblctl);
   1288        1.4  drochner 	}
   1289        1.1      fvdl 
   1290  1.73.14.1       tls 	switch (mem->am_type) {
   1291  1.73.14.1       tls 	case AGP_I810_MEMTYPE_MAIN:
   1292  1.73.14.1       tls 		return agp_generic_bind_memory_bounded(sc, mem, offset,
   1293  1.73.14.1       tls 		    0, (isc->gtt_size/4) << AGP_PAGE_SHIFT);
   1294  1.73.14.1       tls 	case AGP_I810_MEMTYPE_DCACHE:
   1295  1.73.14.1       tls 		error = agp_i810_bind_memory_dcache(sc, mem, offset);
   1296  1.73.14.1       tls 		break;
   1297  1.73.14.1       tls 	case AGP_I810_MEMTYPE_HWCURSOR:
   1298  1.73.14.1       tls 		error = agp_i810_bind_memory_hwcursor(sc, mem, offset);
   1299  1.73.14.1       tls 		break;
   1300  1.73.14.1       tls 	default:
   1301  1.73.14.1       tls 		panic("invalid agp i810 memory type: %d", mem->am_type);
   1302        1.5  drochner 	}
   1303  1.73.14.1       tls 	if (error)
   1304  1.73.14.1       tls 		return error;
   1305        1.5  drochner 
   1306  1.73.14.1       tls 	/* Success!  */
   1307  1.73.14.1       tls 	mem->am_is_bound = 1;
   1308  1.73.14.1       tls 	return 0;
   1309  1.73.14.1       tls }
   1310        1.1      fvdl 
   1311  1.73.14.1       tls #define	I810_GTT_PTE_VALID	0x01
   1312  1.73.14.1       tls #define	I810_GTT_PTE_DCACHE	0x02
   1313       1.14       scw 
   1314  1.73.14.1       tls static int
   1315  1.73.14.1       tls agp_i810_bind_memory_dcache(struct agp_softc *sc, struct agp_memory *mem,
   1316  1.73.14.1       tls     off_t offset)
   1317  1.73.14.1       tls {
   1318  1.73.14.1       tls 	struct agp_i810_softc *const isc __diagused = sc->as_chipc;
   1319  1.73.14.1       tls 	uint32_t i, j;
   1320  1.73.14.1       tls 	int error;
   1321  1.73.14.1       tls 
   1322  1.73.14.1       tls 	KASSERT(isc->chiptype == CHIP_I810);
   1323  1.73.14.1       tls 
   1324  1.73.14.1       tls 	KASSERT((mem->am_size & (AGP_PAGE_SIZE - 1)) == 0);
   1325  1.73.14.1       tls 	for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
   1326  1.73.14.1       tls 		error = agp_i810_write_gtt_entry(isc, offset + i,
   1327  1.73.14.1       tls 		    i | I810_GTT_PTE_VALID | I810_GTT_PTE_DCACHE);
   1328  1.73.14.1       tls 		if (error)
   1329  1.73.14.1       tls 			goto fail0;
   1330  1.73.14.1       tls 	}
   1331  1.73.14.1       tls 
   1332  1.73.14.1       tls 	/* Success!  */
   1333  1.73.14.1       tls 	mem->am_offset = offset;
   1334  1.73.14.1       tls 	return 0;
   1335  1.73.14.1       tls 
   1336  1.73.14.1       tls fail0:	for (j = 0; j < i; j += AGP_PAGE_SIZE)
   1337  1.73.14.1       tls 		(void)agp_i810_unbind_page(sc, offset + j);
   1338  1.73.14.1       tls 	return error;
   1339  1.73.14.1       tls }
   1340  1.73.14.1       tls 
   1341  1.73.14.1       tls static int
   1342  1.73.14.1       tls agp_i810_bind_memory_hwcursor(struct agp_softc *sc, struct agp_memory *mem,
   1343  1.73.14.1       tls     off_t offset)
   1344  1.73.14.1       tls {
   1345  1.73.14.1       tls 	const bus_addr_t pa = mem->am_physical;
   1346  1.73.14.1       tls 	uint32_t i, j;
   1347  1.73.14.1       tls 	int error;
   1348  1.73.14.1       tls 
   1349  1.73.14.1       tls 	KASSERT((mem->am_size & (AGP_PAGE_SIZE - 1)) == 0);
   1350  1.73.14.1       tls 	for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
   1351  1.73.14.1       tls 		error = agp_i810_bind_page(sc, offset + i, pa + i);
   1352  1.73.14.1       tls 		if (error)
   1353  1.73.14.1       tls 			goto fail0;
   1354  1.73.14.1       tls 	}
   1355  1.73.14.1       tls 
   1356  1.73.14.1       tls 	/* Success!  */
   1357  1.73.14.1       tls 	mem->am_offset = offset;
   1358        1.1      fvdl 	return 0;
   1359  1.73.14.1       tls 
   1360  1.73.14.1       tls fail0:	for (j = 0; j < i; j += AGP_PAGE_SIZE)
   1361  1.73.14.1       tls 		(void)agp_i810_unbind_page(sc, offset + j);
   1362  1.73.14.1       tls 	return error;
   1363        1.1      fvdl }
   1364        1.1      fvdl 
   1365        1.1      fvdl static int
   1366        1.1      fvdl agp_i810_unbind_memory(struct agp_softc *sc, struct agp_memory *mem)
   1367        1.1      fvdl {
   1368  1.73.14.1       tls 	struct agp_i810_softc *isc __diagused = sc->as_chipc;
   1369        1.1      fvdl 	u_int32_t i;
   1370        1.1      fvdl 
   1371  1.73.14.1       tls 	if (!mem->am_is_bound)
   1372       1.70    gsutre 		return EINVAL;
   1373       1.70    gsutre 
   1374  1.73.14.1       tls 	switch (mem->am_type) {
   1375  1.73.14.1       tls 	case AGP_I810_MEMTYPE_MAIN:
   1376  1.73.14.1       tls 		return agp_generic_unbind_memory(sc, mem);
   1377  1.73.14.1       tls 	case AGP_I810_MEMTYPE_DCACHE:
   1378  1.73.14.1       tls 		KASSERT(isc->chiptype == CHIP_I810);
   1379  1.73.14.1       tls 		/* FALLTHROUGH */
   1380  1.73.14.1       tls 	case AGP_I810_MEMTYPE_HWCURSOR:
   1381       1.70    gsutre 		for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
   1382  1.73.14.1       tls 			(void)agp_i810_unbind_page(sc, mem->am_offset + i);
   1383        1.5  drochner 		mem->am_offset = 0;
   1384  1.73.14.1       tls 		break;
   1385  1.73.14.1       tls 	default:
   1386  1.73.14.1       tls 		panic("invalid agp i810 memory type: %d", mem->am_type);
   1387        1.5  drochner 	}
   1388        1.1      fvdl 
   1389       1.13  drochner 	mem->am_is_bound = 0;
   1390        1.1      fvdl 	return 0;
   1391        1.1      fvdl }
   1392       1.24  jmcneill 
   1393       1.47  jmcneill static bool
   1394       1.66    dyoung agp_i810_resume(device_t dv, const pmf_qual_t *qual)
   1395       1.24  jmcneill {
   1396       1.47  jmcneill 	struct agp_softc *sc = device_private(dv);
   1397       1.24  jmcneill 	struct agp_i810_softc *isc = sc->as_chipc;
   1398       1.24  jmcneill 
   1399  1.73.14.1       tls 	/*
   1400  1.73.14.1       tls 	 * XXX Nothing uses this!  Save on suspend, restore on resume?
   1401  1.73.14.1       tls 	 */
   1402  1.73.14.1       tls 	isc->pgtblctl_resume_hack = READ4(AGP_I810_PGTBL_CTL);
   1403       1.47  jmcneill 	agp_flush_cache();
   1404       1.24  jmcneill 
   1405       1.47  jmcneill 	return true;
   1406       1.24  jmcneill }
   1407