[Intel-gfx] [PATCH 11/18] drm/i915/skl: Introduce a SKL specific init_workarounds()
Nick Hoath
nicholas.hoath at intel.com
Wed Feb 11 07:24:41 PST 2015
On 09/02/2015 19:33, Damien Lespiau wrote:
> This function will host SKL-only W/As.
>
> Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
Reviewed-by: Nick Hoath <nicholas.hoath at intel.com>
> ---
> drivers/gpu/drm/i915/intel_ringbuffer.c | 11 ++++++++++-
> 1 file changed, 10 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c
> index b15d596..27d101c 100644
> --- a/drivers/gpu/drm/i915/intel_ringbuffer.c
> +++ b/drivers/gpu/drm/i915/intel_ringbuffer.c
> @@ -928,6 +928,13 @@ static int gen9_init_workarounds(struct intel_engine_cs *ring)
> return 0;
> }
>
> +static int skl_init_workarounds(struct intel_engine_cs *ring)
> +{
> + gen9_init_workarounds(ring);
> +
> + return 0;
> +}
> +
> int init_workarounds_ring(struct intel_engine_cs *ring)
> {
> struct drm_device *dev = ring->dev;
> @@ -943,7 +950,9 @@ int init_workarounds_ring(struct intel_engine_cs *ring)
> if (IS_CHERRYVIEW(dev))
> return chv_init_workarounds(ring);
>
> - if (IS_GEN9(dev))
> + if (IS_SKYLAKE(dev))
> + return skl_init_workarounds(ring);
> + else if (IS_GEN9(dev))
> return gen9_init_workarounds(ring);
>
> return 0;
>
More information about the Intel-gfx
mailing list