D | i915_drv.h | 1314 * Return true if revision is in range [since,until] inclusive. 1316 * Use 0 for open-ended since, and REVID_FOREVER for open-ended until. 1318 #define IS_REVID(p, since, until) \ argument 1319 (INTEL_REVID(p) >= (since) && INTEL_REVID(p) <= (until)) 1494 #define IS_SKL_REVID(p, since, until) (IS_SKYLAKE(p) && IS_REVID(p, since, until)) argument 1502 #define IS_BXT_REVID(dev_priv, since, until) \ argument 1503 (IS_BROXTON(dev_priv) && IS_REVID(dev_priv, since, until)) 1525 #define IS_KBL_GT_REVID(dev_priv, since, until) \ argument 1527 kbl_revids[INTEL_REVID(dev_priv)].gt_stepping >= since && \ 1529 #define IS_KBL_DISP_REVID(dev_priv, since, until) \ argument [all …]
|