amd_powerplay.c 33.2 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
/*
 * Copyright 2015 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.
 *
 */
23
#include "pp_debug.h"
24 25 26
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/gfp.h>
27
#include <linux/slab.h>
28 29
#include "amd_shared.h"
#include "amd_powerplay.h"
30
#include "pp_instance.h"
31
#include "power_state.h"
32

33 34
#define PP_DPM_DISABLED 0xCCCC

R
Rex Zhu 已提交
35 36 37
static int pp_dpm_dispatch_tasks(void *handle, enum amd_pp_task task_id,
		void *input, void *output);

38
static inline int pp_check(struct pp_instance *handle)
39
{
R
Rex Zhu 已提交
40
	if (handle == NULL)
41
		return -EINVAL;
42

43
	if (handle->hwmgr == NULL || handle->hwmgr->smumgr_funcs == NULL)
44 45
		return -EINVAL;

46 47
	if (handle->pm_en == 0)
		return PP_DPM_DISABLED;
48

49
	if (handle->hwmgr->hwmgr_func == NULL)
50
		return PP_DPM_DISABLED;
51

52 53
	return 0;
}
54

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
static int amd_powerplay_create(struct amd_pp_init *pp_init,
				void **handle)
{
	struct pp_instance *instance;

	if (pp_init == NULL || handle == NULL)
		return -EINVAL;

	instance = kzalloc(sizeof(struct pp_instance), GFP_KERNEL);
	if (instance == NULL)
		return -ENOMEM;

	instance->chip_family = pp_init->chip_family;
	instance->chip_id = pp_init->chip_id;
	instance->pm_en = pp_init->pm_en;
	instance->feature_mask = pp_init->feature_mask;
	instance->device = pp_init->device;
	mutex_init(&instance->pp_lock);
	*handle = instance;
	return 0;
}

static int amd_powerplay_destroy(void *handle)
{
	struct pp_instance *instance = (struct pp_instance *)handle;

81 82 83
	kfree(instance->hwmgr->hardcode_pp_table);
	instance->hwmgr->hardcode_pp_table = NULL;

84 85 86 87 88 89 90 91
	kfree(instance->hwmgr);
	instance->hwmgr = NULL;

	kfree(instance);
	instance = NULL;
	return 0;
}

92 93 94
static int pp_early_init(void *handle)
{
	int ret;
95 96 97 98 99 100
	struct pp_instance *pp_handle = NULL;

	pp_handle = cgs_register_pp_handle(handle, amd_powerplay_create);

	if (!pp_handle)
		return -EINVAL;
101

102
	ret = hwmgr_early_init(pp_handle);
103
	if (ret)
104
		return -EINVAL;
105

106
	return 0;
107 108
}

109
static int pp_sw_init(void *handle)
110
{
111
	struct pp_hwmgr *hwmgr;
112
	int ret = 0;
113
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
114

115
	ret = pp_check(pp_handle);
116

117
	if (ret >= 0) {
118
		hwmgr = pp_handle->hwmgr;
119

120
		if (hwmgr->smumgr_funcs->smu_init == NULL)
121
			return -EINVAL;
122

123
		ret = hwmgr->smumgr_funcs->smu_init(hwmgr);
124

125
		pr_debug("amdgpu: powerplay sw initialized\n");
126 127 128
	}
	return ret;
}
129

130 131
static int pp_sw_fini(void *handle)
{
132
	struct pp_hwmgr *hwmgr;
133 134 135 136
	int ret = 0;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;

	ret = pp_check(pp_handle);
137
	if (ret >= 0) {
138
		hwmgr = pp_handle->hwmgr;
139

140
		if (hwmgr->smumgr_funcs->smu_fini == NULL)
141 142
			return -EINVAL;

143
		ret = hwmgr->smumgr_funcs->smu_fini(pp_handle->hwmgr);
144
	}
145
	return ret;
146 147 148 149
}

static int pp_hw_init(void *handle)
{
150
	int ret = 0;
151
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
152
	struct pp_hwmgr *hwmgr;
153

154
	ret = pp_check(pp_handle);
155

156
	if (ret >= 0) {
157
		hwmgr = pp_handle->hwmgr;
158

159
		if (hwmgr->smumgr_funcs->start_smu == NULL)
160
			return -EINVAL;
161

162
		if(hwmgr->smumgr_funcs->start_smu(pp_handle->hwmgr)) {
163
			pr_err("smc start failed\n");
164
			hwmgr->smumgr_funcs->smu_fini(pp_handle->hwmgr);
165 166 167
			return -EINVAL;;
		}
		if (ret == PP_DPM_DISABLED)
168 169 170 171
			goto exit;
		ret = hwmgr_hw_init(pp_handle);
		if (ret)
			goto exit;
172
	}
173 174
	return ret;
exit:
175
	pp_handle->pm_en = 0;
176 177 178
	cgs_notify_dpm_enabled(hwmgr->device, false);
	return 0;

179 180 181 182
}

static int pp_hw_fini(void *handle)
{
183 184
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
185

186
	ret = pp_check(pp_handle);
187
	if (ret == 0)
188
		hwmgr_hw_fini(pp_handle);
189

190 191 192
	return 0;
}

R
Rex Zhu 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205
static int pp_late_init(void *handle)
{
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);
	if (ret == 0)
		pp_dpm_dispatch_tasks(pp_handle,
					AMD_PP_TASK_COMPLETE_INIT, NULL, NULL);

	return 0;
}

