Add support for i830/i845 agp. From Shingo WATANABE (on tech-x11) and

FreeBSD, with cleanup/KNF by me.

Note: These chipsets are not well supported by the i810 driver in
NetBSD's in-tree xsrc (based on XFree86 4.2.1 at this time). However,
the driver works perfectly using bleeding-edge XFree86-current on my
Omnibook's i830MG with these agp changes.
This commit is contained in:
scw 2002-12-13 11:32:50 +00:00
parent e627b7fefc
commit 173ca7d4d0
3 changed files with 231 additions and 59 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: agp.c,v 1.22 2002/10/23 09:13:31 jdolecek Exp $ */ /* $NetBSD: agp.c,v 1.23 2002/12/13 11:32:50 scw Exp $ */
/*- /*-
* Copyright (c) 2000 Doug Rabson * Copyright (c) 2000 Doug Rabson
@ -65,7 +65,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.22 2002/10/23 09:13:31 jdolecek Exp $"); __KERNEL_RCSID(0, "$NetBSD: agp.c,v 1.23 2002/12/13 11:32:50 scw Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -151,11 +151,10 @@ const struct agp_product {
NULL, agp_i810_attach }, NULL, agp_i810_attach },
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82840_HB, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82840_HB,
NULL, agp_i810_attach }, NULL, agp_i810_attach },
#if 0
/* XXX needs somewhat different driver */
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82830MP_IO_1, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82830MP_IO_1,
NULL, agp_i810_attach }, NULL, agp_i810_attach },
#endif { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82845G_DRAM,
NULL, agp_i810_attach },
#endif #endif
#if NAGP_INTEL > 0 #if NAGP_INTEL > 0

View File

