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:link_trb
(Results
1 - 5
of
5
) sorted by relevance
/kernel/linux/linux-5.10/drivers/usb/early/
H
A
D
xhci-dbc.c
202
struct xdbc_trb *
link_trb
;
in xdbc_reset_ring()
local
211
link_trb
= &seg->trbs[XDBC_TRBS_PER_SEGMENT - 1];
in xdbc_reset_ring()
212
link_trb
->field[0] = cpu_to_le32(lower_32_bits(seg->dma));
in xdbc_reset_ring()
213
link_trb
->field[1] = cpu_to_le32(upper_32_bits(seg->dma));
in xdbc_reset_ring()
214
link_trb
->field[3] = cpu_to_le32(TRB_TYPE(TRB_LINK)) | cpu_to_le32(LINK_TOGGLE);
in xdbc_reset_ring()
392
struct xdbc_trb *trb, *
link_trb
;
in xdbc_queue_trb()
local
402
link_trb
= ring->enqueue;
in xdbc_queue_trb()
404
link_trb
->field[3] |= cpu_to_le32(TRB_CYCLE);
in xdbc_queue_trb()
406
link_trb
->field[3] &= cpu_to_le32(~TRB_CYCLE);
in xdbc_queue_trb()
/kernel/linux/linux-6.6/drivers/usb/early/
H
A
D
xhci-dbc.c
202
struct xdbc_trb *
link_trb
;
in xdbc_reset_ring()
local
211
link_trb
= &seg->trbs[XDBC_TRBS_PER_SEGMENT - 1];
in xdbc_reset_ring()
212
link_trb
->field[0] = cpu_to_le32(lower_32_bits(seg->dma));
in xdbc_reset_ring()
213
link_trb
->field[1] = cpu_to_le32(upper_32_bits(seg->dma));
in xdbc_reset_ring()
214
link_trb
->field[3] = cpu_to_le32(TRB_TYPE(TRB_LINK)) | cpu_to_le32(LINK_TOGGLE);
in xdbc_reset_ring()
392
struct xdbc_trb *trb, *
link_trb
;
in xdbc_queue_trb()
local
402
link_trb
= ring->enqueue;
in xdbc_queue_trb()
404
link_trb
->field[3] |= cpu_to_le32(TRB_CYCLE);
in xdbc_queue_trb()
406
link_trb
->field[3] &= cpu_to_le32(~TRB_CYCLE);
in xdbc_queue_trb()
/kernel/linux/linux-6.6/drivers/usb/gadget/udc/cdns2/
H
A
D
cdns2-gadget.c
122
struct cdns2_trb *
link_trb
;
in cdns2_alloc_tr_segment()
local
141
link_trb
= (ring->trbs + (TRBS_PER_SEGMENT - 1));
in cdns2_alloc_tr_segment()
142
link_trb
->buffer = cpu_to_le32(TRB_BUFFER(ring->dma));
in cdns2_alloc_tr_segment()
143
link_trb
->control = cpu_to_le32(TRB_CYCLE | TRB_TYPE(TRB_LINK) |
in cdns2_alloc_tr_segment()
319
struct cdns2_trb *
link_trb
= NULL;
in cdns2_prepare_ring()
local
343
link_trb
= ring->trbs + (TRBS_PER_SEGMENT - 1);
in cdns2_prepare_ring()
356
link_trb
->control = cpu_to_le32(((ring->pcs) ? TRB_CYCLE : 0) |
in cdns2_prepare_ring()
366
struct cdns2_trb *
link_trb
= pep->ring.trbs + (TRBS_PER_SEGMENT - 1);
in cdns2_dbg_request_trbs()
local
373
if (trb + i ==
link_trb
) {
in cdns2_dbg_request_trbs()
1743
struct cdns2_trb *
link_trb
;
in cdns2_gadget_ep_dequeue()
local
[all...]
/kernel/linux/linux-5.10/drivers/usb/cdns3/
H
A
D
gadget.c
231
struct cdns3_trb *
link_trb
;
in cdns3_allocate_trb_pool()
local
255
link_trb
= (priv_ep->trb_pool + (priv_ep->num_trbs - 1));
in cdns3_allocate_trb_pool()
262
link_trb
->control = 0;
in cdns3_allocate_trb_pool()
264
link_trb
->buffer = cpu_to_le32(TRB_BUFFER(priv_ep->trb_pool_dma));
in cdns3_allocate_trb_pool()
265
link_trb
->control = cpu_to_le32(TRB_CYCLE | TRB_TYPE(TRB_LINK) | TRB_TOGGLE);
in cdns3_allocate_trb_pool()
1117
struct cdns3_trb *
link_trb
= NULL;
in cdns3_ep_run_transfer()
local
1171
link_trb
= priv_ep->trb_pool + (priv_ep->num_trbs - 1);
in cdns3_ep_run_transfer()
1184
link_trb
->control = cpu_to_le32(((priv_ep->pcs) ? TRB_CYCLE : 0) |
in cdns3_ep_run_transfer()
1193
*trb = *
link_trb
;
in cdns3_ep_run_transfer()
1357
if (trb + i ==
link_trb
) {
in cdns3_ep_run_transfer()
2681
struct cdns3_trb *
link_trb
;
cdns3_gadget_ep_dequeue()
local
[all...]
/kernel/linux/linux-6.6/drivers/usb/cdns3/
H
A
D
cdns3-gadget.c
217
struct cdns3_trb *
link_trb
;
in cdns3_allocate_trb_pool()
local
241
link_trb
= (priv_ep->trb_pool + (priv_ep->num_trbs - 1));
in cdns3_allocate_trb_pool()
248
link_trb
->control = 0;
in cdns3_allocate_trb_pool()
250
link_trb
->buffer = cpu_to_le32(TRB_BUFFER(priv_ep->trb_pool_dma));
in cdns3_allocate_trb_pool()
251
link_trb
->control = cpu_to_le32(TRB_CYCLE | TRB_TYPE(TRB_LINK) | TRB_TOGGLE);
in cdns3_allocate_trb_pool()
1122
struct cdns3_trb *
link_trb
= NULL;
in cdns3_ep_run_transfer()
local
1176
link_trb
= priv_ep->trb_pool + (priv_ep->num_trbs - 1);
in cdns3_ep_run_transfer()
1189
link_trb
->control = cpu_to_le32(((priv_ep->pcs) ? TRB_CYCLE : 0) |
in cdns3_ep_run_transfer()
1198
*trb = *
link_trb
;
in cdns3_ep_run_transfer()
1362
if (trb + i ==
link_trb
) {
in cdns3_ep_run_transfer()
2688
struct cdns3_trb *
link_trb
;
cdns3_gadget_ep_dequeue()
local
[all...]
Completed in 10 milliseconds