diff options
author | Matt Roper <matthew.d.roper@intel.com> | 2022-01-11 08:15:56 +0300 |
---|---|---|
committer | Matt Roper <matthew.d.roper@intel.com> | 2022-01-12 01:03:25 +0300 |
commit | 202b1f4c1234b34c15e51acc9c43e613f509f587 (patch) | |
tree | 39bdb744e7774d1851e99149ea736da5fc877457 /drivers/gpu/drm/i915/intel_uncore.c | |
parent | 2b25a93bf07c6b68dd9e2ee427e228cb961f7961 (diff) | |
download | linux-202b1f4c1234b34c15e51acc9c43e613f509f587.tar.xz |
drm/i915/gt: Move engine registers to their own header
Let's continue breaking up and cleaning up the massive i915_reg.h file
by moving all registers that are defined in relation to an engine base
to their own header.
There are probably a bunch of other "engine registers" that we haven't
moved yet (especially those that belong to the render engine in the
0x2??? range), but this is a relatively straightforward first step.
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220111051600.3429104-8-matthew.d.roper@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/intel_uncore.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_uncore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c index 722910d02b5f..fefaf63dfb88 100644 --- a/drivers/gpu/drm/i915/intel_uncore.c +++ b/drivers/gpu/drm/i915/intel_uncore.c @@ -23,7 +23,7 @@ #include <linux/pm_runtime.h> -#include "gt/intel_lrc_reg.h" /* for shadow reg list */ +#include "gt/intel_engine_regs.h" #include "i915_drv.h" #include "i915_iosf_mbi.h" |