@ -1,4 +1,4 @@
/* $NetBSD: agp_i810.c,v 1.13 2002/08/11 12:36:21 drochner Exp $ */ /* $NetBSD: agp_i810.c,v 1.14 2002/12/13 11:32:51 scw Exp $ */
/*- /*-
* Copyright (c) 2000 Doug Rabson * Copyright (c) 2000 Doug Rabson
@ -30,7 +30,7 @@
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.13 2002/08/11 12:36:21 drochner Exp $"); __KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.14 2002/12/13 11:32:51 scw Exp $");
#include <sys/param.h> #include <sys/param.h>
#include <sys/systm.h> #include <sys/systm.h>
@ -54,12 +54,19 @@ __KERNEL_RCSID(0, "$NetBSD: agp_i810.c,v 1.13 2002/08/11 12:36:21 drochner Exp $
#include <machine/bus.h> #include <machine/bus.h>
#define READ1(off) bus_space_read_1(isc->bst, isc->bsh, off) #define READ1(off) bus_space_read_1(isc->bst, isc->bsh, off)
#define READ4(off) bus_space_read_4(isc->bst, isc->bsh, off)
#define WRITE4(off,v) bus_space_write_4(isc->bst, isc->bsh, off, v) #define WRITE4(off,v) bus_space_write_4(isc->bst, isc->bsh, off, v)
#define CHIP_I810 0 /* i810/i815 */
#define CHIP_I830 1 /* i830/i845 */
struct agp_i810_softc { struct agp_i810_softc {
u_int32_t initial_aperture; /* aperture size at startup */ u_int32_t initial_aperture; /* aperture size at startup */
struct agp_gatt *gatt; struct agp_gatt *gatt;
u_int32_t dcache_size; int chiptype; /* i810-like or i830 */
u_int32_t dcache_size; /* i810 only */
u_int32_t stolen; /* number of i830/845 gtt entries
for stolen memory */
bus_space_tag_t bst; /* bus_space tag */ bus_space_tag_t bst; /* bus_space tag */
bus_space_handle_t bsh; /* bus_space handle */ bus_space_handle_t bsh; /* bus_space handle */
struct pci_attach_args vga_pa; struct pci_attach_args vga_pa;
@ -104,7 +111,8 @@ agp_i810_vgamatch(struct pci_attach_args *pa)
case PCI_PRODUCT_INTEL_82810_DC100_GC: case PCI_PRODUCT_INTEL_82810_DC100_GC:
case PCI_PRODUCT_INTEL_82810E_GC: case PCI_PRODUCT_INTEL_82810E_GC:
case PCI_PRODUCT_INTEL_82815_FULL_GRAPH: case PCI_PRODUCT_INTEL_82815_FULL_GRAPH:
/*case PCI_PRODUCT_INTEL_82830MP_IV: XXX needs somewhat different driver */ case PCI_PRODUCT_INTEL_82830MP_IV:
case PCI_PRODUCT_INTEL_82845G_IGD:
return (1); return (1);
} }
@ -143,6 +151,19 @@ agp_i810_attach(struct device *parent, struct device *self, void *aux)
return error; return error;
} }
switch (PCI_PRODUCT(isc->vga_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:
isc->chiptype = CHIP_I810;
break;
case PCI_PRODUCT_INTEL_82830MP_IV:
case PCI_PRODUCT_INTEL_82845G_IGD:
isc->chiptype = CHIP_I830;
break;
}
error = pci_mapreg_map(&isc->vga_pa, AGP_I810_MMADR, error = pci_mapreg_map(&isc->vga_pa, AGP_I810_MMADR,
PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh, NULL, NULL); PCI_MAPREG_TYPE_MEM, 0, &isc->bst, &isc->bsh, NULL, NULL);
if (error != 0) { if (error != 0) {
@ -152,35 +173,84 @@ agp_i810_attach(struct device *parent, struct device *self, void *aux)
isc->initial_aperture = AGP_GET_APERTURE(sc); isc->initial_aperture = AGP_GET_APERTURE(sc);
if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED) gatt = malloc(sizeof(struct agp_gatt), M_AGP, M_NOWAIT);
isc->dcache_size = 4 * 1024 * 1024; if (!gatt) {
else agp_generic_detach(sc);
isc->dcache_size = 0; return ENOMEM;
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; isc->gatt = gatt;
/* Install the GATT. */ gatt->ag_entries = AGP_GET_APERTURE(sc) >> AGP_PAGE_SHIFT;
WRITE4(AGP_I810_PGTBL_CTL, gatt->ag_physical | 1);
if (isc->chiptype == CHIP_I810) {
int dummyseg;
/* Some i810s have on-chip memory called dcache */
if (READ1(AGP_I810_DRT) & AGP_I810_DRT_POPULATED)
isc->dcache_size = 4 * 1024 * 1024;
else
isc->dcache_size = 0;
/* According to the specs the gatt on the i810 must be 64k */
if (agp_alloc_dmamem(sc->as_dmat, 64 * 1024,
0, &gatt->ag_dmamap, (caddr_t *)&gatt->ag_virtual,
&gatt->ag_physical, &gatt->ag_dmaseg, 1, &dummyseg) != 0) {
free(gatt, M_AGP);
agp_generic_detach(sc);
return ENOMEM;
}
gatt->ag_size = gatt->ag_entries * sizeof(u_int32_t);
memset(gatt->ag_virtual, 0, gatt->ag_size);
agp_flush_cache();
/* Install the GATT. */
WRITE4(AGP_I810_PGTBL_CTL, gatt->ag_physical | 1);
} else {
/* The i830 automatically initializes the 128k gatt on boot. */
pcireg_t reg;
u_int32_t pgtblctl;
u_int16_t gcc1;
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
gcc1 = (u_int16_t)(reg >> 16);
switch (gcc1 & AGP_I830_GCC1_GMS) {
case AGP_I830_GCC1_GMS_STOLEN_512:
isc->stolen = (512 - 132) * 1024 / 4096;
break;
case AGP_I830_GCC1_GMS_STOLEN_1024:
isc->stolen = (1024 - 132) * 1024 / 4096;
break;
case AGP_I830_GCC1_GMS_STOLEN_8192:
isc->stolen = (8192 - 132) * 1024 / 4096;
break;
default:
isc->stolen = 0;
printf(": unknown memory configuration, disabling\n");
agp_generic_detach(sc);
return EINVAL;
}
if (isc->stolen > 0) {
printf(": detected %dk stolen memory\n",
isc->stolen * 4);
}
printf("%s: aperture size is %dM\n", sc->as_dev.dv_xname,
isc->initial_aperture / 1024 / 1024);
/* GATT address is already in there, make sure it's enabled */
pgtblctl = READ4(AGP_I810_PGTBL_CTL);
pgtblctl |= 1;
WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
gatt->ag_physical = pgtblctl & ~1;
}
/* /*
* Make sure the chipset can see everything. * Make sure the chipset can see everything.
*/ */
agp_flush_cache(); agp_flush_cache();
printf("%s", sc->as_dev.dv_xname);
return 0; return 0;
} }
@ -196,12 +266,23 @@ agp_i810_detach(struct agp_softc *sc)
return error; return error;
/* Clear the GATT base. */ /* Clear the GATT base. */
WRITE4(AGP_I810_PGTBL_CTL, 0); if (sc->chiptype == CHIP_I810) {
WRITE4(AGP_I810_PGTBL_CTL, 0);
} else {
unsigned int pgtblctl;
pgtblctl = READ4(AGP_I810_PGTBL_CTL);
pgtblctl &= ~1;
WRITE4(AGP_I810_PGTBL_CTL, pgtblctl);
}
/* Put the aperture back the way it started. */ /* Put the aperture back the way it started. */
AGP_SET_APERTURE(sc, isc->initial_aperture); AGP_SET_APERTURE(sc, isc->initial_aperture);
agp_free_gatt(sc, isc->gatt); if (sc->chiptype == CHIP_I810) {
agp_free_dmamem(sc->as_dmat, gatt->ag_size, gatt->ag_dmamap,
(caddr_t)gatt->ag_virtual, &gatt->ag_dmaseg, 1);
}
free(sc->gatt, M_AGP);
return 0; return 0;
} }
@ -210,41 +291,83 @@ agp_i810_detach(struct agp_softc *sc)
static u_int32_t static u_int32_t
agp_i810_get_aperture(struct agp_softc *sc) agp_i810_get_aperture(struct agp_softc *sc)
{ {
u_int16_t miscc; struct agp_i810_softc *isc = sc->as_chipc;
pcireg_t reg;
miscc = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM) >> 16; if (isc->chiptype == CHIP_I810) {
if ((miscc & AGP_I810_MISCC_WINSIZE) == AGP_I810_MISCC_WINSIZE_32) u_int16_t miscc;
return 32 * 1024 * 1024;
else reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I810_SMRAM);
return 64 * 1024 * 1024; miscc = (u_int16_t)(reg >> 16);
if ((miscc & AGP_I810_MISCC_WINSIZE) ==
AGP_I810_MISCC_WINSIZE_32)
return 32 * 1024 * 1024;
else
return 64 * 1024 * 1024;
} else { /* I830 */
u_int16_t gcc1;
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_I830_GCC0);
gcc1 = (u_int16_t)(reg >> 16);
if ((gcc1 & AGP_I830_GCC1_GMASIZE) == AGP_I830_GCC1_GMASIZE_64)
return 64 * 1024 * 1024;
else
return 128 * 1024 * 1024;
}
} }
static int static int
agp_i810_set_aperture(struct agp_softc *sc, u_int32_t aperture) agp_i810_set_aperture(struct agp_softc *sc, u_int32_t aperture)
{ {
pcireg_t reg, miscc; struct agp_i810_softc *isc = sc->as_chipc;
pcireg_t reg;
/* if (isc->chiptype == CHIP_I810) {
* Double check for sanity. u_int16_t miscc;
*/
if (aperture != 32 * 1024 * 1024 && aperture != 64 * 1024 * 1024) { /*
printf("%s: bad aperture size %d\n", sc->as_dev.dv_xname, * Double check for sanity.
aperture); */
return EINVAL; 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 = (u_int16_t)(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 |= ((pcireg_t)miscc) << 16;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_I810_SMRAM, reg);
} else { /* I830 */
u_int16_t gcc1;
if (aperture != (64 * 1024 * 1024) &&
aperture != (128 * 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_I830_GCC0);
gcc1 = (u_int16_t)(reg >> 16);
gcc1 &= ~AGP_I830_GCC1_GMASIZE;
if (aperture == 64 * 1024 * 1024)
gcc1 |= AGP_I830_GCC1_GMASIZE_64;
else
gcc1 |= AGP_I830_GCC1_GMASIZE_128;
reg &= 0x0000ffff;
reg |= ((pcireg_t)gcc1) << 16;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_I830_GCC0, reg);
} }
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; return 0;
} }
@ -253,8 +376,24 @@ agp_i810_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
{ {
struct agp_i810_softc *isc = sc->as_chipc; struct agp_i810_softc *isc = sc->as_chipc;
if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT)) if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT)) {
#ifdef DEBUG
printf("%s: failed: offset 0x%08x, shift %d, entries %d\n",
sc->as_dev.dv_xname, (int)offset, AGP_PAGE_SHIFT,
isc->gatt->ag_entries);
#endif
return EINVAL; return EINVAL;
}
if (isc->chiptype == CHIP_I810) {
if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
#ifdef DEBUG
printf("%s: trying to bind into stolen memory",
sc->as_dev.dv_xname);
#endif
return EINVAL;
}
}
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4, WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4,
physical | 1); physical | 1);
@ -269,6 +408,16 @@ agp_i810_unbind_page(struct agp_softc *sc, off_t offset)
if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT)) if (offset < 0 || offset >= (isc->gatt->ag_entries << AGP_PAGE_SHIFT))
return EINVAL; return EINVAL;
if (isc->chiptype == CHIP_I830 ) {
if ((offset >> AGP_PAGE_SHIFT) < isc->stolen) {
#ifdef DEBUG
printf("%s: trying to unbind from stolen memory",
sc->as_dev.dv_xname);
#endif
return EINVAL;
}
}
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4, 0); WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4, 0);
return 0; return 0;
} }
@ -304,6 +453,8 @@ agp_i810_alloc_memory(struct agp_softc *sc, int type, vsize_t size)
/* /*
* Mapping local DRAM into GATT. * Mapping local DRAM into GATT.
*/ */
if (isc->chiptype == CHIP_I830 )
return 0;
if (size != isc->dcache_size) if (size != isc->dcache_size)
return 0; return 0;
} else if (type == 2) { } else if (type == 2) {
@ -404,6 +555,9 @@ agp_i810_bind_memory(struct agp_softc *sc, struct agp_memory *mem,
if (mem->am_type != 1) if (mem->am_type != 1)
return agp_generic_bind_memory(sc, mem, offset); return agp_generic_bind_memory(sc, mem, offset);
if (isc->chiptype == CHIP_I830)
return EINVAL;
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) { for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) {
WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4, WRITE4(AGP_I810_GTT + (u_int32_t)(offset >> AGP_PAGE_SHIFT) * 4,
i | 3); i | 3);
@ -430,6 +584,9 @@ agp_i810_unbind_memory(struct agp_softc *sc, struct agp_memory *mem)
if (mem->am_type != 1) if (mem->am_type != 1)
return agp_generic_unbind_memory(sc, mem); return agp_generic_unbind_memory(sc, mem);
if (isc->chiptype == CHIP_I830)
return EINVAL;
for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE) for (i = 0; i < mem->am_size; i += AGP_PAGE_SIZE)
WRITE4(AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, 0); WRITE4(AGP_I810_GTT + (i >> AGP_PAGE_SHIFT) * 4, 0);
mem->am_is_bound = 0; mem->am_is_bound = 0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: agpreg.h,v 1.1 2001/09/10 10:01:02 fvdl Exp $ */ /* $NetBSD: agpreg.h,v 1.2 2002/12/13 11:32:51 scw Exp $ */
/*- /*-
* Copyright (c) 2000 Doug Rabson * Copyright (c) 2000 Doug Rabson
@ -153,4 +153,20 @@
#define AGP_I810_DRT_POPULATED 0x01 #define AGP_I810_DRT_POPULATED 0x01
#define AGP_I810_GTT 0x10000 #define AGP_I810_GTT 0x10000
/*
* Config registers for i830MG device 0
*/
#define AGP_I830_GCC0 0x50
#define AGP_I830_GCC1 0x52
#define AGP_I830_GCC1_DEV2 0x08
#define AGP_I830_GCC1_DEV2_ENABLED 0x00
#define AGP_I830_GCC1_DEV2_DISABLED 0x08
#define AGP_I830_GCC1_GMS 0x70
#define AGP_I830_GCC1_GMS_STOLEN_512 0x20
#define AGP_I830_GCC1_GMS_STOLEN_1024 0x30
#define AGP_I830_GCC1_GMS_STOLEN_8192 0x40
#define AGP_I830_GCC1_GMASIZE 0x01
#define AGP_I830_GCC1_GMASIZE_64 0x01
#define AGP_I830_GCC1_GMASIZE_128 0x00
#endif /* !_PCI_AGPREG_H_ */ #endif /* !_PCI_AGPREG_H_ */