206 207 208 209 210 211
static void pp_late_fini(void *handle)
{
	amd_powerplay_destroy(handle);
}


212 213
static bool pp_is_idle(void *handle)
{
214
	return false;
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
}

static int pp_wait_for_idle(void *handle)
{
	return 0;
}

static int pp_sw_reset(void *handle)
{
	return 0;
}

static int pp_set_powergating_state(void *handle,
				    enum amd_powergating_state state)
{
230
	struct pp_hwmgr  *hwmgr;
231 232
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
233

234
	ret = pp_check(pp_handle);
235

236
	if (ret)
237
		return ret;
238

239
	hwmgr = pp_handle->hwmgr;
240 241

	if (hwmgr->hwmgr_func->enable_per_cu_power_gating == NULL) {
242
		pr_info("%s was not implemented.\n", __func__);
243 244
		return 0;
	}
245 246 247

	/* Enable/disable GFX per cu powergating through SMU */
	return hwmgr->hwmgr_func->enable_per_cu_power_gating(hwmgr,
248
			state == AMD_PG_STATE_GATE);
249 250 251 252
}

static int pp_suspend(void *handle)
{
253 254
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
255

256
	ret = pp_check(pp_handle);
257 258 259
	if (ret == 0)
		hwmgr_hw_suspend(pp_handle);
	return 0;
260 261 262 263
}

static int pp_resume(void *handle)
{
264
	struct pp_hwmgr  *hwmgr;
265
	int ret;
266
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
267

268
	ret = pp_check(pp_handle);
269

270 271
	if (ret < 0)
		return ret;
272

273
	hwmgr = pp_handle->hwmgr;
274

275
	if (hwmgr->smumgr_funcs->start_smu == NULL)
276 277
		return -EINVAL;

278
	if (hwmgr->smumgr_funcs->start_smu(pp_handle->hwmgr)) {
279
		pr_err("smc start failed\n");
280
		hwmgr->smumgr_funcs->smu_fini(pp_handle->hwmgr);
281
		return -EINVAL;
282 283
	}

284
	if (ret == PP_DPM_DISABLED)
M
Monk Liu 已提交
285
		return 0;
286

287
	return hwmgr_hw_resume(pp_handle);
288 289 290
}

const struct amd_ip_funcs pp_ip_funcs = {
291
	.name = "powerplay",
292
	.early_init = pp_early_init,
R
Rex Zhu 已提交
293
	.late_init = pp_late_init,
294 295 296 297
	.sw_init = pp_sw_init,
	.sw_fini = pp_sw_fini,
	.hw_init = pp_hw_init,
	.hw_fini = pp_hw_fini,
298
	.late_fini = pp_late_fini,
299 300 301 302 303
	.suspend = pp_suspend,
	.resume = pp_resume,
	.is_idle = pp_is_idle,
	.wait_for_idle = pp_wait_for_idle,
	.soft_reset = pp_sw_reset,
304
	.set_clockgating_state = NULL,
305 306 307 308 309 310 311 312 313 314 315 316 317
	.set_powergating_state = pp_set_powergating_state,
};

static int pp_dpm_load_fw(void *handle)
{
	return 0;
}

static int pp_dpm_fw_loading_complete(void *handle)
{
	return 0;
}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
static int pp_set_clockgating_by_smu(void *handle, uint32_t msg_id)
{
	struct pp_hwmgr  *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);

	if (ret)
		return ret;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr->hwmgr_func->update_clock_gatings == NULL) {
		pr_info("%s was not implemented.\n", __func__);
		return 0;
	}

	return hwmgr->hwmgr_func->update_clock_gatings(hwmgr, &msg_id);
}

339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
static void pp_dpm_en_umd_pstate(struct pp_hwmgr  *hwmgr,
						enum amd_dpm_forced_level *level)
{
	uint32_t profile_mode_mask = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
					AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
					AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
					AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;

	if (!(hwmgr->dpm_level & profile_mode_mask)) {
		/* enter umd pstate, save current level, disable gfx cg*/
		if (*level & profile_mode_mask) {
			hwmgr->saved_dpm_level = hwmgr->dpm_level;
			hwmgr->en_umd_pstate = true;
			cgs_set_clockgating_state(hwmgr->device,
						AMD_IP_BLOCK_TYPE_GFX,
						AMD_CG_STATE_UNGATE);
			cgs_set_powergating_state(hwmgr->device,
					AMD_IP_BLOCK_TYPE_GFX,
					AMD_PG_STATE_UNGATE);
		}
	} else {
		/* exit umd pstate, restore level, enable gfx cg*/
		if (!(*level & profile_mode_mask)) {
			if (*level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)
				*level = hwmgr->saved_dpm_level;
			hwmgr->en_umd_pstate = false;
			cgs_set_clockgating_state(hwmgr->device,
					AMD_IP_BLOCK_TYPE_GFX,
					AMD_CG_STATE_GATE);
			cgs_set_powergating_state(hwmgr->device,
					AMD_IP_BLOCK_TYPE_GFX,
					AMD_PG_STATE_GATE);
		}
	}
}

375 376 377
static int pp_dpm_force_performance_level(void *handle,
					enum amd_dpm_forced_level level)
{
378
	struct pp_hwmgr  *hwmgr;
379 380
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
381

382
	ret = pp_check(pp_handle);
383

384
	if (ret)
385
		return ret;
386 387 388

