/****************************************************************************** * * Copyright (C) 2014 Xilinx, Inc. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * Use of the Software is limited solely to applications: * (a) running on a Xilinx device, or * (b) that interact with a Xilinx device through a bus or interconnect. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * XILINX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Except as contained in this notice, the name of the Xilinx shall not be used * in advertising or otherwise to promote the sale, use or other dealings in * this Software without prior written authorization from Xilinx. * ******************************************************************************/ /*****************************************************************************/ /** * * The CSU_DMA is present inside CSU (Configuration Security Unit) module which * is located within the Low-Power Subsystem (LPS) internal to the PS. * CSU_DMA allows the CSU to move data efficiently between the memory (32 bit * AXI interface) and the CSU stream peripherals (SHA, AES and PCAP) via Secure * Stream Switch (SSS). * * The CSU_DMA is a 2 channel simple DMA, allowing separate control of the SRC * (read) channel and DST (write) channel. The DMA is effectively able to * transfer data: * - From PS-side to the SSS-side (SRC DMA only) * - From SSS-side to the PS-side (DST DMA only) * - Simultaneous PS-side to SSS_side and SSS-side to the PS-side * * Initialization & Configuration * * The device driver enables higher layer software (e.g., an application) to * communicate to the CSU_DMA core. * * XCsuDma_CfgInitialize() API is used to initialize the CSU_DMA core. * The user needs to first call the XCsuDma_LookupConfig() API which returns * the Configuration structure pointer which is passed as a parameter to the * XCsuDma_CfgInitialize() API. * * Interrupts * This driver will not support handling of interrupts user should write handler * to handle the interrupts. * * Virtual Memory * * This driver supports Virtual Memory. The RTOS is responsible for calculating * the correct device base address in Virtual Memory space. * * Threads * * This driver is not thread safe. Any needs for threads or thread mutual * exclusion must be satisfied by the layer above this driver. * * Asserts * * Asserts are used within all Xilinx drivers to enforce constraints on argument * values. Asserts can be turned off on a system-wide basis by defining, at * compile time, the NDEBUG identifier. By default, asserts are turned on and it * is recommended that users leave asserts on during development. * * Building the driver * * The XCsuDma driver is composed of several source files. This allows the user * to build and link only those parts of the driver that are necessary. * * @file xcsudma.h * * This header file contains identifiers and register-level driver functions (or * macros), range macros, structure typedefs that can be used to access the * Xilinx CSU_DMA core instance. * * *
* MODIFICATION HISTORY: * * Ver Who Date Changes * ----- ------ -------- ----------------------------------------------------- * 1.0 vnsld 22/10/14 First release ** ******************************************************************************/ #ifndef XCSUDMA_H_ #define XCSUDMA_H_ /**< Prevent circular inclusions * by using protection macros */ #ifdef __cplusplus extern "C" { #endif /***************************** Include Files *********************************/ #include "xcsudma_hw.h" #include "xil_types.h" #include "xil_assert.h" #include "xstatus.h" #include "xil_cache.h" /************************** Constant Definitions *****************************/ /** @name CSU_DMA Channels * @{ */ typedef enum { XCSUDMA_SRC_CHANNEL = 0U, /**< Source Channel of CSU_DMA */ XCSUDMA_DST_CHANNEL /**< Destination Channel of CSU_DMA */ }XCsuDma_Channel; /*@}*/ /** @name CSU_DMA pause types * @{ */ typedef enum { XCSUDMA_PAUSE_MEMORY, /**< Pauses memory data transfer * to/from CSU_DMA */ XCSUDMA_PAUSE_STREAM, /**< Pauses stream data transfer * to/from CSU_DMA */ }XCsuDma_PauseType; /*@}*/ /** @name Ranges of Size * @{ */ #define XCSUDMA_SIZE_MAX 0x07FFFFFF /**< Maximum allowed no of words */ /*@}*/ /***************** Macros (Inline Functions) Definitions *********************/ /*****************************************************************************/ /** * * This function resets the CSU_DMA core. * * @param None. * * @return None. * * @note None. * C-style signature: * void XCsuDma_Reset() * ******************************************************************************/ #define XCsuDma_Reset() \ Xil_Out32(((u32)(XCSU_BASEADDRESS) + (u32)(XCSU_DMA_RESET_OFFSET)), \ (u32)(XCSUDMA_RESET_SET_MASK)); \ Xil_Out32(((u32)(XCSU_BASEADDRESS) + (u32)(XCSU_DMA_RESET_OFFSET)), \ (u32)(XCSUDMA_RESET_UNSET_MASK)); /*****************************************************************************/ /** * This function will be in busy while loop until the data transfer is * completed. * * @param InstancePtr is a pointer to XCsuDma instance to be worked on. * @param Channel represents the type of channel either it is Source or * Destination. * Source channel - XCSUDMA_SRC_CHANNEL * Destination Channel - XCSUDMA_DST_CHANNEL * * @return None. * * @note This function should be called after XCsuDma_Transfer in polled * mode to wait until the data gets transfered completely. * C-style signature: * void XCsuDma_WaitForDone(XCsuDma *InstancePtr, * XCsuDma_Channel Channel) * ******************************************************************************/ #define XCsuDma_WaitForDone(InstancePtr,Channel) \ while((XCsuDma_ReadReg(((InstancePtr)->Config.BaseAddress), \ ((u32)(XCSUDMA_I_STS_OFFSET) + \ ((u32)(Channel) * (u32)(XCSUDMA_OFFSET_DIFF)))) & \ (u32)(XCSUDMA_IXR_DONE_MASK)) != (XCSUDMA_IXR_DONE_MASK)) /*****************************************************************************/ /** * * This function returns the number of completed SRC/DST DMA transfers that * have not been acknowledged by software based on the channel selection. * * @param InstancePtr is a pointer to XCsuDma instance to be worked on. * @param Channel represents the type of channel either it is Source or * Destination. * Source channel - XCSUDMA_SRC_CHANNEL * Destination Channel - XCSUDMA_DST_CHANNEL * * @return Count is number of completed DMA transfers but not acknowledged * (Range is 0 to 7). * - 000 - All finished transfers have been acknowledged. * - Count - Count number of finished transfers are still * outstanding. * * @note None. * C-style signature: * u8 XCsuDma_GetDoneCount(XCsuDma *InstancePtr, * XCsuDma_Channel Channel) * ******************************************************************************/ #define XCsuDma_GetDoneCount(InstancePtr, Channel) \ ((XCsuDma_ReadReg(((InstancePtr)->Config.BaseAddress), \ ((u32)(XCSUDMA_STS_OFFSET) + \ ((u32)(Channel) * (u32)(XCSUDMA_OFFSET_DIFF)))) & \ (u32)(XCSUDMA_STS_DONE_CNT_MASK)) >> \ (u32)(XCSUDMA_STS_DONE_CNT_SHIFT)) /*****************************************************************************/ /** * * This function returns the current SRC/DST FIFO level in 32 bit words of the * selected channel * @param InstancePtr is a pointer to XCsuDma instance to be worked on. * @param Channel represents the type of channel either it is Source or * Destination. * Source channel - XCSUDMA_SRC_CHANNEL * Destination Channel - XCSUDMA_DST_CHANNEL * * @return FIFO level. (Range is 0 to 128) * - 0 Indicates empty * - Any number 1 to 128 indicates the number of entries in FIFO. * * @note None. * C-style signature: * u8 XCsuDma_GetFIFOLevel(XCsuDma *InstancePtr, * XCsuDma_Channel Channel) * ******************************************************************************/ #define XCsuDma_GetFIFOLevel(InstancePtr, Channel) \ ((XCsuDma_ReadReg(((InstancePtr)->Config.BaseAddress), \ ((u32)(XCSUDMA_STS_OFFSET) + \ ((u32)(Channel) * (u32)(XCSUDMA_OFFSET_DIFF)))) & \ (u32)(XCSUDMA_STS_FIFO_LEVEL_MASK)) >> \ (u32)(XCSUDMA_STS_FIFO_LEVEL_SHIFT)) /*****************************************************************************/ /** * * This function returns the current number of read(src)/write(dst) outstanding * commands based on the type of channel selected. * * @param InstancePtr is a pointer to XCsuDma instance to be worked on. * @param Channel represents the type of channel either it is Source or * Destination. * Source channel - XCSUDMA_SRC_CHANNEL * Destination Channel - XCSUDMA_DST_CHANNEL * * @return Count of outstanding commands. (Range is 0 to 9). * * @note None. * C-style signature: * u8 XCsuDma_GetWROutstandCount(XCsuDma *InstancePtr, * XCsuDma_Channel Channel) * ******************************************************************************/ #define XCsuDma_GetWROutstandCount(InstancePtr, Channel) \ ((XCsuDma_ReadReg(((InstancePtr)->Config.BaseAddress), \ ((u32)(XCSUDMA_STS_OFFSET) + \ ((u32)(Channel) * (u32)(XCSUDMA_OFFSET_DIFF)))) & \ (u32)(XCUSDMA_STS_OUTSTDG_MASK)) >> \ (u32)(XCUSDMA_STS_OUTSTDG_SHIFT)) /*****************************************************************************/ /** * * This function returns the status of Channel either it is busy or not. * * @param InstancePtr is a pointer to XCsuDma instance to be worked on. * @param Channel represents the type of channel either it is Source or * Destination. * Source channel - XCSUDMA_SRC_CHANNEL * Destination Channel - XCSUDMA_DST_CHANNEL * * @return Returns the current status of the core. * - TRUE represents core is currently busy. * - FALSE represents core is not involved in any transfers. * * @note None. * C-style signature: * s32 XCsuDma_IsBusy(XCsuDma *InstancePtr, XCsuDma_Channel Channel) * ******************************************************************************/ #define XCsuDma_IsBusy(InstancePtr, Channel) \ ((XCsuDma_ReadReg(((InstancePtr)->Config.BaseAddress), \ ((u32)(XCSUDMA_STS_OFFSET) + \ ((u32)(Channel) * (u32)(XCSUDMA_OFFSET_DIFF)))) & \ (u32)(XCSUDMA_STS_BUSY_MASK)) == (XCSUDMA_STS_BUSY_MASK)) ? \ (TRUE) : (FALSE) /**************************** Type Definitions *******************************/ /** * This typedef contains configuration information for a CSU_DMA core. * Each CSU_DMA core should have a configuration structure associated. */ typedef struct { u16 DeviceId; /**< DeviceId is the unique ID of the * device */ u32 BaseAddress; /**< BaseAddress is the physical base address * of the device's registers */ } XCsuDma_Config; /******************************************************************************/ /** * * The XCsuDma driver instance data structure. A pointer to an instance data * structure is passed around by functions to refer to a specific driver * instance. */ typedef struct { XCsuDma_Config Config; /**< Hardware configuration */ u32 IsReady; /**< Device and the driver instance * are initialized */ }XCsuDma; /******************************************************************************/ /** * This typedef contains all the configuration feilds which needs to be set * before the start of the data transfer. All these feilds of CSU_DMA can be * configured by using XCsuDma_SetConfig API. */ typedef struct { u8 SssFifoThesh; /**< SSS FIFO threshold value */ u8 ApbErr; /**< ABP invalid access error */ u8 EndianType; /**< Type of endianess */ u8 AxiBurstType; /**< Type of AXI bus */ u32 TimeoutValue; /**< Time out value */ u8 FifoThresh; /**< FIFO threshold value */ u8 Acache; /**< AXI CACHE selection */ u8 RouteBit; /**< Selection of Route */ u8 TimeoutEn; /**< Enable of time out counters */ u16 TimeoutPre; /**< Pre scaler value */ u8 MaxOutCmds; /**< Maximum number of outstanding * commands */ }XCsuDma_Configure; /*****************************************************************************/ /************************** Function Prototypes ******************************/ XCsuDma_Config *XCsuDma_LookupConfig(u16 DeviceId); s32 XCsuDma_CfgInitialize(XCsuDma *InstancePtr, XCsuDma_Config *CfgPtr, u32 EffectiveAddr); void XCsuDma_Transfer(XCsuDma *InstancePtr, XCsuDma_Channel Channel, u64 Addr, u32 Size, u8 EnDataLast); void XCsuDma_LoopBackTransfer(XCsuDma *InstancePtr, u64 SrcAddr, u64 DstAddr, u32 Size); u64 XCsuDma_GetAddr(XCsuDma *InstancePtr, XCsuDma_Channel Channel); u32 XCsuDma_GetSize(XCsuDma *InstancePtr, XCsuDma_Channel Channel); void XCsuDma_Pause(XCsuDma *InstancePtr, XCsuDma_Channel Channel, XCsuDma_PauseType Type); s32 XCsuDma_IsPaused(XCsuDma *InstancePtr, XCsuDma_Channel Channel, XCsuDma_PauseType Type); void XCsuDma_Resume(XCsuDma *InstancePtr, XCsuDma_Channel Channel, XCsuDma_PauseType Type); u32 XCsuDma_GetCheckSum(XCsuDma *InstancePtr); void XCsuDma_ClearCheckSum(XCsuDma *InstancePtr); void XCsuDma_SetConfig(XCsuDma *InstancePtr, XCsuDma_Channel Channel, XCsuDma_Configure *ConfigurValues); void XCsuDma_GetConfig(XCsuDma *InstancePtr, XCsuDma_Channel Channel, XCsuDma_Configure *ConfigurValues); void XCsuDma_ClearDoneCount(XCsuDma *InstancePtr, XCsuDma_Channel Channel); void XCsuDma_SetSafetyCheck(XCsuDma *InstancePtr, u32 Value); u32 XCsuDma_GetSafetyCheck(XCsuDma *InstancePtr); /* Interrupt related APIs */ u32 XCsuDma_IntrGetStatus(XCsuDma *InstancePtr, XCsuDma_Channel Channel); void XCsuDma_IntrClear(XCsuDma *InstancePtr, XCsuDma_Channel Channel, u32 Mask); void XCsuDma_EnableIntr(XCsuDma *InstancePtr, XCsuDma_Channel Channel, u32 Mask); void XCsuDma_DisableIntr(XCsuDma *InstancePtr, XCsuDma_Channel Channel, u32 Mask); u32 XCsuDma_GetIntrMask(XCsuDma *InstancePtr, XCsuDma_Channel Channel); s32 XCsuDma_SelfTest(XCsuDma *InstancePtr); /******************************************************************************/ #ifdef __cplusplus } #endif #endif /* End of protection macro */