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:pcc_chan
(Results
1 - 6
of
6
) sorted by relevance
/kernel/linux/linux-6.6/drivers/acpi/
H
A
D
acpi_pcc.c
33
struct pcc_mbox_chan *
pcc_chan
;
member
55
struct pcc_mbox_chan *
pcc_chan
;
in acpi_pcc_address_space_setup()
local
69
data->
pcc_chan
= pcc_mbox_request_channel(&data->cl, ctx->subspace_id);
in acpi_pcc_address_space_setup()
70
if (IS_ERR(data->
pcc_chan
)) {
in acpi_pcc_address_space_setup()
77
pcc_chan
= data->
pcc_chan
;
in acpi_pcc_address_space_setup()
78
if (!
pcc_chan
->mchan->mbox->txdone_irq) {
in acpi_pcc_address_space_setup()
84
data->pcc_comm_addr = acpi_os_ioremap(
pcc_chan
->shmem_base_addr,
in acpi_pcc_address_space_setup()
85
pcc_chan
->shmem_size);
in acpi_pcc_address_space_setup()
97
pcc_mbox_free_channel(data->
pcc_chan
);
in acpi_pcc_address_space_setup()
[all...]
H
A
D
cppc_acpi.c
530
struct pcc_mbox_chan *
pcc_chan
;
in register_pcc_channel()
local
534
pcc_chan
= pcc_mbox_request_channel(&cppc_mbox_cl, pcc_ss_idx);
in register_pcc_channel()
536
if (IS_ERR(
pcc_chan
)) {
in register_pcc_channel()
542
pcc_data[pcc_ss_idx]->pcc_channel =
pcc_chan
;
in register_pcc_channel()
548
usecs_lat = NUM_RETRIES *
pcc_chan
->latency;
in register_pcc_channel()
550
pcc_data[pcc_ss_idx]->pcc_mrtt =
pcc_chan
->min_turnaround_time;
in register_pcc_channel()
551
pcc_data[pcc_ss_idx]->pcc_mpar =
pcc_chan
->max_access_rate;
in register_pcc_channel()
552
pcc_data[pcc_ss_idx]->pcc_nominal =
pcc_chan
->latency;
in register_pcc_channel()
555
acpi_os_ioremap(
pcc_chan
->shmem_base_addr,
in register_pcc_channel()
556
pcc_chan
in register_pcc_channel()
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H
A
D
i2c-xgene-slimpro.c
106
struct pcc_mbox_chan *
pcc_chan
;
member
473
struct pcc_mbox_chan *
pcc_chan
;
in xgene_slimpro_i2c_probe()
local
490
pcc_chan
= pcc_mbox_request_channel(cl, ctx->mbox_idx);
in xgene_slimpro_i2c_probe()
491
if (IS_ERR(
pcc_chan
)) {
in xgene_slimpro_i2c_probe()
493
return PTR_ERR(
pcc_chan
);
in xgene_slimpro_i2c_probe()
496
ctx->
pcc_chan
=
pcc_chan
;
in xgene_slimpro_i2c_probe()
497
ctx->mbox_chan =
pcc_chan
->mchan;
in xgene_slimpro_i2c_probe()
509
ctx->comm_base_addr =
pcc_chan
->shmem_base_addr;
in xgene_slimpro_i2c_probe()
514
pcc_chan
in xgene_slimpro_i2c_probe()
[all...]
/kernel/linux/linux-6.6/drivers/hwmon/
H
A
D
xgene-hwmon.c
96
struct pcc_mbox_chan *
pcc_chan
;
member
656
struct pcc_mbox_chan *
pcc_chan
;
in xgene_hwmon_probe()
local
677
pcc_chan
= pcc_mbox_request_channel(cl, ctx->mbox_idx);
in xgene_hwmon_probe()
678
if (IS_ERR(
pcc_chan
)) {
in xgene_hwmon_probe()
685
ctx->
pcc_chan
=
pcc_chan
;
in xgene_hwmon_probe()
686
ctx->mbox_chan =
pcc_chan
->mchan;
in xgene_hwmon_probe()
698
ctx->comm_base_addr =
pcc_chan
->shmem_base_addr;
in xgene_hwmon_probe()
703
pcc_chan
->shmem_size);
in xgene_hwmon_probe()
707
pcc_chan
in xgene_hwmon_probe()
[all...]
/kernel/linux/linux-6.6/drivers/soc/hisilicon/
H
A
D
kunpeng_hccs.c
121
pcc_mbox_free_channel(hdev->cl_info.
pcc_chan
);
in hccs_unregister_pcc_channel()
128
struct pcc_mbox_chan *
pcc_chan
;
in hccs_register_pcc_channel()
local
136
pcc_chan
= pcc_mbox_request_channel(cl, hdev->chan_id);
in hccs_register_pcc_channel()
137
if (IS_ERR(
pcc_chan
)) {
in hccs_register_pcc_channel()
142
cl_info->
pcc_chan
=
pcc_chan
;
in hccs_register_pcc_channel()
143
cl_info->mbox_chan =
pcc_chan
->mchan;
in hccs_register_pcc_channel()
146
*
pcc_chan
->latency is just a nominal value. In reality the remote
in hccs_register_pcc_channel()
151
HCCS_PCC_CMD_WAIT_RETRIES_NUM *
pcc_chan
->latency;
in hccs_register_pcc_channel()
158
if (
pcc_chan
in hccs_register_pcc_channel()
[all...]
H
A
D
kunpeng_hccs.h
51
struct pcc_mbox_chan *
pcc_chan
;
member
Completed in 6 milliseconds