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
1 changed files with 6 additions and 2 deletions
|
@ -136,6 +136,7 @@
|
||||||
#include <drm/i915_drm.h>
|
#include <drm/i915_drm.h>
|
||||||
#include "i915_drv.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_RENDER_SIZE (20 * PAGE_SIZE)
|
||||||
#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
|
#define GEN8_LR_CONTEXT_OTHER_SIZE (2 * PAGE_SIZE)
|
||||||
|
|
||||||
|
@ -1671,10 +1672,13 @@ static uint32_t get_lr_context_size(struct intel_engine_cs *ring)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
WARN_ON(INTEL_INFO(ring->dev)->gen != 8);
|
WARN_ON(INTEL_INFO(ring->dev)->gen < 8);
|
||||||
|
|
||||||
switch (ring->id) {
|
switch (ring->id) {
|
||||||
case RCS:
|
case RCS:
|
||||||
|
if (INTEL_INFO(ring->dev)->gen >= 9)
|
||||||
|
ret = GEN9_LR_CONTEXT_RENDER_SIZE;
|
||||||
|
else
|
||||||
ret = GEN8_LR_CONTEXT_RENDER_SIZE;
|
ret = GEN8_LR_CONTEXT_RENDER_SIZE;
|
||||||
break;
|
break;
|
||||||
case VCS:
|
case VCS:
|
||||||
|
|
Loading…
Add table
Reference in a new issue