Commit f42ea55b authored by Anthony Koo's avatar Anthony Koo Committed by Alex Deucher

drm/amd/display: add separate of private hwss functions

[Why]
Some function pointers in the hwss function pointer table are
meant to be hw sequencer entry points to be called from dc.

However some of those function pointers are not meant to
be entry points, but instead used as a code reuse/inheritance
tool called directly by other hwss functions, not by dc.

Therefore, we want a more clear separation of which functions
we determine to be interface functions vs the functions we
use within hwss.

[How]
DC interface functions will be stored in:
    struct hw_sequencer_funcs
Functions used within HWSS will be stored in:
    struct hwseq_private_funcs
Signed-off-by: default avatarAnthony Koo <Anthony.Koo@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarLeo Li <sunpeng.li@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 2b77dcc5
...@@ -2004,6 +2004,12 @@ static void commit_planes_do_stream_update(struct dc *dc, ...@@ -2004,6 +2004,12 @@ static void commit_planes_do_stream_update(struct dc *dc,
dc->hwss.update_info_frame(pipe_ctx); dc->hwss.update_info_frame(pipe_ctx);
} }
if (stream_update->hdr_static_metadata &&
stream->use_dynamic_meta &&
dc->hwss.set_dmdata_attributes &&
pipe_ctx->stream->dmdata_address.quad_part != 0)
dc->hwss.set_dmdata_attributes(pipe_ctx);
if (stream_update->gamut_remap) if (stream_update->gamut_remap)
dc_stream_set_gamut_remap(dc, stream); dc_stream_set_gamut_remap(dc, stream);
......
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
#include "core_status.h" #include "core_status.h"
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer.h"
#include "resource.h" #include "resource.h"
......
...@@ -33,9 +33,6 @@ ...@@ -33,9 +33,6 @@
#include "resource.h" #include "resource.h"
#include "ipp.h" #include "ipp.h"
#include "timing_generator.h" #include "timing_generator.h"
#if defined(CONFIG_DRM_AMD_DC_DCN)
#include "dcn10/dcn10_hw_sequencer.h"
#endif
#define DC_LOGGER dc->ctx->logger #define DC_LOGGER dc->ctx->logger
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include "dce_hwseq.h" #include "dce_hwseq.h"
#include "reg_helper.h" #include "reg_helper.h"
#include "hw_sequencer.h" #include "hw_sequencer_private.h"
#include "core_types.h" #include "core_types.h"
#define CTX \ #define CTX \
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#ifndef __DCE_HWSEQ_H__ #ifndef __DCE_HWSEQ_H__
#define __DCE_HWSEQ_H__ #define __DCE_HWSEQ_H__
#include "hw_sequencer.h" #include "dc_types.h"
#define BL_REG_LIST()\ #define BL_REG_LIST()\
SR(LVTMA_PWRSEQ_CNTL), \ SR(LVTMA_PWRSEQ_CNTL), \
...@@ -811,6 +811,10 @@ enum blnd_mode { ...@@ -811,6 +811,10 @@ enum blnd_mode {
BLND_MODE_BLENDING,/* Alpha blending - blend 'current' and 'other' */ BLND_MODE_BLENDING,/* Alpha blending - blend 'current' and 'other' */
}; };
struct dce_hwseq;
struct pipe_ctx;
struct clock_source;
void dce_enable_fe_clock(struct dce_hwseq *hwss, void dce_enable_fe_clock(struct dce_hwseq *hwss,
unsigned int inst, bool enable); unsigned int inst, bool enable);
......
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
#include "dc.h" #include "dc.h"
#include "core_types.h" #include "core_types.h"
#include "clk_mgr.h" #include "clk_mgr.h"
#include "hw_sequencer.h"
#include "dce100_hw_sequencer.h" #include "dce100_hw_sequencer.h"
#include "resource.h" #include "resource.h"
...@@ -136,7 +135,7 @@ void dce100_hw_sequencer_construct(struct dc *dc) ...@@ -136,7 +135,7 @@ void dce100_hw_sequencer_construct(struct dc *dc)
{ {
dce110_hw_sequencer_construct(dc); dce110_hw_sequencer_construct(dc);
dc->hwss.enable_display_power_gating = dce100_enable_display_power_gating; dc->hwseq->funcs.enable_display_power_gating = dce100_enable_display_power_gating;
dc->hwss.prepare_bandwidth = dce100_prepare_bandwidth; dc->hwss.prepare_bandwidth = dce100_prepare_bandwidth;
dc->hwss.optimize_bandwidth = dce100_optimize_bandwidth; dc->hwss.optimize_bandwidth = dce100_optimize_bandwidth;
} }
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCE100_H__ #define __DC_HWSS_DCE100_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
struct dc_state; struct dc_state;
......
...@@ -653,10 +653,9 @@ void dce110_enable_stream(struct pipe_ctx *pipe_ctx) ...@@ -653,10 +653,9 @@ void dce110_enable_stream(struct pipe_ctx *pipe_ctx)
{ {
enum dc_lane_count lane_count = enum dc_lane_count lane_count =
pipe_ctx->stream->link->cur_link_settings.lane_count; pipe_ctx->stream->link->cur_link_settings.lane_count;
struct dc_crtc_timing *timing = &pipe_ctx->stream->timing; struct dc_crtc_timing *timing = &pipe_ctx->stream->timing;
struct dc_link *link = pipe_ctx->stream->link; struct dc_link *link = pipe_ctx->stream->link;
const struct dc *dc = link->dc;
uint32_t active_total_with_borders; uint32_t active_total_with_borders;
uint32_t early_control = 0; uint32_t early_control = 0;
...@@ -669,7 +668,7 @@ void dce110_enable_stream(struct pipe_ctx *pipe_ctx) ...@@ -669,7 +668,7 @@ void dce110_enable_stream(struct pipe_ctx *pipe_ctx)
link->link_enc->funcs->connect_dig_be_to_fe(link->link_enc, link->link_enc->funcs->connect_dig_be_to_fe(link->link_enc,
pipe_ctx->stream_res.stream_enc->id, true); pipe_ctx->stream_res.stream_enc->id, true);
link->dc->hwss.update_info_frame(pipe_ctx); dc->hwss.update_info_frame(pipe_ctx);
/* enable early control to avoid corruption on DP monitor*/ /* enable early control to avoid corruption on DP monitor*/
active_total_with_borders = active_total_with_borders =
...@@ -1049,6 +1048,7 @@ void dce110_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -1049,6 +1048,7 @@ void dce110_unblank_stream(struct pipe_ctx *pipe_ctx,
struct encoder_unblank_param params = { { 0 } }; struct encoder_unblank_param params = { { 0 } };
struct dc_stream_state *stream = pipe_ctx->stream; struct dc_stream_state *stream = pipe_ctx->stream;
struct dc_link *link = stream->link; struct dc_link *link = stream->link;
struct dce_hwseq *hws = link->dc->hwseq;
/* only 3 items below are used by unblank */ /* only 3 items below are used by unblank */
params.timing = pipe_ctx->stream->timing; params.timing = pipe_ctx->stream->timing;
...@@ -1058,7 +1058,7 @@ void dce110_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -1058,7 +1058,7 @@ void dce110_unblank_stream(struct pipe_ctx *pipe_ctx,
pipe_ctx->stream_res.stream_enc->funcs->dp_unblank(pipe_ctx->stream_res.stream_enc, &params); pipe_ctx->stream_res.stream_enc->funcs->dp_unblank(pipe_ctx->stream_res.stream_enc, &params);
if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) { if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) {
link->dc->hwss.edp_backlight_control(link, true); hws->funcs.edp_backlight_control(link, true);
} }
} }
...@@ -1066,9 +1066,10 @@ void dce110_blank_stream(struct pipe_ctx *pipe_ctx) ...@@ -1066,9 +1066,10 @@ void dce110_blank_stream(struct pipe_ctx *pipe_ctx)
{ {
struct dc_stream_state *stream = pipe_ctx->stream; struct dc_stream_state *stream = pipe_ctx->stream;
struct dc_link *link = stream->link; struct dc_link *link = stream->link;
struct dce_hwseq *hws = link->dc->hwseq;
if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) { if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) {
link->dc->hwss.edp_backlight_control(link, false); hws->funcs.edp_backlight_control(link, false);
dc_link_set_abm_disable(link); dc_link_set_abm_disable(link);
} }
...@@ -1325,9 +1326,10 @@ static enum dc_status apply_single_controller_ctx_to_hw( ...@@ -1325,9 +1326,10 @@ static enum dc_status apply_single_controller_ctx_to_hw(
struct drr_params params = {0}; struct drr_params params = {0};
unsigned int event_triggers = 0; unsigned int event_triggers = 0;
struct pipe_ctx *odm_pipe = pipe_ctx->next_odm_pipe; struct pipe_ctx *odm_pipe = pipe_ctx->next_odm_pipe;
struct dce_hwseq *hws = dc->hwseq;
if (dc->hwss.disable_stream_gating) { if (hws->funcs.disable_stream_gating) {
dc->hwss.disable_stream_gating(dc, pipe_ctx); hws->funcs.disable_stream_gating(dc, pipe_ctx);
} }
if (pipe_ctx->stream_res.audio != NULL) { if (pipe_ctx->stream_res.audio != NULL) {
...@@ -1357,10 +1359,10 @@ static enum dc_status apply_single_controller_ctx_to_hw( ...@@ -1357,10 +1359,10 @@ static enum dc_status apply_single_controller_ctx_to_hw(
/* */ /* */
/* Do not touch stream timing on seamless boot optimization. */ /* Do not touch stream timing on seamless boot optimization. */
if (!pipe_ctx->stream->apply_seamless_boot_optimization) if (!pipe_ctx->stream->apply_seamless_boot_optimization)
dc->hwss.enable_stream_timing(pipe_ctx, context, dc); hws->funcs.enable_stream_timing(pipe_ctx, context, dc);
if (dc->hwss.setup_vupdate_interrupt) if (hws->funcs.setup_vupdate_interrupt)
dc->hwss.setup_vupdate_interrupt(dc, pipe_ctx); hws->funcs.setup_vupdate_interrupt(dc, pipe_ctx);
params.vertical_total_min = stream->adjust.v_total_min; params.vertical_total_min = stream->adjust.v_total_min;
params.vertical_total_max = stream->adjust.v_total_max; params.vertical_total_max = stream->adjust.v_total_max;
...@@ -1553,9 +1555,10 @@ void dce110_enable_accelerated_mode(struct dc *dc, struct dc_state *context) ...@@ -1553,9 +1555,10 @@ void dce110_enable_accelerated_mode(struct dc *dc, struct dc_state *context)
bool can_apply_edp_fast_boot = false; bool can_apply_edp_fast_boot = false;
bool can_apply_seamless_boot = false; bool can_apply_seamless_boot = false;
bool keep_edp_vdd_on = false; bool keep_edp_vdd_on = false;
struct dce_hwseq *hws = dc->hwseq;
if (dc->hwss.init_pipes) if (hws->funcs.init_pipes)
dc->hwss.init_pipes(dc, context); hws->funcs.init_pipes(dc, context);
edp_stream = get_edp_stream(context); edp_stream = get_edp_stream(context);
...@@ -1592,7 +1595,7 @@ void dce110_enable_accelerated_mode(struct dc *dc, struct dc_state *context) ...@@ -1592,7 +1595,7 @@ void dce110_enable_accelerated_mode(struct dc *dc, struct dc_state *context)
if (!can_apply_edp_fast_boot && !can_apply_seamless_boot) { if (!can_apply_edp_fast_boot && !can_apply_seamless_boot) {
if (edp_link_with_sink && !keep_edp_vdd_on) { if (edp_link_with_sink && !keep_edp_vdd_on) {
/*turn off backlight before DP_blank and encoder powered down*/ /*turn off backlight before DP_blank and encoder powered down*/
dc->hwss.edp_backlight_control(edp_link_with_sink, false); hws->funcs.edp_backlight_control(edp_link_with_sink, false);
} }
/*resume from S3, no vbios posting, no need to power down again*/ /*resume from S3, no vbios posting, no need to power down again*/
power_down_all_hw_blocks(dc); power_down_all_hw_blocks(dc);
...@@ -2007,13 +2010,14 @@ enum dc_status dce110_apply_ctx_to_hw( ...@@ -2007,13 +2010,14 @@ enum dc_status dce110_apply_ctx_to_hw(
struct dc *dc, struct dc *dc,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct dc_bios *dcb = dc->ctx->dc_bios; struct dc_bios *dcb = dc->ctx->dc_bios;
enum dc_status status; enum dc_status status;
int i; int i;
/* Reset old context */ /* Reset old context */
/* look up the targets that have been removed since last commit */ /* look up the targets that have been removed since last commit */
dc->hwss.reset_hw_ctx_wrap(dc, context); hws->funcs.reset_hw_ctx_wrap(dc, context);
/* Skip applying if no targets */ /* Skip applying if no targets */
if (context->stream_count <= 0) if (context->stream_count <= 0)
...@@ -2038,7 +2042,7 @@ enum dc_status dce110_apply_ctx_to_hw( ...@@ -2038,7 +2042,7 @@ enum dc_status dce110_apply_ctx_to_hw(
continue; continue;
} }
dc->hwss.enable_display_power_gating( hws->funcs.enable_display_power_gating(
dc, i, dc->ctx->dc_bios, dc, i, dc->ctx->dc_bios,
PIPE_GATING_CONTROL_DISABLE); PIPE_GATING_CONTROL_DISABLE);
} }
...@@ -2347,19 +2351,20 @@ static void init_hw(struct dc *dc) ...@@ -2347,19 +2351,20 @@ static void init_hw(struct dc *dc)
struct transform *xfm; struct transform *xfm;
struct abm *abm; struct abm *abm;
struct dmcu *dmcu; struct dmcu *dmcu;
struct dce_hwseq *hws = dc->hwseq;
bp = dc->ctx->dc_bios; bp = dc->ctx->dc_bios;
for (i = 0; i < dc->res_pool->pipe_count; i++) { for (i = 0; i < dc->res_pool->pipe_count; i++) {
xfm = dc->res_pool->transforms[i]; xfm = dc->res_pool->transforms[i];
xfm->funcs->transform_reset(xfm); xfm->funcs->transform_reset(xfm);
dc->hwss.enable_display_power_gating( hws->funcs.enable_display_power_gating(
dc, i, bp, dc, i, bp,
PIPE_GATING_CONTROL_INIT); PIPE_GATING_CONTROL_INIT);
dc->hwss.enable_display_power_gating( hws->funcs.enable_display_power_gating(
dc, i, bp, dc, i, bp,
PIPE_GATING_CONTROL_DISABLE); PIPE_GATING_CONTROL_DISABLE);
dc->hwss.enable_display_pipe_clock_gating( hws->funcs.enable_display_pipe_clock_gating(
dc->ctx, dc->ctx,
true); true);
} }
...@@ -2445,6 +2450,8 @@ static void dce110_program_front_end_for_pipe( ...@@ -2445,6 +2450,8 @@ static void dce110_program_front_end_for_pipe(
struct xfm_grph_csc_adjustment adjust; struct xfm_grph_csc_adjustment adjust;
struct out_csc_color_matrix tbl_entry; struct out_csc_color_matrix tbl_entry;
unsigned int i; unsigned int i;
struct dce_hwseq *hws = dc->hwseq;
DC_LOGGER_INIT(); DC_LOGGER_INIT();
memset(&tbl_entry, 0, sizeof(tbl_entry)); memset(&tbl_entry, 0, sizeof(tbl_entry));
...@@ -2503,10 +2510,10 @@ static void dce110_program_front_end_for_pipe( ...@@ -2503,10 +2510,10 @@ static void dce110_program_front_end_for_pipe(
if (pipe_ctx->plane_state->update_flags.bits.full_update || if (pipe_ctx->plane_state->update_flags.bits.full_update ||
pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change || pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change ||
pipe_ctx->plane_state->update_flags.bits.gamma_change) pipe_ctx->plane_state->update_flags.bits.gamma_change)
dc->hwss.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state); hws->funcs.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state);
if (pipe_ctx->plane_state->update_flags.bits.full_update) if (pipe_ctx->plane_state->update_flags.bits.full_update)
dc->hwss.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream); hws->funcs.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream);
DC_LOG_SURFACE( DC_LOG_SURFACE(
"Pipe:%d %p: addr hi:0x%x, " "Pipe:%d %p: addr hi:0x%x, "
...@@ -2609,6 +2616,7 @@ static void dce110_apply_ctx_for_surface( ...@@ -2609,6 +2616,7 @@ static void dce110_apply_ctx_for_surface(
static void dce110_power_down_fe(struct dc *dc, struct pipe_ctx *pipe_ctx) static void dce110_power_down_fe(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
int fe_idx = pipe_ctx->plane_res.mi ? int fe_idx = pipe_ctx->plane_res.mi ?
pipe_ctx->plane_res.mi->inst : pipe_ctx->pipe_idx; pipe_ctx->plane_res.mi->inst : pipe_ctx->pipe_idx;
...@@ -2616,7 +2624,7 @@ static void dce110_power_down_fe(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -2616,7 +2624,7 @@ static void dce110_power_down_fe(struct dc *dc, struct pipe_ctx *pipe_ctx)
if (dc->current_state->res_ctx.pipe_ctx[fe_idx].stream) if (dc->current_state->res_ctx.pipe_ctx[fe_idx].stream)
return; return;
dc->hwss.enable_display_power_gating( hws->funcs.enable_display_power_gating(
dc, fe_idx, dc->ctx->dc_bios, PIPE_GATING_CONTROL_ENABLE); dc, fe_idx, dc->ctx->dc_bios, PIPE_GATING_CONTROL_ENABLE);
dc->res_pool->transforms[fe_idx]->funcs->transform_reset( dc->res_pool->transforms[fe_idx]->funcs->transform_reset(
...@@ -2705,14 +2713,10 @@ static const struct hw_sequencer_funcs dce110_funcs = { ...@@ -2705,14 +2713,10 @@ static const struct hw_sequencer_funcs dce110_funcs = {
.program_gamut_remap = program_gamut_remap, .program_gamut_remap = program_gamut_remap,
.program_output_csc = program_output_csc, .program_output_csc = program_output_csc,
.init_hw = init_hw, .init_hw = init_hw,
.init_pipes = init_pipes,
.apply_ctx_to_hw = dce110_apply_ctx_to_hw, .apply_ctx_to_hw = dce110_apply_ctx_to_hw,
.apply_ctx_for_surface = dce110_apply_ctx_for_surface, .apply_ctx_for_surface = dce110_apply_ctx_for_surface,
.update_plane_addr = update_plane_addr, .update_plane_addr = update_plane_addr,
.update_pending_status = dce110_update_pending_status, .update_pending_status = dce110_update_pending_status,
.set_input_transfer_func = dce110_set_input_transfer_func,
.set_output_transfer_func = dce110_set_output_transfer_func,
.power_down = dce110_power_down,
.enable_accelerated_mode = dce110_enable_accelerated_mode, .enable_accelerated_mode = dce110_enable_accelerated_mode,
.enable_timing_synchronization = dce110_enable_timing_synchronization, .enable_timing_synchronization = dce110_enable_timing_synchronization,
.enable_per_frame_crtc_position_reset = dce110_enable_per_frame_crtc_position_reset, .enable_per_frame_crtc_position_reset = dce110_enable_per_frame_crtc_position_reset,
...@@ -2723,8 +2727,6 @@ static const struct hw_sequencer_funcs dce110_funcs = { ...@@ -2723,8 +2727,6 @@ static const struct hw_sequencer_funcs dce110_funcs = {
.blank_stream = dce110_blank_stream, .blank_stream = dce110_blank_stream,
.enable_audio_stream = dce110_enable_audio_stream, .enable_audio_stream = dce110_enable_audio_stream,
.disable_audio_stream = dce110_disable_audio_stream, .disable_audio_stream = dce110_disable_audio_stream,
.enable_display_pipe_clock_gating = enable_display_pipe_clock_gating,
.enable_display_power_gating = dce110_enable_display_power_gating,
.disable_plane = dce110_power_down_fe, .disable_plane = dce110_power_down_fe,
.pipe_control_lock = dce_pipe_control_lock, .pipe_control_lock = dce_pipe_control_lock,
.prepare_bandwidth = dce110_prepare_bandwidth, .prepare_bandwidth = dce110_prepare_bandwidth,
...@@ -2732,22 +2734,33 @@ static const struct hw_sequencer_funcs dce110_funcs = { ...@@ -2732,22 +2734,33 @@ static const struct hw_sequencer_funcs dce110_funcs = {
.set_drr = set_drr, .set_drr = set_drr,
.get_position = get_position, .get_position = get_position,
.set_static_screen_control = set_static_screen_control, .set_static_screen_control = set_static_screen_control,
.reset_hw_ctx_wrap = dce110_reset_hw_ctx_wrap,
.enable_stream_timing = dce110_enable_stream_timing,
.disable_stream_gating = NULL,
.enable_stream_gating = NULL,
.setup_stereo = NULL, .setup_stereo = NULL,
.set_avmute = dce110_set_avmute, .set_avmute = dce110_set_avmute,
.wait_for_mpcc_disconnect = dce110_wait_for_mpcc_disconnect, .wait_for_mpcc_disconnect = dce110_wait_for_mpcc_disconnect,
.edp_backlight_control = dce110_edp_backlight_control,
.edp_power_control = dce110_edp_power_control, .edp_power_control = dce110_edp_power_control,
.edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready, .edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready,
.set_cursor_position = dce110_set_cursor_position, .set_cursor_position = dce110_set_cursor_position,
.set_cursor_attribute = dce110_set_cursor_attribute .set_cursor_attribute = dce110_set_cursor_attribute
}; };
static const struct hwseq_private_funcs dce110_private_funcs = {
.init_pipes = init_pipes,
.update_plane_addr = update_plane_addr,
.set_input_transfer_func = dce110_set_input_transfer_func,
.set_output_transfer_func = dce110_set_output_transfer_func,
.power_down = dce110_power_down,
.enable_display_pipe_clock_gating = enable_display_pipe_clock_gating,
.enable_display_power_gating = dce110_enable_display_power_gating,
.reset_hw_ctx_wrap = dce110_reset_hw_ctx_wrap,
.enable_stream_timing = dce110_enable_stream_timing,
.disable_stream_gating = NULL,
.enable_stream_gating = NULL,
.edp_backlight_control = dce110_edp_backlight_control,
};
void dce110_hw_sequencer_construct(struct dc *dc) void dce110_hw_sequencer_construct(struct dc *dc)
{ {
dc->hwss = dce110_funcs; dc->hwss = dce110_funcs;
dc->hwseq->funcs = dce110_private_funcs;
} }
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCE110_H__ #define __DC_HWSS_DCE110_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
struct dc_state; struct dc_state;
......
...@@ -1097,6 +1097,7 @@ static struct pipe_ctx *dce110_acquire_underlay( ...@@ -1097,6 +1097,7 @@ static struct pipe_ctx *dce110_acquire_underlay(
struct dc_stream_state *stream) struct dc_stream_state *stream)
{ {
struct dc *dc = stream->ctx->dc; struct dc *dc = stream->ctx->dc;
struct dce_hwseq *hws = dc->hwseq;
struct resource_context *res_ctx = &context->res_ctx; struct resource_context *res_ctx = &context->res_ctx;
unsigned int underlay_idx = pool->underlay_pipe_index; unsigned int underlay_idx = pool->underlay_pipe_index;
struct pipe_ctx *pipe_ctx = &res_ctx->pipe_ctx[underlay_idx]; struct pipe_ctx *pipe_ctx = &res_ctx->pipe_ctx[underlay_idx];
...@@ -1117,7 +1118,7 @@ static struct pipe_ctx *dce110_acquire_underlay( ...@@ -1117,7 +1118,7 @@ static struct pipe_ctx *dce110_acquire_underlay(
struct tg_color black_color = {0}; struct tg_color black_color = {0};
struct dc_bios *dcb = dc->ctx->dc_bios; struct dc_bios *dcb = dc->ctx->dc_bios;
dc->hwss.enable_display_power_gating( hws->funcs.enable_display_power_gating(
dc, dc,
pipe_ctx->stream_res.tg->inst, pipe_ctx->stream_res.tg->inst,
dcb, PIPE_GATING_CONTROL_DISABLE); dcb, PIPE_GATING_CONTROL_DISABLE);
......
...@@ -158,6 +158,6 @@ void dce112_hw_sequencer_construct(struct dc *dc) ...@@ -158,6 +158,6 @@ void dce112_hw_sequencer_construct(struct dc *dc)
* structure * structure
*/ */
dce110_hw_sequencer_construct(dc); dce110_hw_sequencer_construct(dc);
dc->hwss.enable_display_power_gating = dce112_enable_display_power_gating; dc->hwseq->funcs.enable_display_power_gating = dce112_enable_display_power_gating;
} }
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCE112_H__ #define __DC_HWSS_DCE112_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
......
...@@ -265,7 +265,7 @@ void dce120_hw_sequencer_construct(struct dc *dc) ...@@ -265,7 +265,7 @@ void dce120_hw_sequencer_construct(struct dc *dc)
* structure * structure
*/ */
dce110_hw_sequencer_construct(dc); dce110_hw_sequencer_construct(dc);
dc->hwss.enable_display_power_gating = dce120_enable_display_power_gating; dc->hwseq->funcs.enable_display_power_gating = dce120_enable_display_power_gating;
dc->hwss.update_dchub = dce120_update_dchub; dc->hwss.update_dchub = dce120_update_dchub;
} }
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCE120_H__ #define __DC_HWSS_DCE120_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
......
...@@ -74,7 +74,7 @@ void dce80_hw_sequencer_construct(struct dc *dc) ...@@ -74,7 +74,7 @@ void dce80_hw_sequencer_construct(struct dc *dc)
{ {
dce110_hw_sequencer_construct(dc); dce110_hw_sequencer_construct(dc);
dc->hwss.enable_display_power_gating = dce100_enable_display_power_gating; dc->hwseq->funcs.enable_display_power_gating = dce100_enable_display_power_gating;
dc->hwss.pipe_control_lock = dce_pipe_control_lock; dc->hwss.pipe_control_lock = dce_pipe_control_lock;
dc->hwss.prepare_bandwidth = dce100_prepare_bandwidth; dc->hwss.prepare_bandwidth = dce100_prepare_bandwidth;
dc->hwss.optimize_bandwidth = dce100_optimize_bandwidth; dc->hwss.optimize_bandwidth = dce100_optimize_bandwidth;
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCE80_H__ #define __DC_HWSS_DCE80_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
......
...@@ -642,8 +642,8 @@ static void power_on_plane( ...@@ -642,8 +642,8 @@ static void power_on_plane(
if (REG(DC_IP_REQUEST_CNTL)) { if (REG(DC_IP_REQUEST_CNTL)) {
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 1); IP_REQUEST_EN, 1);
hws->ctx->dc->hwss.dpp_pg_control(hws, plane_id, true); hws->funcs.dpp_pg_control(hws, plane_id, true);
hws->ctx->dc->hwss.hubp_pg_control(hws, plane_id, true); hws->funcs.hubp_pg_control(hws, plane_id, true);
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 0); IP_REQUEST_EN, 0);
DC_LOG_DEBUG( DC_LOG_DEBUG(
...@@ -664,7 +664,7 @@ static void undo_DEGVIDCN10_253_wa(struct dc *dc) ...@@ -664,7 +664,7 @@ static void undo_DEGVIDCN10_253_wa(struct dc *dc)
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 1); IP_REQUEST_EN, 1);
dc->hwss.hubp_pg_control(hws, 0, false); hws->funcs.hubp_pg_control(hws, 0, false);
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 0); IP_REQUEST_EN, 0);
...@@ -693,7 +693,7 @@ static void apply_DEGVIDCN10_253_wa(struct dc *dc) ...@@ -693,7 +693,7 @@ static void apply_DEGVIDCN10_253_wa(struct dc *dc)
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 1); IP_REQUEST_EN, 1);
dc->hwss.hubp_pg_control(hws, 0, true); hws->funcs.hubp_pg_control(hws, 0, true);
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 0); IP_REQUEST_EN, 0);
...@@ -703,12 +703,14 @@ static void apply_DEGVIDCN10_253_wa(struct dc *dc) ...@@ -703,12 +703,14 @@ static void apply_DEGVIDCN10_253_wa(struct dc *dc)
void dcn10_bios_golden_init(struct dc *dc) void dcn10_bios_golden_init(struct dc *dc)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct dc_bios *bp = dc->ctx->dc_bios; struct dc_bios *bp = dc->ctx->dc_bios;
int i; int i;
bool allow_self_fresh_force_enable = true; bool allow_self_fresh_force_enable = true;
if (dc->hwss.s0i3_golden_init_wa && dc->hwss.s0i3_golden_init_wa(dc)) if (hws->funcs.s0i3_golden_init_wa && hws->funcs.s0i3_golden_init_wa(dc))
return; return;
if (dc->res_pool->hubbub->funcs->is_allow_self_refresh_enabled) if (dc->res_pool->hubbub->funcs->is_allow_self_refresh_enabled)
allow_self_fresh_force_enable = allow_self_fresh_force_enable =
dc->res_pool->hubbub->funcs->is_allow_self_refresh_enabled(dc->res_pool->hubbub); dc->res_pool->hubbub->funcs->is_allow_self_refresh_enabled(dc->res_pool->hubbub);
...@@ -1015,6 +1017,7 @@ void dcn10_verify_allow_pstate_change_high(struct dc *dc) ...@@ -1015,6 +1017,7 @@ void dcn10_verify_allow_pstate_change_high(struct dc *dc)
/* trigger HW to start disconnect plane from stream on the next vsync */ /* trigger HW to start disconnect plane from stream on the next vsync */
void dcn10_plane_atomic_disconnect(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn10_plane_atomic_disconnect(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
int dpp_id = pipe_ctx->plane_res.dpp->inst; int dpp_id = pipe_ctx->plane_res.dpp->inst;
struct mpc *mpc = dc->res_pool->mpc; struct mpc *mpc = dc->res_pool->mpc;
...@@ -1039,7 +1042,7 @@ void dcn10_plane_atomic_disconnect(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -1039,7 +1042,7 @@ void dcn10_plane_atomic_disconnect(struct dc *dc, struct pipe_ctx *pipe_ctx)
hubp->funcs->hubp_disconnect(hubp); hubp->funcs->hubp_disconnect(hubp);
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
void dcn10_plane_atomic_power_down(struct dc *dc, void dcn10_plane_atomic_power_down(struct dc *dc,
...@@ -1052,8 +1055,8 @@ void dcn10_plane_atomic_power_down(struct dc *dc, ...@@ -1052,8 +1055,8 @@ void dcn10_plane_atomic_power_down(struct dc *dc,
if (REG(DC_IP_REQUEST_CNTL)) { if (REG(DC_IP_REQUEST_CNTL)) {
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 1); IP_REQUEST_EN, 1);
dc->hwss.dpp_pg_control(hws, dpp->inst, false); hws->funcs.dpp_pg_control(hws, dpp->inst, false);
dc->hwss.hubp_pg_control(hws, hubp->inst, false); hws->funcs.hubp_pg_control(hws, hubp->inst, false);
dpp->funcs->dpp_reset(dpp); dpp->funcs->dpp_reset(dpp);
REG_SET(DC_IP_REQUEST_CNTL, 0, REG_SET(DC_IP_REQUEST_CNTL, 0,
IP_REQUEST_EN, 0); IP_REQUEST_EN, 0);
...@@ -1067,6 +1070,7 @@ void dcn10_plane_atomic_power_down(struct dc *dc, ...@@ -1067,6 +1070,7 @@ void dcn10_plane_atomic_power_down(struct dc *dc,
*/ */
void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct dpp *dpp = pipe_ctx->plane_res.dpp; struct dpp *dpp = pipe_ctx->plane_res.dpp;
int opp_id = hubp->opp_id; int opp_id = hubp->opp_id;
...@@ -1085,7 +1089,7 @@ void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -1085,7 +1089,7 @@ void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx)
hubp->power_gated = true; hubp->power_gated = true;
dc->optimized_required = false; /* We're powering off, no need to optimize */ dc->optimized_required = false; /* We're powering off, no need to optimize */
dc->hwss.plane_atomic_power_down(dc, hws->funcs.plane_atomic_power_down(dc,
pipe_ctx->plane_res.dpp, pipe_ctx->plane_res.dpp,
pipe_ctx->plane_res.hubp); pipe_ctx->plane_res.hubp);
...@@ -1099,12 +1103,13 @@ void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -1099,12 +1103,13 @@ void dcn10_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx)
void dcn10_disable_plane(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn10_disable_plane(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
DC_LOGGER_INIT(dc->ctx->logger); DC_LOGGER_INIT(dc->ctx->logger);
if (!pipe_ctx->plane_res.hubp || pipe_ctx->plane_res.hubp->power_gated) if (!pipe_ctx->plane_res.hubp || pipe_ctx->plane_res.hubp->power_gated)
return; return;
dc->hwss.plane_atomic_disable(dc, pipe_ctx); hws->funcs.plane_atomic_disable(dc, pipe_ctx);
apply_DEGVIDCN10_253_wa(dc); apply_DEGVIDCN10_253_wa(dc);
...@@ -1115,6 +1120,7 @@ void dcn10_disable_plane(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -1115,6 +1120,7 @@ void dcn10_disable_plane(struct dc *dc, struct pipe_ctx *pipe_ctx)
void dcn10_init_pipes(struct dc *dc, struct dc_state *context) void dcn10_init_pipes(struct dc *dc, struct dc_state *context)
{ {
int i; int i;
struct dce_hwseq *hws = dc->hwseq;
bool can_apply_seamless_boot = false; bool can_apply_seamless_boot = false;
for (i = 0; i < context->stream_count; i++) { for (i = 0; i < context->stream_count; i++) {
...@@ -1139,8 +1145,8 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context) ...@@ -1139,8 +1145,8 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context)
* command table. * command table.
*/ */
if (tg->funcs->is_tg_enabled(tg)) { if (tg->funcs->is_tg_enabled(tg)) {
if (dc->hwss.init_blank != NULL) { if (hws->funcs.init_blank != NULL) {
dc->hwss.init_blank(dc, tg); hws->funcs.init_blank(dc, tg);
tg->funcs->lock(tg); tg->funcs->lock(tg);
} else { } else {
tg->funcs->lock(tg); tg->funcs->lock(tg);
...@@ -1197,7 +1203,7 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context) ...@@ -1197,7 +1203,7 @@ void dcn10_init_pipes(struct dc *dc, struct dc_state *context)
dc->res_pool->opps[i]->mpcc_disconnect_pending[pipe_ctx->plane_res.mpcc_inst] = true; dc->res_pool->opps[i]->mpcc_disconnect_pending[pipe_ctx->plane_res.mpcc_inst] = true;
pipe_ctx->stream_res.opp = dc->res_pool->opps[i]; pipe_ctx->stream_res.opp = dc->res_pool->opps[i];
dc->hwss.plane_atomic_disconnect(dc, pipe_ctx); hws->funcs.plane_atomic_disconnect(dc, pipe_ctx);
if (tg->funcs->is_tg_enabled(tg)) if (tg->funcs->is_tg_enabled(tg))
tg->funcs->unlock(tg); tg->funcs->unlock(tg);
...@@ -1243,15 +1249,15 @@ void dcn10_init_hw(struct dc *dc) ...@@ -1243,15 +1249,15 @@ void dcn10_init_hw(struct dc *dc)
} }
//Enable ability to power gate / don't force power on permanently //Enable ability to power gate / don't force power on permanently
dc->hwss.enable_power_gating_plane(hws, true); hws->funcs.enable_power_gating_plane(hws, true);
return; return;
} }
if (!dcb->funcs->is_accelerated_mode(dcb)) if (!dcb->funcs->is_accelerated_mode(dcb))
dc->hwss.disable_vga(dc->hwseq); hws->funcs.disable_vga(dc->hwseq);
dc->hwss.bios_golden_init(dc); hws->funcs.bios_golden_init(dc);
if (dc->ctx->dc_bios->fw_info_valid) { if (dc->ctx->dc_bios->fw_info_valid) {
res_pool->ref_clocks.xtalin_clock_inKhz = res_pool->ref_clocks.xtalin_clock_inKhz =
dc->ctx->dc_bios->fw_info.pll_info.crystal_frequency; dc->ctx->dc_bios->fw_info.pll_info.crystal_frequency;
...@@ -1294,8 +1300,8 @@ void dcn10_init_hw(struct dc *dc) ...@@ -1294,8 +1300,8 @@ void dcn10_init_hw(struct dc *dc)
/* Power gate DSCs */ /* Power gate DSCs */
for (i = 0; i < res_pool->res_cap->num_dsc; i++) for (i = 0; i < res_pool->res_cap->num_dsc; i++)
if (dc->hwss.dsc_pg_control != NULL) if (hws->funcs.dsc_pg_control != NULL)
dc->hwss.dsc_pg_control(hws, res_pool->dscs[i]->inst, false); hws->funcs.dsc_pg_control(hws, res_pool->dscs[i]->inst, false);
/* If taking control over from VBIOS, we may want to optimize our first /* If taking control over from VBIOS, we may want to optimize our first
* mode set, so we need to skip powering down pipes until we know which * mode set, so we need to skip powering down pipes until we know which
...@@ -1304,7 +1310,7 @@ void dcn10_init_hw(struct dc *dc) ...@@ -1304,7 +1310,7 @@ void dcn10_init_hw(struct dc *dc)
* everything down. * everything down.
*/ */
if (dcb->funcs->is_accelerated_mode(dcb) || dc->config.power_down_display_on_boot) { if (dcb->funcs->is_accelerated_mode(dcb) || dc->config.power_down_display_on_boot) {
dc->hwss.init_pipes(dc, dc->current_state); hws->funcs.init_pipes(dc, dc->current_state);
} }
for (i = 0; i < res_pool->audio_count; i++) { for (i = 0; i < res_pool->audio_count; i++) {
...@@ -1336,7 +1342,7 @@ void dcn10_init_hw(struct dc *dc) ...@@ -1336,7 +1342,7 @@ void dcn10_init_hw(struct dc *dc)
REG_UPDATE(DCFCLK_CNTL, DCFCLK_GATE_DIS, 0); REG_UPDATE(DCFCLK_CNTL, DCFCLK_GATE_DIS, 0);
} }
dc->hwss.enable_power_gating_plane(dc->hwseq, true); hws->funcs.enable_power_gating_plane(dc->hwseq, true);
if (dc->clk_mgr->funcs->notify_wm_ranges) if (dc->clk_mgr->funcs->notify_wm_ranges)
dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr); dc->clk_mgr->funcs->notify_wm_ranges(dc->clk_mgr);
...@@ -1348,6 +1354,7 @@ void dcn10_reset_hw_ctx_wrap( ...@@ -1348,6 +1354,7 @@ void dcn10_reset_hw_ctx_wrap(
struct dc_state *context) struct dc_state *context)
{ {
int i; int i;
struct dce_hwseq *hws = dc->hwseq;
/* Reset Back End*/ /* Reset Back End*/
for (i = dc->res_pool->pipe_count - 1; i >= 0 ; i--) { for (i = dc->res_pool->pipe_count - 1; i >= 0 ; i--) {
...@@ -1366,8 +1373,8 @@ void dcn10_reset_hw_ctx_wrap( ...@@ -1366,8 +1373,8 @@ void dcn10_reset_hw_ctx_wrap(
struct clock_source *old_clk = pipe_ctx_old->clock_source; struct clock_source *old_clk = pipe_ctx_old->clock_source;
dcn10_reset_back_end_for_pipe(dc, pipe_ctx_old, dc->current_state); dcn10_reset_back_end_for_pipe(dc, pipe_ctx_old, dc->current_state);
if (dc->hwss.enable_stream_gating) if (hws->funcs.enable_stream_gating)
dc->hwss.enable_stream_gating(dc, pipe_ctx); hws->funcs.enable_stream_gating(dc, pipe_ctx);
if (old_clk) if (old_clk)
old_clk->funcs->cs_power_down(old_clk); old_clk->funcs->cs_power_down(old_clk);
} }
...@@ -1545,6 +1552,8 @@ void dcn10_pipe_control_lock( ...@@ -1545,6 +1552,8 @@ void dcn10_pipe_control_lock(
struct pipe_ctx *pipe, struct pipe_ctx *pipe,
bool lock) bool lock)
{ {
struct dce_hwseq *hws = dc->hwseq;
/* use TG master update lock to lock everything on the TG /* use TG master update lock to lock everything on the TG
* therefore only top pipe need to lock * therefore only top pipe need to lock
*/ */
...@@ -1552,7 +1561,7 @@ void dcn10_pipe_control_lock( ...@@ -1552,7 +1561,7 @@ void dcn10_pipe_control_lock(
return; return;
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
if (lock) if (lock)
pipe->stream_res.tg->funcs->lock(pipe->stream_res.tg); pipe->stream_res.tg->funcs->lock(pipe->stream_res.tg);
...@@ -1560,7 +1569,7 @@ void dcn10_pipe_control_lock( ...@@ -1560,7 +1569,7 @@ void dcn10_pipe_control_lock(
pipe->stream_res.tg->funcs->unlock(pipe->stream_res.tg); pipe->stream_res.tg->funcs->unlock(pipe->stream_res.tg);
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
static bool wait_for_reset_trigger_to_occur( static bool wait_for_reset_trigger_to_occur(
...@@ -1868,7 +1877,7 @@ static void dcn10_enable_plane( ...@@ -1868,7 +1877,7 @@ static void dcn10_enable_plane(
struct dce_hwseq *hws = dc->hwseq; struct dce_hwseq *hws = dc->hwseq;
if (dc->debug.sanity_checks) { if (dc->debug.sanity_checks) {
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
undo_DEGVIDCN10_253_wa(dc); undo_DEGVIDCN10_253_wa(dc);
...@@ -1925,7 +1934,7 @@ static void dcn10_enable_plane( ...@@ -1925,7 +1934,7 @@ static void dcn10_enable_plane(
dcn10_program_pte_vm(hws, pipe_ctx->plane_res.hubp); dcn10_program_pte_vm(hws, pipe_ctx->plane_res.hubp);
if (dc->debug.sanity_checks) { if (dc->debug.sanity_checks) {
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
} }
...@@ -2102,6 +2111,7 @@ static void dcn10_update_dpp(struct dpp *dpp, struct dc_plane_state *plane_state ...@@ -2102,6 +2111,7 @@ static void dcn10_update_dpp(struct dpp *dpp, struct dc_plane_state *plane_state
void dcn10_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn10_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct mpcc_blnd_cfg blnd_cfg = {{0}}; struct mpcc_blnd_cfg blnd_cfg = {{0}};
bool per_pixel_alpha = pipe_ctx->plane_state->per_pixel_alpha && pipe_ctx->bottom_pipe; bool per_pixel_alpha = pipe_ctx->plane_state->per_pixel_alpha && pipe_ctx->bottom_pipe;
...@@ -2111,10 +2121,10 @@ void dcn10_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -2111,10 +2121,10 @@ void dcn10_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx)
struct mpc_tree *mpc_tree_params = &(pipe_ctx->stream_res.opp->mpc_tree_params); struct mpc_tree *mpc_tree_params = &(pipe_ctx->stream_res.opp->mpc_tree_params);
if (dc->debug.visual_confirm == VISUAL_CONFIRM_HDR) { if (dc->debug.visual_confirm == VISUAL_CONFIRM_HDR) {
dc->hwss.get_hdr_visual_confirm_color( hws->funcs.get_hdr_visual_confirm_color(
pipe_ctx, &blnd_cfg.black_color); pipe_ctx, &blnd_cfg.black_color);
} else if (dc->debug.visual_confirm == VISUAL_CONFIRM_SURFACE) { } else if (dc->debug.visual_confirm == VISUAL_CONFIRM_SURFACE) {
dc->hwss.get_surface_visual_confirm_color( hws->funcs.get_surface_visual_confirm_color(
pipe_ctx, &blnd_cfg.black_color); pipe_ctx, &blnd_cfg.black_color);
} else { } else {
color_space_to_black_color( color_space_to_black_color(
...@@ -2201,6 +2211,7 @@ static void dcn10_update_dchubp_dpp( ...@@ -2201,6 +2211,7 @@ static void dcn10_update_dchubp_dpp(
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct dpp *dpp = pipe_ctx->plane_res.dpp; struct dpp *dpp = pipe_ctx->plane_res.dpp;
struct dc_plane_state *plane_state = pipe_ctx->plane_state; struct dc_plane_state *plane_state = pipe_ctx->plane_state;
...@@ -2259,7 +2270,7 @@ static void dcn10_update_dchubp_dpp( ...@@ -2259,7 +2270,7 @@ static void dcn10_update_dchubp_dpp(
if (plane_state->update_flags.bits.full_update || if (plane_state->update_flags.bits.full_update ||
plane_state->update_flags.bits.per_pixel_alpha_change || plane_state->update_flags.bits.per_pixel_alpha_change ||
plane_state->update_flags.bits.global_alpha_change) plane_state->update_flags.bits.global_alpha_change)
dc->hwss.update_mpcc(dc, pipe_ctx); hws->funcs.update_mpcc(dc, pipe_ctx);
if (plane_state->update_flags.bits.full_update || if (plane_state->update_flags.bits.full_update ||
plane_state->update_flags.bits.per_pixel_alpha_change || plane_state->update_flags.bits.per_pixel_alpha_change ||
...@@ -2319,7 +2330,7 @@ static void dcn10_update_dchubp_dpp( ...@@ -2319,7 +2330,7 @@ static void dcn10_update_dchubp_dpp(
hubp->power_gated = false; hubp->power_gated = false;
dc->hwss.update_plane_addr(dc, pipe_ctx); hws->funcs.update_plane_addr(dc, pipe_ctx);
if (is_pipe_tree_visible(pipe_ctx)) if (is_pipe_tree_visible(pipe_ctx))
hubp->funcs->set_blank(hubp, false); hubp->funcs->set_blank(hubp, false);
...@@ -2395,17 +2406,19 @@ void dcn10_program_pipe( ...@@ -2395,17 +2406,19 @@ void dcn10_program_pipe(
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
if (pipe_ctx->plane_state->update_flags.bits.full_update) if (pipe_ctx->plane_state->update_flags.bits.full_update)
dcn10_enable_plane(dc, pipe_ctx, context); dcn10_enable_plane(dc, pipe_ctx, context);
dcn10_update_dchubp_dpp(dc, pipe_ctx, context); dcn10_update_dchubp_dpp(dc, pipe_ctx, context);
dc->hwss.set_hdr_multiplier(pipe_ctx); hws->funcs.set_hdr_multiplier(pipe_ctx);
if (pipe_ctx->plane_state->update_flags.bits.full_update || if (pipe_ctx->plane_state->update_flags.bits.full_update ||
pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change || pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change ||
pipe_ctx->plane_state->update_flags.bits.gamma_change) pipe_ctx->plane_state->update_flags.bits.gamma_change)
dc->hwss.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state); hws->funcs.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state);
/* dcn10_translate_regamma_to_hw_format takes 750us to finish /* dcn10_translate_regamma_to_hw_format takes 750us to finish
* only do gamma programming for full update. * only do gamma programming for full update.
...@@ -2414,7 +2427,7 @@ void dcn10_program_pipe( ...@@ -2414,7 +2427,7 @@ void dcn10_program_pipe(
* doing heavy calculation and programming * doing heavy calculation and programming
*/ */
if (pipe_ctx->plane_state->update_flags.bits.full_update) if (pipe_ctx->plane_state->update_flags.bits.full_update)
dc->hwss.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream); hws->funcs.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream);
} }
static void dcn10_program_all_pipe_in_tree( static void dcn10_program_all_pipe_in_tree(
...@@ -2422,6 +2435,8 @@ static void dcn10_program_all_pipe_in_tree( ...@@ -2422,6 +2435,8 @@ static void dcn10_program_all_pipe_in_tree(
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
if (pipe_ctx->top_pipe == NULL) { if (pipe_ctx->top_pipe == NULL) {
bool blank = !is_pipe_tree_visible(pipe_ctx); bool blank = !is_pipe_tree_visible(pipe_ctx);
...@@ -2435,14 +2450,14 @@ static void dcn10_program_all_pipe_in_tree( ...@@ -2435,14 +2450,14 @@ static void dcn10_program_all_pipe_in_tree(
pipe_ctx->stream_res.tg->funcs->set_vtg_params( pipe_ctx->stream_res.tg->funcs->set_vtg_params(
pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing); pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing);
if (dc->hwss.setup_vupdate_interrupt) if (hws->funcs.setup_vupdate_interrupt)
dc->hwss.setup_vupdate_interrupt(dc, pipe_ctx); hws->funcs.setup_vupdate_interrupt(dc, pipe_ctx);
dc->hwss.blank_pixel_data(dc, pipe_ctx, blank); hws->funcs.blank_pixel_data(dc, pipe_ctx, blank);
} }
if (pipe_ctx->plane_state != NULL) if (pipe_ctx->plane_state != NULL)
dc->hwss.program_pipe(dc, pipe_ctx, context); hws->funcs.program_pipe(dc, pipe_ctx, context);
if (pipe_ctx->bottom_pipe != NULL && pipe_ctx->bottom_pipe != pipe_ctx) if (pipe_ctx->bottom_pipe != NULL && pipe_ctx->bottom_pipe != pipe_ctx)
dcn10_program_all_pipe_in_tree(dc, pipe_ctx->bottom_pipe, context); dcn10_program_all_pipe_in_tree(dc, pipe_ctx->bottom_pipe, context);
...@@ -2478,6 +2493,7 @@ void dcn10_apply_ctx_for_surface( ...@@ -2478,6 +2493,7 @@ void dcn10_apply_ctx_for_surface(
int num_planes, int num_planes,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
int i; int i;
struct timing_generator *tg; struct timing_generator *tg;
uint32_t underflow_check_delay_us; uint32_t underflow_check_delay_us;
...@@ -2497,8 +2513,8 @@ void dcn10_apply_ctx_for_surface( ...@@ -2497,8 +2513,8 @@ void dcn10_apply_ctx_for_surface(
underflow_check_delay_us = dc->debug.underflow_assert_delay_us; underflow_check_delay_us = dc->debug.underflow_assert_delay_us;
if (underflow_check_delay_us != 0xFFFFFFFF && dc->hwss.did_underflow_occur) if (underflow_check_delay_us != 0xFFFFFFFF && hws->funcs.did_underflow_occur)
ASSERT(dc->hwss.did_underflow_occur(dc, top_pipe_to_program)); ASSERT(hws->funcs.did_underflow_occur(dc, top_pipe_to_program));
if (interdependent_update) if (interdependent_update)
dcn10_lock_all_pipes(dc, context, true); dcn10_lock_all_pipes(dc, context, true);
...@@ -2508,12 +2524,12 @@ void dcn10_apply_ctx_for_surface( ...@@ -2508,12 +2524,12 @@ void dcn10_apply_ctx_for_surface(
if (underflow_check_delay_us != 0xFFFFFFFF) if (underflow_check_delay_us != 0xFFFFFFFF)
udelay(underflow_check_delay_us); udelay(underflow_check_delay_us);
if (underflow_check_delay_us != 0xFFFFFFFF && dc->hwss.did_underflow_occur) if (underflow_check_delay_us != 0xFFFFFFFF && hws->funcs.did_underflow_occur)
ASSERT(dc->hwss.did_underflow_occur(dc, top_pipe_to_program)); ASSERT(hws->funcs.did_underflow_occur(dc, top_pipe_to_program));
if (num_planes == 0) { if (num_planes == 0) {
/* OTG blank before remove all front end */ /* OTG blank before remove all front end */
dc->hwss.blank_pixel_data(dc, top_pipe_to_program, true); hws->funcs.blank_pixel_data(dc, top_pipe_to_program, true);
} }
/* Disconnect unused mpcc */ /* Disconnect unused mpcc */
...@@ -2539,7 +2555,7 @@ void dcn10_apply_ctx_for_surface( ...@@ -2539,7 +2555,7 @@ void dcn10_apply_ctx_for_surface(
old_pipe_ctx->plane_state && old_pipe_ctx->plane_state &&
old_pipe_ctx->stream_res.tg == tg) { old_pipe_ctx->stream_res.tg == tg) {
dc->hwss.plane_atomic_disconnect(dc, old_pipe_ctx); hws->funcs.plane_atomic_disconnect(dc, old_pipe_ctx);
removed_pipe[i] = true; removed_pipe[i] = true;
DC_LOG_DC("Reset mpcc for pipe %d\n", DC_LOG_DC("Reset mpcc for pipe %d\n",
...@@ -2551,8 +2567,8 @@ void dcn10_apply_ctx_for_surface( ...@@ -2551,8 +2567,8 @@ void dcn10_apply_ctx_for_surface(
dcn10_program_all_pipe_in_tree(dc, top_pipe_to_program, context); dcn10_program_all_pipe_in_tree(dc, top_pipe_to_program, context);
/* Program secondary blending tree and writeback pipes */ /* Program secondary blending tree and writeback pipes */
if ((stream->num_wb_info > 0) && (dc->hwss.program_all_writeback_pipes_in_tree)) if ((stream->num_wb_info > 0) && (hws->funcs.program_all_writeback_pipes_in_tree))
dc->hwss.program_all_writeback_pipes_in_tree(dc, stream, context); hws->funcs.program_all_writeback_pipes_in_tree(dc, stream, context);
if (interdependent_update) if (interdependent_update)
for (i = 0; i < dc->res_pool->pipe_count; i++) { for (i = 0; i < dc->res_pool->pipe_count; i++) {
struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i]; struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i];
...@@ -2609,10 +2625,11 @@ void dcn10_prepare_bandwidth( ...@@ -2609,10 +2625,11 @@ void dcn10_prepare_bandwidth(
struct dc *dc, struct dc *dc,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubbub *hubbub = dc->res_pool->hubbub; struct hubbub *hubbub = dc->res_pool->hubbub;
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) { if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
if (context->stream_count == 0) if (context->stream_count == 0)
...@@ -2634,17 +2651,18 @@ void dcn10_prepare_bandwidth( ...@@ -2634,17 +2651,18 @@ void dcn10_prepare_bandwidth(
dcn_bw_notify_pplib_of_wm_ranges(dc); dcn_bw_notify_pplib_of_wm_ranges(dc);
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
void dcn10_optimize_bandwidth( void dcn10_optimize_bandwidth(
struct dc *dc, struct dc *dc,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubbub *hubbub = dc->res_pool->hubbub; struct hubbub *hubbub = dc->res_pool->hubbub;
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) { if (!IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
if (context->stream_count == 0) if (context->stream_count == 0)
...@@ -2666,7 +2684,7 @@ void dcn10_optimize_bandwidth( ...@@ -2666,7 +2684,7 @@ void dcn10_optimize_bandwidth(
dcn_bw_notify_pplib_of_wm_ranges(dc); dcn_bw_notify_pplib_of_wm_ranges(dc);
if (dc->debug.sanity_checks) if (dc->debug.sanity_checks)
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
void dcn10_set_drr(struct pipe_ctx **pipe_ctx, void dcn10_set_drr(struct pipe_ctx **pipe_ctx,
...@@ -2808,10 +2826,11 @@ void dcn10_wait_for_mpcc_disconnect( ...@@ -2808,10 +2826,11 @@ void dcn10_wait_for_mpcc_disconnect(
struct resource_pool *res_pool, struct resource_pool *res_pool,
struct pipe_ctx *pipe_ctx) struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
int mpcc_inst; int mpcc_inst;
if (dc->debug.sanity_checks) { if (dc->debug.sanity_checks) {
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
if (!pipe_ctx->stream_res.opp) if (!pipe_ctx->stream_res.opp)
...@@ -2828,7 +2847,7 @@ void dcn10_wait_for_mpcc_disconnect( ...@@ -2828,7 +2847,7 @@ void dcn10_wait_for_mpcc_disconnect(
} }
if (dc->debug.sanity_checks) { if (dc->debug.sanity_checks) {
dc->hwss.verify_allow_pstate_change_high(dc); hws->funcs.verify_allow_pstate_change_high(dc);
} }
} }
...@@ -3127,6 +3146,7 @@ void dcn10_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -3127,6 +3146,7 @@ void dcn10_unblank_stream(struct pipe_ctx *pipe_ctx,
struct encoder_unblank_param params = { { 0 } }; struct encoder_unblank_param params = { { 0 } };
struct dc_stream_state *stream = pipe_ctx->stream; struct dc_stream_state *stream = pipe_ctx->stream;
struct dc_link *link = stream->link; struct dc_link *link = stream->link;
struct dce_hwseq *hws = link->dc->hwseq;
/* only 3 items below are used by unblank */ /* only 3 items below are used by unblank */
params.timing = pipe_ctx->stream->timing; params.timing = pipe_ctx->stream->timing;
...@@ -3140,7 +3160,7 @@ void dcn10_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -3140,7 +3160,7 @@ void dcn10_unblank_stream(struct pipe_ctx *pipe_ctx,
} }
if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) { if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) {
link->dc->hwss.edp_backlight_control(link, true); hws->funcs.edp_backlight_control(link, true);
} }
} }
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#define __DC_HWSS_DCN10_H__ #define __DC_HWSS_DCN10_H__
#include "core_types.h" #include "core_types.h"
#include "hw_sequencer_private.h"
struct dc; struct dc;
......
...@@ -23,25 +23,19 @@ ...@@ -23,25 +23,19 @@
* *
*/ */
#include "hw_sequencer_private.h"
#include "dce110/dce110_hw_sequencer.h" #include "dce110/dce110_hw_sequencer.h"
#include "dcn10_hw_sequencer.h" #include "dcn10_hw_sequencer.h"
static const struct hw_sequencer_funcs dcn10_funcs = { static const struct hw_sequencer_funcs dcn10_funcs = {
.program_gamut_remap = dcn10_program_gamut_remap, .program_gamut_remap = dcn10_program_gamut_remap,
.init_hw = dcn10_init_hw, .init_hw = dcn10_init_hw,
.init_pipes = dcn10_init_pipes,
.apply_ctx_to_hw = dce110_apply_ctx_to_hw, .apply_ctx_to_hw = dce110_apply_ctx_to_hw,
.apply_ctx_for_surface = dcn10_apply_ctx_for_surface, .apply_ctx_for_surface = dcn10_apply_ctx_for_surface,
.update_plane_addr = dcn10_update_plane_addr, .update_plane_addr = dcn10_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.program_pipe = dcn10_program_pipe,
.update_dchub = dcn10_update_dchub, .update_dchub = dcn10_update_dchub,
.update_mpcc = dcn10_update_mpcc,
.update_pending_status = dcn10_update_pending_status, .update_pending_status = dcn10_update_pending_status,
.set_input_transfer_func = dcn10_set_input_transfer_func,
.set_output_transfer_func = dcn10_set_output_transfer_func,
.program_output_csc = dcn10_program_output_csc, .program_output_csc = dcn10_program_output_csc,
.power_down = dce110_power_down,
.enable_accelerated_mode = dce110_enable_accelerated_mode, .enable_accelerated_mode = dce110_enable_accelerated_mode,
.enable_timing_synchronization = dcn10_enable_timing_synchronization, .enable_timing_synchronization = dcn10_enable_timing_synchronization,
.enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset, .enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset,
...@@ -53,14 +47,10 @@ static const struct hw_sequencer_funcs dcn10_funcs = { ...@@ -53,14 +47,10 @@ static const struct hw_sequencer_funcs dcn10_funcs = {
.blank_stream = dce110_blank_stream, .blank_stream = dce110_blank_stream,
.enable_audio_stream = dce110_enable_audio_stream, .enable_audio_stream = dce110_enable_audio_stream,
.disable_audio_stream = dce110_disable_audio_stream, .disable_audio_stream = dce110_disable_audio_stream,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.disable_plane = dcn10_disable_plane, .disable_plane = dcn10_disable_plane,
.blank_pixel_data = dcn10_blank_pixel_data,
.pipe_control_lock = dcn10_pipe_control_lock, .pipe_control_lock = dcn10_pipe_control_lock,
.prepare_bandwidth = dcn10_prepare_bandwidth, .prepare_bandwidth = dcn10_prepare_bandwidth,
.optimize_bandwidth = dcn10_optimize_bandwidth, .optimize_bandwidth = dcn10_optimize_bandwidth,
.reset_hw_ctx_wrap = dcn10_reset_hw_ctx_wrap,
.enable_stream_timing = dcn10_enable_stream_timing,
.set_drr = dcn10_set_drr, .set_drr = dcn10_set_drr,
.get_position = dcn10_get_position, .get_position = dcn10_get_position,
.set_static_screen_control = dcn10_set_static_screen_control, .set_static_screen_control = dcn10_set_static_screen_control,
...@@ -70,18 +60,34 @@ static const struct hw_sequencer_funcs dcn10_funcs = { ...@@ -70,18 +60,34 @@ static const struct hw_sequencer_funcs dcn10_funcs = {
.get_hw_state = dcn10_get_hw_state, .get_hw_state = dcn10_get_hw_state,
.clear_status_bits = dcn10_clear_status_bits, .clear_status_bits = dcn10_clear_status_bits,
.wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect, .wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect,
.edp_backlight_control = dce110_edp_backlight_control,
.edp_power_control = dce110_edp_power_control, .edp_power_control = dce110_edp_power_control,
.edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready, .edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready,
.set_cursor_position = dcn10_set_cursor_position, .set_cursor_position = dcn10_set_cursor_position,
.set_cursor_attribute = dcn10_set_cursor_attribute, .set_cursor_attribute = dcn10_set_cursor_attribute,
.set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level, .set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level,
.disable_stream_gating = NULL,
.enable_stream_gating = NULL,
.setup_periodic_interrupt = dcn10_setup_periodic_interrupt, .setup_periodic_interrupt = dcn10_setup_periodic_interrupt,
.setup_vupdate_interrupt = dcn10_setup_vupdate_interrupt,
.set_clock = dcn10_set_clock, .set_clock = dcn10_set_clock,
.get_clock = dcn10_get_clock, .get_clock = dcn10_get_clock,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
};
static const struct hwseq_private_funcs dcn10_private_funcs = {
.init_pipes = dcn10_init_pipes,
.update_plane_addr = dcn10_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.program_pipe = dcn10_program_pipe,
.update_mpcc = dcn10_update_mpcc,
.set_input_transfer_func = dcn10_set_input_transfer_func,
.set_output_transfer_func = dcn10_set_output_transfer_func,
.power_down = dce110_power_down,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.blank_pixel_data = dcn10_blank_pixel_data,
.reset_hw_ctx_wrap = dcn10_reset_hw_ctx_wrap,
.enable_stream_timing = dcn10_enable_stream_timing,
.edp_backlight_control = dce110_edp_backlight_control,
.disable_stream_gating = NULL,
.enable_stream_gating = NULL,
.setup_vupdate_interrupt = dcn10_setup_vupdate_interrupt,
.did_underflow_occur = dcn10_did_underflow_occur, .did_underflow_occur = dcn10_did_underflow_occur,
.init_blank = NULL, .init_blank = NULL,
.disable_vga = dcn10_disable_vga, .disable_vga = dcn10_disable_vga,
...@@ -96,10 +102,10 @@ static const struct hw_sequencer_funcs dcn10_funcs = { ...@@ -96,10 +102,10 @@ static const struct hw_sequencer_funcs dcn10_funcs = {
.get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color, .get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color,
.set_hdr_multiplier = dcn10_set_hdr_multiplier, .set_hdr_multiplier = dcn10_set_hdr_multiplier,
.verify_allow_pstate_change_high = dcn10_verify_allow_pstate_change_high, .verify_allow_pstate_change_high = dcn10_verify_allow_pstate_change_high,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
}; };
void dcn10_hw_sequencer_construct(struct dc *dc) void dcn10_hw_sequencer_construct(struct dc *dc)
{ {
dc->hwss = dcn10_funcs; dc->hwss = dcn10_funcs;
dc->hwseq->funcs = dcn10_private_funcs;
} }
...@@ -272,6 +272,7 @@ void dcn20_init_blank( ...@@ -272,6 +272,7 @@ void dcn20_init_blank(
struct dc *dc, struct dc *dc,
struct timing_generator *tg) struct timing_generator *tg)
{ {
struct dce_hwseq *hws = dc->hwseq;
enum dc_color_space color_space; enum dc_color_space color_space;
struct tg_color black_color = {0}; struct tg_color black_color = {0};
struct output_pixel_processor *opp = NULL; struct output_pixel_processor *opp = NULL;
...@@ -319,7 +320,7 @@ void dcn20_init_blank( ...@@ -319,7 +320,7 @@ void dcn20_init_blank(
otg_active_height); otg_active_height);
} }
dc->hwss.wait_for_blank_complete(opp); hws->funcs.wait_for_blank_complete(opp);
} }
void dcn20_dsc_pg_control( void dcn20_dsc_pg_control(
...@@ -552,6 +553,7 @@ void dcn20_hubp_pg_control( ...@@ -552,6 +553,7 @@ void dcn20_hubp_pg_control(
*/ */
void dcn20_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn20_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct dpp *dpp = pipe_ctx->plane_res.dpp; struct dpp *dpp = pipe_ctx->plane_res.dpp;
...@@ -572,7 +574,7 @@ void dcn20_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -572,7 +574,7 @@ void dcn20_plane_atomic_disable(struct dc *dc, struct pipe_ctx *pipe_ctx)
hubp->power_gated = true; hubp->power_gated = true;
dc->optimized_required = false; /* We're powering off, no need to optimize */ dc->optimized_required = false; /* We're powering off, no need to optimize */
dc->hwss.plane_atomic_power_down(dc, hws->funcs.plane_atomic_power_down(dc,
pipe_ctx->plane_res.dpp, pipe_ctx->plane_res.dpp,
pipe_ctx->plane_res.hubp); pipe_ctx->plane_res.hubp);
...@@ -603,6 +605,7 @@ enum dc_status dcn20_enable_stream_timing( ...@@ -603,6 +605,7 @@ enum dc_status dcn20_enable_stream_timing(
struct dc_state *context, struct dc_state *context,
struct dc *dc) struct dc *dc)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct dc_stream_state *stream = pipe_ctx->stream; struct dc_stream_state *stream = pipe_ctx->stream;
struct drr_params params = {0}; struct drr_params params = {0};
unsigned int event_triggers = 0; unsigned int event_triggers = 0;
...@@ -662,7 +665,7 @@ enum dc_status dcn20_enable_stream_timing( ...@@ -662,7 +665,7 @@ enum dc_status dcn20_enable_stream_timing(
pipe_ctx->stream_res.opp, pipe_ctx->stream_res.opp,
true); true);
dc->hwss.blank_pixel_data(dc, pipe_ctx, true); hws->funcs.blank_pixel_data(dc, pipe_ctx, true);
/* VTG is within DCHUB command block. DCFCLK is always on */ /* VTG is within DCHUB command block. DCFCLK is always on */
if (false == pipe_ctx->stream_res.tg->funcs->enable_crtc(pipe_ctx->stream_res.tg)) { if (false == pipe_ctx->stream_res.tg->funcs->enable_crtc(pipe_ctx->stream_res.tg)) {
...@@ -670,7 +673,7 @@ enum dc_status dcn20_enable_stream_timing( ...@@ -670,7 +673,7 @@ enum dc_status dcn20_enable_stream_timing(
return DC_ERROR_UNEXPECTED; return DC_ERROR_UNEXPECTED;
} }
dc->hwss.wait_for_blank_complete(pipe_ctx->stream_res.opp); hws->funcs.wait_for_blank_complete(pipe_ctx->stream_res.opp);
params.vertical_total_min = stream->adjust.v_total_min; params.vertical_total_min = stream->adjust.v_total_min;
params.vertical_total_max = stream->adjust.v_total_max; params.vertical_total_max = stream->adjust.v_total_max;
...@@ -820,6 +823,7 @@ bool dcn20_set_input_transfer_func(struct dc *dc, ...@@ -820,6 +823,7 @@ bool dcn20_set_input_transfer_func(struct dc *dc,
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
const struct dc_plane_state *plane_state) const struct dc_plane_state *plane_state)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct dpp *dpp_base = pipe_ctx->plane_res.dpp; struct dpp *dpp_base = pipe_ctx->plane_res.dpp;
const struct dc_transfer_func *tf = NULL; const struct dc_transfer_func *tf = NULL;
bool result = true; bool result = true;
...@@ -828,8 +832,8 @@ bool dcn20_set_input_transfer_func(struct dc *dc, ...@@ -828,8 +832,8 @@ bool dcn20_set_input_transfer_func(struct dc *dc,
if (dpp_base == NULL || plane_state == NULL) if (dpp_base == NULL || plane_state == NULL)
return false; return false;
dc->hwss.set_shaper_3dlut(pipe_ctx, plane_state); hws->funcs.set_shaper_3dlut(pipe_ctx, plane_state);
dc->hwss.set_blend_lut(pipe_ctx, plane_state); hws->funcs.set_blend_lut(pipe_ctx, plane_state);
if (plane_state->in_transfer_func) if (plane_state->in_transfer_func)
tf = plane_state->in_transfer_func; tf = plane_state->in_transfer_func;
...@@ -1292,6 +1296,7 @@ static void dcn20_update_dchubp_dpp( ...@@ -1292,6 +1296,7 @@ static void dcn20_update_dchubp_dpp(
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct dpp *dpp = pipe_ctx->plane_res.dpp; struct dpp *dpp = pipe_ctx->plane_res.dpp;
struct dc_plane_state *plane_state = pipe_ctx->plane_state; struct dc_plane_state *plane_state = pipe_ctx->plane_state;
...@@ -1356,7 +1361,7 @@ static void dcn20_update_dchubp_dpp( ...@@ -1356,7 +1361,7 @@ static void dcn20_update_dchubp_dpp(
old_pipe_ctx->stream_res.opp->mpcc_disconnect_pending[mpcc_inst] = false; old_pipe_ctx->stream_res.opp->mpcc_disconnect_pending[mpcc_inst] = false;
} }
} }
dc->hwss.update_mpcc(dc, pipe_ctx); hws->funcs.update_mpcc(dc, pipe_ctx);
} }
if (pipe_ctx->update_flags.bits.scaler || if (pipe_ctx->update_flags.bits.scaler ||
...@@ -1431,7 +1436,7 @@ static void dcn20_update_dchubp_dpp( ...@@ -1431,7 +1436,7 @@ static void dcn20_update_dchubp_dpp(
} }
if (pipe_ctx->update_flags.bits.enable || plane_state->update_flags.bits.addr_update) if (pipe_ctx->update_flags.bits.enable || plane_state->update_flags.bits.addr_update)
dc->hwss.update_plane_addr(dc, pipe_ctx); hws->funcs.update_plane_addr(dc, pipe_ctx);
if (pipe_ctx->update_flags.bits.enable) if (pipe_ctx->update_flags.bits.enable)
hubp->funcs->set_blank(hubp, false); hubp->funcs->set_blank(hubp, false);
...@@ -1443,10 +1448,11 @@ static void dcn20_program_pipe( ...@@ -1443,10 +1448,11 @@ static void dcn20_program_pipe(
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_state *context) struct dc_state *context)
{ {
struct dce_hwseq *hws = dc->hwseq;
/* Only need to unblank on top pipe */ /* Only need to unblank on top pipe */
if ((pipe_ctx->update_flags.bits.enable || pipe_ctx->stream->update_flags.bits.abm_level) if ((pipe_ctx->update_flags.bits.enable || pipe_ctx->stream->update_flags.bits.abm_level)
&& !pipe_ctx->top_pipe && !pipe_ctx->prev_odm_pipe) && !pipe_ctx->top_pipe && !pipe_ctx->prev_odm_pipe)
dc->hwss.blank_pixel_data(dc, pipe_ctx, !pipe_ctx->plane_state->visible); hws->funcs.blank_pixel_data(dc, pipe_ctx, !pipe_ctx->plane_state->visible);
if (pipe_ctx->update_flags.bits.global_sync) { if (pipe_ctx->update_flags.bits.global_sync) {
pipe_ctx->stream_res.tg->funcs->program_global_sync( pipe_ctx->stream_res.tg->funcs->program_global_sync(
...@@ -1459,12 +1465,12 @@ static void dcn20_program_pipe( ...@@ -1459,12 +1465,12 @@ static void dcn20_program_pipe(
pipe_ctx->stream_res.tg->funcs->set_vtg_params( pipe_ctx->stream_res.tg->funcs->set_vtg_params(
pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing); pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing);
if (dc->hwss.setup_vupdate_interrupt) if (hws->funcs.setup_vupdate_interrupt)
dc->hwss.setup_vupdate_interrupt(dc, pipe_ctx); hws->funcs.setup_vupdate_interrupt(dc, pipe_ctx);
} }
if (pipe_ctx->update_flags.bits.odm) if (pipe_ctx->update_flags.bits.odm)
dc->hwss.update_odm(dc, context, pipe_ctx); hws->funcs.update_odm(dc, context, pipe_ctx);
if (pipe_ctx->update_flags.bits.enable) if (pipe_ctx->update_flags.bits.enable)
dcn20_enable_plane(dc, pipe_ctx, context); dcn20_enable_plane(dc, pipe_ctx, context);
...@@ -1474,19 +1480,19 @@ static void dcn20_program_pipe( ...@@ -1474,19 +1480,19 @@ static void dcn20_program_pipe(
if (pipe_ctx->update_flags.bits.enable if (pipe_ctx->update_flags.bits.enable
|| pipe_ctx->plane_state->update_flags.bits.hdr_mult) || pipe_ctx->plane_state->update_flags.bits.hdr_mult)
dc->hwss.set_hdr_multiplier(pipe_ctx); hws->funcs.set_hdr_multiplier(pipe_ctx);
if (pipe_ctx->update_flags.bits.enable || if (pipe_ctx->update_flags.bits.enable ||
pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change || pipe_ctx->plane_state->update_flags.bits.in_transfer_func_change ||
pipe_ctx->plane_state->update_flags.bits.gamma_change) pipe_ctx->plane_state->update_flags.bits.gamma_change)
dc->hwss.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state); hws->funcs.set_input_transfer_func(dc, pipe_ctx, pipe_ctx->plane_state);
/* dcn10_translate_regamma_to_hw_format takes 750us to finish /* dcn10_translate_regamma_to_hw_format takes 750us to finish
* only do gamma programming for powering on, internal memcmp to avoid * only do gamma programming for powering on, internal memcmp to avoid
* updating on slave planes * updating on slave planes
*/ */
if (pipe_ctx->update_flags.bits.enable || pipe_ctx->stream->update_flags.bits.out_tf) if (pipe_ctx->update_flags.bits.enable || pipe_ctx->stream->update_flags.bits.out_tf)
dc->hwss.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream); hws->funcs.set_output_transfer_func(dc, pipe_ctx, pipe_ctx->stream);
/* If the pipe has been enabled or has a different opp, we /* If the pipe has been enabled or has a different opp, we
* should reprogram the fmt. This deals with cases where * should reprogram the fmt. This deals with cases where
...@@ -1526,6 +1532,7 @@ void dcn20_program_front_end_for_ctx( ...@@ -1526,6 +1532,7 @@ void dcn20_program_front_end_for_ctx(
{ {
const unsigned int TIMEOUT_FOR_PIPE_ENABLE_MS = 100; const unsigned int TIMEOUT_FOR_PIPE_ENABLE_MS = 100;
int i; int i;
struct dce_hwseq *hws = dc->hwseq;
bool pipe_locked[MAX_PIPES] = {false}; bool pipe_locked[MAX_PIPES] = {false};
DC_LOGGER_INIT(dc->ctx->logger); DC_LOGGER_INIT(dc->ctx->logger);
...@@ -1557,13 +1564,13 @@ void dcn20_program_front_end_for_ctx( ...@@ -1557,13 +1564,13 @@ void dcn20_program_front_end_for_ctx(
&& !context->res_ctx.pipe_ctx[i].top_pipe && !context->res_ctx.pipe_ctx[i].top_pipe
&& !context->res_ctx.pipe_ctx[i].prev_odm_pipe && !context->res_ctx.pipe_ctx[i].prev_odm_pipe
&& context->res_ctx.pipe_ctx[i].stream) && context->res_ctx.pipe_ctx[i].stream)
dc->hwss.blank_pixel_data(dc, &context->res_ctx.pipe_ctx[i], true); hws->funcs.blank_pixel_data(dc, &context->res_ctx.pipe_ctx[i], true);
/* Disconnect mpcc */ /* Disconnect mpcc */
for (i = 0; i < dc->res_pool->pipe_count; i++) for (i = 0; i < dc->res_pool->pipe_count; i++)
if (context->res_ctx.pipe_ctx[i].update_flags.bits.disable if (context->res_ctx.pipe_ctx[i].update_flags.bits.disable
|| context->res_ctx.pipe_ctx[i].update_flags.bits.opp_changed) { || context->res_ctx.pipe_ctx[i].update_flags.bits.opp_changed) {
dc->hwss.plane_atomic_disconnect(dc, &dc->current_state->res_ctx.pipe_ctx[i]); hws->funcs.plane_atomic_disconnect(dc, &dc->current_state->res_ctx.pipe_ctx[i]);
DC_LOG_DC("Reset mpcc for pipe %d\n", dc->current_state->res_ctx.pipe_ctx[i].pipe_idx); DC_LOG_DC("Reset mpcc for pipe %d\n", dc->current_state->res_ctx.pipe_ctx[i].pipe_idx);
} }
...@@ -1583,8 +1590,8 @@ void dcn20_program_front_end_for_ctx( ...@@ -1583,8 +1590,8 @@ void dcn20_program_front_end_for_ctx(
pipe = &context->res_ctx.pipe_ctx[i]; pipe = &context->res_ctx.pipe_ctx[i];
if (!pipe->prev_odm_pipe && pipe->stream->num_wb_info > 0 if (!pipe->prev_odm_pipe && pipe->stream->num_wb_info > 0
&& (pipe->update_flags.raw || pipe->plane_state->update_flags.raw || pipe->stream->update_flags.raw) && (pipe->update_flags.raw || pipe->plane_state->update_flags.raw || pipe->stream->update_flags.raw)
&& dc->hwss.program_all_writeback_pipes_in_tree) && hws->funcs.program_all_writeback_pipes_in_tree)
dc->hwss.program_all_writeback_pipes_in_tree(dc, pipe->stream, context); hws->funcs.program_all_writeback_pipes_in_tree(dc, pipe->stream, context);
} }
} }
...@@ -1669,6 +1676,7 @@ bool dcn20_update_bandwidth( ...@@ -1669,6 +1676,7 @@ bool dcn20_update_bandwidth(
struct dc_state *context) struct dc_state *context)
{ {
int i; int i;
struct dce_hwseq *hws = dc->hwseq;
/* recalculate DML parameters */ /* recalculate DML parameters */
if (!dc->res_pool->funcs->validate_bandwidth(dc, context, false)) if (!dc->res_pool->funcs->validate_bandwidth(dc, context, false))
...@@ -1698,10 +1706,10 @@ bool dcn20_update_bandwidth( ...@@ -1698,10 +1706,10 @@ bool dcn20_update_bandwidth(
pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing); pipe_ctx->stream_res.tg, &pipe_ctx->stream->timing);
if (pipe_ctx->prev_odm_pipe == NULL) if (pipe_ctx->prev_odm_pipe == NULL)
dc->hwss.blank_pixel_data(dc, pipe_ctx, blank); hws->funcs.blank_pixel_data(dc, pipe_ctx, blank);
if (dc->hwss.setup_vupdate_interrupt) if (hws->funcs.setup_vupdate_interrupt)
dc->hwss.setup_vupdate_interrupt(dc, pipe_ctx); hws->funcs.setup_vupdate_interrupt(dc, pipe_ctx);
} }
pipe_ctx->plane_res.hubp->funcs->hubp_setup( pipe_ctx->plane_res.hubp->funcs->hubp_setup(
...@@ -1938,6 +1946,7 @@ void dcn20_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -1938,6 +1946,7 @@ void dcn20_unblank_stream(struct pipe_ctx *pipe_ctx,
struct encoder_unblank_param params = { { 0 } }; struct encoder_unblank_param params = { { 0 } };
struct dc_stream_state *stream = pipe_ctx->stream; struct dc_stream_state *stream = pipe_ctx->stream;
struct dc_link *link = stream->link; struct dc_link *link = stream->link;
struct dce_hwseq *hws = link->dc->hwseq;
struct pipe_ctx *odm_pipe; struct pipe_ctx *odm_pipe;
params.opp_cnt = 1; params.opp_cnt = 1;
...@@ -1958,7 +1967,7 @@ void dcn20_unblank_stream(struct pipe_ctx *pipe_ctx, ...@@ -1958,7 +1967,7 @@ void dcn20_unblank_stream(struct pipe_ctx *pipe_ctx,
} }
if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) { if (link->local_sink && link->local_sink->sink_signal == SIGNAL_TYPE_EDP) {
link->dc->hwss.edp_backlight_control(link, true); hws->funcs.edp_backlight_control(link, true);
} }
} }
...@@ -2046,6 +2055,7 @@ void dcn20_reset_hw_ctx_wrap( ...@@ -2046,6 +2055,7 @@ void dcn20_reset_hw_ctx_wrap(
struct dc_state *context) struct dc_state *context)
{ {
int i; int i;
struct dce_hwseq *hws = dc->hwseq;
/* Reset Back End*/ /* Reset Back End*/
for (i = dc->res_pool->pipe_count - 1; i >= 0 ; i--) { for (i = dc->res_pool->pipe_count - 1; i >= 0 ; i--) {
...@@ -2064,8 +2074,8 @@ void dcn20_reset_hw_ctx_wrap( ...@@ -2064,8 +2074,8 @@ void dcn20_reset_hw_ctx_wrap(
struct clock_source *old_clk = pipe_ctx_old->clock_source; struct clock_source *old_clk = pipe_ctx_old->clock_source;
dcn20_reset_back_end_for_pipe(dc, pipe_ctx_old, dc->current_state); dcn20_reset_back_end_for_pipe(dc, pipe_ctx_old, dc->current_state);
if (dc->hwss.enable_stream_gating) if (hws->funcs.enable_stream_gating)
dc->hwss.enable_stream_gating(dc, pipe_ctx); hws->funcs.enable_stream_gating(dc, pipe_ctx);
if (old_clk) if (old_clk)
old_clk->funcs->cs_power_down(old_clk); old_clk->funcs->cs_power_down(old_clk);
} }
...@@ -2096,6 +2106,7 @@ void dcn20_get_mpctree_visual_confirm_color( ...@@ -2096,6 +2106,7 @@ void dcn20_get_mpctree_visual_confirm_color(
void dcn20_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx) void dcn20_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx)
{ {
struct dce_hwseq *hws = dc->hwseq;
struct hubp *hubp = pipe_ctx->plane_res.hubp; struct hubp *hubp = pipe_ctx->plane_res.hubp;
struct mpcc_blnd_cfg blnd_cfg = { {0} }; struct mpcc_blnd_cfg blnd_cfg = { {0} };
bool per_pixel_alpha = pipe_ctx->plane_state->per_pixel_alpha; bool per_pixel_alpha = pipe_ctx->plane_state->per_pixel_alpha;
...@@ -2106,10 +2117,10 @@ void dcn20_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx) ...@@ -2106,10 +2117,10 @@ void dcn20_update_mpcc(struct dc *dc, struct pipe_ctx *pipe_ctx)
// input to MPCC is always RGB, by default leave black_color at 0 // input to MPCC is always RGB, by default leave black_color at 0
if (dc->debug.visual_confirm == VISUAL_CONFIRM_HDR) { if (dc->debug.visual_confirm == VISUAL_CONFIRM_HDR) {
dc->hwss.get_hdr_visual_confirm_color( hws->funcs.get_hdr_visual_confirm_color(
pipe_ctx, &blnd_cfg.black_color); pipe_ctx, &blnd_cfg.black_color);
} else if (dc->debug.visual_confirm == VISUAL_CONFIRM_SURFACE) { } else if (dc->debug.visual_confirm == VISUAL_CONFIRM_SURFACE) {
dc->hwss.get_surface_visual_confirm_color( hws->funcs.get_surface_visual_confirm_color(
pipe_ctx, &blnd_cfg.black_color); pipe_ctx, &blnd_cfg.black_color);
} else if (dc->debug.visual_confirm == VISUAL_CONFIRM_MPCTREE) { } else if (dc->debug.visual_confirm == VISUAL_CONFIRM_MPCTREE) {
dcn20_get_mpctree_visual_confirm_color( dcn20_get_mpctree_visual_confirm_color(
...@@ -2265,13 +2276,13 @@ void dcn20_fpga_init_hw(struct dc *dc) ...@@ -2265,13 +2276,13 @@ void dcn20_fpga_init_hw(struct dc *dc)
res_pool->dccg->funcs->dccg_init(res_pool->dccg); res_pool->dccg->funcs->dccg_init(res_pool->dccg);
//Enable ability to power gate / don't force power on permanently //Enable ability to power gate / don't force power on permanently
dc->hwss.enable_power_gating_plane(hws, true); hws->funcs.enable_power_gating_plane(hws, true);
// Specific to FPGA dccg and registers // Specific to FPGA dccg and registers
REG_WRITE(RBBMIF_TIMEOUT_DIS, 0xFFFFFFFF); REG_WRITE(RBBMIF_TIMEOUT_DIS, 0xFFFFFFFF);
REG_WRITE(RBBMIF_TIMEOUT_DIS_2, 0xFFFFFFFF); REG_WRITE(RBBMIF_TIMEOUT_DIS_2, 0xFFFFFFFF);
dc->hwss.dccg_init(hws); hws->funcs.dccg_init(hws);
REG_UPDATE(DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_REFDIV, 2); REG_UPDATE(DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_REFDIV, 2);
REG_UPDATE(DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_ENABLE, 1); REG_UPDATE(DCHUBBUB_GLOBAL_TIMER_CNTL, DCHUBBUB_GLOBAL_TIMER_ENABLE, 1);
...@@ -2335,7 +2346,7 @@ void dcn20_fpga_init_hw(struct dc *dc) ...@@ -2335,7 +2346,7 @@ void dcn20_fpga_init_hw(struct dc *dc)
dc->res_pool->opps[i]->mpcc_disconnect_pending[pipe_ctx->plane_res.mpcc_inst] = true; dc->res_pool->opps[i]->mpcc_disconnect_pending[pipe_ctx->plane_res.mpcc_inst] = true;
pipe_ctx->stream_res.opp = dc->res_pool->opps[i]; pipe_ctx->stream_res.opp = dc->res_pool->opps[i];
/*to do*/ /*to do*/
dc->hwss.plane_atomic_disconnect(dc, pipe_ctx); hws->funcs.plane_atomic_disconnect(dc, pipe_ctx);
} }
/* initialize DWB pointer to MCIF_WB */ /* initialize DWB pointer to MCIF_WB */
......
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#ifndef __DC_HWSS_DCN20_H__ #ifndef __DC_HWSS_DCN20_H__
#define __DC_HWSS_DCN20_H__ #define __DC_HWSS_DCN20_H__
#include "hw_sequencer_private.h"
bool dcn20_set_blend_lut( bool dcn20_set_blend_lut(
struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state); struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state);
bool dcn20_set_shaper_3dlut( bool dcn20_set_shaper_3dlut(
...@@ -111,6 +113,7 @@ void dcn20_disable_writeback( ...@@ -111,6 +113,7 @@ void dcn20_disable_writeback(
void dcn20_update_odm(struct dc *dc, struct dc_state *context, struct pipe_ctx *pipe_ctx); void dcn20_update_odm(struct dc *dc, struct dc_state *context, struct pipe_ctx *pipe_ctx);
bool dcn20_dmdata_status_done(struct pipe_ctx *pipe_ctx); bool dcn20_dmdata_status_done(struct pipe_ctx *pipe_ctx);
void dcn20_program_dmdata_engine(struct pipe_ctx *pipe_ctx); void dcn20_program_dmdata_engine(struct pipe_ctx *pipe_ctx);
void dcn20_set_dmdata_attributes(struct pipe_ctx *pipe_ctx);
void dcn20_init_vm_ctx( void dcn20_init_vm_ctx(
struct dce_hwseq *hws, struct dce_hwseq *hws,
struct dc *dc, struct dc *dc,
......
...@@ -30,19 +30,13 @@ ...@@ -30,19 +30,13 @@
static const struct hw_sequencer_funcs dcn20_funcs = { static const struct hw_sequencer_funcs dcn20_funcs = {
.program_gamut_remap = dcn10_program_gamut_remap, .program_gamut_remap = dcn10_program_gamut_remap,
.init_hw = dcn10_init_hw, .init_hw = dcn10_init_hw,
.init_pipes = dcn10_init_pipes,
.apply_ctx_to_hw = dce110_apply_ctx_to_hw, .apply_ctx_to_hw = dce110_apply_ctx_to_hw,
.apply_ctx_for_surface = NULL, .apply_ctx_for_surface = NULL,
.program_front_end_for_ctx = dcn20_program_front_end_for_ctx, .program_front_end_for_ctx = dcn20_program_front_end_for_ctx,
.update_plane_addr = dcn20_update_plane_addr, .update_plane_addr = dcn20_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.update_dchub = dcn10_update_dchub, .update_dchub = dcn10_update_dchub,
.update_mpcc = dcn20_update_mpcc,
.update_pending_status = dcn10_update_pending_status, .update_pending_status = dcn10_update_pending_status,
.set_input_transfer_func = dcn20_set_input_transfer_func,
.set_output_transfer_func = dcn20_set_output_transfer_func,
.program_output_csc = dcn20_program_output_csc, .program_output_csc = dcn20_program_output_csc,
.power_down = dce110_power_down,
.enable_accelerated_mode = dce110_enable_accelerated_mode, .enable_accelerated_mode = dce110_enable_accelerated_mode,
.enable_timing_synchronization = dcn10_enable_timing_synchronization, .enable_timing_synchronization = dcn10_enable_timing_synchronization,
.enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset, .enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset,
...@@ -54,16 +48,12 @@ static const struct hw_sequencer_funcs dcn20_funcs = { ...@@ -54,16 +48,12 @@ static const struct hw_sequencer_funcs dcn20_funcs = {
.blank_stream = dce110_blank_stream, .blank_stream = dce110_blank_stream,
.enable_audio_stream = dce110_enable_audio_stream, .enable_audio_stream = dce110_enable_audio_stream,
.disable_audio_stream = dce110_disable_audio_stream, .disable_audio_stream = dce110_disable_audio_stream,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.disable_plane = dcn20_disable_plane, .disable_plane = dcn20_disable_plane,
.blank_pixel_data = dcn20_blank_pixel_data,
.pipe_control_lock = dcn20_pipe_control_lock, .pipe_control_lock = dcn20_pipe_control_lock,
.pipe_control_lock_global = dcn20_pipe_control_lock_global, .pipe_control_lock_global = dcn20_pipe_control_lock_global,
.prepare_bandwidth = dcn20_prepare_bandwidth, .prepare_bandwidth = dcn20_prepare_bandwidth,
.optimize_bandwidth = dcn20_optimize_bandwidth, .optimize_bandwidth = dcn20_optimize_bandwidth,
.update_bandwidth = dcn20_update_bandwidth, .update_bandwidth = dcn20_update_bandwidth,
.reset_hw_ctx_wrap = dcn20_reset_hw_ctx_wrap,
.enable_stream_timing = dcn20_enable_stream_timing,
.set_drr = dcn10_set_drr, .set_drr = dcn10_set_drr,
.get_position = dcn10_get_position, .get_position = dcn10_get_position,
.set_static_screen_control = dcn10_set_static_screen_control, .set_static_screen_control = dcn10_set_static_screen_control,
...@@ -73,18 +63,42 @@ static const struct hw_sequencer_funcs dcn20_funcs = { ...@@ -73,18 +63,42 @@ static const struct hw_sequencer_funcs dcn20_funcs = {
.get_hw_state = dcn10_get_hw_state, .get_hw_state = dcn10_get_hw_state,
.clear_status_bits = dcn10_clear_status_bits, .clear_status_bits = dcn10_clear_status_bits,
.wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect, .wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect,
.edp_backlight_control = dce110_edp_backlight_control,
.edp_power_control = dce110_edp_power_control, .edp_power_control = dce110_edp_power_control,
.edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready, .edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready,
.set_cursor_position = dcn10_set_cursor_position, .set_cursor_position = dcn10_set_cursor_position,
.set_cursor_attribute = dcn10_set_cursor_attribute, .set_cursor_attribute = dcn10_set_cursor_attribute,
.set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level, .set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level,
.disable_stream_gating = dcn20_disable_stream_gating,
.enable_stream_gating = dcn20_enable_stream_gating,
.setup_periodic_interrupt = dcn10_setup_periodic_interrupt, .setup_periodic_interrupt = dcn10_setup_periodic_interrupt,
.setup_vupdate_interrupt = dcn20_setup_vupdate_interrupt,
.set_clock = dcn10_set_clock, .set_clock = dcn10_set_clock,
.get_clock = dcn10_get_clock, .get_clock = dcn10_get_clock,
.program_triplebuffer = dcn20_program_triple_buffer,
.enable_writeback = dcn20_enable_writeback,
.disable_writeback = dcn20_disable_writeback,
.dmdata_status_done = dcn20_dmdata_status_done,
.program_dmdata_engine = dcn20_program_dmdata_engine,
.set_dmdata_attributes = dcn20_set_dmdata_attributes,
.init_sys_ctx = dcn20_init_sys_ctx,
.init_vm_ctx = dcn20_init_vm_ctx,
.set_flip_control_gsl = dcn20_set_flip_control_gsl,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
};
static const struct hwseq_private_funcs dcn20_private_funcs = {
.init_pipes = dcn10_init_pipes,
.update_plane_addr = dcn20_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.update_mpcc = dcn20_update_mpcc,
.set_input_transfer_func = dcn20_set_input_transfer_func,
.set_output_transfer_func = dcn20_set_output_transfer_func,
.power_down = dce110_power_down,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.blank_pixel_data = dcn20_blank_pixel_data,
.reset_hw_ctx_wrap = dcn20_reset_hw_ctx_wrap,
.enable_stream_timing = dcn20_enable_stream_timing,
.edp_backlight_control = dce110_edp_backlight_control,
.disable_stream_gating = dcn20_disable_stream_gating,
.enable_stream_gating = dcn20_enable_stream_gating,
.setup_vupdate_interrupt = dcn20_setup_vupdate_interrupt,
.did_underflow_occur = dcn10_did_underflow_occur, .did_underflow_occur = dcn10_did_underflow_occur,
.init_blank = dcn20_init_blank, .init_blank = dcn20_init_blank,
.disable_vga = dcn20_disable_vga, .disable_vga = dcn20_disable_vga,
...@@ -95,15 +109,7 @@ static const struct hw_sequencer_funcs dcn20_funcs = { ...@@ -95,15 +109,7 @@ static const struct hw_sequencer_funcs dcn20_funcs = {
.dpp_pg_control = dcn20_dpp_pg_control, .dpp_pg_control = dcn20_dpp_pg_control,
.hubp_pg_control = dcn20_hubp_pg_control, .hubp_pg_control = dcn20_hubp_pg_control,
.dsc_pg_control = NULL, .dsc_pg_control = NULL,
.program_triplebuffer = dcn20_program_triple_buffer,
.enable_writeback = dcn20_enable_writeback,
.disable_writeback = dcn20_disable_writeback,
.update_odm = dcn20_update_odm, .update_odm = dcn20_update_odm,
.dmdata_status_done = dcn20_dmdata_status_done,
.program_dmdata_engine = dcn20_program_dmdata_engine,
.init_sys_ctx = dcn20_init_sys_ctx,
.init_vm_ctx = dcn20_init_vm_ctx,
.set_flip_control_gsl = dcn20_set_flip_control_gsl,
.dsc_pg_control = dcn20_dsc_pg_control, .dsc_pg_control = dcn20_dsc_pg_control,
.get_surface_visual_confirm_color = dcn10_get_surface_visual_confirm_color, .get_surface_visual_confirm_color = dcn10_get_surface_visual_confirm_color,
.get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color, .get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color,
...@@ -113,15 +119,15 @@ static const struct hw_sequencer_funcs dcn20_funcs = { ...@@ -113,15 +119,15 @@ static const struct hw_sequencer_funcs dcn20_funcs = {
.dccg_init = dcn20_dccg_init, .dccg_init = dcn20_dccg_init,
.set_blend_lut = dcn20_set_blend_lut, .set_blend_lut = dcn20_set_blend_lut,
.set_shaper_3dlut = dcn20_set_shaper_3dlut, .set_shaper_3dlut = dcn20_set_shaper_3dlut,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
}; };
void dcn20_hw_sequencer_construct(struct dc *dc) void dcn20_hw_sequencer_construct(struct dc *dc)
{ {
dc->hwss = dcn20_funcs; dc->hwss = dcn20_funcs;
dc->hwseq->funcs = dcn20_private_funcs;
if (IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) { if (IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
dc->hwss.init_hw = dcn20_fpga_init_hw; dc->hwss.init_hw = dcn20_fpga_init_hw;
dc->hwss.init_pipes = NULL; dc->hwseq->funcs.init_pipes = NULL;
} }
} }
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include "core_types.h" #include "core_types.h"
#include "resource.h" #include "resource.h"
#include "dce/dce_hwseq.h" #include "dce/dce_hwseq.h"
#include "dcn21_hwseq.h"
#include "vmid.h" #include "vmid.h"
#include "reg_helper.h" #include "reg_helper.h"
#include "hw/clk_mgr.h" #include "hw/clk_mgr.h"
......
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#ifndef __DC_HWSS_DCN21_H__ #ifndef __DC_HWSS_DCN21_H__
#define __DC_HWSS_DCN21_H__ #define __DC_HWSS_DCN21_H__
#include "hw_sequencer_private.h"
struct dc; struct dc;
int dcn21_init_sys_ctx(struct dce_hwseq *hws, int dcn21_init_sys_ctx(struct dce_hwseq *hws,
......
...@@ -31,19 +31,13 @@ ...@@ -31,19 +31,13 @@
static const struct hw_sequencer_funcs dcn21_funcs = { static const struct hw_sequencer_funcs dcn21_funcs = {
.program_gamut_remap = dcn10_program_gamut_remap, .program_gamut_remap = dcn10_program_gamut_remap,
.init_hw = dcn10_init_hw, .init_hw = dcn10_init_hw,
.init_pipes = dcn10_init_pipes,
.apply_ctx_to_hw = dce110_apply_ctx_to_hw, .apply_ctx_to_hw = dce110_apply_ctx_to_hw,
.apply_ctx_for_surface = NULL, .apply_ctx_for_surface = NULL,
.program_front_end_for_ctx = dcn20_program_front_end_for_ctx, .program_front_end_for_ctx = dcn20_program_front_end_for_ctx,
.update_plane_addr = dcn20_update_plane_addr, .update_plane_addr = dcn20_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.update_dchub = dcn10_update_dchub, .update_dchub = dcn10_update_dchub,
.update_mpcc = dcn20_update_mpcc,
.update_pending_status = dcn10_update_pending_status, .update_pending_status = dcn10_update_pending_status,
.set_input_transfer_func = dcn20_set_input_transfer_func,
.set_output_transfer_func = dcn20_set_output_transfer_func,
.program_output_csc = dcn20_program_output_csc, .program_output_csc = dcn20_program_output_csc,
.power_down = dce110_power_down,
.enable_accelerated_mode = dce110_enable_accelerated_mode, .enable_accelerated_mode = dce110_enable_accelerated_mode,
.enable_timing_synchronization = dcn10_enable_timing_synchronization, .enable_timing_synchronization = dcn10_enable_timing_synchronization,
.enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset, .enable_per_frame_crtc_position_reset = dcn10_enable_per_frame_crtc_position_reset,
...@@ -55,16 +49,12 @@ static const struct hw_sequencer_funcs dcn21_funcs = { ...@@ -55,16 +49,12 @@ static const struct hw_sequencer_funcs dcn21_funcs = {
.blank_stream = dce110_blank_stream, .blank_stream = dce110_blank_stream,
.enable_audio_stream = dce110_enable_audio_stream, .enable_audio_stream = dce110_enable_audio_stream,
.disable_audio_stream = dce110_disable_audio_stream, .disable_audio_stream = dce110_disable_audio_stream,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.disable_plane = dcn20_disable_plane, .disable_plane = dcn20_disable_plane,
.blank_pixel_data = dcn20_blank_pixel_data,
.pipe_control_lock = dcn20_pipe_control_lock, .pipe_control_lock = dcn20_pipe_control_lock,
.pipe_control_lock_global = dcn20_pipe_control_lock_global, .pipe_control_lock_global = dcn20_pipe_control_lock_global,
.prepare_bandwidth = dcn20_prepare_bandwidth, .prepare_bandwidth = dcn20_prepare_bandwidth,
.optimize_bandwidth = dcn20_optimize_bandwidth, .optimize_bandwidth = dcn20_optimize_bandwidth,
.update_bandwidth = dcn20_update_bandwidth, .update_bandwidth = dcn20_update_bandwidth,
.reset_hw_ctx_wrap = dcn20_reset_hw_ctx_wrap,
.enable_stream_timing = dcn20_enable_stream_timing,
.set_drr = dcn10_set_drr, .set_drr = dcn10_set_drr,
.get_position = dcn10_get_position, .get_position = dcn10_get_position,
.set_static_screen_control = dcn10_set_static_screen_control, .set_static_screen_control = dcn10_set_static_screen_control,
...@@ -74,18 +64,49 @@ static const struct hw_sequencer_funcs dcn21_funcs = { ...@@ -74,18 +64,49 @@ static const struct hw_sequencer_funcs dcn21_funcs = {
.get_hw_state = dcn10_get_hw_state, .get_hw_state = dcn10_get_hw_state,
.clear_status_bits = dcn10_clear_status_bits, .clear_status_bits = dcn10_clear_status_bits,
.wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect, .wait_for_mpcc_disconnect = dcn10_wait_for_mpcc_disconnect,
.edp_backlight_control = dce110_edp_backlight_control,
.edp_power_control = dce110_edp_power_control, .edp_power_control = dce110_edp_power_control,
.edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready, .edp_wait_for_hpd_ready = dce110_edp_wait_for_hpd_ready,
.set_cursor_position = dcn10_set_cursor_position, .set_cursor_position = dcn10_set_cursor_position,
.set_cursor_attribute = dcn10_set_cursor_attribute, .set_cursor_attribute = dcn10_set_cursor_attribute,
.set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level, .set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level,
.disable_stream_gating = dcn20_disable_stream_gating,
.enable_stream_gating = dcn20_enable_stream_gating,
.setup_periodic_interrupt = dcn10_setup_periodic_interrupt, .setup_periodic_interrupt = dcn10_setup_periodic_interrupt,
.setup_vupdate_interrupt = dcn20_setup_vupdate_interrupt,
.set_clock = dcn10_set_clock, .set_clock = dcn10_set_clock,
.get_clock = dcn10_get_clock, .get_clock = dcn10_get_clock,
.program_triplebuffer = dcn20_program_triple_buffer,
.enable_writeback = dcn20_enable_writeback,
.disable_writeback = dcn20_disable_writeback,
.dmdata_status_done = dcn20_dmdata_status_done,
.program_dmdata_engine = dcn20_program_dmdata_engine,
.set_dmdata_attributes = dcn20_set_dmdata_attributes,
.init_sys_ctx = dcn21_init_sys_ctx,
.init_vm_ctx = dcn20_init_vm_ctx,
.set_flip_control_gsl = dcn20_set_flip_control_gsl,
.optimize_pwr_state = dcn21_optimize_pwr_state,
.exit_optimized_pwr_state = dcn21_exit_optimized_pwr_state,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
.set_cursor_position = dcn10_set_cursor_position,
.set_cursor_attribute = dcn10_set_cursor_attribute,
.set_cursor_sdr_white_level = dcn10_set_cursor_sdr_white_level,
.optimize_pwr_state = dcn21_optimize_pwr_state,
.exit_optimized_pwr_state = dcn21_exit_optimized_pwr_state,
};
static const struct hwseq_private_funcs dcn21_private_funcs = {
.init_pipes = dcn10_init_pipes,
.update_plane_addr = dcn20_update_plane_addr,
.plane_atomic_disconnect = dcn10_plane_atomic_disconnect,
.update_mpcc = dcn20_update_mpcc,
.set_input_transfer_func = dcn20_set_input_transfer_func,
.set_output_transfer_func = dcn20_set_output_transfer_func,
.power_down = dce110_power_down,
.enable_display_power_gating = dcn10_dummy_display_power_gating,
.blank_pixel_data = dcn20_blank_pixel_data,
.reset_hw_ctx_wrap = dcn20_reset_hw_ctx_wrap,
.enable_stream_timing = dcn20_enable_stream_timing,
.edp_backlight_control = dce110_edp_backlight_control,
.disable_stream_gating = dcn20_disable_stream_gating,
.enable_stream_gating = dcn20_enable_stream_gating,
.setup_vupdate_interrupt = dcn20_setup_vupdate_interrupt,
.did_underflow_occur = dcn10_did_underflow_occur, .did_underflow_occur = dcn10_did_underflow_occur,
.init_blank = dcn20_init_blank, .init_blank = dcn20_init_blank,
.disable_vga = dcn20_disable_vga, .disable_vga = dcn20_disable_vga,
...@@ -96,36 +117,26 @@ static const struct hw_sequencer_funcs dcn21_funcs = { ...@@ -96,36 +117,26 @@ static const struct hw_sequencer_funcs dcn21_funcs = {
.dpp_pg_control = dcn20_dpp_pg_control, .dpp_pg_control = dcn20_dpp_pg_control,
.hubp_pg_control = dcn20_hubp_pg_control, .hubp_pg_control = dcn20_hubp_pg_control,
.dsc_pg_control = NULL, .dsc_pg_control = NULL,
.program_triplebuffer = dcn20_program_triple_buffer,
.enable_writeback = dcn20_enable_writeback,
.disable_writeback = dcn20_disable_writeback,
.update_odm = dcn20_update_odm, .update_odm = dcn20_update_odm,
.dmdata_status_done = dcn20_dmdata_status_done,
.program_dmdata_engine = dcn20_program_dmdata_engine,
.init_sys_ctx = dcn21_init_sys_ctx,
.init_vm_ctx = dcn20_init_vm_ctx,
.set_flip_control_gsl = dcn20_set_flip_control_gsl,
.dsc_pg_control = dcn20_dsc_pg_control, .dsc_pg_control = dcn20_dsc_pg_control,
.get_surface_visual_confirm_color = dcn10_get_surface_visual_confirm_color, .get_surface_visual_confirm_color = dcn10_get_surface_visual_confirm_color,
.get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color, .get_hdr_visual_confirm_color = dcn10_get_hdr_visual_confirm_color,
.set_hdr_multiplier = dcn10_set_hdr_multiplier, .set_hdr_multiplier = dcn10_set_hdr_multiplier,
.verify_allow_pstate_change_high = dcn10_verify_allow_pstate_change_high, .verify_allow_pstate_change_high = dcn10_verify_allow_pstate_change_high,
.s0i3_golden_init_wa = dcn21_s0i3_golden_init_wa, .s0i3_golden_init_wa = dcn21_s0i3_golden_init_wa,
.optimize_pwr_state = dcn21_optimize_pwr_state,
.exit_optimized_pwr_state = dcn21_exit_optimized_pwr_state,
.wait_for_blank_complete = dcn20_wait_for_blank_complete, .wait_for_blank_complete = dcn20_wait_for_blank_complete,
.dccg_init = dcn20_dccg_init, .dccg_init = dcn20_dccg_init,
.set_blend_lut = dcn20_set_blend_lut, .set_blend_lut = dcn20_set_blend_lut,
.set_shaper_3dlut = dcn20_set_shaper_3dlut, .set_shaper_3dlut = dcn20_set_shaper_3dlut,
.get_vupdate_offset_from_vsync = dcn10_get_vupdate_offset_from_vsync,
}; };
void dcn21_hw_sequencer_construct(struct dc *dc) void dcn21_hw_sequencer_construct(struct dc *dc)
{ {
dc->hwss = dcn21_funcs; dc->hwss = dcn21_funcs;
dc->hwseq->funcs = dcn21_private_funcs;
if (IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) { if (IS_FPGA_MAXIMUS_DC(dc->ctx->dce_environment)) {
dc->hwss.init_hw = dcn20_fpga_init_hw; dc->hwss.init_hw = dcn20_fpga_init_hw;
dc->hwss.init_pipes = NULL; dc->hwseq->funcs.init_pipes = NULL;
} }
} }
...@@ -32,38 +32,11 @@ ...@@ -32,38 +32,11 @@
#include "inc/hw/link_encoder.h" #include "inc/hw/link_encoder.h"
#include "core_status.h" #include "core_status.h"
enum pipe_gating_control {
PIPE_GATING_CONTROL_DISABLE = 0,
PIPE_GATING_CONTROL_ENABLE,
PIPE_GATING_CONTROL_INIT
};
enum vline_select { enum vline_select {
VLINE0, VLINE0,
VLINE1 VLINE1
}; };
struct dce_hwseq_wa {
bool blnd_crtc_trigger;
bool DEGVIDCN10_253;
bool false_optc_underflow;
bool DEGVIDCN10_254;
bool DEGVIDCN21;
};
struct hwseq_wa_state {
bool DEGVIDCN10_253_applied;
};
struct dce_hwseq {
struct dc_context *ctx;
const struct dce_hwseq_registers *regs;
const struct dce_hwseq_shift *shifts;
const struct dce_hwseq_mask *masks;
struct dce_hwseq_wa wa;
struct hwseq_wa_state wa_state;
};
struct pipe_ctx; struct pipe_ctx;
struct dc_state; struct dc_state;
struct dc_stream_status; struct dc_stream_status;
...@@ -71,255 +44,110 @@ struct dc_writeback_info; ...@@ -71,255 +44,110 @@ struct dc_writeback_info;
struct dchub_init_data; struct dchub_init_data;
struct dc_static_screen_events; struct dc_static_screen_events;
struct resource_pool; struct resource_pool;
struct resource_context;
struct stream_resource;
struct dc_phy_addr_space_config; struct dc_phy_addr_space_config;
struct dc_virtual_addr_space_config; struct dc_virtual_addr_space_config;
struct hubp;
struct dpp; struct dpp;
struct dce_hwseq;
struct hw_sequencer_funcs { struct hw_sequencer_funcs {
/* Embedded Display Related */
void (*edp_power_control)(struct dc_link *link, bool enable);
void (*edp_wait_for_hpd_ready)(struct dc_link *link, bool power_up);
void (*disable_stream_gating)(struct dc *dc, struct pipe_ctx *pipe_ctx); /* Pipe Programming Related */
void (*enable_stream_gating)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*init_hw)(struct dc *dc); void (*init_hw)(struct dc *dc);
void (*enable_accelerated_mode)(struct dc *dc,
void (*init_pipes)(struct dc *dc, struct dc_state *context); struct dc_state *context);
enum dc_status (*apply_ctx_to_hw)(struct dc *dc,
enum dc_status (*apply_ctx_to_hw)( struct dc_state *context);
struct dc *dc, struct dc_state *context); void (*disable_plane)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*apply_ctx_for_surface)(struct dc *dc,
void (*reset_hw_ctx_wrap)(
struct dc *dc, struct dc_state *context);
void (*apply_ctx_for_surface)(
struct dc *dc,
const struct dc_stream_state *stream, const struct dc_stream_state *stream,
int num_planes, int num_planes, struct dc_state *context);
void (*program_front_end_for_ctx)(struct dc *dc,
struct dc_state *context); struct dc_state *context);
void (*update_plane_addr)(const struct dc *dc,
void (*program_gamut_remap)(
struct pipe_ctx *pipe_ctx); struct pipe_ctx *pipe_ctx);
void (*update_dchub)(struct dce_hwseq *hws,
void (*program_output_csc)(struct dc *dc, struct dchub_init_data *dh_data);
struct pipe_ctx *pipe_ctx, void (*wait_for_mpcc_disconnect)(struct dc *dc,
enum dc_color_space colorspace, struct resource_pool *res_pool,
uint16_t *matrix,
int opp_id);
void (*program_front_end_for_ctx)(
struct dc *dc,
struct dc_state *context);
void (*program_triplebuffer)(
const struct dc *dc,
struct pipe_ctx *pipe_ctx,
bool enableTripleBuffer);
void (*set_flip_control_gsl)(
struct pipe_ctx *pipe_ctx,
bool flip_immediate);
void (*update_plane_addr)(
const struct dc *dc,
struct pipe_ctx *pipe_ctx);
void (*plane_atomic_disconnect)(
struct dc *dc,
struct pipe_ctx *pipe_ctx);
void (*update_dchub)(
struct dce_hwseq *hws,
struct dchub_init_data *dh_data);
int (*init_sys_ctx)(
struct dce_hwseq *hws,
struct dc *dc,
struct dc_phy_addr_space_config *pa_config);
void (*init_vm_ctx)(
struct dce_hwseq *hws,
struct dc *dc,
struct dc_virtual_addr_space_config *va_config,
int vmid);
void (*update_mpcc)(
struct dc *dc,
struct pipe_ctx *pipe_ctx);
void (*update_pending_status)(
struct pipe_ctx *pipe_ctx); struct pipe_ctx *pipe_ctx);
void (*program_triplebuffer)(const struct dc *dc,
bool (*set_input_transfer_func)(struct dc *dc, struct pipe_ctx *pipe_ctx, bool enableTripleBuffer);
struct pipe_ctx *pipe_ctx, void (*update_pending_status)(struct pipe_ctx *pipe_ctx);
const struct dc_plane_state *plane_state);
/* Pipe Lock Related */
bool (*set_output_transfer_func)(struct dc *dc, void (*pipe_control_lock_global)(struct dc *dc,
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe, bool lock);
const struct dc_stream_state *stream); void (*pipe_control_lock)(struct dc *dc,
struct pipe_ctx *pipe, bool lock);
void (*power_down)(struct dc *dc); void (*set_flip_control_gsl)(struct pipe_ctx *pipe_ctx,
bool flip_immediate);
void (*enable_accelerated_mode)(struct dc *dc, struct dc_state *context);
/* Timing Related */
void (*enable_timing_synchronization)( void (*get_position)(struct pipe_ctx **pipe_ctx, int num_pipes,
struct dc *dc, struct crtc_position *position);
int group_index, int (*get_vupdate_offset_from_vsync)(struct pipe_ctx *pipe_ctx);
int group_size, void (*enable_per_frame_crtc_position_reset)(struct dc *dc,
struct pipe_ctx *grouped_pipes[]); int group_size, struct pipe_ctx *grouped_pipes[]);
void (*enable_timing_synchronization)(struct dc *dc,
void (*enable_per_frame_crtc_position_reset)( int group_index, int group_size,
struct dc *dc,
int group_size,
struct pipe_ctx *grouped_pipes[]); struct pipe_ctx *grouped_pipes[]);
void (*setup_periodic_interrupt)(struct dc *dc,
struct pipe_ctx *pipe_ctx,
enum vline_select vline);
void (*set_drr)(struct pipe_ctx **pipe_ctx, int num_pipes,
unsigned int vmin, unsigned int vmax,
unsigned int vmid, unsigned int vmid_frame_number);
void (*set_static_screen_control)(struct pipe_ctx **pipe_ctx,
int num_pipes,
const struct dc_static_screen_events *events);
void (*enable_display_pipe_clock_gating)( /* Stream Related */
struct dc_context *ctx,
bool clock_gating);
bool (*enable_display_power_gating)(
struct dc *dc,
uint8_t controller_id,
struct dc_bios *dcb,
enum pipe_gating_control power_gating);
void (*disable_plane)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*update_info_frame)(struct pipe_ctx *pipe_ctx);
void (*send_immediate_sdp_message)(
struct pipe_ctx *pipe_ctx,
const uint8_t *custom_sdp_message,
unsigned int sdp_message_size);
void (*enable_stream)(struct pipe_ctx *pipe_ctx); void (*enable_stream)(struct pipe_ctx *pipe_ctx);
void (*disable_stream)(struct pipe_ctx *pipe_ctx); void (*disable_stream)(struct pipe_ctx *pipe_ctx);
void (*blank_stream)(struct pipe_ctx *pipe_ctx);
void (*unblank_stream)(struct pipe_ctx *pipe_ctx, void (*unblank_stream)(struct pipe_ctx *pipe_ctx,
struct dc_link_settings *link_settings); struct dc_link_settings *link_settings);
void (*blank_stream)(struct pipe_ctx *pipe_ctx); /* Bandwidth Related */
void (*prepare_bandwidth)(struct dc *dc, struct dc_state *context);
void (*enable_audio_stream)(struct pipe_ctx *pipe_ctx); bool (*update_bandwidth)(struct dc *dc, struct dc_state *context);
void (*optimize_bandwidth)(struct dc *dc, struct dc_state *context);
void (*disable_audio_stream)(struct pipe_ctx *pipe_ctx);
void (*pipe_control_lock)(
struct dc *dc,
struct pipe_ctx *pipe,
bool lock);
void (*pipe_control_lock_global)( /* Infopacket Related */
struct dc *dc, void (*set_avmute)(struct pipe_ctx *pipe_ctx, bool enable);
struct pipe_ctx *pipe, void (*send_immediate_sdp_message)(
bool lock);
void (*blank_pixel_data)(
struct dc *dc,
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
bool blank); const uint8_t *custom_sdp_message,
unsigned int sdp_message_size);
void (*prepare_bandwidth)( void (*update_info_frame)(struct pipe_ctx *pipe_ctx);
struct dc *dc, void (*set_dmdata_attributes)(struct pipe_ctx *pipe);
struct dc_state *context);
void (*optimize_bandwidth)(
struct dc *dc,
struct dc_state *context);
void (*exit_optimized_pwr_state)(
const struct dc *dc,
struct dc_state *context);
void (*optimize_pwr_state)(
const struct dc *dc,
struct dc_state *context);
bool (*update_bandwidth)(
struct dc *dc,
struct dc_state *context);
void (*program_dmdata_engine)(struct pipe_ctx *pipe_ctx); void (*program_dmdata_engine)(struct pipe_ctx *pipe_ctx);
bool (*dmdata_status_done)(struct pipe_ctx *pipe_ctx); bool (*dmdata_status_done)(struct pipe_ctx *pipe_ctx);
void (*set_drr)(struct pipe_ctx **pipe_ctx, int num_pipes, /* Cursor Related */
unsigned int vmin, unsigned int vmax,
unsigned int vmid, unsigned int vmid_frame_number);
void (*get_position)(struct pipe_ctx **pipe_ctx, int num_pipes,
struct crtc_position *position);
void (*set_static_screen_control)(struct pipe_ctx **pipe_ctx,
int num_pipes, const struct dc_static_screen_events *events);
enum dc_status (*enable_stream_timing)(
struct pipe_ctx *pipe_ctx,
struct dc_state *context,
struct dc *dc);
void (*setup_stereo)(
struct pipe_ctx *pipe_ctx,
struct dc *dc);
void (*set_avmute)(struct pipe_ctx *pipe_ctx, bool enable);
void (*log_hw_state)(struct dc *dc,
struct dc_log_buffer_ctx *log_ctx);
void (*get_hw_state)(struct dc *dc, char *pBuf, unsigned int bufSize, unsigned int mask);
void (*clear_status_bits)(struct dc *dc, unsigned int mask);
void (*wait_for_mpcc_disconnect)(struct dc *dc,
struct resource_pool *res_pool,
struct pipe_ctx *pipe_ctx);
void (*edp_power_control)(
struct dc_link *link,
bool enable);
void (*edp_backlight_control)(
struct dc_link *link,
bool enable);
void (*edp_wait_for_hpd_ready)(struct dc_link *link, bool power_up);
void (*set_cursor_position)(struct pipe_ctx *pipe); void (*set_cursor_position)(struct pipe_ctx *pipe);
void (*set_cursor_attribute)(struct pipe_ctx *pipe); void (*set_cursor_attribute)(struct pipe_ctx *pipe);
void (*set_cursor_sdr_white_level)(struct pipe_ctx *pipe); void (*set_cursor_sdr_white_level)(struct pipe_ctx *pipe);
void (*setup_periodic_interrupt)(struct dc *dc, /* Colour Related */
struct pipe_ctx *pipe_ctx, void (*program_gamut_remap)(struct pipe_ctx *pipe_ctx);
enum vline_select vline); void (*program_output_csc)(struct dc *dc, struct pipe_ctx *pipe_ctx,
void (*setup_vupdate_interrupt)(struct dc *dc, struct pipe_ctx *pipe_ctx); enum dc_color_space colorspace,
bool (*did_underflow_occur)(struct dc *dc, struct pipe_ctx *pipe_ctx); uint16_t *matrix, int opp_id);
void (*init_blank)(struct dc *dc, struct timing_generator *tg);
void (*disable_vga)(struct dce_hwseq *hws);
void (*bios_golden_init)(struct dc *dc);
void (*plane_atomic_power_down)(struct dc *dc,
struct dpp *dpp,
struct hubp *hubp);
void (*plane_atomic_disable)(
struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*enable_power_gating_plane)(
struct dce_hwseq *hws,
bool enable);
void (*dpp_pg_control)(
struct dce_hwseq *hws,
unsigned int dpp_inst,
bool power_on);
void (*hubp_pg_control)(
struct dce_hwseq *hws,
unsigned int hubp_inst,
bool power_on);
void (*dsc_pg_control)(
struct dce_hwseq *hws,
unsigned int dsc_inst,
bool power_on);
void (*update_odm)(struct dc *dc, struct dc_state *context, struct pipe_ctx *pipe_ctx); /* VM Related */
void (*program_all_writeback_pipes_in_tree)( int (*init_sys_ctx)(struct dce_hwseq *hws,
struct dc *dc, struct dc *dc,
const struct dc_stream_state *stream, struct dc_phy_addr_space_config *pa_config);
struct dc_state *context); void (*init_vm_ctx)(struct dce_hwseq *hws,
struct dc *dc,
struct dc_virtual_addr_space_config *va_config,
int vmid);
/* Writeback Related */
void (*update_writeback)(struct dc *dc, void (*update_writeback)(struct dc *dc,
const struct dc_stream_status *stream_status, const struct dc_stream_status *stream_status,
struct dc_writeback_info *wb_info, struct dc_writeback_info *wb_info,
...@@ -330,46 +158,32 @@ struct hw_sequencer_funcs { ...@@ -330,46 +158,32 @@ struct hw_sequencer_funcs {
struct dc_state *context); struct dc_state *context);
void (*disable_writeback)(struct dc *dc, void (*disable_writeback)(struct dc *dc,
unsigned int dwb_pipe_inst); unsigned int dwb_pipe_inst);
enum dc_status (*set_clock)(struct dc *dc,
enum dc_clock_type clock_type,
uint32_t clk_khz,
uint32_t stepping);
void (*get_clock)(struct dc *dc, /* Clock Related */
enum dc_status (*set_clock)(struct dc *dc,
enum dc_clock_type clock_type, enum dc_clock_type clock_type,
uint32_t clk_khz, uint32_t stepping);
void (*get_clock)(struct dc *dc, enum dc_clock_type clock_type,
struct dc_clock_config *clock_cfg); struct dc_clock_config *clock_cfg);
void (*optimize_pwr_state)(const struct dc *dc,
bool (*s0i3_golden_init_wa)(struct dc *dc); struct dc_state *context);
void (*exit_optimized_pwr_state)(const struct dc *dc,
void (*get_surface_visual_confirm_color)(
const struct pipe_ctx *pipe_ctx,
struct tg_color *color);
void (*get_hdr_visual_confirm_color)(
struct pipe_ctx *pipe_ctx,
struct tg_color *color);
void (*set_hdr_multiplier)(struct pipe_ctx *pipe_ctx);
void (*verify_allow_pstate_change_high)(struct dc *dc);
void (*program_pipe)(
struct dc *dc,
struct pipe_ctx *pipe_ctx,
struct dc_state *context); struct dc_state *context);
bool (*wait_for_blank_complete)( /* Audio Related */
struct output_pixel_processor *opp); void (*enable_audio_stream)(struct pipe_ctx *pipe_ctx);
void (*disable_audio_stream)(struct pipe_ctx *pipe_ctx);
void (*dccg_init)(struct dce_hwseq *hws); /* Stereo 3D Related */
void (*setup_stereo)(struct pipe_ctx *pipe_ctx, struct dc *dc);
bool (*set_blend_lut)( /* HW State Logging Related */
struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state); void (*log_hw_state)(struct dc *dc, struct dc_log_buffer_ctx *log_ctx);
void (*get_hw_state)(struct dc *dc, char *pBuf,
unsigned int bufSize, unsigned int mask);
void (*clear_status_bits)(struct dc *dc, unsigned int mask);
bool (*set_shaper_3dlut)(
struct pipe_ctx *pipe_ctx, const struct dc_plane_state *plane_state);
int (*get_vupdate_offset_from_vsync)(struct pipe_ctx *pipe_ctx);
}; };
void color_space_to_black_color( void color_space_to_black_color(
......
/*
* Copyright 2015 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: AMD
*
*/
#ifndef __DC_HW_SEQUENCER_PRIVATE_H__
#define __DC_HW_SEQUENCER_PRIVATE_H__
#include "dc_types.h"
enum pipe_gating_control {
PIPE_GATING_CONTROL_DISABLE = 0,
PIPE_GATING_CONTROL_ENABLE,
PIPE_GATING_CONTROL_INIT
};
struct dce_hwseq_wa {
bool blnd_crtc_trigger;
bool DEGVIDCN10_253;
bool false_optc_underflow;
bool DEGVIDCN10_254;
bool DEGVIDCN21;
};
struct hwseq_wa_state {
bool DEGVIDCN10_253_applied;
};
struct pipe_ctx;
struct dc_state;
struct dc_stream_status;
struct dc_writeback_info;
struct dchub_init_data;
struct dc_static_screen_events;
struct resource_pool;
struct resource_context;
struct stream_resource;
struct dc_phy_addr_space_config;
struct dc_virtual_addr_space_config;
struct hubp;
struct dpp;
struct dce_hwseq;
struct timing_generator;
struct tg_color;
struct output_pixel_processor;
struct hwseq_private_funcs {
void (*disable_stream_gating)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*enable_stream_gating)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*init_pipes)(struct dc *dc, struct dc_state *context);
void (*reset_hw_ctx_wrap)(struct dc *dc, struct dc_state *context);
void (*update_plane_addr)(const struct dc *dc,
struct pipe_ctx *pipe_ctx);
void (*plane_atomic_disconnect)(struct dc *dc,
struct pipe_ctx *pipe_ctx);
void (*update_mpcc)(struct dc *dc, struct pipe_ctx *pipe_ctx);
bool (*set_input_transfer_func)(struct dc *dc,
struct pipe_ctx *pipe_ctx,
const struct dc_plane_state *plane_state);
bool (*set_output_transfer_func)(struct dc *dc,
struct pipe_ctx *pipe_ctx,
const struct dc_stream_state *stream);
void (*power_down)(struct dc *dc);
void (*enable_display_pipe_clock_gating)(struct dc_context *ctx,
bool clock_gating);
bool (*enable_display_power_gating)(struct dc *dc,
uint8_t controller_id,
struct dc_bios *dcb,
enum pipe_gating_control power_gating);
void (*blank_pixel_data)(struct dc *dc,
struct pipe_ctx *pipe_ctx,
bool blank);
enum dc_status (*enable_stream_timing)(
struct pipe_ctx *pipe_ctx,
struct dc_state *context,
struct dc *dc);
void (*edp_backlight_control)(struct dc_link *link,
bool enable);
void (*setup_vupdate_interrupt)(struct dc *dc,
struct pipe_ctx *pipe_ctx);
bool (*did_underflow_occur)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*init_blank)(struct dc *dc, struct timing_generator *tg);
void (*disable_vga)(struct dce_hwseq *hws);
void (*bios_golden_init)(struct dc *dc);
void (*plane_atomic_power_down)(struct dc *dc,
struct dpp *dpp,
struct hubp *hubp);
void (*plane_atomic_disable)(struct dc *dc, struct pipe_ctx *pipe_ctx);
void (*enable_power_gating_plane)(struct dce_hwseq *hws,
bool enable);
void (*dpp_pg_control)(struct dce_hwseq *hws,
unsigned int dpp_inst,
bool power_on);
void (*hubp_pg_control)(struct dce_hwseq *hws,
unsigned int hubp_inst,
bool power_on);
void (*dsc_pg_control)(struct dce_hwseq *hws,
unsigned int dsc_inst,
bool power_on);
void (*update_odm)(struct dc *dc, struct dc_state *context,
struct pipe_ctx *pipe_ctx);
void (*program_all_writeback_pipes_in_tree)(struct dc *dc,
const struct dc_stream_state *stream,
struct dc_state *context);
bool (*s0i3_golden_init_wa)(struct dc *dc);
void (*get_surface_visual_confirm_color)(
const struct pipe_ctx *pipe_ctx,
struct tg_color *color);
void (*get_hdr_visual_confirm_color)(struct pipe_ctx *pipe_ctx,
struct tg_color *color);
void (*set_hdr_multiplier)(struct pipe_ctx *pipe_ctx);
void (*verify_allow_pstate_change_high)(struct dc *dc);
void (*program_pipe)(struct dc *dc,
struct pipe_ctx *pipe_ctx,
struct dc_state *context);
bool (*wait_for_blank_complete)(struct output_pixel_processor *opp);
void (*dccg_init)(struct dce_hwseq *hws);
bool (*set_blend_lut)(struct pipe_ctx *pipe_ctx,
const struct dc_plane_state *plane_state);
bool (*set_shaper_3dlut)(struct pipe_ctx *pipe_ctx,
const struct dc_plane_state *plane_state);
};
struct dce_hwseq {
struct dc_context *ctx;
const struct dce_hwseq_registers *regs;
const struct dce_hwseq_shift *shifts;
const struct dce_hwseq_mask *masks;
struct dce_hwseq_wa wa;
struct hwseq_wa_state wa_state;
struct hwseq_private_funcs funcs;
};
#endif /* __DC_HW_SEQUENCER_PRIVATE_H__ */
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