dmub_psr.c 11.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright 2019 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 "dmub_psr.h"
#include "dc.h"
#include "dc_dmub_srv.h"
29
#include "dmub/dmub_srv.h"
30 31
#include "core_types.h"

32 33
#define DC_TRACE_LEVEL_MESSAGE(...) /* do nothing */

34 35
#define MAX_PIPES 6

36
/*
37 38
 * Convert dmcub psr state to dmcu psr state.
 */
39
static enum dc_psr_state convert_psr_state(uint32_t raw_state)
40
{
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
	enum dc_psr_state state = PSR_STATE0;

	if (raw_state == 0)
		state = PSR_STATE0;
	else if (raw_state == 0x10)
		state = PSR_STATE1;
	else if (raw_state == 0x11)
		state = PSR_STATE1a;
	else if (raw_state == 0x20)
		state = PSR_STATE2;
	else if (raw_state == 0x21)
		state = PSR_STATE2a;
	else if (raw_state == 0x30)
		state = PSR_STATE3;
	else if (raw_state == 0x31)
		state = PSR_STATE3Init;
	else if (raw_state == 0x40)
		state = PSR_STATE4;
	else if (raw_state == 0x41)
		state = PSR_STATE4a;
	else if (raw_state == 0x42)
		state = PSR_STATE4b;
	else if (raw_state == 0x43)
		state = PSR_STATE4c;
	else if (raw_state == 0x44)
		state = PSR_STATE4d;
	else if (raw_state == 0x50)
		state = PSR_STATE5;
	else if (raw_state == 0x51)
		state = PSR_STATE5a;
	else if (raw_state == 0x52)
		state = PSR_STATE5b;
	else if (raw_state == 0x53)
		state = PSR_STATE5c;

	return state;
77 78
}

79
/*
80 81
 * Get PSR state from firmware.
 */
82
static void dmub_psr_get_state(struct dmub_psr *dmub, enum dc_psr_state *state, uint8_t panel_inst)
83
{
84
	struct dmub_srv *srv = dmub->ctx->dmub_srv->dmub;
85 86
	uint32_t raw_state = 0;
	uint32_t retry_count = 0;
87
	enum dmub_status status;
88

89 90
	do {
		// Send gpint command and wait for ack
91
		status = dmub_srv_send_gpint_command(srv, DMUB_GPINT__GET_PSR_STATE, panel_inst, 30);
92

93 94 95 96 97 98 99 100 101
		if (status == DMUB_STATUS_OK) {
			// GPINT was executed, get response
			dmub_srv_get_gpint_response(srv, &raw_state);
			*state = convert_psr_state(raw_state);
		} else
			// Return invalid state when GPINT times out
			*state = PSR_STATE_INVALID;

	} while (++retry_count <= 1000 && *state == PSR_STATE_INVALID);
102 103 104 105 106 107 108 109 110 111 112 113

	// Assert if max retry hit
	if (retry_count >= 1000 && *state == PSR_STATE_INVALID) {
		ASSERT(0);
		DC_TRACE_LEVEL_MESSAGE(DAL_TRACE_LEVEL_ERROR,
				WPP_BIT_FLAG_Firmware_PsrState,
				"Unable to get PSR state from FW.");
	} else
		DC_TRACE_LEVEL_MESSAGE(DAL_TRACE_LEVEL_VERBOSE,
				WPP_BIT_FLAG_Firmware_PsrState,
				"Got PSR state from FW. PSR state: %d, Retry count: %d",
				*state, retry_count);
114 115
}

116
/*
117 118
 * Set PSR version.
 */
119
static bool dmub_psr_set_version(struct dmub_psr *dmub, struct dc_stream_state *stream, uint8_t panel_inst)
120 121 122 123
{
	union dmub_rb_cmd cmd;
	struct dc_context *dc = dmub->ctx;

124
	if (stream->link->psr_settings.psr_version == DC_PSR_VERSION_UNSUPPORTED)
125 126
		return false;

127
	memset(&cmd, 0, sizeof(cmd));
128 129
	cmd.psr_set_version.header.type = DMUB_CMD__PSR;
	cmd.psr_set_version.header.sub_type = DMUB_CMD__PSR_SET_VERSION;
130 131 132 133 134 135 136 137 138
	switch (stream->link->psr_settings.psr_version) {
	case DC_PSR_VERSION_1:
		cmd.psr_set_version.psr_set_version_data.version = PSR_VERSION_1;
		break;
	case DC_PSR_VERSION_UNSUPPORTED:
	default:
		cmd.psr_set_version.psr_set_version_data.version = PSR_VERSION_UNSUPPORTED;
		break;
	}
139 140
	cmd.psr_set_version.psr_set_version_data.cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1;
	cmd.psr_set_version.psr_set_version_data.panel_inst = panel_inst;
141
	cmd.psr_set_version.header.payload_bytes = sizeof(struct dmub_cmd_psr_set_version_data);
142

143
	dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
144 145
	dc_dmub_srv_cmd_execute(dc->dmub_srv);
	dc_dmub_srv_wait_idle(dc->dmub_srv);
146 147

	return true;
148 149
}

150
/*
151 152
 * Enable/Disable PSR.
 */
153
static void dmub_psr_enable(struct dmub_psr *dmub, bool enable, bool wait, uint8_t panel_inst)
154 155 156
{
	union dmub_rb_cmd cmd;
	struct dc_context *dc = dmub->ctx;
157 158 159
	uint32_t retry_count;
	enum dc_psr_state state = PSR_STATE0;

160
	memset(&cmd, 0, sizeof(cmd));
161 162
	cmd.psr_enable.header.type = DMUB_CMD__PSR;

163 164 165
	cmd.psr_enable.data.cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1;
	cmd.psr_enable.data.panel_inst = panel_inst;

166 167 168 169 170 171 172
	if (enable)
		cmd.psr_enable.header.sub_type = DMUB_CMD__PSR_ENABLE;
	else
		cmd.psr_enable.header.sub_type = DMUB_CMD__PSR_DISABLE;

	cmd.psr_enable.header.payload_bytes = 0; // Send header only

173
	dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
174 175
	dc_dmub_srv_cmd_execute(dc->dmub_srv);
	dc_dmub_srv_wait_idle(dc->dmub_srv);
176 177 178 179 180 181 182

	/* Below loops 1000 x 500us = 500 ms.
	 *  Exit PSR may need to wait 1-2 frames to power up. Timeout after at
	 *  least a few frames. Should never hit the max retry assert below.
	 */
	if (wait) {
		for (retry_count = 0; retry_count <= 1000; retry_count++) {
183
			dmub_psr_get_state(dmub, &state, panel_inst);
184 185

			if (enable) {
186
				if (state != PSR_STATE0)
187 188
					break;
			} else {
189
				if (state == PSR_STATE0)
190 191 192 193 194 195 196 197 198 199
					break;
			}

			udelay(500);
		}

		/* assert if max retry hit */
		if (retry_count >= 1000)
			ASSERT(0);
	}
200 201
}

202
/*
203 204
 * Set PSR level.
 */
205
static void dmub_psr_set_level(struct dmub_psr *dmub, uint16_t psr_level, uint8_t panel_inst)
206 207
{
	union dmub_rb_cmd cmd;
208
	enum dc_psr_state state = PSR_STATE0;
209 210
	struct dc_context *dc = dmub->ctx;

211
	dmub_psr_get_state(dmub, &state, panel_inst);
212

213
	if (state == PSR_STATE0)
214 215
		return;

216
	memset(&cmd, 0, sizeof(cmd));
217 218 219 220
	cmd.psr_set_level.header.type = DMUB_CMD__PSR;
	cmd.psr_set_level.header.sub_type = DMUB_CMD__PSR_SET_LEVEL;
	cmd.psr_set_level.header.payload_bytes = sizeof(struct dmub_cmd_psr_set_level_data);
	cmd.psr_set_level.psr_set_level_data.psr_level = psr_level;
221
	cmd.psr_set_level.psr_set_level_data.cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1;
222
	cmd.psr_set_level.psr_set_level_data.panel_inst = panel_inst;
223
	dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
224 225 226 227
	dc_dmub_srv_cmd_execute(dc->dmub_srv);
	dc_dmub_srv_wait_idle(dc->dmub_srv);
}

