Commit 5ec15f83 authored by Lucas De Marchi's avatar Lucas De Marchi Committed by Rodrigo Vivi

drm/xe: Remove dependency on intel_mchbar_regs.h

The only thing really needed is the base offset, MCHBAR_MIRROR_BASE_SNB.
Remove the include and just define it inplace.
Signed-off-by: default avatarLucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
parent e12ef392
...@@ -21,9 +21,9 @@ ...@@ -21,9 +21,9 @@
#include "xe_mmio.h" #include "xe_mmio.h"
#include "xe_pcode.h" #include "xe_pcode.h"
#include "intel_mchbar_regs.h" #define MCHBAR_MIRROR_BASE_SNB 0x140000
/* For GEN6_RP_STATE_CAP.reg to be merged when the definition moves to Xe */ #define GEN6_RP_STATE_CAP _MMIO(MCHBAR_MIRROR_BASE_SNB + 0x5998)
#define RP0_MASK REG_GENMASK(7, 0) #define RP0_MASK REG_GENMASK(7, 0)
#define RP1_MASK REG_GENMASK(15, 8) #define RP1_MASK REG_GENMASK(15, 8)
#define RPN_MASK REG_GENMASK(23, 16) #define RPN_MASK REG_GENMASK(23, 16)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment