sii_hal.h 540 B

123456789101112131415161718192021222324252627282930313233
  1. #if !defined(SII_HAL_H)
  2. #define SII_HAL_H
  3. #include <linux/kernel.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef FALSE
  8. #define FALSE false
  9. #endif
  10. #ifndef TRUE
  11. #define TRUE true
  12. #endif
  13. #define MHL_PRODUCT_NUM 8348
  14. #define MHL_DRIVER_NAME "sii8348drv"
  15. #define MHL_DEVICE_NAME "sii-8348"
  16. #define CONFIG_DEBUG_DRIVER
  17. #define RCP_INPUTDEV_SUPPORT
  18. //#define ENABLE_GEN2
  19. #define MEDIA_DATA_TUNNEL_SUPPORT
  20. #define ENABLE_EDID_INFO_PRINT
  21. #define ENABLE_EDID_DEBUG_PRINT
  22. #define ENABLE_DUMP_INFOFRAME
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif