-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb75f8a
commit 40b384e
Showing
2 changed files
with
6 additions
and
18 deletions.
There are no files selected for viewing
23 changes: 6 additions & 17 deletions
23
architectures/firmware/sof-common/pipeline_2_0/images/module_to_module.pu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
actor "ipc/ipc_comp_new()" as c | ||
participant "audio/component" as comp | ||
participant "comp_driver" as drv | ||
participant "lib/heap" as heap | ||
left to right direction | ||
(**Module1** //use Source//) as mod1 | ||
(//provide source// **BUFFER** //provide sink//) as buf1 | ||
(//use sink// **Module2**) as Mod2 | ||
|
||
c -> comp : comp_new(comp : sof_ipc_comp) | ||
activate comp | ||
comp -> comp : get_drv(comp->type) : drv | ||
comp -> drv : drv->ops.new(comp) | ||
activate drv | ||
drv -> heap : rzalloc(Runtime) | ||
drv <-- heap | ||
comp <-- drv : comp_dev* | ||
deactivate drv | ||
|
||
comp -> comp : init component | ||
c <-- comp : comp_dev* | ||
deactivate comp | ||
mod1 --> buf1 | ||
buf1 --> Mod2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters