Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: MIT
0002 /*
0003  * Copyright (C) 2021 Advanced Micro Devices, Inc.
0004  *
0005  * Authors: AMD
0006  */
0007 
0008 #include "dcn303_hwseq.h"
0009 #include "dcn30/dcn30_init.h"
0010 #include "dc.h"
0011 
0012 #include "dcn303_init.h"
0013 
0014 void dcn303_hw_sequencer_construct(struct dc *dc)
0015 {
0016     dcn30_hw_sequencer_construct(dc);
0017 
0018     dc->hwseq->funcs.dpp_pg_control = dcn303_dpp_pg_control;
0019     dc->hwseq->funcs.hubp_pg_control = dcn303_hubp_pg_control;
0020     dc->hwseq->funcs.dsc_pg_control = dcn303_dsc_pg_control;
0021     dc->hwseq->funcs.enable_power_gating_plane = dcn303_enable_power_gating_plane;
0022 }