#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: agp_ali.c,v 1.18 2026/06/21 17:09:44 andvar Exp $");
#include <sys/param.h>
#include <sys/agpio.h>
#include <sys/bus.h>
#include <sys/conf.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <dev/pci/agpreg.h>
#include <dev/pci/agpvar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
struct agp_ali_softc {
u_int32_t initial_aperture;
struct agp_gatt *gatt;
};
static u_int32_t agp_ali_get_aperture(struct agp_softc *);
static int agp_ali_set_aperture(struct agp_softc *sc, u_int32_t);
static int agp_ali_bind_page(struct agp_softc *, off_t, bus_addr_t);
static int agp_ali_unbind_page(struct agp_softc *, off_t);
static void agp_ali_flush_tlb(struct agp_softc *);
static struct agp_methods agp_ali_methods = {
agp_ali_get_aperture,
agp_ali_set_aperture,
agp_ali_bind_page,
agp_ali_unbind_page,
agp_ali_flush_tlb,
agp_generic_enable,
agp_generic_alloc_memory,
agp_generic_free_memory,
agp_generic_bind_memory,
agp_generic_unbind_memory,
};
int
agp_ali_attach(device_t parent, device_t self, void *aux)
{
struct agp_softc *sc = device_private(self);
struct agp_ali_softc *asc;
struct pci_attach_args *pa = aux;
struct agp_gatt *gatt;
pcireg_t reg;
asc = malloc(sizeof *asc, M_AGP, M_WAITOK);
sc->as_chipc = asc;
sc->as_methods = &agp_ali_methods;
if (agp_map_aperture(pa, sc, AGP_APBASE) != 0) {
aprint_error(": failed to map aperture\n");
free(asc, M_AGP);
return ENXIO;
}
pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_AGP, &sc->as_capoff,
NULL);
asc->initial_aperture = agp_ali_get_aperture(sc);
for (;;) {
gatt = agp_alloc_gatt(sc);
if (gatt != NULL)
break;
if (AGP_SET_APERTURE(sc, AGP_GET_APERTURE(sc) / 2)) {
agp_generic_detach(sc);
aprint_error(": failed to set aperture\n");
return ENOMEM;
}
}
asc->gatt = gatt;
reg = pci_conf_read(pa->pa_pc, pa->pa_tag, AGP_ALI_ATTBASE);
reg = (reg & 0xfff) | (gatt->ag_physical & ~0xfff);
pci_conf_write(pa->pa_pc, pa->pa_tag, AGP_ALI_ATTBASE, reg);
reg = pci_conf_read(pa->pa_pc, pa->pa_tag, AGP_ALI_TLBCTRL);
reg = (reg & ~0xff) | 0x10;
pci_conf_write(pa->pa_pc, pa->pa_tag, AGP_ALI_TLBCTRL, reg);
return 0;
}
#if 0
static int
agp_ali_detach(struct agp_softc *sc)
{
int error;
pcireg_t reg;
struct agp_ali_softc *asc = sc->as_chipc;
error = agp_generic_detach(sc);
if (error)
return error;
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_ALI_TLBCTRL);
reg &= ~0xff;
reg |= 0x90;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_ALI_TLBCTRL, reg);
AGP_SET_APERTURE(sc, asc->initial_aperture);
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_ALI_ATTBASE);
reg &= 0xf;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_ALI_ATTBASE, reg);
agp_free_gatt(sc, asc->gatt);
return 0;
}
#endif
#define M 1024*1024
static const u_int32_t agp_ali_table[] = {
0,
1,
2,
4*M,
8*M,
0,
16*M,
32*M,
64*M,
128*M,
256*M,
};
#define agp_ali_table_size (sizeof(agp_ali_table) / sizeof(agp_ali_table[0]))
static u_int32_t
agp_ali_get_aperture(struct agp_softc *sc)
{
int i;
i = (int)pci_conf_read(sc->as_pc, sc->as_tag, AGP_ALI_ATTBASE) & 0xf;
if (i >= agp_ali_table_size)
return 0;
return agp_ali_table[i];
}
static int
agp_ali_set_aperture(struct agp_softc *sc, u_int32_t aperture)
{
int i;
pcireg_t reg;
if (aperture & (aperture - 1) || aperture < 1*M)
return EINVAL;
for (i = 0; i < agp_ali_table_size; i++)
if (agp_ali_table[i] == aperture)
break;
if (i == agp_ali_table_size)
return EINVAL;
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_ALI_ATTBASE);
reg &= ~0xf;
reg |= i;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_ALI_ATTBASE, reg);
return 0;
}
static int
agp_ali_bind_page(struct agp_softc *sc, off_t offset, bus_addr_t physical)
{
struct agp_ali_softc *asc = sc->as_chipc;
if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
return EINVAL;
asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical;
return 0;
}
static int
agp_ali_unbind_page(struct agp_softc *sc, off_t offset)
{
struct agp_ali_softc *asc = sc->as_chipc;
if (offset < 0 || offset >= (asc->gatt->ag_entries << AGP_PAGE_SHIFT))
return EINVAL;
asc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0;
return 0;
}
static void
agp_ali_flush_tlb(struct agp_softc *sc)
{
pcireg_t reg;
reg = pci_conf_read(sc->as_pc, sc->as_tag, AGP_ALI_TLBCTRL);
reg &= ~0xff;
reg |= 0x90;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_ALI_TLBCTRL, reg);
reg &= ~0xff;
reg |= 0x10;
pci_conf_write(sc->as_pc, sc->as_tag, AGP_ALI_TLBCTRL, reg);
}