228
/*
229 230
 * Setup PSR by programming phy registers and sending psr hw context values to firmware.
 */
231
static bool dmub_psr_copy_settings(struct dmub_psr *dmub,
232
		struct dc_link *link,
233 234
		struct psr_context *psr_context,
		uint8_t panel_inst)
235 236 237 238 239 240 241
{
	union dmub_rb_cmd cmd;
	struct dc_context *dc = dmub->ctx;
	struct dmub_cmd_psr_copy_settings_data *copy_settings_data
		= &cmd.psr_copy_settings.psr_copy_settings_data;
	struct pipe_ctx *pipe_ctx = NULL;
	struct resource_context *res_ctx = &link->ctx->dc->current_state->res_ctx;
242
	int i = 0;
243

244
	for (i = 0; i < MAX_PIPES; i++) {
245 246 247
		if (res_ctx->pipe_ctx[i].stream &&
		    res_ctx->pipe_ctx[i].stream->link == link &&
		    res_ctx->pipe_ctx[i].stream->link->connector_signal == SIGNAL_TYPE_EDP) {
248
			pipe_ctx = &res_ctx->pipe_ctx[i];
249
			//TODO: refactor for multi edp support
250 251 252 253
			break;
		}
	}

254
	if (!pipe_ctx)
255 256
		return false;

257
	// First, set the psr version
258
	if (!dmub_psr_set_version(dmub, pipe_ctx->stream, panel_inst))
259 260
		return false;

261 262 263 264 265 266 267 268
	// Program DP DPHY fast training registers
	link->link_enc->funcs->psr_program_dp_dphy_fast_training(link->link_enc,
			psr_context->psrExitLinkTrainingRequired);

	// Program DP_SEC_CNTL1 register to set transmission GPS0 line num and priority to high
	link->link_enc->funcs->psr_program_secondary_packet(link->link_enc,
			psr_context->sdpTransmitLineNumDeadline);

269
	memset(&cmd, 0, sizeof(cmd));
270 271 272 273 274
	cmd.psr_copy_settings.header.type = DMUB_CMD__PSR;
	cmd.psr_copy_settings.header.sub_type = DMUB_CMD__PSR_COPY_SETTINGS;
	cmd.psr_copy_settings.header.payload_bytes = sizeof(struct dmub_cmd_psr_copy_settings_data);

	// Hw insts
275
	copy_settings_data->dpphy_inst				= psr_context->transmitterId;
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	copy_settings_data->aux_inst				= psr_context->channel;
	copy_settings_data->digfe_inst				= psr_context->engineId;
	copy_settings_data->digbe_inst				= psr_context->transmitterId;

	copy_settings_data->mpcc_inst				= pipe_ctx->plane_res.mpcc_inst;

	if (pipe_ctx->plane_res.dpp)
		copy_settings_data->dpp_inst			= pipe_ctx->plane_res.dpp->inst;
	else
		copy_settings_data->dpp_inst			= 0;
	if (pipe_ctx->stream_res.opp)
		copy_settings_data->opp_inst			= pipe_ctx->stream_res.opp->inst;
	else
		copy_settings_data->opp_inst			= 0;
	if (pipe_ctx->stream_res.tg)
		copy_settings_data->otg_inst			= pipe_ctx->stream_res.tg->inst;
	else
		copy_settings_data->otg_inst			= 0;

	// Misc
	copy_settings_data->psr_level				= psr_context->psr_level.u32all;
297
	copy_settings_data->smu_optimizations_en		= psr_context->allow_smu_optimizations;
298
	copy_settings_data->multi_disp_optimizations_en	= psr_context->allow_multi_disp_optimizations;
299 300
	copy_settings_data->frame_delay				= psr_context->frame_delay;
	copy_settings_data->frame_cap_ind			= psr_context->psrFrameCaptureIndicationReq;
301 302
	copy_settings_data->init_sdp_deadline			= psr_context->sdpTransmitLineNumDeadline;
	copy_settings_data->debug.u32All = 0;
303
	copy_settings_data->debug.bitfields.visual_confirm	= dc->dc->debug.visual_confirm == VISUAL_CONFIRM_PSR;
304
	copy_settings_data->debug.bitfields.use_hw_lock_mgr		= 1;
305 306
	copy_settings_data->fec_enable_status = (link->fec_state == dc_link_fec_enabled);
	copy_settings_data->fec_enable_delay_in100us = link->dc->debug.fec_enable_delay_in100us;
307
	copy_settings_data->cmd_version =  DMUB_CMD_PSR_CONTROL_VERSION_1;
308
	copy_settings_data->panel_inst = panel_inst;
309

310
	dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
311 312 313 314 315 316
	dc_dmub_srv_cmd_execute(dc->dmub_srv);
	dc_dmub_srv_wait_idle(dc->dmub_srv);

	return true;
}