	hwmgr = pp_handle->hwmgr;

389 390 391
	if (level == hwmgr->dpm_level)
		return 0;

392
	if (hwmgr->hwmgr_func->force_dpm_level == NULL) {
393
		pr_info("%s was not implemented.\n", __func__);
394 395
		return 0;
	}
396

397
	mutex_lock(&pp_handle->pp_lock);
398 399
	pp_dpm_en_umd_pstate(hwmgr, &level);
	hwmgr->request_dpm_level = level;
400
	hwmgr_handle_task(pp_handle, AMD_PP_TASK_READJUST_POWER_STATE, NULL, NULL);
401 402 403 404
	ret = hwmgr->hwmgr_func->force_dpm_level(hwmgr, level);
	if (!ret)
		hwmgr->dpm_level = hwmgr->request_dpm_level;

405
	mutex_unlock(&pp_handle->pp_lock);
406 407
	return 0;
}
408

409 410 411
static enum amd_dpm_forced_level pp_dpm_get_performance_level(
								void *handle)
{
412
	struct pp_hwmgr  *hwmgr;
413 414
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
415
	enum amd_dpm_forced_level level;
416

417
	ret = pp_check(pp_handle);
418

419
	if (ret)
420
		return ret;
421

422
	hwmgr = pp_handle->hwmgr;
423 424 425 426
	mutex_lock(&pp_handle->pp_lock);
	level = hwmgr->dpm_level;
	mutex_unlock(&pp_handle->pp_lock);
	return level;
427
}
428

429
static uint32_t pp_dpm_get_sclk(void *handle, bool low)
430
{
431
	struct pp_hwmgr  *hwmgr;
432 433
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
434
	uint32_t clk = 0;
435

436
	ret = pp_check(pp_handle);
437

438
	if (ret)
439
		return ret;
440

441
	hwmgr = pp_handle->hwmgr;
442 443

	if (hwmgr->hwmgr_func->get_sclk == NULL) {
444
		pr_info("%s was not implemented.\n", __func__);
445 446
		return 0;
	}
447
	mutex_lock(&pp_handle->pp_lock);
448
	clk = hwmgr->hwmgr_func->get_sclk(hwmgr, low);
449
	mutex_unlock(&pp_handle->pp_lock);
450
	return clk;
451
}
452

453
static uint32_t pp_dpm_get_mclk(void *handle, bool low)
454
{
455
	struct pp_hwmgr  *hwmgr;
456 457
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
458
	uint32_t clk = 0;
459

460
	ret = pp_check(pp_handle);
461

462
	if (ret)
463
		return ret;
464

465
	hwmgr = pp_handle->hwmgr;
466 467

	if (hwmgr->hwmgr_func->get_mclk == NULL) {
468
		pr_info("%s was not implemented.\n", __func__);
469 470
		return 0;
	}
471
	mutex_lock(&pp_handle->pp_lock);
472
	clk = hwmgr->hwmgr_func->get_mclk(hwmgr, low);
473
	mutex_unlock(&pp_handle->pp_lock);
474
	return clk;
475
}
476

477
static void pp_dpm_powergate_vce(void *handle, bool gate)
478
{
479
	struct pp_hwmgr  *hwmgr;
480 481
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
482

483
	ret = pp_check(pp_handle);
484

485
	if (ret)
486
		return;
487

488
	hwmgr = pp_handle->hwmgr;
489 490

	if (hwmgr->hwmgr_func->powergate_vce == NULL) {
491
		pr_info("%s was not implemented.\n", __func__);
492
		return;
493
	}
494
	mutex_lock(&pp_handle->pp_lock);
495
	hwmgr->hwmgr_func->powergate_vce(hwmgr, gate);
496
	mutex_unlock(&pp_handle->pp_lock);
497
}
498

499
static void pp_dpm_powergate_uvd(void *handle, bool gate)
500
{
501
	struct pp_hwmgr  *hwmgr;
502 503
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
504

505
	ret = pp_check(pp_handle);
506

507
	if (ret)
508
		return;
509

510
	hwmgr = pp_handle->hwmgr;
511 512

	if (hwmgr->hwmgr_func->powergate_uvd == NULL) {
513
		pr_info("%s was not implemented.\n", __func__);
514
		return;
515
	}
516
	mutex_lock(&pp_handle->pp_lock);
517
	hwmgr->hwmgr_func->powergate_uvd(hwmgr, gate);
518
	mutex_unlock(&pp_handle->pp_lock);
519 520
}

521
static int pp_dpm_dispatch_tasks(void *handle, enum amd_pp_task task_id,
522
		void *input, void *output)
523
{
524
	int ret = 0;
525
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
526

527
	ret = pp_check(pp_handle);
528

529
	if (ret)
530
		return ret;
531

532 533
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr_handle_task(pp_handle, task_id, input, output);
534
	mutex_unlock(&pp_handle->pp_lock);
535

536
	return ret;
537
}
538

