123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341 |
- /**
- * @file drv_hdmi_inc.h
- * @brief HDMI RX driver layer interface.
- * @verbatim
- * ==============================================================================
- * ##### How to use this driver #####
- * ==============================================================================
- * (+) Use HS_HAL_WDT_Start(...) to start the wdt immediately.
- * (+) Use HS_HAL_WDT_Stop(...) to stop the wdt immediately.
- * (+) Use HS_HAL_WDT_Feed(...) to feed the watchdog and it will restart the counter immediately.
- * @endverbatim
- *
- * @author HiView SoC Software Team
- * @version 0.0.1
- * @date 2022-08-22
- */
- #ifndef __HV_CAL_HDMIINC_H__
- #define __HV_CAL_HDMIINC_H__
- #include "Common/hv_comm_DataType.h"
- #include "hv_cal_HdmiRx.h"
- #include "hv_comm_Define.h"
- #include "ProjectConfig.h"
- typedef struct _HdmiRxLaneCED
- {
- USHORT16 usLane0CED;
- USHORT16 usLane1CED;
- USHORT16 usLane2CED;
- USHORT16 usLane3CED;
- }HdmiRxLaneCED;
- typedef struct _CalAmdSpdInfoParam
- {
- BOOL bFreeSyncSupported;
- BOOL bFreeSyncEnabled; /* Sync Should Prapared to Entered FreeSync */
- BOOL bFreeSyncActive; /* Entered the Frame changed status */
- BOOL bNativeColorSpaceActive;
- BOOL bLocalDimmingDisabled; /* 1: disabled Local Dimming. 0: enable the Local Dimming */
- BOOL bGamma26EOTFActive;
- BOOL bGamma22EOTFActive;
- BOOL bBT709EOTFActive;
- BOOL bSRGBEOTFActive;
- UCHAR8 ucVersion;
- UCHAR8 ucFreeSyncMinReFresh;
- UCHAR8 ucFreeSyncMaxReFresh;
- UCHAR8 ucBrightneesControl;
- }CalAmdSpdInfoParam;
- typedef struct _CalNvidiaVendSpecInfoParam
- {
- UCHAR8 ucModeName[HV_VENDOR_DESCRIP_LEN];
- SouceInfoType eSourceInfoCode;
- }CalNvidiaVendSpecInfoParam;
- typedef struct _CalVRRMDContent
- {
- VfrVRRType eVfrVrrType;
- BOOL bVRREnable; /* Including All VfrVRRType: bVRRGamingEnable and bVRRQMSEnable */
- UCHAR8 ucFVAFactorM1; /* VfrVRRType_HDMIMDGamingFVA Only */
- UCHAR8 ucBase_Vfront;
- UCHAR8 ucNextTFR; /* VfrVRRType_HDMIMDQMS Only */
- USHORT16 usBaseRefreshRate;
- }CalVRRMDContent;
- typedef struct _CalVRRInfoParam
- {
- BOOL bVRREnable; /* HV_TRUE:Source Entered VRR; HV_HV_FALSE:Source Out Of VRR */
- VendorType eVendor; /* Type == VendorType_UnKnown±íʾ·ÇVRR±¨ÎÄ */
- union
- {
- CalAmdSpdInfoParam stAmdSpdInfPara;
- CalNvidiaVendSpecInfoParam stNvidiaVSIPara;
- CalVRRMDContent stCommVRRinMD; /* HF-VRR with EMP */
- } uvsi;
- }CalVRRInfoParam;
- typedef struct _CalVideoTimingParam
- {
- USHORT16 usHTotal;
- USHORT16 usHFProch;
- USHORT16 usHSyncW;
- USHORT16 usHBProch;
- USHORT16 usHActive;
- USHORT16 usHPol;
- USHORT16 usVTotal;
- USHORT16 usVFProch;
- USHORT16 usVSyncW;
- USHORT16 usVBProch;
- USHORT16 usVActive;
- USHORT16 usVPol;
- USHORT16 usFrameRate;
- BOOL bInterlacedMode; /* Interlace mode or not */
- BOOL bIsEnterALLM; /* ALLM Mode Open or Closed */
- BOOL bIsNoSignal; /* Ture:表示HDMI未解析出信号,无法SyncOK ,提示"No Signal";
- False:表示HDMI可以正确识别信号,但是无法解析出Timing 及关键参数 AVI etc,提示"Not Support".
- Only 返回 HV_FAILURE 时候该字段有意义 */
- UINT32 uiFreqKHz; /* RX Received Pixel Clock KHz */
- UINT32 uiHFreqHz; /*horizontal frequency*/
- UINT32 uiRxDpllSetFreqKHz; /* RX dpll set Pixel Clock KHz: 0表示未配置,非0表示已经配置 */
- FLOAT32 fFrameRate; /* Detail of the Frame rate Detected */
- }CalVideoTimingParam;
- #define MAX_PACKET_DATA_SIZE 28
- typedef struct _PacketInfo
- {
- UCHAR8 ucVersion;
- UCHAR8 ucLegth;
- UCHAR8 ucData[MAX_PACKET_DATA_SIZE];
- }PacketInfo;
- typedef struct _CalVideoColorParam
- {
- ColorFormatType eClrFormat;
- ColorSpaceType eClrSpace;
- ColorDepthType eClrDepth;
- ColorRangeType eClrRange;
- CorlorContentType eContent;
- UCHAR8 ucPixelRepe;
- }CalVideoColorParam;
- typedef struct _CalAudioPara
- {
- AudioSampleRate enSampleRate;
- AudioSampleDepth enSampleDepth;
- AudioCodingType enCodingType;
- BOOL bAudClkStable;
- UCHAR8 ucChnlCnt;
- UINT32 uiCtsValue;
- UINT32 uiNValue;
- }CalAudioPara;
- typedef struct _CalHDRParam
- {
- HDREOTF xType;
- UCHAR8 ucMetaID;
- USHORT16 usPrimX0;
- USHORT16 usPrimY0;
- USHORT16 usPrimX1;
- USHORT16 usPrimY1;
- USHORT16 usPrimX2;
- USHORT16 usPrimY2;
- USHORT16 usWhtX;
- USHORT16 usWhtY;
- USHORT16 usMaxLum;
- USHORT16 usMinLum;
- USHORT16 usMaxCntn;
- USHORT16 usMaxFrmAvg;
- }CalHDRParam;
- /**
- * @brief Init the HDMI Interrupt At Beginning.
- * @param[in] ucPortIndex used for the HDMI RX.
- * @return 0: Success or 1: Fail.
- */
- Status Hv_Cal_HdmiRx_InterruptInitEvent(UCHAR8 ucPortIndex);
- /**
- * @brief Clear the HDMI Interrupt without any Event report.
- * @param[in] ucPortIndex used for the HDMI RX.
- * @param[in] pstHdmiIntRxStatus used for the Default Opened Interrupt Value.
- * @return 0: Success or 1: Fail.
- */
- Status Hv_Cal_HdmiRx_InterruptClearEvent(UCHAR8 ucPortIndex, HdmiRxIntStatus *pstHdmiIntRxStatus);
- /**
- * @brief HDMI Add InterruptEvent
- * @param[in] ucPortIndex used for the HDMI RX.
- * @return Status with 0: Success, 1: Failure.
- */
- Status Hv_Cal_HdmiRx_AddInterruptEvent(UCHAR8 ucPortIndex, const HdmiRxIntStatus *pstHdmiIntRxStatus);
- /**
- * @brief HDMI Remove InterruptEvent
- * @param[in] ucPortIndex used for the HDMI RX.
- * @return Status with 0: Success, 1: Failure.
- */
- Status Hv_Cal_HdmiRx_RemoveInterruptEvent(UCHAR8 ucPortIndex, const HdmiRxIntStatus *pstHdmiIntRxStatus);
- /**
- * @brief Init +5V/cable connect status detect.
- * @param[in]: Port Index of the cable
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_CableConnectInit(UCHAR8 ucPortIndex);
- /**
- * @brief Get +5V/cable connect status software value.
- * @param[in] Port Index of the cable
- * @return Connected or Not.
- */
- BOOL Hv_Cal_HdmiRx_GetCableStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Get +5V/cable connect status software value.
- * @param[in] Port Index of the cable
- * @return Connected or Not.
- */
- BOOL Hv_Cal_HdmiRx_GetCableConnectStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Switch HDMI Rx mode.
- * @param[in] bEnable: 1 for HDMI 2.0, 0 for HDMI 2.1
- * @return VOID.
- */
- Status Hv_Cal_HdmiRx_SetHdmi21Enable(UCHAR8 ucPortIndex, BOOL bEnable);
- /**
- * @brief Set CEC default recieve address.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- **/
- Status Hv_Cal_HdmiRx_CecInit(UCHAR8 ucPortIndex);
- /**
- * @brief CEC send data.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- **/
- Status Hv_Cal_HdmiRx_SendCecMsg(UCHAR8 ucPortIndex, UCHAR8 *pucBuf, UCHAR8 ucLen);
- /**
- * @brief Set CEC revice data.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- **/
- UCHAR8 Hv_Cal_HdmiRx_ReceiveCecMsg(UCHAR8 ucPortIndex, UCHAR8 *pucBuf);
- /**
- * @brief Ddcci init on HDMI.
- * @param[in] Port Index of HDMI.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_DdcInit(UCHAR8 ucPortIndex);
- /**
- * @brief Action for the HDMI Enter the Standby.
- * @param[in] Port Index of HDMI.
- * @param[in] Status of Enter or Leave the standby.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_EnterStandby(UCHAR8 ucPortIndex, BOOL bEnterStandby);
- /**
- * @brief set the eq value which to be saved
- * @param[in] Port Index of HDMI.
- * @param[in] eq value.
- */
- void Hv_Cal_HdmiRx_WriteEqToStandby(UCHAR8 ucPortIndex, UINT32 uiVal);
- /**
- * @brief get the eq value which to be saved
- * @param[in] Port Index of HDMI.
- * @param[out] eq value.
- */
- void Hv_Cal_HdmiRx_ReadEqFromStandby(UCHAR8 ucPortIndex, UINT32 *puiVal);
- /**
- * @brief Received the DDCCI message.
- * @param[in] Port Index of HDMI.
- * @return Status of this Function and the msg from the DDC.
- */
- UCHAR8 Hv_Cal_HdmiRx_RecvDdcMsg(UCHAR8 ucPortIndex, UCHAR8 *pucBuf);
- /**
- * @brief Send the DDCCI message.
- * @param[in] Port Index of HDMI and the msg want to send with DDC.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_SendDdcMsg(UCHAR8 ucPortIndex, UINT32 uiLen, UCHAR8 *pucBuf);
- /**
- * @brief Clear the ddcci register.
- * @param[in] Port Index of HDMI.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_ClrDdcSendReg(UCHAR8 ucPortIndex);
- /**
- * @brief Clear the msg with NULL for DDC.
- * @param[in] Port Index of HDMI.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_DdcNullMsg(UCHAR8 ucPortIndex, UCHAR8 *pucBuf);
- /**
- * @brief Calculate the CheckSum of the DDC.
- * @param[in] Port Index of HDMI and the Value of the DDC message.
- * @return Check sum of Byte of the message.
- */
- UCHAR8 Hv_Cal_HdmiRx_DdcCheckSum(UCHAR8 ucPortIndex, const UCHAR8 *pucBuf, UCHAR8 ucLen);
- /**
- * @brief Set the DDC/CI on/off.
- * @param[in] Port Index of HDMI.
- * @param[in] 1: on, 0: off.
- */
- VOID Hv_Cal_HdmiRx_DdcciEnable(UCHAR8 ucPortIndex, BOOL bEnable);
- /**
- * @brief Set the DDC Slave Address.
- * @param[in] Port Index of HDMI.
- * @param[in] Slave Addr.
- */
- VOID Hv_Cal_HdmiRx_SetDdcciAddr(UCHAR8 ucPortIndex, UCHAR8 ucSlvAddr);
- /**
- * @brief Get the DDC Slave Address.
- * @param[in] Port Index of HDMI.
- * @return Status of this Function and the Address of the DDC Slave.
- */
- Status Hv_Cal_HdmiRx_GetDdcSlvAddr(UCHAR8 ucPortIndex, UCHAR8 *pucSlvAddr);
- /**
- * @brief Get the Interrupt status.
- * @param[in] Port Index of HDMI.
- * @return Status of the Interrupt.
- */
- Status Hv_Cal_HdmiRx_GetInterruptEvent(UCHAR8 ucPortIndex, HdmiRxInterruptEvent * pstIntEvent);
- /**
- * @brief Output Hotplug HIGH.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_HPDOn(UCHAR8 ucPortIndex);
- /**
- * @brief Output Hotplug HIGH with the Source 5V provide HPD
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_HPDOnWithSource5V(UCHAR8 ucPortIndex);
- /**
- * @brief Output Hotplug LOW.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_HPDOff(UCHAR8 ucPortIndex);
- /**
- * @brief Output Hotplug LOW with the Source 5V provide HPD
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_HPDOffWithSource5V(UCHAR8 ucPortIndex);
- /**
- * @brief Init Hotplug LOW.
- * @param[in]
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_HPDIOInit(UCHAR8 ucPortIndex);
- /**
- * @brief Enable the HDMI Edid and Esegment.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_EdidReadEnable(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi IRQs trigger.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_SetInterruptTriggerRule(UCHAR8 ucPortIndex);
- /**
- * @brief Clear hdmi IRQs status.
- * @param[in] Port Index of HDMI and the status handled for the interrupt.
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_ClearInterruptStatus(UCHAR8 ucPortIndex, HdmiRxInterruptEvent * pstIntEvent);
- /**
- * @brief Closed the register EDID when the EDID Used the out device EEPROM.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_CloseRegisterEdid(UCHAR8 ucPortIndex);
- /**
- * @brief Open the register EDID instead of the EDID Used the out device EEPROM.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_OpenRegisterEdid(UCHAR8 ucPortIndex, UCHAR8 ucSupportESegment);
- /**
- * @brief Get hdmi events from hdmi IRQ status
- * @param[in] pstHdmiRxStatus: hdmi IRQ status, pstHdmiRxEventList: hdmi event list
- * @return HV_SUCCESS or HV_FAILURE
- */
- Status Hv_Cal_HdmiRx_GetInputPortEvent(HdmiRxIntStatus *pstHdmiRxStatus, HDMIRxIntEventList *pstHdmiRxEventList);
- /**
- * @brief Update the EDID of HDMI.
- * @param[in] Port Index of HDMI, EDID length and EDID Value.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_UpdateEdidData(UCHAR8 ucPortIndex, USHORT16 usLength, const UCHAR8 *pucEdidData);
- /**
- * @brief SCDC switch Control.
- * @param[in] Port Index of HDMI and the switch for the SCDC.
- * @param[in] The switch of the SCDC.
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_ControlScdcByHPDSwitch(UCHAR8 ucPortIndex, BOOL bSwitch);
- /**
- * @brief SCDC Enable switch.
- * @param[in] Port Index of HDMI and the switch for the SCDC.
- * @param[in] The switch of the SCDC Enable.
- * @return None.
- */
- VOID Hv_Cal_HdmiRx_EnableScdcBySwitch(UCHAR8 ucPortIndex, BOOL bSwitch);
- /**
- * @brief Detect HDMI Rx aln lock.
- * @param[in] Port Index of HDMI.
- * @param[in] Clock Lane Swap ID.
- * @return HV_TRUE of HV_FALSE.
- */
- BOOL Hv_Cal_HdmiRx_IsClockStable(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief Detect HDMI Timing Statble.
- * @param[in] Port Index of HDMI
- * @return HV_TRUE of HV_FALSE.
- */
- BOOL Hv_Cal_HdmiRx_IsTimingStable(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief Reset the HDMI RX Moudle.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_Reset(UCHAR8 ucPortIndex);
- /**
- * @brief Reset the HDMI RX Related PHY.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_ResetPhy(UCHAR8 ucPortIndex);
- /**
- * @brief Reset the HDMI When Signal Loss.
- * @param[in] Port Index of HDMI
- * @return Status of this Function.
- */
- Status Hv_Cal_HdmiRx_ResetSingLoss(UCHAR8 ucPortIndex);
- /**
- * @brief Set the HDMI TMDS Pol Inv.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS as Received.
- */
- Status Hv_Cal_HdmiRx_ConfigTmdsPolInv(UCHAR8 ucPortIndex, UCHAR8 ucTmdsPolInv);
- /**
- * @brief Check if the HDMI Edid is Valid.
- * @param[in] Port Index of HDMI
- * @return HV_TRUE as Valid, HV_FALSE as Unvalid.
- */
- BOOL Hv_Cal_HdmiRx_IsEdidInvalid(UCHAR8 ucPortIndex);
- /**
- * @brief Get the EDID Value.
- * @param[in] Port Index of HDMI
- * @return Value of the EDID.
- */
- Status Hv_Cal_HdmiRx_GetEdidData(UCHAR8 ucPortIndex, UCHAR8 *pucEdidData);
- /**
- * @brief Set the Value for debug on Misc register.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetMiscForDebug(UCHAR8 ucPortIndex, UINT32 uiValue);
- /**
- * @brief Get frl rate
- * @param[in] Port Index of HDMI
- * @return 0-6
- */
- UCHAR8 Hv_Cal_HdmiRx_GetFrlRate(UCHAR8 ucPortIndex);
- /**
- * @brief Get hdmi sink version
- * @param[in] Port Index of HDMI
- * @return 0 or 1
- */
- UCHAR8 Hv_Cal_HdmiRx_GetSinkVersion(UCHAR8 ucPortIndex);
- /**
- * @brief Get hdmi source version
- * @param[in] Port Index of HDMI
- * @return 0 or 1
- */
- UCHAR8 Hv_Cal_HdmiRx_GetSourceVersion(UCHAR8 ucPortIndex);
- /**
- * @brief Get hdmi TMDS bitclkratio
- * @param[in] Port Index of HDMI
- * @return 0 or 1
- */
- UCHAR8 Hv_Cal_HdmiRx_GetScdcTmdsBitClkRatio(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief Init hdmi TMDS link path.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- //VOID Hv_Cal_HdmiRx_TmdsLinkInit(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi TMDS deskew setting.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_TmdsDeskewInit(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi TMDS alignment setting.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_TmdsCharacterAlignInit(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi TMDS lane clock setting.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_TmdsLaneClockInit(UCHAR8 ucPortIndex);
- /**
- * @brief TMDS 4-Lane settings
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_Tmds4LaneMode(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief FRL 3-Lane settings
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_Frl3LaneMode(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief FRL 4-Lane settings
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_Frl4LaneMode(UCHAR8 ucPortIndex);
- /**
- * @brief HDMI Rx Lane mode switch.
- * @param[in] Port Index of HDMI and Lane mode
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRX_PhyClockInit(UCHAR8 ucPortIndex, UCHAR8 ucLaneMode, UCHAR8 ucLaneSwap);
- /**
- * @brief HDMI Rx Phy Gear Mode change.
- * @param[in] Port Index of HDMI and gear mode.
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRX_SwitchPhyGearMode(UCHAR8 ucPortIndex, HdmiRxGearMode ucGrearMode, UCHAR8 ucLaneSwap);
- /**
- * @brief HDMI Rx Phy Gear Mode Robust checking.
- * @param[in] Port Index of HDMI and gear mode.
- * @return HV_TRUE for Ratio mode and HV_TRUE for Normal.
- */
- BOOL Hv_Cal_HdmiRX_RobustCheckRatioMode(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief Get Phy Gear Mode with freq.
- * @param[in] Port Index of HDMI and gear mode now configured.
- * @return Gear Mode of the new value.
- */
- HdmiRxGearMode Hv_Cal_HdmiRx_GetGearMode(UCHAR8 ucPortIndex, HdmiRxGearMode emGearModeCfg, UCHAR8 ucLaneSwap);
- /**
- * @brief Configure the PHY OFFSET.
- * @param[in] Port Index of HDMI.
- * @return HV_TRUE for HV_SUCCESS.
- */
- BOOL Hv_Cal_HdmiRX_CfgPhyOffset(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi FRL link path.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_FrlInit(UCHAR8 ucPortIndex);
- /**
- * @brief Get HDMI Rx AVI info.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_GetAVIPara(UCHAR8 ucPortIndex, CalVideoColorParam *pstVideoAVIPara);
- /**
- * @brief Get HDMI Rx audio info.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_GetAudioPara(UCHAR8 ucPortIndex, CalAudioPara *pstAudioPara);
- /**
- * @brief Get AVI Info VIC.
- * @param[in] Port Index of HDMI
- * @return VIC in AVI.
- */
- UCHAR8 Hv_Cal_HdmiRx_GetVic(UCHAR8 ucPortIndex);
- /**
- * @brief Get TMDS Clk (KHz).
- * @param[in] Port Index of HDMI
- * @return
- */
- UINT32 Hv_Cal_HdmiRx_GetTmdsClk(UCHAR8 ucPortIndex);
- /**
- * @brief Get FrameRate.
- * @param[in] Port Index of HDMI
- * @return Frame Rate of the Timing.
- */
- UINT32 Hv_Cal_HdmiRx_GetFrameRate(UCHAR8 ucPortIndex);
- /**
- * @brief Get ColorFormat.
- * @param[in] Port Index of HDMI
- * @return The color format type of current Vedio, detail ref the define of ColorFormatType.
- */
- ColorFormatType Hv_Cal_HdmiRx_GetColorFormat(UCHAR8 ucPortIndex);
- /**
- * @brief Get Aspect Ratio for current Vedio.
- * @param[in] Port Index of HDMI
- * @return The ratio type aspected, detail ref the define of PicAspRatioType.
- */
- PicAspRatioType Hv_Cal_HdmiRx_GetPicAspRatio(UCHAR8 ucPortIndex);
- /**
- * @brief Get ColorDepth.
- * @param[in] Port Index of HDMI
- * @return
- */
- ColorDepthType Hv_Cal_HdmiRx_GetColorDepth(UCHAR8 ucPortIndex);
- /**
- * @brief Init hdmi SCDC and packet settings.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- Status Hv_Cal_HdmiRx_Init(UCHAR8 ucPortIndex, UCHAR8 ucLanSwp);
- /**
- * @brief Init hdmi SCDC and packet settings.
- * @param[in] Port Index of HDMI
- * @return VOID.
- */
- VOID Hv_Cal_HdmiRx_InitWithCtsOn(UCHAR8 ucPortIndex);
- /**
- * @brief Init HDMI Rx Audio path.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_AudioInit(UCHAR8 ucPortIndex);
- /**
- * @brief Reset the Audio Fifo when the fifo is Overflow or Underflow.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ResetAudioFifo(UCHAR8 ucPortIndex);
- /**
- * @brief Reset the Audio of HDMI IP Inner.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- VOID Hv_Cal_HdmiRx_ResetSwAudio(UCHAR8 ucPortIndex);
- /**
- * @brief Set the Audio Fifo Start Value.
- * @param[in] Port Index of HDMI, the value of the audio fifo to play.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetAudioFifoStartValue(UCHAR8 ucPortIndex, UINT32 uiValue);
- /**
- * @brief Toggle the Auto EQ switch for PHY.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_TogglePhyCtl(UCHAR8 ucPortIndex);
- /**
- * @brief Get HDR data.
- * @param[in] Port Index of HDMI
- * @return Parameters of HDR send from Source.
- */
- Status Hv_Cal_HdmiRx_GetHDRPara(UCHAR8 ucPortIndex, CalHDRParam *pstHDRPara);
- /**
- * @brief Get ALLM mode From VSI.
- * @param[in] Port Index of HDMI
- * @return HV_TRUE: Get the ALLM mode from the HF-VSI. HV_FALSE: Leave the ALLM Mode
- */
- BOOL Hv_Cal_HdmiRx_GetAllmModeInfo(UCHAR8 ucPortIndex, BOOL *pbAllmMode);
- /**
- * @brief set video colordepth from GCP package.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetColorDepth(UCHAR8 ucPortIndex, UCHAR8 ucColorDepSelect, UCHAR8 ucColorDepValue);
- /**
- * @brief Init hdmi phy settings.
- * @param[in] Port Index of HDMI
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_PhyInit(UCHAR8 ucPortIndex, UCHAR8 ucInvPn);
- /**
- * @brief Parse the SPD of AMD.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE.
- * @return VRR value from the SPD.
- */
- Status Hv_Cal_HdmiRx_GetAMDVendSpecInfoPara(UCHAR8 ucPortIndex, CalVRRInfoParam *pstVendSpecInfoPara);
- /**
- * @brief Parse the SPD of NVIDIA.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE.
- * @return VRR value from the SPD.
- */
- Status Hv_Cal_HdmiRx_GetSPDInfoPara(UCHAR8 ucPortIndex, CalVRRInfoParam *pstSPDPara);
- /**
- * @brief Clear the Packet Fifo.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE.
- */
- Status Hv_Cal_HdmiRx_ClearPacketFifo(UCHAR8 ucPortIndex);
- /**
- * @brief Set the Packet type for the FIFO.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE.
- */
- Status Hv_Cal_HdmiRx_SelectAndEnPacketFifo(UCHAR8 ucPortIndex);
- /**
- * @brief Set the Packet FIFO thread hold.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE.
- */
- Status Hv_Cal_HdmiRx_ConfigPacketFifoThreadhold(UCHAR8 ucPortIndex);
- /**
- * @brief Get the Packet FIFO Data.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE and the date of the packet.
- */
- Status Hv_Cal_HdmiRx_GetPacketData(UCHAR8 ucPortIndex, PacketInfo *pstPacketData);
- /**
- * @brief Open the FIFO new entry interrput with new packet received handle.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE .
- */
- Status Hv_Cal_HdmiRx_PacketFifoIntrruptInit(UCHAR8 ucPortIndex);
- /**
- * @brief Clear of the MR Timing in HDMI RX.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE .
- */
- Status Hv_Cal_HdmiRx_ClrMrTiming(UCHAR8 ucPortIndex);
- /**
- * @brief Clear of the Aln Status Flag in HDMI RX.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE .
- */
- Status Hv_Cal_HdmiRx_ClrAlnChangFlag(UCHAR8 ucPortIndex);
- /**
- * @brief Reset HDMI Aln and Deskew.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE .
- */
- Status Hv_Cal_HdmiRx_ResetAlnDeskew(UCHAR8 ucPortIndex);
- /**
- * @brief Clear HDMI Aln and Deskew.
- * @param[in] Port Index of HDMI
- * @return HV_SUCCESS or FAILSE .
- */
- Status Hv_Cal_HdmiRx_ClrAlnDeskew(UCHAR8 ucPortIndex);
- /**
- * @brief Get the Audio status.
- * @param[in] Port Index of HDMI
- * @return HV_TRUE is Status ready .
- */
- BOOL Hv_Cal_HdmiRx_GetAudioStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Action for the Cable plug in or out.
- * @param[in] Port Index of HDMI and the cable status.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_CableConnectAction(UCHAR8 ucPortIndex, BOOL bCableSta, UCHAR8 ucLaneSwap);
- /**
- * @brief Set the FRL mode.
- * @param[in] Port Index of HDMI and the Mode switch.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetFrlModeOn(UCHAR8 ucPortIndex, UCHAR8 ucModeSwitch);
- /**
- * @brief Get the Pixel repeat factor.
- * @param[in] Port Index of HDMI.
- * @return Factor of the Pixel repeat.
- */
- UINT32 Hv_Cal_HdmiRx_GetPixelRepeatFactor(UCHAR8 ucPortIndex);
- /**
- * @brief Get the Interlace status.
- * @param[in] Port Index of HDMI.
- * @return 1 is for interlace .
- */
- UINT32 Hv_Cal_HdmiRx_GetInterlacedStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Get the AvMute status.
- * @param[in] Port Index of HDMI.
- * @return True is for Enter AVMute .
- */
- BOOL Hv_Cal_HdmiRx_GetAvMuteStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Change the Timing change check mode.
- * @param[in] Port Index of HDMI and frame rate report switch.
- * @return status of the function.
- */
- Status Hv_Cal_HdmiRx_SetFrameRateTimingChange(UCHAR8 ucPortIndex, BOOL bRmvFrameRate);
- /**
- * @brief Get the Segment value for EDDC.
- * @param[in] Port Index of HDMI.
- * @return Segment value from the source.
- */
- UINT32 Hv_Cal_HDMIRX_GetSegment(UCHAR8 ucPortIndex);
- /**
- * @brief Set the AVMute with HDMI autoly.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetAutoVmute(UCHAR8 ucPortIndex);
- /**
- * @brief Closed the AVMute with HDMI autoly.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ClearAutoVmute(UCHAR8 ucPortIndex);
- /**
- * @brief Change the Timing change Frame rate threhold.
- * @param[in] Port Index of HDMI.
- * @param[in] Frame Rate of the threhold for timing change.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ChangeFrameTh(UCHAR8 ucPortIndex, UINT32 uiFrameRateTh);
- /**
- * @brief Set the value of the frequency.
- * @param[in] Port Index of HDMI.
- * @param[in] Lowest frequency and the Highest of the frequency.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetClkDetFreq(UCHAR8 ucPortIndex, UINT32 uiFreqLow, UINT32 uiFreqHigh);
- /**
- * @brief Set the frequency of the Timing stable.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetTmdsTimeStableFreq(UCHAR8 ucPortIndex);
- /**
- * @brief Set the Clock unstable interrupt switch.
- * @param[in] Port Index of HDMI switch of the interrupt.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetTmdsClkUnstableInterrupt(UCHAR8 ucPortIndex, BOOL bSwitch);
- /**
- * @brief Get the Mata Date for the VRR with EMP(0x7F) Packet.
- * @param[in] Port Index of HDMI.
- * @return VRR parameters on EMP.
- */
- Status Hv_Cal_HdmiRx_GetMDVrrPara(UCHAR8 ucPortIndex, CalVRRInfoParam* pstVrrMdPara);
- /**
- * @brief Set the HDCP Rx Status for retriger the HDCP 2x Auth.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetHDCPRxStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Open or Closed the packet error interrupt.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetPacketErrorInt(UCHAR8 ucPortIndex, BOOL bSwitch);
- /**
- * @brief Clear the Packet Error Value.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ClearCEDValue(UCHAR8 ucPortIndex);
- /**
- * @brief Get the Packet Error Value.
- * @param[in] Port Index of HDMI.
- * @return Number of the CED Value.
- */
- Status Hv_Cal_HdmiRx_GetLaneCEDValue(UCHAR8 ucPortIndex, HdmiRxLaneCED *pstLaneCedValue, UCHAR8 ucLaneSwap);
- /**
- * @brief Set the Timing info on Manu Factor of SCDC which is used for Auto testing checking.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetTimingToManuFactorSpec(UCHAR8 ucPortIndex, CalVideoTimingParam *pstTimingPara);
- /**
- * @brief Set the SCDC Manu Factor.
- * @param[in] Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_InitSCDCManuFactor(UCHAR8 ucPortIndex, CHAR8 *pacManufact, UINT32 uiMManufactOUI);
- /**
- * @brief Get the Interrupt Enable value for Print.
- * @param[in] Port Index of HDMI.
- * @return The Interrupt status Value to configure.
- */
- UINT32 Hv_Cal_HdmiRx_InterruptEnPrint(UCHAR8 ucPortIndex, UCHAR8 ucIntr);
- /**
- * @brief Get Current Timing parameters decoded by HDMI.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[out] Details of the Timing parameters, including the H V CD information etc.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_GetTimingHVInfo(UCHAR8 ucPortIndex, CalVideoTimingParam *pstTimingPara, UCHAR8 ucLaneSwap);
- /**
- * @brief Open the TMDS Auto EQ.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return None.
- */
- VOID Hv_Cal_HdmiRx_OpenTmdsAutoEq(UCHAR8 ucPortIndex);
- /**
- * @brief Open the FRL Auto EQ.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return None.
- */
- VOID Hv_Cal_HdmiRx_OpenFrlAutoEq(UCHAR8 ucPortIndex);
- /**
- * @brief Configure the Init EQ value to start.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] Eq Value to configure.
- * @return : Eq Value configured.
- */
- UCHAR8 Hv_Cal_HdmiRx_CfgHdmiAutoEQInitValue(UCHAR8 ucPortIndex, UCHAR8 ucCfgEqInitValue);
- /**
- * @brief Configure the Min Htotal for HDMI to Gen the Timing.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] Swith and the Min Htotal Value.
- * @return : None.
- */
- VOID Hv_Cal_HdmiRx_ConfigureMinHtotal(UCHAR8 ucPortIndex, UCHAR8 ucCfgSwitch, USHORT16 usHtotalMinValue);
- /**
- * @brief Get Current Audio CTS and N decode with packet.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[out] Value of CTS and N.
- * @return : None.
- */
- VOID Hv_Cal_HdmiRx_GetAudioCurrentCTSN(UCHAR8 ucPortIndex, UINT32 *puiCTS, UINT32 *puiN);
- /**
- * @brief Reset and clear the HDMI decoding para.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SWCfgReset(UCHAR8 ucPortIndex);
- /**
- * @brief Checking if there is a stable timing decoded by the HDMI.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return HV_TRUE: No Stable timing ouput; HV_FALSE:Timing is stable for show.
- */
- BOOL HV_Cal_HdmirRx_CheckNoTiming(UCHAR8 ucPortIndex);
- /**
- * @brief Reset SCDC with the 5V Change.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return : None.
- */
- VOID HV_Cal_HdmirRx_ResetScdcWith5V(UCHAR8 ucPortIndex);
- /**
- * @brief Reset SCDC with the 5V Change.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return : None.
- */
- VOID HV_Cal_HdmirRx_ResetScdcWith5VCtsOn(UCHAR8 ucPortIndex);
- /**
- * @brief Get current AVI VIC for Timing checking.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return : VIC of the current AVI.
- */
- UINT32 Hv_Cal_HdmiRx_GetVicForCurrentTiming(UCHAR8 ucPortIndex);
- /**
- * @brief Check current AVI Change received or not.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return :Status of the AVI Change Status Received.
- */
- UINT32 Hv_Cal_HdmiRx_GetAviChangeEvent(UCHAR8 ucPortIndex);
- /**
- * @brief Check current HDMI Esegment received or not.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return HV_TRUE:Esegment Received; HV_FALSE:Esegment Not Received.
- */
- BOOL Hv_Cal_HdmiRx_IsEsegmentIsrRcved(UCHAR8 ucPortIndex);
- /**
- * @brief Get HDMI HDCP Interrupt Event Status.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the HDCP Interrupt.
- */
- UINT32 Hv_Cal_HdmiRx_GetHdcpIsrStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Clear the HDCP2X Rx Status for Nothing Transfered to Source.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return None.
- */
- VOID Hv_Cal_HdmiRx_ClearHDCPRxStatus(UCHAR8 ucPortIndex);
- /**
- * @brief Get current HDMI Timing Vedio Mode.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return HV_TRUE:DVI Mode; HV_FALSE:HDMI Mode.
- */
- BOOL Hv_Cal_HdmiRx_GetDviMode(UCHAR8 ucPortIndex);
- /**
- * @brief Get Phy is Locked or not.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return HV_TRUE : PHY Is locked; HV_FALSE : PHY is UnLocked.
- */
- BOOL Hv_Cal_HdmiRX_IsPhyLocked(UCHAR8 ucPortIndex);
- /**
- * @brief Set the Frame Trigger Postion of Hdmi.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] HDMI OSR value for the frequency.
- * @return Status of the function.
- */
- VOID Hv_Cal_HdmiRx_ConfigureFrmTrigPos(UCHAR8 ucPortIndex, UCHAR8 ucGrearMode);
- /**
- * @brief Set the HDCP Hdmi Mode.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] bHdmiMode 1 for HDMI and 0 for DVI.
- * @return Status of the function.
- */
- VOID Hv_Cal_HdmiRx_SetHDCPHdmiMode(UCHAR8 ucPortIndex, BOOL bHdmiMode);
- VOID Hv_Cal_HdmiRx_SetHDCP1Xstatus(UCHAR8 ucPortIndex, BOOL bHdmiMode);
- /**
- * @brief Set the EQ with Software confiured.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_EnterTmdsSwEq(UCHAR8 ucPortIndex);
- /**
- * @brief Set the EQ with Hardeware Auto confiured.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_EnterTmdsHwAutoEq(UCHAR8 ucPortIndex);
- /**
- * @brief Finished the EQ Configure.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_FinishTmdsSwEq(UCHAR8 ucPortIndex);
- /**
- * @brief Set the EQ with Confgiure Date.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] pusSwEqValue The 3Lane Eq Value to be configured
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetSwEqValue(UCHAR8 ucPortIndex, const USHORT16 *pusSwEqValue, UCHAR8 ucLaneSwap);
- /**
- * @brief Check the TMDS Signal.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return HV_TRUE : Received the TMDS signal; HV_FALSE : Do not receive the Signal.
- */
- BOOL Hv_Cal_HdmiRx_CheckTmdsSignal(UCHAR8 ucPortIndex);
- /**
- * @brief Open the Packet Fifo of the HDMI.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_OpenPdFifo(UCHAR8 ucPortIndex);
- /**
- * @brief Close the Packet Fifo of HDMI.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ClosedPdFifo(UCHAR8 ucPortIndex);
- /**
- * @brief Release the Phase configure.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_ReleasePhaseConfig(UCHAR8 ucPortIndex);
- /**
- * @brief Configure the Phase with the color depth.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @param[in] Color Deepth of the HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_PhaseConfig(UCHAR8 ucPortIndex, ColorDepthType eColorDeepth);
- /**
- * @brief Remove the Interrupt Event of the HDCP.
- * @param[in] ucPortIndex Port Index of HDMI.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_InterruptRmHdcpEvent(UCHAR8 ucPortIndex);
- /**
- * @brief Reset The TMDS Pre of Sw.
- * @param[in] Port Number used for the HDMI RX.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_TmdsSwReset(UCHAR8 ucPortIndex);
- /**
- * @brief Reset The TMDS Pre of Bus.
- * @param[in] Port Number used for the HDMI RX.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_BusSwReset(UCHAR8 ucPortIndex);
- /**
- * @brief Reset The Mode of Pixel.
- * @param[in] Port Number used for the HDMI RX.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_PixelSwReset(UCHAR8 ucPortIndex);
- /**
- * @brief Reset The Mode of Vid.
- * @param[in] Port Number used for the HDMI RX.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_VidSwReset(UCHAR8 ucPortIndex);
- /**
- * @brief If the PHY is fast locked.
- * @param[in] Port Number used for the HDMI RX.
- * @return TRUE is Loced False is unlocked.
- */
- BOOL Hv_Cal_HdmiRX_IsPhyFastLocked(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- /**
- * @brief Set Sw EQ form the HW Eq Value.
- * @param[in] Port Number used for the HDMI RX.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetSwEqFromHwValue(UCHAR8 ucPortIndex);
- /**
- * @brief If the EQ is configured with Software EQ.
- * @param[in] Port Number used for the HDMI RX.
- * @return TRUE is Loced False is unlocked.
- */
- BOOL Hv_Cal_HdmiRx_IsTmdsSwEqCfgured(UCHAR8 ucPortIndex);
- /**
- * @brief Get the TMDS Clock Frequency.
- * @param[in] Port Number used for the HDMI RX.
- * @return Value of the TMDS Clock Freqency with 100K.
- */
- USHORT16 Hv_Cal_HdmiRx_GetTmdsClkFreq(UCHAR8 ucPortIndex);
- /**
- * @brief check ddc current state
- * @param[in] port id
- * @return value of the check result
- */
- BOOL Hv_Cal_HdmiRx_DdcCurStateIsIdle(UCHAR8 ucPortIndex);
- /**
- * @brief Set HDMI Audio CTS N Measue N or CTS
- * @param[in] port id
- * @param[in] Measure Mode : 1 For Cts, 2 is N, 0 is reset.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetCtsNMeasMode(UCHAR8 ucPortIndex, UCHAR8 ucMeasMode);
- /**
- * @brief Set Audio Clock use the Auto or Manual
- * @param[in] port id
- * @param[in] TRUE is for the Manual Audio CTS N Mode
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SwitchAudioManualClk(UCHAR8 ucPortIndex, BOOL bAudioManual);
- /**
- * @brief Set the Manual CTS Value used for Audio Clock
- * @param[in] port id
- * @param[in] Over Or Under Matched.
- * @param[in] Last configured OverFlow CTS Value.
- * @param[in] Last configured UnderFlow CTS Value.
- * @return Status of the function.
- */
- USHORT16 HV_Cal_HdmiRx_ManualCtsValueSet(UCHAR8 ucPortIndex, BOOL bUnderFlow, USHORT16 uiLastOverValue, USHORT16 uiLastUnderValue);
- /**
- * @brief Check Audio Clock if Normal with N
- * @param[in] port id
- * @return Status of the function.
- */
- BOOL Hv_Cal_HdmiRx_RobustCheckAudioManual(UCHAR8 ucPortIndex);
- /**
- * @brief check and restore audio fifo
- * @param[in] Port Number used for the HDMI RX.
- */
- VOID Hv_Cal_HdmiRx_AudioCheck(UCHAR8 ucPortId);
- /**
- * @brief Start Receive CEC Message.
- * @param[in] port id
- * @return NONE.
- */
- void Hv_Cal_HdmiRx_StartRcvCecMsg(UCHAR8 ucPortIndex);
- /**
- * @brief reload color depth reg
- * @param[in] Port Number used for the HDMI RX.
- */
- VOID Hv_Cal_HdmiRx_ReloadColorDepth(UCHAR8 ucPortIndex);
- /**
- * @brief Phy Sw Trigger to configure
- * @param[in] port id
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_PhyCfgSwTrig(UCHAR8 ucPortIndex);
- /**
- * @brief Set Frl Flt Update Flag to retrain
- * @param[in] port id
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetFrlFltUpdate(UCHAR8 ucPortIndex);
- /**
- * @brief Set Ri Update Autoly or not.
- * @param[in] port id
- * @param[in] Ri sel Value = 1 is Autoly.
- * @return Status of the function.
- */
- Status Hv_Cal_HdmiRx_SetHdcp1XRiSel(UCHAR8 ucPortIndex, UCHAR8 ucRiSelValue);
- /**
- * @brief If the PHY TMDS Clock Is OverFlow.
- * @param[in] Port Number used for the HDMI RX.
- * @return TRUE is OverFlow False is not OverFlow.
- */
- BOOL Hv_Cal_HdmiRX_IsTMDSClockOverFlow(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- BOOL Hv_Cal_HdmiRx_GetSourceCfgRatioMode(UCHAR8 ucPortIndex);
- Status Hv_Cal_HdmiRx_RobustTmdsLockInLowBnd(UCHAR8 ucPortIndex);
- Status Hv_Cal_HdmiRx_ReBackTmdsLockInLowBnd(UCHAR8 ucPortIndex);
- Status Hv_Cal_HdmiRx_SetDviMode(UCHAR8 ucPortIndex, BOOL bDviMode);
- Status Hv_Cal_HdmiRx_ClrDviMode(UCHAR8 ucPortIndex);
- VOID Hv_Cal_HdmiRX_SwitchAutoEqTable(UCHAR8 ucPortIndex, BOOL bFreqLow);
- Status Hv_Cal_HdmiRx_ConfigureEqCheckValue(UCHAR8 ucPortIndex, BOOL bStrick);
- BOOL Hv_Cal_HdmiRx_CheckTmdsClockAbnormal(UCHAR8 ucPortIndex, UCHAR8 ucLaneSwap);
- Status Hv_Cal_HdmiRx_SetEqByPass(UCHAR8 ucPortIndex, UCHAR8 ucBypass);
- Status Hv_Cal_HdmiRx_GetHdmiAudioFsValue(UCHAR8 ucPortIndex, UINT32 *puiFs);
- Status Hv_Cal_HdmiRx_ConfigurePhyRterm(UCHAR8 ucPortIndex, UCHAR8 ucRtermValue);
- #endif
|