Home | History | Annotate | Line # | Download | only in pci
agp_i810.c revision 1.26.2.4
      1  1.26.2.4      yamt /*	$NetBSD: agp_i810.c,v 1.26.2.4 2007/10/27 11:32:31 yamt 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.1      fvdl  *	$FreeBSD: src/sys/pci/agp_i810.c,v 1.4 2001/07/05 21:28:47 jhb Exp $
     30       1.1      fvdl  */
     31       1.9     lukem 
     32       1.9     lukem #include <sys/cdefs.h>
     33  1.26.2.4      yamt __KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.26.2.4 2007/10/27 11:32:31 yamt 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/lock.h>
     40       1.1      fvdl #include <sys/proc.h>
     41       1.1      fvdl #include <sys/device.h>
     42       1.1      fvdl #include <sys/conf.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.1      fvdl #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 <sys/agpio.h>
     53       1.1      fvdl 
     54  1.26.2.4      yamt #include <sys/bus.h>
     55       1.1      fvdl 
     56      1.20      tron #include "agp_intel.h"
     57      1.20      tron 
     58       1.1      fvdl #define READ1(off)	bus_space_read_1(isc->bst, isc->bsh, off)
     59      1.14       scw #define READ4(off)	bus_space_read_4(isc->bst, isc->bsh, off)
     60       1.1      fvdl #define WRITE4(off,v)	bus_space_write_4(isc->bst, isc->bsh, off, v)
     61  1.26.2.1      yamt #define WRITEGTT(off, v)						\
     62  1.26.2.1      yamt 	do {								\
     63  1.26.2.1      yamt 		if (isc->chiptype == CHIP_I915) {			\
     64  1.26.2.1      yamt 			bus_space_write_4(isc->gtt_bst, isc->gtt_bsh,	\
     65  1.26.2.1      yamt 			    (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4,	\
     66  1.26.2.1      yamt 			    (v));					\
     67  1.26.2.3      yamt 		} else if (isc->chiptype == CHIP_I965) {		\
     68  1.26.2.3      yamt 			WRITE4(AGP_I965_GTT +				\
     69  1.26.2.3      yamt 			    (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4,	\
     70  1.26.2.3      yamt 			    (v));					\
     71  1.26.2.1      yamt 		} else {						\
     72  1.26.2.1      yamt 			WRITE4(AGP_I810_GTT +				\
     73  1.26.2.1      yamt 			    (u_int32_t)((off) >> AGP_PAGE_SHIFT) * 4,	\
     74  1.26.2.1      yamt 			    (v));					\
     75  1.26.2.1      yamt 		}							\
     76  1.26.2.1      yamt 	} while (0)
     77       1.1      fvdl 
     78      1.14       scw #define CHIP_I810 0	/* i810/i815 */
     79      1.17   hannken #define CHIP_I830 1	/* 830M/845G */
     80      1.17   hannken #define CHIP_I855 2	/* 852GM/855GM/865G */
     81  1.26.2.2      yamt #define CHIP_I915 3	/* 915G/915GM/945G/945GM */
     82  1.26.2.3      yamt #define CHIP_I965 4	/* 965Q */
     83      1.14       scw 
     84       1.1      fvdl struct agp_i810_softc {
     85       1.1      fvdl 	u_int32_t initial_aperture;	/* aperture size at startup */
     86       1.1      fvdl 	struct agp_gatt *gatt;
     87      1.14       scw 	int chiptype;			/* i810-like or i830 */
     88      1.14       scw 	u_int32_t dcache_size;		/* i810 only */
     89      1.14       scw 	u_int32_t stolen;		/* number of i830/845 gtt entries
     90      1.14       scw 					   for stolen memory */
     91  1.26.2.1      yamt 	bus_space_tag_t bst;		/* register bus_space tag */
     92  1.26.2.1      yamt 	bus_space_handle_t bsh;		/* register bus_space handle */
     93  1.26.2.1      yamt 	bus_space_tag_t gtt_bst;	/* GTT bus_space tag */
     94  1.26.2.1      yamt 	bus_space_handle_t gtt_bsh;	/* GTT bus_space handle */
     95       1.1      fvdl 	struct pci_attach_args vga_pa;
     96      1.24  jmcneill 
     97      1.24  jmcneill 	void *sc_powerhook;
     98      1.24  jmcneill 	struct pci_conf_state sc_pciconf;
     99       1.1      fvdl };
    100       1.1      fvdl 
    101       1.1      fvdl static u_int32_t agp_i810_get_aperture(struct agp_softc *);
    102       1.1      fvdl static int agp_i810_set_aperture(struct agp_softc *, u_int32_t);
    103       1.1      fvdl static int agp_i810_bind_page(struct agp_softc *, off_t, bus_addr_t);
    104       1.1      fvdl static int agp_i810_unbind_page(struct agp_softc *, off_t);
    105       1.1      fvdl static void agp_i810_flush_tlb(struct agp_softc *);
    106       1.1      fvdl static int agp_i810_enable(struct agp_softc *, u_int32_t mode);
    107       1.1      fvdl static struct agp_memory *agp_i810_alloc_memory(struct agp_softc *, int,
    108       1.1      fvdl 						vsize_t);
    109       1.1      fvdl static int agp_i810_free_memory(struct agp_softc *, struct agp_memory *);
    110       1.1      fvdl static int agp_i810_bind_memory(struct agp_softc *, struct agp_memory *, off_t);
    111       1.1      fvdl static int agp_i810_unbind_memory(struct agp_softc *, struct agp_memory *);
    112      1.24  jmcneill static void agp_i810_powerhook(int, void *);
    113       1.1      fvdl 
    114      1.26   thorpej static struct agp_methods agp_i810_methods = {
    115       1.1      fvdl 	agp_i810_get_aperture,
    116       1.1      fvdl 	agp_i810_set_aperture,
    117       1.1      fvdl 	agp_i810_bind_page,
    118       1.1      fvdl 	agp_i810_unbind_page,
    119       1.1      fvdl 	agp_i810_flush_tlb,
    120       1.1      fvdl 	agp_i810_enable,
    121       1.1      fvdl 	agp_i810_alloc_memory,
    122       1.1      fvdl 	agp_i810_free_memory,
    123       1.1      fvdl 	agp_i810_bind_memory,
    124       1.1      fvdl 	agp_i810_unbind_memory,
    125       1.1      fvdl };
    126       1.1      fvdl 
    127       1.6   thorpej /* XXXthorpej -- duplicated code (see arch/i386/pci/pchb.c) */
    128       1.1      fvdl static int
    129       1.1      fvdl agp_i810_vgamatch(struct pci_attach_args *pa)
    130       1.1      fvdl {
    131       1.6   thorpej 
    132       1.2      fvdl 	if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
    133       1.2      fvdl 	    PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
    134       1.6   thorpej 		return (0);
    135       1.6   thorpej 
    136       1.1      fvdl 	switch (PCI_PRODUCT(pa->pa_id)) {
    137       1.1      fvdl 	case PCI_PRODUCT_INTEL_82810_GC:
    138       1.1      fvdl 	case PCI_PRODUCT_INTEL_82810_DC100_GC:
    139       1.1      fvdl 	case PCI_PRODUCT_INTEL_82810E_GC:
    140       1.1      fvdl 	case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
    141      1.14       scw 	case PCI_PRODUCT_INTEL_82830MP_IV:
    142      1.14       scw 	case PCI_PRODUCT_INTEL_82845G_IGD:
    143      1.17   hannken 	case PCI_PRODUCT_INTEL_82855GM_IGD:
    144      1.18      tron 	case PCI_PRODUCT_INTEL_82865_IGD:
    145  1.26.2.1      yamt 	case PCI_PRODUCT_INTEL_82915G_IGD:
    146  1.26.2.1      yamt 	case PCI_PRODUCT_INTEL_82915GM_IGD:
    147  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945P_IGD:
    148  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945GM_IGD:
    149  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945GM_IGD_1:
    150  1.26.2.3      yamt 	case PCI_PRODUCT_INTEL_82965Q_IGD:
    151  1.26.2.3      yamt 	case PCI_PRODUCT_INTEL_82965Q_IGD_1:
    152       1.6   thorpej 		return (1);
    153       1.1      fvdl 	}
    154       1.1      fvdl 
    155       1.6   thorpej 	return (0);
    156       1.1      fvdl }
    157       1.1      fvdl 
    158  1.26.2.3      yamt static int
    159  1.26.2.3      yamt agp_i965_map_aperture(struct pci_attach_args *pa, struct agp_softc *sc, int reg)
    160  1.26.2.3      yamt {
    161  1.26.2.3      yamt         /*
    162  1.26.2.3      yamt          * Find the aperture. Don't map it (yet), this would
    163  1.26.2.3      yamt          * eat KVA.
    164  1.26.2.3      yamt          */
    165  1.26.2.3      yamt         if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, reg,
    166  1.26.2.3      yamt             PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_64BIT, &sc->as_apaddr, &sc->as_apsize,
    167  1.26.2.3      yamt             &sc->as_apflags) != 0)
    168  1.26.2.3      yamt                 return ENXIO;
    169  1.26.2.3      yamt 
    170  1.26.2.3      yamt         sc->as_apt = pa->pa_memt;
    171  1.26.2.3      yamt 
    172  1.26.2.3      yamt         return 0;
    173  1.26.2.3      yamt }
    174  1.26.2.3      yamt 
    175       1.1      fvdl int
    176       1.1      fvdl agp_i810_attach(struct device *parent, struct device *self, void *aux)
    177       1.1      fvdl {
    178       1.1      fvdl 	struct agp_softc *sc = (void *)self;
    179       1.1      fvdl 	struct agp_i810_softc *isc;
    180       1.1      fvdl 	struct agp_gatt *gatt;
    181  1.26.2.1      yamt 	int error, apbase;
    182  1.26.2.3      yamt 	bus_size_t mmadrsize;
    183       1.1      fvdl 
    184      1.10   tsutsui 	isc = malloc(sizeof *isc, M_AGP, M_NOWAIT|M_ZERO);
    185       1.1      fvdl 	if (isc == NULL) {
    186      1.15   thorpej 		aprint_error(": can't allocate chipset-specific softc\n");
    187       1.1      fvdl 		return ENOMEM;
    188       1.1      fvdl 	}
    189       1.1      fvdl 	sc->as_chipc = isc;
    190       1.1      fvdl 	sc->as_methods = &agp_i810_methods;
    191       1.1      fvdl 
    192       1.1      fvdl 	if (pci_find_device(&isc->vga_pa, agp_i810_vgamatch) == 0) {
    193      1.20      tron #if NAGP_INTEL > 0
    194      1.19      tron 		const struct pci_attach_args *pa = aux;
    195      1.19      tron 
    196      1.19      tron 		switch (PCI_PRODUCT(pa->pa_id)) {
    197      1.19      tron 		case PCI_PRODUCT_INTEL_82840_HB:
    198      1.19      tron 		case PCI_PRODUCT_INTEL_82865_HB:
    199      1.21      tron 		case PCI_PRODUCT_INTEL_82845G_DRAM:
    200      1.23   xtraeme 		case PCI_PRODUCT_INTEL_82815_FULL_HUB:
    201      1.19      tron 			return agp_intel_attach(parent, self, aux);
    202      1.20      tron 		}
    203      1.20      tron #endif
    204      1.15   thorpej 		aprint_error(": can't find internal VGA device config space\n");
    205       1.1      fvdl 		free(isc, M_AGP);
    206       1.1      fvdl 		return ENOENT;
    207       1.1      fvdl 	}
    208       1.1      fvdl 
    209       1.1      fvdl 	/* XXXfvdl */
    210       1.1      fvdl 	sc->as_dmat = isc->vga_pa.pa_dmat;
    211       1.1      fvdl 
    212      1.14       scw 	switch (PCI_PRODUCT(isc->vga_pa.pa_id)) {
    213      1.14       scw 	case PCI_PRODUCT_INTEL_82810_GC:
    214      1.14       scw 	case PCI_PRODUCT_INTEL_82810_DC100_GC:
    215      1.14       scw 	case PCI_PRODUCT_INTEL_82810E_GC:
    216      1.14       scw 	case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
    217      1.14       scw 		isc->chiptype = CHIP_I810;
    218      1.14       scw 		break;
    219      1.14       scw 	case PCI_PRODUCT_INTEL_82830MP_IV:
    220      1.14       scw 	case PCI_PRODUCT_INTEL_82845G_IGD:
    221      1.14       scw 		isc->chiptype = CHIP_I830;
    222      1.14       scw 		break;
    223      1.17   hannken 	case PCI_PRODUCT_INTEL_82855GM_IGD:
    224      1.18      tron 	case PCI_PRODUCT_INTEL_82865_IGD:
    225      1.17   hannken 		isc->chiptype = CHIP_I855;
    226      1.17   hannken 		break;
    227  1.26.2.1      yamt 	case PCI_PRODUCT_INTEL_82915G_IGD:
    228  1.26.2.1      yamt 	case PCI_PRODUCT_INTEL_82915GM_IGD:
    229  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945P_IGD:
    230  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945GM_IGD:
    231  1.26.2.2      yamt 	case PCI_PRODUCT_INTEL_82945GM_IGD_1:
    232  1.26.2.1      yamt 		isc->chiptype = CHIP_I915;
    233  1.26.2.1      yamt 		break;
    234  1.26.2.3      yamt 	case PCI_PRODUCT_INTEL_82965Q_IGD:
    235  1.26.2.3      yamt 	case PCI_PRODUCT_INTEL_82965Q_IGD_1:
    236  1.26.2.3      yamt 		isc->chiptype = CHIP_I965;
    237  1.26.2.3      yamt 		break;
    238      1.14       scw 	}
    239      1.14       scw 
    240  1.26.2.1      yamt 	apbase = isc->chiptype == CHIP_I915 ? AGP_I915_GMADR : AGP_I810_GMADR;
    241  1.26.2.3      yamt 	if (isc->chiptype == CHIP_I965) {
    242  1.26.2.3      yamt 		error = agp_i965_map_aperture(&isc->vga_pa, sc, AGP_I965_GMADR);
    243  1.26.2.3      yamt 	} else {
    244  1.26.2.3      yamt 		error = agp_map_aperture(&isc->vga_pa, sc, apbase);
    245  1.26.2.3      yamt 	}
    246       1.1      fvdl 	if (error != 0) {
    247  1.26.2.1      yamt 		aprint_error(": can't map aperture\n");
    248  1.26.2.1      yamt 		free(isc, M_AGP);
    249       1.1      fvdl 		return error;
    250       1.1      fvdl 	}
    251       1.1      fvdl 
    252  1.26.2.1      yamt 	if (isc->chiptype == CHIP_I915) {
    253  1.26.2.1      yamt 		error = pci_mapreg_map(&isc->vga_pa, AGP_I915_MMADR,
    254  1.26.2.3      yamt 		    PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
    255  1.26.2.3      yamt 		    NULL, &mmadrsize);
    256  1.26.2.1      yamt 		if (error != 0) {
    257  1.26.2.1      yamt 			aprint_error(": can't map mmadr registers\n");
    258  1.26.2.1      yamt 			agp_generic_detach(sc);
    259  1.26.2.1      yamt 			return error;
    260  1.26.2.1      yamt 		}
    261  1.26.2.1      yamt 		error = pci_mapreg_map(&isc->vga_pa, AGP_I915_GTTADR,
    262  1.26.2.1      yamt 		    PCI_MAPREG_TYPE_MEM, 0, &isc->gtt_bst, &isc->gtt_bsh,
    263  1.26.2.1      yamt 		    NULL, NULL);
    264  1.26.2.1      yamt 		if (error != 0) {
    265  1.26.2.1      yamt 			aprint_error(": can't map gttadr registers\n");
    266  1.26.2.1      yamt 			/* XXX we should release mmadr here */
    267  1.26.2.1      yamt 			agp_generic_detach(sc);
    268  1.26.2.1      yamt 			return error;
    269  1.26.2.1      yamt 		}
    270  1.26.2.3      yamt 	} else if (isc->chiptype == CHIP_I965) {
    271  1.26.2.3      yamt 		error = pci_mapreg_map(&isc->vga_pa, AGP_I965_MMADR,
    272  1.26.2.3      yamt 		    PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
    273  1.26.2.3      yamt 		    NULL, &mmadrsize);
    274  1.26.2.3      yamt 		if (error != 0) {
    275  1.26.2.3      yamt 			aprint_error(": can't map mmadr registers\n");
    276  1.26.2.3      yamt 			agp_generic_detach(sc);
    277  1.26.2.3      yamt 			return error;
    278  1.26.2.3      yamt 		}
    279  1.26.2.1      yamt 	} else {
    280  1.26.2.1      yamt 		error = pci_mapreg_map(&isc->vga_pa, AGP_I810_MMADR,
    281  1.26.2.3      yamt 		    PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh,
    282  1.26.2.3      yamt 		    NULL, &mmadrsize);
    283  1.26.2.1      yamt 		if (error != 0) {
    284  1.26.2.1      yamt 			aprint_error(": can't map mmadr registers\n");
    285  1.26.2.1      yamt 			agp_generic_detach(sc);
    286  1.26.2.1      yamt 			return error;
    287  1.26.2.1      yamt 		}
    288  1.26.2.1      yamt 	}
    289  1.26.2.1      yamt 
    290       1.1      fvdl 	isc->initial_aperture = AGP_GET_APERTURE(sc);
    291       1.1      fvdl 
    292      1.14       scw 	gatt = malloc(sizeof(struct agp_gatt), M_AGP, M_NOWAIT);
    293      1.14       scw 	if (!gatt) {
    294      1.14       scw  		agp_generic_detach(sc);
    295      1.14       scw  		return ENOMEM;
    296      1.14       scw 	}
    297      1.14       scw 	isc->gatt = gatt;
    298      1.14       scw 
    299      1.14       scw 	gatt->ag_entries = AGP_GET_APERTURE(sc) >> AGP_PAGE_SHIFT;
    300       1.1      fvdl 
    301      1.14       scw 	if (isc->chiptype == CHIP_I810) {
    302  1.26.2.3      yamt 		void *virtual;
    303      1.14       scw 		int dummyseg;
    304  1.26.2.2      yamt 
    305      1.14       scw 		/* Some i810s have on-chip memory called dcache */
    306      1.14       scw 		if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
    307      1.14       scw 			isc->dcache_size = 4 * 1024 * 1024;
    308      1.14       scw 		else
    309      1.14       scw 			isc->dcache_size = 0;
    310      1.14       scw 
    311      1.14       scw 		/* According to the specs the gatt on the i810 must be 64k */
    312      1.14       scw 		if (agp_alloc_dmamem(sc->as_dmat, 64 * 1024,
    313  1.26.2.2      yamt 		    0, &gatt->ag_dmamap, &virtual, &gatt->ag_physical,
    314  1.26.2.2      yamt 		    &gatt->ag_dmaseg, 1, &dummyseg) != 0) {
    315      1.14       scw 			free(gatt, M_AGP);
    316       1.1      fvdl 			agp_generic_detach(sc);
    317       1.1      fvdl 			return ENOMEM;
    318       1.1      fvdl 		}
    319  1.26.2.2      yamt 		gatt->ag_virtual = (uint32_t *)virtual;
    320      1.14       scw 
    321      1.14       scw 		gatt->ag_size = gatt->ag_entries * sizeof(u_int32_t);
    322      1.14       scw 		memset(gatt->ag_virtual, 0, gatt->ag_size);
    323      1.25     perry 
    324      1.14       scw 		agp_flush_cache();
    325      1.14       scw 		/* Install the GATT. */
    326      1.14       scw 		WRITE4(AGP_I810_PGTBL_CTL, gatt->ag_physical | 1);
    327      1.17   hannken 	} else if (isc->chiptype == CHIP_I830) {
    328      1.14       scw 		/* The i830 automatically initializes the 128k gatt on boot. */
    329      1.14       scw 		pcireg_t reg;
    330      1.14       scw 		u_int32_t pgtblctl;
    331      1.14       scw 		u_int16_t gcc1;
    332      1.14       scw 
    333      1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
    334      1.14       scw 		gcc1 = (u_int16_t)(reg >> 16);
    335      1.14       scw 		switch (gcc1 & AGP_I830_GCC1_GMS) {
    336      1.14       scw 		case AGP_I830_GCC1_GMS_STOLEN_512:
    337      1.14       scw 			isc->stolen = (512 - 132) * 1024 / 4096;
    338      1.14       scw 			break;
    339      1.25     perry 		case AGP_I830_GCC1_GMS_STOLEN_1024:
    340      1.14       scw 			isc->stolen = (1024 - 132) * 1024 / 4096;
    341      1.14       scw 			break;
    342      1.25     perry 		case AGP_I830_GCC1_GMS_STOLEN_8192:
    343      1.14       scw 			isc->stolen = (8192 - 132) * 1024 / 4096;
    344      1.14       scw 			break;
    345      1.14       scw 		default:
    346      1.14       scw 			isc->stolen = 0;
    347      1.15   thorpej 			aprint_error(
    348      1.15   thorpej 			    ": unknown memory configuration, disabling\n");
    349      1.14       scw 			agp_generic_detach(sc);
    350      1.14       scw 			return EINVAL;
    351      1.14       scw 		}
    352      1.14       scw 		if (isc->stolen > 0) {
    353      1.17   hannken 			aprint_error(": detected %dk stolen memory\n%s",
    354      1.17   hannken 			    isc->stolen * 4, sc->as_dev.dv_xname);
    355      1.14       scw 		}
    356      1.17   hannken 
    357      1.17   hannken 		/* GATT address is already in there, make sure it's enabled */
    358      1.17   hannken 		pgtblctl = READ4(AGP_I810_PGTBL_CTL);
    359      1.17   hannken 		pgtblctl |= 1;
    360      1.17   hannken 		WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
    361      1.17   hannken 
    362      1.17   hannken 		gatt->ag_physical = pgtblctl & ~1;
    363  1.26.2.3      yamt 	} else if (isc->chiptype == CHIP_I855 || isc->chiptype == CHIP_I915 ||
    364  1.26.2.3      yamt 		   isc->chiptype == CHIP_I965) {
    365      1.17   hannken 		pcireg_t reg;
    366  1.26.2.3      yamt 		u_int32_t pgtblctl, stolen;
    367      1.17   hannken 		u_int16_t gcc1;
    368      1.17   hannken 
    369  1.26.2.3      yamt 		/* Stolen memory is set up at the beginning of the aperture by
    370  1.26.2.3      yamt                  * the BIOS, consisting of the GATT followed by 4kb for the
    371  1.26.2.3      yamt 		 * BIOS display.
    372  1.26.2.3      yamt                  */
    373  1.26.2.3      yamt                 switch (isc->chiptype) {
    374  1.26.2.3      yamt 		case CHIP_I855:
    375  1.26.2.3      yamt 			stolen = 128 + 4;
    376  1.26.2.3      yamt 			break;
    377  1.26.2.3      yamt                 case CHIP_I915:
    378  1.26.2.3      yamt 			stolen = 256 + 4;
    379  1.26.2.3      yamt 			break;
    380  1.26.2.3      yamt 		case CHIP_I965:
    381  1.26.2.3      yamt 			stolen = 512 + 4;
    382  1.26.2.3      yamt 			break;
    383  1.26.2.3      yamt 		default:
    384  1.26.2.3      yamt 			aprint_error(": bad chiptype\n");
    385  1.26.2.3      yamt 			agp_generic_detach(sc);
    386  1.26.2.3      yamt 			return EINVAL;
    387  1.26.2.3      yamt                }
    388  1.26.2.3      yamt 
    389      1.17   hannken 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I855_GCC1);
    390      1.17   hannken 		gcc1 = (u_int16_t)(reg >> 16);
    391      1.17   hannken 		switch (gcc1 & AGP_I855_GCC1_GMS) {
    392      1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_1M:
    393  1.26.2.3      yamt 			isc->stolen = (1024 - stolen) * 1024 / 4096;
    394      1.17   hannken 			break;
    395      1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_4M:
    396  1.26.2.3      yamt 			isc->stolen = (4096 - stolen) * 1024 / 4096;
    397      1.17   hannken 			break;
    398      1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_8M:
    399  1.26.2.3      yamt 			isc->stolen = (8192 - stolen) * 1024 / 4096;
    400      1.17   hannken 			break;
    401      1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_16M:
    402  1.26.2.3      yamt 			isc->stolen = (16384 - stolen) * 1024 / 4096;
    403      1.17   hannken 			break;
    404      1.17   hannken 		case AGP_I855_GCC1_GMS_STOLEN_32M:
    405  1.26.2.3      yamt 			isc->stolen = (32768 - stolen) * 1024 / 4096;
    406  1.26.2.1      yamt 			break;
    407  1.26.2.3      yamt 		case AGP_I915_GCC1_GMS_STOLEN_48M:
    408  1.26.2.3      yamt 			isc->stolen = (49152 - stolen) * 1024 / 4096;
    409  1.26.2.1      yamt 			break;
    410  1.26.2.3      yamt 		case AGP_I915_GCC1_GMS_STOLEN_64M:
    411  1.26.2.3      yamt 			isc->stolen = (65536 - stolen) * 1024 / 4096;
    412  1.26.2.1      yamt 			break;
    413  1.26.2.1      yamt 		default:
    414  1.26.2.1      yamt 			isc->stolen = 0;
    415  1.26.2.1      yamt 			aprint_error(
    416  1.26.2.1      yamt 			    ": unknown memory configuration, disabling\n");
    417  1.26.2.1      yamt 			agp_generic_detach(sc);
    418  1.26.2.1      yamt 			return EINVAL;
    419  1.26.2.1      yamt 		}
    420  1.26.2.1      yamt 		if (isc->stolen > 0) {
    421  1.26.2.1      yamt 			aprint_error(": detected %dk stolen memory\n%s",
    422  1.26.2.1      yamt 			    isc->stolen * 4, sc->as_dev.dv_xname);
    423  1.26.2.1      yamt 		}
    424  1.26.2.1      yamt 
    425  1.26.2.1      yamt 		/* GATT address is already in there, make sure it's enabled */
    426  1.26.2.1      yamt 		pgtblctl = READ4(AGP_I810_PGTBL_CTL);
    427  1.26.2.1      yamt 		pgtblctl |= 1;
    428  1.26.2.1      yamt 		WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
    429  1.26.2.1      yamt 
    430  1.26.2.1      yamt 		gatt->ag_physical = pgtblctl & ~1;
    431       1.1      fvdl 	}
    432       1.1      fvdl 
    433       1.1      fvdl 	/*
    434       1.1      fvdl 	 * Make sure the chipset can see everything.
    435       1.1      fvdl 	 */
    436       1.1      fvdl 	agp_flush_cache();
    437      1.14       scw 
    438  1.26.2.2      yamt 	isc->sc_powerhook = powerhook_establish(sc->as_dev.dv_xname,
    439  1.26.2.2      yamt 	    agp_i810_powerhook, sc);
    440      1.24  jmcneill 	if (isc->sc_powerhook == NULL)
    441      1.24  jmcneill 		printf("%s: WARNING: unable to establish PCI power hook\n",
    442      1.24  jmcneill 		    sc->as_dev.dv_xname);
    443      1.24  jmcneill 
    444  1.26.2.3      yamt #if 0
    445  1.26.2.3      yamt 	/*
    446  1.26.2.3      yamt 	 * another device (drm) may need access to this region
    447  1.26.2.3      yamt 	 * we do not need it anymore
    448  1.26.2.3      yamt 	 */
    449  1.26.2.3      yamt 	bus_space_unmap(isc->bst, isc->bsh, mmadrsize);
    450  1.26.2.3      yamt #endif
    451  1.26.2.3      yamt 
    452       1.1      fvdl 	return 0;
    453       1.1      fvdl }
    454       1.1      fvdl 
    455       1.1      fvdl #if 0
    456       1.1      fvdl static int
    457       1.1      fvdl agp_i810_detach(struct agp_softc *sc)
    458       1.1      fvdl {
    459       1.1      fvdl 	int error;
    460       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    461       1.1      fvdl 
    462       1.1      fvdl 	error = agp_generic_detach(sc);
    463       1.1      fvdl 	if (error)
    464       1.1      fvdl 		return error;
    465       1.1      fvdl 
    466       1.1      fvdl 	/* Clear the GATT base. */
    467      1.14       scw 	if (sc->chiptype == CHIP_I810) {
    468      1.14       scw 		WRITE4(AGP_I810_PGTBL_CTL, 0);
    469      1.14       scw 	} else {
    470      1.14       scw 		unsigned int pgtblctl;
    471      1.14       scw 		pgtblctl = READ4(AGP_I810_PGTBL_CTL);
    472      1.14       scw 		pgtblctl &= ~1;
    473      1.14       scw 		WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
    474      1.14       scw 	}
    475       1.1      fvdl 
    476       1.1      fvdl 	/* Put the aperture back the way it started. */
    477       1.1      fvdl 	AGP_SET_APERTURE(sc, isc->initial_aperture);
    478       1.1      fvdl 
    479      1.14       scw 	if (sc->chiptype == CHIP_I810) {
    480      1.14       scw 		agp_free_dmamem(sc->as_dmat, gatt->ag_size, gatt->ag_dmamap,
    481  1.26.2.3      yamt 		    (void *)gatt->ag_virtual, &gatt->ag_dmaseg, 1);
    482      1.14       scw 	}
    483      1.14       scw 	free(sc->gatt, M_AGP);
    484       1.1      fvdl 
    485       1.1      fvdl 	return 0;
    486       1.1      fvdl }
    487       1.1      fvdl #endif
    488       1.1      fvdl 
    489       1.1      fvdl static u_int32_t
    490       1.1      fvdl agp_i810_get_aperture(struct agp_softc *sc)
    491       1.1      fvdl {
    492      1.14       scw 	struct agp_i810_softc *isc = sc->as_chipc;
    493      1.14       scw 	pcireg_t reg;
    494  1.26.2.3      yamt 	u_int16_t miscc, gcc1, msac;
    495      1.14       scw 
    496  1.26.2.3      yamt 	switch (isc->chiptype) {
    497  1.26.2.3      yamt 	case CHIP_I810:
    498      1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
    499      1.14       scw 		miscc = (u_int16_t)(reg >> 16);
    500      1.14       scw 		if ((miscc & AGP_I810_MISCC_WINSIZE) ==
    501      1.14       scw 		    AGP_I810_MISCC_WINSIZE_32)
    502      1.14       scw 			return 32 * 1024 * 1024;
    503      1.14       scw 		else
    504      1.14       scw 			return 64 * 1024 * 1024;
    505  1.26.2.3      yamt 	case CHIP_I830:
    506      1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
    507      1.14       scw 		gcc1 = (u_int16_t)(reg >> 16);
    508      1.14       scw 		if ((gcc1 & AGP_I830_GCC1_GMASIZE) == AGP_I830_GCC1_GMASIZE_64)
    509      1.14       scw 			return 64 * 1024 * 1024;
    510      1.14       scw 		else
    511      1.14       scw 			return 128 * 1024 * 1024;
    512  1.26.2.3      yamt 	case CHIP_I855:
    513      1.17   hannken 		return 128 * 1024 * 1024;
    514  1.26.2.3      yamt 	case CHIP_I915:
    515  1.26.2.1      yamt 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I915_MSAC);
    516  1.26.2.1      yamt 		msac = (u_int16_t)(reg >> 16);
    517  1.26.2.1      yamt 		if (msac & AGP_I915_MSAC_APER_128M)
    518  1.26.2.1      yamt 			return 128 * 1024 * 1024;
    519  1.26.2.1      yamt 		else
    520  1.26.2.1      yamt 			return 256 * 1024 * 1024;
    521  1.26.2.3      yamt 	case CHIP_I965:
    522  1.26.2.3      yamt 		return 512 * 1024 * 1024;
    523  1.26.2.3      yamt 	default:
    524  1.26.2.3      yamt 		aprint_error(": Unknown chipset\n");
    525      1.14       scw 	}
    526  1.26.2.3      yamt 
    527  1.26.2.3      yamt 	return 0;
    528       1.1      fvdl }
    529       1.1      fvdl 
    530       1.1      fvdl static int
    531       1.1      fvdl agp_i810_set_aperture(struct agp_softc *sc, u_int32_t aperture)
    532       1.1      fvdl {
    533      1.14       scw 	struct agp_i810_softc *isc = sc->as_chipc;
    534      1.14       scw 	pcireg_t reg;
    535  1.26.2.3      yamt 	u_int16_t miscc, gcc1;
    536      1.14       scw 
    537  1.26.2.3      yamt 	switch (isc->chiptype) {
    538  1.26.2.3      yamt 	case CHIP_I810:
    539      1.14       scw 		/*
    540      1.14       scw 		 * Double check for sanity.
    541      1.14       scw 		 */
    542      1.14       scw 		if (aperture != (32 * 1024 * 1024) &&
    543      1.14       scw 		    aperture != (64 * 1024 * 1024)) {
    544      1.14       scw 			printf("%s: bad aperture size %d\n",
    545      1.14       scw 			    sc->as_dev.dv_xname, aperture);
    546      1.14       scw 			return EINVAL;
    547      1.14       scw 		}
    548       1.1      fvdl 
    549      1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
    550      1.14       scw 		miscc = (u_int16_t)(reg >> 16);
    551      1.14       scw 		miscc &= ~AGP_I810_MISCC_WINSIZE;
    552      1.14       scw 		if (aperture == 32 * 1024 * 1024)
    553      1.14       scw 			miscc |= AGP_I810_MISCC_WINSIZE_32;
    554      1.14       scw 		else
    555      1.14       scw 			miscc |= AGP_I810_MISCC_WINSIZE_64;
    556      1.14       scw 
    557      1.14       scw 		reg &= 0x0000ffff;
    558      1.14       scw 		reg |= ((pcireg_t)miscc) << 16;
    559      1.14       scw 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_I810_SMRAM, reg);
    560  1.26.2.3      yamt 		break;
    561  1.26.2.3      yamt 	case CHIP_I830:
    562      1.14       scw 		if (aperture != (64 * 1024 * 1024) &&
    563      1.14       scw 		    aperture != (128 * 1024 * 1024)) {
    564      1.14       scw 			printf("%s: bad aperture size %d\n",
    565      1.14       scw 			    sc->as_dev.dv_xname, aperture);
    566      1.14       scw 			return EINVAL;
    567      1.14       scw 		}
    568      1.14       scw 		reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
    569      1.14       scw 		gcc1 = (u_int16_t)(reg >> 16);
    570      1.14       scw 		gcc1 &= ~AGP_I830_GCC1_GMASIZE;
    571      1.14       scw 		if (aperture == 64 * 1024 * 1024)
    572      1.14       scw 			gcc1 |= AGP_I830_GCC1_GMASIZE_64;
    573      1.14       scw 		else
    574      1.14       scw 			gcc1 |= AGP_I830_GCC1_GMASIZE_128;
    575      1.14       scw 
    576      1.14       scw 		reg &= 0x0000ffff;
    577      1.14       scw 		reg |= ((pcireg_t)gcc1) << 16;
    578      1.14       scw 		pci_conf_write(sc->as_pc, sc->as_tag, AGP_I830_GCC0, reg);
    579  1.26.2.3      yamt 		break;
    580  1.26.2.3      yamt 	case CHIP_I855:
    581  1.26.2.3      yamt 	case CHIP_I915:
    582  1.26.2.1      yamt 		if (aperture != agp_i810_get_aperture(sc)) {
    583      1.17   hannken 			printf("%s: bad aperture size %d\n",
    584      1.17   hannken 			    sc->as_dev.dv_xname, aperture);
    585      1.17   hannken 			return EINVAL;
    586      1.17   hannken 		}
    587  1.26.2.3      yamt 		break;
    588  1.26.2.3      yamt 	case CHIP_I965:
    589  1.26.2.3      yamt 		if (aperture != 512 * 1024 * 1024) {
    590  1.26.2.3      yamt 			printf("%s: bad aperture size %d\n",
    591  1.26.2.3      yamt 			    sc->as_dev.dv_xname, aperture);
    592  1.26.2.3      yamt 			return EINVAL;
    593  1.26.2.3      yamt 		}
    594  1.26.2.3      yamt 		break;
    595       1.1      fvdl 	}
    596       1.1      fvdl 
    597       1.1      fvdl 	return 0;
    598       1.1      fvdl }
    599       1.1      fvdl 
    600       1.1      fvdl static int
    601       1.1      fvdl agp_i810_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
    602       1.1      fvdl {
    603       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    604       1.1      fvdl 
    605      1.14       scw 	if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT)) {
    606  1.26.2.1      yamt #ifdef AGP_DEBUG
    607      1.14       scw 		printf("%s: failed: offset 0x%08x, shift %d, entries %d\n",
    608      1.14       scw 		    sc->as_dev.dv_xname, (int)offset, AGP_PAGE_SHIFT,
    609      1.14       scw 		    isc->gatt->ag_entries);
    610      1.14       scw #endif
    611       1.1      fvdl 		return EINVAL;
    612      1.14       scw 	}
    613      1.14       scw 
    614      1.17   hannken 	if (isc->chiptype != CHIP_I830) {
    615      1.14       scw 		if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
    616  1.26.2.1      yamt #ifdef AGP_DEBUG
    617      1.14       scw 			printf("%s: trying to bind into stolen memory",
    618      1.14       scw 			    sc->as_dev.dv_xname);
    619      1.14       scw #endif
    620      1.14       scw 			return EINVAL;
    621      1.14       scw 		}
    622      1.14       scw 	}
    623       1.1      fvdl 
    624  1.26.2.1      yamt 	WRITEGTT(offset, physical | 1);
    625       1.1      fvdl 	return 0;
    626       1.1      fvdl }
    627       1.1      fvdl 
    628       1.1      fvdl static int
    629       1.1      fvdl agp_i810_unbind_page(struct agp_softc *sc, off_t offset)
    630       1.1      fvdl {
    631       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    632       1.1      fvdl 
    633       1.1      fvdl 	if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
    634       1.1      fvdl 		return EINVAL;
    635       1.1      fvdl 
    636      1.17   hannken 	if (isc->chiptype != CHIP_I810 ) {
    637      1.14       scw 		if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
    638  1.26.2.1      yamt #ifdef AGP_DEBUG
    639      1.14       scw 			printf("%s: trying to unbind from stolen memory",
    640      1.14       scw 			    sc->as_dev.dv_xname);
    641      1.14       scw #endif
    642      1.14       scw 			return EINVAL;
    643      1.14       scw 		}
    644      1.14       scw 	}
    645      1.14       scw 
    646  1.26.2.1      yamt 	WRITEGTT(offset, 0);
    647       1.1      fvdl 	return 0;
    648       1.1      fvdl }
    649       1.1      fvdl 
    650       1.1      fvdl /*
    651       1.1      fvdl  * Writing via memory mapped registers already flushes all TLBs.
    652       1.1      fvdl  */
    653       1.1      fvdl static void
    654       1.1      fvdl agp_i810_flush_tlb(struct agp_softc *sc)
    655       1.1      fvdl {
    656       1.1      fvdl }
    657       1.1      fvdl 
    658       1.1      fvdl static int
    659       1.1      fvdl agp_i810_enable(struct agp_softc *sc, u_int32_t mode)
    660       1.1      fvdl {
    661       1.1      fvdl 
    662       1.1      fvdl 	return 0;
    663       1.1      fvdl }
    664       1.1      fvdl 
    665       1.1      fvdl static struct agp_memory *
    666       1.1      fvdl agp_i810_alloc_memory(struct agp_softc *sc, int type, vsize_t size)
    667       1.1      fvdl {
    668       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    669       1.1      fvdl 	struct agp_memory *mem;
    670       1.1      fvdl 
    671  1.26.2.1      yamt #ifdef AGP_DEBUG
    672  1.26.2.1      yamt 	printf("AGP: alloc(%d, 0x%x)\n", type, (int) size);
    673  1.26.2.1      yamt #endif
    674  1.26.2.1      yamt 
    675       1.1      fvdl 	if ((size & (AGP_PAGE_SIZE - 1)) != 0)
    676       1.1      fvdl 		return 0;
    677       1.1      fvdl 
    678       1.1      fvdl 	if (sc->as_allocated + size > sc->as_maxmem)
    679       1.1      fvdl 		return 0;
    680       1.1      fvdl 
    681       1.1      fvdl 	if (type == 1) {
    682       1.1      fvdl 		/*
    683       1.1      fvdl 		 * Mapping local DRAM into GATT.
    684       1.1      fvdl 		 */
    685      1.17   hannken 		if (isc->chiptype != CHIP_I810 )
    686      1.14       scw 			return 0;
    687       1.1      fvdl 		if (size != isc->dcache_size)
    688       1.1      fvdl 			return 0;
    689       1.1      fvdl 	} else if (type == 2) {
    690       1.1      fvdl 		/*
    691  1.26.2.1      yamt 		 * Bogus mapping for the hardware cursor.
    692       1.1      fvdl 		 */
    693  1.26.2.1      yamt 		if (size != AGP_PAGE_SIZE && size != 4 * AGP_PAGE_SIZE)
    694       1.1      fvdl 			return 0;
    695       1.1      fvdl 	}
    696       1.1      fvdl 
    697      1.10   tsutsui 	mem = malloc(sizeof *mem, M_AGP, M_WAITOK|M_ZERO);
    698       1.1      fvdl 	if (mem == NULL)
    699       1.1      fvdl 		return NULL;
    700       1.1      fvdl 	mem->am_id = sc->as_nextid++;
    701       1.1      fvdl 	mem->am_size = size;
    702       1.1      fvdl 	mem->am_type = type;
    703       1.1      fvdl 
    704       1.1      fvdl 	if (type == 2) {
    705       1.1      fvdl 		/*
    706  1.26.2.1      yamt 		 * Allocate and wire down the memory now so that we can
    707       1.1      fvdl 		 * get its physical address.
    708       1.1      fvdl 		 */
    709       1.1      fvdl 		mem->am_dmaseg = malloc(sizeof *mem->am_dmaseg, M_AGP,
    710       1.1      fvdl 		    M_WAITOK);
    711       1.1      fvdl 		if (mem->am_dmaseg == NULL) {
    712       1.1      fvdl 			free(mem, M_AGP);
    713       1.1      fvdl 			return NULL;
    714       1.1      fvdl 		}
    715       1.1      fvdl 		if (agp_alloc_dmamem(sc->as_dmat, size, 0,
    716       1.1      fvdl 		    &mem->am_dmamap, &mem->am_virtual, &mem->am_physical,
    717       1.1      fvdl 		    mem->am_dmaseg, 1, &mem->am_nseg) != 0) {
    718       1.1      fvdl 			free(mem->am_dmaseg, M_AGP);
    719       1.1      fvdl 			free(mem, M_AGP);
    720       1.1      fvdl 			return NULL;
    721       1.1      fvdl 		}
    722  1.26.2.1      yamt 		memset(mem->am_virtual, 0, size);
    723       1.1      fvdl 	} else if (type != 1) {
    724       1.4  drochner 		if (bus_dmamap_create(sc->as_dmat, size, size / PAGE_SIZE + 1,
    725       1.4  drochner 				      size, 0, BUS_DMA_NOWAIT,
    726       1.4  drochner 				      &mem->am_dmamap) != 0) {
    727       1.1      fvdl 			free(mem, M_AGP);
    728       1.1      fvdl 			return NULL;
    729       1.1      fvdl 		}
    730       1.1      fvdl 	}
    731       1.1      fvdl 
    732       1.1      fvdl 	TAILQ_INSERT_TAIL(&sc->as_memory, mem, am_link);
    733       1.1      fvdl 	sc->as_allocated += size;
    734       1.1      fvdl 
    735       1.1      fvdl 	return mem;
    736       1.1      fvdl }
    737       1.1      fvdl 
    738       1.1      fvdl static int
    739       1.1      fvdl agp_i810_free_memory(struct agp_softc *sc, struct agp_memory *mem)
    740       1.1      fvdl {
    741       1.1      fvdl 	if (mem->am_is_bound)
    742       1.1      fvdl 		return EBUSY;
    743       1.1      fvdl 
    744       1.1      fvdl 	if (mem->am_type == 2) {
    745       1.1      fvdl 		agp_free_dmamem(sc->as_dmat, mem->am_size, mem->am_dmamap,
    746       1.1      fvdl 		    mem->am_virtual, mem->am_dmaseg, mem->am_nseg);
    747       1.1      fvdl 		free(mem->am_dmaseg, M_AGP);
    748       1.1      fvdl 	}
    749       1.1      fvdl 
    750       1.1      fvdl 	sc->as_allocated -= mem->am_size;
    751       1.1      fvdl 	TAILQ_REMOVE(&sc->as_memory, mem, am_link);
    752       1.1      fvdl 	free(mem, M_AGP);
    753       1.1      fvdl 	return 0;
    754       1.1      fvdl }
    755       1.1      fvdl 
    756       1.1      fvdl static int
    757       1.1      fvdl agp_i810_bind_memory(struct agp_softc *sc, struct agp_memory *mem,
    758       1.1      fvdl 		     off_t offset)
    759       1.1      fvdl {
    760       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    761       1.4  drochner 	u_int32_t regval, i;
    762       1.4  drochner 
    763       1.4  drochner 	/*
    764       1.4  drochner 	 * XXX evil hack: the PGTBL_CTL appearently gets overwritten by the
    765       1.4  drochner 	 * X server for mysterious reasons which leads to crashes if we write
    766       1.4  drochner 	 * to the GTT through the MMIO window.
    767       1.4  drochner 	 * Until the issue is solved, simply restore it.
    768       1.4  drochner 	 */
    769  1.26.2.3      yamt 
    770  1.26.2.3      yamt #if 0
    771       1.4  drochner 	regval = bus_space_read_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL);
    772       1.4  drochner 	if (regval != (isc->gatt->ag_physical | 1)) {
    773       1.4  drochner 		printf("agp_i810_bind_memory: PGTBL_CTL is 0x%x - fixing\n",
    774       1.4  drochner 		       regval);
    775       1.4  drochner 		bus_space_write_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL,
    776       1.4  drochner 				  isc->gatt->ag_physical | 1);
    777       1.4  drochner 	}
    778  1.26.2.3      yamt #endif
    779  1.26.2.3      yamt 	regval = 0;
    780       1.1      fvdl 
    781       1.5  drochner 	if (mem->am_type == 2) {
    782  1.26.2.1      yamt 		WRITEGTT(offset, mem->am_physical | 1);
    783       1.5  drochner 		mem->am_offset = offset;
    784       1.5  drochner 		mem->am_is_bound = 1;
    785       1.1      fvdl 		return 0;
    786       1.5  drochner 	}
    787       1.5  drochner 
    788       1.1      fvdl 	if (mem->am_type != 1)
    789       1.1      fvdl 		return agp_generic_bind_memory(sc, mem, offset);
    790       1.1      fvdl 
    791      1.17   hannken 	if (isc->chiptype != CHIP_I810)
    792      1.14       scw 		return EINVAL;
    793      1.14       scw 
    794  1.26.2.1      yamt 	for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
    795  1.26.2.1      yamt 		WRITEGTT(offset, i | 3);
    796      1.13  drochner 	mem->am_is_bound = 1;
    797       1.1      fvdl 	return 0;
    798       1.1      fvdl }
    799       1.1      fvdl 
    800       1.1      fvdl static int
    801       1.1      fvdl agp_i810_unbind_memory(struct agp_softc *sc, struct agp_memory *mem)
    802       1.1      fvdl {
    803       1.1      fvdl 	struct agp_i810_softc *isc = sc->as_chipc;
    804       1.1      fvdl 	u_int32_t i;
    805       1.1      fvdl 
    806       1.5  drochner 	if (mem->am_type == 2) {
    807  1.26.2.1      yamt 		WRITEGTT(mem->am_offset, 0);
    808       1.5  drochner 		mem->am_offset = 0;
    809       1.5  drochner 		mem->am_is_bound = 0;
    810       1.1      fvdl 		return 0;
    811       1.5  drochner 	}
    812       1.1      fvdl 
    813       1.1      fvdl 	if (mem->am_type != 1)
    814       1.1      fvdl 		return agp_generic_unbind_memory(sc, mem);
    815      1.14       scw 
    816      1.17   hannken 	if (isc->chiptype != CHIP_I810)
    817      1.14       scw 		return EINVAL;
    818       1.1      fvdl 
    819       1.1      fvdl 	for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
    820  1.26.2.1      yamt 		WRITEGTT(i, 0);
    821      1.13  drochner 	mem->am_is_bound = 0;
    822       1.1      fvdl 	return 0;
    823       1.1      fvdl }
    824      1.24  jmcneill 
    825      1.24  jmcneill static void
    826      1.24  jmcneill agp_i810_powerhook(int why, void *arg)
    827      1.24  jmcneill {
    828      1.24  jmcneill 	struct agp_softc *sc = (struct agp_softc *)arg;
    829      1.24  jmcneill 	struct agp_i810_softc *isc = sc->as_chipc;
    830      1.24  jmcneill 
    831      1.24  jmcneill 	if (why == PWR_RESUME) {
    832      1.24  jmcneill 		pci_conf_restore(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
    833      1.24  jmcneill 		agp_flush_cache();
    834      1.24  jmcneill 	} else if ((why == PWR_STANDBY) || (why == PWR_SUSPEND))
    835      1.24  jmcneill 		pci_conf_capture(sc->as_pc, sc->as_tag, &isc->sc_pciconf);
    836      1.24  jmcneill 
    837      1.24  jmcneill 	return;
    838      1.24  jmcneill }
    839