Home
last modified time | relevance | path

Searched refs:rp_state_cap (Results 1 – 12 of 12) sorted by relevance

/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/i915/gt/
H A Ddebugfs_gt_pm.c302 u32 rp_state_cap; in frequency_show() local
313 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in frequency_show()
316 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in frequency_show()
437 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 0 : in frequency_show()
438 rp_state_cap >> 16) & 0xff; in frequency_show()
444 max_freq = (rp_state_cap & 0xff00) >> 8; in frequency_show()
450 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 16 : in frequency_show()
451 rp_state_cap >> 0) & 0xff; in frequency_show()
H A Dintel_rps.c984 u32 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in gen6_rps_init() local
986 rps->rp0_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
987 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
988 rps->min_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
990 u32 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in gen6_rps_init() local
992 rps->rp0_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
993 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
994 rps->min_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/i915/gt/
H A Ddebugfs_gt_pm.c302 u32 rp_state_cap; in frequency_show() local
313 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in frequency_show()
316 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in frequency_show()
437 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 0 : in frequency_show()
438 rp_state_cap >> 16) & 0xff; in frequency_show()
444 max_freq = (rp_state_cap & 0xff00) >> 8; in frequency_show()
450 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 16 : in frequency_show()
451 rp_state_cap >> 0) & 0xff; in frequency_show()
H A Dintel_rps.c984 u32 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in gen6_rps_init() local
986 rps->rp0_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
987 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
988 rps->min_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
990 u32 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in gen6_rps_init() local
992 rps->rp0_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
993 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
994 rps->min_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/i915/gt/
H A Ddebugfs_gt_pm.c302 u32 rp_state_cap; in frequency_show() local
313 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in frequency_show()
316 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in frequency_show()
437 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 0 : in frequency_show()
438 rp_state_cap >> 16) & 0xff; in frequency_show()
444 max_freq = (rp_state_cap & 0xff00) >> 8; in frequency_show()
450 max_freq = (IS_GEN9_LP(i915) ? rp_state_cap >> 16 : in frequency_show()
451 rp_state_cap >> 0) & 0xff; in frequency_show()
H A Dintel_rps.c984 u32 rp_state_cap = intel_uncore_read(uncore, BXT_RP_STATE_CAP); in gen6_rps_init() local
986 rps->rp0_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
987 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
988 rps->min_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
990 u32 rp_state_cap = intel_uncore_read(uncore, GEN6_RP_STATE_CAP); in gen6_rps_init() local
992 rps->rp0_freq = (rp_state_cap >> 0) & 0xff; in gen6_rps_init()
993 rps->rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_rps_init()
994 rps->min_freq = (rp_state_cap >> 16) & 0xff; in gen6_rps_init()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/i915/
H A Di915_debugfs.c403 u32 rp_state_cap; in i915_frequency_info() local
413 rp_state_cap = intel_uncore_read(&dev_priv->uncore, BXT_RP_STATE_CAP); in i915_frequency_info()
416 rp_state_cap = intel_uncore_read(&dev_priv->uncore, GEN6_RP_STATE_CAP); in i915_frequency_info()
527 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 : in i915_frequency_info()
528 rp_state_cap >> 16) & 0xff; in i915_frequency_info()
534 max_freq = (rp_state_cap & 0xff00) >> 8; in i915_frequency_info()
540 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 : in i915_frequency_info()
541 rp_state_cap >> 0) & 0xff; in i915_frequency_info()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/i915/
H A Di915_debugfs.c403 u32 rp_state_cap; in i915_frequency_info() local
413 rp_state_cap = intel_uncore_read(&dev_priv->uncore, BXT_RP_STATE_CAP); in i915_frequency_info()
416 rp_state_cap = intel_uncore_read(&dev_priv->uncore, GEN6_RP_STATE_CAP); in i915_frequency_info()
527 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 : in i915_frequency_info()
528 rp_state_cap >> 16) & 0xff; in i915_frequency_info()
534 max_freq = (rp_state_cap & 0xff00) >> 8; in i915_frequency_info()
540 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 : in i915_frequency_info()
541 rp_state_cap >> 0) & 0xff; in i915_frequency_info()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/i915/
H A Di915_debugfs.c403 u32 rp_state_cap; in i915_frequency_info() local
413 rp_state_cap = intel_uncore_read(&dev_priv->uncore, BXT_RP_STATE_CAP); in i915_frequency_info()
416 rp_state_cap = intel_uncore_read(&dev_priv->uncore, GEN6_RP_STATE_CAP); in i915_frequency_info()
527 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 : in i915_frequency_info()
528 rp_state_cap >> 16) & 0xff; in i915_frequency_info()
534 max_freq = (rp_state_cap & 0xff00) >> 8; in i915_frequency_info()
540 max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 : in i915_frequency_info()
541 rp_state_cap >> 0) & 0xff; in i915_frequency_info()
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_sysfs.c448 u32 val, rp_state_cap; in gt_rp_mhz_show() local
455 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); in gt_rp_mhz_show()
460 val = ((rp_state_cap & 0x0000ff) >> 0) * GT_FREQUENCY_MULTIPLIER; in gt_rp_mhz_show()
462 val = ((rp_state_cap & 0x00ff00) >> 8) * GT_FREQUENCY_MULTIPLIER; in gt_rp_mhz_show()
464 val = ((rp_state_cap & 0xff0000) >> 16) * GT_FREQUENCY_MULTIPLIER; in gt_rp_mhz_show()
H A Di915_debugfs.c993 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); in i915_cur_delayinfo() local
1053 max_freq = (rp_state_cap & 0xff0000) >> 16; in i915_cur_delayinfo()
1057 max_freq = (rp_state_cap & 0xff00) >> 8; in i915_cur_delayinfo()
1061 max_freq = rp_state_cap & 0xff; in i915_cur_delayinfo()
3506 u32 rp_state_cap, hw_max, hw_min; in i915_max_freq_set() local
3531 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); in i915_max_freq_set()
3533 hw_min = (rp_state_cap >> 16) & 0xff; in i915_max_freq_set()
3587 u32 rp_state_cap, hw_max, hw_min; in i915_min_freq_set() local
3612 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); in i915_min_freq_set()
3614 hw_min = (rp_state_cap >> 16) & 0xff; in i915_min_freq_set()
H A Dintel_pm.c3389 u32 rp_state_cap; in gen6_enable_rps() local
3413 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); in gen6_enable_rps()
3419 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff; in gen6_enable_rps()
3420 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff; in gen6_enable_rps()
3421 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff; in gen6_enable_rps()