Home | History | Annotate | Line # | Download | only in pci
agp_intel.c revision 1.18.12.2
      1  1.18.12.2      yamt /*	$NetBSD: agp_intel.c,v 1.18.12.2 2006/12/10 07:17:41 yamt Exp $	*/
      2        1.1      fvdl 
      3        1.1      fvdl /*-
      4        1.1      fvdl  * Copyright (c) 2000 Doug Rabson
      5        1.1      fvdl  * All rights reserved.
      6        1.1      fvdl  *
      7        1.1      fvdl  * Redistribution and use in source and binary forms, with or without
      8        1.1      fvdl  * modification, are permitted provided that the following conditions
      9        1.1      fvdl  * are met:
     10        1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     11        1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     12        1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     13        1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     14        1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     15        1.1      fvdl  *
     16        1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17        1.1      fvdl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18        1.1      fvdl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19        1.1      fvdl  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20        1.1      fvdl  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21        1.1      fvdl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22        1.1      fvdl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23        1.1      fvdl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24        1.1      fvdl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25        1.1      fvdl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26        1.1      fvdl  * SUCH DAMAGE.
     27        1.1      fvdl  *
     28        1.1      fvdl  *	$FreeBSD: src/sys/pci/agp_intel.c,v 1.4 2001/07/05 21:28:47 jhb Exp $
     29        1.1      fvdl  */
     30        1.4     lukem 
     31        1.4     lukem #include <sys/cdefs.h>
     32  1.18.12.2      yamt __KERNEL_RCSID(0, "$NetBSD: agp_intel.c,v 1.18.12.2 2006/12/10 07:17:41 yamt Exp $");
     33        1.1      fvdl 
     34        1.1      fvdl #include <sys/param.h>
     35        1.1      fvdl #include <sys/systm.h>
     36        1.1      fvdl #include <sys/malloc.h>
     37        1.1      fvdl #include <sys/kernel.h>
     38        1.1      fvdl #include <sys/lock.h>
     39        1.1      fvdl #include <sys/proc.h>
     40        1.1      fvdl #include <sys/agpio.h>
     41        1.1      fvdl #include <sys/device.h>
     42        1.1      fvdl #include <sys/agpio.h>
     43        1.1      fvdl 
     44        1.1      fvdl #include <uvm/uvm_extern.h>
     45        1.1      fvdl 
     46        1.1      fvdl #include <dev/pci/pcivar.h>
     47        1.1      fvdl #include <dev/pci/pcireg.h>
     48        1.7    ichiro #include <dev/pci/pcidevs.h>
     49        1.1      fvdl #include <dev/pci/agpvar.h>
     50        1.1      fvdl #include <dev/pci/agpreg.h>
     51        1.1      fvdl 
     52        1.1      fvdl #include <machine/bus.h>
     53        1.1      fvdl 
     54        1.1      fvdl struct agp_intel_softc {
     55        1.7    ichiro 	u_int32_t		initial_aperture;
     56        1.7    ichiro 					/* aperture size at startup */
     57        1.7    ichiro 	struct agp_gatt		*gatt;
     58       1.10    ichiro 	struct pci_attach_args	vga_pa;
     59       1.10    ichiro 	u_int			aperture_mask;
     60       1.10    ichiro 	int			chiptype; /* Chip type */
     61        1.8    ichiro #define	CHIP_INTEL	0x0
     62        1.8    ichiro #define	CHIP_I443	0x1
     63        1.8    ichiro #define	CHIP_I840	0x2
     64        1.8    ichiro #define	CHIP_I845	0x3
     65        1.8    ichiro #define	CHIP_I850	0x4
     66       1.14      tron #define	CHIP_I865	0x5
     67       1.18  jmcneill 
     68       1.18  jmcneill 	void			*sc_powerhook;
     69       1.18  jmcneill 	struct pci_conf_state	sc_pciconf;
     70        1.1      fvdl };
     71        1.1      fvdl 
     72        1.1      fvdl static u_int32_t agp_intel_get_aperture(struct agp_softc *);
     73        1.1      fvdl static int agp_intel_set_aperture(struct agp_softc *, u_int32_t);
     74        1.1      fvdl static int agp_intel_bind_page(struct agp_softc *, off_t, bus_addr_t);
     75        1.1      fvdl static int agp_intel_unbind_page(struct agp_softc *, off_t);
     76        1.1      fvdl static void agp_intel_flush_tlb(struct agp_softc *);
     77       1.18  jmcneill static void agp_intel_powerhook(int, void *);
     78        1.1      fvdl 
     79       1.15   thorpej static struct agp_methods agp_intel_methods = {
     80        1.1      fvdl 	agp_intel_get_aperture,
     81        1.1      fvdl 	agp_intel_set_aperture,
     82        1.1      fvdl 	agp_intel_bind_page,
     83        1.1      fvdl 	agp_intel_unbind_page,
     84        1.1      fvdl 	agp_intel_flush_tlb,
     85        1.1      fvdl 	agp_generic_enable,
     86        1.1      fvdl 	agp_generic_alloc_memory,
     87        1.1      fvdl 	agp_generic_free_memory,
     88        1.1      fvdl 	agp_generic_bind_memory,
     89        1.1      fvdl 	agp_generic_unbind_memory,
     90        1.1      fvdl };
     91        1.1      fvdl 
     92        1.7    ichiro static int
     93        1.7    ichiro agp_intel_vgamatch(struct pci_attach_args *pa)
     94        1.7    ichiro {
     95        1.7    ichiro 	switch (PCI_PRODUCT(pa->pa_id)) {
     96        1.7    ichiro 	case PCI_PRODUCT_INTEL_82855PM_AGP:
     97        1.7    ichiro 	case PCI_PRODUCT_INTEL_82443LX_AGP:
     98        1.7    ichiro 	case PCI_PRODUCT_INTEL_82443BX_AGP:
     99        1.7    ichiro 	case PCI_PRODUCT_INTEL_82443GX_AGP:
    100       1.10    ichiro 	case PCI_PRODUCT_INTEL_82850_AGP:	/* i850/i860 */
    101        1.7    ichiro 	case PCI_PRODUCT_INTEL_82845_AGP:
    102        1.7    ichiro 	case PCI_PRODUCT_INTEL_82840_AGP:
    103       1.11      tron 	case PCI_PRODUCT_INTEL_82865_AGP:
    104       1.11      tron 	case PCI_PRODUCT_INTEL_82875P_AGP:
    105        1.7    ichiro 		return (1);
    106        1.7    ichiro 	}
    107        1.7    ichiro 
    108        1.7    ichiro 	return (0);
    109        1.7    ichiro }
    110        1.7    ichiro 
    111        1.1      fvdl int
    112  1.18.12.2      yamt agp_intel_attach(struct device *parent, struct device *self, void *aux)
    113        1.1      fvdl {
    114        1.1      fvdl 	struct agp_softc *sc = (struct agp_softc *)self;
    115        1.1      fvdl 	struct pci_attach_args *pa= aux;
    116        1.1      fvdl 	struct agp_intel_softc *isc;
    117        1.1      fvdl 	struct agp_gatt *gatt;
    118        1.1      fvdl 	pcireg_t reg;
    119       1.10    ichiro 	u_int32_t value;
    120        1.1      fvdl 
    121        1.5   tsutsui 	isc = malloc(sizeof *isc, M_AGP, M_NOWAIT|M_ZERO);
    122        1.1      fvdl 	if (isc == NULL) {
    123        1.6   thorpej 		aprint_error(": can't allocate chipset-specific softc\n");
    124        1.1      fvdl 		return ENOMEM;
    125        1.1      fvdl 	}
    126        1.2      fvdl 
    127        1.1      fvdl 	sc->as_methods = &agp_intel_methods;
    128        1.2      fvdl 	sc->as_chipc = isc;
    129        1.2      fvdl 
    130        1.7    ichiro 	if (pci_find_device(&isc->vga_pa, agp_intel_vgamatch) == 0) {
    131       1.10    ichiro 		aprint_normal(": using generic initialization for Intel AGP\n");
    132       1.12    simonb 		aprint_normal("%s", sc->as_dev.dv_xname);
    133       1.10    ichiro 		isc->chiptype = CHIP_INTEL;
    134        1.7    ichiro 	}
    135        1.7    ichiro 
    136        1.1      fvdl 	pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, &sc->as_capoff,
    137        1.1      fvdl 	    NULL);
    138        1.1      fvdl 
    139       1.17  christos 	if (agp_map_aperture(pa, sc, AGP_APBASE) != 0) {
    140        1.6   thorpej 		aprint_error(": can't map aperture\n");
    141        1.1      fvdl 		free(isc, M_AGP);
    142        1.2      fvdl 		sc->as_chipc = NULL;
    143        1.1      fvdl 		return ENXIO;
    144        1.1      fvdl 	}
    145        1.1      fvdl 
    146        1.7    ichiro 	switch (PCI_PRODUCT(isc->vga_pa.pa_id)) {
    147       1.14      tron 	case PCI_PRODUCT_INTEL_82443LX_AGP:
    148       1.14      tron 	case PCI_PRODUCT_INTEL_82443BX_AGP:
    149       1.14      tron 	case PCI_PRODUCT_INTEL_82443GX_AGP:
    150       1.14      tron 		isc->chiptype = CHIP_I443;
    151       1.14      tron 		break;
    152       1.14      tron 	case PCI_PRODUCT_INTEL_82840_AGP:
    153       1.14      tron 		isc->chiptype = CHIP_I840;
    154       1.14      tron 		break;
    155        1.7    ichiro 	case PCI_PRODUCT_INTEL_82855PM_AGP:
    156        1.7    ichiro 	case PCI_PRODUCT_INTEL_82845_AGP:
    157        1.7    ichiro 		isc->chiptype = CHIP_I845;
    158        1.7    ichiro 		break;
    159        1.7    ichiro 	case PCI_PRODUCT_INTEL_82850_AGP:
    160        1.8    ichiro 		isc->chiptype = CHIP_I850;
    161        1.7    ichiro 		break;
    162       1.14      tron 	case PCI_PRODUCT_INTEL_82865_AGP:
    163       1.14      tron 	case PCI_PRODUCT_INTEL_82875P_AGP:
    164       1.14      tron 		isc->chiptype = CHIP_I865;
    165        1.7    ichiro 		break;
    166        1.7    ichiro 	}
    167        1.7    ichiro 
    168       1.10    ichiro 	/* Determine maximum supported aperture size. */
    169       1.10    ichiro 	value = pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_APSIZE);
    170       1.10    ichiro 	pci_conf_write(sc->as_pc, sc->as_tag,
    171       1.10    ichiro 		AGP_INTEL_APSIZE, APSIZE_MASK);
    172       1.10    ichiro 	isc->aperture_mask = pci_conf_read(sc->as_pc, sc->as_tag,
    173       1.10    ichiro 		AGP_INTEL_APSIZE) & APSIZE_MASK;
    174       1.10    ichiro 	pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_APSIZE, value);
    175        1.1      fvdl 	isc->initial_aperture = AGP_GET_APERTURE(sc);
    176        1.1      fvdl 
    177        1.1      fvdl 	for (;;) {
    178        1.1      fvdl 		gatt = agp_alloc_gatt(sc);
    179        1.1      fvdl 		if (gatt)
    180        1.1      fvdl 			break;
    181        1.1      fvdl 
    182        1.1      fvdl 		/*
    183        1.1      fvdl 		 * Probably contigmalloc failure. Try reducing the
    184        1.1      fvdl 		 * aperture so that the gatt size reduces.
    185        1.1      fvdl 		 */
    186        1.1      fvdl 		if (AGP_SET_APERTURE(sc, AGP_GET_APERTURE(sc) / 2)) {
    187        1.1      fvdl 			agp_generic_detach(sc);
    188        1.6   thorpej 			aprint_error(": failed to set aperture\n");
    189        1.1      fvdl 			return ENOMEM;
    190        1.1      fvdl 		}
    191        1.1      fvdl 	}
    192        1.1      fvdl 	isc->gatt = gatt;
    193        1.1      fvdl 
    194        1.1      fvdl 	/* Install the gatt. */
    195        1.1      fvdl 	pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_ATTBASE,
    196        1.1      fvdl 	    gatt->ag_physical);
    197        1.8    ichiro 
    198        1.8    ichiro 	/* Enable the GLTB and setup the control register. */
    199        1.8    ichiro 	switch (isc->chiptype) {
    200        1.8    ichiro 	case CHIP_I443:
    201        1.8    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    202        1.8    ichiro 		    AGPCTRL_AGPRSE | AGPCTRL_GTLB);
    203        1.8    ichiro 
    204        1.8    ichiro 	default:
    205        1.8    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    206        1.9    ichiro 		    pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL)
    207        1.9    ichiro 			| AGPCTRL_GTLB);
    208        1.8    ichiro 	}
    209       1.10    ichiro 
    210        1.1      fvdl 	/* Enable things, clear errors etc. */
    211        1.7    ichiro 	switch (isc->chiptype) {
    212        1.7    ichiro 	case CHIP_I845:
    213       1.14      tron 	case CHIP_I865:
    214        1.7    ichiro 		{
    215       1.14      tron 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I840_MCHCFG);
    216       1.14      tron 		reg |= MCHCFG_AAGN;
    217       1.14      tron 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_I840_MCHCFG, reg);
    218        1.7    ichiro 		break;
    219        1.7    ichiro 		}
    220        1.7    ichiro 	case CHIP_I840:
    221        1.8    ichiro 	case CHIP_I850:
    222        1.7    ichiro 		{
    223       1.10    ichiro 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCMD);
    224       1.10    ichiro 		reg |= AGPCMD_AGPEN;
    225        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCMD,
    226       1.10    ichiro 			reg);
    227       1.10    ichiro 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I840_MCHCFG);
    228       1.10    ichiro 		reg |= MCHCFG_AAGN;
    229        1.8    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_I840_MCHCFG,
    230       1.10    ichiro 			reg);
    231        1.7    ichiro 		break;
    232        1.7    ichiro 		}
    233        1.8    ichiro 	default:
    234        1.7    ichiro 		{
    235        1.7    ichiro 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_NBXCFG);
    236        1.7    ichiro 		reg &= ~NBXCFG_APAE;
    237        1.7    ichiro 		reg |=  NBXCFG_AAGN;
    238        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_NBXCFG, reg);
    239        1.8    ichiro 		}
    240        1.8    ichiro 	}
    241        1.7    ichiro 
    242        1.8    ichiro 	/* Clear Error status */
    243        1.9    ichiro 	switch (isc->chiptype) {
    244        1.8    ichiro 	case CHIP_I840:
    245        1.9    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag,
    246        1.9    ichiro 			AGP_INTEL_I8XX_ERRSTS, 0xc000);
    247        1.8    ichiro 		break;
    248        1.1      fvdl 
    249       1.14      tron 	case CHIP_I845:
    250       1.10    ichiro 	case CHIP_I850:
    251       1.14      tron 	case CHIP_I865:
    252        1.9    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag,
    253        1.9    ichiro 			AGP_INTEL_I8XX_ERRSTS, 0x00ff);
    254        1.7    ichiro 		break;
    255        1.8    ichiro 
    256        1.8    ichiro 	default:
    257        1.9    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag,
    258        1.9    ichiro 			AGP_INTEL_ERRSTS, 0x70);
    259        1.7    ichiro 	}
    260        1.1      fvdl 
    261  1.18.12.1      yamt 	isc->sc_powerhook = powerhook_establish(sc->as_dev.dv_xname,
    262  1.18.12.1      yamt 	    agp_intel_powerhook, sc);
    263       1.18  jmcneill 	if (isc->sc_powerhook == NULL)
    264       1.18  jmcneill 		aprint_error("%s: couldn't establish powerhook\n",
    265       1.18  jmcneill 		    sc->as_dev.dv_xname);
    266       1.18  jmcneill 
    267       1.10    ichiro 	return (0);
    268        1.1      fvdl }
    269        1.1      fvdl 
    270        1.1      fvdl #if 0
    271        1.1      fvdl static int
    272        1.1      fvdl agp_intel_detach(struct agp_softc *sc)
    273        1.1      fvdl {
    274        1.1      fvdl 	int error;
    275        1.1      fvdl 	pcireg_t reg;
    276        1.1      fvdl 	struct agp_intel_softc *isc = sc->as_chipc;
    277        1.1      fvdl 
    278       1.18  jmcneill 	if (isc->sc_powerhook)
    279       1.18  jmcneill 		powerhook_disestablish(isc->sc_powerhook);
    280       1.18  jmcneill 
    281        1.1      fvdl 	error = agp_generic_detach(sc);
    282        1.1      fvdl 	if (error)
    283        1.1      fvdl 		return error;
    284        1.1      fvdl 
    285        1.7    ichiro 	/* XXX i845/i855PM/i840/i850E */
    286        1.1      fvdl 	reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_NBXCFG);
    287        1.1      fvdl 	reg &= ~(1 << 9);
    288        1.1      fvdl 	printf("%s: set NBXCFG to %x\n", __FUNCTION__, reg);
    289        1.1      fvdl 	pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_NBXCFG, reg);
    290        1.1      fvdl 	pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_ATTBASE, 0);
    291        1.1      fvdl 	AGP_SET_APERTURE(sc, isc->initial_aperture);
    292        1.1      fvdl 	agp_free_gatt(sc, isc->gatt);
    293        1.1      fvdl 
    294        1.1      fvdl 	return 0;
    295        1.1      fvdl }
    296        1.1      fvdl #endif
    297        1.1      fvdl 
    298        1.1      fvdl static u_int32_t
    299        1.1      fvdl agp_intel_get_aperture(struct agp_softc *sc)
    300        1.1      fvdl {
    301       1.10    ichiro 	struct agp_intel_softc *isc = sc->as_chipc;
    302        1.1      fvdl 	u_int32_t apsize;
    303        1.1      fvdl 
    304        1.7    ichiro 	apsize = pci_conf_read(sc->as_pc, sc->as_tag,
    305       1.10    ichiro 			AGP_INTEL_APSIZE) & isc->aperture_mask;
    306        1.1      fvdl 
    307        1.1      fvdl 	/*
    308        1.1      fvdl 	 * The size is determined by the number of low bits of
    309        1.1      fvdl 	 * register APBASE which are forced to zero. The low 22 bits
    310        1.1      fvdl 	 * are always forced to zero and each zero bit in the apsize
    311        1.1      fvdl 	 * field just read forces the corresponding bit in the 27:22
    312        1.1      fvdl 	 * to be zero. We calculate the aperture size accordingly.
    313        1.1      fvdl 	 */
    314       1.10    ichiro 	return (((apsize ^ isc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1;
    315        1.1      fvdl }
    316        1.1      fvdl 
    317        1.1      fvdl static int
    318        1.1      fvdl agp_intel_set_aperture(struct agp_softc *sc, u_int32_t aperture)
    319        1.1      fvdl {
    320       1.10    ichiro 	struct agp_intel_softc *isc = sc->as_chipc;
    321        1.1      fvdl 	u_int32_t apsize;
    322        1.1      fvdl 
    323        1.1      fvdl 	/*
    324        1.1      fvdl 	 * Reverse the magic from get_aperture.
    325        1.1      fvdl 	 */
    326       1.10    ichiro 	apsize = ((aperture - 1) >> 22) ^ isc->aperture_mask;
    327        1.1      fvdl 
    328        1.1      fvdl 	/*
    329        1.1      fvdl 	 * Double check for sanity.
    330        1.1      fvdl 	 */
    331       1.10    ichiro 	if ((((apsize ^ isc->aperture_mask) << 22) |
    332        1.7    ichiro 			((1 << 22) - 1)) + 1 != aperture)
    333        1.1      fvdl 		return EINVAL;
    334        1.1      fvdl 
    335       1.10    ichiro 	pci_conf_write(sc->as_pc, sc->as_tag,
    336       1.10    ichiro 		AGP_INTEL_APSIZE, apsize);
    337        1.1      fvdl 
    338        1.1      fvdl 	return 0;
    339        1.1      fvdl }
    340        1.1      fvdl 
    341        1.1      fvdl static int
    342        1.1      fvdl agp_intel_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
    343        1.1      fvdl {
    344        1.1      fvdl 	struct agp_intel_softc *isc = sc->as_chipc;
    345        1.1      fvdl 
    346        1.1      fvdl 	if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
    347        1.1      fvdl 		return EINVAL;
    348        1.1      fvdl 
    349        1.1      fvdl 	isc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical | 0x17;
    350        1.1      fvdl 	return 0;
    351        1.1      fvdl }
    352        1.1      fvdl 
    353        1.1      fvdl static int
    354        1.1      fvdl agp_intel_unbind_page(struct agp_softc *sc, off_t offset)
    355        1.1      fvdl {
    356        1.1      fvdl 	struct agp_intel_softc *isc = sc->as_chipc;
    357        1.1      fvdl 
    358        1.1      fvdl 	if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
    359        1.1      fvdl 		return EINVAL;
    360        1.1      fvdl 
    361        1.1      fvdl 	isc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0;
    362        1.1      fvdl 	return 0;
    363        1.1      fvdl }
    364        1.1      fvdl 
    365        1.1      fvdl static void
    366        1.1      fvdl agp_intel_flush_tlb(struct agp_softc *sc)
    367        1.1      fvdl {
    368        1.7    ichiro 	struct agp_intel_softc *isc = sc->as_chipc;
    369       1.10    ichiro 	pcireg_t reg;
    370        1.7    ichiro 
    371        1.7    ichiro 	switch (isc->chiptype) {
    372       1.14      tron 	case CHIP_I865:
    373       1.13      tron 	case CHIP_I850:
    374       1.13      tron 	case CHIP_I845:
    375       1.13      tron 	case CHIP_I840:
    376       1.10    ichiro 	case CHIP_I443:
    377       1.10    ichiro 		{
    378       1.10    ichiro 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL);
    379       1.13      tron 		reg &= ~AGPCTRL_GTLB;
    380        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    381       1.10    ichiro 			reg);
    382        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    383       1.10    ichiro 			reg | AGPCTRL_GTLB);
    384        1.7    ichiro 		break;
    385       1.10    ichiro 		}
    386       1.10    ichiro 	default: /* XXX */
    387       1.10    ichiro 		{
    388        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    389       1.10    ichiro 			0x2200);
    390        1.7    ichiro 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_INTEL_AGPCTRL,
    391       1.10    ichiro 			0x2280);
    392       1.10    ichiro 		}
    393        1.7    ichiro 	}
    394        1.1      fvdl }
    395       1.18  jmcneill 
    396       1.18  jmcneill static void
    397       1.18  jmcneill agp_intel_powerhook(int why, void *opaque)
    398       1.18  jmcneill {
    399       1.18  jmcneill 	struct agp_softc *sc;
    400       1.18  jmcneill 	struct agp_intel_softc *isc;
    401       1.18  jmcneill 
    402       1.18  jmcneill 	sc = (struct agp_softc *)opaque;
    403       1.18  jmcneill 	isc = (struct agp_intel_softc *)sc->as_chipc;
    404       1.18  jmcneill 
    405       1.18  jmcneill 	switch (why) {
    406       1.18  jmcneill 	case PWR_SUSPEND:
    407       1.18  jmcneill 	case PWR_STANDBY:
    408       1.18  jmcneill 		pci_conf_capture(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
    409       1.18  jmcneill 		break;
    410       1.18  jmcneill 	case PWR_RESUME:
    411       1.18  jmcneill 		pci_conf_restore(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
    412       1.18  jmcneill 		agp_flush_cache();
    413       1.18  jmcneill 		break;
    414       1.18  jmcneill 	case PWR_SOFTSUSPEND:
    415       1.18  jmcneill 	case PWR_SOFTSTANDBY:
    416       1.18  jmcneill 	case PWR_SOFTRESUME:
    417       1.18  jmcneill 		break;
    418       1.18  jmcneill 	}
    419       1.18  jmcneill 
    420       1.18  jmcneill 	return;
    421       1.18  jmcneill }
    422