Lines Matching refs:until

1315  * Return true if revision is in range [since,until] inclusive.
1317 * Use 0 for open-ended since, and REVID_FOREVER for open-ended until.
1319 #define IS_REVID(p, since, until) \
1320 (INTEL_REVID(p) >= (since) && INTEL_REVID(p) <= (until))
1495 #define IS_SKL_REVID(p, since, until) (IS_SKYLAKE(p) && IS_REVID(p, since, until))
1503 #define IS_BXT_REVID(dev_priv, since, until) \
1504 (IS_BROXTON(dev_priv) && IS_REVID(dev_priv, since, until))
1526 #define IS_KBL_GT_REVID(dev_priv, since, until) \
1529 kbl_revids[INTEL_REVID(dev_priv)].gt_stepping <= until)
1530 #define IS_KBL_DISP_REVID(dev_priv, since, until) \
1533 kbl_revids[INTEL_REVID(dev_priv)].disp_stepping <= until)
1540 #define IS_GLK_REVID(dev_priv, since, until) \
1541 (IS_GEMINILAKE(dev_priv) && IS_REVID(dev_priv, since, until))
1547 #define IS_CNL_REVID(p, since, until) \
1548 (IS_CANNONLAKE(p) && IS_REVID(p, since, until))
1556 #define IS_ICL_REVID(p, since, until) \
1557 (IS_ICELAKE(p) && IS_REVID(p, since, until))
1561 #define IS_EHL_REVID(p, since, until) \
1562 (IS_ELKHARTLAKE(p) && IS_REVID(p, since, until))
1584 #define IS_TGL_DISP_REVID(p, since, until) \
1587 tgl_revids_get(p)->disp_stepping <= (until))
1589 #define IS_TGL_UY_GT_REVID(p, since, until) \
1592 tgl_uy_revids->gt_stepping <= (until))
1594 #define IS_TGL_GT_REVID(p, since, until) \
1598 tgl_revids->gt_stepping <= (until))
1604 #define IS_RKL_REVID(p, since, until) \
1605 (IS_ROCKETLAKE(p) && IS_REVID(p, since, until))
1610 #define IS_DG1_REVID(p, since, until) \
1611 (IS_DG1(p) && IS_REVID(p, since, until))