539
static enum amd_pm_state_type pp_dpm_get_current_power_state(void *handle)
540
{
541 542
	struct pp_hwmgr *hwmgr;
	struct pp_power_state *state;
543 544
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
545
	enum amd_pm_state_type pm_type;
546

547
	ret = pp_check(pp_handle);
548

549
	if (ret)
550
		return ret;
551

552 553 554
	hwmgr = pp_handle->hwmgr;

	if (hwmgr->current_ps == NULL)
555 556
		return -EINVAL;

557 558
	mutex_lock(&pp_handle->pp_lock);

559 560 561 562
	state = hwmgr->current_ps;

	switch (state->classification.ui_label) {
	case PP_StateUILabel_Battery:
563
		pm_type = POWER_STATE_TYPE_BATTERY;
564
		break;
565
	case PP_StateUILabel_Balanced:
566
		pm_type = POWER_STATE_TYPE_BALANCED;
567
		break;
568
	case PP_StateUILabel_Performance:
569
		pm_type = POWER_STATE_TYPE_PERFORMANCE;
570
		break;
571
	default:
572
		if (state->classification.flags & PP_StateClassificationFlag_Boot)
573
			pm_type = POWER_STATE_TYPE_INTERNAL_BOOT;
574
		else
575
			pm_type = POWER_STATE_TYPE_DEFAULT;
576
		break;
577
	}
578 579 580
	mutex_unlock(&pp_handle->pp_lock);

	return pm_type;
581
}
582

583
static void pp_dpm_set_fan_control_mode(void *handle, uint32_t mode)
584 585
{
	struct pp_hwmgr  *hwmgr;
586 587
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
588

589
	ret = pp_check(pp_handle);
590

591
	if (ret)
592
		return;
593

594
	hwmgr = pp_handle->hwmgr;
595 596

	if (hwmgr->hwmgr_func->set_fan_control_mode == NULL) {
597
		pr_info("%s was not implemented.\n", __func__);
598
		return;
599
	}
600
	mutex_lock(&pp_handle->pp_lock);
601
	hwmgr->hwmgr_func->set_fan_control_mode(hwmgr, mode);
602
	mutex_unlock(&pp_handle->pp_lock);
603 604
}

605
static uint32_t pp_dpm_get_fan_control_mode(void *handle)
606 607
{
	struct pp_hwmgr  *hwmgr;
608 609
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
610
	uint32_t mode = 0;
611

612
	ret = pp_check(pp_handle);
613

614
	if (ret)
615
		return ret;
616

617
	hwmgr = pp_handle->hwmgr;
618 619

	if (hwmgr->hwmgr_func->get_fan_control_mode == NULL) {
620
		pr_info("%s was not implemented.\n", __func__);
621 622
		return 0;
	}
623
	mutex_lock(&pp_handle->pp_lock);
624
	mode = hwmgr->hwmgr_func->get_fan_control_mode(hwmgr);
625
	mutex_unlock(&pp_handle->pp_lock);
626
	return mode;
627 628 629 630 631
}

static int pp_dpm_set_fan_speed_percent(void *handle, uint32_t percent)
{
	struct pp_hwmgr  *hwmgr;
632 633
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
634

635
	ret = pp_check(pp_handle);
636

637
	if (ret)
638
		return ret;
639

640
	hwmgr = pp_handle->hwmgr;
641 642

	if (hwmgr->hwmgr_func->set_fan_speed_percent == NULL) {
643
		pr_info("%s was not implemented.\n", __func__);
644 645
		return 0;
	}
646 647 648 649
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->set_fan_speed_percent(hwmgr, percent);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
650 651 652 653 654
}

static int pp_dpm_get_fan_speed_percent(void *handle, uint32_t *speed)
{
	struct pp_hwmgr  *hwmgr;
655 656
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
657

658
	ret = pp_check(pp_handle);
659

660
	if (ret)
661
		return ret;
662

663
	hwmgr = pp_handle->hwmgr;
664 665

	if (hwmgr->hwmgr_func->get_fan_speed_percent == NULL) {
666
		pr_info("%s was not implemented.\n", __func__);
667 668
		return 0;
	}
669

670 671 672 673
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_fan_speed_percent(hwmgr, speed);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
674 675
}

676 677 678
static int pp_dpm_get_fan_speed_rpm(void *handle, uint32_t *rpm)
{
	struct pp_hwmgr *hwmgr;
679 680
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
681

682
	ret = pp_check(pp_handle);
683

684
	if (ret)
685
		return ret;
686

687
	hwmgr = pp_handle->hwmgr;
688 689 690 691

	if (hwmgr->hwmgr_func->get_fan_speed_rpm == NULL)
		return -EINVAL;

692 693 694 695
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_fan_speed_rpm(hwmgr, rpm);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
696 697
}

698 699 700
static int pp_dpm_get_temperature(void *handle)
{
	struct pp_hwmgr  *hwmgr;
701 702
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
703

704
	ret = pp_check(pp_handle);
705

706
	if (ret)
707
		return ret;
708

709
	hwmgr = pp_handle->hwmgr;
710 711

	if (hwmgr->hwmgr_func->get_temperature == NULL) {
712
		pr_info("%s was not implemented.\n", __func__);
713 714
		return 0;
	}
715 716 717 718
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_temperature(hwmgr);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
719
}
720

721 722 723 724 725
static int pp_dpm_get_pp_num_states(void *handle,
		struct pp_states_info *data)
{
	struct pp_hwmgr *hwmgr;
	int i;
726 727
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
728

729
	ret = pp_check(pp_handle);
730

731
	if (ret)
732 733 734
		return ret;

	hwmgr = pp_handle->hwmgr;
735

736
	if (hwmgr->ps == NULL)
737 738
		return -EINVAL;

739 740
	mutex_lock(&pp_handle->pp_lock);

741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
	data->nums = hwmgr->num_ps;

