diff options
| author | Charlene Liu <charlene.liu@amd.com> | 2017-02-22 13:46:29 -0500 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2017-09-26 17:15:54 -0400 |
| commit | 4b679bc3cab09f2af44bd34dfc197939a4602aa8 (patch) | |
| tree | 201b45ee99aa3e4ca1b5b8f928d93ddb52183e14 /drivers/gpu/drm/amd/display/dc/dce | |
| parent | drm/amd/display: rename bandwidth_calcs.c to dce_calcs.c (v2) (diff) | |
| download | linux-4b679bc3cab09f2af44bd34dfc197939a4602aa8.tar.gz linux-4b679bc3cab09f2af44bd34dfc197939a4602aa8.zip | |
drm/amd/display: HDMI deep color mode audio issue
Signed-off-by: Charlene Liu <charlene.liu@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Reviewed-by: Charlene Liu <Charlene.Liu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dce')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce/dce_audio.c | 9 | ||||
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c | 1 | ||||
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c | 26 |
3 files changed, 14 insertions, 22 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce/dce_audio.c b/drivers/gpu/drm/amd/display/dc/dce/dce_audio.c index 596e039ee315..7f52e39ec92a 100644 --- a/drivers/gpu/drm/amd/display/dc/dce/dce_audio.c +++ b/drivers/gpu/drm/amd/display/dc/dce/dce_audio.c @@ -773,6 +773,15 @@ void dce_aud_wall_dto_setup( crtc_info->calculated_pixel_clock, &clock_info); + dm_logger_write(audio->ctx->logger, LOG_HW_SET_MODE,\ + "\n************************%s:Input::requested_pixel_clock = %d"\ + "calculated_pixel_clock =%d\n"\ + "audio_dto_module = %d audio_dto_phase =%d \n\n", __func__,\ + crtc_info->requested_pixel_clock,\ + crtc_info->calculated_pixel_clock,\ + clock_info.audio_dto_module,\ + clock_info.audio_dto_phase); + /* On TN/SI, Program DTO source select and DTO select before programming DTO modulo and DTO phase. These bits must be programmed first, otherwise there will be no HDMI audio at boot diff --git a/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c b/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c index 26742e038274..a2a2ecf8d077 100644 --- a/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c +++ b/drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c @@ -874,7 +874,6 @@ static bool dce110_program_pix_clk( bp_pc_params.flags.SET_XTALIN_REF_SRC = !pll_settings->use_external_clk; if (pix_clk_params->flags.SUPPORT_YCBCR420) { - bp_pc_params.target_pixel_clock = pll_settings->actual_pix_clk / 2; bp_pc_params.flags.SUPPORT_YUV_420 = 1; } } diff --git a/drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c b/drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c index e4092fd458a1..d6662fa2f4e1 100644 --- a/drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c +++ b/drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c @@ -873,22 +873,6 @@ static const struct audio_clock_info audio_clock_info_table[16] = { {59400, 3072, 445500, 9408, 990000, 6144, 594000} }; -static const struct audio_clock_info audio_clock_info_table_30bpc[14] = { - {2517, 9152, 70312, 14014, 78125, 9152, 46875}, - {2518, 9152, 70312, 14014, 78125, 9152, 46875}, - {2520, 4096, 31500, 6272, 35000, 6144, 31500}, - {2700, 4096, 33750, 6272, 37500, 6144, 33750}, - {2702, 8192, 67567, 12544, 75075, 8192, 45045}, - {2703, 8192, 67567, 12544, 75075, 8192, 45045}, - {5400, 4096, 67500, 6272, 75000, 6144, 67500}, - {5405, 8192, 135135, 6272, 75075, 8192, 90090}, - {7417, 11648, 263672, 17836, 292969, 11648, 175181}, - {7425, 8192, 185625, 6272, 103125, 12288, 185625}, - {14835, 11648, 527344, 17836, 585938, 11648, 351563}, - {14850, 4096, 185625, 6272, 206250, 6144, 185625}, - {29670, 11648, 527344, 17836, 585938, 11648, 703125}, - {29700, 6144, 556875, 4704, 309375, 5120, 309375} -}; static const struct audio_clock_info audio_clock_info_table_36bpc[14] = { {2517, 9152, 84375, 7007, 48875, 9152, 56250}, {2518, 9152, 84375, 7007, 48875, 9152, 56250}, @@ -1005,11 +989,6 @@ bool get_audio_clock_info( audio_array_size = ARRAY_SIZE( audio_clock_info_table_36bpc); break; - case COLOR_DEPTH_101010: - clock_info = audio_clock_info_table_30bpc; - audio_array_size = ARRAY_SIZE( - audio_clock_info_table_30bpc); - break; default: clock_info = audio_clock_info_table; audio_array_size = ARRAY_SIZE( @@ -1114,6 +1093,11 @@ static void dce110_se_setup_hdmi_audio( crtc_info->requested_pixel_clock, crtc_info->calculated_pixel_clock, &audio_clock_info)) { + dm_logger_write(enc->ctx->logger, LOG_HW_SET_MODE, + "\n*********************%s:Input::requested_pixel_clock = %d"\ + "calculated_pixel_clock = %d \n", __func__,\ + crtc_info->requested_pixel_clock,\ + crtc_info->calculated_pixel_clock); /* HDMI_ACR_32_0__HDMI_ACR_CTS_32_MASK */ REG_UPDATE(HDMI_ACR_32_0, HDMI_ACR_CTS_32, audio_clock_info.cts_32khz); |
