Lines Matching full:since
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
1531 kbl_revids[INTEL_REVID(dev_priv)].disp_stepping >= since && \
1539 #define IS_GLK_REVID(dev_priv, since, until) \ argument
1540 (IS_GEMINILAKE(dev_priv) && IS_REVID(dev_priv, since, until))
1546 #define IS_CNL_REVID(p, since, until) \ argument
1547 (IS_CANNONLAKE(p) && IS_REVID(p, since, until))
1555 #define IS_ICL_REVID(p, since, until) \ argument
1556 (IS_ICELAKE(p) && IS_REVID(p, since, until))
1560 #define IS_EHL_REVID(p, since, until) \ argument
1561 (IS_ELKHARTLAKE(p) && IS_REVID(p, since, until))
1583 #define IS_TGL_DISP_REVID(p, since, until) \ argument
1585 tgl_revids_get(p)->disp_stepping >= (since) && \
1588 #define IS_TGL_UY_GT_REVID(p, since, until) \ argument
1590 tgl_uy_revids->gt_stepping >= (since) && \
1593 #define IS_TGL_GT_REVID(p, since, until) \ argument
1596 tgl_revids->gt_stepping >= (since) && \
1603 #define IS_RKL_REVID(p, since, until) \ argument
1604 (IS_ROCKETLAKE(p) && IS_REVID(p, since, until))
1609 #define IS_DG1_REVID(p, since, until) \ argument
1610 (IS_DG1(p) && IS_REVID(p, since, until))