Release 4.15 drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c
  
  
  
/*
 * Copyright 2012-15 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: AMD
 *
 */
#include "reg_helper.h"
#include "dcn10_mpc.h"
#include "dc.h"
#include "mem_input.h"
#define REG(reg)\
	mpc10->mpc_regs->reg
#define CTX \
	mpc10->base.ctx
#undef FN
#define FN(reg_name, field_name) \
	mpc10->mpc_shift->field_name, mpc10->mpc_mask->field_name
#define MODE_TOP_ONLY 1
#define MODE_BLEND 3
#define BLND_PP_ALPHA 0
#define BLND_GLOBAL_ALPHA 2
static void mpc10_set_bg_color(
		struct dcn10_mpc *mpc10,
		struct tg_color *bg_color,
		int id)
{
	/* mpc color is 12 bit.  tg_color is 10 bit */
	/* todo: might want to use 16 bit to represent color and have each
         * hw block translate to correct color depth.
         */
	uint32_t bg_r_cr = bg_color->color_r_cr << 2;
	uint32_t bg_g_y = bg_color->color_g_y << 2;
	uint32_t bg_b_cb = bg_color->color_b_cb << 2;
	REG_SET(MPCC_BG_R_CR[id], 0,
			MPCC_BG_R_CR, bg_r_cr);
	REG_SET(MPCC_BG_G_Y[id], 0,
			MPCC_BG_G_Y, bg_g_y);
	REG_SET(MPCC_BG_B_CB[id], 0,
			MPCC_BG_B_CB, bg_b_cb);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Harry Wentland | 74 | 82.22% | 1 | 50.00% | 
| Dmytro Laktyushkin | 16 | 17.78% | 1 | 50.00% | 
| Total | 90 | 100.00% | 2 | 100.00% | 
void mpc10_assert_idle_mpcc(struct mpc *mpc, int id)
{
	struct dcn10_mpc *mpc10 = TO_DCN10_MPC(mpc);
	ASSERT(!(mpc10->mpcc_in_use_mask & 1 << id));
	REG_WAIT(MPCC_STATUS[id],
			MPCC_IDLE, 1,
			1, 100000);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 33 | 62.26% | 3 | 60.00% | 
| Harry Wentland | 18 | 33.96% | 1 | 20.00% | 
| Tony Cheng | 2 | 3.77% | 1 | 20.00% | 
| Total | 53 | 100.00% | 5 | 100.00% | 
static int mpc10_get_idle_mpcc_id(struct dcn10_mpc *mpc10)
{
	int i;
	int last_free_mpcc_id = -1;
	for (i = 0; i < mpc10->num_mpcc; i++) {
		uint32_t is_idle = 0;
		if (mpc10->mpcc_in_use_mask & 1 << i)
			continue;
		last_free_mpcc_id = i;
		REG_GET(MPCC_STATUS[i], MPCC_IDLE, &is_idle);
		if (is_idle)
			return i;
	}
	/* This assert should never trigger, we have mpcc leak if it does */
	ASSERT(last_free_mpcc_id != -1);
	mpc10_assert_idle_mpcc(&mpc10->base, last_free_mpcc_id);
	return last_free_mpcc_id;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 91 | 91.92% | 4 | 80.00% | 
| Harry Wentland | 8 | 8.08% | 1 | 20.00% | 
| Total | 99 | 100.00% | 5 | 100.00% | 
static void mpc10_assert_mpcc_idle_before_connect(struct dcn10_mpc *mpc10, int id)
{
	unsigned int top_sel, mpc_busy, mpc_idle;
	REG_GET(MPCC_TOP_SEL[id],
			MPCC_TOP_SEL, &top_sel);
	if (top_sel == 0xf) {
		REG_GET_2(MPCC_STATUS[id],
				MPCC_BUSY, &mpc_busy,
				MPCC_IDLE, &mpc_idle);
		ASSERT(mpc_busy == 0);
		ASSERT(mpc_idle == 1);
	}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Tony Cheng | 57 | 76.00% | 1 | 50.00% | 
| Dmytro Laktyushkin | 18 | 24.00% | 1 | 50.00% | 
| Total | 75 | 100.00% | 2 | 100.00% | 
void mpc10_mpcc_remove(
		struct mpc *mpc,
		struct mpc_tree_cfg *tree_cfg,
		int opp_id,
		int dpp_id)
{
	struct dcn10_mpc *mpc10 = TO_DCN10_MPC(mpc);
	int mpcc_id, z_idx;
	/* find z_idx for the dpp to be removed */
	for (z_idx = 0; z_idx < tree_cfg->num_pipes; z_idx++)
		if (tree_cfg->dpp[z_idx] == dpp_id)
			break;
	if (z_idx == tree_cfg->num_pipes) {
		/* In case of resume from S3/S4, remove mpcc from bios left over */
		REG_SET(MPCC_OPP_ID[dpp_id], 0,
				MPCC_OPP_ID, 0xf);
		REG_SET(MPCC_TOP_SEL[dpp_id], 0,
				MPCC_TOP_SEL, 0xf);
		REG_SET(MPCC_BOT_SEL[dpp_id], 0,
				MPCC_BOT_SEL, 0xf);
		return;
	}
	mpcc_id = tree_cfg->mpcc[z_idx];
	REG_SET(MPCC_OPP_ID[mpcc_id], 0,
			MPCC_OPP_ID, 0xf);
	REG_SET(MPCC_TOP_SEL[mpcc_id], 0,
			MPCC_TOP_SEL, 0xf);
	REG_SET(MPCC_BOT_SEL[mpcc_id], 0,
			MPCC_BOT_SEL, 0xf);
	if (z_idx > 0) {
		int top_mpcc_id = tree_cfg->mpcc[z_idx - 1];
		if (z_idx + 1 < tree_cfg->num_pipes)
			/* mpcc to be removed is in the middle of the tree */
			REG_SET(MPCC_BOT_SEL[top_mpcc_id], 0,
					MPCC_BOT_SEL, tree_cfg->mpcc[z_idx + 1]);
		else {
			/* mpcc to be removed is at the bottom of the tree */
			REG_SET(MPCC_BOT_SEL[top_mpcc_id], 0,
					MPCC_BOT_SEL, 0xf);
			REG_UPDATE(MPCC_CONTROL[top_mpcc_id],
					MPCC_MODE, MODE_TOP_ONLY);
		}
	} else if (tree_cfg->num_pipes > 1)
		/* mpcc to be removed is at the top of the tree */
		REG_SET(MUX[opp_id], 0,
				MPC_OUT_MUX, tree_cfg->mpcc[z_idx + 1]);
	else
		/* mpcc to be removed is the only one in the tree */
		REG_SET(MUX[opp_id], 0, MPC_OUT_MUX, 0xf);
	/* mark this mpcc as not in use */
	mpc10->mpcc_in_use_mask &= ~(1 << mpcc_id);
	tree_cfg->num_pipes--;
	for (; z_idx < tree_cfg->num_pipes; z_idx++) {
		tree_cfg->dpp[z_idx] = tree_cfg->dpp[z_idx + 1];
		tree_cfg->mpcc[z_idx] = tree_cfg->mpcc[z_idx + 1];
	}
	tree_cfg->dpp[tree_cfg->num_pipes] = 0xdeadbeef;
	tree_cfg->mpcc[tree_cfg->num_pipes] = 0xdeadbeef;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 257 | 67.10% | 2 | 28.57% | 
| Harry Wentland | 46 | 12.01% | 1 | 14.29% | 
| Yongqiang Sun | 39 | 10.18% | 1 | 14.29% | 
| Eric Bernstein | 32 | 8.36% | 1 | 14.29% | 
| Tony Cheng | 8 | 2.09% | 1 | 14.29% | 
| Anthony Koo | 1 | 0.26% | 1 | 14.29% | 
| Total | 383 | 100.00% | 7 | 100.00% | 
static void mpc10_add_to_tree_cfg(
	struct mpc *mpc,
	struct mpcc_cfg *cfg,
	int mpcc_id)
{
	struct dcn10_mpc *mpc10 = TO_DCN10_MPC(mpc);
	int mpcc_mode = MODE_TOP_ONLY;
	int position = cfg->z_index;
	struct mpc_tree_cfg *tree_cfg = cfg->tree_cfg;
	int alpha_blnd_mode = cfg->per_pixel_alpha ?
			BLND_PP_ALPHA : BLND_GLOBAL_ALPHA;
	int z_idx;
	REG_SET(MPCC_OPP_ID[mpcc_id], 0,
			MPCC_OPP_ID, cfg->opp_id);
	REG_SET(MPCC_TOP_SEL[mpcc_id], 0,
			MPCC_TOP_SEL, cfg->dpp_id);
	if (position == 0) {
		/* idle dpp/mpcc is added to the top layer of tree */
		if (tree_cfg->num_pipes > 0) {
			/* get instance of previous top mpcc */
			int prev_top_mpcc_id = tree_cfg->mpcc[0];
			REG_SET(MPCC_BOT_SEL[mpcc_id], 0,
					MPCC_BOT_SEL, prev_top_mpcc_id);
			mpcc_mode = MODE_BLEND;
		}
		/* opp will get new output. from new added mpcc */
		REG_SET(MUX[cfg->opp_id], 0, MPC_OUT_MUX, mpcc_id);
	} else if (position == tree_cfg->num_pipes) {
		/* idle dpp/mpcc is added to the bottom layer of tree */
		/* get instance of previous bottom mpcc, set to middle layer */
		int prev_bot_mpcc_id = tree_cfg->mpcc[tree_cfg->num_pipes - 1];
		REG_SET(MPCC_BOT_SEL[prev_bot_mpcc_id], 0,
				MPCC_BOT_SEL, mpcc_id);
		REG_UPDATE(MPCC_CONTROL[prev_bot_mpcc_id],
				MPCC_MODE, MODE_BLEND);
		/* mpcc_id become new bottom mpcc*/
		REG_SET(MPCC_BOT_SEL[mpcc_id], 0,
				MPCC_BOT_SEL, 0xf);
	} else {
		/* idle dpp/mpcc is added to middle of tree */
		int above_mpcc_id = tree_cfg->mpcc[position - 1];
		int below_mpcc_id = tree_cfg->mpcc[position];
		/* mpcc above new mpcc_id has new bottom mux*/
		REG_SET(MPCC_BOT_SEL[above_mpcc_id], 0,
				MPCC_BOT_SEL, mpcc_id);
		REG_UPDATE(MPCC_CONTROL[above_mpcc_id],
				MPCC_MODE, MODE_BLEND);
		/* mpcc_id bottom mux is from below mpcc*/
		REG_SET(MPCC_BOT_SEL[mpcc_id], 0,
				MPCC_BOT_SEL, below_mpcc_id);
		mpcc_mode = MODE_BLEND;
	}
	REG_SET_4(MPCC_CONTROL[mpcc_id], 0xffffffff,
		MPCC_MODE, mpcc_mode,
		MPCC_ALPHA_BLND_MODE, alpha_blnd_mode,
		MPCC_ALPHA_MULTIPLIED_MODE, cfg->pre_multiplied_alpha,
		MPCC_BLND_ACTIVE_OVERLAP_ONLY, false);
	/* update mpc_tree_cfg with new mpcc */
	for (z_idx = tree_cfg->num_pipes; z_idx > position; z_idx--) {
		tree_cfg->dpp[z_idx] = tree_cfg->dpp[z_idx - 1];
		tree_cfg->mpcc[z_idx] = tree_cfg->mpcc[z_idx - 1];
	}
	tree_cfg->dpp[position] = cfg->dpp_id;
	tree_cfg->mpcc[position] = mpcc_id;
	tree_cfg->num_pipes++;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 215 | 53.22% | 4 | 66.67% | 
| Eric Bernstein | 181 | 44.80% | 1 | 16.67% | 
| Harry Wentland | 8 | 1.98% | 1 | 16.67% | 
| Total | 404 | 100.00% | 6 | 100.00% | 
int mpc10_mpcc_add(struct mpc *mpc, struct mpcc_cfg *cfg)
{
	struct dcn10_mpc *mpc10 = TO_DCN10_MPC(mpc);
	int mpcc_id, z_idx;
	ASSERT(cfg->z_index < mpc10->num_mpcc);
	/* check in dpp already exists in mpc tree */
	for (z_idx = 0; z_idx < cfg->tree_cfg->num_pipes; z_idx++)
		if (cfg->tree_cfg->dpp[z_idx] == cfg->dpp_id)
			break;
	if (z_idx == cfg->tree_cfg->num_pipes) {
		ASSERT(cfg->z_index <= cfg->tree_cfg->num_pipes);
		mpcc_id = mpc10_get_idle_mpcc_id(mpc10);
		/*
                 * TODO: remove hack
                 * Note: currently there is a bug in init_hw such that
                 * on resume from hibernate, BIOS sets up MPCC0, and
                 * we do mpcc_remove but the mpcc cannot go to idle
                 * after remove. This cause us to pick mpcc1 here,
                 * which causes a pstate hang for yet unknown reason.
                 */
		mpcc_id = cfg->dpp_id;
		/* end hack*/
		ASSERT(!(mpc10->mpcc_in_use_mask & 1 << mpcc_id));
		if (mpc->ctx->dc->debug.sanity_checks)
			mpc10_assert_mpcc_idle_before_connect(mpc10, mpcc_id);
	} else {
		ASSERT(cfg->z_index < cfg->tree_cfg->num_pipes);
		mpcc_id = cfg->tree_cfg->mpcc[z_idx];
		mpc10_mpcc_remove(mpc, cfg->tree_cfg, cfg->opp_id, cfg->dpp_id);
	}
	/* add dpp/mpcc pair to mpc_tree_cfg and update mpcc registers */
	mpc10_add_to_tree_cfg(mpc, cfg, mpcc_id);
	/* set background color */
	mpc10_set_bg_color(mpc10, &cfg->black_color, mpcc_id);
	/* mark this mpcc as in use */
	mpc10->mpcc_in_use_mask |= 1 << mpcc_id;
	return mpcc_id;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Eric Bernstein | 186 | 81.94% | 1 | 25.00% | 
| Dmytro Laktyushkin | 31 | 13.66% | 1 | 25.00% | 
| Eric Yang | 8 | 3.52% | 1 | 25.00% | 
| Harry Wentland | 2 | 0.88% | 1 | 25.00% | 
| Total | 227 | 100.00% | 4 | 100.00% | 
void mpc10_update_blend_mode(
		struct mpc *mpc,
		struct mpcc_cfg *cfg)
{
	struct dcn10_mpc *mpc10 = TO_DCN10_MPC(mpc);
	int mpcc_id, z_idx;
	int alpha_blnd_mode = cfg->per_pixel_alpha ?
			BLND_PP_ALPHA : BLND_GLOBAL_ALPHA;
	/* find z_idx for the dpp that requires blending mode update*/
	for (z_idx = 0; z_idx < cfg->tree_cfg->num_pipes; z_idx++)
		if (cfg->tree_cfg->dpp[z_idx] == cfg->dpp_id)
			break;
	ASSERT(z_idx < cfg->tree_cfg->num_pipes);
	mpcc_id = cfg->tree_cfg->mpcc[z_idx];
	REG_UPDATE_2(MPCC_CONTROL[mpcc_id],
			MPCC_ALPHA_BLND_MODE, alpha_blnd_mode,
			MPCC_ALPHA_MULTIPLIED_MODE, cfg->pre_multiplied_alpha);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Eric Bernstein | 115 | 100.00% | 1 | 100.00% | 
| Total | 115 | 100.00% | 1 | 100.00% | 
const struct mpc_funcs dcn10_mpc_funcs = {
		.add = mpc10_mpcc_add,
		.remove = mpc10_mpcc_remove,
		.wait_for_idle = mpc10_assert_idle_mpcc,
		.update_blend_mode = mpc10_update_blend_mode,
};
void dcn10_mpc_construct(struct dcn10_mpc *mpc10,
	struct dc_context *ctx,
	const struct dcn_mpc_registers *mpc_regs,
	const struct dcn_mpc_shift *mpc_shift,
	const struct dcn_mpc_mask *mpc_mask,
	int num_mpcc)
{
	mpc10->base.ctx = ctx;
	mpc10->base.funcs = &dcn10_mpc_funcs;
	mpc10->mpc_regs = mpc_regs;
	mpc10->mpc_shift = mpc_shift;
	mpc10->mpc_mask = mpc_mask;
	mpc10->mpcc_in_use_mask = 0;
	mpc10->num_mpcc = num_mpcc;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 69 | 83.13% | 3 | 75.00% | 
| Harry Wentland | 14 | 16.87% | 1 | 25.00% | 
| Total | 83 | 100.00% | 4 | 100.00% | 
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dmytro Laktyushkin | 771 | 47.86% | 6 | 40.00% | 
| Eric Bernstein | 520 | 32.28% | 3 | 20.00% | 
| Harry Wentland | 202 | 12.54% | 1 | 6.67% | 
| Tony Cheng | 67 | 4.16% | 2 | 13.33% | 
| Yongqiang Sun | 39 | 2.42% | 1 | 6.67% | 
| Eric Yang | 8 | 0.50% | 1 | 6.67% | 
| Anthony Koo | 4 | 0.25% | 1 | 6.67% | 
| Total | 1611 | 100.00% | 15 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.