Commit 9021f284 authored by Daniel Vetter's avatar Daniel Vetter

drm/i915: the intel gtt is _not_ an agp bridge!

So don't call it like that.

Also rip out a confusing comment and instead explain what's really
going on.
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-Off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 644ec02b
...@@ -1957,7 +1957,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags) ...@@ -1957,7 +1957,7 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
{ {
struct drm_i915_private *dev_priv; struct drm_i915_private *dev_priv;
int ret = 0, mmio_bar; int ret = 0, mmio_bar;
uint32_t agp_size; uint32_t aperture_size;
/* i915 has 4 more counters */ /* i915 has 4 more counters */
dev->counters += 4; dev->counters += 4;
...@@ -2011,16 +2011,16 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags) ...@@ -2011,16 +2011,16 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags)
goto out_rmmap; goto out_rmmap;
} }
agp_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT; aperture_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
dev_priv->mm.gtt_mapping = dev_priv->mm.gtt_mapping =
io_mapping_create_wc(dev->agp->base, agp_size); io_mapping_create_wc(dev->agp->base, aperture_size);
if (dev_priv->mm.gtt_mapping == NULL) { if (dev_priv->mm.gtt_mapping == NULL) {
ret = -EIO; ret = -EIO;
goto out_rmmap; goto out_rmmap;
} }
i915_mtrr_setup(dev_priv, dev->agp->base, agp_size); i915_mtrr_setup(dev_priv, dev->agp->base, aperture_size);
/* The i915 workqueue is primarily used for batched retirement of /* The i915 workqueue is primarily used for batched retirement of
* requests (and thus managing bo) once the task has been completed * requests (and thus managing bo) once the task has been completed
...@@ -2272,7 +2272,7 @@ int i915_driver_open(struct drm_device *dev, struct drm_file *file) ...@@ -2272,7 +2272,7 @@ int i915_driver_open(struct drm_device *dev, struct drm_file *file)
* mode setting case, we want to restore the kernel's initial mode (just * mode setting case, we want to restore the kernel's initial mode (just
* in case the last client left us in a bad state). * in case the last client left us in a bad state).
* *
* Additionally, in the non-mode setting case, we'll tear down the AGP * Additionally, in the non-mode setting case, we'll tear down the GTT
* and DMA structures, since the kernel won't be using them, and clea * and DMA structures, since the kernel won't be using them, and clea
* up any GEM state. * up any GEM state.
*/ */
...@@ -2350,16 +2350,10 @@ struct drm_ioctl_desc i915_ioctls[] = { ...@@ -2350,16 +2350,10 @@ struct drm_ioctl_desc i915_ioctls[] = {
int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls); int i915_max_ioctl = DRM_ARRAY_SIZE(i915_ioctls);
/** /*
* Determine if the device really is AGP or not. * This is really ugly: Because old userspace abused the linux agp interface to
* * manage the gtt, we need to claim that all intel devices are agp. For
* All Intel graphics chipsets are treated as AGP, even if they are really * otherwise the drm core refuses to initialize the agp support code.
* PCI-e.
*
* \param dev The device to be tested.
*
* \returns
* A value of 1 is always retured to indictate every i9x5 is AGP.
*/ */
int i915_driver_device_is_agp(struct drm_device * dev) int i915_driver_device_is_agp(struct drm_device * dev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment