Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:rp_state_cap
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/
H
A
D
debugfs_gt_pm.c
301
u32
rp_state_cap
;
in frequency_show()
local
312
rp_state_cap
= intel_uncore_read(uncore, BXT_RP_STATE_CAP);
in frequency_show()
315
rp_state_cap
= intel_uncore_read(uncore, GEN6_RP_STATE_CAP);
in frequency_show()
436
max_freq = (IS_GEN9_LP(i915) ?
rp_state_cap
>> 0 :
in frequency_show()
437
rp_state_cap
>> 16) & 0xff;
in frequency_show()
443
max_freq = (
rp_state_cap
& 0xff00) >> 8;
in frequency_show()
449
max_freq = (IS_GEN9_LP(i915) ?
rp_state_cap
>> 16 :
in frequency_show()
450
rp_state_cap
>> 0) & 0xff;
in frequency_show()
H
A
D
intel_rps.c
960
u32
rp_state_cap
= intel_uncore_read(uncore, BXT_RP_STATE_CAP);
in gen6_rps_init()
local
962
rps->rp0_freq = (
rp_state_cap
>> 16) & 0xff;
in gen6_rps_init()
963
rps->rp1_freq = (
rp_state_cap
>> 8) & 0xff;
in gen6_rps_init()
964
rps->min_freq = (
rp_state_cap
>> 0) & 0xff;
in gen6_rps_init()
966
u32
rp_state_cap
= intel_uncore_read(uncore, GEN6_RP_STATE_CAP);
in gen6_rps_init()
local
968
rps->rp0_freq = (
rp_state_cap
>> 0) & 0xff;
in gen6_rps_init()
969
rps->rp1_freq = (
rp_state_cap
>> 8) & 0xff;
in gen6_rps_init()
970
rps->min_freq = (
rp_state_cap
>> 16) & 0xff;
in gen6_rps_init()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/
H
A
D
intel_rps.c
1103
u32
rp_state_cap
= rps_to_gt(rps)->type == GT_MEDIA ?
in mtl_get_freq_caps()
local
1111
caps->rp0_freq = REG_FIELD_GET(MTL_RP0_CAP_MASK,
rp_state_cap
);
in mtl_get_freq_caps()
1112
caps->min_freq = REG_FIELD_GET(MTL_RPN_CAP_MASK,
rp_state_cap
);
in mtl_get_freq_caps()
1120
u32
rp_state_cap
;
in __gen6_rps_get_freq_caps()
local
1122
rp_state_cap
= intel_rps_read_state_cap(rps);
in __gen6_rps_get_freq_caps()
1126
caps->rp0_freq = (
rp_state_cap
>> 16) & 0xff;
in __gen6_rps_get_freq_caps()
1127
caps->rp1_freq = (
rp_state_cap
>> 8) & 0xff;
in __gen6_rps_get_freq_caps()
1128
caps->min_freq = (
rp_state_cap
>> 0) & 0xff;
in __gen6_rps_get_freq_caps()
1130
caps->rp0_freq = (
rp_state_cap
>> 0) & 0xff;
in __gen6_rps_get_freq_caps()
1136
caps->rp1_freq = (
rp_state_cap
>>
in __gen6_rps_get_freq_caps()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/
H
A
D
i915_debugfs.c
843
u32
rp_state_cap
;
in i915_frequency_info()
local
853
rp_state_cap
= I915_READ(BXT_RP_STATE_CAP);
in i915_frequency_info()
856
rp_state_cap
= I915_READ(GEN6_RP_STATE_CAP);
in i915_frequency_info()
967
max_freq = (IS_GEN9_LP(dev_priv) ?
rp_state_cap
>> 0 :
in i915_frequency_info()
968
rp_state_cap
>> 16) & 0xff;
in i915_frequency_info()
974
max_freq = (
rp_state_cap
& 0xff00) >> 8;
in i915_frequency_info()
980
max_freq = (IS_GEN9_LP(dev_priv) ?
rp_state_cap
>> 16 :
in i915_frequency_info()
981
rp_state_cap
>> 0) & 0xff;
in i915_frequency_info()
Completed in 9 milliseconds