From 83bfc8403a4e0f096c49243e97c60263c9fc8aa1 Mon Sep 17 00:00:00 2001 From: Rohit Consul Date: Thu, 22 Oct 2015 11:45:41 -0700 Subject: [PATCH] v_hdmirxss: update config structure for driver parameter Updated pixel per clock parameter type to reflect usage Deleted hdcp timer calls from - not needed in this module Signed-off-by: Rohit Consul --- XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss.h | 2 +- .../drivers/v_hdmirxss/src/xv_hdmirxss_coreinit.c | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss.h b/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss.h index 4482bd24..6f9e8b33 100755 --- a/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss.h +++ b/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss.h @@ -123,7 +123,7 @@ typedef struct subsystem address range */ u32 HighAddress; /**< HighAddress is the physical MAX address of the subsystem address range */ - u8 MaxPixelsPerClock; /**< Maximum Supported Pixel per Clock */ + XVidC_PixelsPerClock Ppc; /**< Supported Pixel per Clock */ u8 MaxBitsPerPixel; /**< Maximum Supported Color Depth */ XV_HdmiRxSs_SubCore HdcpTimer; /**< Sub-core instance configuration */ XV_HdmiRxSs_SubCore Hdcp; /**< Sub-core instance configuration */ diff --git a/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss_coreinit.c b/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss_coreinit.c index 5f44c67a..be3dc9ed 100755 --- a/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss_coreinit.c +++ b/XilinxProcessorIPLib/drivers/v_hdmirxss/src/xv_hdmirxss_coreinit.c @@ -221,11 +221,6 @@ int XV_HdmiRxSs_SubcoreInitHdcpTimer(XV_HdmiRxSs *HdmiRxSsPtr) XTmrCtr_CfgInitialize(HdmiRxSsPtr->HdcpTimerPtr, ConfigPtr, AbsAddr); Status = XTmrCtr_InitHw(HdmiRxSsPtr->HdcpTimerPtr); - /* Initialize the hdcp timer functions */ - XHdcp1x_SetTimerStart(&XV_HdmiRxSs_HdcpTimerStart); - XHdcp1x_SetTimerStop(&XV_HdmiRxSs_HdcpTimerStop); - XHdcp1x_SetTimerDelay(&XV_HdmiRxSs_HdcpTimerBusyDelay); - if(Status != XST_SUCCESS) { xil_printf("HDMIRXSS ERR:: AXI Timer Initialization failed\r\n");