|
| 1 | +.. _iadk-modules: |
| 2 | + |
| 3 | +IADK Modules Adapter |
| 4 | +#################### |
| 5 | + |
| 6 | +IADK Modules |
| 7 | +============ |
| 8 | + |
| 9 | +An IADK module is a software component that can be represented by a processing |
| 10 | +block with some input pins and output pins capable to transport a digital |
| 11 | +signal into the block or out of the block. Processing is applied on an input |
| 12 | +signal or a combination of input signals, some input signals may only be used |
| 13 | +as reference signals that influence the processing on other input signals. |
| 14 | +The result of the processing is written into the output signals. The behavior |
| 15 | +of the block can be controlled using a configuration parameter interface. |
| 16 | + |
| 17 | +An IADK module communicates with base firmware and other modules through |
| 18 | +ProcessingModuleInterface API and access base firmware services via |
| 19 | +System Service API. |
| 20 | + |
| 21 | + |
| 22 | +IADK Module Adapter |
| 23 | +=================== |
| 24 | + |
| 25 | +The IADK Module Adapter is an extension to SOF component infrastructure that |
| 26 | +allows to integrate modules developed under IADK (Intel Audio Development Kit) |
| 27 | +Framework. |
| 28 | +IADK modules uses uniform set of interfaces and are linked into separate |
| 29 | +library. These modules are loaded in runtime through Library Manager and then |
| 30 | +after registration into SOF component infrastructure are interfaced through |
| 31 | +module adapter API. |
| 32 | +Since IADK modules uses ProcessingModuleInterface API to control/data transfer |
| 33 | +and SystemService API to use base FW services from internal module code, there |
| 34 | +is a communication shim layer defined. |
| 35 | + |
| 36 | +The SOF IADK Module Adapter is designed to interact with IADK modules without |
| 37 | +their code modification. Therefore C++ function, structures and variables |
| 38 | +definition are here kept with original form from IADK Framework. |
| 39 | +This provides binary compatibility with already developed 3rd party modules. |
| 40 | + |
| 41 | +There are three entities in IADK Module Adapter Package: |
| 42 | + * System Agent - A mediator to allow the custom module to interact with the |
| 43 | + base SOF FW. It calls IADK module entry point and provides all necessary |
| 44 | + information to connect both sides of ProcessingModuleInterface and |
| 45 | + System Service. |
| 46 | + * System Service - exposes of SOF base FW services to the module. |
| 47 | + * Processing Module Adapter - SOF base FW side of ProcessingModuleInterface |
| 48 | + API |
0 commit comments