2021-05-11 21:41:16 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-03-15 18:55:24 +00:00
|
|
|
/*
|
2021-05-11 21:41:16 +00:00
|
|
|
* Copyright (C) 2021 Advanced Micro Devices, Inc.
|
2021-03-15 18:55:24 +00:00
|
|
|
*
|
|
|
|
* Authors: AMD
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dcn303_hwseq.h"
|
|
|
|
#include "dcn30/dcn30_init.h"
|
|
|
|
#include "dc.h"
|
|
|
|
|
|
|
|
void dcn303_hw_sequencer_construct(struct dc *dc)
|
|
|
|
{
|
|
|
|
dcn30_hw_sequencer_construct(dc);
|
|
|
|
|
|
|
|
dc->hwseq->funcs.dpp_pg_control = dcn303_dpp_pg_control;
|
|
|
|
dc->hwseq->funcs.hubp_pg_control = dcn303_hubp_pg_control;
|
|
|
|
dc->hwseq->funcs.dsc_pg_control = dcn303_dsc_pg_control;
|
2021-06-11 14:31:04 +00:00
|
|
|
dc->hwseq->funcs.enable_power_gating_plane = dcn303_enable_power_gating_plane;
|
2021-03-15 18:55:24 +00:00
|
|
|
}
|