v_hdmitxss
Vitis Drivers API Documentation
xvidframe_crc.h File Reference

Overview

This is the main header file for the Xilinx HDCP abstraction layer.

 MODIFICATION HISTORY:
 Ver   Who  Date     Changes


1.00 GM 17/07/17 First Release

Macros

#define XVidFrameCrc_ReadReg(BaseAddress, RegOffset)   XVidFrameCrc_In32((BaseAddress) + (RegOffset))
 This is a low-level function that reads from the specified register. More...
 
#define XVidFrameCrc_WriteReg(BaseAddress, RegOffset, Data)   XVidFrameCrc_Out32((BaseAddress) + (RegOffset), (Data))
 This is a low-level function that writes to the specified register. More...
 
Register access macro definitions.
#define XVidFrameCrc_In32   Xil_In32
 
#define XVidFrameCrc_Out32   Xil_Out32
 

Macro Definition Documentation

#define XVidFrameCrc_ReadReg (   BaseAddress,
  RegOffset 
)    XVidFrameCrc_In32((BaseAddress) + (RegOffset))

This is a low-level function that reads from the specified register.

Parameters
BaseAddressis the base address of the device.
RegOffsetis the register offset to be read from.
Returns
The 32-bit value of the specified register.
Note
C-style signature: u32 XVidFrameCrc_ReadReg(u32 BaseAddress, u32 RegOffset)
#define XVidFrameCrc_WriteReg (   BaseAddress,
  RegOffset,
  Data 
)    XVidFrameCrc_Out32((BaseAddress) + (RegOffset), (Data))

This is a low-level function that writes to the specified register.

Parameters
BaseAddressis the base address of the device.
RegOffsetis the register offset to write to.
Datais the 32-bit data to write to the specified register.
Returns
None.
Note
C-style signature: void XVidFrameCrc_WriteReg(u32 BaseAddress, u32 RegOffset, u32 Data)