2001-09-13 20:18:53 +04:00
|
|
|
/* $NetBSD: agp_i810.c,v 1.4 2001/09/13 16:18:53 drochner Exp $ */
|
2001-09-10 14:01:00 +04:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Doug Rabson
|
|
|
|
* Copyright (c) 2000 Ruslan Ermilov
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD: src/sys/pci/agp_i810.c,v 1.4 2001/07/05 21:28:47 jhb Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
|
|
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
|
|
#include <dev/pci/agpvar.h>
|
|
|
|
#include <dev/pci/agpreg.h>
|
|
|
|
|
|
|
|
#include <sys/agpio.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
|
|
|
|
#define READ1(off) bus_space_read_1(isc->bst, isc->bsh, off)
|
|
|
|
#define WRITE4(off,v) bus_space_write_4(isc->bst, isc->bsh, off, v)
|
|
|
|
|
|
|
|
struct agp_i810_softc {
|
|
|
|
u_int32_t initial_aperture; /* aperture size at startup */
|
|
|
|
struct agp_gatt *gatt;
|
|
|
|
u_int32_t dcache_size;
|
|
|
|
bus_space_tag_t bst; /* bus_space tag */
|
|
|
|
bus_space_handle_t bsh; /* bus_space handle */
|
|
|
|
struct pci_attach_args vga_pa;
|
|
|
|
};
|
|
|
|
|
|
|
|
static u_int32_t agp_i810_get_aperture(struct agp_softc *);
|
|
|
|
static int agp_i810_set_aperture(struct agp_softc *, u_int32_t);
|
|
|
|
static int agp_i810_bind_page(struct agp_softc *, off_t, bus_addr_t);
|
|
|
|
static int agp_i810_unbind_page(struct agp_softc *, off_t);
|
|
|
|
static void agp_i810_flush_tlb(struct agp_softc *);
|
|
|
|
static int agp_i810_enable(struct agp_softc *, u_int32_t mode);
|
|
|
|
static struct agp_memory *agp_i810_alloc_memory(struct agp_softc *, int,
|
|
|
|
vsize_t);
|
|
|
|
static int agp_i810_free_memory(struct agp_softc *, struct agp_memory *);
|
|
|
|
static int agp_i810_bind_memory(struct agp_softc *, struct agp_memory *, off_t);
|
|
|
|
static int agp_i810_unbind_memory(struct agp_softc *, struct agp_memory *);
|
|
|
|
|
|
|
|
struct agp_methods agp_i810_methods = {
|
|
|
|
agp_i810_get_aperture,
|
|
|
|
agp_i810_set_aperture,
|
|
|
|
agp_i810_bind_page,
|
|
|
|
agp_i810_unbind_page,
|
|
|
|
agp_i810_flush_tlb,
|
|
|
|
agp_i810_enable,
|
|
|
|
agp_i810_alloc_memory,
|
|
|
|
agp_i810_free_memory,
|
|
|
|
agp_i810_bind_memory,
|
|
|
|
agp_i810_unbind_memory,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_vgamatch(struct pci_attach_args *pa)
|
|
|
|
{
|
2001-09-10 16:51:42 +04:00
|
|
|
if (PCI_CLASS(pa->pa_class) != PCI_CLASS_DISPLAY ||
|
|
|
|
PCI_SUBCLASS(pa->pa_class) != PCI_SUBCLASS_DISPLAY_VGA)
|
2001-09-10 14:01:00 +04:00
|
|
|
return 0;
|
|
|
|
switch (PCI_PRODUCT(pa->pa_id)) {
|
|
|
|
case PCI_PRODUCT_INTEL_82810_GC:
|
|
|
|
case PCI_PRODUCT_INTEL_82810_DC100_GC:
|
|
|
|
case PCI_PRODUCT_INTEL_82810E_GC:
|
|
|
|
case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
|
|
|
|
return 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find bridge device.
|
|
|
|
*/
|
2001-09-11 10:51:47 +04:00
|
|
|
int
|
2001-09-10 14:01:00 +04:00
|
|
|
agp_i810_bridgematch(struct pci_attach_args *pa)
|
|
|
|
{
|
|
|
|
switch (PCI_PRODUCT(pa->pa_id)) {
|
|
|
|
case PCI_PRODUCT_INTEL_82810_MCH:
|
|
|
|
case PCI_PRODUCT_INTEL_82810_DC100_MCH:
|
|
|
|
case PCI_PRODUCT_INTEL_82810E_MCH:
|
|
|
|
case PCI_PRODUCT_INTEL_82815_FULL_HUB:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
agp_i810_match(struct device *parent, struct cfdata *match, void *aux)
|
|
|
|
{
|
|
|
|
struct pci_attach_args vga_pa, *pa = aux;
|
|
|
|
pcireg_t ramreg;
|
|
|
|
|
|
|
|
if (agp_i810_bridgematch(pa) == 0)
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
* XXXXfvdl
|
|
|
|
* this relies on the 'memory hub' and the VGA controller
|
|
|
|
* being on the same bus, which is bad. Fortunately, we
|
|
|
|
* know this to be the case with the i810.
|
|
|
|
*
|
|
|
|
* Could just have the attach fail later, leave as_chipc NULL
|
|
|
|
* and fail any open() call.
|
|
|
|
*/
|
|
|
|
if (pci_find_device(&vga_pa, agp_i810_vgamatch) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ramreg = pci_conf_read(pa->pa_pc, pa->pa_tag, AGP_I810_SMRAM);
|
|
|
|
if ((ramreg & 0xff) == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
agp_i810_attach(struct device *parent, struct device *self, void *aux)
|
|
|
|
{
|
|
|
|
struct agp_softc *sc = (void *)self;
|
|
|
|
struct agp_i810_softc *isc;
|
|
|
|
struct agp_gatt *gatt;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
isc = malloc(sizeof *isc, M_AGP, M_NOWAIT);
|
|
|
|
if (isc == NULL) {
|
|
|
|
printf(": can't allocate chipset-specific softc\n");
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
memset(isc, 0, sizeof *isc);
|
|
|
|
sc->as_chipc = isc;
|
|
|
|
sc->as_methods = &agp_i810_methods;
|
|
|
|
|
|
|
|
if (pci_find_device(&isc->vga_pa, agp_i810_vgamatch) == 0) {
|
|
|
|
free(isc, M_AGP);
|
|
|
|
return ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXXfvdl */
|
|
|
|
sc->as_dmat = isc->vga_pa.pa_dmat;
|
|
|
|
|
|
|
|
error = agp_map_aperture(&isc->vga_pa, sc);
|
|
|
|
if (error != 0) {
|
|
|
|
free(isc, M_AGP);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = pci_mapreg_map(&isc->vga_pa, AGP_I810_MMADR,
|
|
|
|
PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh, NULL, NULL);
|
|
|
|
if (error != 0) {
|
|
|
|
printf(": can't map mmadr registers\n");
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
isc->initial_aperture = AGP_GET_APERTURE(sc);
|
|
|
|
|
|
|
|
if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
|
|
|
|
isc->dcache_size = 4 * 1024 * 1024;
|
|
|
|
else
|
|
|
|
isc->dcache_size = 0;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
gatt = agp_alloc_gatt(sc);
|
|
|
|
if (gatt)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probably contigmalloc failure. Try reducing the
|
|
|
|
* aperture so that the gatt size reduces.
|
|
|
|
*/
|
|
|
|
if (AGP_SET_APERTURE(sc, AGP_GET_APERTURE(sc) / 2)) {
|
|
|
|
agp_generic_detach(sc);
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
isc->gatt = gatt;
|
|
|
|
|
|
|
|
/* Install the GATT. */
|
|
|
|
WRITE4(AGP_I810_PGTBL_CTL, gatt->ag_physical | 1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the chipset can see everything.
|
|
|
|
*/
|
|
|
|
agp_flush_cache();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
static int
|
|
|
|
agp_i810_detach(struct agp_softc *sc)
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
|
|
|
|
|
|
|
error = agp_generic_detach(sc);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
/* Clear the GATT base. */
|
|
|
|
WRITE4(AGP_I810_PGTBL_CTL, 0);
|
|
|
|
|
|
|
|
/* Put the aperture back the way it started. */
|
|
|
|
AGP_SET_APERTURE(sc, isc->initial_aperture);
|
|
|
|
|
|
|
|
agp_free_gatt(sc, isc->gatt);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static u_int32_t
|
|
|
|
agp_i810_get_aperture(struct agp_softc *sc)
|
|
|
|
{
|
|
|
|
u_int16_t miscc;
|
|
|
|
|
|
|
|
miscc = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM) >> 16;
|
|
|
|
if ((miscc & AGP_I810_MISCC_WINSIZE) == AGP_I810_MISCC_WINSIZE_32)
|
|
|
|
return 32 * 1024 * 1024;
|
|
|
|
else
|
|
|
|
return 64 * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_set_aperture(struct agp_softc *sc, u_int32_t aperture)
|
|
|
|
{
|
|
|
|
pcireg_t reg, miscc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Double check for sanity.
|
|
|
|
*/
|
|
|
|
if (aperture != 32 * 1024 * 1024 && aperture != 64 * 1024 * 1024) {
|
|
|
|
printf("%s: bad aperture size %d\n", sc->as_dev.dv_xname,
|
|
|
|
aperture);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
|
|
|
|
miscc = reg >> 16;
|
|
|
|
miscc &= ~AGP_I810_MISCC_WINSIZE;
|
|
|
|
if (aperture == 32 * 1024 * 1024)
|
|
|
|
miscc |= AGP_I810_MISCC_WINSIZE_32;
|
|
|
|
else
|
|
|
|
miscc |= AGP_I810_MISCC_WINSIZE_64;
|
|
|
|
|
|
|
|
reg &= 0x0000ffff;
|
|
|
|
reg |= (miscc << 16);
|
|
|
|
pci_conf_write(sc->as_pc, sc->as_tag, AGP_I810_SMRAM, miscc);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
|
|
|
|
{
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
|
|
|
|
|
|
|
if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4,
|
|
|
|
physical | 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_unbind_page(struct agp_softc *sc, off_t offset)
|
|
|
|
{
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
|
|
|
|
|
|
|
if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Writing via memory mapped registers already flushes all TLBs.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
agp_i810_flush_tlb(struct agp_softc *sc)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_enable(struct agp_softc *sc, u_int32_t mode)
|
|
|
|
{
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct agp_memory *
|
|
|
|
agp_i810_alloc_memory(struct agp_softc *sc, int type, vsize_t size)
|
|
|
|
{
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
|
|
|
struct agp_memory *mem;
|
|
|
|
|
|
|
|
if ((size & (AGP_PAGE_SIZE - 1)) != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (sc->as_allocated + size > sc->as_maxmem)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (type == 1) {
|
|
|
|
/*
|
|
|
|
* Mapping local DRAM into GATT.
|
|
|
|
*/
|
|
|
|
if (size != isc->dcache_size)
|
|
|
|
return 0;
|
|
|
|
} else if (type == 2) {
|
|
|
|
/*
|
|
|
|
* Bogus mapping of a single page for the hardware cursor.
|
|
|
|
*/
|
|
|
|
if (size != AGP_PAGE_SIZE)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
mem = malloc(sizeof *mem, M_AGP, M_WAITOK);
|
|
|
|
if (mem == NULL)
|
|
|
|
return NULL;
|
|
|
|
memset(mem, 0, sizeof *mem);
|
|
|
|
mem->am_id = sc->as_nextid++;
|
|
|
|
mem->am_size = size;
|
|
|
|
mem->am_type = type;
|
|
|
|
|
|
|
|
if (type == 2) {
|
|
|
|
/*
|
|
|
|
* Allocate and wire down the page now so that we can
|
|
|
|
* get its physical address.
|
|
|
|
*/
|
|
|
|
mem->am_dmaseg = malloc(sizeof *mem->am_dmaseg, M_AGP,
|
|
|
|
M_WAITOK);
|
|
|
|
if (mem->am_dmaseg == NULL) {
|
|
|
|
free(mem, M_AGP);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (agp_alloc_dmamem(sc->as_dmat, size, 0,
|
|
|
|
&mem->am_dmamap, &mem->am_virtual, &mem->am_physical,
|
|
|
|
mem->am_dmaseg, 1, &mem->am_nseg) != 0) {
|
|
|
|
free(mem->am_dmaseg, M_AGP);
|
|
|
|
free(mem, M_AGP);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
} else if (type != 1) {
|
2001-09-13 20:18:53 +04:00
|
|
|
if (bus_dmamap_create(sc->as_dmat, size, size / PAGE_SIZE + 1,
|
|
|
|
size, 0, BUS_DMA_NOWAIT,
|
|
|
|
&mem->am_dmamap) != 0) {
|
2001-09-10 14:01:00 +04:00
|
|
|
free(mem, M_AGP);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&sc->as_memory, mem, am_link);
|
|
|
|
sc->as_allocated += size;
|
|
|
|
|
|
|
|
return mem;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_free_memory(struct agp_softc *sc, struct agp_memory *mem)
|
|
|
|
{
|
|
|
|
if (mem->am_is_bound)
|
|
|
|
return EBUSY;
|
|
|
|
|
|
|
|
if (mem->am_type == 2) {
|
|
|
|
agp_free_dmamem(sc->as_dmat, mem->am_size, mem->am_dmamap,
|
|
|
|
mem->am_virtual, mem->am_dmaseg, mem->am_nseg);
|
|
|
|
free(mem->am_dmaseg, M_AGP);
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->as_allocated -= mem->am_size;
|
|
|
|
TAILQ_REMOVE(&sc->as_memory, mem, am_link);
|
|
|
|
free(mem, M_AGP);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_bind_memory(struct agp_softc *sc, struct agp_memory *mem,
|
|
|
|
off_t offset)
|
|
|
|
{
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
2001-09-13 20:18:53 +04:00
|
|
|
u_int32_t regval, i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX evil hack: the PGTBL_CTL appearently gets overwritten by the
|
|
|
|
* X server for mysterious reasons which leads to crashes if we write
|
|
|
|
* to the GTT through the MMIO window.
|
|
|
|
* Until the issue is solved, simply restore it.
|
|
|
|
*/
|
|
|
|
regval = bus_space_read_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL);
|
|
|
|
if (regval != (isc->gatt->ag_physical | 1)) {
|
|
|
|
printf("agp_i810_bind_memory: PGTBL_CTL is 0x%x - fixing\n",
|
|
|
|
regval);
|
|
|
|
bus_space_write_4(isc->bst, isc->bsh, AGP_I810_PGTBL_CTL,
|
|
|
|
isc->gatt->ag_physical | 1);
|
|
|
|
}
|
2001-09-10 14:01:00 +04:00
|
|
|
|
|
|
|
if (mem->am_type == 2)
|
|
|
|
return 0;
|
|
|
|
if (mem->am_type != 1)
|
|
|
|
return agp_generic_bind_memory(sc, mem, offset);
|
|
|
|
|
|
|
|
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
|
|
|
|
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4,
|
|
|
|
i | 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_i810_unbind_memory(struct agp_softc *sc, struct agp_memory *mem)
|
|
|
|
{
|
|
|
|
struct agp_i810_softc *isc = sc->as_chipc;
|
|
|
|
u_int32_t i;
|
|
|
|
|
|
|
|
if (mem->am_type == 2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (mem->am_type != 1)
|
|
|
|
return agp_generic_unbind_memory(sc, mem);
|
|
|
|
|
|
|
|
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
|
|
|
|
WRITE4(AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|