OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rp_state_cap
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/drm2/dist/drm/i915/gt/
debugfs_gt_pm.c
305
u32
rp_state_cap
;
local in function:frequency_show
315
rp_state_cap
= intel_uncore_read(uncore, BXT_RP_STATE_CAP);
318
rp_state_cap
= intel_uncore_read(uncore, GEN6_RP_STATE_CAP);
420
max_freq = (IS_GEN9_LP(i915) ?
rp_state_cap
>> 0 :
421
rp_state_cap
>> 16) & 0xff;
427
max_freq = (
rp_state_cap
& 0xff00) >> 8;
433
max_freq = (IS_GEN9_LP(i915) ?
rp_state_cap
>> 16 :
434
rp_state_cap
>> 0) & 0xff;
intel_rps.c
842
u32
rp_state_cap
= intel_uncore_read(uncore, BXT_RP_STATE_CAP);
local in function:gen6_rps_init
844
rps->rp0_freq = (
rp_state_cap
>> 16) & 0xff;
845
rps->rp1_freq = (
rp_state_cap
>> 8) & 0xff;
846
rps->min_freq = (
rp_state_cap
>> 0) & 0xff;
848
u32
rp_state_cap
= intel_uncore_read(uncore, GEN6_RP_STATE_CAP);
local in function:gen6_rps_init
850
rps->rp0_freq = (
rp_state_cap
>> 0) & 0xff;
851
rps->rp1_freq = (
rp_state_cap
>> 8) & 0xff;
852
rps->min_freq = (
rp_state_cap
>> 16) & 0xff;
/src/sys/external/bsd/drm2/dist/drm/i915/
i915_debugfs.c
849
u32
rp_state_cap
;
local in function:i915_frequency_info
859
rp_state_cap
= I915_READ(BXT_RP_STATE_CAP);
862
rp_state_cap
= I915_READ(GEN6_RP_STATE_CAP);
964
max_freq = (IS_GEN9_LP(dev_priv) ?
rp_state_cap
>> 0 :
965
rp_state_cap
>> 16) & 0xff;
971
max_freq = (
rp_state_cap
& 0xff00) >> 8;
977
max_freq = (IS_GEN9_LP(dev_priv) ?
rp_state_cap
>> 16 :
978
rp_state_cap
>> 0) & 0xff;
Completed in 64 milliseconds
Indexes created Wed Oct 15 16:09:53 GMT 2025