	for (i = 0; i < hwmgr->num_ps; i++) {
		struct pp_power_state *state = (struct pp_power_state *)
				((unsigned long)hwmgr->ps + i * hwmgr->ps_size);
		switch (state->classification.ui_label) {
		case PP_StateUILabel_Battery:
			data->states[i] = POWER_STATE_TYPE_BATTERY;
			break;
		case PP_StateUILabel_Balanced:
			data->states[i] = POWER_STATE_TYPE_BALANCED;
			break;
		case PP_StateUILabel_Performance:
			data->states[i] = POWER_STATE_TYPE_PERFORMANCE;
			break;
		default:
			if (state->classification.flags & PP_StateClassificationFlag_Boot)
				data->states[i] = POWER_STATE_TYPE_INTERNAL_BOOT;
			else
				data->states[i] = POWER_STATE_TYPE_DEFAULT;
		}
	}
763
	mutex_unlock(&pp_handle->pp_lock);
764 765 766 767 768 769
	return 0;
}

static int pp_dpm_get_pp_table(void *handle, char **table)
{
	struct pp_hwmgr *hwmgr;
770 771
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
772
	int size = 0;
773

774
	ret = pp_check(pp_handle);
775

776
	if (ret)
777
		return ret;
778

779
	hwmgr = pp_handle->hwmgr;
780

781 782 783
	if (!hwmgr->soft_pp_table)
		return -EINVAL;

784
	mutex_lock(&pp_handle->pp_lock);
785
	*table = (char *)hwmgr->soft_pp_table;
786 787 788
	size = hwmgr->soft_pp_table_size;
	mutex_unlock(&pp_handle->pp_lock);
	return size;
789 790
}

791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
static int amd_powerplay_reset(void *handle)
{
	struct pp_instance *instance = (struct pp_instance *)handle;
	int ret;

	ret = pp_check(instance);
	if (ret)
		return ret;

	ret = pp_hw_fini(instance);
	if (ret)
		return ret;

	ret = hwmgr_hw_init(instance);
	if (ret)
		return ret;

	return hwmgr_handle_task(instance, AMD_PP_TASK_COMPLETE_INIT, NULL, NULL);
}

811 812 813
static int pp_dpm_set_pp_table(void *handle, const char *buf, size_t size)
{
	struct pp_hwmgr *hwmgr;
814 815
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
816

817
	ret = pp_check(pp_handle);
818

819
	if (ret)
820
		return ret;
821

822
	hwmgr = pp_handle->hwmgr;
823
	mutex_lock(&pp_handle->pp_lock);
824
	if (!hwmgr->hardcode_pp_table) {
825 826 827
		hwmgr->hardcode_pp_table = kmemdup(hwmgr->soft_pp_table,
						   hwmgr->soft_pp_table_size,
						   GFP_KERNEL);
828 829
		if (!hwmgr->hardcode_pp_table) {
			mutex_unlock(&pp_handle->pp_lock);
830
			return -ENOMEM;
831
		}
832
	}
833

834 835 836
	memcpy(hwmgr->hardcode_pp_table, buf, size);

	hwmgr->soft_pp_table = hwmgr->hardcode_pp_table;
837
	mutex_unlock(&pp_handle->pp_lock);
838

839 840 841 842 843 844 845 846 847 848 849
	ret = amd_powerplay_reset(handle);
	if (ret)
		return ret;

	if (hwmgr->hwmgr_func->avfs_control) {
		ret = hwmgr->hwmgr_func->avfs_control(hwmgr, false);
		if (ret)
			return ret;
	}

	return 0;
850 851 852
}

static int pp_dpm_force_clock_level(void *handle,
853
		enum pp_clock_type type, uint32_t mask)
854 855
{
	struct pp_hwmgr *hwmgr;
856 857
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
858

859
	ret = pp_check(pp_handle);
860

861
	if (ret)
862
		return ret;
863

864
	hwmgr = pp_handle->hwmgr;
865 866

	if (hwmgr->hwmgr_func->force_clock_level == NULL) {
867
		pr_info("%s was not implemented.\n", __func__);
868 869
		return 0;
	}
870 871 872 873
	mutex_lock(&pp_handle->pp_lock);
	hwmgr->hwmgr_func->force_clock_level(hwmgr, type, mask);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
874 875 876 877 878 879
}

static int pp_dpm_print_clock_levels(void *handle,
		enum pp_clock_type type, char *buf)
{
	struct pp_hwmgr *hwmgr;
880 881
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
882

883
	ret = pp_check(pp_handle);
884

885
	if (ret)
886
		return ret;
887

888
	hwmgr = pp_handle->hwmgr;
889

890
	if (hwmgr->hwmgr_func->print_clock_levels == NULL) {
891
		pr_info("%s was not implemented.\n", __func__);
892 893
		return 0;
	}
894 895 896 897
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->print_clock_levels(hwmgr, type, buf);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
898 899
}

900 901 902
static int pp_dpm_get_sclk_od(void *handle)
{
	struct pp_hwmgr *hwmgr;
903 904
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
905

906
	ret = pp_check(pp_handle);
907

908
	if (ret)
909
		return ret;
910

911
	hwmgr = pp_handle->hwmgr;
912 913

	if (hwmgr->hwmgr_func->get_sclk_od == NULL) {
914
		pr_info("%s was not implemented.\n", __func__);
915 916
		return 0;
	}
917 918 919 920
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_sclk_od(hwmgr);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
921 922 923 924 925
}

static int pp_dpm_set_sclk_od(void *handle, uint32_t value)
{
	struct pp_hwmgr *hwmgr;
926 927
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
928

929
	ret = pp_check(pp_handle);
930

931
	if (ret)
932
		return ret;
933

934
	hwmgr = pp_handle->hwmgr;
935 936

	if (hwmgr->hwmgr_func->set_sclk_od == NULL) {
937
		pr_info("%s was not implemented.\n", __func__);
938 939 940
		return 0;
	}

941 942
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->set_sclk_od(hwmgr, value);
943
	mutex_unlock(&pp_handle->pp_lock);
944
	return ret;
945 946
}

947 948 949
static int pp_dpm_get_mclk_od(void *handle)
{
	struct pp_hwmgr *hwmgr;
950 951
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
952

953
	ret = pp_check(pp_handle);
954

955
	if (ret)
956
		return ret;
957

958
	hwmgr = pp_handle->hwmgr;
959 960

	if (hwmgr->hwmgr_func->get_mclk_od == NULL) {
961
		pr_info("%s was not implemented.\n", __func__);
962 963
		return 0;
	}
964 965 966 967
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_mclk_od(hwmgr);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
968 969 970 971 972
}

static int pp_dpm_set_mclk_od(void *handle, uint32_t value)
{
	struct pp_hwmgr *hwmgr;
973 974
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
975

976
	ret = pp_check(pp_handle);
977

978
	if (ret)
979
		return ret;
980

981
	hwmgr = pp_handle->hwmgr;
982 983

	if (hwmgr->hwmgr_func->set_mclk_od == NULL) {
984
		pr_info("%s was not implemented.\n", __func__);
985 986
		return 0;
	}
987 988 989 990
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->set_mclk_od(hwmgr, value);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
991 992
}

993 994
static int pp_dpm_read_sensor(void *handle, int idx,
			      void *value, int *size)
995 996
{
	struct pp_hwmgr *hwmgr;
997 998
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
999

1000
	ret = pp_check(pp_handle);
1001

1002
	if (ret)
1003
		return ret;
1004

1005
	hwmgr = pp_handle->hwmgr;
1006 1007

	if (hwmgr->hwmgr_func->read_sensor == NULL) {
1008
		pr_info("%s was not implemented.\n", __func__);
1009 1010 1011
		return 0;
	}

1012 1013 1014 1015 1016
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->read_sensor(hwmgr, idx, value, size);
	mutex_unlock(&pp_handle->pp_lock);

	return ret;
1017 1018
}

1019 1020 1021 1022
static struct amd_vce_state*
pp_dpm_get_vce_clock_state(void *handle, unsigned idx)
{
	struct pp_hwmgr *hwmgr;
1023 1024
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1025

1026
	ret = pp_check(pp_handle);
1027

1028
	if (ret)
1029 1030 1031 1032 1033 1034
		return NULL;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr && idx < hwmgr->num_vce_state_tables)
		return &hwmgr->vce_states[idx];
1035 1036 1037
	return NULL;
}

1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
static int pp_dpm_reset_power_profile_state(void *handle,
		struct amd_pp_profile *request)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;

	if (!request || pp_check(pp_handle))
		return -EINVAL;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr->hwmgr_func->set_power_profile_state == NULL) {
		pr_info("%s was not implemented.\n", __func__);
		return 0;
	}

	if (request->type == AMD_PP_GFX_PROFILE) {
		hwmgr->gfx_power_profile = hwmgr->default_gfx_power_profile;
		return hwmgr->hwmgr_func->set_power_profile_state(hwmgr,
				&hwmgr->gfx_power_profile);
	} else if (request->type == AMD_PP_COMPUTE_PROFILE) {
		hwmgr->compute_power_profile =
				hwmgr->default_compute_power_profile;
		return hwmgr->hwmgr_func->set_power_profile_state(hwmgr,
				&hwmgr->compute_power_profile);
	} else
		return -EINVAL;
}

static int pp_dpm_get_power_profile_state(void *handle,
		struct amd_pp_profile *query)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;

	if (!query || pp_check(pp_handle))
		return -EINVAL;

	hwmgr = pp_handle->hwmgr;

	if (query->type == AMD_PP_GFX_PROFILE)
		memcpy(query, &hwmgr->gfx_power_profile,
				sizeof(struct amd_pp_profile));
	else if (query->type == AMD_PP_COMPUTE_PROFILE)
		memcpy(query, &hwmgr->compute_power_profile,
				sizeof(struct amd_pp_profile));
	else
		return -EINVAL;

	return 0;
}

static int pp_dpm_set_power_profile_state(void *handle,
		struct amd_pp_profile *request)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = -1;

	if (!request || pp_check(pp_handle))
		return -EINVAL;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr->hwmgr_func->set_power_profile_state == NULL) {
		pr_info("%s was not implemented.\n", __func__);
		return 0;
	}

	if (request->min_sclk ||
		request->min_mclk ||
		request->activity_threshold ||
		request->up_hyst ||
		request->down_hyst) {
		if (request->type == AMD_PP_GFX_PROFILE)
			memcpy(&hwmgr->gfx_power_profile, request,
					sizeof(struct amd_pp_profile));
		else if (request->type == AMD_PP_COMPUTE_PROFILE)
			memcpy(&hwmgr->compute_power_profile, request,
					sizeof(struct amd_pp_profile));
		else
			return -EINVAL;

		if (request->type == hwmgr->current_power_profile)
			ret = hwmgr->hwmgr_func->set_power_profile_state(
					hwmgr,
					request);
	} else {
		/* set power profile if it exists */
		switch (request->type) {
		case AMD_PP_GFX_PROFILE:
			ret = hwmgr->hwmgr_func->set_power_profile_state(
					hwmgr,
					&hwmgr->gfx_power_profile);
			break;
		case AMD_PP_COMPUTE_PROFILE:
			ret = hwmgr->hwmgr_func->set_power_profile_state(
					hwmgr,
					&hwmgr->compute_power_profile);
			break;
		default:
			return -EINVAL;
		}
	}

	if (!ret)
		hwmgr->current_power_profile = request->type;

	return 0;
}

