/** * @file consumer_osal.h * * @brief * This is the sample OS Adaptation layer which is used by the TF Producer low level * driver. * * @details The OSAL layer can be ported in either of the following manners to a native OS: * * Approach 1: * @n Use Prebuilt Libraries * - Ensure that the LLD users provide an implementation of all * Osal_XXX API for their native OS. * - Link the prebuilt libraries with their application. * - Refer to the "test" directory for an example of this * @n Pros: * - Customers can reuse prebuilt TI provided libraries * @n Cons: * - Level of indirection in the API to get to the actual OS call * * Approach 2: * @n Rebuilt Library * - Create a copy of this file and modify it to directly * inline the native OS calls * - Rebuild the CONSUMER low level driver library; ensure that the Include * path points to the directory where the copy of this file * has been provided. * - Please refer to the "test" directory for an example of this * @n Pros: * - Optimizations can be done to remove the level of indirection * @n Cons: * - CONSUMER LLD Libraries need to be rebuilt by the customer. * * NOTE: * (C) Copyright 2012 Texas Instruments, Inc. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #ifndef _CONSUMER_OSAL_H #define _CONSUMER_OSAL_H #ifdef __cplusplus extern "C" { #endif #include "tf_types.h" /** @addtogroup TRACEFRAMEWORK_OSAL @{ */ /********************************************************************** ************************* Extern Declarations ************************ **********************************************************************/ extern void Osal_consumer_EndMemAccess (void* addr, uint32_t size); extern void Osal_consumer_BeginMemAccess(void* addr, uint32_t size); extern void Osal_consumer_MemFree(void* ptr, uint32_t size); extern void* Osal_consumer_MemAlloc(uint32_t num_bytes, uint32_t alignment); extern void Osal_consumer_Exception (uint32_t id, int32_t exception); /** * @brief The macro is used by the consumer Library to allocate the memory * * Prototype: * The following is the C prototype for the expected OSAL API. * * @verbatim * void* Osal_consumer_MemAlloc (uint32_t num_bytes, uint32_t alignment) * @endverbatim * * Parameter * @n num_bytes - number of bytes to be allocated * @n alignment - memory alignment * * Return Value * @n memory address allocated */ #define TF_CONSUMER_osalMemAlloc Osal_consumer_MemAlloc /** * @brief The macro is used by the consumer Library to free the memory * * Prototype: * The following is the C prototype for the expected OSAL API. * * @verbatim * void Osal_consumer_MemFree (void* ptr, uint32_t size) * @endverbatim * * Parameter * @n ptr - memory base address to be freed * @n size - size of the mem block * * Return Value * @n None */ #define TF_CONSUMER_osalMemFree Osal_consumer_MemFree /** * @brief The macro is used by the consumer Library to indicate that packet * access has been accessed & updated . If the packet is in cached memory the * implementation should writeback the contents of the packet * * Prototype: * The following is the C prototype for the expected OSAL API. * * @verbatim * void Osal_consumer_BeginMemAccess (void* addr, uint32_t sizeWords) * @endverbatim * * Parameter * @n addr - The address of the table to be accessed * @n sizeWords - The number of bytes in the table * * Return Value * @n None */ #define TF_CONSUMER_osalBeginMemAccess Osal_consumer_BeginMemAccess /** * @brief This macro is used to alert the application that the CONSUMER * has completed access to table memory. This call will always * be made following a call to Osal_CONSUMER BeginMemAccess and have * the same parameters * * Prototype: * The following is the C prototype for the expected OSAL API. * * @verbatim * void Osal_consumer_EndMemAccess (void* addr, uint32_t sizeWords) * @endverbatim * * Parameters * @n addr - The address of the table to be accessed * @n sizeWords - The number of bytes in the table * * @note CONSUMER will make nested calls to this function for memory access * protection of different memory tables. The multicore semaphore * should be freed when all previous memory access has completed, * in other words, when the nested call level reaches 0. */ #define TF_CONSUMER_osalEndMemAccess Osal_consumer_EndMemAccess /** * @brief This macro is used to alert the application that the CONSUMER * has encountered an exception * * Prototype: * The following is the C prototype for the expected OSAL API. * * @verbatim * void Osal_consumer_Exception (uint32_t moduleId, uint32_t exception) * @endverbatim * * Parameters * @n addr - The address of the table to be accessed * @n sizeWords - The number of bytes in the table * * @note CONSUMER will make nested calls to this function for memory access * protection of different memory tables. The multicore semaphore * should be freed when all previous memory access has completed, * in other words, when the nested call level reaches 0. */ #define TF_CONSUMER_osalException Osal_consumer_Exception /** @} */ #ifdef __cplusplus } #endif #endif /* _CONSUMER_OSAL_H */