2000-06-09 16:04:30 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2000 Doug Rabson
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 06:34:30 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
#include "opt_bus.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/kernel.h>
|
2004-05-30 20:00:41 +00:00
|
|
|
#include <sys/module.h>
|
2000-06-09 16:04:30 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/lock.h>
|
2001-05-19 01:28:09 +00:00
|
|
|
#include <sys/mutex.h>
|
2001-07-05 21:28:47 +00:00
|
|
|
#include <sys/proc.h>
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-11-12 21:51:38 +00:00
|
|
|
#include <dev/agp/agppriv.h>
|
|
|
|
#include <dev/agp/agpreg.h>
|
2003-08-22 07:20:27 +00:00
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcireg.h>
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
#include <vm/vm_object.h>
|
|
|
|
#include <vm/pmap.h>
|
|
|
|
|
2003-05-27 20:13:44 +00:00
|
|
|
#define MAX_APSIZE 0x3f /* 256 MB */
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
struct agp_intel_softc {
|
|
|
|
struct agp_softc agp;
|
|
|
|
u_int32_t initial_aperture; /* aperture size at startup */
|
|
|
|
struct agp_gatt *gatt;
|
2003-05-27 20:13:44 +00:00
|
|
|
u_int aperture_mask;
|
2007-01-06 08:31:31 +00:00
|
|
|
u_int32_t current_aperture; /* current aperture size */
|
2000-06-09 16:04:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char*
|
|
|
|
agp_intel_match(device_t dev)
|
|
|
|
{
|
|
|
|
if (pci_get_class(dev) != PCIC_BRIDGE
|
|
|
|
|| pci_get_subclass(dev) != PCIS_BRIDGE_HOST)
|
2007-01-05 20:06:40 +00:00
|
|
|
return (NULL);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
if (agp_find_caps(dev) == 0)
|
2007-01-05 20:06:40 +00:00
|
|
|
return (NULL);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
switch (pci_get_devid(dev)) {
|
|
|
|
/* Intel -- vendor 0x8086 */
|
|
|
|
case 0x71808086:
|
|
|
|
return ("Intel 82443LX (440 LX) host to PCI bridge");
|
|
|
|
case 0x71908086:
|
|
|
|
return ("Intel 82443BX (440 BX) host to PCI bridge");
|
|
|
|
case 0x71a08086:
|
|
|
|
return ("Intel 82443GX host to PCI bridge");
|
|
|
|
case 0x71a18086:
|
|
|
|
return ("Intel 82443GX host to AGP bridge");
|
2000-10-20 16:05:47 +00:00
|
|
|
case 0x11308086:
|
|
|
|
return ("Intel 82815 (i815 GMCH) host to PCI bridge");
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x25008086:
|
2003-01-11 20:08:28 +00:00
|
|
|
case 0x25018086:
|
2001-11-08 16:03:23 +00:00
|
|
|
return ("Intel 82820 host to AGP bridge");
|
2002-02-05 23:13:25 +00:00
|
|
|
case 0x35758086:
|
|
|
|
return ("Intel 82830 host to AGP bridge");
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x1a218086:
|
|
|
|
return ("Intel 82840 host to AGP bridge");
|
|
|
|
case 0x1a308086:
|
|
|
|
return ("Intel 82845 host to AGP bridge");
|
|
|
|
case 0x25308086:
|
|
|
|
return ("Intel 82850 host to AGP bridge");
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x33408086:
|
|
|
|
return ("Intel 82855 host to AGP bridge");
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x25318086:
|
|
|
|
return ("Intel 82860 host to AGP bridge");
|
2003-05-27 18:23:56 +00:00
|
|
|
case 0x25708086:
|
|
|
|
return ("Intel 82865 host to AGP bridge");
|
2004-08-22 03:55:04 +00:00
|
|
|
case 0x255d8086:
|
|
|
|
return ("Intel E7205 host to AGP bridge");
|
2006-02-17 01:40:46 +00:00
|
|
|
case 0x25508086:
|
|
|
|
return ("Intel E7505 host to AGP bridge");
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x25788086:
|
|
|
|
return ("Intel 82875P host to AGP bridge");
|
2005-11-29 04:53:22 +00:00
|
|
|
case 0x25608086:
|
2004-03-13 16:06:32 +00:00
|
|
|
return ("Intel 82845G host to AGP bridge");
|
2005-11-29 04:53:22 +00:00
|
|
|
case 0x35808086:
|
|
|
|
return ("Intel 82855GM host to AGP bridge");
|
2000-06-09 16:04:30 +00:00
|
|
|
};
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
return (NULL);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_intel_probe(device_t dev)
|
|
|
|
{
|
|
|
|
const char *desc;
|
|
|
|
|
2004-04-03 22:55:12 +00:00
|
|
|
if (resource_disabled("agp", device_get_unit(dev)))
|
|
|
|
return (ENXIO);
|
2000-06-09 16:04:30 +00:00
|
|
|
desc = agp_intel_match(dev);
|
|
|
|
if (desc) {
|
|
|
|
device_set_desc(dev, desc);
|
2007-01-05 20:06:40 +00:00
|
|
|
return (BUS_PROBE_DEFAULT);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
return (ENXIO);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
static void
|
|
|
|
agp_intel_commit_gatt(device_t dev)
|
2000-06-09 16:04:30 +00:00
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
|
|
|
u_int32_t type;
|
2003-05-27 19:42:18 +00:00
|
|
|
u_int32_t value;
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
type = pci_get_devid(dev);
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
/* Install the gatt. */
|
2007-01-05 20:06:40 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_ATTBASE, sc->gatt->ag_physical, 4);
|
2003-05-27 20:13:44 +00:00
|
|
|
|
2002-07-17 02:52:01 +00:00
|
|
|
/* Enable the GLTB and setup the control register. */
|
|
|
|
switch (type) {
|
|
|
|
case 0x71908086: /* 440LX/EX */
|
|
|
|
pci_write_config(dev, AGP_INTEL_AGPCTRL, 0x2080, 4);
|
|
|
|
break;
|
|
|
|
case 0x71808086: /* 440BX */
|
|
|
|
/*
|
|
|
|
* XXX: Should be 0xa080? Bit 9 is undefined, and
|
|
|
|
* bit 13 being on and bit 15 being clear is illegal.
|
|
|
|
*/
|
|
|
|
pci_write_config(dev, AGP_INTEL_AGPCTRL, 0x2280, 4);
|
|
|
|
break;
|
|
|
|
default:
|
2003-05-27 18:23:56 +00:00
|
|
|
value = pci_read_config(dev, AGP_INTEL_AGPCTRL, 4);
|
|
|
|
pci_write_config(dev, AGP_INTEL_AGPCTRL, value | 0x80, 4);
|
2002-07-17 02:52:01 +00:00
|
|
|
}
|
|
|
|
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
/* Enable aperture accesses. */
|
2001-11-08 16:03:23 +00:00
|
|
|
switch (type) {
|
|
|
|
case 0x25008086: /* i820 */
|
2003-01-11 20:08:28 +00:00
|
|
|
case 0x25018086: /* i820 */
|
2001-11-08 16:03:23 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_I820_RDCR,
|
|
|
|
(pci_read_config(dev, AGP_INTEL_I820_RDCR, 1)
|
|
|
|
| (1 << 1)), 1);
|
|
|
|
break;
|
|
|
|
case 0x1a308086: /* i845 */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
case 0x25608086: /* i845G */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x33408086: /* i855 */
|
2005-11-29 04:53:22 +00:00
|
|
|
case 0x35808086: /* i855GM */
|
2003-05-27 18:23:56 +00:00
|
|
|
case 0x25708086: /* i865 */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x25788086: /* i875P */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_I845_AGPM,
|
|
|
|
(pci_read_config(dev, AGP_INTEL_I845_AGPM, 1)
|
2001-11-08 16:03:23 +00:00
|
|
|
| (1 << 1)), 1);
|
|
|
|
break;
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
case 0x1a218086: /* i840 */
|
|
|
|
case 0x25308086: /* i850 */
|
|
|
|
case 0x25318086: /* i860 */
|
|
|
|
case 0x255d8086: /* E7205 */
|
|
|
|
case 0x25508086: /* E7505 */
|
|
|
|
pci_write_config(dev, AGP_INTEL_MCHCFG,
|
|
|
|
(pci_read_config(dev, AGP_INTEL_MCHCFG, 2)
|
|
|
|
| (1 << 9)), 2);
|
|
|
|
break;
|
2001-11-08 16:03:23 +00:00
|
|
|
default: /* Intel Generic (maybe) */
|
|
|
|
pci_write_config(dev, AGP_INTEL_NBXCFG,
|
|
|
|
(pci_read_config(dev, AGP_INTEL_NBXCFG, 4)
|
|
|
|
& ~(1 << 10)) | (1 << 9), 4);
|
|
|
|
}
|
|
|
|
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
/* Clear errors. */
|
2001-11-08 16:03:23 +00:00
|
|
|
switch (type) {
|
|
|
|
case 0x1a218086: /* i840 */
|
|
|
|
pci_write_config(dev, AGP_INTEL_I8XX_ERRSTS, 0xc000, 2);
|
|
|
|
break;
|
|
|
|
case 0x25008086: /* i820 */
|
2003-01-11 20:08:28 +00:00
|
|
|
case 0x25018086: /* i820 */
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x1a308086: /* i845 */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
case 0x25608086: /* i845G */
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x25308086: /* i850 */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x33408086: /* i855 */
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x25318086: /* i860 */
|
2003-05-27 18:23:56 +00:00
|
|
|
case 0x25708086: /* i865 */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x25788086: /* i875P */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
case 0x255d8086: /* E7205 */
|
|
|
|
case 0x25508086: /* E7505 */
|
2003-05-27 18:23:56 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_I8XX_ERRSTS, 0x00ff, 2);
|
2001-11-08 16:03:23 +00:00
|
|
|
break;
|
|
|
|
default: /* Intel Generic (maybe) */
|
|
|
|
pci_write_config(dev, AGP_INTEL_ERRSTS + 1, 7, 1);
|
|
|
|
}
|
2007-01-05 14:46:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_intel_attach(device_t dev)
|
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
2007-01-05 14:46:18 +00:00
|
|
|
struct agp_gatt *gatt;
|
|
|
|
u_int32_t value;
|
|
|
|
int error;
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2007-01-05 14:46:18 +00:00
|
|
|
error = agp_generic_attach(dev);
|
|
|
|
if (error)
|
2007-01-05 20:06:40 +00:00
|
|
|
return (error);
|
2007-01-05 14:46:18 +00:00
|
|
|
|
|
|
|
/* Determine maximum supported aperture size. */
|
|
|
|
value = pci_read_config(dev, AGP_INTEL_APSIZE, 1);
|
|
|
|
pci_write_config(dev, AGP_INTEL_APSIZE, MAX_APSIZE, 1);
|
|
|
|
sc->aperture_mask = pci_read_config(dev, AGP_INTEL_APSIZE, 1) &
|
|
|
|
MAX_APSIZE;
|
|
|
|
pci_write_config(dev, AGP_INTEL_APSIZE, value, 1);
|
2007-01-06 08:31:31 +00:00
|
|
|
sc->current_aperture = sc->initial_aperture = AGP_GET_APERTURE(dev);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-01-05 14:46:18 +00:00
|
|
|
for (;;) {
|
|
|
|
gatt = agp_alloc_gatt(dev);
|
|
|
|
if (gatt)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probably contigmalloc failure. Try reducing the
|
|
|
|
* aperture so that the gatt size reduces.
|
|
|
|
*/
|
|
|
|
if (AGP_SET_APERTURE(dev, AGP_GET_APERTURE(dev) / 2)) {
|
|
|
|
agp_generic_detach(dev);
|
2007-01-05 20:06:40 +00:00
|
|
|
return (ENOMEM);
|
2007-01-05 14:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sc->gatt = gatt;
|
2007-01-05 20:06:40 +00:00
|
|
|
|
2007-01-05 14:46:18 +00:00
|
|
|
agp_intel_commit_gatt(dev);
|
2007-01-05 20:06:40 +00:00
|
|
|
|
|
|
|
return (0);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_intel_detach(device_t dev)
|
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
u_int32_t reg;
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2007-10-30 22:09:16 +00:00
|
|
|
agp_free_cdev(dev);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
/* Disable aperture accesses. */
|
2007-01-05 20:06:40 +00:00
|
|
|
switch (pci_get_devid(dev)) {
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x25008086: /* i820 */
|
2003-01-11 20:08:28 +00:00
|
|
|
case 0x25018086: /* i820 */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
reg = pci_read_config(dev, AGP_INTEL_I820_RDCR, 1) & ~(1 << 1);
|
|
|
|
printf("%s: set RDCR to %02x\n", __func__, reg & 0xff);
|
|
|
|
pci_write_config(dev, AGP_INTEL_I820_RDCR, reg, 1);
|
|
|
|
break;
|
2001-11-08 16:03:23 +00:00
|
|
|
case 0x1a308086: /* i845 */
|
2004-03-13 16:06:32 +00:00
|
|
|
case 0x25608086: /* i845G */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x33408086: /* i855 */
|
2005-11-29 04:53:22 +00:00
|
|
|
case 0x35808086: /* i855GM */
|
2003-05-27 18:23:56 +00:00
|
|
|
case 0x25708086: /* i865 */
|
2003-06-23 11:09:45 +00:00
|
|
|
case 0x25788086: /* i875P */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
reg = pci_read_config(dev, AGP_INTEL_I845_AGPM, 1) & ~(1 << 1);
|
|
|
|
printf("%s: set AGPM to %02x\n", __func__, reg & 0xff);
|
|
|
|
pci_write_config(dev, AGP_INTEL_I845_AGPM, reg, 1);
|
|
|
|
break;
|
|
|
|
case 0x1a218086: /* i840 */
|
|
|
|
case 0x25308086: /* i850 */
|
|
|
|
case 0x25318086: /* i860 */
|
|
|
|
case 0x255d8086: /* E7205 */
|
|
|
|
case 0x25508086: /* E7505 */
|
|
|
|
reg = pci_read_config(dev, AGP_INTEL_MCHCFG, 2) & ~(1 << 9);
|
|
|
|
printf("%s: set MCHCFG to %x04\n", __func__, reg & 0xffff);
|
|
|
|
pci_write_config(dev, AGP_INTEL_MCHCFG, reg, 2);
|
|
|
|
break;
|
2001-11-08 16:03:23 +00:00
|
|
|
default: /* Intel Generic (maybe) */
|
- Clean up Aperture Access Global Enable (APEN) bit access.
- Rename confusing AGP_INTEL_I845_MCHCFG to AGP_INTEL_I845_AGPM.
- Move E7205 and E7505 from i8x5 to i8x0 family. It probably worked
because the actual offset is the same.
In fact, all three families have the bit at the exact same place. Only
differences are name and width of the registers, i.e., NBXCFG (0x50, dword),
RDCR (0x51, byte), AGPM (0x51, byte), MCHCFG (0x50, word) depending on
the family of the chipsets.
2007-01-05 22:55:19 +00:00
|
|
|
reg = pci_read_config(dev, AGP_INTEL_NBXCFG, 4) & ~(1 << 9);
|
|
|
|
printf("%s: set NBXCFG to %08x\n", __func__, reg);
|
|
|
|
pci_write_config(dev, AGP_INTEL_NBXCFG, reg, 4);
|
2001-11-08 16:03:23 +00:00
|
|
|
}
|
2000-06-09 16:04:30 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_ATTBASE, 0, 4);
|
|
|
|
AGP_SET_APERTURE(dev, sc->initial_aperture);
|
|
|
|
agp_free_gatt(sc->gatt);
|
2007-10-30 22:09:16 +00:00
|
|
|
agp_free_res(dev);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
return (0);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
static int
|
|
|
|
agp_intel_resume(device_t dev)
|
2007-01-05 14:46:18 +00:00
|
|
|
{
|
2007-01-06 08:31:31 +00:00
|
|
|
struct agp_intel_softc *sc;
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
AGP_SET_APERTURE(dev, sc->current_aperture);
|
2007-01-05 14:46:18 +00:00
|
|
|
agp_intel_commit_gatt(dev);
|
2007-01-05 20:06:40 +00:00
|
|
|
return (bus_generic_resume(dev));
|
2007-01-05 14:46:18 +00:00
|
|
|
}
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
static u_int32_t
|
|
|
|
agp_intel_get_aperture(device_t dev)
|
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
2000-06-09 16:04:30 +00:00
|
|
|
u_int32_t apsize;
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2003-05-27 20:13:44 +00:00
|
|
|
apsize = pci_read_config(dev, AGP_INTEL_APSIZE, 1) & sc->aperture_mask;
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The size is determined by the number of low bits of
|
|
|
|
* register APBASE which are forced to zero. The low 22 bits
|
|
|
|
* are always forced to zero and each zero bit in the apsize
|
|
|
|
* field just read forces the corresponding bit in the 27:22
|
|
|
|
* to be zero. We calculate the aperture size accordingly.
|
|
|
|
*/
|
2007-01-05 20:06:40 +00:00
|
|
|
return ((((apsize ^ sc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
agp_intel_set_aperture(device_t dev, u_int32_t aperture)
|
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
2000-06-09 16:04:30 +00:00
|
|
|
u_int32_t apsize;
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
/*
|
|
|
|
* Reverse the magic from get_aperture.
|
|
|
|
*/
|
2003-05-27 20:13:44 +00:00
|
|
|
apsize = ((aperture - 1) >> 22) ^ sc->aperture_mask;
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Double check for sanity.
|
|
|
|
*/
|
2003-05-27 20:13:44 +00:00
|
|
|
if ((((apsize ^ sc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1 != aperture)
|
2007-01-05 20:06:40 +00:00
|
|
|
return (EINVAL);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2007-01-06 08:31:31 +00:00
|
|
|
sc->current_aperture = apsize;
|
|
|
|
|
2000-06-09 16:04:30 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_APSIZE, apsize, 1);
|
|
|
|
|
2007-01-05 20:06:40 +00:00
|
|
|
return (0);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-03-09 13:27:33 +00:00
|
|
|
agp_intel_bind_page(device_t dev, vm_offset_t offset, vm_offset_t physical)
|
2000-06-09 16:04:30 +00:00
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2009-03-20 18:30:20 +00:00
|
|
|
if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT))
|
2007-01-05 20:06:40 +00:00
|
|
|
return (EINVAL);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
sc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical | 0x17;
|
2007-01-05 20:06:40 +00:00
|
|
|
return (0);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2009-03-09 13:27:33 +00:00
|
|
|
agp_intel_unbind_page(device_t dev, vm_offset_t offset)
|
2000-06-09 16:04:30 +00:00
|
|
|
{
|
2007-01-05 20:06:40 +00:00
|
|
|
struct agp_intel_softc *sc;
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
2009-03-20 18:30:20 +00:00
|
|
|
if (offset >= (sc->gatt->ag_entries << AGP_PAGE_SHIFT))
|
2007-01-05 20:06:40 +00:00
|
|
|
return (EINVAL);
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
sc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = 0;
|
2007-01-05 20:06:40 +00:00
|
|
|
return (0);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
agp_intel_flush_tlb(device_t dev)
|
|
|
|
{
|
2002-07-17 02:52:01 +00:00
|
|
|
u_int32_t val;
|
|
|
|
|
|
|
|
val = pci_read_config(dev, AGP_INTEL_AGPCTRL, 4);
|
2003-09-17 02:58:17 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_AGPCTRL, val & ~(1 << 7), 4);
|
2002-07-17 02:52:01 +00:00
|
|
|
pci_write_config(dev, AGP_INTEL_AGPCTRL, val, 4);
|
2000-06-09 16:04:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static device_method_t agp_intel_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, agp_intel_probe),
|
|
|
|
DEVMETHOD(device_attach, agp_intel_attach),
|
|
|
|
DEVMETHOD(device_detach, agp_intel_detach),
|
|
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
|
|
|
DEVMETHOD(device_suspend, bus_generic_suspend),
|
2007-01-05 14:46:18 +00:00
|
|
|
DEVMETHOD(device_resume, agp_intel_resume),
|
2000-06-09 16:04:30 +00:00
|
|
|
|
|
|
|
/* AGP interface */
|
|
|
|
DEVMETHOD(agp_get_aperture, agp_intel_get_aperture),
|
|
|
|
DEVMETHOD(agp_set_aperture, agp_intel_set_aperture),
|
|
|
|
DEVMETHOD(agp_bind_page, agp_intel_bind_page),
|
|
|
|
DEVMETHOD(agp_unbind_page, agp_intel_unbind_page),
|
|
|
|
DEVMETHOD(agp_flush_tlb, agp_intel_flush_tlb),
|
|
|
|
DEVMETHOD(agp_enable, agp_generic_enable),
|
|
|
|
DEVMETHOD(agp_alloc_memory, agp_generic_alloc_memory),
|
|
|
|
DEVMETHOD(agp_free_memory, agp_generic_free_memory),
|
|
|
|
DEVMETHOD(agp_bind_memory, agp_generic_bind_memory),
|
|
|
|
DEVMETHOD(agp_unbind_memory, agp_generic_unbind_memory),
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t agp_intel_driver = {
|
|
|
|
"agp",
|
|
|
|
agp_intel_methods,
|
|
|
|
sizeof(struct agp_intel_softc),
|
|
|
|
};
|
|
|
|
|
|
|
|
static devclass_t agp_devclass;
|
|
|
|
|
2005-12-20 21:12:26 +00:00
|
|
|
DRIVER_MODULE(agp_intel, hostb, agp_intel_driver, agp_devclass, 0, 0);
|
2003-04-15 06:37:30 +00:00
|
|
|
MODULE_DEPEND(agp_intel, agp, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(agp_intel, pci, 1, 1, 1);
|