Lines Matching full:until
20 #define IS_GFX_GT_IP_RANGE(gt, from, until) ( \ argument
22 BUILD_BUG_ON_ZERO((until) < (from)) + \
25 GRAPHICS_VER_FULL((gt)->i915) <= (until)))
34 #define IS_MEDIA_GT_IP_RANGE(gt, from, until) ( \ argument
36 BUILD_BUG_ON_ZERO((until) < (from)) + \
39 MEDIA_VER_FULL((gt)->i915) <= (until)))
43 * a stepping in the range [from, until). The lower stepping bound is
47 * ("until") at which a hardware fix is present and the software workaround is
53 * "STEP_FOREVER" can be passed as "until" for workarounds that have no upper
56 #define IS_GFX_GT_IP_STEP(gt, ipver, from, until) ( \ argument
57 BUILD_BUG_ON_ZERO((until) <= (from)) + \
59 IS_GRAPHICS_STEP((gt)->i915, (from), (until))))
63 * a stepping in the range [from, until). The lower stepping bound is
67 * ("until") at which a hardware fix is present and the software workaround is
68 * no longer necessary. "STEP_FOREVER" can be passed as "until" for
74 #define IS_MEDIA_GT_IP_STEP(gt, ipver, from, until) ( \ argument
75 BUILD_BUG_ON_ZERO((until) <= (from)) + \
77 IS_MEDIA_STEP((gt)->i915, (from), (until))))