diff options
author | Dave Airlie <airlied@redhat.com> | 2009-06-18 20:29:20 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-06-18 20:29:20 -0400 |
commit | 95934f939c46ea2b37f3c91a4f8c82e003727761 (patch) | |
tree | 655f730bc8d836d9820972a10a12a43c11d06e95 /drivers/gpu/drm | |
parent | fc436d9d3720b382566e03bef2d7391a58714999 (diff) |
drm/i915: enable GEM on PAE.
In theory now that the AGP subsystem is using struct page, we should
have on problems enabling GEM on PAE systems.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/i915/i915_dma.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c index 9b28c55c54fa..f112c769d533 100644 --- a/drivers/gpu/drm/i915/i915_dma.c +++ b/drivers/gpu/drm/i915/i915_dma.c | |||
@@ -1146,13 +1146,8 @@ int i915_driver_load(struct drm_device *dev, unsigned long flags) | |||
1146 | "performance may suffer.\n"); | 1146 | "performance may suffer.\n"); |
1147 | } | 1147 | } |
1148 | 1148 | ||
1149 | #ifdef CONFIG_HIGHMEM64G | ||
1150 | /* don't enable GEM on PAE - needs agp + set_memory_* interface fixes */ | ||
1151 | dev_priv->has_gem = 0; | ||
1152 | #else | ||
1153 | /* enable GEM by default */ | 1149 | /* enable GEM by default */ |
1154 | dev_priv->has_gem = 1; | 1150 | dev_priv->has_gem = 1; |
1155 | #endif | ||
1156 | 1151 | ||
1157 | dev->driver->get_vblank_counter = i915_get_vblank_counter; | 1152 | dev->driver->get_vblank_counter = i915_get_vblank_counter; |
1158 | dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */ | 1153 | dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */ |