amd_powerplay.c 32.7 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
}

static int pp_dpm_set_pp_table(void *handle, const char *buf, size_t size)
{
	struct pp_hwmgr *hwmgr;
794 795
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
796

797
	ret = pp_check(pp_handle);
798

799
	if (ret)
800
		return ret;
801

802
	hwmgr = pp_handle->hwmgr;
803
	mutex_lock(&pp_handle->pp_lock);
804
	if (!hwmgr->hardcode_pp_table) {
805 806 807
		hwmgr->hardcode_pp_table = kmemdup(hwmgr->soft_pp_table,
						   hwmgr->soft_pp_table_size,
						   GFP_KERNEL);
808 809
		if (!hwmgr->hardcode_pp_table) {
			mutex_unlock(&pp_handle->pp_lock);
810
			return -ENOMEM;
811
		}
812
	}
813

814 815 816
	memcpy(hwmgr->hardcode_pp_table, buf, size);

	hwmgr->soft_pp_table = hwmgr->hardcode_pp_table;
817
	mutex_unlock(&pp_handle->pp_lock);
818

819 820 821 822 823 824 825 826 827 828 829
	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;
830 831 832
}

static int pp_dpm_force_clock_level(void *handle,
833
		enum pp_clock_type type, uint32_t mask)
834 835
{
	struct pp_hwmgr *hwmgr;
836 837
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
838

839
	ret = pp_check(pp_handle);
840

841
	if (ret)
842
		return ret;
843

844
	hwmgr = pp_handle->hwmgr;
845 846

	if (hwmgr->hwmgr_func->force_clock_level == NULL) {
847
		pr_info("%s was not implemented.\n", __func__);
848 849
		return 0;
	}
850 851 852 853
	mutex_lock(&pp_handle->pp_lock);
	hwmgr->hwmgr_func->force_clock_level(hwmgr, type, mask);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
854 855 856 857 858 859
}

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

863
	ret = pp_check(pp_handle);
864

865
	if (ret)
866
		return ret;
867

868
	hwmgr = pp_handle->hwmgr;
869

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

880 881 882
static int pp_dpm_get_sclk_od(void *handle)
{
	struct pp_hwmgr *hwmgr;
883 884
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
885

886
	ret = pp_check(pp_handle);
887

888
	if (ret)
889
		return ret;
890

891
	hwmgr = pp_handle->hwmgr;
892 893

	if (hwmgr->hwmgr_func->get_sclk_od == NULL) {
894
		pr_info("%s was not implemented.\n", __func__);
895 896
		return 0;
	}
897 898 899 900
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_sclk_od(hwmgr);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
901 902 903 904 905
}

static int pp_dpm_set_sclk_od(void *handle, uint32_t value)
{
	struct pp_hwmgr *hwmgr;
906 907
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
908

909
	ret = pp_check(pp_handle);
910

911
	if (ret)
912
		return ret;
913

914
	hwmgr = pp_handle->hwmgr;
915 916

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

921 922
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->set_sclk_od(hwmgr, value);
923
	mutex_unlock(&pp_handle->pp_lock);
924
	return ret;
925 926
}

927 928 929
static int pp_dpm_get_mclk_od(void *handle)
{
	struct pp_hwmgr *hwmgr;
930 931
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
932

933
	ret = pp_check(pp_handle);
934

935
	if (ret)
936
		return ret;
937

938
	hwmgr = pp_handle->hwmgr;
939 940

	if (hwmgr->hwmgr_func->get_mclk_od == NULL) {
941
		pr_info("%s was not implemented.\n", __func__);
942 943
		return 0;
	}
944 945 946 947
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->get_mclk_od(hwmgr);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
948 949 950 951 952
}

