drm/amd/display: DCE12 num_timing_generators should be 6
authorHarry Wentland <harry.wentland@amd.com>
Fri, 5 May 2017 18:57:12 +0000 (14:57 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:07:06 +0000 (18:07 -0400)
We should also use it to determine pipe count.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dce120/dce120_resource.c

index b6bdd1d..b13abb0 100644 (file)
@@ -426,7 +426,7 @@ static const struct bios_registers bios_regs = {
 };
 
 static const struct resource_caps res_cap = {
-               .num_timing_generator = 3,
+               .num_timing_generator = 6,
                .num_audio = 7,
                .num_stream_encoder = 6,
                .num_pll = 6,
@@ -909,7 +909,7 @@ static bool construct(
        pool->base.funcs = &dce120_res_pool_funcs;
 
        /* TODO: Fill more data from GreenlandAsicCapability.cpp */
-       pool->base.pipe_count = 6;
+       pool->base.pipe_count = res_cap.num_timing_generator;
        pool->base.underlay_pipe_index = NO_UNDERLAY_PIPE;
 
        dc->public.caps.max_downscale_ratio = 200;