Searched refs:rp_state_cap (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_debug.c808 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); local
857 max_freq = (rp_state_cap & 0xff0000) >> 16;
861 max_freq = (rp_state_cap & 0xff00) >> 8;
865 max_freq = rp_state_cap & 0xff;
H A Dintel_pm.c2530 u32 rp_state_cap; local
2555 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
2559 dev_priv->rps.max_delay = rp_state_cap & 0xff;
2560 dev_priv->rps.min_delay = (rp_state_cap & 0xff0000) >> 16;

Completed in 115 milliseconds