projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ad47cf
)
Revert "drm/i915/bdw: Limit GTT to 2GB"
author
Ben Widawsky
<
[email protected]
>
Thu, 20 Feb 2014 06:05:46 +0000
(22:05 -0800)
committer
Daniel Vetter
<
[email protected]
>
Wed, 5 Mar 2014 20:29:57 +0000
(21:29 +0100)
This reverts commit
3a2ffb65eec6dbda2fd8151894f51c18b42c8d41
.
Now that the code is fixed to use smaller allocations, it should be safe
to let the full GGTT be used on BDW.
The testcase for this is anything which uses more than half of the GTT,
thus eclipsing the old limit.
Reviewed-by: Imre Deak <
[email protected]
>
Signed-off-by: Ben Widawsky <
[email protected]
>
Signed-off-by: Daniel Vetter <
[email protected]
>
drivers/gpu/drm/i915/i915_gem_gtt.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_gem_gtt.c
b/drivers/gpu/drm/i915/i915_gem_gtt.c
index 862ae371697a6ea1746c0c5abc2b1f13a8d1b90d..faa0319b8e46524688da8dcc62b0bb64fc8532bf 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_gem_gtt.c
+++ b/
drivers/gpu/drm/i915/i915_gem_gtt.c
@@
-1725,11
+1725,6
@@
static inline unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
if (bdw_gmch_ctl)
bdw_gmch_ctl = 1 << bdw_gmch_ctl;
- if (bdw_gmch_ctl > 4) {
- WARN_ON(!i915.preliminary_hw_support);
- return 4<<20;
- }
-
return bdw_gmch_ctl << 20;
}