drm/i915/skl: Add Gen9 LRC size
The LRC increased in size on gen9. Make sure we return the right size in get_lr_context_size() v2. Corrected the size, should be 22 pages. I unintentionally mailed out a test patch w/ size equaling 23 pages. Reviewed-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Michael H. Nguyen <michael.h.nguyen@intel.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
88e0470340
commit
468c6816b5
|
@ -136,6 +136,7 @@
|
|||
#include <drm/i915_drm.h>
|
||||
#include "i915_drv.h"
|
||||
|
||||
#define GEN9_LR_CONTEXT_RENDER_SIZE (22 * PAGE_SIZE)
|
||||
#define GEN8_LR_CONTEXT_RENDER_SIZE (20 * PAGE_SIZE)
|
||||
#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
|
||||
|
||||
|
@ -1671,11 +1672,14 @@ static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
|
|||
{
|
||||
int ret = 0;
|
||||
|
||||
WARN_ON(INTEL_INFO(ring->dev)->gen != 8);
|
||||
WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
|
||||
|
||||
switch (ring->id) {
|
||||
case RCS:
|
||||
ret = GEN8_LR_CONTEXT_RENDER_SIZE;
|
||||
if (INTEL_INFO(ring->dev)->gen >= 9)
|
||||
ret = GEN9_LR_CONTEXT_RENDER_SIZE;
|
||||
else
|
||||
ret = GEN8_LR_CONTEXT_RENDER_SIZE;
|
||||
break;
|
||||
case VCS:
|
||||
case BCS:
|
||||
|
|
Loading…
Reference in New Issue