1 // SPDX-License-Identifier: MIT
2 /*
3 * Copyright (C) 2021 Advanced Micro Devices, Inc.
4 *
5 * Authors: AMD
6 */
7
8 #include "dcn303_hwseq.h"
9
10 #include "dce/dce_hwseq.h"
11
12 #include "reg_helper.h"
13 #include "dc.h"
14
15 #define DC_LOGGER_INIT(logger)
16
17 #define CTX \
18 hws->ctx
19 #define REG(reg)\
20 hws->regs->reg
21
22 #undef FN
23 #define FN(reg_name, field_name) \
24 hws->shifts->field_name, hws->masks->field_name
25
26
dcn303_dpp_pg_control(struct dce_hwseq * hws,unsigned int dpp_inst,bool power_on)27 void dcn303_dpp_pg_control(struct dce_hwseq *hws, unsigned int dpp_inst, bool power_on)
28 {
29 /*DCN303 removes PG registers*/
30 }
31
dcn303_hubp_pg_control(struct dce_hwseq * hws,unsigned int hubp_inst,bool power_on)32 void dcn303_hubp_pg_control(struct dce_hwseq *hws, unsigned int hubp_inst, bool power_on)
33 {
34 /*DCN303 removes PG registers*/
35 }
36
dcn303_dsc_pg_control(struct dce_hwseq * hws,unsigned int dsc_inst,bool power_on)37 void dcn303_dsc_pg_control(struct dce_hwseq *hws, unsigned int dsc_inst, bool power_on)
38 {
39 /*DCN303 removes PG registers*/
40 }
41
dcn303_enable_power_gating_plane(struct dce_hwseq * hws,bool enable)42 void dcn303_enable_power_gating_plane(struct dce_hwseq *hws, bool enable)
43 {
44 /*DCN303 removes PG registers*/
45 }
46