Commit 5ac3d3c9 authored by Charlene Liu's avatar Charlene Liu Committed by Alex Deucher

drm/amd/display: move refclk from dc to resource_pool

Signed-off-by: default avatarCharlene Liu <charlene.liu@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 68339af3
...@@ -467,7 +467,6 @@ static bool construct(struct core_dc *dc, ...@@ -467,7 +467,6 @@ static bool construct(struct core_dc *dc,
else { else {
/* Create BIOS parser */ /* Create BIOS parser */
struct bp_init_data bp_init_data; struct bp_init_data bp_init_data;
struct firmware_info fw_info = { { 0 } };
bp_init_data.ctx = dc_ctx; bp_init_data.ctx = dc_ctx;
bp_init_data.bios = init_params->asic_id.atombios_base_address; bp_init_data.bios = init_params->asic_id.atombios_base_address;
...@@ -481,12 +480,6 @@ static bool construct(struct core_dc *dc, ...@@ -481,12 +480,6 @@ static bool construct(struct core_dc *dc,
} }
dc_ctx->created_bios = true; dc_ctx->created_bios = true;
if (dc_ctx->dc_bios->funcs->get_firmware_info(
dc_ctx->dc_bios, &fw_info) == BP_RESULT_OK) {
dc->ctx->ref_clock_inKhz = fw_info.pll_info.crystal_frequency;
} else
ASSERT_CRITICAL(false);
} }
/* Create I2C AUX */ /* Create I2C AUX */
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include "opp.h" #include "opp.h"
#include "timing_generator.h" #include "timing_generator.h"
#include "transform.h" #include "transform.h"
#include "core_types.h"
#include "set_mode_types.h" #include "set_mode_types.h"
#include "virtual/virtual_stream_encoder.h" #include "virtual/virtual_stream_encoder.h"
...@@ -77,25 +78,39 @@ struct resource_pool *dc_create_resource_pool( ...@@ -77,25 +78,39 @@ struct resource_pool *dc_create_resource_pool(
enum dce_version dc_version, enum dce_version dc_version,
struct hw_asic_id asic_id) struct hw_asic_id asic_id)
{ {
struct resource_pool *res_pool = NULL;
switch (dc_version) { switch (dc_version) {
case DCE_VERSION_8_0: case DCE_VERSION_8_0:
return dce80_create_resource_pool( res_pool = dce80_create_resource_pool(
num_virtual_links, dc); num_virtual_links, dc);
break;
case DCE_VERSION_10_0: case DCE_VERSION_10_0:
return dce100_create_resource_pool( res_pool = dce100_create_resource_pool(
num_virtual_links, dc); num_virtual_links, dc);
break;
case DCE_VERSION_11_0: case DCE_VERSION_11_0:
return dce110_create_resource_pool( res_pool = dce110_create_resource_pool(
num_virtual_links, dc, asic_id); num_virtual_links, dc, asic_id);
break;
case DCE_VERSION_11_2: case DCE_VERSION_11_2:
return dce112_create_resource_pool( res_pool = dce112_create_resource_pool(
num_virtual_links, dc); num_virtual_links, dc);
break;
default: default:
break; break;
} }
if (res_pool != NULL) {
struct firmware_info fw_info = { { 0 } };
return false; if (dc->ctx->dc_bios->funcs->get_firmware_info(
dc->ctx->dc_bios, &fw_info) == BP_RESULT_OK) {
res_pool->ref_clock_inKhz = fw_info.pll_info.crystal_frequency;
} else
ASSERT_CRITICAL(false);
}
return res_pool;
} }
void dc_destroy_resource_pool(struct core_dc *dc) void dc_destroy_resource_pool(struct core_dc *dc)
......
...@@ -237,7 +237,7 @@ bool dc_stream_set_cursor_position( ...@@ -237,7 +237,7 @@ bool dc_stream_set_cursor_position(
struct input_pixel_processor *ipp = pipe_ctx->ipp; struct input_pixel_processor *ipp = pipe_ctx->ipp;
struct dc_cursor_mi_param param = { struct dc_cursor_mi_param param = {
.pixel_clk_khz = dc_stream->timing.pix_clk_khz, .pixel_clk_khz = dc_stream->timing.pix_clk_khz,
.ref_clk_khz = core_dc->ctx->ref_clock_inKhz, .ref_clk_khz = res_ctx->pool->ref_clock_inKhz,
.viewport_x_start = pipe_ctx->scl_data.viewport.x, .viewport_x_start = pipe_ctx->scl_data.viewport.x,
.viewport_width = pipe_ctx->scl_data.viewport.width, .viewport_width = pipe_ctx->scl_data.viewport.width,
.h_scale_ratio = pipe_ctx->scl_data.ratios.horz, .h_scale_ratio = pipe_ctx->scl_data.ratios.horz,
......
...@@ -91,7 +91,6 @@ struct dc_context { ...@@ -91,7 +91,6 @@ struct dc_context {
bool created_bios; bool created_bios;
struct gpio_service *gpio_service; struct gpio_service *gpio_service;
struct i2caux *i2caux; struct i2caux *i2caux;
unsigned int ref_clock_inKhz;
}; };
......
...@@ -239,6 +239,7 @@ struct resource_pool { ...@@ -239,6 +239,7 @@ struct resource_pool {
unsigned int pipe_count; unsigned int pipe_count;
unsigned int underlay_pipe_index; unsigned int underlay_pipe_index;
unsigned int stream_enc_count; unsigned int stream_enc_count;
unsigned int ref_clock_inKhz;
/* /*
* reserved clock source for DP * reserved clock source for DP
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment