-
- Downloads
drm/amd/display: Add HDCP module
This module manages HDCP for amdgpu driver. The module behaves as a state machine which handles the different authentication states of HDCP The module is divided into 3 major components +--------+ | Hdcp.c | +--------+ Manages the state machine, sends the events to be executed and communicates with the dm +-----------+ |Execution.c| +-----------+ This executes events based on the current state. Also generates execution results as transition inputs +------------+ |Transition.c| +------------+ Decides the next state based on the input and makes requests to hdcp.c to handle. +-------------+ ------> | Execution.c | ------ | +-------------+ | | V +----+ +--------+ +--------------+ | DM | -----> | Hdcp.c | <------------ | Transition.c | +----+ <----- +--------+ +--------------+ v2: Drop unused function definitions Signed-off-by:Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Signed-off-by:
Wenjing Liu <Wenjing.Liu@amd.com> Reviewed-by:
Wenjing Liu <Wenjing.Liu@amd.com> Acked-by:
Harry Wentland <harry.wentland@amd.com> Signed-off-by:
Alex Deucher <alexander.deucher@amd.com>
Showing
- drivers/gpu/drm/amd/display/Makefile 7 additions, 0 deletionsdrivers/gpu/drm/amd/display/Makefile
- drivers/gpu/drm/amd/display/dc/Makefile 4 additions, 0 deletionsdrivers/gpu/drm/amd/display/dc/Makefile
- drivers/gpu/drm/amd/display/dc/hdcp/Makefile 28 additions, 0 deletionsdrivers/gpu/drm/amd/display/dc/hdcp/Makefile
- drivers/gpu/drm/amd/display/dc/hdcp/hdcp_msg.c 326 additions, 0 deletionsdrivers/gpu/drm/amd/display/dc/hdcp/hdcp_msg.c
- drivers/gpu/drm/amd/display/include/hdcp_types.h 96 additions, 0 deletionsdrivers/gpu/drm/amd/display/include/hdcp_types.h
- drivers/gpu/drm/amd/display/modules/hdcp/Makefile 32 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/Makefile
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c 426 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp.h 442 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp.h
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp1_execution.c 531 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp1_execution.c
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp1_transition.c 307 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp1_transition.c
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp_ddc.c 305 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp_ddc.c
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c 163 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c
- drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.h 139 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.h
- drivers/gpu/drm/amd/display/modules/inc/mod_hdcp.h 289 additions, 0 deletionsdrivers/gpu/drm/amd/display/modules/inc/mod_hdcp.h
Loading