hv_drv_Physical.h 824 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * @file hv_drv_Physical.h
  3. * @brief HDMI RX driver layer interface.
  4. * @verbatim
  5. * ==============================================================================
  6. * ##### How to use this driver #####
  7. * ==============================================================================
  8. * (+) Use Hv_Drv_Phy_Init(...) to Init the Phy Data for HDMI and DP.
  9. * (+) Use Hv_Drv_Phy_SetRxMapping(...) to Set the R G B Color Mapping.
  10. * @endverbatim
  11. *
  12. * @author HiView SoC Software Team
  13. * @version 0.0.1
  14. * @date 2022-08-22
  15. */
  16. #ifndef __HV_DRV_PHYSICAL_H__
  17. #define __HV_DRV_PHYSICAL_H__
  18. /**
  19. * @brief Initialize the HDMI Data information.
  20. * @return 0: Success or 1: Fail.
  21. */
  22. Status Hv_Drv_Phy_Init();
  23. Status Hv_Drv_Phy_SetRxMapping(UCHAR8 ucPortIndex);
  24. #endif