aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2009-01-20 22:10:54 -0500
committerDave Airlie <airlied@redhat.com>2009-01-22 07:29:03 -0500
commit2906f0258770d3a9c4e65364df8acc904e148bbe (patch)
treebb09cc8f27b8c495a165019f008690dcf692ce3e /drivers/gpu
parent1bb88edb7a3769992026f34fd648bb459b0469aa (diff)
drm/i915: Fix cursor physical address choice to match the 2D driver.
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/i915/i915_dma.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index 57e8eb636a77..ee64b7301f67 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -944,11 +944,14 @@ static int i915_load_modeset_init(struct drm_device *dev)
944 dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) & 944 dev->mode_config.fb_base = drm_get_resource_start(dev, fb_bar) &
945 0xff000000; 945 0xff000000;
946 946
947 if (IS_MOBILE(dev) || (IS_I9XX(dev) && !IS_I965G(dev) && !IS_G33(dev))) 947 if (IS_MOBILE(dev) || IS_I9XX(dev))
948 dev_priv->cursor_needs_physical = true; 948 dev_priv->cursor_needs_physical = true;
949 else 949 else
950 dev_priv->cursor_needs_physical = false; 950 dev_priv->cursor_needs_physical = false;
951 951
952 if (IS_I965G(dev) || IS_G33(dev))
953 dev_priv->cursor_needs_physical = false;
954
952 ret = i915_probe_agp(dev, &agp_size, &prealloc_size); 955 ret = i915_probe_agp(dev, &agp_size, &prealloc_size);
953 if (ret) 956 if (ret)
954 goto kfree_devname; 957 goto kfree_devname;