static int pp_dpm_set_mclk_od(void *handle, uint32_t value)
{
	struct pp_hwmgr *hwmgr;
953 954
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
955

956
	ret = pp_check(pp_handle);
957

958
	if (ret)
959
		return ret;
960

961
	hwmgr = pp_handle->hwmgr;
962 963

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

973 974
static int pp_dpm_read_sensor(void *handle, int idx,
			      void *value, int *size)
975 976
{
	struct pp_hwmgr *hwmgr;
977 978
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
979

980
	ret = pp_check(pp_handle);
981

982
	if (ret)
983
		return ret;
984

985
	hwmgr = pp_handle->hwmgr;
986 987

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

992 993 994 995 996
	mutex_lock(&pp_handle->pp_lock);
	ret = hwmgr->hwmgr_func->read_sensor(hwmgr, idx, value, size);
	mutex_unlock(&pp_handle->pp_lock);

	return ret;
997 998
}

999 1000 1001 1002
static struct amd_vce_state*
pp_dpm_get_vce_clock_state(void *handle, unsigned idx)
{
	struct pp_hwmgr *hwmgr;
1003 1004
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1005

1006
	ret = pp_check(pp_handle);
1007

1008
	if (ret)
1009 1010 1011 1012 1013 1014
		return NULL;

	hwmgr = pp_handle->hwmgr;

	if (hwmgr && idx < hwmgr->num_vce_state_tables)
		return &hwmgr->vce_states[idx];
1015 1016 1017
	return NULL;
}

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 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
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;
}

1149
const struct amd_pm_funcs pp_dpm_funcs = {
1150
	.get_temperature = pp_dpm_get_temperature,
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160
	.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,
	.get_sclk = pp_dpm_get_sclk,
	.get_mclk = pp_dpm_get_mclk,
	.powergate_vce = pp_dpm_powergate_vce,
	.powergate_uvd = pp_dpm_powergate_uvd,
	.dispatch_tasks = pp_dpm_dispatch_tasks,
1161 1162 1163 1164
	.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,
1165
	.get_fan_speed_rpm = pp_dpm_get_fan_speed_rpm,
1166 1167 1168 1169 1170
	.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,
1171 1172
	.get_sclk_od = pp_dpm_get_sclk_od,
	.set_sclk_od = pp_dpm_set_sclk_od,
1173 1174
	.get_mclk_od = pp_dpm_get_mclk_od,
	.set_mclk_od = pp_dpm_set_mclk_od,
1175
	.read_sensor = pp_dpm_read_sensor,
1176
	.get_vce_clock_state = pp_dpm_get_vce_clock_state,
1177 1178 1179 1180
	.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,
1181
	.set_clockgating_by_smu = pp_set_clockgating_by_smu,
1182 1183
};

1184 1185 1186 1187 1188
int amd_powerplay_reset(void *handle)
{
	struct pp_instance *instance = (struct pp_instance *)handle;
	int ret;

1189
	ret = pp_check(instance);
1190
	if (ret)
1191 1192
		return ret;

1193
	ret = pp_hw_fini(instance);
1194 1195 1196
	if (ret)
		return ret;

1197 1198
	ret = hwmgr_hw_init(instance);
	if (ret)
1199
		return ret;
1200

1201
	return hwmgr_handle_task(instance, AMD_PP_TASK_COMPLETE_INIT, NULL, NULL);
1202 1203
}

1204 1205
/* export this function to DAL */

1206 1207
int amd_powerplay_display_configuration_change(void *handle,
	const struct amd_pp_display_configuration *display_config)
1208 1209
{
	struct pp_hwmgr  *hwmgr;
1210 1211
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1212

1213
	ret = pp_check(pp_handle);
1214

1215
	if (ret)
1216
		return ret;
1217

1218
	hwmgr = pp_handle->hwmgr;
1219
	mutex_lock(&pp_handle->pp_lock);
1220
	phm_store_dal_configuration_data(hwmgr, display_config);
1221
	mutex_unlock(&pp_handle->pp_lock);
1222 1223
	return 0;
}
1224

