hdcp_qseecom.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2015-2022, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef __HDCP_QSEECOM_H
  7. #define __HDCP_QSEECOM_H
  8. #include <linux/types.h>
  9. #define HDCP_QSEECOM_ENUM_STR(x) #x
  10. enum hdcp2_app_cmd {
  11. HDCP2_CMD_START,
  12. HDCP2_CMD_START_AUTH,
  13. HDCP2_CMD_STOP,
  14. HDCP2_CMD_PROCESS_MSG,
  15. HDCP2_CMD_TIMEOUT,
  16. HDCP2_CMD_EN_ENCRYPTION,
  17. HDCP2_CMD_QUERY_STREAM,
  18. };
  19. struct hdcp2_buffer {
  20. unsigned char *data;
  21. u32 length;
  22. };
  23. struct hdcp2_app_data {
  24. u32 timeout;
  25. bool repeater_flag;
  26. struct hdcp2_buffer request; // requests to TA, sent from sink
  27. struct hdcp2_buffer response; // responses from TA, sent to sink
  28. };
  29. struct hdcp1_topology {
  30. uint32_t depth;
  31. uint32_t device_count;
  32. uint32_t max_devices_exceeded;
  33. uint32_t max_cascade_exceeded;
  34. uint32_t hdcp2LegacyDeviceDownstream;
  35. uint32_t hdcp1DeviceDownstream;
  36. };
  37. static inline const char *hdcp2_app_cmd_str(enum hdcp2_app_cmd cmd)
  38. {
  39. switch (cmd) {
  40. case HDCP2_CMD_START:
  41. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_START);
  42. case HDCP2_CMD_START_AUTH:
  43. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_START_AUTH);
  44. case HDCP2_CMD_STOP:
  45. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_STOP);
  46. case HDCP2_CMD_PROCESS_MSG:
  47. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_PROCESS_MSG);
  48. case HDCP2_CMD_TIMEOUT:
  49. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_TIMEOUT);
  50. case HDCP2_CMD_EN_ENCRYPTION:
  51. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_EN_ENCRYPTION);
  52. case HDCP2_CMD_QUERY_STREAM:
  53. return HDCP_QSEECOM_ENUM_STR(HDCP2_CMD_QUERY_STREAM);
  54. default: return "???";
  55. }
  56. }
  57. #if IS_ENABLED(CONFIG_HDCP_QSEECOM)
  58. void *hdcp1_init(void);
  59. void hdcp1_deinit(void *data);
  60. bool hdcp1_feature_supported(void *data);
  61. int hdcp1_start(void *data, u32 *aksv_msb, u32 *aksv_lsb);
  62. int hdcp1_set_enc(void *data, bool enable);
  63. int hdcp1_ops_notify(void *data, void *topology, bool is_authenticated);
  64. void hdcp1_stop(void *data);
  65. void *hdcp2_init(u32 device_type);
  66. void hdcp2_deinit(void *ctx);
  67. bool hdcp2_feature_supported(void *ctx);
  68. int hdcp2_app_comm(void *ctx, enum hdcp2_app_cmd cmd,
  69. struct hdcp2_app_data *app_data);
  70. int hdcp2_open_stream(void *ctx, uint8_t vc_payload_id,
  71. uint8_t stream_number, uint32_t *stream_id);
  72. int hdcp2_close_stream(void *ctx, uint32_t stream_id);
  73. int hdcp2_force_encryption(void *ctx, uint32_t enable);
  74. #else
  75. static inline void *hdcp1_init(void)
  76. {
  77. return NULL;
  78. }
  79. static inline void hdcp1_deinit(void *data)
  80. {
  81. }
  82. static inline bool hdcp1_feature_supported(void *data)
  83. {
  84. return false;
  85. }
  86. static inline int hdcp1_start(void *data, u32 *aksv_msb, u32 *aksv_lsb)
  87. {
  88. return 0;
  89. }
  90. static inline int hdcp1_ops_notify(void *data, void *topology, bool is_authenticated)
  91. {
  92. return 0;
  93. }
  94. static inline int hdcp1_set_enc(void *data, bool enable)
  95. {
  96. return 0;
  97. }
  98. static inline void hdcp1_stop(void *data)
  99. {
  100. }
  101. static inline void *hdcp2_init(u32 device_type)
  102. {
  103. return NULL;
  104. }
  105. static inline void hdcp2_deinit(void *ctx)
  106. {
  107. }
  108. static inline bool hdcp2_feature_supported(void *ctx)
  109. {
  110. return false;
  111. }
  112. static inline int hdcp2_app_comm(void *ctx, enum hdcp2_app_cmd cmd,
  113. struct hdcp2_app_data *app_data)
  114. {
  115. return 0;
  116. }
  117. static inline int hdcp2_open_stream(void *ctx, uint8_t vc_payload_id,
  118. uint8_t stream_number, uint32_t *stream_id)
  119. {
  120. return 0;
  121. }
  122. static inline int hdcp2_close_stream(void *ctx, uint32_t stream_id)
  123. {
  124. return 0;
  125. }
  126. static inline int hdcp2_force_encryption(void *ctx, uint32_t enable)
  127. {
  128. return 0;
  129. }
  130. #endif /* CONFIG_HDCP_QSEECOM */
  131. #endif /* __HDCP_QSEECOM_H */