Lines Matching full:until
1317 * Return true if revision is in range [since,until] inclusive.
1319 * Use 0 for open-ended since, and REVID_FOREVER for open-ended until.
1321 #define IS_REVID(p, since, until) \ argument
1322 (INTEL_REVID(p) >= (since) && INTEL_REVID(p) <= (until))
1497 #define IS_SKL_REVID(p, since, until) (IS_SKYLAKE(p) && IS_REVID(p, since, until)) argument
1505 #define IS_BXT_REVID(dev_priv, since, until) \ argument
1506 (IS_BROXTON(dev_priv) && IS_REVID(dev_priv, since, until))
1528 #define IS_KBL_GT_REVID(dev_priv, since, until) \ argument
1531 kbl_revids[INTEL_REVID(dev_priv)].gt_stepping <= until)
1532 #define IS_KBL_DISP_REVID(dev_priv, since, until) \ argument
1535 kbl_revids[INTEL_REVID(dev_priv)].disp_stepping <= until)
1542 #define IS_GLK_REVID(dev_priv, since, until) \ argument
1543 (IS_GEMINILAKE(dev_priv) && IS_REVID(dev_priv, since, until))
1549 #define IS_CNL_REVID(p, since, until) \ argument
1550 (IS_CANNONLAKE(p) && IS_REVID(p, since, until))
1558 #define IS_ICL_REVID(p, since, until) \ argument
1559 (IS_ICELAKE(p) && IS_REVID(p, since, until))
1563 #define IS_EHL_REVID(p, since, until) \ argument
1564 (IS_ELKHARTLAKE(p) && IS_REVID(p, since, until))
1586 #define IS_TGL_DISP_REVID(p, since, until) \ argument
1589 tgl_revids_get(p)->disp_stepping <= (until))
1591 #define IS_TGL_UY_GT_REVID(p, since, until) \ argument
1594 tgl_uy_revids->gt_stepping <= (until))
1596 #define IS_TGL_GT_REVID(p, since, until) \ argument
1600 tgl_revids->gt_stepping <= (until))
1606 #define IS_RKL_REVID(p, since, until) \ argument
1607 (IS_ROCKETLAKE(p) && IS_REVID(p, since, until))
1612 #define IS_DG1_REVID(p, since, until) \ argument
1613 (IS_DG1(p) && IS_REVID(p, since, until))