Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7907f45b authored by Ben Widawsky's avatar Ben Widawsky Committed by Daniel Vetter
Browse files

Revert "drm/i915/bdw: Limit GTT to 2GB"



This reverts commit 3a2ffb65.

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: default avatarImre Deak <imre.deak@intel.com>
Signed-off-by: default avatarBen Widawsky <ben@bwidawsk.net>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 7ad47cf2
Loading
Loading
Loading
Loading
+0 −5
Original line number Original line Diff line number Diff line
@@ -1725,11 +1725,6 @@ static inline unsigned int gen8_get_total_gtt_size(u16 bdw_gmch_ctl)
	bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
	bdw_gmch_ctl &= BDW_GMCH_GGMS_MASK;
	if (bdw_gmch_ctl)
	if (bdw_gmch_ctl)
		bdw_gmch_ctl = 1 << 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;
	return bdw_gmch_ctl << 20;
}
}