2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
26 #include "dm_services.h"
28 #include "core_types.h"
29 #include "dce112_hw_sequencer.h"
31 #include "dce110/dce110_hw_sequencer.h"
33 /* include DCE11.2 register header files */
34 #include "dce/dce_11_2_d.h"
35 #include "dce/dce_11_2_sh_mask.h"
37 struct dce112_hw_seq_reg_offsets
{
42 static const struct dce112_hw_seq_reg_offsets reg_offsets
[] = {
44 .crtc
= (mmCRTC0_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
47 .crtc
= (mmCRTC1_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
50 .crtc
= (mmCRTC2_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
53 .crtc
= (mmCRTC3_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
56 .crtc
= (mmCRTC4_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
59 .crtc
= (mmCRTC5_CRTC_GSL_CONTROL
- mmCRTC_GSL_CONTROL
),
62 #define HW_REG_CRTC(reg, id)\
63 (reg + reg_offsets[id].crtc)
65 /*******************************************************************************
67 ******************************************************************************/
69 static void dce112_init_pte(struct dc_context
*ctx
)
73 uint32_t chunk_int
= 0;
74 uint32_t chunk_mul
= 0;
76 addr
= mmDVMM_PTE_REQ
;
77 value
= dm_read_reg(ctx
, addr
);
79 chunk_int
= get_reg_field_value(
82 HFLIP_PTEREQ_PER_CHUNK_INT
);
84 chunk_mul
= get_reg_field_value(
87 HFLIP_PTEREQ_PER_CHUNK_MULTIPLIER
);
89 if (chunk_int
!= 0x4 || chunk_mul
!= 0x4) {
101 HFLIP_PTEREQ_PER_CHUNK_INT
);
107 HFLIP_PTEREQ_PER_CHUNK_MULTIPLIER
);
109 dm_write_reg(ctx
, addr
, value
);
113 static bool dce112_enable_display_power_gating(
115 uint8_t controller_id
,
117 enum pipe_gating_control power_gating
)
119 enum bp_result bp_result
= BP_RESULT_OK
;
120 enum bp_pipe_control_action cntl
;
121 struct dc_context
*ctx
= dc
->ctx
;
123 if (IS_FPGA_MAXIMUS_DC(ctx
->dce_environment
))
126 if (power_gating
== PIPE_GATING_CONTROL_INIT
)
127 cntl
= ASIC_PIPE_INIT
;
128 else if (power_gating
== PIPE_GATING_CONTROL_ENABLE
)
129 cntl
= ASIC_PIPE_ENABLE
;
131 cntl
= ASIC_PIPE_DISABLE
;
133 if (power_gating
!= PIPE_GATING_CONTROL_INIT
|| controller_id
== 0){
135 bp_result
= dcb
->funcs
->enable_disp_power_gating(
136 dcb
, controller_id
+ 1, cntl
);
138 /* Revert MASTER_UPDATE_MODE to 0 because bios sets it 2
139 * by default when command table is called
142 HW_REG_CRTC(mmCRTC_MASTER_UPDATE_MODE
, controller_id
),
146 if (power_gating
!= PIPE_GATING_CONTROL_ENABLE
)
147 dce112_init_pte(ctx
);
149 if (bp_result
== BP_RESULT_OK
)
155 void dce112_hw_sequencer_construct(struct dc
*dc
)
157 /* All registers used by dce11.2 match those in dce11 in offset and
160 dce110_hw_sequencer_construct(dc
);
161 dc
->hwseq
->funcs
.enable_display_power_gating
= dce112_enable_display_power_gating
;