We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da5d2ca commit 613716bCopy full SHA for 613716b
drivers/gpu/drm/i915/i915_drv.h
@@ -1686,6 +1686,11 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
1686
#define IS_ICL_REVID(p, since, until) \
1687
(IS_ICELAKE(p) && IS_REVID(p, since, until))
1688
1689
+#define TGL_REVID_A0 0x0
1690
+
1691
+#define IS_TGL_REVID(p, since, until) \
1692
+ (IS_TIGERLAKE(p) && IS_REVID(p, since, until))
1693
1694
#define IS_LP(dev_priv) (INTEL_INFO(dev_priv)->is_lp)
1695
#define IS_GEN9_LP(dev_priv) (IS_GEN(dev_priv, 9) && IS_LP(dev_priv))
1696
#define IS_GEN9_BC(dev_priv) (IS_GEN(dev_priv, 9) && !IS_LP(dev_priv))
0 commit comments