Click here to return to the A2B SSPLUS STACK USER GUIDE
Building an A2B application on a custom platform involves two major steps
This step is required to create a bus configuration file that stores the complete A2B network information required by the Target software running on the custom platform. An A2B schematic, corresponding to the Targeted application shall be designed and validated on SigmaStudioPlus before exporting the bus configuration file. The steps involved in this process are as follows
1. Build an A2B Schematic on SigmaStudioPlus matching your final A2B system
2. Validate the A2B Schematic using the PC as the host processor
3. Perform Network analysis to ensure the drawn schematic matches the requirements of the end system
4. Define application response to line faults (if required)
5. After successful validation, export Bus Configuration.C file for the validated A2B schematic.
6. Bus configuration file can also be exported as a binary file using the “Dump as .dat” option.
The next step is to build Target software for a custom platform that hosts the A2B stack and the application. The A2B stack is responsible for discovering and configuring the A2B network as per the configuration provided and handling any run-time events/faults. The subsequent sections describe the steps involved in porting the Stack. It may be necessary to implement additional responsibilities in the Target software depending on the end-system requirements which is beyond the scope of this document.
The best way of building Target software for a custom platform is to port a matching demo project (available in the A2B Software package under.\Target). The below figure shows Target software examples on different ADI platforms available within the software package.
Figure: A2B Target Software Examples
The below table (Target Example Projects) provides A2B controller, and audio host details for each example. Refer to Running the Sample Demo to run the example
Example Project Name | Platform | A2B Controller | Audio Host |
---|---|---|---|
a2bapp-bf | SDP-B + EVAL-AD242xWDZ,SDP-B + EVAL-AD2433WA1BZ | BF527 | ADAU1452 |
a2bapp-adsp-sc58x | ADSP-SC584 Ez Kit | ARM A5 (Core 0) | SHARC (Core 1) |
a2bstack-frmwrk-sc59x | EV-SOMCRR-EZKIT, EV-SC594-SOM | ARM A5(Core0) | SHARC (Core 1) |
a2bapp-linux | ADSP-SC584 Ez Kit | ARM A5 (Core 0) | SHARC (Core 1) |
All Target example projects provided in the A2B Software package have a similar directory structure as shown in the below figure. The figure also shows the folders that constitute the core A2B “Stack” and “Application” files. When porting Stack onto a custom platform, modifications are required only for the files under the ‘a2bstack-pal’ and ‘Application’ folders while the rest shall be moved as-is.
The steps involved in porting the A2B stack and defining application response to A2B events/faults are as follows
_
The step-by-step approach in porting the A2B stack onto a custom platform is as follows
3. Optionally, configure A2B Stack for the Target platform by modifying necessary macros in
4. Re-implement PAL functions in the file a2bstack-pal\adi_a2b_pal.c
In the table below, those functions marked as “Mandatory” must be implemented to have a minimally functional Stack. The remaining functions provide developers with convenient points in the Stack operation to ensure portability to a wide array of platforms.
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_I2cInit | No | This routine is called to do the initialization required by the I2C subsystem. |
a2b_pal_I2cOpenFunc | Yes | This routine is called to do post-initialization of the I2C subsystem during the Stack allocation process. This routine is called immediately following a successful call to the pal_i2cInitFunc. |
a2b_pal_I2cCloseFunc | No | This routine is called to de-initialize the I2C subsystem. |
a2b_pal_I2cReadFunc | No | This routine reads bytes from an I2C device. |
a2b_pal_I2cWriteFunc | Yes | This routine writes bytes to an I2C device. |
a2b_pal_I2cWriteReadFunc | Yes | This routine performs an atomic repeated start I2C write/read transaction to an I2C device. |
a2b_pal_I2cShutdownFunc | No | This routine is called to shut down the I2C subsystem. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_SpiInit | No | This routine is called to do the initialization required by the SPI subsystem. |
a2b_pal_SPiOpenFunc | Yes | This routine is called to do post initialization of the SPI subsystem during the Stack allocation process. This routine is called immediately following a successful call to the pal_i2cInitFunc. |
a2b_pal_SpiCloseFunc | No | This routine is called to de-initialize the SPI subsystem. |
a2b_pal_SpiWriteFunc | Yes | This routine writes bytes to an SPI device on MOSI |
a2b_pal_SpiWriteReadFunc | Yes | This routine performs write on MOSI and reads data on MISO. Note that this function considers only the read data followed by the write completion. |
a2b_pal_SpiShutdownFunc | No | This routine is called to shut down the SPI subsystem. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_TimerInitFunc | No | This routine is called to do initialization the timer |
a2b_pal_TimerGetSysTimeFunc | Yes | This routine returns the current “system” time in milliseconds. The underlying system time is platform-specific. |
a2b_pal_TimerShutdownFunc | No | This routine is called to shut down the timer subsystem during the Stack destroy process. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_AudioInitFunc | No | This routine is called to do initialization the audio subsystem during the Stack allocation process. |
a2b_pal_AudioOpenFunc | No | This routine is called to do post-initialization of the audio subsystem during the Stack allocation process. This routine is called immediately after a successful call to the pal_audioInitFunc |
a2b_pal_AudioCloseFunc | No | This routine is called to de-initialization the audio subsystem during the Stack destroy process. |
a2b_pal_AudioConfigFunc | No | This routine is called to configure the audio subsystem master node during the discovery process. This routine is called during the “NetComplete” process after all nodes are discovered and before the master node “NodeComplete” process which fully initializes the master A2B registers and starts the up/downstream flow. |
a2b_pal_AudioShutdownFunc | No | This routine is called to shut down the audio subsystem during the Stack destroy process. This routine is called immediately after a successful call to the pal_audioCloseFunc. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_MemMgrInitFunc | No | This routine is called to do the initialization required by the memory manager service during the Stack allocation process. A PAL implementation has the option of implementing their own (or custom) memory allocation strategy. Another option is to leverage the built-in memory manager feature of the generic Stack if A2B_FEATURE_MEMORY_MANAGER is defined. This manager allocates memory blocks from a fixed-size heap whose size is derived in part from settings in ‘conf.h’. |
a2b_pal_MemMgrOpenFunc | No | This routine opens a memory-managed heap located at the specified address and of the specified size.If the Stack's heap cannot be opened and managed at the specified location (perhaps because the size is insufficient) then the returned handle will be A2B_NULL. |
a2b_pal_MemMgrMallocFunc | Yes | This routine is called to allocate a fixed amount of memory. Only needed if A2B_FEATURE_MEMORY_MANAGER is disabled. |
a2b_pal_MemMgrFreeFunc | Yes | This routine is called to free previously allocated memory. Only needed if A2B_FEATURE_MEMORY_MANAGER is disabled. |
a2b_pal_MemMgrCloseFunc | No | This routine is called to de-initialization the memory management subsystem during the Stack destroy process. All resources associated with the heap are freed. |
a2b_pal_MemMgrShutdown | No | This routine is called to shut down the memory manager subsystem during the Stack destroy process. This routine is called immediately after a successful call to the pal_memMgrCloseFunc. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_LogInitFunc | No | This routine is called to do the initialization of the log subsystem during the Stack allocation process. |
a2b_pal_LogOpenFunc | No | This routine opens a log channel. |
a2b_pal_LogCloseFunc | No | This routine closes a log channel. |
a2b_pal_LogWriteFunc | No | This routine writes to a log channel. |
a2b_pal_LogShutdownFunc | No | This routine is called to shut down the log subsystem during the Stack destroy process. This routine is called immediately after a successful call to the pal_logCloseFunc |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_PluginsLoadFunc | No | This routine returns a list of all available plugins. The plugins returned are queried during discovery as slave nodes are found. |
a2b_pal_PluginsUnloadFunc | No | This routine is called to unload previously loaded plugins from pal_pluginsLoad. |
a2b_pal_PalGetVersionFunc | No | This routine returns version information related to the PAL. |
a2b_pal_PalGetBuildFunc | No | This routine returns build information related to the PAL. |
PAL Function | Mandatory | Description |
---|---|---|
a2b_pal_FileOpen | No | This routine opens the binary file in read mode and shall be modified as per the file system used. |
a2b_pal_FileRead | No | This routine reads the binary file and shall be modified as per the file system used. |
a2b_pal_FileClose | No | This routine closes the binary file. |
After completing all steps as mentioned in Section “Porting A2B Software Stack to a custom platform”, the next step is to apply bus configuration to the Target software.
1. In the Target platform project, include the validated bus configuration file (adi_a2b_busconfig.c), exported by following Section “Designing A2B Schematic on SigmaStudioPlus”.
2. Optionally, if the bus configuration is read from a binary file, replace the exported .dat format of the bus configuration file into the file system path (A2B_CONF_BINARY_BCF_FILE_URL).
3. Optionally, the audio routing table (.\app\adi_a2b_audioroutingtable.c) may need to be modified if the audio streams are to be routed by the audio host.
4. Build and Run the Target project.
By this time, we should have completed the porting of A2B Stack as explained in Section “Porting A2B Software Stack to a custom platform”. At this stage, the A2B Stack ported on the custom platform should be capable of discovering and configuring a connected A2B network as per the added bus configuration file.
The A2B Stack offers provision for the application running on the Target software to register callback functions for important network activities. Three important application callback functions are registered with the Stack. These functions can be modified by the user to perform an action specific to the application.
The three application callback functions are explained in the following sub-sections.
The discovery completion callback function is invoked by the stack upon completing the discovery and configuration of the whole A2B network. Figure shows the application registration of a discovery completion callback function with the stack. The status of the discovery is notified by this function allowing the application to perform any additional tasks based on the notified status.
The code snippet shows a sample implementation of this callback function.
The power fault callback function is invoked by the stack upon detecting a power-related fault in any node of the network. An application callback function can be registered with the Stack for power fault notifications as shown in the below Figure.
The Stack provides a callback function to the application layer upon the occurrence of a fault in the A2B System. The stack performs necessary diagnostics and fault localization (in case of concealed faults) and reports the fault type and location to the application for further handling.
The function is invoked under the following fault conditions during and post discovery.
Code Snippet shows a sample implementation of the a2bapp_onPowerFault callback function.
The information about the presence of a locally powered slave is made known to the stack through the BDD. In case of critical faults (Cable terminal shorted to GND, Cable terminal shorted to VBat), the stack switches of the bus from the immediate upstream local powered slave onwards.
Partial bus operation is possible between master and this upstream local powered slave.
The Interrupt callback function is invoked by the Stack upon seeing any interrupts at the master node. The below Figure shows the application registration of an interrupt callback function with the Stack.
The code snippet shows a simple implementation of this callback function.
The node discovery callback function is an optional callback, which is invoked by the stack upon each node discovery or when node authentication fails. The below Figure shows the application registration of this callback function with the Stack.
The below Code Snippet shows a sample implementation of this callback function. The application can decide whether to continue with discovery or not and has more control with this callback function.
The I2C error callback function is invoked by the Stack upon seeing any I2C errors at the master node or at sub-node peripherals.
The code snippet shows a simple implementation of this callback function.
Figure: Building A2B Application on a Custom Platform