static int pp_dpm_switch_power_profile(void *handle,
		enum amd_pp_profile_type type)
{
	struct pp_hwmgr *hwmgr;
	struct amd_pp_profile request = {0};
	struct pp_instance *pp_handle = (struct pp_instance *)handle;

	if (pp_check(pp_handle))
		return -EINVAL;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr->current_power_profile != type) {
		request.type = type;
		pp_dpm_set_power_profile_state(handle, &request);
	}

	return 0;
}

1169 1170
/* export this function to DAL */

1171
static int pp_display_configuration_change(void *handle,
1172
	const struct amd_pp_display_configuration *display_config)
1173 1174
{
	struct pp_hwmgr  *hwmgr;
1175 1176
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1177

1178
	ret = pp_check(pp_handle);
1179

1180
	if (ret)
1181
		return ret;
1182

1183
	hwmgr = pp_handle->hwmgr;
1184
	mutex_lock(&pp_handle->pp_lock);
1185
	phm_store_dal_configuration_data(hwmgr, display_config);
1186
	mutex_unlock(&pp_handle->pp_lock);
1187 1188
	return 0;
}
1189

1190
static int pp_get_display_power_level(void *handle,
R
Rex Zhu 已提交
1191
		struct amd_pp_simple_clock_info *output)
1192 1193
{
	struct pp_hwmgr  *hwmgr;
1194 1195
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1196

1197
	ret = pp_check(pp_handle);
1198

1199
	if (ret)
1200
		return ret;
1201

1202
	hwmgr = pp_handle->hwmgr;
1203

1204 1205
	if (output == NULL)
		return -EINVAL;
1206

1207 1208 1209 1210
	mutex_lock(&pp_handle->pp_lock);
	ret = phm_get_dal_power_level(hwmgr, output);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
1211
}
1212

1213
static int pp_get_current_clocks(void *handle,
1214
		struct amd_pp_clock_info *clocks)
1215 1216 1217
{
	struct amd_pp_simple_clock_info simple_clocks;
	struct pp_clock_info hw_clocks;
1218 1219 1220
	struct pp_hwmgr  *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1221

1222
	ret = pp_check(pp_handle);
1223

1224
	if (ret)
1225
		return ret;
1226

1227
	hwmgr = pp_handle->hwmgr;
1228

1229 1230
	mutex_lock(&pp_handle->pp_lock);

1231 1232
	phm_get_dal_power_level(hwmgr, &simple_clocks);

1233 1234 1235 1236 1237 1238 1239 1240
	if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
					PHM_PlatformCaps_PowerContainment))
		ret = phm_get_clock_info(hwmgr, &hwmgr->current_ps->hardware,
					&hw_clocks, PHM_PerformanceLevelDesignation_PowerContainment);
	else
		ret = phm_get_clock_info(hwmgr, &hwmgr->current_ps->hardware,
					&hw_clocks, PHM_PerformanceLevelDesignation_Activity);

1241
	if (ret) {
1242 1243 1244
		pr_info("Error in phm_get_clock_info \n");
		mutex_unlock(&pp_handle->pp_lock);
		return -EINVAL;
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
	}

	clocks->min_engine_clock = hw_clocks.min_eng_clk;
	clocks->max_engine_clock = hw_clocks.max_eng_clk;
	clocks->min_memory_clock = hw_clocks.min_mem_clk;
	clocks->max_memory_clock = hw_clocks.max_mem_clk;
	clocks->min_bus_bandwidth = hw_clocks.min_bus_bandwidth;
	clocks->max_bus_bandwidth = hw_clocks.max_bus_bandwidth;

	clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
	clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;

	clocks->max_clocks_state = simple_clocks.level;

	if (0 == phm_get_current_shallow_sleep_clocks(hwmgr, &hwmgr->current_ps->hardware, &hw_clocks)) {
		clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
		clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;
	}
1263
	mutex_unlock(&pp_handle->pp_lock);
1264 1265 1266
	return 0;
}

1267
static int pp_get_clock_by_type(void *handle, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
1268
{
1269 1270 1271
	struct pp_hwmgr  *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1272

1273
	ret = pp_check(pp_handle);
1274

1275
	if (ret)
1276 1277 1278
		return ret;

	hwmgr = pp_handle->hwmgr;
1279 1280

	if (clocks == NULL)
1281 1282
		return -EINVAL;

1283 1284 1285 1286
	mutex_lock(&pp_handle->pp_lock);
	ret = phm_get_clock_by_type(hwmgr, type, clocks);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
1287 1288
}

1289
static int pp_get_clock_by_type_with_latency(void *handle,
1290 1291 1292 1293 1294 1295 1296 1297
		enum amd_pp_clock_type type,
		struct pp_clock_levels_with_latency *clocks)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);
1298
	if (ret)
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
		return ret;

	if (!clocks)
		return -EINVAL;

	mutex_lock(&pp_handle->pp_lock);
	hwmgr = ((struct pp_instance *)handle)->hwmgr;
	ret = phm_get_clock_by_type_with_latency(hwmgr, type, clocks);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
}