317
/*
318 319
 * Send command to PSR to force static ENTER and ignore all state changes until exit
 */
320
static void dmub_psr_force_static(struct dmub_psr *dmub, uint8_t panel_inst)
321 322 323 324
{
	union dmub_rb_cmd cmd;
	struct dc_context *dc = dmub->ctx;

325
	memset(&cmd, 0, sizeof(cmd));
326 327 328

	cmd.psr_force_static.psr_force_static_data.panel_inst = panel_inst;
	cmd.psr_force_static.psr_force_static_data.cmd_version = DMUB_CMD_PSR_CONTROL_VERSION_1;
329 330 331 332 333 334 335 336 337
	cmd.psr_force_static.header.type = DMUB_CMD__PSR;
	cmd.psr_force_static.header.sub_type = DMUB_CMD__PSR_FORCE_STATIC;
	cmd.psr_enable.header.payload_bytes = 0;

	dc_dmub_srv_cmd_queue(dc->dmub_srv, &cmd);
	dc_dmub_srv_cmd_execute(dc->dmub_srv);
	dc_dmub_srv_wait_idle(dc->dmub_srv);
}

338
/*
339 340
 * Get PSR residency from firmware.
 */
341
static void dmub_psr_get_residency(struct dmub_psr *dmub, uint32_t *residency, uint8_t panel_inst)
342 343
{
	struct dmub_srv *srv = dmub->ctx->dmub_srv->dmub;
344
	uint16_t param = (uint16_t)(panel_inst << 8);
345

346 347
	/* Send gpint command and wait for ack */
	dmub_srv_send_gpint_command(srv, DMUB_GPINT__PSR_RESIDENCY, param, 30);
348 349 350 351

	dmub_srv_get_gpint_response(srv, residency);
}

352
static const struct dmub_psr_funcs psr_funcs = {
353 354 355 356
	.psr_copy_settings		= dmub_psr_copy_settings,
	.psr_enable			= dmub_psr_enable,
	.psr_get_state			= dmub_psr_get_state,
	.psr_set_level			= dmub_psr_set_level,
357
	.psr_force_static		= dmub_psr_force_static,
358
	.psr_get_residency		= dmub_psr_get_residency,
359 360
};

361
/*
362 363 364 365 366 367 368 369
 * Construct PSR object.
 */
static void dmub_psr_construct(struct dmub_psr *psr, struct dc_context *ctx)
{
	psr->ctx = ctx;
	psr->funcs = &psr_funcs;
}

370
/*
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
 * Allocate and initialize PSR object.
 */
struct dmub_psr *dmub_psr_create(struct dc_context *ctx)
{
	struct dmub_psr *psr = kzalloc(sizeof(struct dmub_psr), GFP_KERNEL);

	if (psr == NULL) {
		BREAK_TO_DEBUGGER();
		return NULL;
	}

	dmub_psr_construct(psr, ctx);

	return psr;
}

387
/*
388 389 390 391
 * Deallocate PSR object.
 */
void dmub_psr_destroy(struct dmub_psr **dmub)
{
392
	kfree(*dmub);
393 394
	*dmub = NULL;
}