brintos

brintos / linux-shallow public Read only

0
0
Text · 4.0 KiB · ed9b011 Raw
161 lines · c
1/*2 * Copyright 2015 Advanced Micro Devices, Inc.3 *4 * Permission is hereby granted, free of charge, to any person obtaining a5 * copy of this software and associated documentation files (the "Software"),6 * to deal in the Software without restriction, including without limitation7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,8 * and/or sell copies of the Software, and to permit persons to whom the9 * Software is furnished to do so, subject to the following conditions:10 *11 * The above copyright notice and this permission notice shall be included in12 * all copies or substantial portions of the Software.13 *14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR18 * 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 OR20 * OTHER DEALINGS IN THE SOFTWARE.21 *22 * Authors: AMD23 *24 */25 26#include "dm_services.h"27#include "dc.h"28#include "core_types.h"29#include "dce112_hwseq.h"30 31#include "dce110/dce110_hwseq.h"32 33/* include DCE11.2 register header files */34#include "dce/dce_11_2_d.h"35#include "dce/dce_11_2_sh_mask.h"36 37struct dce112_hw_seq_reg_offsets {38	uint32_t crtc;39};40 41 42static const struct dce112_hw_seq_reg_offsets reg_offsets[] = {43{44	.crtc = (mmCRTC0_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),45},46{47	.crtc = (mmCRTC1_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),48},49{50	.crtc = (mmCRTC2_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),51},52{53	.crtc = (mmCRTC3_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),54},55{56	.crtc = (mmCRTC4_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),57},58{59	.crtc = (mmCRTC5_CRTC_GSL_CONTROL - mmCRTC_GSL_CONTROL),60}61};62#define HW_REG_CRTC(reg, id)\63	(reg + reg_offsets[id].crtc)64 65/*******************************************************************************66 * Private definitions67 ******************************************************************************/68 69static void dce112_init_pte(struct dc_context *ctx)70{71	uint32_t addr;72	uint32_t value = 0;73	uint32_t chunk_int = 0;74	uint32_t chunk_mul = 0;75 76	addr = mmDVMM_PTE_REQ;77	value = dm_read_reg(ctx, addr);78 79	chunk_int = get_reg_field_value(80		value,81		DVMM_PTE_REQ,82		HFLIP_PTEREQ_PER_CHUNK_INT);83 84	chunk_mul = get_reg_field_value(85		value,86		DVMM_PTE_REQ,87		HFLIP_PTEREQ_PER_CHUNK_MULTIPLIER);88 89	if (chunk_int != 0x4 || chunk_mul != 0x4) {90 91		set_reg_field_value(92			value,93			255,94			DVMM_PTE_REQ,95			MAX_PTEREQ_TO_ISSUE);96 97		set_reg_field_value(98			value,99			4,100			DVMM_PTE_REQ,101			HFLIP_PTEREQ_PER_CHUNK_INT);102 103		set_reg_field_value(104			value,105			4,106			DVMM_PTE_REQ,107			HFLIP_PTEREQ_PER_CHUNK_MULTIPLIER);108 109		dm_write_reg(ctx, addr, value);110	}111}112 113static bool dce112_enable_display_power_gating(114	struct dc *dc,115	uint8_t controller_id,116	struct dc_bios *dcb,117	enum pipe_gating_control power_gating)118{119	enum bp_result bp_result = BP_RESULT_OK;120	enum bp_pipe_control_action cntl;121	struct dc_context *ctx = dc->ctx;122 123	if (power_gating == PIPE_GATING_CONTROL_INIT)124		cntl = ASIC_PIPE_INIT;125	else if (power_gating == PIPE_GATING_CONTROL_ENABLE)126		cntl = ASIC_PIPE_ENABLE;127	else128		cntl = ASIC_PIPE_DISABLE;129 130	if (power_gating != PIPE_GATING_CONTROL_INIT || controller_id == 0) {131 132		bp_result = dcb->funcs->enable_disp_power_gating(133						dcb, controller_id + 1, cntl);134 135		/* Revert MASTER_UPDATE_MODE to 0 because bios sets it 2136		 * by default when command table is called137		 */138		dm_write_reg(ctx,139			HW_REG_CRTC(mmCRTC_MASTER_UPDATE_MODE, controller_id),140			0);141	}142 143	if (power_gating != PIPE_GATING_CONTROL_ENABLE)144		dce112_init_pte(ctx);145 146	if (bp_result == BP_RESULT_OK)147		return true;148	else149		return false;150}151 152void dce112_hw_sequencer_construct(struct dc *dc)153{154	/* All registers used by dce11.2 match those in dce11 in offset and155	 * structure156	 */157	dce110_hw_sequencer_construct(dc);158	dc->hwseq->funcs.enable_display_power_gating = dce112_enable_display_power_gating;159}160 161