1311
static int pp_get_clock_by_type_with_voltage(void *handle,
1312 1313 1314 1315 1316 1317 1318 1319
		enum amd_pp_clock_type type,
		struct pp_clock_levels_with_voltage *clocks)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);
1320
	if (ret)
1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
		return ret;

	if (!clocks)
		return -EINVAL;

	hwmgr = ((struct pp_instance *)handle)->hwmgr;

	mutex_lock(&pp_handle->pp_lock);

	ret = phm_get_clock_by_type_with_voltage(hwmgr, type, clocks);

	mutex_unlock(&pp_handle->pp_lock);
	return ret;
}

1336
static int pp_set_watermarks_for_clocks_ranges(void *handle,
1337 1338 1339 1340 1341 1342 1343
		struct pp_wm_sets_with_clock_ranges_soc15 *wm_with_clock_ranges)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);
1344
	if (ret)
1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359
		return ret;

	if (!wm_with_clock_ranges)
		return -EINVAL;

	hwmgr = ((struct pp_instance *)handle)->hwmgr;

	mutex_lock(&pp_handle->pp_lock);
	ret = phm_set_watermarks_for_clocks_ranges(hwmgr,
			wm_with_clock_ranges);
	mutex_unlock(&pp_handle->pp_lock);

	return ret;
}

1360
static int pp_display_clock_voltage_request(void *handle,
1361 1362 1363 1364 1365 1366 1367
		struct pp_display_clock_request *clock)
{
	struct pp_hwmgr *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;

	ret = pp_check(pp_handle);
1368
	if (ret)
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
		return ret;

	if (!clock)
		return -EINVAL;

	hwmgr = ((struct pp_instance *)handle)->hwmgr;

	mutex_lock(&pp_handle->pp_lock);
	ret = phm_display_clock_voltage_request(hwmgr, clock);
	mutex_unlock(&pp_handle->pp_lock);

	return ret;
}

1383
static int pp_get_display_mode_validation_clocks(void *handle,
1384
		struct amd_pp_simple_clock_info *clocks)
1385 1386
{
	struct pp_hwmgr  *hwmgr;
1387 1388
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1389

1390
	ret = pp_check(pp_handle);
1391

1392
	if (ret)
1393 1394 1395
		return ret;

	hwmgr = pp_handle->hwmgr;
1396

1397 1398
	if (clocks == NULL)
		return -EINVAL;
1399

1400 1401
	mutex_lock(&pp_handle->pp_lock);

1402
	if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DynamicPatchPowerState))
1403
		ret = phm_get_max_high_clocks(hwmgr, clocks);
1404

1405
	mutex_unlock(&pp_handle->pp_lock);
1406
	return ret;
1407 1408
}

1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
const struct amd_pm_funcs pp_dpm_funcs = {
	.get_temperature = pp_dpm_get_temperature,
	.load_firmware = pp_dpm_load_fw,
	.wait_for_fw_loading_complete = pp_dpm_fw_loading_complete,
	.force_performance_level = pp_dpm_force_performance_level,
	.get_performance_level = pp_dpm_get_performance_level,
	.get_current_power_state = pp_dpm_get_current_power_state,
	.powergate_vce = pp_dpm_powergate_vce,
	.powergate_uvd = pp_dpm_powergate_uvd,
	.dispatch_tasks = pp_dpm_dispatch_tasks,
	.set_fan_control_mode = pp_dpm_set_fan_control_mode,
	.get_fan_control_mode = pp_dpm_get_fan_control_mode,
	.set_fan_speed_percent = pp_dpm_set_fan_speed_percent,
	.get_fan_speed_percent = pp_dpm_get_fan_speed_percent,
	.get_fan_speed_rpm = pp_dpm_get_fan_speed_rpm,
	.get_pp_num_states = pp_dpm_get_pp_num_states,
	.get_pp_table = pp_dpm_get_pp_table,
	.set_pp_table = pp_dpm_set_pp_table,
	.force_clock_level = pp_dpm_force_clock_level,
	.print_clock_levels = pp_dpm_print_clock_levels,
	.get_sclk_od = pp_dpm_get_sclk_od,
	.set_sclk_od = pp_dpm_set_sclk_od,
	.get_mclk_od = pp_dpm_get_mclk_od,
	.set_mclk_od = pp_dpm_set_mclk_od,
	.read_sensor = pp_dpm_read_sensor,
	.get_vce_clock_state = pp_dpm_get_vce_clock_state,
	.reset_power_profile_state = pp_dpm_reset_power_profile_state,
	.get_power_profile_state = pp_dpm_get_power_profile_state,
	.set_power_profile_state = pp_dpm_set_power_profile_state,
	.switch_power_profile = pp_dpm_switch_power_profile,
	.set_clockgating_by_smu = pp_set_clockgating_by_smu,
/* export to DC */
	.get_sclk = pp_dpm_get_sclk,
	.get_mclk = pp_dpm_get_mclk,
	.display_configuration_change = pp_display_configuration_change,
	.get_display_power_level = pp_get_display_power_level,
	.get_current_clocks = pp_get_current_clocks,
	.get_clock_by_type = pp_get_clock_by_type,
	.get_clock_by_type_with_latency = pp_get_clock_by_type_with_latency,
	.get_clock_by_type_with_voltage = pp_get_clock_by_type_with_voltage,
	.set_watermarks_for_clocks_ranges = pp_set_watermarks_for_clocks_ranges,
	.display_clock_voltage_request = pp_display_clock_voltage_request,
	.get_display_mode_validation_clocks = pp_get_display_mode_validation_clocks,
};