1225
int amd_powerplay_get_display_power_level(void *handle,
R
Rex Zhu 已提交
1226
		struct amd_pp_simple_clock_info *output)
1227 1228
{
	struct pp_hwmgr  *hwmgr;
1229 1230
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1231

1232
	ret = pp_check(pp_handle);
1233

1234
	if (ret)
1235
		return ret;
1236

1237
	hwmgr = pp_handle->hwmgr;
1238

1239 1240
	if (output == NULL)
		return -EINVAL;
1241

1242 1243 1244 1245
	mutex_lock(&pp_handle->pp_lock);
	ret = phm_get_dal_power_level(hwmgr, output);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
1246
}
1247 1248

int amd_powerplay_get_current_clocks(void *handle,
1249
		struct amd_pp_clock_info *clocks)
1250 1251 1252
{
	struct amd_pp_simple_clock_info simple_clocks;
	struct pp_clock_info hw_clocks;
1253 1254 1255
	struct pp_hwmgr  *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1256

1257
	ret = pp_check(pp_handle);
1258

1259
	if (ret)
1260
		return ret;
1261

1262
	hwmgr = pp_handle->hwmgr;
1263

1264 1265
	mutex_lock(&pp_handle->pp_lock);

1266 1267
	phm_get_dal_power_level(hwmgr, &simple_clocks);

1268 1269 1270 1271 1272 1273 1274 1275
	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);

1276
	if (ret) {
1277 1278 1279
		pr_info("Error in phm_get_clock_info \n");
		mutex_unlock(&pp_handle->pp_lock);
		return -EINVAL;
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
	}

	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;
	}
1298
	mutex_unlock(&pp_handle->pp_lock);
1299 1300 1301 1302 1303
	return 0;
}

int amd_powerplay_get_clock_by_type(void *handle, enum amd_pp_clock_type type, struct amd_pp_clocks *clocks)
{
1304 1305 1306
	struct pp_hwmgr  *hwmgr;
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1307

1308
	ret = pp_check(pp_handle);
1309

1310
	if (ret)
1311 1312 1313
		return ret;

	hwmgr = pp_handle->hwmgr;
1314 1315

	if (clocks == NULL)
1316 1317
		return -EINVAL;

1318 1319 1320 1321
	mutex_lock(&pp_handle->pp_lock);
	ret = phm_get_clock_by_type(hwmgr, type, clocks);
	mutex_unlock(&pp_handle->pp_lock);
	return ret;
1322 1323
}

1324 1325 1326 1327 1328 1329 1330 1331 1332
int amd_powerplay_get_clock_by_type_with_latency(void *handle,
		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);
1333
	if (ret)
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
		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;
}

int amd_powerplay_get_clock_by_type_with_voltage(void *handle,
		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);
1355
	if (ret)
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
		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;
}

int amd_powerplay_set_watermarks_for_clocks_ranges(void *handle,
		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);
1379
	if (ret)
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
		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;
}

int amd_powerplay_display_clock_voltage_request(void *handle,
		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);
1403
	if (ret)
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417
		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;
}

1418 1419
int amd_powerplay_get_display_mode_validation_clocks(void *handle,
		struct amd_pp_simple_clock_info *clocks)
1420 1421
{
	struct pp_hwmgr  *hwmgr;
1422 1423
	struct pp_instance *pp_handle = (struct pp_instance *)handle;
	int ret = 0;
1424

1425
	ret = pp_check(pp_handle);
1426

1427
	if (ret)
1428 1429 1430
		return ret;

	hwmgr = pp_handle->hwmgr;
1431

1432 1433
	if (clocks == NULL)
		return -EINVAL;
1434

1435 1436
	mutex_lock(&pp_handle->pp_lock);

1437
	if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_DynamicPatchPowerState))
1438
		ret = phm_get_max_high_clocks(hwmgr, clocks);
1439

1440
	mutex_unlock(&pp_handle->pp_lock);
1441
	return ret;
1442 1443
}