Linux Audio

Check our new training course

Loading...
v6.9.4
   1/*
   2 * Copyright 2017 Advanced Micro Devices, Inc.
   3 *
   4 * Permission is hereby granted, free of charge, to any person obtaining a
   5 * copy of this software and associated documentation files (the "Software"),
   6 * to deal in the Software without restriction, including without limitation
   7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
   8 * and/or sell copies of the Software, and to permit persons to whom the
   9 * Software is furnished to do so, subject to the following conditions:
  10 *
  11 * The above copyright notice and this permission notice shall be included in
  12 * all copies or substantial portions of the Software.
  13 *
  14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20 * OTHER DEALINGS IN THE SOFTWARE.
  21 *
  22 * Authors: Rafał Miłecki <zajec5@gmail.com>
  23 *          Alex Deucher <alexdeucher@gmail.com>
  24 */
  25
  26#include "amdgpu.h"
  27#include "amdgpu_drv.h"
  28#include "amdgpu_pm.h"
  29#include "amdgpu_dpm.h"
  30#include "atom.h"
  31#include <linux/pci.h>
  32#include <linux/hwmon.h>
  33#include <linux/hwmon-sysfs.h>
  34#include <linux/nospec.h>
  35#include <linux/pm_runtime.h>
  36#include <asm/processor.h>
  37
  38#define MAX_NUM_OF_FEATURES_PER_SUBSET		8
  39#define MAX_NUM_OF_SUBSETS			8
  40
 
 
  41struct od_attribute {
  42	struct kobj_attribute	attribute;
  43	struct list_head	entry;
  44};
  45
  46struct od_kobj {
  47	struct kobject		kobj;
  48	struct list_head	entry;
  49	struct list_head	attribute;
  50	void			*priv;
  51};
  52
  53struct od_feature_ops {
  54	umode_t (*is_visible)(struct amdgpu_device *adev);
  55	ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
  56			char *buf);
  57	ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr,
  58			 const char *buf, size_t count);
  59};
  60
  61struct od_feature_item {
  62	const char		*name;
  63	struct od_feature_ops	ops;
  64};
  65
  66struct od_feature_container {
  67	char				*name;
  68	struct od_feature_ops		ops;
  69	struct od_feature_item		sub_feature[MAX_NUM_OF_FEATURES_PER_SUBSET];
  70};
  71
  72struct od_feature_set {
  73	struct od_feature_container	containers[MAX_NUM_OF_SUBSETS];
  74};
  75
  76static const struct hwmon_temp_label {
  77	enum PP_HWMON_TEMP channel;
  78	const char *label;
  79} temp_label[] = {
  80	{PP_TEMP_EDGE, "edge"},
  81	{PP_TEMP_JUNCTION, "junction"},
  82	{PP_TEMP_MEM, "mem"},
  83};
  84
  85const char * const amdgpu_pp_profile_name[] = {
  86	"BOOTUP_DEFAULT",
  87	"3D_FULL_SCREEN",
  88	"POWER_SAVING",
  89	"VIDEO",
  90	"VR",
  91	"COMPUTE",
  92	"CUSTOM",
  93	"WINDOW_3D",
  94	"CAPPED",
  95	"UNCAPPED",
  96};
  97
  98/**
  99 * DOC: power_dpm_state
 100 *
 101 * The power_dpm_state file is a legacy interface and is only provided for
 102 * backwards compatibility. The amdgpu driver provides a sysfs API for adjusting
 103 * certain power related parameters.  The file power_dpm_state is used for this.
 104 * It accepts the following arguments:
 105 *
 106 * - battery
 107 *
 108 * - balanced
 109 *
 110 * - performance
 111 *
 112 * battery
 113 *
 114 * On older GPUs, the vbios provided a special power state for battery
 115 * operation.  Selecting battery switched to this state.  This is no
 116 * longer provided on newer GPUs so the option does nothing in that case.
 117 *
 118 * balanced
 119 *
 120 * On older GPUs, the vbios provided a special power state for balanced
 121 * operation.  Selecting balanced switched to this state.  This is no
 122 * longer provided on newer GPUs so the option does nothing in that case.
 123 *
 124 * performance
 125 *
 126 * On older GPUs, the vbios provided a special power state for performance
 127 * operation.  Selecting performance switched to this state.  This is no
 128 * longer provided on newer GPUs so the option does nothing in that case.
 129 *
 130 */
 131
 132static ssize_t amdgpu_get_power_dpm_state(struct device *dev,
 133					  struct device_attribute *attr,
 134					  char *buf)
 135{
 136	struct drm_device *ddev = dev_get_drvdata(dev);
 137	struct amdgpu_device *adev = drm_to_adev(ddev);
 138	enum amd_pm_state_type pm;
 139	int ret;
 140
 141	if (amdgpu_in_reset(adev))
 142		return -EPERM;
 143	if (adev->in_suspend && !adev->in_runpm)
 144		return -EPERM;
 145
 146	ret = pm_runtime_get_sync(ddev->dev);
 147	if (ret < 0) {
 148		pm_runtime_put_autosuspend(ddev->dev);
 149		return ret;
 150	}
 151
 152	amdgpu_dpm_get_current_power_state(adev, &pm);
 153
 154	pm_runtime_mark_last_busy(ddev->dev);
 155	pm_runtime_put_autosuspend(ddev->dev);
 156
 157	return sysfs_emit(buf, "%s\n",
 158			  (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
 159			  (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
 160}
 161
 162static ssize_t amdgpu_set_power_dpm_state(struct device *dev,
 163					  struct device_attribute *attr,
 164					  const char *buf,
 165					  size_t count)
 166{
 167	struct drm_device *ddev = dev_get_drvdata(dev);
 168	struct amdgpu_device *adev = drm_to_adev(ddev);
 169	enum amd_pm_state_type  state;
 170	int ret;
 171
 172	if (amdgpu_in_reset(adev))
 173		return -EPERM;
 174	if (adev->in_suspend && !adev->in_runpm)
 175		return -EPERM;
 176
 177	if (strncmp("battery", buf, strlen("battery")) == 0)
 178		state = POWER_STATE_TYPE_BATTERY;
 179	else if (strncmp("balanced", buf, strlen("balanced")) == 0)
 180		state = POWER_STATE_TYPE_BALANCED;
 181	else if (strncmp("performance", buf, strlen("performance")) == 0)
 182		state = POWER_STATE_TYPE_PERFORMANCE;
 183	else
 184		return -EINVAL;
 185
 186	ret = pm_runtime_get_sync(ddev->dev);
 187	if (ret < 0) {
 188		pm_runtime_put_autosuspend(ddev->dev);
 189		return ret;
 190	}
 191
 192	amdgpu_dpm_set_power_state(adev, state);
 193
 194	pm_runtime_mark_last_busy(ddev->dev);
 195	pm_runtime_put_autosuspend(ddev->dev);
 196
 197	return count;
 198}
 199
 200
 201/**
 202 * DOC: power_dpm_force_performance_level
 203 *
 204 * The amdgpu driver provides a sysfs API for adjusting certain power
 205 * related parameters.  The file power_dpm_force_performance_level is
 206 * used for this.  It accepts the following arguments:
 207 *
 208 * - auto
 209 *
 210 * - low
 211 *
 212 * - high
 213 *
 214 * - manual
 215 *
 216 * - profile_standard
 217 *
 218 * - profile_min_sclk
 219 *
 220 * - profile_min_mclk
 221 *
 222 * - profile_peak
 223 *
 224 * auto
 225 *
 226 * When auto is selected, the driver will attempt to dynamically select
 227 * the optimal power profile for current conditions in the driver.
 228 *
 229 * low
 230 *
 231 * When low is selected, the clocks are forced to the lowest power state.
 232 *
 233 * high
 234 *
 235 * When high is selected, the clocks are forced to the highest power state.
 236 *
 237 * manual
 238 *
 239 * When manual is selected, the user can manually adjust which power states
 240 * are enabled for each clock domain via the sysfs pp_dpm_mclk, pp_dpm_sclk,
 241 * and pp_dpm_pcie files and adjust the power state transition heuristics
 242 * via the pp_power_profile_mode sysfs file.
 243 *
 244 * profile_standard
 245 * profile_min_sclk
 246 * profile_min_mclk
 247 * profile_peak
 248 *
 249 * When the profiling modes are selected, clock and power gating are
 250 * disabled and the clocks are set for different profiling cases. This
 251 * mode is recommended for profiling specific work loads where you do
 252 * not want clock or power gating for clock fluctuation to interfere
 253 * with your results. profile_standard sets the clocks to a fixed clock
 254 * level which varies from asic to asic.  profile_min_sclk forces the sclk
 255 * to the lowest level.  profile_min_mclk forces the mclk to the lowest level.
 256 * profile_peak sets all clocks (mclk, sclk, pcie) to the highest levels.
 257 *
 258 */
 259
 260static ssize_t amdgpu_get_power_dpm_force_performance_level(struct device *dev,
 261							    struct device_attribute *attr,
 262							    char *buf)
 263{
 264	struct drm_device *ddev = dev_get_drvdata(dev);
 265	struct amdgpu_device *adev = drm_to_adev(ddev);
 266	enum amd_dpm_forced_level level = 0xff;
 267	int ret;
 268
 269	if (amdgpu_in_reset(adev))
 270		return -EPERM;
 271	if (adev->in_suspend && !adev->in_runpm)
 272		return -EPERM;
 273
 274	ret = pm_runtime_get_sync(ddev->dev);
 275	if (ret < 0) {
 276		pm_runtime_put_autosuspend(ddev->dev);
 277		return ret;
 278	}
 279
 280	level = amdgpu_dpm_get_performance_level(adev);
 281
 282	pm_runtime_mark_last_busy(ddev->dev);
 283	pm_runtime_put_autosuspend(ddev->dev);
 284
 285	return sysfs_emit(buf, "%s\n",
 286			  (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
 287			  (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
 288			  (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
 289			  (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
 290			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
 291			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
 292			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
 293			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
 294			  (level == AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM) ? "perf_determinism" :
 295			  "unknown");
 296}
 297
 298static ssize_t amdgpu_set_power_dpm_force_performance_level(struct device *dev,
 299							    struct device_attribute *attr,
 300							    const char *buf,
 301							    size_t count)
 302{
 303	struct drm_device *ddev = dev_get_drvdata(dev);
 304	struct amdgpu_device *adev = drm_to_adev(ddev);
 305	enum amd_dpm_forced_level level;
 306	int ret = 0;
 307
 308	if (amdgpu_in_reset(adev))
 309		return -EPERM;
 310	if (adev->in_suspend && !adev->in_runpm)
 311		return -EPERM;
 312
 313	if (strncmp("low", buf, strlen("low")) == 0) {
 314		level = AMD_DPM_FORCED_LEVEL_LOW;
 315	} else if (strncmp("high", buf, strlen("high")) == 0) {
 316		level = AMD_DPM_FORCED_LEVEL_HIGH;
 317	} else if (strncmp("auto", buf, strlen("auto")) == 0) {
 318		level = AMD_DPM_FORCED_LEVEL_AUTO;
 319	} else if (strncmp("manual", buf, strlen("manual")) == 0) {
 320		level = AMD_DPM_FORCED_LEVEL_MANUAL;
 321	} else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
 322		level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
 323	} else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
 324		level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
 325	} else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
 326		level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
 327	} else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
 328		level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
 329	} else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
 330		level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
 331	} else if (strncmp("perf_determinism", buf, strlen("perf_determinism")) == 0) {
 332		level = AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM;
 333	}  else {
 334		return -EINVAL;
 335	}
 336
 337	ret = pm_runtime_get_sync(ddev->dev);
 338	if (ret < 0) {
 339		pm_runtime_put_autosuspend(ddev->dev);
 340		return ret;
 341	}
 342
 343	mutex_lock(&adev->pm.stable_pstate_ctx_lock);
 344	if (amdgpu_dpm_force_performance_level(adev, level)) {
 345		pm_runtime_mark_last_busy(ddev->dev);
 346		pm_runtime_put_autosuspend(ddev->dev);
 347		mutex_unlock(&adev->pm.stable_pstate_ctx_lock);
 348		return -EINVAL;
 349	}
 350	/* override whatever a user ctx may have set */
 351	adev->pm.stable_pstate_ctx = NULL;
 352	mutex_unlock(&adev->pm.stable_pstate_ctx_lock);
 353
 354	pm_runtime_mark_last_busy(ddev->dev);
 355	pm_runtime_put_autosuspend(ddev->dev);
 356
 357	return count;
 358}
 359
 360static ssize_t amdgpu_get_pp_num_states(struct device *dev,
 361		struct device_attribute *attr,
 362		char *buf)
 363{
 364	struct drm_device *ddev = dev_get_drvdata(dev);
 365	struct amdgpu_device *adev = drm_to_adev(ddev);
 366	struct pp_states_info data;
 367	uint32_t i;
 368	int buf_len, ret;
 369
 370	if (amdgpu_in_reset(adev))
 371		return -EPERM;
 372	if (adev->in_suspend && !adev->in_runpm)
 373		return -EPERM;
 374
 375	ret = pm_runtime_get_sync(ddev->dev);
 376	if (ret < 0) {
 377		pm_runtime_put_autosuspend(ddev->dev);
 378		return ret;
 379	}
 380
 381	if (amdgpu_dpm_get_pp_num_states(adev, &data))
 382		memset(&data, 0, sizeof(data));
 383
 384	pm_runtime_mark_last_busy(ddev->dev);
 385	pm_runtime_put_autosuspend(ddev->dev);
 386
 387	buf_len = sysfs_emit(buf, "states: %d\n", data.nums);
 388	for (i = 0; i < data.nums; i++)
 389		buf_len += sysfs_emit_at(buf, buf_len, "%d %s\n", i,
 390				(data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
 391				(data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
 392				(data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
 393				(data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
 394
 395	return buf_len;
 396}
 397
 398static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
 399		struct device_attribute *attr,
 400		char *buf)
 401{
 402	struct drm_device *ddev = dev_get_drvdata(dev);
 403	struct amdgpu_device *adev = drm_to_adev(ddev);
 404	struct pp_states_info data = {0};
 405	enum amd_pm_state_type pm = 0;
 406	int i = 0, ret = 0;
 407
 408	if (amdgpu_in_reset(adev))
 409		return -EPERM;
 410	if (adev->in_suspend && !adev->in_runpm)
 411		return -EPERM;
 412
 413	ret = pm_runtime_get_sync(ddev->dev);
 414	if (ret < 0) {
 415		pm_runtime_put_autosuspend(ddev->dev);
 416		return ret;
 417	}
 418
 419	amdgpu_dpm_get_current_power_state(adev, &pm);
 420
 421	ret = amdgpu_dpm_get_pp_num_states(adev, &data);
 422
 423	pm_runtime_mark_last_busy(ddev->dev);
 424	pm_runtime_put_autosuspend(ddev->dev);
 425
 426	if (ret)
 427		return ret;
 428
 429	for (i = 0; i < data.nums; i++) {
 430		if (pm == data.states[i])
 431			break;
 432	}
 433
 434	if (i == data.nums)
 435		i = -EINVAL;
 436
 437	return sysfs_emit(buf, "%d\n", i);
 438}
 439
 440static ssize_t amdgpu_get_pp_force_state(struct device *dev,
 441		struct device_attribute *attr,
 442		char *buf)
 443{
 444	struct drm_device *ddev = dev_get_drvdata(dev);
 445	struct amdgpu_device *adev = drm_to_adev(ddev);
 446
 447	if (amdgpu_in_reset(adev))
 448		return -EPERM;
 449	if (adev->in_suspend && !adev->in_runpm)
 450		return -EPERM;
 451
 452	if (adev->pm.pp_force_state_enabled)
 453		return amdgpu_get_pp_cur_state(dev, attr, buf);
 454	else
 455		return sysfs_emit(buf, "\n");
 456}
 457
 458static ssize_t amdgpu_set_pp_force_state(struct device *dev,
 459		struct device_attribute *attr,
 460		const char *buf,
 461		size_t count)
 462{
 463	struct drm_device *ddev = dev_get_drvdata(dev);
 464	struct amdgpu_device *adev = drm_to_adev(ddev);
 465	enum amd_pm_state_type state = 0;
 466	struct pp_states_info data;
 467	unsigned long idx;
 468	int ret;
 469
 470	if (amdgpu_in_reset(adev))
 471		return -EPERM;
 472	if (adev->in_suspend && !adev->in_runpm)
 473		return -EPERM;
 474
 475	adev->pm.pp_force_state_enabled = false;
 476
 477	if (strlen(buf) == 1)
 478		return count;
 479
 480	ret = kstrtoul(buf, 0, &idx);
 481	if (ret || idx >= ARRAY_SIZE(data.states))
 482		return -EINVAL;
 483
 484	idx = array_index_nospec(idx, ARRAY_SIZE(data.states));
 485
 486	ret = pm_runtime_get_sync(ddev->dev);
 487	if (ret < 0) {
 488		pm_runtime_put_autosuspend(ddev->dev);
 489		return ret;
 490	}
 491
 492	ret = amdgpu_dpm_get_pp_num_states(adev, &data);
 493	if (ret)
 494		goto err_out;
 495
 496	state = data.states[idx];
 497
 498	/* only set user selected power states */
 499	if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
 500	    state != POWER_STATE_TYPE_DEFAULT) {
 501		ret = amdgpu_dpm_dispatch_task(adev,
 502				AMD_PP_TASK_ENABLE_USER_STATE, &state);
 503		if (ret)
 504			goto err_out;
 505
 506		adev->pm.pp_force_state_enabled = true;
 507	}
 508
 509	pm_runtime_mark_last_busy(ddev->dev);
 510	pm_runtime_put_autosuspend(ddev->dev);
 511
 512	return count;
 513
 514err_out:
 515	pm_runtime_mark_last_busy(ddev->dev);
 516	pm_runtime_put_autosuspend(ddev->dev);
 517	return ret;
 518}
 519
 520/**
 521 * DOC: pp_table
 522 *
 523 * The amdgpu driver provides a sysfs API for uploading new powerplay
 524 * tables.  The file pp_table is used for this.  Reading the file
 525 * will dump the current power play table.  Writing to the file
 526 * will attempt to upload a new powerplay table and re-initialize
 527 * powerplay using that new table.
 528 *
 529 */
 530
 531static ssize_t amdgpu_get_pp_table(struct device *dev,
 532		struct device_attribute *attr,
 533		char *buf)
 534{
 535	struct drm_device *ddev = dev_get_drvdata(dev);
 536	struct amdgpu_device *adev = drm_to_adev(ddev);
 537	char *table = NULL;
 538	int size, ret;
 539
 540	if (amdgpu_in_reset(adev))
 541		return -EPERM;
 542	if (adev->in_suspend && !adev->in_runpm)
 543		return -EPERM;
 544
 545	ret = pm_runtime_get_sync(ddev->dev);
 546	if (ret < 0) {
 547		pm_runtime_put_autosuspend(ddev->dev);
 548		return ret;
 549	}
 550
 551	size = amdgpu_dpm_get_pp_table(adev, &table);
 552
 553	pm_runtime_mark_last_busy(ddev->dev);
 554	pm_runtime_put_autosuspend(ddev->dev);
 555
 556	if (size <= 0)
 557		return size;
 558
 559	if (size >= PAGE_SIZE)
 560		size = PAGE_SIZE - 1;
 561
 562	memcpy(buf, table, size);
 563
 564	return size;
 565}
 566
 567static ssize_t amdgpu_set_pp_table(struct device *dev,
 568		struct device_attribute *attr,
 569		const char *buf,
 570		size_t count)
 571{
 572	struct drm_device *ddev = dev_get_drvdata(dev);
 573	struct amdgpu_device *adev = drm_to_adev(ddev);
 574	int ret = 0;
 575
 576	if (amdgpu_in_reset(adev))
 577		return -EPERM;
 578	if (adev->in_suspend && !adev->in_runpm)
 579		return -EPERM;
 580
 581	ret = pm_runtime_get_sync(ddev->dev);
 582	if (ret < 0) {
 583		pm_runtime_put_autosuspend(ddev->dev);
 584		return ret;
 585	}
 586
 587	ret = amdgpu_dpm_set_pp_table(adev, buf, count);
 588
 589	pm_runtime_mark_last_busy(ddev->dev);
 590	pm_runtime_put_autosuspend(ddev->dev);
 591
 592	if (ret)
 593		return ret;
 594
 595	return count;
 596}
 597
 598/**
 599 * DOC: pp_od_clk_voltage
 600 *
 601 * The amdgpu driver provides a sysfs API for adjusting the clocks and voltages
 602 * in each power level within a power state.  The pp_od_clk_voltage is used for
 603 * this.
 604 *
 605 * Note that the actual memory controller clock rate are exposed, not
 606 * the effective memory clock of the DRAMs. To translate it, use the
 607 * following formula:
 608 *
 609 * Clock conversion (Mhz):
 610 *
 611 * HBM: effective_memory_clock = memory_controller_clock * 1
 612 *
 613 * G5: effective_memory_clock = memory_controller_clock * 1
 614 *
 615 * G6: effective_memory_clock = memory_controller_clock * 2
 616 *
 617 * DRAM data rate (MT/s):
 618 *
 619 * HBM: effective_memory_clock * 2 = data_rate
 620 *
 621 * G5: effective_memory_clock * 4 = data_rate
 622 *
 623 * G6: effective_memory_clock * 8 = data_rate
 624 *
 625 * Bandwidth (MB/s):
 626 *
 627 * data_rate * vram_bit_width / 8 = memory_bandwidth
 628 *
 629 * Some examples:
 630 *
 631 * G5 on RX460:
 632 *
 633 * memory_controller_clock = 1750 Mhz
 634 *
 635 * effective_memory_clock = 1750 Mhz * 1 = 1750 Mhz
 636 *
 637 * data rate = 1750 * 4 = 7000 MT/s
 638 *
 639 * memory_bandwidth = 7000 * 128 bits / 8 = 112000 MB/s
 640 *
 641 * G6 on RX5700:
 642 *
 643 * memory_controller_clock = 875 Mhz
 644 *
 645 * effective_memory_clock = 875 Mhz * 2 = 1750 Mhz
 646 *
 647 * data rate = 1750 * 8 = 14000 MT/s
 648 *
 649 * memory_bandwidth = 14000 * 256 bits / 8 = 448000 MB/s
 650 *
 651 * < For Vega10 and previous ASICs >
 652 *
 653 * Reading the file will display:
 654 *
 655 * - a list of engine clock levels and voltages labeled OD_SCLK
 656 *
 657 * - a list of memory clock levels and voltages labeled OD_MCLK
 658 *
 659 * - a list of valid ranges for sclk, mclk, and voltage labeled OD_RANGE
 660 *
 661 * To manually adjust these settings, first select manual using
 662 * power_dpm_force_performance_level. Enter a new value for each
 663 * level by writing a string that contains "s/m level clock voltage" to
 664 * the file.  E.g., "s 1 500 820" will update sclk level 1 to be 500 MHz
 665 * at 820 mV; "m 0 350 810" will update mclk level 0 to be 350 MHz at
 666 * 810 mV.  When you have edited all of the states as needed, write
 667 * "c" (commit) to the file to commit your changes.  If you want to reset to the
 668 * default power levels, write "r" (reset) to the file to reset them.
 669 *
 670 *
 671 * < For Vega20 and newer ASICs >
 672 *
 673 * Reading the file will display:
 674 *
 675 * - minimum and maximum engine clock labeled OD_SCLK
 676 *
 677 * - minimum(not available for Vega20 and Navi1x) and maximum memory
 678 *   clock labeled OD_MCLK
 679 *
 680 * - three <frequency, voltage> points labeled OD_VDDC_CURVE.
 681 *   They can be used to calibrate the sclk voltage curve. This is
 682 *   available for Vega20 and NV1X.
 683 *
 684 * - voltage offset(in mV) applied on target voltage calculation.
 685 *   This is available for Sienna Cichlid, Navy Flounder, Dimgrey
 686 *   Cavefish and some later SMU13 ASICs. For these ASICs, the target
 687 *   voltage calculation can be illustrated by "voltage = voltage
 688 *   calculated from v/f curve + overdrive vddgfx offset"
 689 *
 690 * - a list of valid ranges for sclk, mclk, voltage curve points
 691 *   or voltage offset labeled OD_RANGE
 692 *
 693 * < For APUs >
 694 *
 695 * Reading the file will display:
 696 *
 697 * - minimum and maximum engine clock labeled OD_SCLK
 698 *
 699 * - a list of valid ranges for sclk labeled OD_RANGE
 700 *
 701 * < For VanGogh >
 702 *
 703 * Reading the file will display:
 704 *
 705 * - minimum and maximum engine clock labeled OD_SCLK
 706 * - minimum and maximum core clocks labeled OD_CCLK
 707 *
 708 * - a list of valid ranges for sclk and cclk labeled OD_RANGE
 709 *
 710 * To manually adjust these settings:
 711 *
 712 * - First select manual using power_dpm_force_performance_level
 713 *
 714 * - For clock frequency setting, enter a new value by writing a
 715 *   string that contains "s/m index clock" to the file. The index
 716 *   should be 0 if to set minimum clock. And 1 if to set maximum
 717 *   clock. E.g., "s 0 500" will update minimum sclk to be 500 MHz.
 718 *   "m 1 800" will update maximum mclk to be 800Mhz. For core
 719 *   clocks on VanGogh, the string contains "p core index clock".
 720 *   E.g., "p 2 0 800" would set the minimum core clock on core
 721 *   2 to 800Mhz.
 722 *
 723 *   For sclk voltage curve supported by Vega20 and NV1X, enter the new
 724 *   values by writing a string that contains "vc point clock voltage"
 725 *   to the file. The points are indexed by 0, 1 and 2. E.g., "vc 0 300
 726 *   600" will update point1 with clock set as 300Mhz and voltage as 600mV.
 727 *   "vc 2 1000 1000" will update point3 with clock set as 1000Mhz and
 728 *   voltage 1000mV.
 729 *
 730 *   For voltage offset supported by Sienna Cichlid, Navy Flounder, Dimgrey
 731 *   Cavefish and some later SMU13 ASICs, enter the new value by writing a
 732 *   string that contains "vo offset". E.g., "vo -10" will update the extra
 733 *   voltage offset applied to the whole v/f curve line as -10mv.
 734 *
 735 * - When you have edited all of the states as needed, write "c" (commit)
 736 *   to the file to commit your changes
 737 *
 738 * - If you want to reset to the default power levels, write "r" (reset)
 739 *   to the file to reset them
 740 *
 741 */
 742
 743static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev,
 744		struct device_attribute *attr,
 745		const char *buf,
 746		size_t count)
 747{
 748	struct drm_device *ddev = dev_get_drvdata(dev);
 749	struct amdgpu_device *adev = drm_to_adev(ddev);
 750	int ret;
 751	uint32_t parameter_size = 0;
 752	long parameter[64];
 753	char buf_cpy[128];
 754	char *tmp_str;
 755	char *sub_str;
 756	const char delimiter[3] = {' ', '\n', '\0'};
 757	uint32_t type;
 758
 759	if (amdgpu_in_reset(adev))
 760		return -EPERM;
 761	if (adev->in_suspend && !adev->in_runpm)
 762		return -EPERM;
 763
 764	if (count > 127 || count == 0)
 765		return -EINVAL;
 766
 767	if (*buf == 's')
 768		type = PP_OD_EDIT_SCLK_VDDC_TABLE;
 769	else if (*buf == 'p')
 770		type = PP_OD_EDIT_CCLK_VDDC_TABLE;
 771	else if (*buf == 'm')
 772		type = PP_OD_EDIT_MCLK_VDDC_TABLE;
 773	else if (*buf == 'r')
 774		type = PP_OD_RESTORE_DEFAULT_TABLE;
 775	else if (*buf == 'c')
 776		type = PP_OD_COMMIT_DPM_TABLE;
 777	else if (!strncmp(buf, "vc", 2))
 778		type = PP_OD_EDIT_VDDC_CURVE;
 779	else if (!strncmp(buf, "vo", 2))
 780		type = PP_OD_EDIT_VDDGFX_OFFSET;
 781	else
 782		return -EINVAL;
 783
 784	memcpy(buf_cpy, buf, count);
 785	buf_cpy[count] = 0;
 786
 787	tmp_str = buf_cpy;
 788
 789	if ((type == PP_OD_EDIT_VDDC_CURVE) ||
 790	     (type == PP_OD_EDIT_VDDGFX_OFFSET))
 791		tmp_str++;
 792	while (isspace(*++tmp_str));
 793
 794	while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
 795		if (strlen(sub_str) == 0)
 796			continue;
 797		ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
 798		if (ret)
 799			return -EINVAL;
 800		parameter_size++;
 801
 802		if (!tmp_str)
 803			break;
 804
 805		while (isspace(*tmp_str))
 806			tmp_str++;
 807	}
 808
 809	ret = pm_runtime_get_sync(ddev->dev);
 810	if (ret < 0) {
 811		pm_runtime_put_autosuspend(ddev->dev);
 812		return ret;
 813	}
 814
 815	if (amdgpu_dpm_set_fine_grain_clk_vol(adev,
 816					      type,
 817					      parameter,
 818					      parameter_size))
 819		goto err_out;
 820
 821	if (amdgpu_dpm_odn_edit_dpm_table(adev, type,
 822					  parameter, parameter_size))
 823		goto err_out;
 824
 825	if (type == PP_OD_COMMIT_DPM_TABLE) {
 826		if (amdgpu_dpm_dispatch_task(adev,
 827					     AMD_PP_TASK_READJUST_POWER_STATE,
 828					     NULL))
 829			goto err_out;
 830	}
 831
 832	pm_runtime_mark_last_busy(ddev->dev);
 833	pm_runtime_put_autosuspend(ddev->dev);
 834
 835	return count;
 836
 837err_out:
 838	pm_runtime_mark_last_busy(ddev->dev);
 839	pm_runtime_put_autosuspend(ddev->dev);
 840	return -EINVAL;
 841}
 842
 843static ssize_t amdgpu_get_pp_od_clk_voltage(struct device *dev,
 844		struct device_attribute *attr,
 845		char *buf)
 846{
 847	struct drm_device *ddev = dev_get_drvdata(dev);
 848	struct amdgpu_device *adev = drm_to_adev(ddev);
 849	int size = 0;
 850	int ret;
 851	enum pp_clock_type od_clocks[6] = {
 852		OD_SCLK,
 853		OD_MCLK,
 854		OD_VDDC_CURVE,
 855		OD_RANGE,
 856		OD_VDDGFX_OFFSET,
 857		OD_CCLK,
 858	};
 859	uint clk_index;
 860
 861	if (amdgpu_in_reset(adev))
 862		return -EPERM;
 863	if (adev->in_suspend && !adev->in_runpm)
 864		return -EPERM;
 865
 866	ret = pm_runtime_get_sync(ddev->dev);
 867	if (ret < 0) {
 868		pm_runtime_put_autosuspend(ddev->dev);
 869		return ret;
 870	}
 871
 872	for (clk_index = 0 ; clk_index < 6 ; clk_index++) {
 873		ret = amdgpu_dpm_emit_clock_levels(adev, od_clocks[clk_index], buf, &size);
 874		if (ret)
 875			break;
 876	}
 877	if (ret == -ENOENT) {
 878		size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf);
 879		size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf + size);
 880		size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf + size);
 881		size += amdgpu_dpm_print_clock_levels(adev, OD_VDDGFX_OFFSET, buf + size);
 882		size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf + size);
 883		size += amdgpu_dpm_print_clock_levels(adev, OD_CCLK, buf + size);
 884	}
 885
 886	if (size == 0)
 887		size = sysfs_emit(buf, "\n");
 888
 889	pm_runtime_mark_last_busy(ddev->dev);
 890	pm_runtime_put_autosuspend(ddev->dev);
 891
 892	return size;
 893}
 894
 895/**
 896 * DOC: pp_features
 897 *
 898 * The amdgpu driver provides a sysfs API for adjusting what powerplay
 899 * features to be enabled. The file pp_features is used for this. And
 900 * this is only available for Vega10 and later dGPUs.
 901 *
 902 * Reading back the file will show you the followings:
 903 * - Current ppfeature masks
 904 * - List of the all supported powerplay features with their naming,
 905 *   bitmasks and enablement status('Y'/'N' means "enabled"/"disabled").
 906 *
 907 * To manually enable or disable a specific feature, just set or clear
 908 * the corresponding bit from original ppfeature masks and input the
 909 * new ppfeature masks.
 910 */
 911static ssize_t amdgpu_set_pp_features(struct device *dev,
 912				      struct device_attribute *attr,
 913				      const char *buf,
 914				      size_t count)
 915{
 916	struct drm_device *ddev = dev_get_drvdata(dev);
 917	struct amdgpu_device *adev = drm_to_adev(ddev);
 918	uint64_t featuremask;
 919	int ret;
 920
 921	if (amdgpu_in_reset(adev))
 922		return -EPERM;
 923	if (adev->in_suspend && !adev->in_runpm)
 924		return -EPERM;
 925
 926	ret = kstrtou64(buf, 0, &featuremask);
 927	if (ret)
 928		return -EINVAL;
 929
 930	ret = pm_runtime_get_sync(ddev->dev);
 931	if (ret < 0) {
 932		pm_runtime_put_autosuspend(ddev->dev);
 933		return ret;
 934	}
 935
 936	ret = amdgpu_dpm_set_ppfeature_status(adev, featuremask);
 937
 938	pm_runtime_mark_last_busy(ddev->dev);
 939	pm_runtime_put_autosuspend(ddev->dev);
 940
 941	if (ret)
 942		return -EINVAL;
 943
 944	return count;
 945}
 946
 947static ssize_t amdgpu_get_pp_features(struct device *dev,
 948				      struct device_attribute *attr,
 949				      char *buf)
 950{
 951	struct drm_device *ddev = dev_get_drvdata(dev);
 952	struct amdgpu_device *adev = drm_to_adev(ddev);
 953	ssize_t size;
 954	int ret;
 955
 956	if (amdgpu_in_reset(adev))
 957		return -EPERM;
 958	if (adev->in_suspend && !adev->in_runpm)
 959		return -EPERM;
 960
 961	ret = pm_runtime_get_sync(ddev->dev);
 962	if (ret < 0) {
 963		pm_runtime_put_autosuspend(ddev->dev);
 964		return ret;
 965	}
 966
 967	size = amdgpu_dpm_get_ppfeature_status(adev, buf);
 968	if (size <= 0)
 969		size = sysfs_emit(buf, "\n");
 970
 971	pm_runtime_mark_last_busy(ddev->dev);
 972	pm_runtime_put_autosuspend(ddev->dev);
 973
 974	return size;
 975}
 976
 977/**
 978 * DOC: pp_dpm_sclk pp_dpm_mclk pp_dpm_socclk pp_dpm_fclk pp_dpm_dcefclk pp_dpm_pcie
 979 *
 980 * The amdgpu driver provides a sysfs API for adjusting what power levels
 981 * are enabled for a given power state.  The files pp_dpm_sclk, pp_dpm_mclk,
 982 * pp_dpm_socclk, pp_dpm_fclk, pp_dpm_dcefclk and pp_dpm_pcie are used for
 983 * this.
 984 *
 985 * pp_dpm_socclk and pp_dpm_dcefclk interfaces are only available for
 986 * Vega10 and later ASICs.
 987 * pp_dpm_fclk interface is only available for Vega20 and later ASICs.
 988 *
 989 * Reading back the files will show you the available power levels within
 990 * the power state and the clock information for those levels. If deep sleep is
 991 * applied to a clock, the level will be denoted by a special level 'S:'
 992 * E.g., ::
 993 *
 994 *  S: 19Mhz *
 995 *  0: 615Mhz
 996 *  1: 800Mhz
 997 *  2: 888Mhz
 998 *  3: 1000Mhz
 999 *
1000 *
1001 * To manually adjust these states, first select manual using
1002 * power_dpm_force_performance_level.
1003 * Secondly, enter a new value for each level by inputing a string that
1004 * contains " echo xx xx xx > pp_dpm_sclk/mclk/pcie"
1005 * E.g.,
1006 *
1007 * .. code-block:: bash
1008 *
1009 *	echo "4 5 6" > pp_dpm_sclk
1010 *
1011 * will enable sclk levels 4, 5, and 6.
1012 *
1013 * NOTE: change to the dcefclk max dpm level is not supported now
1014 */
1015
1016static ssize_t amdgpu_get_pp_dpm_clock(struct device *dev,
1017		enum pp_clock_type type,
1018		char *buf)
1019{
1020	struct drm_device *ddev = dev_get_drvdata(dev);
1021	struct amdgpu_device *adev = drm_to_adev(ddev);
1022	int size = 0;
1023	int ret = 0;
1024
1025	if (amdgpu_in_reset(adev))
1026		return -EPERM;
1027	if (adev->in_suspend && !adev->in_runpm)
1028		return -EPERM;
1029
1030	ret = pm_runtime_get_sync(ddev->dev);
1031	if (ret < 0) {
1032		pm_runtime_put_autosuspend(ddev->dev);
1033		return ret;
1034	}
1035
1036	ret = amdgpu_dpm_emit_clock_levels(adev, type, buf, &size);
1037	if (ret == -ENOENT)
1038		size = amdgpu_dpm_print_clock_levels(adev, type, buf);
1039
1040	if (size == 0)
1041		size = sysfs_emit(buf, "\n");
1042
1043	pm_runtime_mark_last_busy(ddev->dev);
1044	pm_runtime_put_autosuspend(ddev->dev);
1045
1046	return size;
1047}
1048
1049/*
1050 * Worst case: 32 bits individually specified, in octal at 12 characters
1051 * per line (+1 for \n).
1052 */
1053#define AMDGPU_MASK_BUF_MAX	(32 * 13)
1054
1055static ssize_t amdgpu_read_mask(const char *buf, size_t count, uint32_t *mask)
1056{
1057	int ret;
1058	unsigned long level;
1059	char *sub_str = NULL;
1060	char *tmp;
1061	char buf_cpy[AMDGPU_MASK_BUF_MAX + 1];
1062	const char delimiter[3] = {' ', '\n', '\0'};
1063	size_t bytes;
1064
1065	*mask = 0;
1066
1067	bytes = min(count, sizeof(buf_cpy) - 1);
1068	memcpy(buf_cpy, buf, bytes);
1069	buf_cpy[bytes] = '\0';
1070	tmp = buf_cpy;
1071	while ((sub_str = strsep(&tmp, delimiter)) != NULL) {
1072		if (strlen(sub_str)) {
1073			ret = kstrtoul(sub_str, 0, &level);
1074			if (ret || level > 31)
1075				return -EINVAL;
1076			*mask |= 1 << level;
1077		} else
1078			break;
1079	}
1080
1081	return 0;
1082}
1083
1084static ssize_t amdgpu_set_pp_dpm_clock(struct device *dev,
1085		enum pp_clock_type type,
1086		const char *buf,
1087		size_t count)
1088{
1089	struct drm_device *ddev = dev_get_drvdata(dev);
1090	struct amdgpu_device *adev = drm_to_adev(ddev);
1091	int ret;
1092	uint32_t mask = 0;
1093
1094	if (amdgpu_in_reset(adev))
1095		return -EPERM;
1096	if (adev->in_suspend && !adev->in_runpm)
1097		return -EPERM;
1098
1099	ret = amdgpu_read_mask(buf, count, &mask);
1100	if (ret)
1101		return ret;
1102
1103	ret = pm_runtime_get_sync(ddev->dev);
1104	if (ret < 0) {
1105		pm_runtime_put_autosuspend(ddev->dev);
1106		return ret;
1107	}
1108
1109	ret = amdgpu_dpm_force_clock_level(adev, type, mask);
1110
1111	pm_runtime_mark_last_busy(ddev->dev);
1112	pm_runtime_put_autosuspend(ddev->dev);
1113
1114	if (ret)
1115		return -EINVAL;
1116
1117	return count;
1118}
1119
1120static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
1121		struct device_attribute *attr,
1122		char *buf)
1123{
1124	return amdgpu_get_pp_dpm_clock(dev, PP_SCLK, buf);
1125}
1126
1127static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
1128		struct device_attribute *attr,
1129		const char *buf,
1130		size_t count)
1131{
1132	return amdgpu_set_pp_dpm_clock(dev, PP_SCLK, buf, count);
1133}
1134
1135static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
1136		struct device_attribute *attr,
1137		char *buf)
1138{
1139	return amdgpu_get_pp_dpm_clock(dev, PP_MCLK, buf);
1140}
1141
1142static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
1143		struct device_attribute *attr,
1144		const char *buf,
1145		size_t count)
1146{
1147	return amdgpu_set_pp_dpm_clock(dev, PP_MCLK, buf, count);
1148}
1149
1150static ssize_t amdgpu_get_pp_dpm_socclk(struct device *dev,
1151		struct device_attribute *attr,
1152		char *buf)
1153{
1154	return amdgpu_get_pp_dpm_clock(dev, PP_SOCCLK, buf);
1155}
1156
1157static ssize_t amdgpu_set_pp_dpm_socclk(struct device *dev,
1158		struct device_attribute *attr,
1159		const char *buf,
1160		size_t count)
1161{
1162	return amdgpu_set_pp_dpm_clock(dev, PP_SOCCLK, buf, count);
1163}
1164
1165static ssize_t amdgpu_get_pp_dpm_fclk(struct device *dev,
1166		struct device_attribute *attr,
1167		char *buf)
1168{
1169	return amdgpu_get_pp_dpm_clock(dev, PP_FCLK, buf);
1170}
1171
1172static ssize_t amdgpu_set_pp_dpm_fclk(struct device *dev,
1173		struct device_attribute *attr,
1174		const char *buf,
1175		size_t count)
1176{
1177	return amdgpu_set_pp_dpm_clock(dev, PP_FCLK, buf, count);
1178}
1179
1180static ssize_t amdgpu_get_pp_dpm_vclk(struct device *dev,
1181		struct device_attribute *attr,
1182		char *buf)
1183{
1184	return amdgpu_get_pp_dpm_clock(dev, PP_VCLK, buf);
1185}
1186
1187static ssize_t amdgpu_set_pp_dpm_vclk(struct device *dev,
1188		struct device_attribute *attr,
1189		const char *buf,
1190		size_t count)
1191{
1192	return amdgpu_set_pp_dpm_clock(dev, PP_VCLK, buf, count);
1193}
1194
1195static ssize_t amdgpu_get_pp_dpm_vclk1(struct device *dev,
1196		struct device_attribute *attr,
1197		char *buf)
1198{
1199	return amdgpu_get_pp_dpm_clock(dev, PP_VCLK1, buf);
1200}
1201
1202static ssize_t amdgpu_set_pp_dpm_vclk1(struct device *dev,
1203		struct device_attribute *attr,
1204		const char *buf,
1205		size_t count)
1206{
1207	return amdgpu_set_pp_dpm_clock(dev, PP_VCLK1, buf, count);
1208}
1209
1210static ssize_t amdgpu_get_pp_dpm_dclk(struct device *dev,
1211		struct device_attribute *attr,
1212		char *buf)
1213{
1214	return amdgpu_get_pp_dpm_clock(dev, PP_DCLK, buf);
1215}
1216
1217static ssize_t amdgpu_set_pp_dpm_dclk(struct device *dev,
1218		struct device_attribute *attr,
1219		const char *buf,
1220		size_t count)
1221{
1222	return amdgpu_set_pp_dpm_clock(dev, PP_DCLK, buf, count);
1223}
1224
1225static ssize_t amdgpu_get_pp_dpm_dclk1(struct device *dev,
1226		struct device_attribute *attr,
1227		char *buf)
1228{
1229	return amdgpu_get_pp_dpm_clock(dev, PP_DCLK1, buf);
1230}
1231
1232static ssize_t amdgpu_set_pp_dpm_dclk1(struct device *dev,
1233		struct device_attribute *attr,
1234		const char *buf,
1235		size_t count)
1236{
1237	return amdgpu_set_pp_dpm_clock(dev, PP_DCLK1, buf, count);
1238}
1239
1240static ssize_t amdgpu_get_pp_dpm_dcefclk(struct device *dev,
1241		struct device_attribute *attr,
1242		char *buf)
1243{
1244	return amdgpu_get_pp_dpm_clock(dev, PP_DCEFCLK, buf);
1245}
1246
1247static ssize_t amdgpu_set_pp_dpm_dcefclk(struct device *dev,
1248		struct device_attribute *attr,
1249		const char *buf,
1250		size_t count)
1251{
1252	return amdgpu_set_pp_dpm_clock(dev, PP_DCEFCLK, buf, count);
1253}
1254
1255static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
1256		struct device_attribute *attr,
1257		char *buf)
1258{
1259	return amdgpu_get_pp_dpm_clock(dev, PP_PCIE, buf);
1260}
1261
1262static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
1263		struct device_attribute *attr,
1264		const char *buf,
1265		size_t count)
1266{
1267	return amdgpu_set_pp_dpm_clock(dev, PP_PCIE, buf, count);
1268}
1269
1270static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
1271		struct device_attribute *attr,
1272		char *buf)
1273{
1274	struct drm_device *ddev = dev_get_drvdata(dev);
1275	struct amdgpu_device *adev = drm_to_adev(ddev);
1276	uint32_t value = 0;
1277	int ret;
1278
1279	if (amdgpu_in_reset(adev))
1280		return -EPERM;
1281	if (adev->in_suspend && !adev->in_runpm)
1282		return -EPERM;
1283
1284	ret = pm_runtime_get_sync(ddev->dev);
1285	if (ret < 0) {
1286		pm_runtime_put_autosuspend(ddev->dev);
1287		return ret;
1288	}
1289
1290	value = amdgpu_dpm_get_sclk_od(adev);
1291
1292	pm_runtime_mark_last_busy(ddev->dev);
1293	pm_runtime_put_autosuspend(ddev->dev);
1294
1295	return sysfs_emit(buf, "%d\n", value);
1296}
1297
1298static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
1299		struct device_attribute *attr,
1300		const char *buf,
1301		size_t count)
1302{
1303	struct drm_device *ddev = dev_get_drvdata(dev);
1304	struct amdgpu_device *adev = drm_to_adev(ddev);
1305	int ret;
1306	long int value;
1307
1308	if (amdgpu_in_reset(adev))
1309		return -EPERM;
1310	if (adev->in_suspend && !adev->in_runpm)
1311		return -EPERM;
1312
1313	ret = kstrtol(buf, 0, &value);
1314
1315	if (ret)
1316		return -EINVAL;
1317
1318	ret = pm_runtime_get_sync(ddev->dev);
1319	if (ret < 0) {
1320		pm_runtime_put_autosuspend(ddev->dev);
1321		return ret;
1322	}
1323
1324	amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
1325
1326	pm_runtime_mark_last_busy(ddev->dev);
1327	pm_runtime_put_autosuspend(ddev->dev);
1328
1329	return count;
1330}
1331
1332static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
1333		struct device_attribute *attr,
1334		char *buf)
1335{
1336	struct drm_device *ddev = dev_get_drvdata(dev);
1337	struct amdgpu_device *adev = drm_to_adev(ddev);
1338	uint32_t value = 0;
1339	int ret;
1340
1341	if (amdgpu_in_reset(adev))
1342		return -EPERM;
1343	if (adev->in_suspend && !adev->in_runpm)
1344		return -EPERM;
1345
1346	ret = pm_runtime_get_sync(ddev->dev);
1347	if (ret < 0) {
1348		pm_runtime_put_autosuspend(ddev->dev);
1349		return ret;
1350	}
1351
1352	value = amdgpu_dpm_get_mclk_od(adev);
1353
1354	pm_runtime_mark_last_busy(ddev->dev);
1355	pm_runtime_put_autosuspend(ddev->dev);
1356
1357	return sysfs_emit(buf, "%d\n", value);
1358}
1359
1360static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
1361		struct device_attribute *attr,
1362		const char *buf,
1363		size_t count)
1364{
1365	struct drm_device *ddev = dev_get_drvdata(dev);
1366	struct amdgpu_device *adev = drm_to_adev(ddev);
1367	int ret;
1368	long int value;
1369
1370	if (amdgpu_in_reset(adev))
1371		return -EPERM;
1372	if (adev->in_suspend && !adev->in_runpm)
1373		return -EPERM;
1374
1375	ret = kstrtol(buf, 0, &value);
1376
1377	if (ret)
1378		return -EINVAL;
1379
1380	ret = pm_runtime_get_sync(ddev->dev);
1381	if (ret < 0) {
1382		pm_runtime_put_autosuspend(ddev->dev);
1383		return ret;
1384	}
1385
1386	amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
1387
1388	pm_runtime_mark_last_busy(ddev->dev);
1389	pm_runtime_put_autosuspend(ddev->dev);
1390
1391	return count;
1392}
1393
1394/**
1395 * DOC: pp_power_profile_mode
1396 *
1397 * The amdgpu driver provides a sysfs API for adjusting the heuristics
1398 * related to switching between power levels in a power state.  The file
1399 * pp_power_profile_mode is used for this.
1400 *
1401 * Reading this file outputs a list of all of the predefined power profiles
1402 * and the relevant heuristics settings for that profile.
1403 *
1404 * To select a profile or create a custom profile, first select manual using
1405 * power_dpm_force_performance_level.  Writing the number of a predefined
1406 * profile to pp_power_profile_mode will enable those heuristics.  To
1407 * create a custom set of heuristics, write a string of numbers to the file
1408 * starting with the number of the custom profile along with a setting
1409 * for each heuristic parameter.  Due to differences across asic families
1410 * the heuristic parameters vary from family to family.
 
 
 
 
1411 *
1412 */
1413
1414static ssize_t amdgpu_get_pp_power_profile_mode(struct device *dev,
1415		struct device_attribute *attr,
1416		char *buf)
1417{
1418	struct drm_device *ddev = dev_get_drvdata(dev);
1419	struct amdgpu_device *adev = drm_to_adev(ddev);
1420	ssize_t size;
1421	int ret;
1422
1423	if (amdgpu_in_reset(adev))
1424		return -EPERM;
1425	if (adev->in_suspend && !adev->in_runpm)
1426		return -EPERM;
1427
1428	ret = pm_runtime_get_sync(ddev->dev);
1429	if (ret < 0) {
1430		pm_runtime_put_autosuspend(ddev->dev);
1431		return ret;
1432	}
1433
1434	size = amdgpu_dpm_get_power_profile_mode(adev, buf);
1435	if (size <= 0)
1436		size = sysfs_emit(buf, "\n");
1437
1438	pm_runtime_mark_last_busy(ddev->dev);
1439	pm_runtime_put_autosuspend(ddev->dev);
1440
1441	return size;
1442}
1443
1444
1445static ssize_t amdgpu_set_pp_power_profile_mode(struct device *dev,
1446		struct device_attribute *attr,
1447		const char *buf,
1448		size_t count)
1449{
1450	int ret;
1451	struct drm_device *ddev = dev_get_drvdata(dev);
1452	struct amdgpu_device *adev = drm_to_adev(ddev);
1453	uint32_t parameter_size = 0;
1454	long parameter[64];
1455	char *sub_str, buf_cpy[128];
1456	char *tmp_str;
1457	uint32_t i = 0;
1458	char tmp[2];
1459	long int profile_mode = 0;
1460	const char delimiter[3] = {' ', '\n', '\0'};
1461
1462	if (amdgpu_in_reset(adev))
1463		return -EPERM;
1464	if (adev->in_suspend && !adev->in_runpm)
1465		return -EPERM;
1466
1467	tmp[0] = *(buf);
1468	tmp[1] = '\0';
1469	ret = kstrtol(tmp, 0, &profile_mode);
1470	if (ret)
1471		return -EINVAL;
1472
1473	if (profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {
1474		if (count < 2 || count > 127)
1475			return -EINVAL;
1476		while (isspace(*++buf))
1477			i++;
1478		memcpy(buf_cpy, buf, count-i);
1479		tmp_str = buf_cpy;
1480		while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
1481			if (strlen(sub_str) == 0)
1482				continue;
1483			ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
1484			if (ret)
1485				return -EINVAL;
1486			parameter_size++;
1487			while (isspace(*tmp_str))
1488				tmp_str++;
1489		}
1490	}
1491	parameter[parameter_size] = profile_mode;
1492
1493	ret = pm_runtime_get_sync(ddev->dev);
1494	if (ret < 0) {
1495		pm_runtime_put_autosuspend(ddev->dev);
1496		return ret;
1497	}
1498
1499	ret = amdgpu_dpm_set_power_profile_mode(adev, parameter, parameter_size);
1500
1501	pm_runtime_mark_last_busy(ddev->dev);
1502	pm_runtime_put_autosuspend(ddev->dev);
1503
1504	if (!ret)
1505		return count;
1506
1507	return -EINVAL;
1508}
1509
1510static int amdgpu_hwmon_get_sensor_generic(struct amdgpu_device *adev,
1511					   enum amd_pp_sensors sensor,
1512					   void *query)
1513{
1514	int r, size = sizeof(uint32_t);
1515
1516	if (amdgpu_in_reset(adev))
1517		return -EPERM;
1518	if (adev->in_suspend && !adev->in_runpm)
1519		return -EPERM;
1520
1521	r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
1522	if (r < 0) {
1523		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1524		return r;
1525	}
1526
1527	/* get the sensor value */
1528	r = amdgpu_dpm_read_sensor(adev, sensor, query, &size);
1529
1530	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
1531	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1532
1533	return r;
1534}
1535
1536/**
1537 * DOC: gpu_busy_percent
1538 *
1539 * The amdgpu driver provides a sysfs API for reading how busy the GPU
1540 * is as a percentage.  The file gpu_busy_percent is used for this.
1541 * The SMU firmware computes a percentage of load based on the
1542 * aggregate activity level in the IP cores.
1543 */
1544static ssize_t amdgpu_get_gpu_busy_percent(struct device *dev,
1545					   struct device_attribute *attr,
1546					   char *buf)
1547{
1548	struct drm_device *ddev = dev_get_drvdata(dev);
1549	struct amdgpu_device *adev = drm_to_adev(ddev);
1550	unsigned int value;
1551	int r;
1552
1553	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_LOAD, &value);
1554	if (r)
1555		return r;
1556
1557	return sysfs_emit(buf, "%d\n", value);
1558}
1559
1560/**
1561 * DOC: mem_busy_percent
1562 *
1563 * The amdgpu driver provides a sysfs API for reading how busy the VRAM
1564 * is as a percentage.  The file mem_busy_percent is used for this.
1565 * The SMU firmware computes a percentage of load based on the
1566 * aggregate activity level in the IP cores.
1567 */
1568static ssize_t amdgpu_get_mem_busy_percent(struct device *dev,
1569					   struct device_attribute *attr,
1570					   char *buf)
1571{
1572	struct drm_device *ddev = dev_get_drvdata(dev);
1573	struct amdgpu_device *adev = drm_to_adev(ddev);
1574	unsigned int value;
1575	int r;
1576
1577	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MEM_LOAD, &value);
1578	if (r)
1579		return r;
1580
1581	return sysfs_emit(buf, "%d\n", value);
1582}
1583
1584/**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1585 * DOC: pcie_bw
1586 *
1587 * The amdgpu driver provides a sysfs API for estimating how much data
1588 * has been received and sent by the GPU in the last second through PCIe.
1589 * The file pcie_bw is used for this.
1590 * The Perf counters count the number of received and sent messages and return
1591 * those values, as well as the maximum payload size of a PCIe packet (mps).
1592 * Note that it is not possible to easily and quickly obtain the size of each
1593 * packet transmitted, so we output the max payload size (mps) to allow for
1594 * quick estimation of the PCIe bandwidth usage
1595 */
1596static ssize_t amdgpu_get_pcie_bw(struct device *dev,
1597		struct device_attribute *attr,
1598		char *buf)
1599{
1600	struct drm_device *ddev = dev_get_drvdata(dev);
1601	struct amdgpu_device *adev = drm_to_adev(ddev);
1602	uint64_t count0 = 0, count1 = 0;
1603	int ret;
1604
1605	if (amdgpu_in_reset(adev))
1606		return -EPERM;
1607	if (adev->in_suspend && !adev->in_runpm)
1608		return -EPERM;
1609
1610	if (adev->flags & AMD_IS_APU)
1611		return -ENODATA;
1612
1613	if (!adev->asic_funcs->get_pcie_usage)
1614		return -ENODATA;
1615
1616	ret = pm_runtime_get_sync(ddev->dev);
1617	if (ret < 0) {
1618		pm_runtime_put_autosuspend(ddev->dev);
1619		return ret;
1620	}
1621
1622	amdgpu_asic_get_pcie_usage(adev, &count0, &count1);
1623
1624	pm_runtime_mark_last_busy(ddev->dev);
1625	pm_runtime_put_autosuspend(ddev->dev);
1626
1627	return sysfs_emit(buf, "%llu %llu %i\n",
1628			  count0, count1, pcie_get_mps(adev->pdev));
1629}
1630
1631/**
1632 * DOC: unique_id
1633 *
1634 * The amdgpu driver provides a sysfs API for providing a unique ID for the GPU
1635 * The file unique_id is used for this.
1636 * This will provide a Unique ID that will persist from machine to machine
1637 *
1638 * NOTE: This will only work for GFX9 and newer. This file will be absent
1639 * on unsupported ASICs (GFX8 and older)
1640 */
1641static ssize_t amdgpu_get_unique_id(struct device *dev,
1642		struct device_attribute *attr,
1643		char *buf)
1644{
1645	struct drm_device *ddev = dev_get_drvdata(dev);
1646	struct amdgpu_device *adev = drm_to_adev(ddev);
1647
1648	if (amdgpu_in_reset(adev))
1649		return -EPERM;
1650	if (adev->in_suspend && !adev->in_runpm)
1651		return -EPERM;
1652
1653	if (adev->unique_id)
1654		return sysfs_emit(buf, "%016llx\n", adev->unique_id);
1655
1656	return 0;
1657}
1658
1659/**
1660 * DOC: thermal_throttling_logging
1661 *
1662 * Thermal throttling pulls down the clock frequency and thus the performance.
1663 * It's an useful mechanism to protect the chip from overheating. Since it
1664 * impacts performance, the user controls whether it is enabled and if so,
1665 * the log frequency.
1666 *
1667 * Reading back the file shows you the status(enabled or disabled) and
1668 * the interval(in seconds) between each thermal logging.
1669 *
1670 * Writing an integer to the file, sets a new logging interval, in seconds.
1671 * The value should be between 1 and 3600. If the value is less than 1,
1672 * thermal logging is disabled. Values greater than 3600 are ignored.
1673 */
1674static ssize_t amdgpu_get_thermal_throttling_logging(struct device *dev,
1675						     struct device_attribute *attr,
1676						     char *buf)
1677{
1678	struct drm_device *ddev = dev_get_drvdata(dev);
1679	struct amdgpu_device *adev = drm_to_adev(ddev);
1680
1681	return sysfs_emit(buf, "%s: thermal throttling logging %s, with interval %d seconds\n",
1682			  adev_to_drm(adev)->unique,
1683			  atomic_read(&adev->throttling_logging_enabled) ? "enabled" : "disabled",
1684			  adev->throttling_logging_rs.interval / HZ + 1);
1685}
1686
1687static ssize_t amdgpu_set_thermal_throttling_logging(struct device *dev,
1688						     struct device_attribute *attr,
1689						     const char *buf,
1690						     size_t count)
1691{
1692	struct drm_device *ddev = dev_get_drvdata(dev);
1693	struct amdgpu_device *adev = drm_to_adev(ddev);
1694	long throttling_logging_interval;
1695	unsigned long flags;
1696	int ret = 0;
1697
1698	ret = kstrtol(buf, 0, &throttling_logging_interval);
1699	if (ret)
1700		return ret;
1701
1702	if (throttling_logging_interval > 3600)
1703		return -EINVAL;
1704
1705	if (throttling_logging_interval > 0) {
1706		raw_spin_lock_irqsave(&adev->throttling_logging_rs.lock, flags);
1707		/*
1708		 * Reset the ratelimit timer internals.
1709		 * This can effectively restart the timer.
1710		 */
1711		adev->throttling_logging_rs.interval =
1712			(throttling_logging_interval - 1) * HZ;
1713		adev->throttling_logging_rs.begin = 0;
1714		adev->throttling_logging_rs.printed = 0;
1715		adev->throttling_logging_rs.missed = 0;
1716		raw_spin_unlock_irqrestore(&adev->throttling_logging_rs.lock, flags);
1717
1718		atomic_set(&adev->throttling_logging_enabled, 1);
1719	} else {
1720		atomic_set(&adev->throttling_logging_enabled, 0);
1721	}
1722
1723	return count;
1724}
1725
1726/**
1727 * DOC: apu_thermal_cap
1728 *
1729 * The amdgpu driver provides a sysfs API for retrieving/updating thermal
1730 * limit temperature in millidegrees Celsius
1731 *
1732 * Reading back the file shows you core limit value
1733 *
1734 * Writing an integer to the file, sets a new thermal limit. The value
1735 * should be between 0 and 100. If the value is less than 0 or greater
1736 * than 100, then the write request will be ignored.
1737 */
1738static ssize_t amdgpu_get_apu_thermal_cap(struct device *dev,
1739					 struct device_attribute *attr,
1740					 char *buf)
1741{
1742	int ret, size;
1743	u32 limit;
1744	struct drm_device *ddev = dev_get_drvdata(dev);
1745	struct amdgpu_device *adev = drm_to_adev(ddev);
1746
1747	ret = pm_runtime_get_sync(ddev->dev);
1748	if (ret < 0) {
1749		pm_runtime_put_autosuspend(ddev->dev);
1750		return ret;
1751	}
1752
1753	ret = amdgpu_dpm_get_apu_thermal_limit(adev, &limit);
1754	if (!ret)
1755		size = sysfs_emit(buf, "%u\n", limit);
1756	else
1757		size = sysfs_emit(buf, "failed to get thermal limit\n");
1758
1759	pm_runtime_mark_last_busy(ddev->dev);
1760	pm_runtime_put_autosuspend(ddev->dev);
1761
1762	return size;
1763}
1764
1765static ssize_t amdgpu_set_apu_thermal_cap(struct device *dev,
1766					 struct device_attribute *attr,
1767					 const char *buf,
1768					 size_t count)
1769{
1770	int ret;
1771	u32 value;
1772	struct drm_device *ddev = dev_get_drvdata(dev);
1773	struct amdgpu_device *adev = drm_to_adev(ddev);
1774
1775	ret = kstrtou32(buf, 10, &value);
1776	if (ret)
1777		return ret;
1778
1779	if (value > 100) {
1780		dev_err(dev, "Invalid argument !\n");
1781		return -EINVAL;
1782	}
1783
1784	ret = pm_runtime_get_sync(ddev->dev);
1785	if (ret < 0) {
1786		pm_runtime_put_autosuspend(ddev->dev);
1787		return ret;
1788	}
1789
1790	ret = amdgpu_dpm_set_apu_thermal_limit(adev, value);
1791	if (ret) {
 
 
1792		dev_err(dev, "failed to update thermal limit\n");
1793		return ret;
1794	}
1795
1796	pm_runtime_mark_last_busy(ddev->dev);
1797	pm_runtime_put_autosuspend(ddev->dev);
1798
1799	return count;
1800}
1801
1802static int amdgpu_pm_metrics_attr_update(struct amdgpu_device *adev,
1803					 struct amdgpu_device_attr *attr,
1804					 uint32_t mask,
1805					 enum amdgpu_device_attr_states *states)
1806{
1807	if (amdgpu_dpm_get_pm_metrics(adev, NULL, 0) == -EOPNOTSUPP)
1808		*states = ATTR_STATE_UNSUPPORTED;
1809
1810	return 0;
1811}
1812
1813static ssize_t amdgpu_get_pm_metrics(struct device *dev,
1814				     struct device_attribute *attr, char *buf)
1815{
1816	struct drm_device *ddev = dev_get_drvdata(dev);
1817	struct amdgpu_device *adev = drm_to_adev(ddev);
1818	ssize_t size = 0;
1819	int ret;
1820
1821	if (amdgpu_in_reset(adev))
1822		return -EPERM;
1823	if (adev->in_suspend && !adev->in_runpm)
1824		return -EPERM;
1825
1826	ret = pm_runtime_get_sync(ddev->dev);
1827	if (ret < 0) {
1828		pm_runtime_put_autosuspend(ddev->dev);
1829		return ret;
1830	}
1831
1832	size = amdgpu_dpm_get_pm_metrics(adev, buf, PAGE_SIZE);
1833
1834	pm_runtime_mark_last_busy(ddev->dev);
1835	pm_runtime_put_autosuspend(ddev->dev);
1836
1837	return size;
1838}
1839
1840/**
1841 * DOC: gpu_metrics
1842 *
1843 * The amdgpu driver provides a sysfs API for retrieving current gpu
1844 * metrics data. The file gpu_metrics is used for this. Reading the
1845 * file will dump all the current gpu metrics data.
1846 *
1847 * These data include temperature, frequency, engines utilization,
1848 * power consume, throttler status, fan speed and cpu core statistics(
1849 * available for APU only). That's it will give a snapshot of all sensors
1850 * at the same time.
1851 */
1852static ssize_t amdgpu_get_gpu_metrics(struct device *dev,
1853				      struct device_attribute *attr,
1854				      char *buf)
1855{
1856	struct drm_device *ddev = dev_get_drvdata(dev);
1857	struct amdgpu_device *adev = drm_to_adev(ddev);
1858	void *gpu_metrics;
1859	ssize_t size = 0;
1860	int ret;
1861
1862	if (amdgpu_in_reset(adev))
1863		return -EPERM;
1864	if (adev->in_suspend && !adev->in_runpm)
1865		return -EPERM;
1866
1867	ret = pm_runtime_get_sync(ddev->dev);
1868	if (ret < 0) {
1869		pm_runtime_put_autosuspend(ddev->dev);
1870		return ret;
1871	}
1872
1873	size = amdgpu_dpm_get_gpu_metrics(adev, &gpu_metrics);
1874	if (size <= 0)
1875		goto out;
1876
1877	if (size >= PAGE_SIZE)
1878		size = PAGE_SIZE - 1;
1879
1880	memcpy(buf, gpu_metrics, size);
1881
1882out:
1883	pm_runtime_mark_last_busy(ddev->dev);
1884	pm_runtime_put_autosuspend(ddev->dev);
1885
1886	return size;
1887}
1888
1889static int amdgpu_show_powershift_percent(struct device *dev,
1890					char *buf, enum amd_pp_sensors sensor)
1891{
1892	struct drm_device *ddev = dev_get_drvdata(dev);
1893	struct amdgpu_device *adev = drm_to_adev(ddev);
1894	uint32_t ss_power;
1895	int r = 0, i;
1896
1897	r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&ss_power);
1898	if (r == -EOPNOTSUPP) {
1899		/* sensor not available on dGPU, try to read from APU */
1900		adev = NULL;
1901		mutex_lock(&mgpu_info.mutex);
1902		for (i = 0; i < mgpu_info.num_gpu; i++) {
1903			if (mgpu_info.gpu_ins[i].adev->flags & AMD_IS_APU) {
1904				adev = mgpu_info.gpu_ins[i].adev;
1905				break;
1906			}
1907		}
1908		mutex_unlock(&mgpu_info.mutex);
1909		if (adev)
1910			r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&ss_power);
1911	}
1912
1913	if (r)
1914		return r;
1915
1916	return sysfs_emit(buf, "%u%%\n", ss_power);
1917}
1918
1919/**
1920 * DOC: smartshift_apu_power
1921 *
1922 * The amdgpu driver provides a sysfs API for reporting APU power
1923 * shift in percentage if platform supports smartshift. Value 0 means that
1924 * there is no powershift and values between [1-100] means that the power
1925 * is shifted to APU, the percentage of boost is with respect to APU power
1926 * limit on the platform.
1927 */
1928
1929static ssize_t amdgpu_get_smartshift_apu_power(struct device *dev, struct device_attribute *attr,
1930					       char *buf)
1931{
1932	return amdgpu_show_powershift_percent(dev, buf, AMDGPU_PP_SENSOR_SS_APU_SHARE);
1933}
1934
1935/**
1936 * DOC: smartshift_dgpu_power
1937 *
1938 * The amdgpu driver provides a sysfs API for reporting dGPU power
1939 * shift in percentage if platform supports smartshift. Value 0 means that
1940 * there is no powershift and values between [1-100] means that the power is
1941 * shifted to dGPU, the percentage of boost is with respect to dGPU power
1942 * limit on the platform.
1943 */
1944
1945static ssize_t amdgpu_get_smartshift_dgpu_power(struct device *dev, struct device_attribute *attr,
1946						char *buf)
1947{
1948	return amdgpu_show_powershift_percent(dev, buf, AMDGPU_PP_SENSOR_SS_DGPU_SHARE);
1949}
1950
1951/**
1952 * DOC: smartshift_bias
1953 *
1954 * The amdgpu driver provides a sysfs API for reporting the
1955 * smartshift(SS2.0) bias level. The value ranges from -100 to 100
1956 * and the default is 0. -100 sets maximum preference to APU
1957 * and 100 sets max perference to dGPU.
1958 */
1959
1960static ssize_t amdgpu_get_smartshift_bias(struct device *dev,
1961					  struct device_attribute *attr,
1962					  char *buf)
1963{
1964	int r = 0;
1965
1966	r = sysfs_emit(buf, "%d\n", amdgpu_smartshift_bias);
1967
1968	return r;
1969}
1970
1971static ssize_t amdgpu_set_smartshift_bias(struct device *dev,
1972					  struct device_attribute *attr,
1973					  const char *buf, size_t count)
1974{
1975	struct drm_device *ddev = dev_get_drvdata(dev);
1976	struct amdgpu_device *adev = drm_to_adev(ddev);
1977	int r = 0;
1978	int bias = 0;
1979
1980	if (amdgpu_in_reset(adev))
1981		return -EPERM;
1982	if (adev->in_suspend && !adev->in_runpm)
1983		return -EPERM;
1984
1985	r = pm_runtime_get_sync(ddev->dev);
1986	if (r < 0) {
1987		pm_runtime_put_autosuspend(ddev->dev);
1988		return r;
1989	}
1990
1991	r = kstrtoint(buf, 10, &bias);
1992	if (r)
1993		goto out;
1994
1995	if (bias > AMDGPU_SMARTSHIFT_MAX_BIAS)
1996		bias = AMDGPU_SMARTSHIFT_MAX_BIAS;
1997	else if (bias < AMDGPU_SMARTSHIFT_MIN_BIAS)
1998		bias = AMDGPU_SMARTSHIFT_MIN_BIAS;
1999
2000	amdgpu_smartshift_bias = bias;
2001	r = count;
2002
2003	/* TODO: update bias level with SMU message */
2004
2005out:
2006	pm_runtime_mark_last_busy(ddev->dev);
2007	pm_runtime_put_autosuspend(ddev->dev);
2008	return r;
2009}
2010
2011static int ss_power_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2012				uint32_t mask, enum amdgpu_device_attr_states *states)
2013{
2014	if (!amdgpu_device_supports_smart_shift(adev_to_drm(adev)))
2015		*states = ATTR_STATE_UNSUPPORTED;
2016
2017	return 0;
2018}
2019
2020static int ss_bias_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2021			       uint32_t mask, enum amdgpu_device_attr_states *states)
2022{
2023	uint32_t ss_power;
2024
2025	if (!amdgpu_device_supports_smart_shift(adev_to_drm(adev)))
2026		*states = ATTR_STATE_UNSUPPORTED;
2027	else if (amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_SS_APU_SHARE,
2028		 (void *)&ss_power))
2029		*states = ATTR_STATE_UNSUPPORTED;
2030	else if (amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_SS_DGPU_SHARE,
2031		 (void *)&ss_power))
2032		*states = ATTR_STATE_UNSUPPORTED;
2033
2034	return 0;
2035}
2036
2037static int pp_od_clk_voltage_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2038					 uint32_t mask, enum amdgpu_device_attr_states *states)
2039{
2040	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2041
2042	*states = ATTR_STATE_SUPPORTED;
2043
2044	if (!amdgpu_dpm_is_overdrive_supported(adev)) {
2045		*states = ATTR_STATE_UNSUPPORTED;
2046		return 0;
2047	}
2048
2049	/* Enable pp_od_clk_voltage node for gc 9.4.3 SRIOV/BM support */
2050	if (gc_ver == IP_VERSION(9, 4, 3)) {
 
2051		if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
2052			*states = ATTR_STATE_UNSUPPORTED;
2053		return 0;
2054	}
2055
2056	if (!(attr->flags & mask))
2057		*states = ATTR_STATE_UNSUPPORTED;
2058
2059	return 0;
2060}
2061
2062static int pp_dpm_dcefclk_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2063				      uint32_t mask, enum amdgpu_device_attr_states *states)
2064{
2065	struct device_attribute *dev_attr = &attr->dev_attr;
2066	uint32_t gc_ver;
2067
2068	*states = ATTR_STATE_SUPPORTED;
2069
2070	if (!(attr->flags & mask)) {
2071		*states = ATTR_STATE_UNSUPPORTED;
2072		return 0;
2073	}
2074
2075	gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2076	/* dcefclk node is not available on gfx 11.0.3 sriov */
2077	if ((gc_ver == IP_VERSION(11, 0, 3) && amdgpu_sriov_is_pp_one_vf(adev)) ||
2078	    gc_ver < IP_VERSION(9, 0, 0) ||
2079	    !amdgpu_device_has_display_hardware(adev))
2080		*states = ATTR_STATE_UNSUPPORTED;
2081
2082	/* SMU MP1 does not support dcefclk level setting,
2083	 * setting should not be allowed from VF if not in one VF mode.
2084	 */
2085	if (gc_ver >= IP_VERSION(10, 0, 0) ||
2086	    (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))) {
2087		dev_attr->attr.mode &= ~S_IWUGO;
2088		dev_attr->store = NULL;
2089	}
2090
2091	return 0;
2092}
2093
2094/* Following items will be read out to indicate current plpd policy:
2095 *  - -1: none
2096 *  - 0: disallow
2097 *  - 1: default
2098 *  - 2: optimized
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2099 */
2100static ssize_t amdgpu_get_xgmi_plpd_policy(struct device *dev,
2101					   struct device_attribute *attr,
2102					   char *buf)
2103{
2104	struct drm_device *ddev = dev_get_drvdata(dev);
2105	struct amdgpu_device *adev = drm_to_adev(ddev);
2106	char *mode_desc = "none";
2107	int mode;
 
 
2108
2109	if (amdgpu_in_reset(adev))
2110		return -EPERM;
2111	if (adev->in_suspend && !adev->in_runpm)
2112		return -EPERM;
2113
2114	mode = amdgpu_dpm_get_xgmi_plpd_mode(adev, &mode_desc);
2115
2116	return sysfs_emit(buf, "%d: %s\n", mode, mode_desc);
2117}
2118
2119/* Following argument value is expected from user to change plpd policy
2120 *  - arg 0: disallow plpd
2121 *  - arg 1: default policy
2122 *  - arg 2: optimized policy
2123 */
2124static ssize_t amdgpu_set_xgmi_plpd_policy(struct device *dev,
2125					   struct device_attribute *attr,
2126					   const char *buf, size_t count)
2127{
2128	struct drm_device *ddev = dev_get_drvdata(dev);
2129	struct amdgpu_device *adev = drm_to_adev(ddev);
2130	int mode, ret;
 
 
 
 
 
2131
2132	if (amdgpu_in_reset(adev))
2133		return -EPERM;
2134	if (adev->in_suspend && !adev->in_runpm)
2135		return -EPERM;
2136
2137	ret = kstrtos32(buf, 0, &mode);
2138	if (ret)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2139		return -EINVAL;
2140
2141	ret = pm_runtime_get_sync(ddev->dev);
2142	if (ret < 0) {
2143		pm_runtime_put_autosuspend(ddev->dev);
 
 
2144		return ret;
2145	}
2146
2147	ret = amdgpu_dpm_set_xgmi_plpd_mode(adev, mode);
2148
2149	pm_runtime_mark_last_busy(ddev->dev);
2150	pm_runtime_put_autosuspend(ddev->dev);
2151
2152	if (ret)
2153		return ret;
2154
2155	return count;
2156}
2157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2158static struct amdgpu_device_attr amdgpu_device_attrs[] = {
2159	AMDGPU_DEVICE_ATTR_RW(power_dpm_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2160	AMDGPU_DEVICE_ATTR_RW(power_dpm_force_performance_level,	ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2161	AMDGPU_DEVICE_ATTR_RO(pp_num_states,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2162	AMDGPU_DEVICE_ATTR_RO(pp_cur_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2163	AMDGPU_DEVICE_ATTR_RW(pp_force_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2164	AMDGPU_DEVICE_ATTR_RW(pp_table,					ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2165	AMDGPU_DEVICE_ATTR_RW(pp_dpm_sclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2166	AMDGPU_DEVICE_ATTR_RW(pp_dpm_mclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2167	AMDGPU_DEVICE_ATTR_RW(pp_dpm_socclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2168	AMDGPU_DEVICE_ATTR_RW(pp_dpm_fclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2169	AMDGPU_DEVICE_ATTR_RW(pp_dpm_vclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2170	AMDGPU_DEVICE_ATTR_RW(pp_dpm_vclk1,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2171	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2172	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dclk1,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
 
 
 
 
 
 
 
 
2173	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dcefclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2174			      .attr_update = pp_dpm_dcefclk_attr_update),
2175	AMDGPU_DEVICE_ATTR_RW(pp_dpm_pcie,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
 
2176	AMDGPU_DEVICE_ATTR_RW(pp_sclk_od,				ATTR_FLAG_BASIC),
2177	AMDGPU_DEVICE_ATTR_RW(pp_mclk_od,				ATTR_FLAG_BASIC),
2178	AMDGPU_DEVICE_ATTR_RW(pp_power_profile_mode,			ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2179	AMDGPU_DEVICE_ATTR_RW(pp_od_clk_voltage,			ATTR_FLAG_BASIC,
2180			      .attr_update = pp_od_clk_voltage_attr_update),
2181	AMDGPU_DEVICE_ATTR_RO(gpu_busy_percent,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2182	AMDGPU_DEVICE_ATTR_RO(mem_busy_percent,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
 
2183	AMDGPU_DEVICE_ATTR_RO(pcie_bw,					ATTR_FLAG_BASIC),
2184	AMDGPU_DEVICE_ATTR_RW(pp_features,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2185	AMDGPU_DEVICE_ATTR_RO(unique_id,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2186	AMDGPU_DEVICE_ATTR_RW(thermal_throttling_logging,		ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2187	AMDGPU_DEVICE_ATTR_RW(apu_thermal_cap,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2188	AMDGPU_DEVICE_ATTR_RO(gpu_metrics,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2189	AMDGPU_DEVICE_ATTR_RO(smartshift_apu_power,			ATTR_FLAG_BASIC,
2190			      .attr_update = ss_power_attr_update),
2191	AMDGPU_DEVICE_ATTR_RO(smartshift_dgpu_power,			ATTR_FLAG_BASIC,
2192			      .attr_update = ss_power_attr_update),
2193	AMDGPU_DEVICE_ATTR_RW(smartshift_bias,				ATTR_FLAG_BASIC,
2194			      .attr_update = ss_bias_attr_update),
2195	AMDGPU_DEVICE_ATTR_RW(xgmi_plpd_policy,				ATTR_FLAG_BASIC),
2196	AMDGPU_DEVICE_ATTR_RO(pm_metrics,				ATTR_FLAG_BASIC,
2197			      .attr_update = amdgpu_pm_metrics_attr_update),
2198};
2199
2200static int default_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2201			       uint32_t mask, enum amdgpu_device_attr_states *states)
2202{
2203	struct device_attribute *dev_attr = &attr->dev_attr;
2204	uint32_t mp1_ver = amdgpu_ip_version(adev, MP1_HWIP, 0);
2205	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2206	const char *attr_name = dev_attr->attr.name;
2207
2208	if (!(attr->flags & mask)) {
2209		*states = ATTR_STATE_UNSUPPORTED;
2210		return 0;
2211	}
2212
2213#define DEVICE_ATTR_IS(_name)	(!strcmp(attr_name, #_name))
2214
2215	if (DEVICE_ATTR_IS(pp_dpm_socclk)) {
2216		if (gc_ver < IP_VERSION(9, 0, 0))
2217			*states = ATTR_STATE_UNSUPPORTED;
2218	} else if (DEVICE_ATTR_IS(pp_dpm_fclk)) {
2219		if (mp1_ver < IP_VERSION(10, 0, 0))
2220			*states = ATTR_STATE_UNSUPPORTED;
2221	} else if (DEVICE_ATTR_IS(mem_busy_percent)) {
2222		if ((adev->flags & AMD_IS_APU &&
2223		     gc_ver != IP_VERSION(9, 4, 3)) ||
2224		    gc_ver == IP_VERSION(9, 0, 1))
2225			*states = ATTR_STATE_UNSUPPORTED;
 
 
 
 
 
 
 
 
 
2226	} else if (DEVICE_ATTR_IS(pcie_bw)) {
2227		/* PCIe Perf counters won't work on APU nodes */
2228		if (adev->flags & AMD_IS_APU ||
2229		    !adev->asic_funcs->get_pcie_usage)
2230			*states = ATTR_STATE_UNSUPPORTED;
2231	} else if (DEVICE_ATTR_IS(unique_id)) {
2232		switch (gc_ver) {
2233		case IP_VERSION(9, 0, 1):
2234		case IP_VERSION(9, 4, 0):
2235		case IP_VERSION(9, 4, 1):
2236		case IP_VERSION(9, 4, 2):
2237		case IP_VERSION(9, 4, 3):
 
2238		case IP_VERSION(10, 3, 0):
2239		case IP_VERSION(11, 0, 0):
2240		case IP_VERSION(11, 0, 1):
2241		case IP_VERSION(11, 0, 2):
2242		case IP_VERSION(11, 0, 3):
2243			*states = ATTR_STATE_SUPPORTED;
2244			break;
2245		default:
2246			*states = ATTR_STATE_UNSUPPORTED;
2247		}
2248	} else if (DEVICE_ATTR_IS(pp_features)) {
2249		if ((adev->flags & AMD_IS_APU &&
2250		     gc_ver != IP_VERSION(9, 4, 3)) ||
2251		    gc_ver < IP_VERSION(9, 0, 0))
2252			*states = ATTR_STATE_UNSUPPORTED;
2253	} else if (DEVICE_ATTR_IS(gpu_metrics)) {
2254		if (gc_ver < IP_VERSION(9, 1, 0))
2255			*states = ATTR_STATE_UNSUPPORTED;
2256	} else if (DEVICE_ATTR_IS(pp_dpm_vclk)) {
2257		if (!(gc_ver == IP_VERSION(10, 3, 1) ||
2258		      gc_ver == IP_VERSION(10, 3, 0) ||
2259		      gc_ver == IP_VERSION(10, 1, 2) ||
2260		      gc_ver == IP_VERSION(11, 0, 0) ||
2261		      gc_ver == IP_VERSION(11, 0, 2) ||
2262		      gc_ver == IP_VERSION(11, 0, 3) ||
2263		      gc_ver == IP_VERSION(9, 4, 3)))
2264			*states = ATTR_STATE_UNSUPPORTED;
2265	} else if (DEVICE_ATTR_IS(pp_dpm_vclk1)) {
2266		if (!((gc_ver == IP_VERSION(10, 3, 1) ||
2267			   gc_ver == IP_VERSION(10, 3, 0) ||
2268			   gc_ver == IP_VERSION(11, 0, 2) ||
2269			   gc_ver == IP_VERSION(11, 0, 3)) && adev->vcn.num_vcn_inst >= 2))
2270			*states = ATTR_STATE_UNSUPPORTED;
2271	} else if (DEVICE_ATTR_IS(pp_dpm_dclk)) {
2272		if (!(gc_ver == IP_VERSION(10, 3, 1) ||
2273		      gc_ver == IP_VERSION(10, 3, 0) ||
2274		      gc_ver == IP_VERSION(10, 1, 2) ||
2275		      gc_ver == IP_VERSION(11, 0, 0) ||
2276		      gc_ver == IP_VERSION(11, 0, 2) ||
2277		      gc_ver == IP_VERSION(11, 0, 3) ||
2278		      gc_ver == IP_VERSION(9, 4, 3)))
2279			*states = ATTR_STATE_UNSUPPORTED;
2280	} else if (DEVICE_ATTR_IS(pp_dpm_dclk1)) {
2281		if (!((gc_ver == IP_VERSION(10, 3, 1) ||
2282			   gc_ver == IP_VERSION(10, 3, 0) ||
2283			   gc_ver == IP_VERSION(11, 0, 2) ||
2284			   gc_ver == IP_VERSION(11, 0, 3)) && adev->vcn.num_vcn_inst >= 2))
2285			*states = ATTR_STATE_UNSUPPORTED;
2286	} else if (DEVICE_ATTR_IS(pp_power_profile_mode)) {
2287		if (amdgpu_dpm_get_power_profile_mode(adev, NULL) == -EOPNOTSUPP)
2288			*states = ATTR_STATE_UNSUPPORTED;
2289		else if ((gc_ver == IP_VERSION(10, 3, 0) ||
2290			  gc_ver == IP_VERSION(11, 0, 3)) && amdgpu_sriov_vf(adev))
2291			*states = ATTR_STATE_UNSUPPORTED;
2292	} else if (DEVICE_ATTR_IS(xgmi_plpd_policy)) {
2293		if (amdgpu_dpm_get_xgmi_plpd_mode(adev, NULL) == XGMI_PLPD_NONE)
2294			*states = ATTR_STATE_UNSUPPORTED;
2295	} else if (DEVICE_ATTR_IS(pp_mclk_od)) {
2296		if (amdgpu_dpm_get_mclk_od(adev) == -EOPNOTSUPP)
2297			*states = ATTR_STATE_UNSUPPORTED;
2298	} else if (DEVICE_ATTR_IS(pp_sclk_od)) {
2299		if (amdgpu_dpm_get_sclk_od(adev) == -EOPNOTSUPP)
2300			*states = ATTR_STATE_UNSUPPORTED;
2301	} else if (DEVICE_ATTR_IS(apu_thermal_cap)) {
2302		u32 limit;
2303
2304		if (amdgpu_dpm_get_apu_thermal_limit(adev, &limit) ==
2305		    -EOPNOTSUPP)
2306			*states = ATTR_STATE_UNSUPPORTED;
2307	} else if (DEVICE_ATTR_IS(pp_dpm_pcie)) {
2308		if (gc_ver == IP_VERSION(9, 4, 2) ||
2309		    gc_ver == IP_VERSION(9, 4, 3))
2310			*states = ATTR_STATE_UNSUPPORTED;
2311	}
2312
2313	switch (gc_ver) {
2314	case IP_VERSION(9, 4, 1):
2315	case IP_VERSION(9, 4, 2):
2316		/* the Mi series card does not support standalone mclk/socclk/fclk level setting */
2317		if (DEVICE_ATTR_IS(pp_dpm_mclk) ||
2318		    DEVICE_ATTR_IS(pp_dpm_socclk) ||
2319		    DEVICE_ATTR_IS(pp_dpm_fclk)) {
2320			dev_attr->attr.mode &= ~S_IWUGO;
2321			dev_attr->store = NULL;
2322		}
2323		break;
2324	case IP_VERSION(10, 3, 0):
2325		if (DEVICE_ATTR_IS(power_dpm_force_performance_level) &&
2326		    amdgpu_sriov_vf(adev)) {
2327			dev_attr->attr.mode &= ~0222;
2328			dev_attr->store = NULL;
2329		}
2330		break;
2331	default:
2332		break;
2333	}
2334
2335	/* setting should not be allowed from VF if not in one VF mode */
2336	if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev)) {
2337		dev_attr->attr.mode &= ~S_IWUGO;
2338		dev_attr->store = NULL;
2339	}
2340
2341#undef DEVICE_ATTR_IS
2342
2343	return 0;
2344}
2345
2346
2347static int amdgpu_device_attr_create(struct amdgpu_device *adev,
2348				     struct amdgpu_device_attr *attr,
2349				     uint32_t mask, struct list_head *attr_list)
2350{
2351	int ret = 0;
2352	enum amdgpu_device_attr_states attr_states = ATTR_STATE_SUPPORTED;
2353	struct amdgpu_device_attr_entry *attr_entry;
2354	struct device_attribute *dev_attr;
2355	const char *name;
2356
2357	int (*attr_update)(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2358			   uint32_t mask, enum amdgpu_device_attr_states *states) = default_attr_update;
2359
2360	if (!attr)
2361		return -EINVAL;
2362
2363	dev_attr = &attr->dev_attr;
2364	name = dev_attr->attr.name;
2365
2366	attr_update = attr->attr_update ? attr->attr_update : default_attr_update;
2367
2368	ret = attr_update(adev, attr, mask, &attr_states);
2369	if (ret) {
2370		dev_err(adev->dev, "failed to update device file %s, ret = %d\n",
2371			name, ret);
2372		return ret;
2373	}
2374
2375	if (attr_states == ATTR_STATE_UNSUPPORTED)
2376		return 0;
2377
2378	ret = device_create_file(adev->dev, dev_attr);
2379	if (ret) {
2380		dev_err(adev->dev, "failed to create device file %s, ret = %d\n",
2381			name, ret);
2382	}
2383
2384	attr_entry = kmalloc(sizeof(*attr_entry), GFP_KERNEL);
2385	if (!attr_entry)
2386		return -ENOMEM;
2387
2388	attr_entry->attr = attr;
2389	INIT_LIST_HEAD(&attr_entry->entry);
2390
2391	list_add_tail(&attr_entry->entry, attr_list);
2392
2393	return ret;
2394}
2395
2396static void amdgpu_device_attr_remove(struct amdgpu_device *adev, struct amdgpu_device_attr *attr)
2397{
2398	struct device_attribute *dev_attr = &attr->dev_attr;
2399
2400	device_remove_file(adev->dev, dev_attr);
2401}
2402
2403static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
2404					     struct list_head *attr_list);
2405
2406static int amdgpu_device_attr_create_groups(struct amdgpu_device *adev,
2407					    struct amdgpu_device_attr *attrs,
2408					    uint32_t counts,
2409					    uint32_t mask,
2410					    struct list_head *attr_list)
2411{
2412	int ret = 0;
2413	uint32_t i = 0;
2414
2415	for (i = 0; i < counts; i++) {
2416		ret = amdgpu_device_attr_create(adev, &attrs[i], mask, attr_list);
2417		if (ret)
2418			goto failed;
2419	}
2420
2421	return 0;
2422
2423failed:
2424	amdgpu_device_attr_remove_groups(adev, attr_list);
2425
2426	return ret;
2427}
2428
2429static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
2430					     struct list_head *attr_list)
2431{
2432	struct amdgpu_device_attr_entry *entry, *entry_tmp;
2433
2434	if (list_empty(attr_list))
2435		return ;
2436
2437	list_for_each_entry_safe(entry, entry_tmp, attr_list, entry) {
2438		amdgpu_device_attr_remove(adev, entry->attr);
2439		list_del(&entry->entry);
2440		kfree(entry);
2441	}
2442}
2443
2444static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
2445				      struct device_attribute *attr,
2446				      char *buf)
2447{
2448	struct amdgpu_device *adev = dev_get_drvdata(dev);
2449	int channel = to_sensor_dev_attr(attr)->index;
2450	int r, temp = 0;
2451
2452	if (channel >= PP_TEMP_MAX)
2453		return -EINVAL;
2454
2455	switch (channel) {
2456	case PP_TEMP_JUNCTION:
2457		/* get current junction temperature */
2458		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
2459					   (void *)&temp);
2460		break;
2461	case PP_TEMP_EDGE:
2462		/* get current edge temperature */
2463		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_EDGE_TEMP,
2464					   (void *)&temp);
2465		break;
2466	case PP_TEMP_MEM:
2467		/* get current memory temperature */
2468		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MEM_TEMP,
2469					   (void *)&temp);
2470		break;
2471	default:
2472		r = -EINVAL;
2473		break;
2474	}
2475
2476	if (r)
2477		return r;
2478
2479	return sysfs_emit(buf, "%d\n", temp);
2480}
2481
2482static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
2483					     struct device_attribute *attr,
2484					     char *buf)
2485{
2486	struct amdgpu_device *adev = dev_get_drvdata(dev);
2487	int hyst = to_sensor_dev_attr(attr)->index;
2488	int temp;
2489
2490	if (hyst)
2491		temp = adev->pm.dpm.thermal.min_temp;
2492	else
2493		temp = adev->pm.dpm.thermal.max_temp;
2494
2495	return sysfs_emit(buf, "%d\n", temp);
2496}
2497
2498static ssize_t amdgpu_hwmon_show_hotspot_temp_thresh(struct device *dev,
2499					     struct device_attribute *attr,
2500					     char *buf)
2501{
2502	struct amdgpu_device *adev = dev_get_drvdata(dev);
2503	int hyst = to_sensor_dev_attr(attr)->index;
2504	int temp;
2505
2506	if (hyst)
2507		temp = adev->pm.dpm.thermal.min_hotspot_temp;
2508	else
2509		temp = adev->pm.dpm.thermal.max_hotspot_crit_temp;
2510
2511	return sysfs_emit(buf, "%d\n", temp);
2512}
2513
2514static ssize_t amdgpu_hwmon_show_mem_temp_thresh(struct device *dev,
2515					     struct device_attribute *attr,
2516					     char *buf)
2517{
2518	struct amdgpu_device *adev = dev_get_drvdata(dev);
2519	int hyst = to_sensor_dev_attr(attr)->index;
2520	int temp;
2521
2522	if (hyst)
2523		temp = adev->pm.dpm.thermal.min_mem_temp;
2524	else
2525		temp = adev->pm.dpm.thermal.max_mem_crit_temp;
2526
2527	return sysfs_emit(buf, "%d\n", temp);
2528}
2529
2530static ssize_t amdgpu_hwmon_show_temp_label(struct device *dev,
2531					     struct device_attribute *attr,
2532					     char *buf)
2533{
2534	int channel = to_sensor_dev_attr(attr)->index;
2535
2536	if (channel >= PP_TEMP_MAX)
2537		return -EINVAL;
2538
2539	return sysfs_emit(buf, "%s\n", temp_label[channel].label);
2540}
2541
2542static ssize_t amdgpu_hwmon_show_temp_emergency(struct device *dev,
2543					     struct device_attribute *attr,
2544					     char *buf)
2545{
2546	struct amdgpu_device *adev = dev_get_drvdata(dev);
2547	int channel = to_sensor_dev_attr(attr)->index;
2548	int temp = 0;
2549
2550	if (channel >= PP_TEMP_MAX)
2551		return -EINVAL;
2552
2553	switch (channel) {
2554	case PP_TEMP_JUNCTION:
2555		temp = adev->pm.dpm.thermal.max_hotspot_emergency_temp;
2556		break;
2557	case PP_TEMP_EDGE:
2558		temp = adev->pm.dpm.thermal.max_edge_emergency_temp;
2559		break;
2560	case PP_TEMP_MEM:
2561		temp = adev->pm.dpm.thermal.max_mem_emergency_temp;
2562		break;
2563	}
2564
2565	return sysfs_emit(buf, "%d\n", temp);
2566}
2567
2568static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
2569					    struct device_attribute *attr,
2570					    char *buf)
2571{
2572	struct amdgpu_device *adev = dev_get_drvdata(dev);
2573	u32 pwm_mode = 0;
2574	int ret;
2575
2576	if (amdgpu_in_reset(adev))
2577		return -EPERM;
2578	if (adev->in_suspend && !adev->in_runpm)
2579		return -EPERM;
2580
2581	ret = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2582	if (ret < 0) {
2583		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2584		return ret;
2585	}
2586
2587	ret = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2588
2589	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2590	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2591
2592	if (ret)
2593		return -EINVAL;
2594
2595	return sysfs_emit(buf, "%u\n", pwm_mode);
2596}
2597
2598static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
2599					    struct device_attribute *attr,
2600					    const char *buf,
2601					    size_t count)
2602{
2603	struct amdgpu_device *adev = dev_get_drvdata(dev);
2604	int err, ret;
2605	u32 pwm_mode;
2606	int value;
2607
2608	if (amdgpu_in_reset(adev))
2609		return -EPERM;
2610	if (adev->in_suspend && !adev->in_runpm)
2611		return -EPERM;
2612
2613	err = kstrtoint(buf, 10, &value);
2614	if (err)
2615		return err;
2616
2617	if (value == 0)
2618		pwm_mode = AMD_FAN_CTRL_NONE;
2619	else if (value == 1)
2620		pwm_mode = AMD_FAN_CTRL_MANUAL;
2621	else if (value == 2)
2622		pwm_mode = AMD_FAN_CTRL_AUTO;
2623	else
2624		return -EINVAL;
2625
2626	ret = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2627	if (ret < 0) {
2628		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2629		return ret;
2630	}
2631
2632	ret = amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
2633
2634	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2635	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2636
2637	if (ret)
2638		return -EINVAL;
2639
2640	return count;
2641}
2642
2643static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
2644					 struct device_attribute *attr,
2645					 char *buf)
2646{
2647	return sysfs_emit(buf, "%i\n", 0);
2648}
2649
2650static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
2651					 struct device_attribute *attr,
2652					 char *buf)
2653{
2654	return sysfs_emit(buf, "%i\n", 255);
2655}
2656
2657static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
2658				     struct device_attribute *attr,
2659				     const char *buf, size_t count)
2660{
2661	struct amdgpu_device *adev = dev_get_drvdata(dev);
2662	int err;
2663	u32 value;
2664	u32 pwm_mode;
2665
2666	if (amdgpu_in_reset(adev))
2667		return -EPERM;
2668	if (adev->in_suspend && !adev->in_runpm)
2669		return -EPERM;
2670
2671	err = kstrtou32(buf, 10, &value);
2672	if (err)
2673		return err;
2674
2675	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2676	if (err < 0) {
2677		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2678		return err;
2679	}
2680
2681	err = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2682	if (err)
2683		goto out;
2684
2685	if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2686		pr_info("manual fan speed control should be enabled first\n");
2687		err = -EINVAL;
2688		goto out;
2689	}
2690
2691	err = amdgpu_dpm_set_fan_speed_pwm(adev, value);
2692
2693out:
2694	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2695	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2696
2697	if (err)
2698		return err;
2699
2700	return count;
2701}
2702
2703static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
2704				     struct device_attribute *attr,
2705				     char *buf)
2706{
2707	struct amdgpu_device *adev = dev_get_drvdata(dev);
2708	int err;
2709	u32 speed = 0;
2710
2711	if (amdgpu_in_reset(adev))
2712		return -EPERM;
2713	if (adev->in_suspend && !adev->in_runpm)
2714		return -EPERM;
2715
2716	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2717	if (err < 0) {
2718		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2719		return err;
2720	}
2721
2722	err = amdgpu_dpm_get_fan_speed_pwm(adev, &speed);
2723
2724	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2725	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2726
2727	if (err)
2728		return err;
2729
2730	return sysfs_emit(buf, "%i\n", speed);
2731}
2732
2733static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
2734					   struct device_attribute *attr,
2735					   char *buf)
2736{
2737	struct amdgpu_device *adev = dev_get_drvdata(dev);
2738	int err;
2739	u32 speed = 0;
2740
2741	if (amdgpu_in_reset(adev))
2742		return -EPERM;
2743	if (adev->in_suspend && !adev->in_runpm)
2744		return -EPERM;
2745
2746	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2747	if (err < 0) {
2748		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2749		return err;
2750	}
2751
2752	err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
2753
2754	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2755	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2756
2757	if (err)
2758		return err;
2759
2760	return sysfs_emit(buf, "%i\n", speed);
2761}
2762
2763static ssize_t amdgpu_hwmon_get_fan1_min(struct device *dev,
2764					 struct device_attribute *attr,
2765					 char *buf)
2766{
2767	struct amdgpu_device *adev = dev_get_drvdata(dev);
2768	u32 min_rpm = 0;
2769	int r;
2770
2771	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MIN_FAN_RPM,
2772				   (void *)&min_rpm);
2773
2774	if (r)
2775		return r;
2776
2777	return sysfs_emit(buf, "%d\n", min_rpm);
2778}
2779
2780static ssize_t amdgpu_hwmon_get_fan1_max(struct device *dev,
2781					 struct device_attribute *attr,
2782					 char *buf)
2783{
2784	struct amdgpu_device *adev = dev_get_drvdata(dev);
2785	u32 max_rpm = 0;
2786	int r;
2787
2788	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MAX_FAN_RPM,
2789				   (void *)&max_rpm);
2790
2791	if (r)
2792		return r;
2793
2794	return sysfs_emit(buf, "%d\n", max_rpm);
2795}
2796
2797static ssize_t amdgpu_hwmon_get_fan1_target(struct device *dev,
2798					   struct device_attribute *attr,
2799					   char *buf)
2800{
2801	struct amdgpu_device *adev = dev_get_drvdata(dev);
2802	int err;
2803	u32 rpm = 0;
2804
2805	if (amdgpu_in_reset(adev))
2806		return -EPERM;
2807	if (adev->in_suspend && !adev->in_runpm)
2808		return -EPERM;
2809
2810	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2811	if (err < 0) {
2812		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2813		return err;
2814	}
2815
2816	err = amdgpu_dpm_get_fan_speed_rpm(adev, &rpm);
2817
2818	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2819	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2820
2821	if (err)
2822		return err;
2823
2824	return sysfs_emit(buf, "%i\n", rpm);
2825}
2826
2827static ssize_t amdgpu_hwmon_set_fan1_target(struct device *dev,
2828				     struct device_attribute *attr,
2829				     const char *buf, size_t count)
2830{
2831	struct amdgpu_device *adev = dev_get_drvdata(dev);
2832	int err;
2833	u32 value;
2834	u32 pwm_mode;
2835
2836	if (amdgpu_in_reset(adev))
2837		return -EPERM;
2838	if (adev->in_suspend && !adev->in_runpm)
2839		return -EPERM;
2840
2841	err = kstrtou32(buf, 10, &value);
2842	if (err)
2843		return err;
2844
2845	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2846	if (err < 0) {
2847		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2848		return err;
2849	}
2850
2851	err = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2852	if (err)
2853		goto out;
2854
2855	if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2856		err = -ENODATA;
2857		goto out;
2858	}
2859
2860	err = amdgpu_dpm_set_fan_speed_rpm(adev, value);
2861
2862out:
2863	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2864	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2865
2866	if (err)
2867		return err;
2868
2869	return count;
2870}
2871
2872static ssize_t amdgpu_hwmon_get_fan1_enable(struct device *dev,
2873					    struct device_attribute *attr,
2874					    char *buf)
2875{
2876	struct amdgpu_device *adev = dev_get_drvdata(dev);
2877	u32 pwm_mode = 0;
2878	int ret;
2879
2880	if (amdgpu_in_reset(adev))
2881		return -EPERM;
2882	if (adev->in_suspend && !adev->in_runpm)
2883		return -EPERM;
2884
2885	ret = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2886	if (ret < 0) {
2887		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2888		return ret;
2889	}
2890
2891	ret = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2892
2893	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2894	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2895
2896	if (ret)
2897		return -EINVAL;
2898
2899	return sysfs_emit(buf, "%i\n", pwm_mode == AMD_FAN_CTRL_AUTO ? 0 : 1);
2900}
2901
2902static ssize_t amdgpu_hwmon_set_fan1_enable(struct device *dev,
2903					    struct device_attribute *attr,
2904					    const char *buf,
2905					    size_t count)
2906{
2907	struct amdgpu_device *adev = dev_get_drvdata(dev);
2908	int err;
2909	int value;
2910	u32 pwm_mode;
2911
2912	if (amdgpu_in_reset(adev))
2913		return -EPERM;
2914	if (adev->in_suspend && !adev->in_runpm)
2915		return -EPERM;
2916
2917	err = kstrtoint(buf, 10, &value);
2918	if (err)
2919		return err;
2920
2921	if (value == 0)
2922		pwm_mode = AMD_FAN_CTRL_AUTO;
2923	else if (value == 1)
2924		pwm_mode = AMD_FAN_CTRL_MANUAL;
2925	else
2926		return -EINVAL;
2927
2928	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
2929	if (err < 0) {
2930		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2931		return err;
2932	}
2933
2934	err = amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
2935
2936	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2937	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2938
2939	if (err)
2940		return -EINVAL;
2941
2942	return count;
2943}
2944
2945static ssize_t amdgpu_hwmon_show_vddgfx(struct device *dev,
2946					struct device_attribute *attr,
2947					char *buf)
2948{
2949	struct amdgpu_device *adev = dev_get_drvdata(dev);
2950	u32 vddgfx;
2951	int r;
2952
2953	/* get the voltage */
2954	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_VDDGFX,
2955				   (void *)&vddgfx);
2956	if (r)
2957		return r;
2958
2959	return sysfs_emit(buf, "%d\n", vddgfx);
2960}
2961
2962static ssize_t amdgpu_hwmon_show_vddgfx_label(struct device *dev,
2963					      struct device_attribute *attr,
2964					      char *buf)
2965{
2966	return sysfs_emit(buf, "vddgfx\n");
2967}
2968
2969static ssize_t amdgpu_hwmon_show_vddnb(struct device *dev,
2970				       struct device_attribute *attr,
2971				       char *buf)
2972{
2973	struct amdgpu_device *adev = dev_get_drvdata(dev);
2974	u32 vddnb;
2975	int r;
2976
2977	/* only APUs have vddnb */
2978	if  (!(adev->flags & AMD_IS_APU))
2979		return -EINVAL;
2980
2981	/* get the voltage */
2982	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_VDDNB,
2983				   (void *)&vddnb);
2984	if (r)
2985		return r;
2986
2987	return sysfs_emit(buf, "%d\n", vddnb);
2988}
2989
2990static ssize_t amdgpu_hwmon_show_vddnb_label(struct device *dev,
2991					      struct device_attribute *attr,
2992					      char *buf)
2993{
2994	return sysfs_emit(buf, "vddnb\n");
2995}
2996
2997static int amdgpu_hwmon_get_power(struct device *dev,
2998				  enum amd_pp_sensors sensor)
2999{
3000	struct amdgpu_device *adev = dev_get_drvdata(dev);
3001	unsigned int uw;
3002	u32 query = 0;
3003	int r;
3004
3005	r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&query);
3006	if (r)
3007		return r;
3008
3009	/* convert to microwatts */
3010	uw = (query >> 8) * 1000000 + (query & 0xff) * 1000;
3011
3012	return uw;
3013}
3014
3015static ssize_t amdgpu_hwmon_show_power_avg(struct device *dev,
3016					   struct device_attribute *attr,
3017					   char *buf)
3018{
3019	ssize_t val;
3020
3021	val = amdgpu_hwmon_get_power(dev, AMDGPU_PP_SENSOR_GPU_AVG_POWER);
3022	if (val < 0)
3023		return val;
3024
3025	return sysfs_emit(buf, "%zd\n", val);
3026}
3027
3028static ssize_t amdgpu_hwmon_show_power_input(struct device *dev,
3029					     struct device_attribute *attr,
3030					     char *buf)
3031{
3032	ssize_t val;
3033
3034	val = amdgpu_hwmon_get_power(dev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER);
3035	if (val < 0)
3036		return val;
3037
3038	return sysfs_emit(buf, "%zd\n", val);
3039}
3040
3041static ssize_t amdgpu_hwmon_show_power_cap_generic(struct device *dev,
3042					struct device_attribute *attr,
3043					char *buf,
3044					enum pp_power_limit_level pp_limit_level)
3045{
3046	struct amdgpu_device *adev = dev_get_drvdata(dev);
3047	enum pp_power_type power_type = to_sensor_dev_attr(attr)->index;
3048	uint32_t limit;
3049	ssize_t size;
3050	int r;
3051
3052	if (amdgpu_in_reset(adev))
3053		return -EPERM;
3054	if (adev->in_suspend && !adev->in_runpm)
3055		return -EPERM;
3056
3057	r = pm_runtime_get_sync(adev_to_drm(adev)->dev);
3058	if (r < 0) {
3059		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3060		return r;
3061	}
3062
3063	r = amdgpu_dpm_get_power_limit(adev, &limit,
3064				      pp_limit_level, power_type);
3065
3066	if (!r)
3067		size = sysfs_emit(buf, "%u\n", limit * 1000000);
3068	else
3069		size = sysfs_emit(buf, "\n");
3070
3071	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
3072	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3073
3074	return size;
3075}
3076
3077static ssize_t amdgpu_hwmon_show_power_cap_min(struct device *dev,
3078					 struct device_attribute *attr,
3079					 char *buf)
3080{
3081	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_MIN);
3082}
3083
3084static ssize_t amdgpu_hwmon_show_power_cap_max(struct device *dev,
3085					 struct device_attribute *attr,
3086					 char *buf)
3087{
3088	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_MAX);
3089
3090}
3091
3092static ssize_t amdgpu_hwmon_show_power_cap(struct device *dev,
3093					 struct device_attribute *attr,
3094					 char *buf)
3095{
3096	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_CURRENT);
3097
3098}
3099
3100static ssize_t amdgpu_hwmon_show_power_cap_default(struct device *dev,
3101					 struct device_attribute *attr,
3102					 char *buf)
3103{
3104	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_DEFAULT);
3105
3106}
3107
3108static ssize_t amdgpu_hwmon_show_power_label(struct device *dev,
3109					 struct device_attribute *attr,
3110					 char *buf)
3111{
3112	struct amdgpu_device *adev = dev_get_drvdata(dev);
3113	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
3114
3115	if (gc_ver == IP_VERSION(10, 3, 1))
3116		return sysfs_emit(buf, "%s\n",
3117				  to_sensor_dev_attr(attr)->index == PP_PWR_TYPE_FAST ?
3118				  "fastPPT" : "slowPPT");
3119	else
3120		return sysfs_emit(buf, "PPT\n");
3121}
3122
3123static ssize_t amdgpu_hwmon_set_power_cap(struct device *dev,
3124		struct device_attribute *attr,
3125		const char *buf,
3126		size_t count)
3127{
3128	struct amdgpu_device *adev = dev_get_drvdata(dev);
3129	int limit_type = to_sensor_dev_attr(attr)->index;
3130	int err;
3131	u32 value;
3132
3133	if (amdgpu_in_reset(adev))
3134		return -EPERM;
3135	if (adev->in_suspend && !adev->in_runpm)
3136		return -EPERM;
3137
3138	if (amdgpu_sriov_vf(adev))
3139		return -EINVAL;
3140
3141	err = kstrtou32(buf, 10, &value);
3142	if (err)
3143		return err;
3144
3145	value = value / 1000000; /* convert to Watt */
3146	value |= limit_type << 24;
3147
3148	err = pm_runtime_get_sync(adev_to_drm(adev)->dev);
3149	if (err < 0) {
3150		pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3151		return err;
3152	}
3153
3154	err = amdgpu_dpm_set_power_limit(adev, value);
3155
3156	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
3157	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3158
3159	if (err)
3160		return err;
3161
3162	return count;
3163}
3164
3165static ssize_t amdgpu_hwmon_show_sclk(struct device *dev,
3166				      struct device_attribute *attr,
3167				      char *buf)
3168{
3169	struct amdgpu_device *adev = dev_get_drvdata(dev);
3170	uint32_t sclk;
3171	int r;
3172
3173	/* get the sclk */
3174	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GFX_SCLK,
3175				   (void *)&sclk);
3176	if (r)
3177		return r;
3178
3179	return sysfs_emit(buf, "%u\n", sclk * 10 * 1000);
3180}
3181
3182static ssize_t amdgpu_hwmon_show_sclk_label(struct device *dev,
3183					    struct device_attribute *attr,
3184					    char *buf)
3185{
3186	return sysfs_emit(buf, "sclk\n");
3187}
3188
3189static ssize_t amdgpu_hwmon_show_mclk(struct device *dev,
3190				      struct device_attribute *attr,
3191				      char *buf)
3192{
3193	struct amdgpu_device *adev = dev_get_drvdata(dev);
3194	uint32_t mclk;
3195	int r;
3196
3197	/* get the sclk */
3198	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GFX_MCLK,
3199				   (void *)&mclk);
3200	if (r)
3201		return r;
3202
3203	return sysfs_emit(buf, "%u\n", mclk * 10 * 1000);
3204}
3205
3206static ssize_t amdgpu_hwmon_show_mclk_label(struct device *dev,
3207					    struct device_attribute *attr,
3208					    char *buf)
3209{
3210	return sysfs_emit(buf, "mclk\n");
3211}
3212
3213/**
3214 * DOC: hwmon
3215 *
3216 * The amdgpu driver exposes the following sensor interfaces:
3217 *
3218 * - GPU temperature (via the on-die sensor)
3219 *
3220 * - GPU voltage
3221 *
3222 * - Northbridge voltage (APUs only)
3223 *
3224 * - GPU power
3225 *
3226 * - GPU fan
3227 *
3228 * - GPU gfx/compute engine clock
3229 *
3230 * - GPU memory clock (dGPU only)
3231 *
3232 * hwmon interfaces for GPU temperature:
3233 *
3234 * - temp[1-3]_input: the on die GPU temperature in millidegrees Celsius
3235 *   - temp2_input and temp3_input are supported on SOC15 dGPUs only
3236 *
3237 * - temp[1-3]_label: temperature channel label
3238 *   - temp2_label and temp3_label are supported on SOC15 dGPUs only
3239 *
3240 * - temp[1-3]_crit: temperature critical max value in millidegrees Celsius
3241 *   - temp2_crit and temp3_crit are supported on SOC15 dGPUs only
3242 *
3243 * - temp[1-3]_crit_hyst: temperature hysteresis for critical limit in millidegrees Celsius
3244 *   - temp2_crit_hyst and temp3_crit_hyst are supported on SOC15 dGPUs only
3245 *
3246 * - temp[1-3]_emergency: temperature emergency max value(asic shutdown) in millidegrees Celsius
3247 *   - these are supported on SOC15 dGPUs only
3248 *
3249 * hwmon interfaces for GPU voltage:
3250 *
3251 * - in0_input: the voltage on the GPU in millivolts
3252 *
3253 * - in1_input: the voltage on the Northbridge in millivolts
3254 *
3255 * hwmon interfaces for GPU power:
3256 *
3257 * - power1_average: average power used by the SoC in microWatts.  On APUs this includes the CPU.
3258 *
3259 * - power1_input: instantaneous power used by the SoC in microWatts.  On APUs this includes the CPU.
3260 *
3261 * - power1_cap_min: minimum cap supported in microWatts
3262 *
3263 * - power1_cap_max: maximum cap supported in microWatts
3264 *
3265 * - power1_cap: selected power cap in microWatts
3266 *
3267 * hwmon interfaces for GPU fan:
3268 *
3269 * - pwm1: pulse width modulation fan level (0-255)
3270 *
3271 * - pwm1_enable: pulse width modulation fan control method (0: no fan speed control, 1: manual fan speed control using pwm interface, 2: automatic fan speed control)
3272 *
3273 * - pwm1_min: pulse width modulation fan control minimum level (0)
3274 *
3275 * - pwm1_max: pulse width modulation fan control maximum level (255)
3276 *
3277 * - fan1_min: a minimum value Unit: revolution/min (RPM)
3278 *
3279 * - fan1_max: a maximum value Unit: revolution/max (RPM)
3280 *
3281 * - fan1_input: fan speed in RPM
3282 *
3283 * - fan[1-\*]_target: Desired fan speed Unit: revolution/min (RPM)
3284 *
3285 * - fan[1-\*]_enable: Enable or disable the sensors.1: Enable 0: Disable
3286 *
3287 * NOTE: DO NOT set the fan speed via "pwm1" and "fan[1-\*]_target" interfaces at the same time.
3288 *       That will get the former one overridden.
3289 *
3290 * hwmon interfaces for GPU clocks:
3291 *
3292 * - freq1_input: the gfx/compute clock in hertz
3293 *
3294 * - freq2_input: the memory clock in hertz
3295 *
3296 * You can use hwmon tools like sensors to view this information on your system.
3297 *
3298 */
3299
3300static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_EDGE);
3301static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
3302static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
3303static SENSOR_DEVICE_ATTR(temp1_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_EDGE);
3304static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_JUNCTION);
3305static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 0);
3306static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 1);
3307static SENSOR_DEVICE_ATTR(temp2_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_JUNCTION);
3308static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_MEM);
3309static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 0);
3310static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 1);
3311static SENSOR_DEVICE_ATTR(temp3_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_MEM);
3312static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_EDGE);
3313static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_JUNCTION);
3314static SENSOR_DEVICE_ATTR(temp3_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_MEM);
3315static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
3316static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
3317static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
3318static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
3319static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
3320static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, amdgpu_hwmon_get_fan1_min, NULL, 0);
3321static SENSOR_DEVICE_ATTR(fan1_max, S_IRUGO, amdgpu_hwmon_get_fan1_max, NULL, 0);
3322static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_target, amdgpu_hwmon_set_fan1_target, 0);
3323static SENSOR_DEVICE_ATTR(fan1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_enable, amdgpu_hwmon_set_fan1_enable, 0);
3324static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, amdgpu_hwmon_show_vddgfx, NULL, 0);
3325static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, amdgpu_hwmon_show_vddgfx_label, NULL, 0);
3326static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, amdgpu_hwmon_show_vddnb, NULL, 0);
3327static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, amdgpu_hwmon_show_vddnb_label, NULL, 0);
3328static SENSOR_DEVICE_ATTR(power1_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 0);
3329static SENSOR_DEVICE_ATTR(power1_input, S_IRUGO, amdgpu_hwmon_show_power_input, NULL, 0);
3330static SENSOR_DEVICE_ATTR(power1_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 0);
3331static SENSOR_DEVICE_ATTR(power1_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 0);
3332static SENSOR_DEVICE_ATTR(power1_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 0);
3333static SENSOR_DEVICE_ATTR(power1_cap_default, S_IRUGO, amdgpu_hwmon_show_power_cap_default, NULL, 0);
3334static SENSOR_DEVICE_ATTR(power1_label, S_IRUGO, amdgpu_hwmon_show_power_label, NULL, 0);
3335static SENSOR_DEVICE_ATTR(power2_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 1);
3336static SENSOR_DEVICE_ATTR(power2_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 1);
3337static SENSOR_DEVICE_ATTR(power2_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 1);
3338static SENSOR_DEVICE_ATTR(power2_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 1);
3339static SENSOR_DEVICE_ATTR(power2_cap_default, S_IRUGO, amdgpu_hwmon_show_power_cap_default, NULL, 1);
3340static SENSOR_DEVICE_ATTR(power2_label, S_IRUGO, amdgpu_hwmon_show_power_label, NULL, 1);
3341static SENSOR_DEVICE_ATTR(freq1_input, S_IRUGO, amdgpu_hwmon_show_sclk, NULL, 0);
3342static SENSOR_DEVICE_ATTR(freq1_label, S_IRUGO, amdgpu_hwmon_show_sclk_label, NULL, 0);
3343static SENSOR_DEVICE_ATTR(freq2_input, S_IRUGO, amdgpu_hwmon_show_mclk, NULL, 0);
3344static SENSOR_DEVICE_ATTR(freq2_label, S_IRUGO, amdgpu_hwmon_show_mclk_label, NULL, 0);
3345
3346static struct attribute *hwmon_attributes[] = {
3347	&sensor_dev_attr_temp1_input.dev_attr.attr,
3348	&sensor_dev_attr_temp1_crit.dev_attr.attr,
3349	&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
3350	&sensor_dev_attr_temp2_input.dev_attr.attr,
3351	&sensor_dev_attr_temp2_crit.dev_attr.attr,
3352	&sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
3353	&sensor_dev_attr_temp3_input.dev_attr.attr,
3354	&sensor_dev_attr_temp3_crit.dev_attr.attr,
3355	&sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
3356	&sensor_dev_attr_temp1_emergency.dev_attr.attr,
3357	&sensor_dev_attr_temp2_emergency.dev_attr.attr,
3358	&sensor_dev_attr_temp3_emergency.dev_attr.attr,
3359	&sensor_dev_attr_temp1_label.dev_attr.attr,
3360	&sensor_dev_attr_temp2_label.dev_attr.attr,
3361	&sensor_dev_attr_temp3_label.dev_attr.attr,
3362	&sensor_dev_attr_pwm1.dev_attr.attr,
3363	&sensor_dev_attr_pwm1_enable.dev_attr.attr,
3364	&sensor_dev_attr_pwm1_min.dev_attr.attr,
3365	&sensor_dev_attr_pwm1_max.dev_attr.attr,
3366	&sensor_dev_attr_fan1_input.dev_attr.attr,
3367	&sensor_dev_attr_fan1_min.dev_attr.attr,
3368	&sensor_dev_attr_fan1_max.dev_attr.attr,
3369	&sensor_dev_attr_fan1_target.dev_attr.attr,
3370	&sensor_dev_attr_fan1_enable.dev_attr.attr,
3371	&sensor_dev_attr_in0_input.dev_attr.attr,
3372	&sensor_dev_attr_in0_label.dev_attr.attr,
3373	&sensor_dev_attr_in1_input.dev_attr.attr,
3374	&sensor_dev_attr_in1_label.dev_attr.attr,
3375	&sensor_dev_attr_power1_average.dev_attr.attr,
3376	&sensor_dev_attr_power1_input.dev_attr.attr,
3377	&sensor_dev_attr_power1_cap_max.dev_attr.attr,
3378	&sensor_dev_attr_power1_cap_min.dev_attr.attr,
3379	&sensor_dev_attr_power1_cap.dev_attr.attr,
3380	&sensor_dev_attr_power1_cap_default.dev_attr.attr,
3381	&sensor_dev_attr_power1_label.dev_attr.attr,
3382	&sensor_dev_attr_power2_average.dev_attr.attr,
3383	&sensor_dev_attr_power2_cap_max.dev_attr.attr,
3384	&sensor_dev_attr_power2_cap_min.dev_attr.attr,
3385	&sensor_dev_attr_power2_cap.dev_attr.attr,
3386	&sensor_dev_attr_power2_cap_default.dev_attr.attr,
3387	&sensor_dev_attr_power2_label.dev_attr.attr,
3388	&sensor_dev_attr_freq1_input.dev_attr.attr,
3389	&sensor_dev_attr_freq1_label.dev_attr.attr,
3390	&sensor_dev_attr_freq2_input.dev_attr.attr,
3391	&sensor_dev_attr_freq2_label.dev_attr.attr,
3392	NULL
3393};
3394
3395static umode_t hwmon_attributes_visible(struct kobject *kobj,
3396					struct attribute *attr, int index)
3397{
3398	struct device *dev = kobj_to_dev(kobj);
3399	struct amdgpu_device *adev = dev_get_drvdata(dev);
3400	umode_t effective_mode = attr->mode;
3401	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
3402	uint32_t tmp;
3403
3404	/* under pp one vf mode manage of hwmon attributes is not supported */
3405	if (amdgpu_sriov_is_pp_one_vf(adev))
3406		effective_mode &= ~S_IWUSR;
3407
3408	/* Skip fan attributes if fan is not present */
3409	if (adev->pm.no_fan && (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3410	    attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3411	    attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3412	    attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3413	    attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3414	    attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3415	    attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3416	    attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3417	    attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3418		return 0;
3419
3420	/* Skip fan attributes on APU */
3421	if ((adev->flags & AMD_IS_APU) &&
3422	    (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3423	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3424	     attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3425	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3426	     attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3427	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3428	     attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3429	     attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3430	     attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3431		return 0;
3432
3433	/* Skip crit temp on APU */
3434	if ((((adev->flags & AMD_IS_APU) && (adev->family >= AMDGPU_FAMILY_CZ)) ||
3435	    (gc_ver == IP_VERSION(9, 4, 3))) &&
3436	    (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
3437	     attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr))
3438		return 0;
3439
3440	/* Skip limit attributes if DPM is not enabled */
3441	if (!adev->pm.dpm_enabled &&
3442	    (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
3443	     attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
3444	     attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3445	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3446	     attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3447	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3448	     attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3449	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3450	     attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3451	     attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3452	     attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3453		return 0;
3454
3455	/* mask fan attributes if we have no bindings for this asic to expose */
3456	if (((amdgpu_dpm_get_fan_speed_pwm(adev, NULL) == -EOPNOTSUPP) &&
3457	      attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
3458	    ((amdgpu_dpm_get_fan_control_mode(adev, NULL) == -EOPNOTSUPP) &&
3459	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
3460		effective_mode &= ~S_IRUGO;
3461
3462	if (((amdgpu_dpm_set_fan_speed_pwm(adev, U32_MAX) == -EOPNOTSUPP) &&
3463	      attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
3464	      ((amdgpu_dpm_set_fan_control_mode(adev, U32_MAX) == -EOPNOTSUPP) &&
3465	      attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
3466		effective_mode &= ~S_IWUSR;
3467
3468	/* not implemented yet for APUs other than GC 10.3.1 (vangogh) and 9.4.3 */
3469	if (((adev->family == AMDGPU_FAMILY_SI) ||
3470	     ((adev->flags & AMD_IS_APU) && (gc_ver != IP_VERSION(10, 3, 1)) &&
3471	      (gc_ver != IP_VERSION(9, 4, 3)))) &&
3472	    (attr == &sensor_dev_attr_power1_cap_max.dev_attr.attr ||
3473	     attr == &sensor_dev_attr_power1_cap_min.dev_attr.attr ||
3474	     attr == &sensor_dev_attr_power1_cap.dev_attr.attr ||
3475	     attr == &sensor_dev_attr_power1_cap_default.dev_attr.attr))
3476		return 0;
3477
3478	/* not implemented yet for APUs having < GC 9.3.0 (Renoir) */
3479	if (((adev->family == AMDGPU_FAMILY_SI) ||
3480	     ((adev->flags & AMD_IS_APU) && (gc_ver < IP_VERSION(9, 3, 0)))) &&
3481	    (attr == &sensor_dev_attr_power1_average.dev_attr.attr))
3482		return 0;
3483
3484	/* not all products support both average and instantaneous */
3485	if (attr == &sensor_dev_attr_power1_average.dev_attr.attr &&
3486	    amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_AVG_POWER, (void *)&tmp) == -EOPNOTSUPP)
3487		return 0;
3488	if (attr == &sensor_dev_attr_power1_input.dev_attr.attr &&
3489	    amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER, (void *)&tmp) == -EOPNOTSUPP)
3490		return 0;
3491
3492	/* hide max/min values if we can't both query and manage the fan */
3493	if (((amdgpu_dpm_set_fan_speed_pwm(adev, U32_MAX) == -EOPNOTSUPP) &&
3494	      (amdgpu_dpm_get_fan_speed_pwm(adev, NULL) == -EOPNOTSUPP) &&
3495	      (amdgpu_dpm_set_fan_speed_rpm(adev, U32_MAX) == -EOPNOTSUPP) &&
3496	      (amdgpu_dpm_get_fan_speed_rpm(adev, NULL) == -EOPNOTSUPP)) &&
3497	    (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3498	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
3499		return 0;
3500
3501	if ((amdgpu_dpm_set_fan_speed_rpm(adev, U32_MAX) == -EOPNOTSUPP) &&
3502	     (amdgpu_dpm_get_fan_speed_rpm(adev, NULL) == -EOPNOTSUPP) &&
3503	     (attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3504	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr))
3505		return 0;
3506
3507	if ((adev->family == AMDGPU_FAMILY_SI ||	/* not implemented yet */
3508	     adev->family == AMDGPU_FAMILY_KV ||	/* not implemented yet */
3509	     (gc_ver == IP_VERSION(9, 4, 3))) &&
 
3510	    (attr == &sensor_dev_attr_in0_input.dev_attr.attr ||
3511	     attr == &sensor_dev_attr_in0_label.dev_attr.attr))
3512		return 0;
3513
3514	/* only APUs other than gc 9,4,3 have vddnb */
3515	if ((!(adev->flags & AMD_IS_APU) || (gc_ver == IP_VERSION(9, 4, 3))) &&
 
 
3516	    (attr == &sensor_dev_attr_in1_input.dev_attr.attr ||
3517	     attr == &sensor_dev_attr_in1_label.dev_attr.attr))
3518		return 0;
3519
3520	/* no mclk on APUs other than gc 9,4,3*/
3521	if (((adev->flags & AMD_IS_APU) && (gc_ver != IP_VERSION(9, 4, 3))) &&
3522	    (attr == &sensor_dev_attr_freq2_input.dev_attr.attr ||
3523	     attr == &sensor_dev_attr_freq2_label.dev_attr.attr))
3524		return 0;
3525
3526	if (((adev->flags & AMD_IS_APU) || gc_ver < IP_VERSION(9, 0, 0)) &&
3527	    (gc_ver != IP_VERSION(9, 4, 3)) &&
3528	    (attr == &sensor_dev_attr_temp2_input.dev_attr.attr ||
3529	     attr == &sensor_dev_attr_temp2_label.dev_attr.attr ||
3530	     attr == &sensor_dev_attr_temp2_crit.dev_attr.attr ||
3531	     attr == &sensor_dev_attr_temp3_input.dev_attr.attr ||
3532	     attr == &sensor_dev_attr_temp3_label.dev_attr.attr ||
3533	     attr == &sensor_dev_attr_temp3_crit.dev_attr.attr))
3534		return 0;
3535
3536	/* hotspot temperature for gc 9,4,3*/
3537	if (gc_ver == IP_VERSION(9, 4, 3)) {
 
3538		if (attr == &sensor_dev_attr_temp1_input.dev_attr.attr ||
3539		    attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
3540		    attr == &sensor_dev_attr_temp1_label.dev_attr.attr)
3541			return 0;
3542
3543		if (attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
3544		    attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr)
3545			return attr->mode;
3546	}
3547
3548	/* only SOC15 dGPUs support hotspot and mem temperatures */
3549	if (((adev->flags & AMD_IS_APU) || gc_ver < IP_VERSION(9, 0, 0)) &&
3550	    (attr == &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr ||
3551	     attr == &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr ||
3552	     attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
3553	     attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
3554	     attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr))
3555		return 0;
3556
3557	/* only Vangogh has fast PPT limit and power labels */
3558	if (!(gc_ver == IP_VERSION(10, 3, 1)) &&
3559	    (attr == &sensor_dev_attr_power2_average.dev_attr.attr ||
3560	     attr == &sensor_dev_attr_power2_cap_max.dev_attr.attr ||
3561	     attr == &sensor_dev_attr_power2_cap_min.dev_attr.attr ||
3562	     attr == &sensor_dev_attr_power2_cap.dev_attr.attr ||
3563	     attr == &sensor_dev_attr_power2_cap_default.dev_attr.attr ||
3564	     attr == &sensor_dev_attr_power2_label.dev_attr.attr))
3565		return 0;
3566
3567	return effective_mode;
3568}
3569
3570static const struct attribute_group hwmon_attrgroup = {
3571	.attrs = hwmon_attributes,
3572	.is_visible = hwmon_attributes_visible,
3573};
3574
3575static const struct attribute_group *hwmon_groups[] = {
3576	&hwmon_attrgroup,
3577	NULL
3578};
3579
3580static int amdgpu_retrieve_od_settings(struct amdgpu_device *adev,
3581				       enum pp_clock_type od_type,
3582				       char *buf)
3583{
3584	int size = 0;
3585	int ret;
3586
3587	if (amdgpu_in_reset(adev))
3588		return -EPERM;
3589	if (adev->in_suspend && !adev->in_runpm)
3590		return -EPERM;
3591
3592	ret = pm_runtime_get_sync(adev->dev);
3593	if (ret < 0) {
3594		pm_runtime_put_autosuspend(adev->dev);
3595		return ret;
3596	}
3597
3598	size = amdgpu_dpm_print_clock_levels(adev, od_type, buf);
3599	if (size == 0)
3600		size = sysfs_emit(buf, "\n");
3601
3602	pm_runtime_mark_last_busy(adev->dev);
3603	pm_runtime_put_autosuspend(adev->dev);
3604
3605	return size;
3606}
3607
3608static int parse_input_od_command_lines(const char *buf,
3609					size_t count,
3610					u32 *type,
3611					long *params,
3612					uint32_t *num_of_params)
3613{
3614	const char delimiter[3] = {' ', '\n', '\0'};
3615	uint32_t parameter_size = 0;
3616	char buf_cpy[128] = {0};
3617	char *tmp_str, *sub_str;
3618	int ret;
3619
3620	if (count > sizeof(buf_cpy) - 1)
3621		return -EINVAL;
3622
3623	memcpy(buf_cpy, buf, count);
3624	tmp_str = buf_cpy;
3625
3626	/* skip heading spaces */
3627	while (isspace(*tmp_str))
3628		tmp_str++;
3629
3630	switch (*tmp_str) {
3631	case 'c':
3632		*type = PP_OD_COMMIT_DPM_TABLE;
3633		return 0;
3634	case 'r':
3635		params[parameter_size] = *type;
3636		*num_of_params = 1;
3637		*type = PP_OD_RESTORE_DEFAULT_TABLE;
3638		return 0;
3639	default:
3640		break;
3641	}
3642
3643	while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
3644		if (strlen(sub_str) == 0)
3645			continue;
3646
3647		ret = kstrtol(sub_str, 0, &params[parameter_size]);
3648		if (ret)
3649			return -EINVAL;
3650		parameter_size++;
3651
3652		while (isspace(*tmp_str))
3653			tmp_str++;
3654	}
3655
3656	*num_of_params = parameter_size;
3657
3658	return 0;
3659}
3660
3661static int
3662amdgpu_distribute_custom_od_settings(struct amdgpu_device *adev,
3663				     enum PP_OD_DPM_TABLE_COMMAND cmd_type,
3664				     const char *in_buf,
3665				     size_t count)
3666{
3667	uint32_t parameter_size = 0;
3668	long parameter[64];
3669	int ret;
3670
3671	if (amdgpu_in_reset(adev))
3672		return -EPERM;
3673	if (adev->in_suspend && !adev->in_runpm)
3674		return -EPERM;
3675
3676	ret = parse_input_od_command_lines(in_buf,
3677					   count,
3678					   &cmd_type,
3679					   parameter,
3680					   &parameter_size);
3681	if (ret)
3682		return ret;
3683
3684	ret = pm_runtime_get_sync(adev->dev);
3685	if (ret < 0)
3686		goto err_out0;
3687
3688	ret = amdgpu_dpm_odn_edit_dpm_table(adev,
3689					    cmd_type,
3690					    parameter,
3691					    parameter_size);
3692	if (ret)
3693		goto err_out1;
3694
3695	if (cmd_type == PP_OD_COMMIT_DPM_TABLE) {
3696		ret = amdgpu_dpm_dispatch_task(adev,
3697					       AMD_PP_TASK_READJUST_POWER_STATE,
3698					       NULL);
3699		if (ret)
3700			goto err_out1;
3701	}
3702
3703	pm_runtime_mark_last_busy(adev->dev);
3704	pm_runtime_put_autosuspend(adev->dev);
3705
3706	return count;
3707
3708err_out1:
3709	pm_runtime_mark_last_busy(adev->dev);
3710err_out0:
3711	pm_runtime_put_autosuspend(adev->dev);
3712
3713	return ret;
3714}
3715
3716/**
3717 * DOC: fan_curve
3718 *
3719 * The amdgpu driver provides a sysfs API for checking and adjusting the fan
3720 * control curve line.
3721 *
3722 * Reading back the file shows you the current settings(temperature in Celsius
3723 * degree and fan speed in pwm) applied to every anchor point of the curve line
3724 * and their permitted ranges if changable.
3725 *
3726 * Writing a desired string(with the format like "anchor_point_index temperature
3727 * fan_speed_in_pwm") to the file, change the settings for the specific anchor
3728 * point accordingly.
3729 *
3730 * When you have finished the editing, write "c" (commit) to the file to commit
3731 * your changes.
3732 *
3733 * If you want to reset to the default value, write "r" (reset) to the file to
3734 * reset them
3735 *
3736 * There are two fan control modes supported: auto and manual. With auto mode,
3737 * PMFW handles the fan speed control(how fan speed reacts to ASIC temperature).
3738 * While with manual mode, users can set their own fan curve line as what
3739 * described here. Normally the ASIC is booted up with auto mode. Any
3740 * settings via this interface will switch the fan control to manual mode
3741 * implicitly.
3742 */
3743static ssize_t fan_curve_show(struct kobject *kobj,
3744			      struct kobj_attribute *attr,
3745			      char *buf)
3746{
3747	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3748	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3749
3750	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_CURVE, buf);
3751}
3752
3753static ssize_t fan_curve_store(struct kobject *kobj,
3754			       struct kobj_attribute *attr,
3755			       const char *buf,
3756			       size_t count)
3757{
3758	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3759	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3760
3761	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3762							     PP_OD_EDIT_FAN_CURVE,
3763							     buf,
3764							     count);
3765}
3766
3767static umode_t fan_curve_visible(struct amdgpu_device *adev)
3768{
3769	umode_t umode = 0000;
3770
3771	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_CURVE_RETRIEVE)
3772		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3773
3774	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_CURVE_SET)
3775		umode |= S_IWUSR;
3776
3777	return umode;
3778}
3779
3780/**
3781 * DOC: acoustic_limit_rpm_threshold
3782 *
3783 * The amdgpu driver provides a sysfs API for checking and adjusting the
3784 * acoustic limit in RPM for fan control.
3785 *
3786 * Reading back the file shows you the current setting and the permitted
3787 * ranges if changable.
3788 *
3789 * Writing an integer to the file, change the setting accordingly.
3790 *
3791 * When you have finished the editing, write "c" (commit) to the file to commit
3792 * your changes.
3793 *
3794 * If you want to reset to the default value, write "r" (reset) to the file to
3795 * reset them
3796 *
3797 * This setting works under auto fan control mode only. It adjusts the PMFW's
3798 * behavior about the maximum speed in RPM the fan can spin. Setting via this
3799 * interface will switch the fan control to auto mode implicitly.
3800 */
3801static ssize_t acoustic_limit_threshold_show(struct kobject *kobj,
3802					     struct kobj_attribute *attr,
3803					     char *buf)
3804{
3805	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3806	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3807
3808	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_ACOUSTIC_LIMIT, buf);
3809}
3810
3811static ssize_t acoustic_limit_threshold_store(struct kobject *kobj,
3812					      struct kobj_attribute *attr,
3813					      const char *buf,
3814					      size_t count)
3815{
3816	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3817	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3818
3819	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3820							     PP_OD_EDIT_ACOUSTIC_LIMIT,
3821							     buf,
3822							     count);
3823}
3824
3825static umode_t acoustic_limit_threshold_visible(struct amdgpu_device *adev)
3826{
3827	umode_t umode = 0000;
3828
3829	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_LIMIT_THRESHOLD_RETRIEVE)
3830		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3831
3832	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_LIMIT_THRESHOLD_SET)
3833		umode |= S_IWUSR;
3834
3835	return umode;
3836}
3837
3838/**
3839 * DOC: acoustic_target_rpm_threshold
3840 *
3841 * The amdgpu driver provides a sysfs API for checking and adjusting the
3842 * acoustic target in RPM for fan control.
3843 *
3844 * Reading back the file shows you the current setting and the permitted
3845 * ranges if changable.
3846 *
3847 * Writing an integer to the file, change the setting accordingly.
3848 *
3849 * When you have finished the editing, write "c" (commit) to the file to commit
3850 * your changes.
3851 *
3852 * If you want to reset to the default value, write "r" (reset) to the file to
3853 * reset them
3854 *
3855 * This setting works under auto fan control mode only. It can co-exist with
3856 * other settings which can work also under auto mode. It adjusts the PMFW's
3857 * behavior about the maximum speed in RPM the fan can spin when ASIC
3858 * temperature is not greater than target temperature. Setting via this
3859 * interface will switch the fan control to auto mode implicitly.
3860 */
3861static ssize_t acoustic_target_threshold_show(struct kobject *kobj,
3862					      struct kobj_attribute *attr,
3863					      char *buf)
3864{
3865	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3866	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3867
3868	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_ACOUSTIC_TARGET, buf);
3869}
3870
3871static ssize_t acoustic_target_threshold_store(struct kobject *kobj,
3872					       struct kobj_attribute *attr,
3873					       const char *buf,
3874					       size_t count)
3875{
3876	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3877	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3878
3879	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3880							     PP_OD_EDIT_ACOUSTIC_TARGET,
3881							     buf,
3882							     count);
3883}
3884
3885static umode_t acoustic_target_threshold_visible(struct amdgpu_device *adev)
3886{
3887	umode_t umode = 0000;
3888
3889	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_TARGET_THRESHOLD_RETRIEVE)
3890		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3891
3892	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_TARGET_THRESHOLD_SET)
3893		umode |= S_IWUSR;
3894
3895	return umode;
3896}
3897
3898/**
3899 * DOC: fan_target_temperature
3900 *
3901 * The amdgpu driver provides a sysfs API for checking and adjusting the
3902 * target tempeature in Celsius degree for fan control.
3903 *
3904 * Reading back the file shows you the current setting and the permitted
3905 * ranges if changable.
3906 *
3907 * Writing an integer to the file, change the setting accordingly.
3908 *
3909 * When you have finished the editing, write "c" (commit) to the file to commit
3910 * your changes.
3911 *
3912 * If you want to reset to the default value, write "r" (reset) to the file to
3913 * reset them
3914 *
3915 * This setting works under auto fan control mode only. It can co-exist with
3916 * other settings which can work also under auto mode. Paring with the
3917 * acoustic_target_rpm_threshold setting, they define the maximum speed in
3918 * RPM the fan can spin when ASIC temperature is not greater than target
3919 * temperature. Setting via this interface will switch the fan control to
3920 * auto mode implicitly.
3921 */
3922static ssize_t fan_target_temperature_show(struct kobject *kobj,
3923					   struct kobj_attribute *attr,
3924					   char *buf)
3925{
3926	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3927	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3928
3929	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_TARGET_TEMPERATURE, buf);
3930}
3931
3932static ssize_t fan_target_temperature_store(struct kobject *kobj,
3933					    struct kobj_attribute *attr,
3934					    const char *buf,
3935					    size_t count)
3936{
3937	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3938	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3939
3940	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3941							     PP_OD_EDIT_FAN_TARGET_TEMPERATURE,
3942							     buf,
3943							     count);
3944}
3945
3946static umode_t fan_target_temperature_visible(struct amdgpu_device *adev)
3947{
3948	umode_t umode = 0000;
3949
3950	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_TARGET_TEMPERATURE_RETRIEVE)
3951		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3952
3953	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_TARGET_TEMPERATURE_SET)
3954		umode |= S_IWUSR;
3955
3956	return umode;
3957}
3958
3959/**
3960 * DOC: fan_minimum_pwm
3961 *
3962 * The amdgpu driver provides a sysfs API for checking and adjusting the
3963 * minimum fan speed in PWM.
3964 *
3965 * Reading back the file shows you the current setting and the permitted
3966 * ranges if changable.
3967 *
3968 * Writing an integer to the file, change the setting accordingly.
3969 *
3970 * When you have finished the editing, write "c" (commit) to the file to commit
3971 * your changes.
3972 *
3973 * If you want to reset to the default value, write "r" (reset) to the file to
3974 * reset them
3975 *
3976 * This setting works under auto fan control mode only. It can co-exist with
3977 * other settings which can work also under auto mode. It adjusts the PMFW's
3978 * behavior about the minimum fan speed in PWM the fan should spin. Setting
3979 * via this interface will switch the fan control to auto mode implicitly.
3980 */
3981static ssize_t fan_minimum_pwm_show(struct kobject *kobj,
3982				    struct kobj_attribute *attr,
3983				    char *buf)
3984{
3985	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3986	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3987
3988	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_MINIMUM_PWM, buf);
3989}
3990
3991static ssize_t fan_minimum_pwm_store(struct kobject *kobj,
3992				     struct kobj_attribute *attr,
3993				     const char *buf,
3994				     size_t count)
3995{
3996	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3997	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3998
3999	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
4000							     PP_OD_EDIT_FAN_MINIMUM_PWM,
4001							     buf,
4002							     count);
4003}
4004
4005static umode_t fan_minimum_pwm_visible(struct amdgpu_device *adev)
4006{
4007	umode_t umode = 0000;
4008
4009	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_MINIMUM_PWM_RETRIEVE)
4010		umode |= S_IRUSR | S_IRGRP | S_IROTH;
4011
4012	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_MINIMUM_PWM_SET)
4013		umode |= S_IWUSR;
4014
4015	return umode;
4016}
4017
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4018static struct od_feature_set amdgpu_od_set = {
4019	.containers = {
4020		[0] = {
4021			.name = "fan_ctrl",
4022			.sub_feature = {
4023				[0] = {
4024					.name = "fan_curve",
4025					.ops = {
4026						.is_visible = fan_curve_visible,
4027						.show = fan_curve_show,
4028						.store = fan_curve_store,
4029					},
4030				},
4031				[1] = {
4032					.name = "acoustic_limit_rpm_threshold",
4033					.ops = {
4034						.is_visible = acoustic_limit_threshold_visible,
4035						.show = acoustic_limit_threshold_show,
4036						.store = acoustic_limit_threshold_store,
4037					},
4038				},
4039				[2] = {
4040					.name = "acoustic_target_rpm_threshold",
4041					.ops = {
4042						.is_visible = acoustic_target_threshold_visible,
4043						.show = acoustic_target_threshold_show,
4044						.store = acoustic_target_threshold_store,
4045					},
4046				},
4047				[3] = {
4048					.name = "fan_target_temperature",
4049					.ops = {
4050						.is_visible = fan_target_temperature_visible,
4051						.show = fan_target_temperature_show,
4052						.store = fan_target_temperature_store,
4053					},
4054				},
4055				[4] = {
4056					.name = "fan_minimum_pwm",
4057					.ops = {
4058						.is_visible = fan_minimum_pwm_visible,
4059						.show = fan_minimum_pwm_show,
4060						.store = fan_minimum_pwm_store,
4061					},
4062				},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4063			},
4064		},
4065	},
4066};
4067
4068static void od_kobj_release(struct kobject *kobj)
4069{
4070	struct od_kobj *od_kobj = container_of(kobj, struct od_kobj, kobj);
4071
4072	kfree(od_kobj);
4073}
4074
4075static const struct kobj_type od_ktype = {
4076	.release	= od_kobj_release,
4077	.sysfs_ops	= &kobj_sysfs_ops,
4078};
4079
4080static void amdgpu_od_set_fini(struct amdgpu_device *adev)
4081{
4082	struct od_kobj *container, *container_next;
4083	struct od_attribute *attribute, *attribute_next;
4084
4085	if (list_empty(&adev->pm.od_kobj_list))
4086		return;
4087
4088	list_for_each_entry_safe(container, container_next,
4089				 &adev->pm.od_kobj_list, entry) {
4090		list_del(&container->entry);
4091
4092		list_for_each_entry_safe(attribute, attribute_next,
4093					 &container->attribute, entry) {
4094			list_del(&attribute->entry);
4095			sysfs_remove_file(&container->kobj,
4096					  &attribute->attribute.attr);
4097			kfree(attribute);
4098		}
4099
4100		kobject_put(&container->kobj);
4101	}
4102}
4103
4104static bool amdgpu_is_od_feature_supported(struct amdgpu_device *adev,
4105					   struct od_feature_ops *feature_ops)
4106{
4107	umode_t mode;
4108
4109	if (!feature_ops->is_visible)
4110		return false;
4111
4112	/*
4113	 * If the feature has no user read and write mode set,
4114	 * we can assume the feature is actually not supported.(?)
4115	 * And the revelant sysfs interface should not be exposed.
4116	 */
4117	mode = feature_ops->is_visible(adev);
4118	if (mode & (S_IRUSR | S_IWUSR))
4119		return true;
4120
4121	return false;
4122}
4123
4124static bool amdgpu_od_is_self_contained(struct amdgpu_device *adev,
4125					struct od_feature_container *container)
4126{
4127	int i;
4128
4129	/*
4130	 * If there is no valid entry within the container, the container
4131	 * is recognized as a self contained container. And the valid entry
4132	 * here means it has a valid naming and it is visible/supported by
4133	 * the ASIC.
4134	 */
4135	for (i = 0; i < ARRAY_SIZE(container->sub_feature); i++) {
4136		if (container->sub_feature[i].name &&
4137		    amdgpu_is_od_feature_supported(adev,
4138			&container->sub_feature[i].ops))
4139			return false;
4140	}
4141
4142	return true;
4143}
4144
4145static int amdgpu_od_set_init(struct amdgpu_device *adev)
4146{
4147	struct od_kobj *top_set, *sub_set;
4148	struct od_attribute *attribute;
4149	struct od_feature_container *container;
4150	struct od_feature_item *feature;
4151	int i, j;
4152	int ret;
4153
4154	/* Setup the top `gpu_od` directory which holds all other OD interfaces */
4155	top_set = kzalloc(sizeof(*top_set), GFP_KERNEL);
4156	if (!top_set)
4157		return -ENOMEM;
4158	list_add(&top_set->entry, &adev->pm.od_kobj_list);
4159
4160	ret = kobject_init_and_add(&top_set->kobj,
4161				   &od_ktype,
4162				   &adev->dev->kobj,
4163				   "%s",
4164				   "gpu_od");
4165	if (ret)
4166		goto err_out;
4167	INIT_LIST_HEAD(&top_set->attribute);
4168	top_set->priv = adev;
4169
4170	for (i = 0; i < ARRAY_SIZE(amdgpu_od_set.containers); i++) {
4171		container = &amdgpu_od_set.containers[i];
4172
4173		if (!container->name)
4174			continue;
4175
4176		/*
4177		 * If there is valid entries within the container, the container
4178		 * will be presented as a sub directory and all its holding entries
4179		 * will be presented as plain files under it.
4180		 * While if there is no valid entry within the container, the container
4181		 * itself will be presented as a plain file under top `gpu_od` directory.
4182		 */
4183		if (amdgpu_od_is_self_contained(adev, container)) {
4184			if (!amdgpu_is_od_feature_supported(adev,
4185			     &container->ops))
4186				continue;
4187
4188			/*
4189			 * The container is presented as a plain file under top `gpu_od`
4190			 * directory.
4191			 */
4192			attribute = kzalloc(sizeof(*attribute), GFP_KERNEL);
4193			if (!attribute) {
4194				ret = -ENOMEM;
4195				goto err_out;
4196			}
4197			list_add(&attribute->entry, &top_set->attribute);
4198
4199			attribute->attribute.attr.mode =
4200					container->ops.is_visible(adev);
4201			attribute->attribute.attr.name = container->name;
4202			attribute->attribute.show =
4203					container->ops.show;
4204			attribute->attribute.store =
4205					container->ops.store;
4206			ret = sysfs_create_file(&top_set->kobj,
4207						&attribute->attribute.attr);
4208			if (ret)
4209				goto err_out;
4210		} else {
4211			/* The container is presented as a sub directory. */
4212			sub_set = kzalloc(sizeof(*sub_set), GFP_KERNEL);
4213			if (!sub_set) {
4214				ret = -ENOMEM;
4215				goto err_out;
4216			}
4217			list_add(&sub_set->entry, &adev->pm.od_kobj_list);
4218
4219			ret = kobject_init_and_add(&sub_set->kobj,
4220						   &od_ktype,
4221						   &top_set->kobj,
4222						   "%s",
4223						   container->name);
4224			if (ret)
4225				goto err_out;
4226			INIT_LIST_HEAD(&sub_set->attribute);
4227			sub_set->priv = adev;
4228
4229			for (j = 0; j < ARRAY_SIZE(container->sub_feature); j++) {
4230				feature = &container->sub_feature[j];
4231				if (!feature->name)
4232					continue;
4233
4234				if (!amdgpu_is_od_feature_supported(adev,
4235				     &feature->ops))
4236					continue;
4237
4238				/*
4239				 * With the container presented as a sub directory, the entry within
4240				 * it is presented as a plain file under the sub directory.
4241				 */
4242				attribute = kzalloc(sizeof(*attribute), GFP_KERNEL);
4243				if (!attribute) {
4244					ret = -ENOMEM;
4245					goto err_out;
4246				}
4247				list_add(&attribute->entry, &sub_set->attribute);
4248
4249				attribute->attribute.attr.mode =
4250						feature->ops.is_visible(adev);
4251				attribute->attribute.attr.name = feature->name;
4252				attribute->attribute.show =
4253						feature->ops.show;
4254				attribute->attribute.store =
4255						feature->ops.store;
4256				ret = sysfs_create_file(&sub_set->kobj,
4257							&attribute->attribute.attr);
4258				if (ret)
4259					goto err_out;
4260			}
4261		}
4262	}
4263
4264	/*
4265	 * If gpu_od is the only member in the list, that means gpu_od is an
4266	 * empty directory, so remove it.
4267	 */
4268	if (list_is_singular(&adev->pm.od_kobj_list))
4269		goto err_out;
4270
4271	return 0;
4272
4273err_out:
4274	amdgpu_od_set_fini(adev);
4275
4276	return ret;
4277}
4278
4279int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
4280{
4281	enum amdgpu_sriov_vf_mode mode;
4282	uint32_t mask = 0;
4283	int ret;
4284
4285	if (adev->pm.sysfs_initialized)
4286		return 0;
4287
4288	INIT_LIST_HEAD(&adev->pm.pm_attr_list);
4289
4290	if (adev->pm.dpm_enabled == 0)
4291		return 0;
4292
4293	mode = amdgpu_virt_get_sriov_vf_mode(adev);
4294
4295	/* under multi-vf mode, the hwmon attributes are all not supported */
4296	if (mode != SRIOV_VF_MODE_MULTI_VF) {
4297		adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
4298														DRIVER_NAME, adev,
4299														hwmon_groups);
4300		if (IS_ERR(adev->pm.int_hwmon_dev)) {
4301			ret = PTR_ERR(adev->pm.int_hwmon_dev);
4302			dev_err(adev->dev, "Unable to register hwmon device: %d\n", ret);
4303			return ret;
4304		}
4305	}
4306
4307	switch (mode) {
4308	case SRIOV_VF_MODE_ONE_VF:
4309		mask = ATTR_FLAG_ONEVF;
4310		break;
4311	case SRIOV_VF_MODE_MULTI_VF:
4312		mask = 0;
4313		break;
4314	case SRIOV_VF_MODE_BARE_METAL:
4315	default:
4316		mask = ATTR_FLAG_MASK_ALL;
4317		break;
4318	}
4319
4320	ret = amdgpu_device_attr_create_groups(adev,
4321					       amdgpu_device_attrs,
4322					       ARRAY_SIZE(amdgpu_device_attrs),
4323					       mask,
4324					       &adev->pm.pm_attr_list);
4325	if (ret)
4326		goto err_out0;
4327
4328	if (amdgpu_dpm_is_overdrive_supported(adev)) {
4329		ret = amdgpu_od_set_init(adev);
4330		if (ret)
4331			goto err_out1;
 
 
 
 
 
 
 
 
 
 
4332	}
4333
4334	adev->pm.sysfs_initialized = true;
4335
4336	return 0;
4337
4338err_out1:
4339	amdgpu_device_attr_remove_groups(adev, &adev->pm.pm_attr_list);
4340err_out0:
4341	if (adev->pm.int_hwmon_dev)
4342		hwmon_device_unregister(adev->pm.int_hwmon_dev);
4343
4344	return ret;
4345}
4346
4347void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
4348{
4349	amdgpu_od_set_fini(adev);
4350
4351	if (adev->pm.int_hwmon_dev)
4352		hwmon_device_unregister(adev->pm.int_hwmon_dev);
4353
4354	amdgpu_device_attr_remove_groups(adev, &adev->pm.pm_attr_list);
4355}
4356
4357/*
4358 * Debugfs info
4359 */
4360#if defined(CONFIG_DEBUG_FS)
4361
4362static void amdgpu_debugfs_prints_cpu_info(struct seq_file *m,
4363					   struct amdgpu_device *adev)
4364{
4365	uint16_t *p_val;
4366	uint32_t size;
4367	int i;
4368	uint32_t num_cpu_cores = amdgpu_dpm_get_num_cpu_cores(adev);
4369
4370	if (amdgpu_dpm_is_cclk_dpm_supported(adev)) {
4371		p_val = kcalloc(num_cpu_cores, sizeof(uint16_t),
4372				GFP_KERNEL);
4373
4374		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_CPU_CLK,
4375					    (void *)p_val, &size)) {
4376			for (i = 0; i < num_cpu_cores; i++)
4377				seq_printf(m, "\t%u MHz (CPU%d)\n",
4378					   *(p_val + i), i);
4379		}
4380
4381		kfree(p_val);
4382	}
4383}
4384
4385static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
4386{
4387	uint32_t mp1_ver = amdgpu_ip_version(adev, MP1_HWIP, 0);
4388	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
4389	uint32_t value;
4390	uint64_t value64 = 0;
4391	uint32_t query = 0;
4392	int size;
4393
4394	/* GPU Clocks */
4395	size = sizeof(value);
4396	seq_printf(m, "GFX Clocks and Power:\n");
4397
4398	amdgpu_debugfs_prints_cpu_info(m, adev);
4399
4400	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
4401		seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
4402	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
4403		seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
4404	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK, (void *)&value, &size))
4405		seq_printf(m, "\t%u MHz (PSTATE_SCLK)\n", value/100);
4406	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK, (void *)&value, &size))
4407		seq_printf(m, "\t%u MHz (PSTATE_MCLK)\n", value/100);
4408	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
4409		seq_printf(m, "\t%u mV (VDDGFX)\n", value);
4410	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
4411		seq_printf(m, "\t%u mV (VDDNB)\n", value);
4412	size = sizeof(uint32_t);
4413	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_AVG_POWER, (void *)&query, &size)) {
4414		if (adev->flags & AMD_IS_APU)
4415			seq_printf(m, "\t%u.%02u W (average SoC including CPU)\n", query >> 8, query & 0xff);
4416		else
4417			seq_printf(m, "\t%u.%02u W (average SoC)\n", query >> 8, query & 0xff);
4418	}
4419	size = sizeof(uint32_t);
4420	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER, (void *)&query, &size)) {
4421		if (adev->flags & AMD_IS_APU)
4422			seq_printf(m, "\t%u.%02u W (current SoC including CPU)\n", query >> 8, query & 0xff);
4423		else
4424			seq_printf(m, "\t%u.%02u W (current SoC)\n", query >> 8, query & 0xff);
4425	}
4426	size = sizeof(value);
4427	seq_printf(m, "\n");
4428
4429	/* GPU Temp */
4430	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
4431		seq_printf(m, "GPU Temperature: %u C\n", value/1000);
4432
4433	/* GPU Load */
4434	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
4435		seq_printf(m, "GPU Load: %u %%\n", value);
4436	/* MEM Load */
4437	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD, (void *)&value, &size))
4438		seq_printf(m, "MEM Load: %u %%\n", value);
 
 
 
4439
4440	seq_printf(m, "\n");
4441
4442	/* SMC feature mask */
4443	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK, (void *)&value64, &size))
4444		seq_printf(m, "SMC Feature Mask: 0x%016llx\n", value64);
4445
4446	/* ASICs greater than CHIP_VEGA20 supports these sensors */
4447	if (gc_ver != IP_VERSION(9, 4, 0) && mp1_ver > IP_VERSION(9, 0, 0)) {
4448		/* VCN clocks */
4449		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCN_POWER_STATE, (void *)&value, &size)) {
4450			if (!value) {
4451				seq_printf(m, "VCN: Powered down\n");
4452			} else {
4453				seq_printf(m, "VCN: Powered up\n");
4454				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
4455					seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
4456				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
4457					seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
4458			}
4459		}
4460		seq_printf(m, "\n");
4461	} else {
4462		/* UVD clocks */
4463		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
4464			if (!value) {
4465				seq_printf(m, "UVD: Powered down\n");
4466			} else {
4467				seq_printf(m, "UVD: Powered up\n");
4468				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
4469					seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
4470				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
4471					seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
4472			}
4473		}
4474		seq_printf(m, "\n");
4475
4476		/* VCE clocks */
4477		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
4478			if (!value) {
4479				seq_printf(m, "VCE: Powered down\n");
4480			} else {
4481				seq_printf(m, "VCE: Powered up\n");
4482				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
4483					seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
4484			}
4485		}
4486	}
4487
4488	return 0;
4489}
4490
4491static const struct cg_flag_name clocks[] = {
4492	{AMD_CG_SUPPORT_GFX_FGCG, "Graphics Fine Grain Clock Gating"},
4493	{AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
4494	{AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
4495	{AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
4496	{AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
4497	{AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
4498	{AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
4499	{AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
4500	{AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
4501	{AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
4502	{AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
4503	{AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
4504	{AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
4505	{AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
4506	{AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
4507	{AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
4508	{AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
4509	{AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
4510	{AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
4511	{AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
4512	{AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
4513	{AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
4514	{AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
4515	{AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
4516	{AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
4517	{AMD_CG_SUPPORT_VCN_MGCG, "VCN Medium Grain Clock Gating"},
4518	{AMD_CG_SUPPORT_HDP_DS, "Host Data Path Deep Sleep"},
4519	{AMD_CG_SUPPORT_HDP_SD, "Host Data Path Shutdown"},
4520	{AMD_CG_SUPPORT_IH_CG, "Interrupt Handler Clock Gating"},
4521	{AMD_CG_SUPPORT_JPEG_MGCG, "JPEG Medium Grain Clock Gating"},
4522	{AMD_CG_SUPPORT_REPEATER_FGCG, "Repeater Fine Grain Clock Gating"},
4523	{AMD_CG_SUPPORT_GFX_PERF_CLK, "Perfmon Clock Gating"},
4524	{AMD_CG_SUPPORT_ATHUB_MGCG, "Address Translation Hub Medium Grain Clock Gating"},
4525	{AMD_CG_SUPPORT_ATHUB_LS, "Address Translation Hub Light Sleep"},
4526	{0, NULL},
4527};
4528
4529static void amdgpu_parse_cg_state(struct seq_file *m, u64 flags)
4530{
4531	int i;
4532
4533	for (i = 0; clocks[i].flag; i++)
4534		seq_printf(m, "\t%s: %s\n", clocks[i].name,
4535			   (flags & clocks[i].flag) ? "On" : "Off");
4536}
4537
4538static int amdgpu_debugfs_pm_info_show(struct seq_file *m, void *unused)
4539{
4540	struct amdgpu_device *adev = (struct amdgpu_device *)m->private;
4541	struct drm_device *dev = adev_to_drm(adev);
4542	u64 flags = 0;
4543	int r;
4544
4545	if (amdgpu_in_reset(adev))
4546		return -EPERM;
4547	if (adev->in_suspend && !adev->in_runpm)
4548		return -EPERM;
4549
4550	r = pm_runtime_get_sync(dev->dev);
4551	if (r < 0) {
4552		pm_runtime_put_autosuspend(dev->dev);
4553		return r;
4554	}
4555
4556	if (amdgpu_dpm_debugfs_print_current_performance_level(adev, m)) {
4557		r = amdgpu_debugfs_pm_info_pp(m, adev);
4558		if (r)
4559			goto out;
4560	}
4561
4562	amdgpu_device_ip_get_clockgating_state(adev, &flags);
4563
4564	seq_printf(m, "Clock Gating Flags Mask: 0x%llx\n", flags);
4565	amdgpu_parse_cg_state(m, flags);
4566	seq_printf(m, "\n");
4567
4568out:
4569	pm_runtime_mark_last_busy(dev->dev);
4570	pm_runtime_put_autosuspend(dev->dev);
4571
4572	return r;
4573}
4574
4575DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_pm_info);
4576
4577/*
4578 * amdgpu_pm_priv_buffer_read - Read memory region allocated to FW
4579 *
4580 * Reads debug memory region allocated to PMFW
4581 */
4582static ssize_t amdgpu_pm_prv_buffer_read(struct file *f, char __user *buf,
4583					 size_t size, loff_t *pos)
4584{
4585	struct amdgpu_device *adev = file_inode(f)->i_private;
4586	size_t smu_prv_buf_size;
4587	void *smu_prv_buf;
4588	int ret = 0;
4589
4590	if (amdgpu_in_reset(adev))
4591		return -EPERM;
4592	if (adev->in_suspend && !adev->in_runpm)
4593		return -EPERM;
4594
4595	ret = amdgpu_dpm_get_smu_prv_buf_details(adev, &smu_prv_buf, &smu_prv_buf_size);
4596	if (ret)
4597		return ret;
4598
4599	if (!smu_prv_buf || !smu_prv_buf_size)
4600		return -EINVAL;
4601
4602	return simple_read_from_buffer(buf, size, pos, smu_prv_buf,
4603				       smu_prv_buf_size);
4604}
4605
4606static const struct file_operations amdgpu_debugfs_pm_prv_buffer_fops = {
4607	.owner = THIS_MODULE,
4608	.open = simple_open,
4609	.read = amdgpu_pm_prv_buffer_read,
4610	.llseek = default_llseek,
4611};
4612
4613#endif
4614
4615void amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
4616{
4617#if defined(CONFIG_DEBUG_FS)
4618	struct drm_minor *minor = adev_to_drm(adev)->primary;
4619	struct dentry *root = minor->debugfs_root;
4620
4621	if (!adev->pm.dpm_enabled)
4622		return;
4623
4624	debugfs_create_file("amdgpu_pm_info", 0444, root, adev,
4625			    &amdgpu_debugfs_pm_info_fops);
4626
4627	if (adev->pm.smu_prv_buffer_size > 0)
4628		debugfs_create_file_size("amdgpu_pm_prv_buffer", 0444, root,
4629					 adev,
4630					 &amdgpu_debugfs_pm_prv_buffer_fops,
4631					 adev->pm.smu_prv_buffer_size);
4632
4633	amdgpu_dpm_stb_debug_fs_init(adev);
4634#endif
4635}
v6.13.7
   1/*
   2 * Copyright 2017 Advanced Micro Devices, Inc.
   3 *
   4 * Permission is hereby granted, free of charge, to any person obtaining a
   5 * copy of this software and associated documentation files (the "Software"),
   6 * to deal in the Software without restriction, including without limitation
   7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
   8 * and/or sell copies of the Software, and to permit persons to whom the
   9 * Software is furnished to do so, subject to the following conditions:
  10 *
  11 * The above copyright notice and this permission notice shall be included in
  12 * all copies or substantial portions of the Software.
  13 *
  14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20 * OTHER DEALINGS IN THE SOFTWARE.
  21 *
  22 * Authors: Rafał Miłecki <zajec5@gmail.com>
  23 *          Alex Deucher <alexdeucher@gmail.com>
  24 */
  25
  26#include "amdgpu.h"
  27#include "amdgpu_drv.h"
  28#include "amdgpu_pm.h"
  29#include "amdgpu_dpm.h"
  30#include "atom.h"
  31#include <linux/pci.h>
  32#include <linux/hwmon.h>
  33#include <linux/hwmon-sysfs.h>
  34#include <linux/nospec.h>
  35#include <linux/pm_runtime.h>
  36#include <asm/processor.h>
  37
  38#define MAX_NUM_OF_FEATURES_PER_SUBSET		8
  39#define MAX_NUM_OF_SUBSETS			8
  40
  41#define DEVICE_ATTR_IS(_name)		(attr_id == device_attr_id__##_name)
  42
  43struct od_attribute {
  44	struct kobj_attribute	attribute;
  45	struct list_head	entry;
  46};
  47
  48struct od_kobj {
  49	struct kobject		kobj;
  50	struct list_head	entry;
  51	struct list_head	attribute;
  52	void			*priv;
  53};
  54
  55struct od_feature_ops {
  56	umode_t (*is_visible)(struct amdgpu_device *adev);
  57	ssize_t (*show)(struct kobject *kobj, struct kobj_attribute *attr,
  58			char *buf);
  59	ssize_t (*store)(struct kobject *kobj, struct kobj_attribute *attr,
  60			 const char *buf, size_t count);
  61};
  62
  63struct od_feature_item {
  64	const char		*name;
  65	struct od_feature_ops	ops;
  66};
  67
  68struct od_feature_container {
  69	char				*name;
  70	struct od_feature_ops		ops;
  71	struct od_feature_item		sub_feature[MAX_NUM_OF_FEATURES_PER_SUBSET];
  72};
  73
  74struct od_feature_set {
  75	struct od_feature_container	containers[MAX_NUM_OF_SUBSETS];
  76};
  77
  78static const struct hwmon_temp_label {
  79	enum PP_HWMON_TEMP channel;
  80	const char *label;
  81} temp_label[] = {
  82	{PP_TEMP_EDGE, "edge"},
  83	{PP_TEMP_JUNCTION, "junction"},
  84	{PP_TEMP_MEM, "mem"},
  85};
  86
  87const char * const amdgpu_pp_profile_name[] = {
  88	"BOOTUP_DEFAULT",
  89	"3D_FULL_SCREEN",
  90	"POWER_SAVING",
  91	"VIDEO",
  92	"VR",
  93	"COMPUTE",
  94	"CUSTOM",
  95	"WINDOW_3D",
  96	"CAPPED",
  97	"UNCAPPED",
  98};
  99
 100/**
 101 * DOC: power_dpm_state
 102 *
 103 * The power_dpm_state file is a legacy interface and is only provided for
 104 * backwards compatibility. The amdgpu driver provides a sysfs API for adjusting
 105 * certain power related parameters.  The file power_dpm_state is used for this.
 106 * It accepts the following arguments:
 107 *
 108 * - battery
 109 *
 110 * - balanced
 111 *
 112 * - performance
 113 *
 114 * battery
 115 *
 116 * On older GPUs, the vbios provided a special power state for battery
 117 * operation.  Selecting battery switched to this state.  This is no
 118 * longer provided on newer GPUs so the option does nothing in that case.
 119 *
 120 * balanced
 121 *
 122 * On older GPUs, the vbios provided a special power state for balanced
 123 * operation.  Selecting balanced switched to this state.  This is no
 124 * longer provided on newer GPUs so the option does nothing in that case.
 125 *
 126 * performance
 127 *
 128 * On older GPUs, the vbios provided a special power state for performance
 129 * operation.  Selecting performance switched to this state.  This is no
 130 * longer provided on newer GPUs so the option does nothing in that case.
 131 *
 132 */
 133
 134static ssize_t amdgpu_get_power_dpm_state(struct device *dev,
 135					  struct device_attribute *attr,
 136					  char *buf)
 137{
 138	struct drm_device *ddev = dev_get_drvdata(dev);
 139	struct amdgpu_device *adev = drm_to_adev(ddev);
 140	enum amd_pm_state_type pm;
 141	int ret;
 142
 143	if (amdgpu_in_reset(adev))
 144		return -EPERM;
 145	if (adev->in_suspend && !adev->in_runpm)
 146		return -EPERM;
 147
 148	ret = pm_runtime_get_if_active(ddev->dev);
 149	if (ret <= 0)
 150		return ret ?: -EPERM;
 
 
 151
 152	amdgpu_dpm_get_current_power_state(adev, &pm);
 153
 
 154	pm_runtime_put_autosuspend(ddev->dev);
 155
 156	return sysfs_emit(buf, "%s\n",
 157			  (pm == POWER_STATE_TYPE_BATTERY) ? "battery" :
 158			  (pm == POWER_STATE_TYPE_BALANCED) ? "balanced" : "performance");
 159}
 160
 161static ssize_t amdgpu_set_power_dpm_state(struct device *dev,
 162					  struct device_attribute *attr,
 163					  const char *buf,
 164					  size_t count)
 165{
 166	struct drm_device *ddev = dev_get_drvdata(dev);
 167	struct amdgpu_device *adev = drm_to_adev(ddev);
 168	enum amd_pm_state_type  state;
 169	int ret;
 170
 171	if (amdgpu_in_reset(adev))
 172		return -EPERM;
 173	if (adev->in_suspend && !adev->in_runpm)
 174		return -EPERM;
 175
 176	if (strncmp("battery", buf, strlen("battery")) == 0)
 177		state = POWER_STATE_TYPE_BATTERY;
 178	else if (strncmp("balanced", buf, strlen("balanced")) == 0)
 179		state = POWER_STATE_TYPE_BALANCED;
 180	else if (strncmp("performance", buf, strlen("performance")) == 0)
 181		state = POWER_STATE_TYPE_PERFORMANCE;
 182	else
 183		return -EINVAL;
 184
 185	ret = pm_runtime_resume_and_get(ddev->dev);
 186	if (ret < 0)
 
 187		return ret;
 
 188
 189	amdgpu_dpm_set_power_state(adev, state);
 190
 191	pm_runtime_mark_last_busy(ddev->dev);
 192	pm_runtime_put_autosuspend(ddev->dev);
 193
 194	return count;
 195}
 196
 197
 198/**
 199 * DOC: power_dpm_force_performance_level
 200 *
 201 * The amdgpu driver provides a sysfs API for adjusting certain power
 202 * related parameters.  The file power_dpm_force_performance_level is
 203 * used for this.  It accepts the following arguments:
 204 *
 205 * - auto
 206 *
 207 * - low
 208 *
 209 * - high
 210 *
 211 * - manual
 212 *
 213 * - profile_standard
 214 *
 215 * - profile_min_sclk
 216 *
 217 * - profile_min_mclk
 218 *
 219 * - profile_peak
 220 *
 221 * auto
 222 *
 223 * When auto is selected, the driver will attempt to dynamically select
 224 * the optimal power profile for current conditions in the driver.
 225 *
 226 * low
 227 *
 228 * When low is selected, the clocks are forced to the lowest power state.
 229 *
 230 * high
 231 *
 232 * When high is selected, the clocks are forced to the highest power state.
 233 *
 234 * manual
 235 *
 236 * When manual is selected, the user can manually adjust which power states
 237 * are enabled for each clock domain via the sysfs pp_dpm_mclk, pp_dpm_sclk,
 238 * and pp_dpm_pcie files and adjust the power state transition heuristics
 239 * via the pp_power_profile_mode sysfs file.
 240 *
 241 * profile_standard
 242 * profile_min_sclk
 243 * profile_min_mclk
 244 * profile_peak
 245 *
 246 * When the profiling modes are selected, clock and power gating are
 247 * disabled and the clocks are set for different profiling cases. This
 248 * mode is recommended for profiling specific work loads where you do
 249 * not want clock or power gating for clock fluctuation to interfere
 250 * with your results. profile_standard sets the clocks to a fixed clock
 251 * level which varies from asic to asic.  profile_min_sclk forces the sclk
 252 * to the lowest level.  profile_min_mclk forces the mclk to the lowest level.
 253 * profile_peak sets all clocks (mclk, sclk, pcie) to the highest levels.
 254 *
 255 */
 256
 257static ssize_t amdgpu_get_power_dpm_force_performance_level(struct device *dev,
 258							    struct device_attribute *attr,
 259							    char *buf)
 260{
 261	struct drm_device *ddev = dev_get_drvdata(dev);
 262	struct amdgpu_device *adev = drm_to_adev(ddev);
 263	enum amd_dpm_forced_level level = 0xff;
 264	int ret;
 265
 266	if (amdgpu_in_reset(adev))
 267		return -EPERM;
 268	if (adev->in_suspend && !adev->in_runpm)
 269		return -EPERM;
 270
 271	ret = pm_runtime_get_if_active(ddev->dev);
 272	if (ret <= 0)
 273		return ret ?: -EPERM;
 
 
 274
 275	level = amdgpu_dpm_get_performance_level(adev);
 276
 
 277	pm_runtime_put_autosuspend(ddev->dev);
 278
 279	return sysfs_emit(buf, "%s\n",
 280			  (level == AMD_DPM_FORCED_LEVEL_AUTO) ? "auto" :
 281			  (level == AMD_DPM_FORCED_LEVEL_LOW) ? "low" :
 282			  (level == AMD_DPM_FORCED_LEVEL_HIGH) ? "high" :
 283			  (level == AMD_DPM_FORCED_LEVEL_MANUAL) ? "manual" :
 284			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD) ? "profile_standard" :
 285			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK) ? "profile_min_sclk" :
 286			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK) ? "profile_min_mclk" :
 287			  (level == AMD_DPM_FORCED_LEVEL_PROFILE_PEAK) ? "profile_peak" :
 288			  (level == AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM) ? "perf_determinism" :
 289			  "unknown");
 290}
 291
 292static ssize_t amdgpu_set_power_dpm_force_performance_level(struct device *dev,
 293							    struct device_attribute *attr,
 294							    const char *buf,
 295							    size_t count)
 296{
 297	struct drm_device *ddev = dev_get_drvdata(dev);
 298	struct amdgpu_device *adev = drm_to_adev(ddev);
 299	enum amd_dpm_forced_level level;
 300	int ret = 0;
 301
 302	if (amdgpu_in_reset(adev))
 303		return -EPERM;
 304	if (adev->in_suspend && !adev->in_runpm)
 305		return -EPERM;
 306
 307	if (strncmp("low", buf, strlen("low")) == 0) {
 308		level = AMD_DPM_FORCED_LEVEL_LOW;
 309	} else if (strncmp("high", buf, strlen("high")) == 0) {
 310		level = AMD_DPM_FORCED_LEVEL_HIGH;
 311	} else if (strncmp("auto", buf, strlen("auto")) == 0) {
 312		level = AMD_DPM_FORCED_LEVEL_AUTO;
 313	} else if (strncmp("manual", buf, strlen("manual")) == 0) {
 314		level = AMD_DPM_FORCED_LEVEL_MANUAL;
 315	} else if (strncmp("profile_exit", buf, strlen("profile_exit")) == 0) {
 316		level = AMD_DPM_FORCED_LEVEL_PROFILE_EXIT;
 317	} else if (strncmp("profile_standard", buf, strlen("profile_standard")) == 0) {
 318		level = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD;
 319	} else if (strncmp("profile_min_sclk", buf, strlen("profile_min_sclk")) == 0) {
 320		level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK;
 321	} else if (strncmp("profile_min_mclk", buf, strlen("profile_min_mclk")) == 0) {
 322		level = AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK;
 323	} else if (strncmp("profile_peak", buf, strlen("profile_peak")) == 0) {
 324		level = AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
 325	} else if (strncmp("perf_determinism", buf, strlen("perf_determinism")) == 0) {
 326		level = AMD_DPM_FORCED_LEVEL_PERF_DETERMINISM;
 327	}  else {
 328		return -EINVAL;
 329	}
 330
 331	ret = pm_runtime_resume_and_get(ddev->dev);
 332	if (ret < 0)
 
 333		return ret;
 
 334
 335	mutex_lock(&adev->pm.stable_pstate_ctx_lock);
 336	if (amdgpu_dpm_force_performance_level(adev, level)) {
 337		pm_runtime_mark_last_busy(ddev->dev);
 338		pm_runtime_put_autosuspend(ddev->dev);
 339		mutex_unlock(&adev->pm.stable_pstate_ctx_lock);
 340		return -EINVAL;
 341	}
 342	/* override whatever a user ctx may have set */
 343	adev->pm.stable_pstate_ctx = NULL;
 344	mutex_unlock(&adev->pm.stable_pstate_ctx_lock);
 345
 346	pm_runtime_mark_last_busy(ddev->dev);
 347	pm_runtime_put_autosuspend(ddev->dev);
 348
 349	return count;
 350}
 351
 352static ssize_t amdgpu_get_pp_num_states(struct device *dev,
 353		struct device_attribute *attr,
 354		char *buf)
 355{
 356	struct drm_device *ddev = dev_get_drvdata(dev);
 357	struct amdgpu_device *adev = drm_to_adev(ddev);
 358	struct pp_states_info data;
 359	uint32_t i;
 360	int buf_len, ret;
 361
 362	if (amdgpu_in_reset(adev))
 363		return -EPERM;
 364	if (adev->in_suspend && !adev->in_runpm)
 365		return -EPERM;
 366
 367	ret = pm_runtime_get_if_active(ddev->dev);
 368	if (ret <= 0)
 369		return ret ?: -EPERM;
 
 
 370
 371	if (amdgpu_dpm_get_pp_num_states(adev, &data))
 372		memset(&data, 0, sizeof(data));
 373
 
 374	pm_runtime_put_autosuspend(ddev->dev);
 375
 376	buf_len = sysfs_emit(buf, "states: %d\n", data.nums);
 377	for (i = 0; i < data.nums; i++)
 378		buf_len += sysfs_emit_at(buf, buf_len, "%d %s\n", i,
 379				(data.states[i] == POWER_STATE_TYPE_INTERNAL_BOOT) ? "boot" :
 380				(data.states[i] == POWER_STATE_TYPE_BATTERY) ? "battery" :
 381				(data.states[i] == POWER_STATE_TYPE_BALANCED) ? "balanced" :
 382				(data.states[i] == POWER_STATE_TYPE_PERFORMANCE) ? "performance" : "default");
 383
 384	return buf_len;
 385}
 386
 387static ssize_t amdgpu_get_pp_cur_state(struct device *dev,
 388		struct device_attribute *attr,
 389		char *buf)
 390{
 391	struct drm_device *ddev = dev_get_drvdata(dev);
 392	struct amdgpu_device *adev = drm_to_adev(ddev);
 393	struct pp_states_info data = {0};
 394	enum amd_pm_state_type pm = 0;
 395	int i = 0, ret = 0;
 396
 397	if (amdgpu_in_reset(adev))
 398		return -EPERM;
 399	if (adev->in_suspend && !adev->in_runpm)
 400		return -EPERM;
 401
 402	ret = pm_runtime_get_if_active(ddev->dev);
 403	if (ret <= 0)
 404		return ret ?: -EPERM;
 
 
 405
 406	amdgpu_dpm_get_current_power_state(adev, &pm);
 407
 408	ret = amdgpu_dpm_get_pp_num_states(adev, &data);
 409
 
 410	pm_runtime_put_autosuspend(ddev->dev);
 411
 412	if (ret)
 413		return ret;
 414
 415	for (i = 0; i < data.nums; i++) {
 416		if (pm == data.states[i])
 417			break;
 418	}
 419
 420	if (i == data.nums)
 421		i = -EINVAL;
 422
 423	return sysfs_emit(buf, "%d\n", i);
 424}
 425
 426static ssize_t amdgpu_get_pp_force_state(struct device *dev,
 427		struct device_attribute *attr,
 428		char *buf)
 429{
 430	struct drm_device *ddev = dev_get_drvdata(dev);
 431	struct amdgpu_device *adev = drm_to_adev(ddev);
 432
 433	if (amdgpu_in_reset(adev))
 434		return -EPERM;
 435	if (adev->in_suspend && !adev->in_runpm)
 436		return -EPERM;
 437
 438	if (adev->pm.pp_force_state_enabled)
 439		return amdgpu_get_pp_cur_state(dev, attr, buf);
 440	else
 441		return sysfs_emit(buf, "\n");
 442}
 443
 444static ssize_t amdgpu_set_pp_force_state(struct device *dev,
 445		struct device_attribute *attr,
 446		const char *buf,
 447		size_t count)
 448{
 449	struct drm_device *ddev = dev_get_drvdata(dev);
 450	struct amdgpu_device *adev = drm_to_adev(ddev);
 451	enum amd_pm_state_type state = 0;
 452	struct pp_states_info data;
 453	unsigned long idx;
 454	int ret;
 455
 456	if (amdgpu_in_reset(adev))
 457		return -EPERM;
 458	if (adev->in_suspend && !adev->in_runpm)
 459		return -EPERM;
 460
 461	adev->pm.pp_force_state_enabled = false;
 462
 463	if (strlen(buf) == 1)
 464		return count;
 465
 466	ret = kstrtoul(buf, 0, &idx);
 467	if (ret || idx >= ARRAY_SIZE(data.states))
 468		return -EINVAL;
 469
 470	idx = array_index_nospec(idx, ARRAY_SIZE(data.states));
 471
 472	ret = pm_runtime_resume_and_get(ddev->dev);
 473	if (ret < 0)
 
 474		return ret;
 
 475
 476	ret = amdgpu_dpm_get_pp_num_states(adev, &data);
 477	if (ret)
 478		goto err_out;
 479
 480	state = data.states[idx];
 481
 482	/* only set user selected power states */
 483	if (state != POWER_STATE_TYPE_INTERNAL_BOOT &&
 484	    state != POWER_STATE_TYPE_DEFAULT) {
 485		ret = amdgpu_dpm_dispatch_task(adev,
 486				AMD_PP_TASK_ENABLE_USER_STATE, &state);
 487		if (ret)
 488			goto err_out;
 489
 490		adev->pm.pp_force_state_enabled = true;
 491	}
 492
 493	pm_runtime_mark_last_busy(ddev->dev);
 494	pm_runtime_put_autosuspend(ddev->dev);
 495
 496	return count;
 497
 498err_out:
 499	pm_runtime_mark_last_busy(ddev->dev);
 500	pm_runtime_put_autosuspend(ddev->dev);
 501	return ret;
 502}
 503
 504/**
 505 * DOC: pp_table
 506 *
 507 * The amdgpu driver provides a sysfs API for uploading new powerplay
 508 * tables.  The file pp_table is used for this.  Reading the file
 509 * will dump the current power play table.  Writing to the file
 510 * will attempt to upload a new powerplay table and re-initialize
 511 * powerplay using that new table.
 512 *
 513 */
 514
 515static ssize_t amdgpu_get_pp_table(struct device *dev,
 516		struct device_attribute *attr,
 517		char *buf)
 518{
 519	struct drm_device *ddev = dev_get_drvdata(dev);
 520	struct amdgpu_device *adev = drm_to_adev(ddev);
 521	char *table = NULL;
 522	int size, ret;
 523
 524	if (amdgpu_in_reset(adev))
 525		return -EPERM;
 526	if (adev->in_suspend && !adev->in_runpm)
 527		return -EPERM;
 528
 529	ret = pm_runtime_get_if_active(ddev->dev);
 530	if (ret <= 0)
 531		return ret ?: -EPERM;
 
 
 532
 533	size = amdgpu_dpm_get_pp_table(adev, &table);
 534
 
 535	pm_runtime_put_autosuspend(ddev->dev);
 536
 537	if (size <= 0)
 538		return size;
 539
 540	if (size >= PAGE_SIZE)
 541		size = PAGE_SIZE - 1;
 542
 543	memcpy(buf, table, size);
 544
 545	return size;
 546}
 547
 548static ssize_t amdgpu_set_pp_table(struct device *dev,
 549		struct device_attribute *attr,
 550		const char *buf,
 551		size_t count)
 552{
 553	struct drm_device *ddev = dev_get_drvdata(dev);
 554	struct amdgpu_device *adev = drm_to_adev(ddev);
 555	int ret = 0;
 556
 557	if (amdgpu_in_reset(adev))
 558		return -EPERM;
 559	if (adev->in_suspend && !adev->in_runpm)
 560		return -EPERM;
 561
 562	ret = pm_runtime_resume_and_get(ddev->dev);
 563	if (ret < 0)
 
 564		return ret;
 
 565
 566	ret = amdgpu_dpm_set_pp_table(adev, buf, count);
 567
 568	pm_runtime_mark_last_busy(ddev->dev);
 569	pm_runtime_put_autosuspend(ddev->dev);
 570
 571	if (ret)
 572		return ret;
 573
 574	return count;
 575}
 576
 577/**
 578 * DOC: pp_od_clk_voltage
 579 *
 580 * The amdgpu driver provides a sysfs API for adjusting the clocks and voltages
 581 * in each power level within a power state.  The pp_od_clk_voltage is used for
 582 * this.
 583 *
 584 * Note that the actual memory controller clock rate are exposed, not
 585 * the effective memory clock of the DRAMs. To translate it, use the
 586 * following formula:
 587 *
 588 * Clock conversion (Mhz):
 589 *
 590 * HBM: effective_memory_clock = memory_controller_clock * 1
 591 *
 592 * G5: effective_memory_clock = memory_controller_clock * 1
 593 *
 594 * G6: effective_memory_clock = memory_controller_clock * 2
 595 *
 596 * DRAM data rate (MT/s):
 597 *
 598 * HBM: effective_memory_clock * 2 = data_rate
 599 *
 600 * G5: effective_memory_clock * 4 = data_rate
 601 *
 602 * G6: effective_memory_clock * 8 = data_rate
 603 *
 604 * Bandwidth (MB/s):
 605 *
 606 * data_rate * vram_bit_width / 8 = memory_bandwidth
 607 *
 608 * Some examples:
 609 *
 610 * G5 on RX460:
 611 *
 612 * memory_controller_clock = 1750 Mhz
 613 *
 614 * effective_memory_clock = 1750 Mhz * 1 = 1750 Mhz
 615 *
 616 * data rate = 1750 * 4 = 7000 MT/s
 617 *
 618 * memory_bandwidth = 7000 * 128 bits / 8 = 112000 MB/s
 619 *
 620 * G6 on RX5700:
 621 *
 622 * memory_controller_clock = 875 Mhz
 623 *
 624 * effective_memory_clock = 875 Mhz * 2 = 1750 Mhz
 625 *
 626 * data rate = 1750 * 8 = 14000 MT/s
 627 *
 628 * memory_bandwidth = 14000 * 256 bits / 8 = 448000 MB/s
 629 *
 630 * < For Vega10 and previous ASICs >
 631 *
 632 * Reading the file will display:
 633 *
 634 * - a list of engine clock levels and voltages labeled OD_SCLK
 635 *
 636 * - a list of memory clock levels and voltages labeled OD_MCLK
 637 *
 638 * - a list of valid ranges for sclk, mclk, and voltage labeled OD_RANGE
 639 *
 640 * To manually adjust these settings, first select manual using
 641 * power_dpm_force_performance_level. Enter a new value for each
 642 * level by writing a string that contains "s/m level clock voltage" to
 643 * the file.  E.g., "s 1 500 820" will update sclk level 1 to be 500 MHz
 644 * at 820 mV; "m 0 350 810" will update mclk level 0 to be 350 MHz at
 645 * 810 mV.  When you have edited all of the states as needed, write
 646 * "c" (commit) to the file to commit your changes.  If you want to reset to the
 647 * default power levels, write "r" (reset) to the file to reset them.
 648 *
 649 *
 650 * < For Vega20 and newer ASICs >
 651 *
 652 * Reading the file will display:
 653 *
 654 * - minimum and maximum engine clock labeled OD_SCLK
 655 *
 656 * - minimum(not available for Vega20 and Navi1x) and maximum memory
 657 *   clock labeled OD_MCLK
 658 *
 659 * - three <frequency, voltage> points labeled OD_VDDC_CURVE.
 660 *   They can be used to calibrate the sclk voltage curve. This is
 661 *   available for Vega20 and NV1X.
 662 *
 663 * - voltage offset(in mV) applied on target voltage calculation.
 664 *   This is available for Sienna Cichlid, Navy Flounder, Dimgrey
 665 *   Cavefish and some later SMU13 ASICs. For these ASICs, the target
 666 *   voltage calculation can be illustrated by "voltage = voltage
 667 *   calculated from v/f curve + overdrive vddgfx offset"
 668 *
 669 * - a list of valid ranges for sclk, mclk, voltage curve points
 670 *   or voltage offset labeled OD_RANGE
 671 *
 672 * < For APUs >
 673 *
 674 * Reading the file will display:
 675 *
 676 * - minimum and maximum engine clock labeled OD_SCLK
 677 *
 678 * - a list of valid ranges for sclk labeled OD_RANGE
 679 *
 680 * < For VanGogh >
 681 *
 682 * Reading the file will display:
 683 *
 684 * - minimum and maximum engine clock labeled OD_SCLK
 685 * - minimum and maximum core clocks labeled OD_CCLK
 686 *
 687 * - a list of valid ranges for sclk and cclk labeled OD_RANGE
 688 *
 689 * To manually adjust these settings:
 690 *
 691 * - First select manual using power_dpm_force_performance_level
 692 *
 693 * - For clock frequency setting, enter a new value by writing a
 694 *   string that contains "s/m index clock" to the file. The index
 695 *   should be 0 if to set minimum clock. And 1 if to set maximum
 696 *   clock. E.g., "s 0 500" will update minimum sclk to be 500 MHz.
 697 *   "m 1 800" will update maximum mclk to be 800Mhz. For core
 698 *   clocks on VanGogh, the string contains "p core index clock".
 699 *   E.g., "p 2 0 800" would set the minimum core clock on core
 700 *   2 to 800Mhz.
 701 *
 702 *   For sclk voltage curve supported by Vega20 and NV1X, enter the new
 703 *   values by writing a string that contains "vc point clock voltage"
 704 *   to the file. The points are indexed by 0, 1 and 2. E.g., "vc 0 300
 705 *   600" will update point1 with clock set as 300Mhz and voltage as 600mV.
 706 *   "vc 2 1000 1000" will update point3 with clock set as 1000Mhz and
 707 *   voltage 1000mV.
 708 *
 709 *   For voltage offset supported by Sienna Cichlid, Navy Flounder, Dimgrey
 710 *   Cavefish and some later SMU13 ASICs, enter the new value by writing a
 711 *   string that contains "vo offset". E.g., "vo -10" will update the extra
 712 *   voltage offset applied to the whole v/f curve line as -10mv.
 713 *
 714 * - When you have edited all of the states as needed, write "c" (commit)
 715 *   to the file to commit your changes
 716 *
 717 * - If you want to reset to the default power levels, write "r" (reset)
 718 *   to the file to reset them
 719 *
 720 */
 721
 722static ssize_t amdgpu_set_pp_od_clk_voltage(struct device *dev,
 723		struct device_attribute *attr,
 724		const char *buf,
 725		size_t count)
 726{
 727	struct drm_device *ddev = dev_get_drvdata(dev);
 728	struct amdgpu_device *adev = drm_to_adev(ddev);
 729	int ret;
 730	uint32_t parameter_size = 0;
 731	long parameter[64];
 732	char buf_cpy[128];
 733	char *tmp_str;
 734	char *sub_str;
 735	const char delimiter[3] = {' ', '\n', '\0'};
 736	uint32_t type;
 737
 738	if (amdgpu_in_reset(adev))
 739		return -EPERM;
 740	if (adev->in_suspend && !adev->in_runpm)
 741		return -EPERM;
 742
 743	if (count > 127 || count == 0)
 744		return -EINVAL;
 745
 746	if (*buf == 's')
 747		type = PP_OD_EDIT_SCLK_VDDC_TABLE;
 748	else if (*buf == 'p')
 749		type = PP_OD_EDIT_CCLK_VDDC_TABLE;
 750	else if (*buf == 'm')
 751		type = PP_OD_EDIT_MCLK_VDDC_TABLE;
 752	else if (*buf == 'r')
 753		type = PP_OD_RESTORE_DEFAULT_TABLE;
 754	else if (*buf == 'c')
 755		type = PP_OD_COMMIT_DPM_TABLE;
 756	else if (!strncmp(buf, "vc", 2))
 757		type = PP_OD_EDIT_VDDC_CURVE;
 758	else if (!strncmp(buf, "vo", 2))
 759		type = PP_OD_EDIT_VDDGFX_OFFSET;
 760	else
 761		return -EINVAL;
 762
 763	memcpy(buf_cpy, buf, count);
 764	buf_cpy[count] = 0;
 765
 766	tmp_str = buf_cpy;
 767
 768	if ((type == PP_OD_EDIT_VDDC_CURVE) ||
 769	     (type == PP_OD_EDIT_VDDGFX_OFFSET))
 770		tmp_str++;
 771	while (isspace(*++tmp_str));
 772
 773	while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
 774		if (strlen(sub_str) == 0)
 775			continue;
 776		ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
 777		if (ret)
 778			return -EINVAL;
 779		parameter_size++;
 780
 781		if (!tmp_str)
 782			break;
 783
 784		while (isspace(*tmp_str))
 785			tmp_str++;
 786	}
 787
 788	ret = pm_runtime_resume_and_get(ddev->dev);
 789	if (ret < 0)
 
 790		return ret;
 
 791
 792	if (amdgpu_dpm_set_fine_grain_clk_vol(adev,
 793					      type,
 794					      parameter,
 795					      parameter_size))
 796		goto err_out;
 797
 798	if (amdgpu_dpm_odn_edit_dpm_table(adev, type,
 799					  parameter, parameter_size))
 800		goto err_out;
 801
 802	if (type == PP_OD_COMMIT_DPM_TABLE) {
 803		if (amdgpu_dpm_dispatch_task(adev,
 804					     AMD_PP_TASK_READJUST_POWER_STATE,
 805					     NULL))
 806			goto err_out;
 807	}
 808
 809	pm_runtime_mark_last_busy(ddev->dev);
 810	pm_runtime_put_autosuspend(ddev->dev);
 811
 812	return count;
 813
 814err_out:
 815	pm_runtime_mark_last_busy(ddev->dev);
 816	pm_runtime_put_autosuspend(ddev->dev);
 817	return -EINVAL;
 818}
 819
 820static ssize_t amdgpu_get_pp_od_clk_voltage(struct device *dev,
 821		struct device_attribute *attr,
 822		char *buf)
 823{
 824	struct drm_device *ddev = dev_get_drvdata(dev);
 825	struct amdgpu_device *adev = drm_to_adev(ddev);
 826	int size = 0;
 827	int ret;
 828	enum pp_clock_type od_clocks[6] = {
 829		OD_SCLK,
 830		OD_MCLK,
 831		OD_VDDC_CURVE,
 832		OD_RANGE,
 833		OD_VDDGFX_OFFSET,
 834		OD_CCLK,
 835	};
 836	uint clk_index;
 837
 838	if (amdgpu_in_reset(adev))
 839		return -EPERM;
 840	if (adev->in_suspend && !adev->in_runpm)
 841		return -EPERM;
 842
 843	ret = pm_runtime_get_if_active(ddev->dev);
 844	if (ret <= 0)
 845		return ret ?: -EPERM;
 
 
 846
 847	for (clk_index = 0 ; clk_index < 6 ; clk_index++) {
 848		ret = amdgpu_dpm_emit_clock_levels(adev, od_clocks[clk_index], buf, &size);
 849		if (ret)
 850			break;
 851	}
 852	if (ret == -ENOENT) {
 853		size = amdgpu_dpm_print_clock_levels(adev, OD_SCLK, buf);
 854		size += amdgpu_dpm_print_clock_levels(adev, OD_MCLK, buf + size);
 855		size += amdgpu_dpm_print_clock_levels(adev, OD_VDDC_CURVE, buf + size);
 856		size += amdgpu_dpm_print_clock_levels(adev, OD_VDDGFX_OFFSET, buf + size);
 857		size += amdgpu_dpm_print_clock_levels(adev, OD_RANGE, buf + size);
 858		size += amdgpu_dpm_print_clock_levels(adev, OD_CCLK, buf + size);
 859	}
 860
 861	if (size == 0)
 862		size = sysfs_emit(buf, "\n");
 863
 
 864	pm_runtime_put_autosuspend(ddev->dev);
 865
 866	return size;
 867}
 868
 869/**
 870 * DOC: pp_features
 871 *
 872 * The amdgpu driver provides a sysfs API for adjusting what powerplay
 873 * features to be enabled. The file pp_features is used for this. And
 874 * this is only available for Vega10 and later dGPUs.
 875 *
 876 * Reading back the file will show you the followings:
 877 * - Current ppfeature masks
 878 * - List of the all supported powerplay features with their naming,
 879 *   bitmasks and enablement status('Y'/'N' means "enabled"/"disabled").
 880 *
 881 * To manually enable or disable a specific feature, just set or clear
 882 * the corresponding bit from original ppfeature masks and input the
 883 * new ppfeature masks.
 884 */
 885static ssize_t amdgpu_set_pp_features(struct device *dev,
 886				      struct device_attribute *attr,
 887				      const char *buf,
 888				      size_t count)
 889{
 890	struct drm_device *ddev = dev_get_drvdata(dev);
 891	struct amdgpu_device *adev = drm_to_adev(ddev);
 892	uint64_t featuremask;
 893	int ret;
 894
 895	if (amdgpu_in_reset(adev))
 896		return -EPERM;
 897	if (adev->in_suspend && !adev->in_runpm)
 898		return -EPERM;
 899
 900	ret = kstrtou64(buf, 0, &featuremask);
 901	if (ret)
 902		return -EINVAL;
 903
 904	ret = pm_runtime_resume_and_get(ddev->dev);
 905	if (ret < 0)
 
 906		return ret;
 
 907
 908	ret = amdgpu_dpm_set_ppfeature_status(adev, featuremask);
 909
 910	pm_runtime_mark_last_busy(ddev->dev);
 911	pm_runtime_put_autosuspend(ddev->dev);
 912
 913	if (ret)
 914		return -EINVAL;
 915
 916	return count;
 917}
 918
 919static ssize_t amdgpu_get_pp_features(struct device *dev,
 920				      struct device_attribute *attr,
 921				      char *buf)
 922{
 923	struct drm_device *ddev = dev_get_drvdata(dev);
 924	struct amdgpu_device *adev = drm_to_adev(ddev);
 925	ssize_t size;
 926	int ret;
 927
 928	if (amdgpu_in_reset(adev))
 929		return -EPERM;
 930	if (adev->in_suspend && !adev->in_runpm)
 931		return -EPERM;
 932
 933	ret = pm_runtime_get_if_active(ddev->dev);
 934	if (ret <= 0)
 935		return ret ?: -EPERM;
 
 
 936
 937	size = amdgpu_dpm_get_ppfeature_status(adev, buf);
 938	if (size <= 0)
 939		size = sysfs_emit(buf, "\n");
 940
 
 941	pm_runtime_put_autosuspend(ddev->dev);
 942
 943	return size;
 944}
 945
 946/**
 947 * DOC: pp_dpm_sclk pp_dpm_mclk pp_dpm_socclk pp_dpm_fclk pp_dpm_dcefclk pp_dpm_pcie
 948 *
 949 * The amdgpu driver provides a sysfs API for adjusting what power levels
 950 * are enabled for a given power state.  The files pp_dpm_sclk, pp_dpm_mclk,
 951 * pp_dpm_socclk, pp_dpm_fclk, pp_dpm_dcefclk and pp_dpm_pcie are used for
 952 * this.
 953 *
 954 * pp_dpm_socclk and pp_dpm_dcefclk interfaces are only available for
 955 * Vega10 and later ASICs.
 956 * pp_dpm_fclk interface is only available for Vega20 and later ASICs.
 957 *
 958 * Reading back the files will show you the available power levels within
 959 * the power state and the clock information for those levels. If deep sleep is
 960 * applied to a clock, the level will be denoted by a special level 'S:'
 961 * E.g., ::
 962 *
 963 *  S: 19Mhz *
 964 *  0: 615Mhz
 965 *  1: 800Mhz
 966 *  2: 888Mhz
 967 *  3: 1000Mhz
 968 *
 969 *
 970 * To manually adjust these states, first select manual using
 971 * power_dpm_force_performance_level.
 972 * Secondly, enter a new value for each level by inputing a string that
 973 * contains " echo xx xx xx > pp_dpm_sclk/mclk/pcie"
 974 * E.g.,
 975 *
 976 * .. code-block:: bash
 977 *
 978 *	echo "4 5 6" > pp_dpm_sclk
 979 *
 980 * will enable sclk levels 4, 5, and 6.
 981 *
 982 * NOTE: change to the dcefclk max dpm level is not supported now
 983 */
 984
 985static ssize_t amdgpu_get_pp_dpm_clock(struct device *dev,
 986		enum pp_clock_type type,
 987		char *buf)
 988{
 989	struct drm_device *ddev = dev_get_drvdata(dev);
 990	struct amdgpu_device *adev = drm_to_adev(ddev);
 991	int size = 0;
 992	int ret = 0;
 993
 994	if (amdgpu_in_reset(adev))
 995		return -EPERM;
 996	if (adev->in_suspend && !adev->in_runpm)
 997		return -EPERM;
 998
 999	ret = pm_runtime_get_if_active(ddev->dev);
1000	if (ret <= 0)
1001		return ret ?: -EPERM;
 
 
1002
1003	ret = amdgpu_dpm_emit_clock_levels(adev, type, buf, &size);
1004	if (ret == -ENOENT)
1005		size = amdgpu_dpm_print_clock_levels(adev, type, buf);
1006
1007	if (size == 0)
1008		size = sysfs_emit(buf, "\n");
1009
 
1010	pm_runtime_put_autosuspend(ddev->dev);
1011
1012	return size;
1013}
1014
1015/*
1016 * Worst case: 32 bits individually specified, in octal at 12 characters
1017 * per line (+1 for \n).
1018 */
1019#define AMDGPU_MASK_BUF_MAX	(32 * 13)
1020
1021static ssize_t amdgpu_read_mask(const char *buf, size_t count, uint32_t *mask)
1022{
1023	int ret;
1024	unsigned long level;
1025	char *sub_str = NULL;
1026	char *tmp;
1027	char buf_cpy[AMDGPU_MASK_BUF_MAX + 1];
1028	const char delimiter[3] = {' ', '\n', '\0'};
1029	size_t bytes;
1030
1031	*mask = 0;
1032
1033	bytes = min(count, sizeof(buf_cpy) - 1);
1034	memcpy(buf_cpy, buf, bytes);
1035	buf_cpy[bytes] = '\0';
1036	tmp = buf_cpy;
1037	while ((sub_str = strsep(&tmp, delimiter)) != NULL) {
1038		if (strlen(sub_str)) {
1039			ret = kstrtoul(sub_str, 0, &level);
1040			if (ret || level > 31)
1041				return -EINVAL;
1042			*mask |= 1 << level;
1043		} else
1044			break;
1045	}
1046
1047	return 0;
1048}
1049
1050static ssize_t amdgpu_set_pp_dpm_clock(struct device *dev,
1051		enum pp_clock_type type,
1052		const char *buf,
1053		size_t count)
1054{
1055	struct drm_device *ddev = dev_get_drvdata(dev);
1056	struct amdgpu_device *adev = drm_to_adev(ddev);
1057	int ret;
1058	uint32_t mask = 0;
1059
1060	if (amdgpu_in_reset(adev))
1061		return -EPERM;
1062	if (adev->in_suspend && !adev->in_runpm)
1063		return -EPERM;
1064
1065	ret = amdgpu_read_mask(buf, count, &mask);
1066	if (ret)
1067		return ret;
1068
1069	ret = pm_runtime_resume_and_get(ddev->dev);
1070	if (ret < 0)
 
1071		return ret;
 
1072
1073	ret = amdgpu_dpm_force_clock_level(adev, type, mask);
1074
1075	pm_runtime_mark_last_busy(ddev->dev);
1076	pm_runtime_put_autosuspend(ddev->dev);
1077
1078	if (ret)
1079		return -EINVAL;
1080
1081	return count;
1082}
1083
1084static ssize_t amdgpu_get_pp_dpm_sclk(struct device *dev,
1085		struct device_attribute *attr,
1086		char *buf)
1087{
1088	return amdgpu_get_pp_dpm_clock(dev, PP_SCLK, buf);
1089}
1090
1091static ssize_t amdgpu_set_pp_dpm_sclk(struct device *dev,
1092		struct device_attribute *attr,
1093		const char *buf,
1094		size_t count)
1095{
1096	return amdgpu_set_pp_dpm_clock(dev, PP_SCLK, buf, count);
1097}
1098
1099static ssize_t amdgpu_get_pp_dpm_mclk(struct device *dev,
1100		struct device_attribute *attr,
1101		char *buf)
1102{
1103	return amdgpu_get_pp_dpm_clock(dev, PP_MCLK, buf);
1104}
1105
1106static ssize_t amdgpu_set_pp_dpm_mclk(struct device *dev,
1107		struct device_attribute *attr,
1108		const char *buf,
1109		size_t count)
1110{
1111	return amdgpu_set_pp_dpm_clock(dev, PP_MCLK, buf, count);
1112}
1113
1114static ssize_t amdgpu_get_pp_dpm_socclk(struct device *dev,
1115		struct device_attribute *attr,
1116		char *buf)
1117{
1118	return amdgpu_get_pp_dpm_clock(dev, PP_SOCCLK, buf);
1119}
1120
1121static ssize_t amdgpu_set_pp_dpm_socclk(struct device *dev,
1122		struct device_attribute *attr,
1123		const char *buf,
1124		size_t count)
1125{
1126	return amdgpu_set_pp_dpm_clock(dev, PP_SOCCLK, buf, count);
1127}
1128
1129static ssize_t amdgpu_get_pp_dpm_fclk(struct device *dev,
1130		struct device_attribute *attr,
1131		char *buf)
1132{
1133	return amdgpu_get_pp_dpm_clock(dev, PP_FCLK, buf);
1134}
1135
1136static ssize_t amdgpu_set_pp_dpm_fclk(struct device *dev,
1137		struct device_attribute *attr,
1138		const char *buf,
1139		size_t count)
1140{
1141	return amdgpu_set_pp_dpm_clock(dev, PP_FCLK, buf, count);
1142}
1143
1144static ssize_t amdgpu_get_pp_dpm_vclk(struct device *dev,
1145		struct device_attribute *attr,
1146		char *buf)
1147{
1148	return amdgpu_get_pp_dpm_clock(dev, PP_VCLK, buf);
1149}
1150
1151static ssize_t amdgpu_set_pp_dpm_vclk(struct device *dev,
1152		struct device_attribute *attr,
1153		const char *buf,
1154		size_t count)
1155{
1156	return amdgpu_set_pp_dpm_clock(dev, PP_VCLK, buf, count);
1157}
1158
1159static ssize_t amdgpu_get_pp_dpm_vclk1(struct device *dev,
1160		struct device_attribute *attr,
1161		char *buf)
1162{
1163	return amdgpu_get_pp_dpm_clock(dev, PP_VCLK1, buf);
1164}
1165
1166static ssize_t amdgpu_set_pp_dpm_vclk1(struct device *dev,
1167		struct device_attribute *attr,
1168		const char *buf,
1169		size_t count)
1170{
1171	return amdgpu_set_pp_dpm_clock(dev, PP_VCLK1, buf, count);
1172}
1173
1174static ssize_t amdgpu_get_pp_dpm_dclk(struct device *dev,
1175		struct device_attribute *attr,
1176		char *buf)
1177{
1178	return amdgpu_get_pp_dpm_clock(dev, PP_DCLK, buf);
1179}
1180
1181static ssize_t amdgpu_set_pp_dpm_dclk(struct device *dev,
1182		struct device_attribute *attr,
1183		const char *buf,
1184		size_t count)
1185{
1186	return amdgpu_set_pp_dpm_clock(dev, PP_DCLK, buf, count);
1187}
1188
1189static ssize_t amdgpu_get_pp_dpm_dclk1(struct device *dev,
1190		struct device_attribute *attr,
1191		char *buf)
1192{
1193	return amdgpu_get_pp_dpm_clock(dev, PP_DCLK1, buf);
1194}
1195
1196static ssize_t amdgpu_set_pp_dpm_dclk1(struct device *dev,
1197		struct device_attribute *attr,
1198		const char *buf,
1199		size_t count)
1200{
1201	return amdgpu_set_pp_dpm_clock(dev, PP_DCLK1, buf, count);
1202}
1203
1204static ssize_t amdgpu_get_pp_dpm_dcefclk(struct device *dev,
1205		struct device_attribute *attr,
1206		char *buf)
1207{
1208	return amdgpu_get_pp_dpm_clock(dev, PP_DCEFCLK, buf);
1209}
1210
1211static ssize_t amdgpu_set_pp_dpm_dcefclk(struct device *dev,
1212		struct device_attribute *attr,
1213		const char *buf,
1214		size_t count)
1215{
1216	return amdgpu_set_pp_dpm_clock(dev, PP_DCEFCLK, buf, count);
1217}
1218
1219static ssize_t amdgpu_get_pp_dpm_pcie(struct device *dev,
1220		struct device_attribute *attr,
1221		char *buf)
1222{
1223	return amdgpu_get_pp_dpm_clock(dev, PP_PCIE, buf);
1224}
1225
1226static ssize_t amdgpu_set_pp_dpm_pcie(struct device *dev,
1227		struct device_attribute *attr,
1228		const char *buf,
1229		size_t count)
1230{
1231	return amdgpu_set_pp_dpm_clock(dev, PP_PCIE, buf, count);
1232}
1233
1234static ssize_t amdgpu_get_pp_sclk_od(struct device *dev,
1235		struct device_attribute *attr,
1236		char *buf)
1237{
1238	struct drm_device *ddev = dev_get_drvdata(dev);
1239	struct amdgpu_device *adev = drm_to_adev(ddev);
1240	uint32_t value = 0;
1241	int ret;
1242
1243	if (amdgpu_in_reset(adev))
1244		return -EPERM;
1245	if (adev->in_suspend && !adev->in_runpm)
1246		return -EPERM;
1247
1248	ret = pm_runtime_get_if_active(ddev->dev);
1249	if (ret <= 0)
1250		return ret ?: -EPERM;
 
 
1251
1252	value = amdgpu_dpm_get_sclk_od(adev);
1253
 
1254	pm_runtime_put_autosuspend(ddev->dev);
1255
1256	return sysfs_emit(buf, "%d\n", value);
1257}
1258
1259static ssize_t amdgpu_set_pp_sclk_od(struct device *dev,
1260		struct device_attribute *attr,
1261		const char *buf,
1262		size_t count)
1263{
1264	struct drm_device *ddev = dev_get_drvdata(dev);
1265	struct amdgpu_device *adev = drm_to_adev(ddev);
1266	int ret;
1267	long int value;
1268
1269	if (amdgpu_in_reset(adev))
1270		return -EPERM;
1271	if (adev->in_suspend && !adev->in_runpm)
1272		return -EPERM;
1273
1274	ret = kstrtol(buf, 0, &value);
1275
1276	if (ret)
1277		return -EINVAL;
1278
1279	ret = pm_runtime_resume_and_get(ddev->dev);
1280	if (ret < 0)
 
1281		return ret;
 
1282
1283	amdgpu_dpm_set_sclk_od(adev, (uint32_t)value);
1284
1285	pm_runtime_mark_last_busy(ddev->dev);
1286	pm_runtime_put_autosuspend(ddev->dev);
1287
1288	return count;
1289}
1290
1291static ssize_t amdgpu_get_pp_mclk_od(struct device *dev,
1292		struct device_attribute *attr,
1293		char *buf)
1294{
1295	struct drm_device *ddev = dev_get_drvdata(dev);
1296	struct amdgpu_device *adev = drm_to_adev(ddev);
1297	uint32_t value = 0;
1298	int ret;
1299
1300	if (amdgpu_in_reset(adev))
1301		return -EPERM;
1302	if (adev->in_suspend && !adev->in_runpm)
1303		return -EPERM;
1304
1305	ret = pm_runtime_get_if_active(ddev->dev);
1306	if (ret <= 0)
1307		return ret ?: -EPERM;
 
 
1308
1309	value = amdgpu_dpm_get_mclk_od(adev);
1310
 
1311	pm_runtime_put_autosuspend(ddev->dev);
1312
1313	return sysfs_emit(buf, "%d\n", value);
1314}
1315
1316static ssize_t amdgpu_set_pp_mclk_od(struct device *dev,
1317		struct device_attribute *attr,
1318		const char *buf,
1319		size_t count)
1320{
1321	struct drm_device *ddev = dev_get_drvdata(dev);
1322	struct amdgpu_device *adev = drm_to_adev(ddev);
1323	int ret;
1324	long int value;
1325
1326	if (amdgpu_in_reset(adev))
1327		return -EPERM;
1328	if (adev->in_suspend && !adev->in_runpm)
1329		return -EPERM;
1330
1331	ret = kstrtol(buf, 0, &value);
1332
1333	if (ret)
1334		return -EINVAL;
1335
1336	ret = pm_runtime_resume_and_get(ddev->dev);
1337	if (ret < 0)
 
1338		return ret;
 
1339
1340	amdgpu_dpm_set_mclk_od(adev, (uint32_t)value);
1341
1342	pm_runtime_mark_last_busy(ddev->dev);
1343	pm_runtime_put_autosuspend(ddev->dev);
1344
1345	return count;
1346}
1347
1348/**
1349 * DOC: pp_power_profile_mode
1350 *
1351 * The amdgpu driver provides a sysfs API for adjusting the heuristics
1352 * related to switching between power levels in a power state.  The file
1353 * pp_power_profile_mode is used for this.
1354 *
1355 * Reading this file outputs a list of all of the predefined power profiles
1356 * and the relevant heuristics settings for that profile.
1357 *
1358 * To select a profile or create a custom profile, first select manual using
1359 * power_dpm_force_performance_level.  Writing the number of a predefined
1360 * profile to pp_power_profile_mode will enable those heuristics.  To
1361 * create a custom set of heuristics, write a string of numbers to the file
1362 * starting with the number of the custom profile along with a setting
1363 * for each heuristic parameter.  Due to differences across asic families
1364 * the heuristic parameters vary from family to family. Additionally,
1365 * you can apply the custom heuristics to different clock domains.  Each
1366 * clock domain is considered a distinct operation so if you modify the
1367 * gfxclk heuristics and then the memclk heuristics, the all of the
1368 * custom heuristics will be retained until you switch to another profile.
1369 *
1370 */
1371
1372static ssize_t amdgpu_get_pp_power_profile_mode(struct device *dev,
1373		struct device_attribute *attr,
1374		char *buf)
1375{
1376	struct drm_device *ddev = dev_get_drvdata(dev);
1377	struct amdgpu_device *adev = drm_to_adev(ddev);
1378	ssize_t size;
1379	int ret;
1380
1381	if (amdgpu_in_reset(adev))
1382		return -EPERM;
1383	if (adev->in_suspend && !adev->in_runpm)
1384		return -EPERM;
1385
1386	ret = pm_runtime_get_if_active(ddev->dev);
1387	if (ret <= 0)
1388		return ret ?: -EPERM;
 
 
1389
1390	size = amdgpu_dpm_get_power_profile_mode(adev, buf);
1391	if (size <= 0)
1392		size = sysfs_emit(buf, "\n");
1393
 
1394	pm_runtime_put_autosuspend(ddev->dev);
1395
1396	return size;
1397}
1398
1399
1400static ssize_t amdgpu_set_pp_power_profile_mode(struct device *dev,
1401		struct device_attribute *attr,
1402		const char *buf,
1403		size_t count)
1404{
1405	int ret;
1406	struct drm_device *ddev = dev_get_drvdata(dev);
1407	struct amdgpu_device *adev = drm_to_adev(ddev);
1408	uint32_t parameter_size = 0;
1409	long parameter[64];
1410	char *sub_str, buf_cpy[128];
1411	char *tmp_str;
1412	uint32_t i = 0;
1413	char tmp[2];
1414	long int profile_mode = 0;
1415	const char delimiter[3] = {' ', '\n', '\0'};
1416
1417	if (amdgpu_in_reset(adev))
1418		return -EPERM;
1419	if (adev->in_suspend && !adev->in_runpm)
1420		return -EPERM;
1421
1422	tmp[0] = *(buf);
1423	tmp[1] = '\0';
1424	ret = kstrtol(tmp, 0, &profile_mode);
1425	if (ret)
1426		return -EINVAL;
1427
1428	if (profile_mode == PP_SMC_POWER_PROFILE_CUSTOM) {
1429		if (count < 2 || count > 127)
1430			return -EINVAL;
1431		while (isspace(*++buf))
1432			i++;
1433		memcpy(buf_cpy, buf, count-i);
1434		tmp_str = buf_cpy;
1435		while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
1436			if (strlen(sub_str) == 0)
1437				continue;
1438			ret = kstrtol(sub_str, 0, &parameter[parameter_size]);
1439			if (ret)
1440				return -EINVAL;
1441			parameter_size++;
1442			while (isspace(*tmp_str))
1443				tmp_str++;
1444		}
1445	}
1446	parameter[parameter_size] = profile_mode;
1447
1448	ret = pm_runtime_resume_and_get(ddev->dev);
1449	if (ret < 0)
 
1450		return ret;
 
1451
1452	ret = amdgpu_dpm_set_power_profile_mode(adev, parameter, parameter_size);
1453
1454	pm_runtime_mark_last_busy(ddev->dev);
1455	pm_runtime_put_autosuspend(ddev->dev);
1456
1457	if (!ret)
1458		return count;
1459
1460	return -EINVAL;
1461}
1462
1463static int amdgpu_hwmon_get_sensor_generic(struct amdgpu_device *adev,
1464					   enum amd_pp_sensors sensor,
1465					   void *query)
1466{
1467	int r, size = sizeof(uint32_t);
1468
1469	if (amdgpu_in_reset(adev))
1470		return -EPERM;
1471	if (adev->in_suspend && !adev->in_runpm)
1472		return -EPERM;
1473
1474	r = pm_runtime_get_if_active(adev->dev);
1475	if (r <= 0)
1476		return r ?: -EPERM;
 
 
1477
1478	/* get the sensor value */
1479	r = amdgpu_dpm_read_sensor(adev, sensor, query, &size);
1480
 
1481	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
1482
1483	return r;
1484}
1485
1486/**
1487 * DOC: gpu_busy_percent
1488 *
1489 * The amdgpu driver provides a sysfs API for reading how busy the GPU
1490 * is as a percentage.  The file gpu_busy_percent is used for this.
1491 * The SMU firmware computes a percentage of load based on the
1492 * aggregate activity level in the IP cores.
1493 */
1494static ssize_t amdgpu_get_gpu_busy_percent(struct device *dev,
1495					   struct device_attribute *attr,
1496					   char *buf)
1497{
1498	struct drm_device *ddev = dev_get_drvdata(dev);
1499	struct amdgpu_device *adev = drm_to_adev(ddev);
1500	unsigned int value;
1501	int r;
1502
1503	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_LOAD, &value);
1504	if (r)
1505		return r;
1506
1507	return sysfs_emit(buf, "%d\n", value);
1508}
1509
1510/**
1511 * DOC: mem_busy_percent
1512 *
1513 * The amdgpu driver provides a sysfs API for reading how busy the VRAM
1514 * is as a percentage.  The file mem_busy_percent is used for this.
1515 * The SMU firmware computes a percentage of load based on the
1516 * aggregate activity level in the IP cores.
1517 */
1518static ssize_t amdgpu_get_mem_busy_percent(struct device *dev,
1519					   struct device_attribute *attr,
1520					   char *buf)
1521{
1522	struct drm_device *ddev = dev_get_drvdata(dev);
1523	struct amdgpu_device *adev = drm_to_adev(ddev);
1524	unsigned int value;
1525	int r;
1526
1527	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MEM_LOAD, &value);
1528	if (r)
1529		return r;
1530
1531	return sysfs_emit(buf, "%d\n", value);
1532}
1533
1534/**
1535 * DOC: vcn_busy_percent
1536 *
1537 * The amdgpu driver provides a sysfs API for reading how busy the VCN
1538 * is as a percentage.  The file vcn_busy_percent is used for this.
1539 * The SMU firmware computes a percentage of load based on the
1540 * aggregate activity level in the IP cores.
1541 */
1542static ssize_t amdgpu_get_vcn_busy_percent(struct device *dev,
1543						  struct device_attribute *attr,
1544						  char *buf)
1545{
1546	struct drm_device *ddev = dev_get_drvdata(dev);
1547	struct amdgpu_device *adev = drm_to_adev(ddev);
1548	unsigned int value;
1549	int r;
1550
1551	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_VCN_LOAD, &value);
1552	if (r)
1553		return r;
1554
1555	return sysfs_emit(buf, "%d\n", value);
1556}
1557
1558/**
1559 * DOC: pcie_bw
1560 *
1561 * The amdgpu driver provides a sysfs API for estimating how much data
1562 * has been received and sent by the GPU in the last second through PCIe.
1563 * The file pcie_bw is used for this.
1564 * The Perf counters count the number of received and sent messages and return
1565 * those values, as well as the maximum payload size of a PCIe packet (mps).
1566 * Note that it is not possible to easily and quickly obtain the size of each
1567 * packet transmitted, so we output the max payload size (mps) to allow for
1568 * quick estimation of the PCIe bandwidth usage
1569 */
1570static ssize_t amdgpu_get_pcie_bw(struct device *dev,
1571		struct device_attribute *attr,
1572		char *buf)
1573{
1574	struct drm_device *ddev = dev_get_drvdata(dev);
1575	struct amdgpu_device *adev = drm_to_adev(ddev);
1576	uint64_t count0 = 0, count1 = 0;
1577	int ret;
1578
1579	if (amdgpu_in_reset(adev))
1580		return -EPERM;
1581	if (adev->in_suspend && !adev->in_runpm)
1582		return -EPERM;
1583
1584	if (adev->flags & AMD_IS_APU)
1585		return -ENODATA;
1586
1587	if (!adev->asic_funcs->get_pcie_usage)
1588		return -ENODATA;
1589
1590	ret = pm_runtime_get_if_active(ddev->dev);
1591	if (ret <= 0)
1592		return ret ?: -EPERM;
 
 
1593
1594	amdgpu_asic_get_pcie_usage(adev, &count0, &count1);
1595
 
1596	pm_runtime_put_autosuspend(ddev->dev);
1597
1598	return sysfs_emit(buf, "%llu %llu %i\n",
1599			  count0, count1, pcie_get_mps(adev->pdev));
1600}
1601
1602/**
1603 * DOC: unique_id
1604 *
1605 * The amdgpu driver provides a sysfs API for providing a unique ID for the GPU
1606 * The file unique_id is used for this.
1607 * This will provide a Unique ID that will persist from machine to machine
1608 *
1609 * NOTE: This will only work for GFX9 and newer. This file will be absent
1610 * on unsupported ASICs (GFX8 and older)
1611 */
1612static ssize_t amdgpu_get_unique_id(struct device *dev,
1613		struct device_attribute *attr,
1614		char *buf)
1615{
1616	struct drm_device *ddev = dev_get_drvdata(dev);
1617	struct amdgpu_device *adev = drm_to_adev(ddev);
1618
1619	if (amdgpu_in_reset(adev))
1620		return -EPERM;
1621	if (adev->in_suspend && !adev->in_runpm)
1622		return -EPERM;
1623
1624	if (adev->unique_id)
1625		return sysfs_emit(buf, "%016llx\n", adev->unique_id);
1626
1627	return 0;
1628}
1629
1630/**
1631 * DOC: thermal_throttling_logging
1632 *
1633 * Thermal throttling pulls down the clock frequency and thus the performance.
1634 * It's an useful mechanism to protect the chip from overheating. Since it
1635 * impacts performance, the user controls whether it is enabled and if so,
1636 * the log frequency.
1637 *
1638 * Reading back the file shows you the status(enabled or disabled) and
1639 * the interval(in seconds) between each thermal logging.
1640 *
1641 * Writing an integer to the file, sets a new logging interval, in seconds.
1642 * The value should be between 1 and 3600. If the value is less than 1,
1643 * thermal logging is disabled. Values greater than 3600 are ignored.
1644 */
1645static ssize_t amdgpu_get_thermal_throttling_logging(struct device *dev,
1646						     struct device_attribute *attr,
1647						     char *buf)
1648{
1649	struct drm_device *ddev = dev_get_drvdata(dev);
1650	struct amdgpu_device *adev = drm_to_adev(ddev);
1651
1652	return sysfs_emit(buf, "%s: thermal throttling logging %s, with interval %d seconds\n",
1653			  adev_to_drm(adev)->unique,
1654			  atomic_read(&adev->throttling_logging_enabled) ? "enabled" : "disabled",
1655			  adev->throttling_logging_rs.interval / HZ + 1);
1656}
1657
1658static ssize_t amdgpu_set_thermal_throttling_logging(struct device *dev,
1659						     struct device_attribute *attr,
1660						     const char *buf,
1661						     size_t count)
1662{
1663	struct drm_device *ddev = dev_get_drvdata(dev);
1664	struct amdgpu_device *adev = drm_to_adev(ddev);
1665	long throttling_logging_interval;
1666	unsigned long flags;
1667	int ret = 0;
1668
1669	ret = kstrtol(buf, 0, &throttling_logging_interval);
1670	if (ret)
1671		return ret;
1672
1673	if (throttling_logging_interval > 3600)
1674		return -EINVAL;
1675
1676	if (throttling_logging_interval > 0) {
1677		raw_spin_lock_irqsave(&adev->throttling_logging_rs.lock, flags);
1678		/*
1679		 * Reset the ratelimit timer internals.
1680		 * This can effectively restart the timer.
1681		 */
1682		adev->throttling_logging_rs.interval =
1683			(throttling_logging_interval - 1) * HZ;
1684		adev->throttling_logging_rs.begin = 0;
1685		adev->throttling_logging_rs.printed = 0;
1686		adev->throttling_logging_rs.missed = 0;
1687		raw_spin_unlock_irqrestore(&adev->throttling_logging_rs.lock, flags);
1688
1689		atomic_set(&adev->throttling_logging_enabled, 1);
1690	} else {
1691		atomic_set(&adev->throttling_logging_enabled, 0);
1692	}
1693
1694	return count;
1695}
1696
1697/**
1698 * DOC: apu_thermal_cap
1699 *
1700 * The amdgpu driver provides a sysfs API for retrieving/updating thermal
1701 * limit temperature in millidegrees Celsius
1702 *
1703 * Reading back the file shows you core limit value
1704 *
1705 * Writing an integer to the file, sets a new thermal limit. The value
1706 * should be between 0 and 100. If the value is less than 0 or greater
1707 * than 100, then the write request will be ignored.
1708 */
1709static ssize_t amdgpu_get_apu_thermal_cap(struct device *dev,
1710					 struct device_attribute *attr,
1711					 char *buf)
1712{
1713	int ret, size;
1714	u32 limit;
1715	struct drm_device *ddev = dev_get_drvdata(dev);
1716	struct amdgpu_device *adev = drm_to_adev(ddev);
1717
1718	ret = pm_runtime_get_if_active(ddev->dev);
1719	if (ret <= 0)
1720		return ret ?: -EPERM;
 
 
1721
1722	ret = amdgpu_dpm_get_apu_thermal_limit(adev, &limit);
1723	if (!ret)
1724		size = sysfs_emit(buf, "%u\n", limit);
1725	else
1726		size = sysfs_emit(buf, "failed to get thermal limit\n");
1727
 
1728	pm_runtime_put_autosuspend(ddev->dev);
1729
1730	return size;
1731}
1732
1733static ssize_t amdgpu_set_apu_thermal_cap(struct device *dev,
1734					 struct device_attribute *attr,
1735					 const char *buf,
1736					 size_t count)
1737{
1738	int ret;
1739	u32 value;
1740	struct drm_device *ddev = dev_get_drvdata(dev);
1741	struct amdgpu_device *adev = drm_to_adev(ddev);
1742
1743	ret = kstrtou32(buf, 10, &value);
1744	if (ret)
1745		return ret;
1746
1747	if (value > 100) {
1748		dev_err(dev, "Invalid argument !\n");
1749		return -EINVAL;
1750	}
1751
1752	ret = pm_runtime_resume_and_get(ddev->dev);
1753	if (ret < 0)
 
1754		return ret;
 
1755
1756	ret = amdgpu_dpm_set_apu_thermal_limit(adev, value);
1757	if (ret) {
1758		pm_runtime_mark_last_busy(ddev->dev);
1759		pm_runtime_put_autosuspend(ddev->dev);
1760		dev_err(dev, "failed to update thermal limit\n");
1761		return ret;
1762	}
1763
1764	pm_runtime_mark_last_busy(ddev->dev);
1765	pm_runtime_put_autosuspend(ddev->dev);
1766
1767	return count;
1768}
1769
1770static int amdgpu_pm_metrics_attr_update(struct amdgpu_device *adev,
1771					 struct amdgpu_device_attr *attr,
1772					 uint32_t mask,
1773					 enum amdgpu_device_attr_states *states)
1774{
1775	if (amdgpu_dpm_get_pm_metrics(adev, NULL, 0) == -EOPNOTSUPP)
1776		*states = ATTR_STATE_UNSUPPORTED;
1777
1778	return 0;
1779}
1780
1781static ssize_t amdgpu_get_pm_metrics(struct device *dev,
1782				     struct device_attribute *attr, char *buf)
1783{
1784	struct drm_device *ddev = dev_get_drvdata(dev);
1785	struct amdgpu_device *adev = drm_to_adev(ddev);
1786	ssize_t size = 0;
1787	int ret;
1788
1789	if (amdgpu_in_reset(adev))
1790		return -EPERM;
1791	if (adev->in_suspend && !adev->in_runpm)
1792		return -EPERM;
1793
1794	ret = pm_runtime_get_if_active(ddev->dev);
1795	if (ret <= 0)
1796		return ret ?: -EPERM;
 
 
1797
1798	size = amdgpu_dpm_get_pm_metrics(adev, buf, PAGE_SIZE);
1799
 
1800	pm_runtime_put_autosuspend(ddev->dev);
1801
1802	return size;
1803}
1804
1805/**
1806 * DOC: gpu_metrics
1807 *
1808 * The amdgpu driver provides a sysfs API for retrieving current gpu
1809 * metrics data. The file gpu_metrics is used for this. Reading the
1810 * file will dump all the current gpu metrics data.
1811 *
1812 * These data include temperature, frequency, engines utilization,
1813 * power consume, throttler status, fan speed and cpu core statistics(
1814 * available for APU only). That's it will give a snapshot of all sensors
1815 * at the same time.
1816 */
1817static ssize_t amdgpu_get_gpu_metrics(struct device *dev,
1818				      struct device_attribute *attr,
1819				      char *buf)
1820{
1821	struct drm_device *ddev = dev_get_drvdata(dev);
1822	struct amdgpu_device *adev = drm_to_adev(ddev);
1823	void *gpu_metrics;
1824	ssize_t size = 0;
1825	int ret;
1826
1827	if (amdgpu_in_reset(adev))
1828		return -EPERM;
1829	if (adev->in_suspend && !adev->in_runpm)
1830		return -EPERM;
1831
1832	ret = pm_runtime_get_if_active(ddev->dev);
1833	if (ret <= 0)
1834		return ret ?: -EPERM;
 
 
1835
1836	size = amdgpu_dpm_get_gpu_metrics(adev, &gpu_metrics);
1837	if (size <= 0)
1838		goto out;
1839
1840	if (size >= PAGE_SIZE)
1841		size = PAGE_SIZE - 1;
1842
1843	memcpy(buf, gpu_metrics, size);
1844
1845out:
 
1846	pm_runtime_put_autosuspend(ddev->dev);
1847
1848	return size;
1849}
1850
1851static int amdgpu_show_powershift_percent(struct device *dev,
1852					char *buf, enum amd_pp_sensors sensor)
1853{
1854	struct drm_device *ddev = dev_get_drvdata(dev);
1855	struct amdgpu_device *adev = drm_to_adev(ddev);
1856	uint32_t ss_power;
1857	int r = 0, i;
1858
1859	r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&ss_power);
1860	if (r == -EOPNOTSUPP) {
1861		/* sensor not available on dGPU, try to read from APU */
1862		adev = NULL;
1863		mutex_lock(&mgpu_info.mutex);
1864		for (i = 0; i < mgpu_info.num_gpu; i++) {
1865			if (mgpu_info.gpu_ins[i].adev->flags & AMD_IS_APU) {
1866				adev = mgpu_info.gpu_ins[i].adev;
1867				break;
1868			}
1869		}
1870		mutex_unlock(&mgpu_info.mutex);
1871		if (adev)
1872			r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&ss_power);
1873	}
1874
1875	if (r)
1876		return r;
1877
1878	return sysfs_emit(buf, "%u%%\n", ss_power);
1879}
1880
1881/**
1882 * DOC: smartshift_apu_power
1883 *
1884 * The amdgpu driver provides a sysfs API for reporting APU power
1885 * shift in percentage if platform supports smartshift. Value 0 means that
1886 * there is no powershift and values between [1-100] means that the power
1887 * is shifted to APU, the percentage of boost is with respect to APU power
1888 * limit on the platform.
1889 */
1890
1891static ssize_t amdgpu_get_smartshift_apu_power(struct device *dev, struct device_attribute *attr,
1892					       char *buf)
1893{
1894	return amdgpu_show_powershift_percent(dev, buf, AMDGPU_PP_SENSOR_SS_APU_SHARE);
1895}
1896
1897/**
1898 * DOC: smartshift_dgpu_power
1899 *
1900 * The amdgpu driver provides a sysfs API for reporting dGPU power
1901 * shift in percentage if platform supports smartshift. Value 0 means that
1902 * there is no powershift and values between [1-100] means that the power is
1903 * shifted to dGPU, the percentage of boost is with respect to dGPU power
1904 * limit on the platform.
1905 */
1906
1907static ssize_t amdgpu_get_smartshift_dgpu_power(struct device *dev, struct device_attribute *attr,
1908						char *buf)
1909{
1910	return amdgpu_show_powershift_percent(dev, buf, AMDGPU_PP_SENSOR_SS_DGPU_SHARE);
1911}
1912
1913/**
1914 * DOC: smartshift_bias
1915 *
1916 * The amdgpu driver provides a sysfs API for reporting the
1917 * smartshift(SS2.0) bias level. The value ranges from -100 to 100
1918 * and the default is 0. -100 sets maximum preference to APU
1919 * and 100 sets max perference to dGPU.
1920 */
1921
1922static ssize_t amdgpu_get_smartshift_bias(struct device *dev,
1923					  struct device_attribute *attr,
1924					  char *buf)
1925{
1926	int r = 0;
1927
1928	r = sysfs_emit(buf, "%d\n", amdgpu_smartshift_bias);
1929
1930	return r;
1931}
1932
1933static ssize_t amdgpu_set_smartshift_bias(struct device *dev,
1934					  struct device_attribute *attr,
1935					  const char *buf, size_t count)
1936{
1937	struct drm_device *ddev = dev_get_drvdata(dev);
1938	struct amdgpu_device *adev = drm_to_adev(ddev);
1939	int r = 0;
1940	int bias = 0;
1941
1942	if (amdgpu_in_reset(adev))
1943		return -EPERM;
1944	if (adev->in_suspend && !adev->in_runpm)
1945		return -EPERM;
1946
1947	r = pm_runtime_resume_and_get(ddev->dev);
1948	if (r < 0)
 
1949		return r;
 
1950
1951	r = kstrtoint(buf, 10, &bias);
1952	if (r)
1953		goto out;
1954
1955	if (bias > AMDGPU_SMARTSHIFT_MAX_BIAS)
1956		bias = AMDGPU_SMARTSHIFT_MAX_BIAS;
1957	else if (bias < AMDGPU_SMARTSHIFT_MIN_BIAS)
1958		bias = AMDGPU_SMARTSHIFT_MIN_BIAS;
1959
1960	amdgpu_smartshift_bias = bias;
1961	r = count;
1962
1963	/* TODO: update bias level with SMU message */
1964
1965out:
1966	pm_runtime_mark_last_busy(ddev->dev);
1967	pm_runtime_put_autosuspend(ddev->dev);
1968	return r;
1969}
1970
1971static int ss_power_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
1972				uint32_t mask, enum amdgpu_device_attr_states *states)
1973{
1974	if (!amdgpu_device_supports_smart_shift(adev_to_drm(adev)))
1975		*states = ATTR_STATE_UNSUPPORTED;
1976
1977	return 0;
1978}
1979
1980static int ss_bias_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
1981			       uint32_t mask, enum amdgpu_device_attr_states *states)
1982{
1983	uint32_t ss_power;
1984
1985	if (!amdgpu_device_supports_smart_shift(adev_to_drm(adev)))
1986		*states = ATTR_STATE_UNSUPPORTED;
1987	else if (amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_SS_APU_SHARE,
1988		 (void *)&ss_power))
1989		*states = ATTR_STATE_UNSUPPORTED;
1990	else if (amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_SS_DGPU_SHARE,
1991		 (void *)&ss_power))
1992		*states = ATTR_STATE_UNSUPPORTED;
1993
1994	return 0;
1995}
1996
1997static int pp_od_clk_voltage_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
1998					 uint32_t mask, enum amdgpu_device_attr_states *states)
1999{
2000	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2001
2002	*states = ATTR_STATE_SUPPORTED;
2003
2004	if (!amdgpu_dpm_is_overdrive_supported(adev)) {
2005		*states = ATTR_STATE_UNSUPPORTED;
2006		return 0;
2007	}
2008
2009	/* Enable pp_od_clk_voltage node for gc 9.4.3 SRIOV/BM support */
2010	if (gc_ver == IP_VERSION(9, 4, 3) ||
2011	    gc_ver == IP_VERSION(9, 4, 4)) {
2012		if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
2013			*states = ATTR_STATE_UNSUPPORTED;
2014		return 0;
2015	}
2016
2017	if (!(attr->flags & mask))
2018		*states = ATTR_STATE_UNSUPPORTED;
2019
2020	return 0;
2021}
2022
2023static int pp_dpm_dcefclk_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2024				      uint32_t mask, enum amdgpu_device_attr_states *states)
2025{
2026	struct device_attribute *dev_attr = &attr->dev_attr;
2027	uint32_t gc_ver;
2028
2029	*states = ATTR_STATE_SUPPORTED;
2030
2031	if (!(attr->flags & mask)) {
2032		*states = ATTR_STATE_UNSUPPORTED;
2033		return 0;
2034	}
2035
2036	gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2037	/* dcefclk node is not available on gfx 11.0.3 sriov */
2038	if ((gc_ver == IP_VERSION(11, 0, 3) && amdgpu_sriov_is_pp_one_vf(adev)) ||
2039	    gc_ver < IP_VERSION(9, 0, 0) ||
2040	    !amdgpu_device_has_display_hardware(adev))
2041		*states = ATTR_STATE_UNSUPPORTED;
2042
2043	/* SMU MP1 does not support dcefclk level setting,
2044	 * setting should not be allowed from VF if not in one VF mode.
2045	 */
2046	if (gc_ver >= IP_VERSION(10, 0, 0) ||
2047	    (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))) {
2048		dev_attr->attr.mode &= ~S_IWUGO;
2049		dev_attr->store = NULL;
2050	}
2051
2052	return 0;
2053}
2054
2055static int pp_dpm_clk_default_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2056					  uint32_t mask, enum amdgpu_device_attr_states *states)
2057{
2058	struct device_attribute *dev_attr = &attr->dev_attr;
2059	enum amdgpu_device_attr_id attr_id = attr->attr_id;
2060	uint32_t mp1_ver = amdgpu_ip_version(adev, MP1_HWIP, 0);
2061	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
2062
2063	*states = ATTR_STATE_SUPPORTED;
2064
2065	if (!(attr->flags & mask)) {
2066		*states = ATTR_STATE_UNSUPPORTED;
2067		return 0;
2068	}
2069
2070	if (DEVICE_ATTR_IS(pp_dpm_socclk)) {
2071		if (gc_ver < IP_VERSION(9, 0, 0))
2072			*states = ATTR_STATE_UNSUPPORTED;
2073	} else if (DEVICE_ATTR_IS(pp_dpm_fclk)) {
2074		if (mp1_ver < IP_VERSION(10, 0, 0))
2075			*states = ATTR_STATE_UNSUPPORTED;
2076	} else if (DEVICE_ATTR_IS(pp_dpm_vclk)) {
2077		if (!(gc_ver == IP_VERSION(10, 3, 1) ||
2078		      gc_ver == IP_VERSION(10, 3, 3) ||
2079		      gc_ver == IP_VERSION(10, 3, 6) ||
2080		      gc_ver == IP_VERSION(10, 3, 7) ||
2081		      gc_ver == IP_VERSION(10, 3, 0) ||
2082		      gc_ver == IP_VERSION(10, 1, 2) ||
2083		      gc_ver == IP_VERSION(11, 0, 0) ||
2084		      gc_ver == IP_VERSION(11, 0, 1) ||
2085		      gc_ver == IP_VERSION(11, 0, 4) ||
2086		      gc_ver == IP_VERSION(11, 5, 0) ||
2087		      gc_ver == IP_VERSION(11, 0, 2) ||
2088		      gc_ver == IP_VERSION(11, 0, 3) ||
2089		      gc_ver == IP_VERSION(9, 4, 3) ||
2090		      gc_ver == IP_VERSION(9, 4, 4)))
2091			*states = ATTR_STATE_UNSUPPORTED;
2092	} else if (DEVICE_ATTR_IS(pp_dpm_vclk1)) {
2093		if (!((gc_ver == IP_VERSION(10, 3, 1) ||
2094		       gc_ver == IP_VERSION(10, 3, 0) ||
2095		       gc_ver == IP_VERSION(11, 0, 2) ||
2096		       gc_ver == IP_VERSION(11, 0, 3)) && adev->vcn.num_vcn_inst >= 2))
2097			*states = ATTR_STATE_UNSUPPORTED;
2098	} else if (DEVICE_ATTR_IS(pp_dpm_dclk)) {
2099		if (!(gc_ver == IP_VERSION(10, 3, 1) ||
2100		      gc_ver == IP_VERSION(10, 3, 3) ||
2101		      gc_ver == IP_VERSION(10, 3, 6) ||
2102		      gc_ver == IP_VERSION(10, 3, 7) ||
2103		      gc_ver == IP_VERSION(10, 3, 0) ||
2104		      gc_ver == IP_VERSION(10, 1, 2) ||
2105		      gc_ver == IP_VERSION(11, 0, 0) ||
2106		      gc_ver == IP_VERSION(11, 0, 1) ||
2107		      gc_ver == IP_VERSION(11, 0, 4) ||
2108		      gc_ver == IP_VERSION(11, 5, 0) ||
2109		      gc_ver == IP_VERSION(11, 0, 2) ||
2110		      gc_ver == IP_VERSION(11, 0, 3) ||
2111		      gc_ver == IP_VERSION(9, 4, 3) ||
2112		      gc_ver == IP_VERSION(9, 4, 4)))
2113			*states = ATTR_STATE_UNSUPPORTED;
2114	} else if (DEVICE_ATTR_IS(pp_dpm_dclk1)) {
2115		if (!((gc_ver == IP_VERSION(10, 3, 1) ||
2116		       gc_ver == IP_VERSION(10, 3, 0) ||
2117		       gc_ver == IP_VERSION(11, 0, 2) ||
2118		       gc_ver == IP_VERSION(11, 0, 3)) && adev->vcn.num_vcn_inst >= 2))
2119			*states = ATTR_STATE_UNSUPPORTED;
2120	} else if (DEVICE_ATTR_IS(pp_dpm_pcie)) {
2121		if (gc_ver == IP_VERSION(9, 4, 2) ||
2122		    gc_ver == IP_VERSION(9, 4, 3) ||
2123		    gc_ver == IP_VERSION(9, 4, 4))
2124			*states = ATTR_STATE_UNSUPPORTED;
2125	}
2126
2127	switch (gc_ver) {
2128	case IP_VERSION(9, 4, 1):
2129	case IP_VERSION(9, 4, 2):
2130		/* the Mi series card does not support standalone mclk/socclk/fclk level setting */
2131		if (DEVICE_ATTR_IS(pp_dpm_mclk) ||
2132		    DEVICE_ATTR_IS(pp_dpm_socclk) ||
2133		    DEVICE_ATTR_IS(pp_dpm_fclk)) {
2134			dev_attr->attr.mode &= ~S_IWUGO;
2135			dev_attr->store = NULL;
2136		}
2137		break;
2138	default:
2139		break;
2140	}
2141
2142	/* setting should not be allowed from VF if not in one VF mode */
2143	if (amdgpu_sriov_vf(adev) && amdgpu_sriov_is_pp_one_vf(adev)) {
2144		dev_attr->attr.mode &= ~S_IWUGO;
2145		dev_attr->store = NULL;
2146	}
2147
2148	return 0;
2149}
2150
2151/* pm policy attributes */
2152struct amdgpu_pm_policy_attr {
2153	struct device_attribute dev_attr;
2154	enum pp_pm_policy id;
2155};
2156
2157/**
2158 * DOC: pm_policy
2159 *
2160 * Certain SOCs can support different power policies to optimize application
2161 * performance. However, this policy is provided only at SOC level and not at a
2162 * per-process level. This is useful especially when entire SOC is utilized for
2163 * dedicated workload.
2164 *
2165 * The amdgpu driver provides a sysfs API for selecting the policy. Presently,
2166 * only two types of policies are supported through this interface.
2167 *
2168 *  Pstate Policy Selection - This is to select different Pstate profiles which
2169 *  decides clock/throttling preferences.
2170 *
2171 *  XGMI PLPD Policy Selection - When multiple devices are connected over XGMI,
2172 *  this helps to select policy to be applied for per link power down.
2173 *
2174 * The list of available policies and policy levels vary between SOCs. They can
2175 * be viewed under pm_policy node directory. If SOC doesn't support any policy,
2176 * this node won't be available. The different policies supported will be
2177 * available as separate nodes under pm_policy.
2178 *
2179 *	cat /sys/bus/pci/devices/.../pm_policy/<policy_type>
2180 *
2181 * Reading the policy file shows the different levels supported. The level which
2182 * is applied presently is denoted by * (asterisk). E.g.,
2183 *
2184 * .. code-block:: console
2185 *
2186 *	cat /sys/bus/pci/devices/.../pm_policy/soc_pstate
2187 *	0 : soc_pstate_default
2188 *	1 : soc_pstate_0
2189 *	2 : soc_pstate_1*
2190 *	3 : soc_pstate_2
2191 *
2192 *	cat /sys/bus/pci/devices/.../pm_policy/xgmi_plpd
2193 *	0 : plpd_disallow
2194 *	1 : plpd_default
2195 *	2 : plpd_optimized*
2196 *
2197 * To apply a specific policy
2198 *
2199 * "echo  <level> > /sys/bus/pci/devices/.../pm_policy/<policy_type>"
2200 *
2201 * For the levels listed in the example above, to select "plpd_optimized" for
2202 * XGMI and "soc_pstate_2" for soc pstate policy -
2203 *
2204 * .. code-block:: console
2205 *
2206 *	echo "2" > /sys/bus/pci/devices/.../pm_policy/xgmi_plpd
2207 *	echo "3" > /sys/bus/pci/devices/.../pm_policy/soc_pstate
2208 *
2209 */
2210static ssize_t amdgpu_get_pm_policy_attr(struct device *dev,
2211					 struct device_attribute *attr,
2212					 char *buf)
2213{
2214	struct drm_device *ddev = dev_get_drvdata(dev);
2215	struct amdgpu_device *adev = drm_to_adev(ddev);
2216	struct amdgpu_pm_policy_attr *policy_attr;
2217
2218	policy_attr =
2219		container_of(attr, struct amdgpu_pm_policy_attr, dev_attr);
2220
2221	if (amdgpu_in_reset(adev))
2222		return -EPERM;
2223	if (adev->in_suspend && !adev->in_runpm)
2224		return -EPERM;
2225
2226	return amdgpu_dpm_get_pm_policy_info(adev, policy_attr->id, buf);
 
 
2227}
2228
2229static ssize_t amdgpu_set_pm_policy_attr(struct device *dev,
2230					 struct device_attribute *attr,
2231					 const char *buf, size_t count)
 
 
 
 
 
2232{
2233	struct drm_device *ddev = dev_get_drvdata(dev);
2234	struct amdgpu_device *adev = drm_to_adev(ddev);
2235	struct amdgpu_pm_policy_attr *policy_attr;
2236	int ret, num_params = 0;
2237	char delimiter[] = " \n\t";
2238	char tmp_buf[128];
2239	char *tmp, *param;
2240	long val;
2241
2242	if (amdgpu_in_reset(adev))
2243		return -EPERM;
2244	if (adev->in_suspend && !adev->in_runpm)
2245		return -EPERM;
2246
2247	count = min(count, sizeof(tmp_buf));
2248	memcpy(tmp_buf, buf, count);
2249	tmp_buf[count - 1] = '\0';
2250	tmp = tmp_buf;
2251
2252	tmp = skip_spaces(tmp);
2253	while ((param = strsep(&tmp, delimiter))) {
2254		if (!strlen(param)) {
2255			tmp = skip_spaces(tmp);
2256			continue;
2257		}
2258		ret = kstrtol(param, 0, &val);
2259		if (ret)
2260			return -EINVAL;
2261		num_params++;
2262		if (num_params > 1)
2263			return -EINVAL;
2264	}
2265
2266	if (num_params != 1)
2267		return -EINVAL;
2268
2269	policy_attr =
2270		container_of(attr, struct amdgpu_pm_policy_attr, dev_attr);
2271
2272	ret = pm_runtime_resume_and_get(ddev->dev);
2273	if (ret < 0)
2274		return ret;
 
2275
2276	ret = amdgpu_dpm_set_pm_policy(adev, policy_attr->id, val);
2277
2278	pm_runtime_mark_last_busy(ddev->dev);
2279	pm_runtime_put_autosuspend(ddev->dev);
2280
2281	if (ret)
2282		return ret;
2283
2284	return count;
2285}
2286
2287#define AMDGPU_PM_POLICY_ATTR(_name, _id)                                  \
2288	static struct amdgpu_pm_policy_attr pm_policy_attr_##_name = {     \
2289		.dev_attr = __ATTR(_name, 0644, amdgpu_get_pm_policy_attr, \
2290				   amdgpu_set_pm_policy_attr),             \
2291		.id = PP_PM_POLICY_##_id,                                  \
2292	};
2293
2294#define AMDGPU_PM_POLICY_ATTR_VAR(_name) pm_policy_attr_##_name.dev_attr.attr
2295
2296AMDGPU_PM_POLICY_ATTR(soc_pstate, SOC_PSTATE)
2297AMDGPU_PM_POLICY_ATTR(xgmi_plpd, XGMI_PLPD)
2298
2299static struct attribute *pm_policy_attrs[] = {
2300	&AMDGPU_PM_POLICY_ATTR_VAR(soc_pstate),
2301	&AMDGPU_PM_POLICY_ATTR_VAR(xgmi_plpd),
2302	NULL
2303};
2304
2305static umode_t amdgpu_pm_policy_attr_visible(struct kobject *kobj,
2306					     struct attribute *attr, int n)
2307{
2308	struct device *dev = kobj_to_dev(kobj);
2309	struct drm_device *ddev = dev_get_drvdata(dev);
2310	struct amdgpu_device *adev = drm_to_adev(ddev);
2311	struct amdgpu_pm_policy_attr *policy_attr;
2312
2313	policy_attr =
2314		container_of(attr, struct amdgpu_pm_policy_attr, dev_attr.attr);
2315
2316	if (amdgpu_dpm_get_pm_policy_info(adev, policy_attr->id, NULL) ==
2317	    -ENOENT)
2318		return 0;
2319
2320	return attr->mode;
2321}
2322
2323const struct attribute_group amdgpu_pm_policy_attr_group = {
2324	.name = "pm_policy",
2325	.attrs = pm_policy_attrs,
2326	.is_visible = amdgpu_pm_policy_attr_visible,
2327};
2328
2329static struct amdgpu_device_attr amdgpu_device_attrs[] = {
2330	AMDGPU_DEVICE_ATTR_RW(power_dpm_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2331	AMDGPU_DEVICE_ATTR_RW(power_dpm_force_performance_level,	ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2332	AMDGPU_DEVICE_ATTR_RO(pp_num_states,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2333	AMDGPU_DEVICE_ATTR_RO(pp_cur_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2334	AMDGPU_DEVICE_ATTR_RW(pp_force_state,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2335	AMDGPU_DEVICE_ATTR_RW(pp_table,					ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2336	AMDGPU_DEVICE_ATTR_RW(pp_dpm_sclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2337			      .attr_update = pp_dpm_clk_default_attr_update),
2338	AMDGPU_DEVICE_ATTR_RW(pp_dpm_mclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2339			      .attr_update = pp_dpm_clk_default_attr_update),
2340	AMDGPU_DEVICE_ATTR_RW(pp_dpm_socclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2341			      .attr_update = pp_dpm_clk_default_attr_update),
2342	AMDGPU_DEVICE_ATTR_RW(pp_dpm_fclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2343			      .attr_update = pp_dpm_clk_default_attr_update),
2344	AMDGPU_DEVICE_ATTR_RW(pp_dpm_vclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2345			      .attr_update = pp_dpm_clk_default_attr_update),
2346	AMDGPU_DEVICE_ATTR_RW(pp_dpm_vclk1,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2347			      .attr_update = pp_dpm_clk_default_attr_update),
2348	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2349			      .attr_update = pp_dpm_clk_default_attr_update),
2350	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dclk1,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2351			      .attr_update = pp_dpm_clk_default_attr_update),
2352	AMDGPU_DEVICE_ATTR_RW(pp_dpm_dcefclk,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2353			      .attr_update = pp_dpm_dcefclk_attr_update),
2354	AMDGPU_DEVICE_ATTR_RW(pp_dpm_pcie,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF,
2355			      .attr_update = pp_dpm_clk_default_attr_update),
2356	AMDGPU_DEVICE_ATTR_RW(pp_sclk_od,				ATTR_FLAG_BASIC),
2357	AMDGPU_DEVICE_ATTR_RW(pp_mclk_od,				ATTR_FLAG_BASIC),
2358	AMDGPU_DEVICE_ATTR_RW(pp_power_profile_mode,			ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2359	AMDGPU_DEVICE_ATTR_RW(pp_od_clk_voltage,			ATTR_FLAG_BASIC,
2360			      .attr_update = pp_od_clk_voltage_attr_update),
2361	AMDGPU_DEVICE_ATTR_RO(gpu_busy_percent,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2362	AMDGPU_DEVICE_ATTR_RO(mem_busy_percent,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2363	AMDGPU_DEVICE_ATTR_RO(vcn_busy_percent,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2364	AMDGPU_DEVICE_ATTR_RO(pcie_bw,					ATTR_FLAG_BASIC),
2365	AMDGPU_DEVICE_ATTR_RW(pp_features,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2366	AMDGPU_DEVICE_ATTR_RO(unique_id,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2367	AMDGPU_DEVICE_ATTR_RW(thermal_throttling_logging,		ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2368	AMDGPU_DEVICE_ATTR_RW(apu_thermal_cap,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2369	AMDGPU_DEVICE_ATTR_RO(gpu_metrics,				ATTR_FLAG_BASIC|ATTR_FLAG_ONEVF),
2370	AMDGPU_DEVICE_ATTR_RO(smartshift_apu_power,			ATTR_FLAG_BASIC,
2371			      .attr_update = ss_power_attr_update),
2372	AMDGPU_DEVICE_ATTR_RO(smartshift_dgpu_power,			ATTR_FLAG_BASIC,
2373			      .attr_update = ss_power_attr_update),
2374	AMDGPU_DEVICE_ATTR_RW(smartshift_bias,				ATTR_FLAG_BASIC,
2375			      .attr_update = ss_bias_attr_update),
 
2376	AMDGPU_DEVICE_ATTR_RO(pm_metrics,				ATTR_FLAG_BASIC,
2377			      .attr_update = amdgpu_pm_metrics_attr_update),
2378};
2379
2380static int default_attr_update(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2381			       uint32_t mask, enum amdgpu_device_attr_states *states)
2382{
2383	struct device_attribute *dev_attr = &attr->dev_attr;
2384	enum amdgpu_device_attr_id attr_id = attr->attr_id;
2385	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
 
2386
2387	if (!(attr->flags & mask)) {
2388		*states = ATTR_STATE_UNSUPPORTED;
2389		return 0;
2390	}
2391
2392	if (DEVICE_ATTR_IS(mem_busy_percent)) {
 
 
 
 
 
 
 
 
2393		if ((adev->flags & AMD_IS_APU &&
2394		     gc_ver != IP_VERSION(9, 4, 3)) ||
2395		    gc_ver == IP_VERSION(9, 0, 1))
2396			*states = ATTR_STATE_UNSUPPORTED;
2397	} else if (DEVICE_ATTR_IS(vcn_busy_percent)) {
2398		if (!(gc_ver == IP_VERSION(10, 3, 1) ||
2399			  gc_ver == IP_VERSION(10, 3, 3) ||
2400			  gc_ver == IP_VERSION(10, 3, 6) ||
2401			  gc_ver == IP_VERSION(10, 3, 7) ||
2402			  gc_ver == IP_VERSION(11, 0, 1) ||
2403			  gc_ver == IP_VERSION(11, 0, 4) ||
2404			  gc_ver == IP_VERSION(11, 5, 0)))
2405			*states = ATTR_STATE_UNSUPPORTED;
2406	} else if (DEVICE_ATTR_IS(pcie_bw)) {
2407		/* PCIe Perf counters won't work on APU nodes */
2408		if (adev->flags & AMD_IS_APU ||
2409		    !adev->asic_funcs->get_pcie_usage)
2410			*states = ATTR_STATE_UNSUPPORTED;
2411	} else if (DEVICE_ATTR_IS(unique_id)) {
2412		switch (gc_ver) {
2413		case IP_VERSION(9, 0, 1):
2414		case IP_VERSION(9, 4, 0):
2415		case IP_VERSION(9, 4, 1):
2416		case IP_VERSION(9, 4, 2):
2417		case IP_VERSION(9, 4, 3):
2418		case IP_VERSION(9, 4, 4):
2419		case IP_VERSION(10, 3, 0):
2420		case IP_VERSION(11, 0, 0):
2421		case IP_VERSION(11, 0, 1):
2422		case IP_VERSION(11, 0, 2):
2423		case IP_VERSION(11, 0, 3):
2424			*states = ATTR_STATE_SUPPORTED;
2425			break;
2426		default:
2427			*states = ATTR_STATE_UNSUPPORTED;
2428		}
2429	} else if (DEVICE_ATTR_IS(pp_features)) {
2430		if ((adev->flags & AMD_IS_APU &&
2431		     gc_ver != IP_VERSION(9, 4, 3)) ||
2432		    gc_ver < IP_VERSION(9, 0, 0))
2433			*states = ATTR_STATE_UNSUPPORTED;
2434	} else if (DEVICE_ATTR_IS(gpu_metrics)) {
2435		if (gc_ver < IP_VERSION(9, 1, 0))
2436			*states = ATTR_STATE_UNSUPPORTED;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2437	} else if (DEVICE_ATTR_IS(pp_power_profile_mode)) {
2438		if (amdgpu_dpm_get_power_profile_mode(adev, NULL) == -EOPNOTSUPP)
2439			*states = ATTR_STATE_UNSUPPORTED;
2440		else if ((gc_ver == IP_VERSION(10, 3, 0) ||
2441			  gc_ver == IP_VERSION(11, 0, 3)) && amdgpu_sriov_vf(adev))
2442			*states = ATTR_STATE_UNSUPPORTED;
 
 
 
2443	} else if (DEVICE_ATTR_IS(pp_mclk_od)) {
2444		if (amdgpu_dpm_get_mclk_od(adev) == -EOPNOTSUPP)
2445			*states = ATTR_STATE_UNSUPPORTED;
2446	} else if (DEVICE_ATTR_IS(pp_sclk_od)) {
2447		if (amdgpu_dpm_get_sclk_od(adev) == -EOPNOTSUPP)
2448			*states = ATTR_STATE_UNSUPPORTED;
2449	} else if (DEVICE_ATTR_IS(apu_thermal_cap)) {
2450		u32 limit;
2451
2452		if (amdgpu_dpm_get_apu_thermal_limit(adev, &limit) ==
2453		    -EOPNOTSUPP)
2454			*states = ATTR_STATE_UNSUPPORTED;
 
 
 
 
2455	}
2456
2457	switch (gc_ver) {
 
 
 
 
 
 
 
 
 
 
2458	case IP_VERSION(10, 3, 0):
2459		if (DEVICE_ATTR_IS(power_dpm_force_performance_level) &&
2460		    amdgpu_sriov_vf(adev)) {
2461			dev_attr->attr.mode &= ~0222;
2462			dev_attr->store = NULL;
2463		}
2464		break;
2465	default:
2466		break;
2467	}
2468
 
 
 
 
 
 
 
 
2469	return 0;
2470}
2471
2472
2473static int amdgpu_device_attr_create(struct amdgpu_device *adev,
2474				     struct amdgpu_device_attr *attr,
2475				     uint32_t mask, struct list_head *attr_list)
2476{
2477	int ret = 0;
2478	enum amdgpu_device_attr_states attr_states = ATTR_STATE_SUPPORTED;
2479	struct amdgpu_device_attr_entry *attr_entry;
2480	struct device_attribute *dev_attr;
2481	const char *name;
2482
2483	int (*attr_update)(struct amdgpu_device *adev, struct amdgpu_device_attr *attr,
2484			   uint32_t mask, enum amdgpu_device_attr_states *states) = default_attr_update;
2485
2486	if (!attr)
2487		return -EINVAL;
2488
2489	dev_attr = &attr->dev_attr;
2490	name = dev_attr->attr.name;
2491
2492	attr_update = attr->attr_update ? attr->attr_update : default_attr_update;
2493
2494	ret = attr_update(adev, attr, mask, &attr_states);
2495	if (ret) {
2496		dev_err(adev->dev, "failed to update device file %s, ret = %d\n",
2497			name, ret);
2498		return ret;
2499	}
2500
2501	if (attr_states == ATTR_STATE_UNSUPPORTED)
2502		return 0;
2503
2504	ret = device_create_file(adev->dev, dev_attr);
2505	if (ret) {
2506		dev_err(adev->dev, "failed to create device file %s, ret = %d\n",
2507			name, ret);
2508	}
2509
2510	attr_entry = kmalloc(sizeof(*attr_entry), GFP_KERNEL);
2511	if (!attr_entry)
2512		return -ENOMEM;
2513
2514	attr_entry->attr = attr;
2515	INIT_LIST_HEAD(&attr_entry->entry);
2516
2517	list_add_tail(&attr_entry->entry, attr_list);
2518
2519	return ret;
2520}
2521
2522static void amdgpu_device_attr_remove(struct amdgpu_device *adev, struct amdgpu_device_attr *attr)
2523{
2524	struct device_attribute *dev_attr = &attr->dev_attr;
2525
2526	device_remove_file(adev->dev, dev_attr);
2527}
2528
2529static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
2530					     struct list_head *attr_list);
2531
2532static int amdgpu_device_attr_create_groups(struct amdgpu_device *adev,
2533					    struct amdgpu_device_attr *attrs,
2534					    uint32_t counts,
2535					    uint32_t mask,
2536					    struct list_head *attr_list)
2537{
2538	int ret = 0;
2539	uint32_t i = 0;
2540
2541	for (i = 0; i < counts; i++) {
2542		ret = amdgpu_device_attr_create(adev, &attrs[i], mask, attr_list);
2543		if (ret)
2544			goto failed;
2545	}
2546
2547	return 0;
2548
2549failed:
2550	amdgpu_device_attr_remove_groups(adev, attr_list);
2551
2552	return ret;
2553}
2554
2555static void amdgpu_device_attr_remove_groups(struct amdgpu_device *adev,
2556					     struct list_head *attr_list)
2557{
2558	struct amdgpu_device_attr_entry *entry, *entry_tmp;
2559
2560	if (list_empty(attr_list))
2561		return ;
2562
2563	list_for_each_entry_safe(entry, entry_tmp, attr_list, entry) {
2564		amdgpu_device_attr_remove(adev, entry->attr);
2565		list_del(&entry->entry);
2566		kfree(entry);
2567	}
2568}
2569
2570static ssize_t amdgpu_hwmon_show_temp(struct device *dev,
2571				      struct device_attribute *attr,
2572				      char *buf)
2573{
2574	struct amdgpu_device *adev = dev_get_drvdata(dev);
2575	int channel = to_sensor_dev_attr(attr)->index;
2576	int r, temp = 0;
2577
2578	if (channel >= PP_TEMP_MAX)
2579		return -EINVAL;
2580
2581	switch (channel) {
2582	case PP_TEMP_JUNCTION:
2583		/* get current junction temperature */
2584		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_HOTSPOT_TEMP,
2585					   (void *)&temp);
2586		break;
2587	case PP_TEMP_EDGE:
2588		/* get current edge temperature */
2589		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_EDGE_TEMP,
2590					   (void *)&temp);
2591		break;
2592	case PP_TEMP_MEM:
2593		/* get current memory temperature */
2594		r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MEM_TEMP,
2595					   (void *)&temp);
2596		break;
2597	default:
2598		r = -EINVAL;
2599		break;
2600	}
2601
2602	if (r)
2603		return r;
2604
2605	return sysfs_emit(buf, "%d\n", temp);
2606}
2607
2608static ssize_t amdgpu_hwmon_show_temp_thresh(struct device *dev,
2609					     struct device_attribute *attr,
2610					     char *buf)
2611{
2612	struct amdgpu_device *adev = dev_get_drvdata(dev);
2613	int hyst = to_sensor_dev_attr(attr)->index;
2614	int temp;
2615
2616	if (hyst)
2617		temp = adev->pm.dpm.thermal.min_temp;
2618	else
2619		temp = adev->pm.dpm.thermal.max_temp;
2620
2621	return sysfs_emit(buf, "%d\n", temp);
2622}
2623
2624static ssize_t amdgpu_hwmon_show_hotspot_temp_thresh(struct device *dev,
2625					     struct device_attribute *attr,
2626					     char *buf)
2627{
2628	struct amdgpu_device *adev = dev_get_drvdata(dev);
2629	int hyst = to_sensor_dev_attr(attr)->index;
2630	int temp;
2631
2632	if (hyst)
2633		temp = adev->pm.dpm.thermal.min_hotspot_temp;
2634	else
2635		temp = adev->pm.dpm.thermal.max_hotspot_crit_temp;
2636
2637	return sysfs_emit(buf, "%d\n", temp);
2638}
2639
2640static ssize_t amdgpu_hwmon_show_mem_temp_thresh(struct device *dev,
2641					     struct device_attribute *attr,
2642					     char *buf)
2643{
2644	struct amdgpu_device *adev = dev_get_drvdata(dev);
2645	int hyst = to_sensor_dev_attr(attr)->index;
2646	int temp;
2647
2648	if (hyst)
2649		temp = adev->pm.dpm.thermal.min_mem_temp;
2650	else
2651		temp = adev->pm.dpm.thermal.max_mem_crit_temp;
2652
2653	return sysfs_emit(buf, "%d\n", temp);
2654}
2655
2656static ssize_t amdgpu_hwmon_show_temp_label(struct device *dev,
2657					     struct device_attribute *attr,
2658					     char *buf)
2659{
2660	int channel = to_sensor_dev_attr(attr)->index;
2661
2662	if (channel >= PP_TEMP_MAX)
2663		return -EINVAL;
2664
2665	return sysfs_emit(buf, "%s\n", temp_label[channel].label);
2666}
2667
2668static ssize_t amdgpu_hwmon_show_temp_emergency(struct device *dev,
2669					     struct device_attribute *attr,
2670					     char *buf)
2671{
2672	struct amdgpu_device *adev = dev_get_drvdata(dev);
2673	int channel = to_sensor_dev_attr(attr)->index;
2674	int temp = 0;
2675
2676	if (channel >= PP_TEMP_MAX)
2677		return -EINVAL;
2678
2679	switch (channel) {
2680	case PP_TEMP_JUNCTION:
2681		temp = adev->pm.dpm.thermal.max_hotspot_emergency_temp;
2682		break;
2683	case PP_TEMP_EDGE:
2684		temp = adev->pm.dpm.thermal.max_edge_emergency_temp;
2685		break;
2686	case PP_TEMP_MEM:
2687		temp = adev->pm.dpm.thermal.max_mem_emergency_temp;
2688		break;
2689	}
2690
2691	return sysfs_emit(buf, "%d\n", temp);
2692}
2693
2694static ssize_t amdgpu_hwmon_get_pwm1_enable(struct device *dev,
2695					    struct device_attribute *attr,
2696					    char *buf)
2697{
2698	struct amdgpu_device *adev = dev_get_drvdata(dev);
2699	u32 pwm_mode = 0;
2700	int ret;
2701
2702	if (amdgpu_in_reset(adev))
2703		return -EPERM;
2704	if (adev->in_suspend && !adev->in_runpm)
2705		return -EPERM;
2706
2707	ret = pm_runtime_get_if_active(adev->dev);
2708	if (ret <= 0)
2709		return ret ?: -EPERM;
 
 
2710
2711	ret = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2712
 
2713	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2714
2715	if (ret)
2716		return -EINVAL;
2717
2718	return sysfs_emit(buf, "%u\n", pwm_mode);
2719}
2720
2721static ssize_t amdgpu_hwmon_set_pwm1_enable(struct device *dev,
2722					    struct device_attribute *attr,
2723					    const char *buf,
2724					    size_t count)
2725{
2726	struct amdgpu_device *adev = dev_get_drvdata(dev);
2727	int err, ret;
2728	u32 pwm_mode;
2729	int value;
2730
2731	if (amdgpu_in_reset(adev))
2732		return -EPERM;
2733	if (adev->in_suspend && !adev->in_runpm)
2734		return -EPERM;
2735
2736	err = kstrtoint(buf, 10, &value);
2737	if (err)
2738		return err;
2739
2740	if (value == 0)
2741		pwm_mode = AMD_FAN_CTRL_NONE;
2742	else if (value == 1)
2743		pwm_mode = AMD_FAN_CTRL_MANUAL;
2744	else if (value == 2)
2745		pwm_mode = AMD_FAN_CTRL_AUTO;
2746	else
2747		return -EINVAL;
2748
2749	ret = pm_runtime_resume_and_get(adev->dev);
2750	if (ret < 0)
 
2751		return ret;
 
2752
2753	ret = amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
2754
2755	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2756	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2757
2758	if (ret)
2759		return -EINVAL;
2760
2761	return count;
2762}
2763
2764static ssize_t amdgpu_hwmon_get_pwm1_min(struct device *dev,
2765					 struct device_attribute *attr,
2766					 char *buf)
2767{
2768	return sysfs_emit(buf, "%i\n", 0);
2769}
2770
2771static ssize_t amdgpu_hwmon_get_pwm1_max(struct device *dev,
2772					 struct device_attribute *attr,
2773					 char *buf)
2774{
2775	return sysfs_emit(buf, "%i\n", 255);
2776}
2777
2778static ssize_t amdgpu_hwmon_set_pwm1(struct device *dev,
2779				     struct device_attribute *attr,
2780				     const char *buf, size_t count)
2781{
2782	struct amdgpu_device *adev = dev_get_drvdata(dev);
2783	int err;
2784	u32 value;
2785	u32 pwm_mode;
2786
2787	if (amdgpu_in_reset(adev))
2788		return -EPERM;
2789	if (adev->in_suspend && !adev->in_runpm)
2790		return -EPERM;
2791
2792	err = kstrtou32(buf, 10, &value);
2793	if (err)
2794		return err;
2795
2796	err = pm_runtime_resume_and_get(adev->dev);
2797	if (err < 0)
 
2798		return err;
 
2799
2800	err = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2801	if (err)
2802		goto out;
2803
2804	if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2805		pr_info("manual fan speed control should be enabled first\n");
2806		err = -EINVAL;
2807		goto out;
2808	}
2809
2810	err = amdgpu_dpm_set_fan_speed_pwm(adev, value);
2811
2812out:
2813	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2814	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2815
2816	if (err)
2817		return err;
2818
2819	return count;
2820}
2821
2822static ssize_t amdgpu_hwmon_get_pwm1(struct device *dev,
2823				     struct device_attribute *attr,
2824				     char *buf)
2825{
2826	struct amdgpu_device *adev = dev_get_drvdata(dev);
2827	int err;
2828	u32 speed = 0;
2829
2830	if (amdgpu_in_reset(adev))
2831		return -EPERM;
2832	if (adev->in_suspend && !adev->in_runpm)
2833		return -EPERM;
2834
2835	err = pm_runtime_get_if_active(adev->dev);
2836	if (err <= 0)
2837		return err ?: -EPERM;
 
 
2838
2839	err = amdgpu_dpm_get_fan_speed_pwm(adev, &speed);
2840
 
2841	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2842
2843	if (err)
2844		return err;
2845
2846	return sysfs_emit(buf, "%i\n", speed);
2847}
2848
2849static ssize_t amdgpu_hwmon_get_fan1_input(struct device *dev,
2850					   struct device_attribute *attr,
2851					   char *buf)
2852{
2853	struct amdgpu_device *adev = dev_get_drvdata(dev);
2854	int err;
2855	u32 speed = 0;
2856
2857	if (amdgpu_in_reset(adev))
2858		return -EPERM;
2859	if (adev->in_suspend && !adev->in_runpm)
2860		return -EPERM;
2861
2862	err = pm_runtime_get_if_active(adev->dev);
2863	if (err <= 0)
2864		return err ?: -EPERM;
 
 
2865
2866	err = amdgpu_dpm_get_fan_speed_rpm(adev, &speed);
2867
 
2868	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2869
2870	if (err)
2871		return err;
2872
2873	return sysfs_emit(buf, "%i\n", speed);
2874}
2875
2876static ssize_t amdgpu_hwmon_get_fan1_min(struct device *dev,
2877					 struct device_attribute *attr,
2878					 char *buf)
2879{
2880	struct amdgpu_device *adev = dev_get_drvdata(dev);
2881	u32 min_rpm = 0;
2882	int r;
2883
2884	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MIN_FAN_RPM,
2885				   (void *)&min_rpm);
2886
2887	if (r)
2888		return r;
2889
2890	return sysfs_emit(buf, "%d\n", min_rpm);
2891}
2892
2893static ssize_t amdgpu_hwmon_get_fan1_max(struct device *dev,
2894					 struct device_attribute *attr,
2895					 char *buf)
2896{
2897	struct amdgpu_device *adev = dev_get_drvdata(dev);
2898	u32 max_rpm = 0;
2899	int r;
2900
2901	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_MAX_FAN_RPM,
2902				   (void *)&max_rpm);
2903
2904	if (r)
2905		return r;
2906
2907	return sysfs_emit(buf, "%d\n", max_rpm);
2908}
2909
2910static ssize_t amdgpu_hwmon_get_fan1_target(struct device *dev,
2911					   struct device_attribute *attr,
2912					   char *buf)
2913{
2914	struct amdgpu_device *adev = dev_get_drvdata(dev);
2915	int err;
2916	u32 rpm = 0;
2917
2918	if (amdgpu_in_reset(adev))
2919		return -EPERM;
2920	if (adev->in_suspend && !adev->in_runpm)
2921		return -EPERM;
2922
2923	err = pm_runtime_get_if_active(adev->dev);
2924	if (err <= 0)
2925		return err ?: -EPERM;
 
 
2926
2927	err = amdgpu_dpm_get_fan_speed_rpm(adev, &rpm);
2928
 
2929	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2930
2931	if (err)
2932		return err;
2933
2934	return sysfs_emit(buf, "%i\n", rpm);
2935}
2936
2937static ssize_t amdgpu_hwmon_set_fan1_target(struct device *dev,
2938				     struct device_attribute *attr,
2939				     const char *buf, size_t count)
2940{
2941	struct amdgpu_device *adev = dev_get_drvdata(dev);
2942	int err;
2943	u32 value;
2944	u32 pwm_mode;
2945
2946	if (amdgpu_in_reset(adev))
2947		return -EPERM;
2948	if (adev->in_suspend && !adev->in_runpm)
2949		return -EPERM;
2950
2951	err = kstrtou32(buf, 10, &value);
2952	if (err)
2953		return err;
2954
2955	err = pm_runtime_resume_and_get(adev->dev);
2956	if (err < 0)
 
2957		return err;
 
2958
2959	err = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2960	if (err)
2961		goto out;
2962
2963	if (pwm_mode != AMD_FAN_CTRL_MANUAL) {
2964		err = -ENODATA;
2965		goto out;
2966	}
2967
2968	err = amdgpu_dpm_set_fan_speed_rpm(adev, value);
2969
2970out:
2971	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
2972	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
2973
2974	if (err)
2975		return err;
2976
2977	return count;
2978}
2979
2980static ssize_t amdgpu_hwmon_get_fan1_enable(struct device *dev,
2981					    struct device_attribute *attr,
2982					    char *buf)
2983{
2984	struct amdgpu_device *adev = dev_get_drvdata(dev);
2985	u32 pwm_mode = 0;
2986	int ret;
2987
2988	if (amdgpu_in_reset(adev))
2989		return -EPERM;
2990	if (adev->in_suspend && !adev->in_runpm)
2991		return -EPERM;
2992
2993	ret = pm_runtime_get_if_active(adev->dev);
2994	if (ret <= 0)
2995		return ret ?: -EPERM;
 
 
2996
2997	ret = amdgpu_dpm_get_fan_control_mode(adev, &pwm_mode);
2998
 
2999	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3000
3001	if (ret)
3002		return -EINVAL;
3003
3004	return sysfs_emit(buf, "%i\n", pwm_mode == AMD_FAN_CTRL_AUTO ? 0 : 1);
3005}
3006
3007static ssize_t amdgpu_hwmon_set_fan1_enable(struct device *dev,
3008					    struct device_attribute *attr,
3009					    const char *buf,
3010					    size_t count)
3011{
3012	struct amdgpu_device *adev = dev_get_drvdata(dev);
3013	int err;
3014	int value;
3015	u32 pwm_mode;
3016
3017	if (amdgpu_in_reset(adev))
3018		return -EPERM;
3019	if (adev->in_suspend && !adev->in_runpm)
3020		return -EPERM;
3021
3022	err = kstrtoint(buf, 10, &value);
3023	if (err)
3024		return err;
3025
3026	if (value == 0)
3027		pwm_mode = AMD_FAN_CTRL_AUTO;
3028	else if (value == 1)
3029		pwm_mode = AMD_FAN_CTRL_MANUAL;
3030	else
3031		return -EINVAL;
3032
3033	err = pm_runtime_resume_and_get(adev->dev);
3034	if (err < 0)
 
3035		return err;
 
3036
3037	err = amdgpu_dpm_set_fan_control_mode(adev, pwm_mode);
3038
3039	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
3040	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3041
3042	if (err)
3043		return -EINVAL;
3044
3045	return count;
3046}
3047
3048static ssize_t amdgpu_hwmon_show_vddgfx(struct device *dev,
3049					struct device_attribute *attr,
3050					char *buf)
3051{
3052	struct amdgpu_device *adev = dev_get_drvdata(dev);
3053	u32 vddgfx;
3054	int r;
3055
3056	/* get the voltage */
3057	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_VDDGFX,
3058				   (void *)&vddgfx);
3059	if (r)
3060		return r;
3061
3062	return sysfs_emit(buf, "%d\n", vddgfx);
3063}
3064
3065static ssize_t amdgpu_hwmon_show_vddgfx_label(struct device *dev,
3066					      struct device_attribute *attr,
3067					      char *buf)
3068{
3069	return sysfs_emit(buf, "vddgfx\n");
3070}
3071
3072static ssize_t amdgpu_hwmon_show_vddnb(struct device *dev,
3073				       struct device_attribute *attr,
3074				       char *buf)
3075{
3076	struct amdgpu_device *adev = dev_get_drvdata(dev);
3077	u32 vddnb;
3078	int r;
3079
3080	/* only APUs have vddnb */
3081	if  (!(adev->flags & AMD_IS_APU))
3082		return -EINVAL;
3083
3084	/* get the voltage */
3085	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_VDDNB,
3086				   (void *)&vddnb);
3087	if (r)
3088		return r;
3089
3090	return sysfs_emit(buf, "%d\n", vddnb);
3091}
3092
3093static ssize_t amdgpu_hwmon_show_vddnb_label(struct device *dev,
3094					      struct device_attribute *attr,
3095					      char *buf)
3096{
3097	return sysfs_emit(buf, "vddnb\n");
3098}
3099
3100static int amdgpu_hwmon_get_power(struct device *dev,
3101				  enum amd_pp_sensors sensor)
3102{
3103	struct amdgpu_device *adev = dev_get_drvdata(dev);
3104	unsigned int uw;
3105	u32 query = 0;
3106	int r;
3107
3108	r = amdgpu_hwmon_get_sensor_generic(adev, sensor, (void *)&query);
3109	if (r)
3110		return r;
3111
3112	/* convert to microwatts */
3113	uw = (query >> 8) * 1000000 + (query & 0xff) * 1000;
3114
3115	return uw;
3116}
3117
3118static ssize_t amdgpu_hwmon_show_power_avg(struct device *dev,
3119					   struct device_attribute *attr,
3120					   char *buf)
3121{
3122	ssize_t val;
3123
3124	val = amdgpu_hwmon_get_power(dev, AMDGPU_PP_SENSOR_GPU_AVG_POWER);
3125	if (val < 0)
3126		return val;
3127
3128	return sysfs_emit(buf, "%zd\n", val);
3129}
3130
3131static ssize_t amdgpu_hwmon_show_power_input(struct device *dev,
3132					     struct device_attribute *attr,
3133					     char *buf)
3134{
3135	ssize_t val;
3136
3137	val = amdgpu_hwmon_get_power(dev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER);
3138	if (val < 0)
3139		return val;
3140
3141	return sysfs_emit(buf, "%zd\n", val);
3142}
3143
3144static ssize_t amdgpu_hwmon_show_power_cap_generic(struct device *dev,
3145					struct device_attribute *attr,
3146					char *buf,
3147					enum pp_power_limit_level pp_limit_level)
3148{
3149	struct amdgpu_device *adev = dev_get_drvdata(dev);
3150	enum pp_power_type power_type = to_sensor_dev_attr(attr)->index;
3151	uint32_t limit;
3152	ssize_t size;
3153	int r;
3154
3155	if (amdgpu_in_reset(adev))
3156		return -EPERM;
3157	if (adev->in_suspend && !adev->in_runpm)
3158		return -EPERM;
3159
3160	r = pm_runtime_get_if_active(adev->dev);
3161	if (r <= 0)
3162		return r ?: -EPERM;
 
 
3163
3164	r = amdgpu_dpm_get_power_limit(adev, &limit,
3165				      pp_limit_level, power_type);
3166
3167	if (!r)
3168		size = sysfs_emit(buf, "%u\n", limit * 1000000);
3169	else
3170		size = sysfs_emit(buf, "\n");
3171
 
3172	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3173
3174	return size;
3175}
3176
3177static ssize_t amdgpu_hwmon_show_power_cap_min(struct device *dev,
3178					 struct device_attribute *attr,
3179					 char *buf)
3180{
3181	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_MIN);
3182}
3183
3184static ssize_t amdgpu_hwmon_show_power_cap_max(struct device *dev,
3185					 struct device_attribute *attr,
3186					 char *buf)
3187{
3188	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_MAX);
3189
3190}
3191
3192static ssize_t amdgpu_hwmon_show_power_cap(struct device *dev,
3193					 struct device_attribute *attr,
3194					 char *buf)
3195{
3196	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_CURRENT);
3197
3198}
3199
3200static ssize_t amdgpu_hwmon_show_power_cap_default(struct device *dev,
3201					 struct device_attribute *attr,
3202					 char *buf)
3203{
3204	return amdgpu_hwmon_show_power_cap_generic(dev, attr, buf, PP_PWR_LIMIT_DEFAULT);
3205
3206}
3207
3208static ssize_t amdgpu_hwmon_show_power_label(struct device *dev,
3209					 struct device_attribute *attr,
3210					 char *buf)
3211{
3212	struct amdgpu_device *adev = dev_get_drvdata(dev);
3213	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
3214
3215	if (gc_ver == IP_VERSION(10, 3, 1))
3216		return sysfs_emit(buf, "%s\n",
3217				  to_sensor_dev_attr(attr)->index == PP_PWR_TYPE_FAST ?
3218				  "fastPPT" : "slowPPT");
3219	else
3220		return sysfs_emit(buf, "PPT\n");
3221}
3222
3223static ssize_t amdgpu_hwmon_set_power_cap(struct device *dev,
3224		struct device_attribute *attr,
3225		const char *buf,
3226		size_t count)
3227{
3228	struct amdgpu_device *adev = dev_get_drvdata(dev);
3229	int limit_type = to_sensor_dev_attr(attr)->index;
3230	int err;
3231	u32 value;
3232
3233	if (amdgpu_in_reset(adev))
3234		return -EPERM;
3235	if (adev->in_suspend && !adev->in_runpm)
3236		return -EPERM;
3237
3238	if (amdgpu_sriov_vf(adev))
3239		return -EINVAL;
3240
3241	err = kstrtou32(buf, 10, &value);
3242	if (err)
3243		return err;
3244
3245	value = value / 1000000; /* convert to Watt */
3246	value |= limit_type << 24;
3247
3248	err = pm_runtime_resume_and_get(adev->dev);
3249	if (err < 0)
 
3250		return err;
 
3251
3252	err = amdgpu_dpm_set_power_limit(adev, value);
3253
3254	pm_runtime_mark_last_busy(adev_to_drm(adev)->dev);
3255	pm_runtime_put_autosuspend(adev_to_drm(adev)->dev);
3256
3257	if (err)
3258		return err;
3259
3260	return count;
3261}
3262
3263static ssize_t amdgpu_hwmon_show_sclk(struct device *dev,
3264				      struct device_attribute *attr,
3265				      char *buf)
3266{
3267	struct amdgpu_device *adev = dev_get_drvdata(dev);
3268	uint32_t sclk;
3269	int r;
3270
3271	/* get the sclk */
3272	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GFX_SCLK,
3273				   (void *)&sclk);
3274	if (r)
3275		return r;
3276
3277	return sysfs_emit(buf, "%u\n", sclk * 10 * 1000);
3278}
3279
3280static ssize_t amdgpu_hwmon_show_sclk_label(struct device *dev,
3281					    struct device_attribute *attr,
3282					    char *buf)
3283{
3284	return sysfs_emit(buf, "sclk\n");
3285}
3286
3287static ssize_t amdgpu_hwmon_show_mclk(struct device *dev,
3288				      struct device_attribute *attr,
3289				      char *buf)
3290{
3291	struct amdgpu_device *adev = dev_get_drvdata(dev);
3292	uint32_t mclk;
3293	int r;
3294
3295	/* get the sclk */
3296	r = amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GFX_MCLK,
3297				   (void *)&mclk);
3298	if (r)
3299		return r;
3300
3301	return sysfs_emit(buf, "%u\n", mclk * 10 * 1000);
3302}
3303
3304static ssize_t amdgpu_hwmon_show_mclk_label(struct device *dev,
3305					    struct device_attribute *attr,
3306					    char *buf)
3307{
3308	return sysfs_emit(buf, "mclk\n");
3309}
3310
3311/**
3312 * DOC: hwmon
3313 *
3314 * The amdgpu driver exposes the following sensor interfaces:
3315 *
3316 * - GPU temperature (via the on-die sensor)
3317 *
3318 * - GPU voltage
3319 *
3320 * - Northbridge voltage (APUs only)
3321 *
3322 * - GPU power
3323 *
3324 * - GPU fan
3325 *
3326 * - GPU gfx/compute engine clock
3327 *
3328 * - GPU memory clock (dGPU only)
3329 *
3330 * hwmon interfaces for GPU temperature:
3331 *
3332 * - temp[1-3]_input: the on die GPU temperature in millidegrees Celsius
3333 *   - temp2_input and temp3_input are supported on SOC15 dGPUs only
3334 *
3335 * - temp[1-3]_label: temperature channel label
3336 *   - temp2_label and temp3_label are supported on SOC15 dGPUs only
3337 *
3338 * - temp[1-3]_crit: temperature critical max value in millidegrees Celsius
3339 *   - temp2_crit and temp3_crit are supported on SOC15 dGPUs only
3340 *
3341 * - temp[1-3]_crit_hyst: temperature hysteresis for critical limit in millidegrees Celsius
3342 *   - temp2_crit_hyst and temp3_crit_hyst are supported on SOC15 dGPUs only
3343 *
3344 * - temp[1-3]_emergency: temperature emergency max value(asic shutdown) in millidegrees Celsius
3345 *   - these are supported on SOC15 dGPUs only
3346 *
3347 * hwmon interfaces for GPU voltage:
3348 *
3349 * - in0_input: the voltage on the GPU in millivolts
3350 *
3351 * - in1_input: the voltage on the Northbridge in millivolts
3352 *
3353 * hwmon interfaces for GPU power:
3354 *
3355 * - power1_average: average power used by the SoC in microWatts.  On APUs this includes the CPU.
3356 *
3357 * - power1_input: instantaneous power used by the SoC in microWatts.  On APUs this includes the CPU.
3358 *
3359 * - power1_cap_min: minimum cap supported in microWatts
3360 *
3361 * - power1_cap_max: maximum cap supported in microWatts
3362 *
3363 * - power1_cap: selected power cap in microWatts
3364 *
3365 * hwmon interfaces for GPU fan:
3366 *
3367 * - pwm1: pulse width modulation fan level (0-255)
3368 *
3369 * - pwm1_enable: pulse width modulation fan control method (0: no fan speed control, 1: manual fan speed control using pwm interface, 2: automatic fan speed control)
3370 *
3371 * - pwm1_min: pulse width modulation fan control minimum level (0)
3372 *
3373 * - pwm1_max: pulse width modulation fan control maximum level (255)
3374 *
3375 * - fan1_min: a minimum value Unit: revolution/min (RPM)
3376 *
3377 * - fan1_max: a maximum value Unit: revolution/max (RPM)
3378 *
3379 * - fan1_input: fan speed in RPM
3380 *
3381 * - fan[1-\*]_target: Desired fan speed Unit: revolution/min (RPM)
3382 *
3383 * - fan[1-\*]_enable: Enable or disable the sensors.1: Enable 0: Disable
3384 *
3385 * NOTE: DO NOT set the fan speed via "pwm1" and "fan[1-\*]_target" interfaces at the same time.
3386 *       That will get the former one overridden.
3387 *
3388 * hwmon interfaces for GPU clocks:
3389 *
3390 * - freq1_input: the gfx/compute clock in hertz
3391 *
3392 * - freq2_input: the memory clock in hertz
3393 *
3394 * You can use hwmon tools like sensors to view this information on your system.
3395 *
3396 */
3397
3398static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_EDGE);
3399static SENSOR_DEVICE_ATTR(temp1_crit, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 0);
3400static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IRUGO, amdgpu_hwmon_show_temp_thresh, NULL, 1);
3401static SENSOR_DEVICE_ATTR(temp1_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_EDGE);
3402static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_JUNCTION);
3403static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 0);
3404static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, amdgpu_hwmon_show_hotspot_temp_thresh, NULL, 1);
3405static SENSOR_DEVICE_ATTR(temp2_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_JUNCTION);
3406static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, amdgpu_hwmon_show_temp, NULL, PP_TEMP_MEM);
3407static SENSOR_DEVICE_ATTR(temp3_crit, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 0);
3408static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, amdgpu_hwmon_show_mem_temp_thresh, NULL, 1);
3409static SENSOR_DEVICE_ATTR(temp3_emergency, S_IRUGO, amdgpu_hwmon_show_temp_emergency, NULL, PP_TEMP_MEM);
3410static SENSOR_DEVICE_ATTR(temp1_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_EDGE);
3411static SENSOR_DEVICE_ATTR(temp2_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_JUNCTION);
3412static SENSOR_DEVICE_ATTR(temp3_label, S_IRUGO, amdgpu_hwmon_show_temp_label, NULL, PP_TEMP_MEM);
3413static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1, amdgpu_hwmon_set_pwm1, 0);
3414static SENSOR_DEVICE_ATTR(pwm1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_pwm1_enable, amdgpu_hwmon_set_pwm1_enable, 0);
3415static SENSOR_DEVICE_ATTR(pwm1_min, S_IRUGO, amdgpu_hwmon_get_pwm1_min, NULL, 0);
3416static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO, amdgpu_hwmon_get_pwm1_max, NULL, 0);
3417static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, amdgpu_hwmon_get_fan1_input, NULL, 0);
3418static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO, amdgpu_hwmon_get_fan1_min, NULL, 0);
3419static SENSOR_DEVICE_ATTR(fan1_max, S_IRUGO, amdgpu_hwmon_get_fan1_max, NULL, 0);
3420static SENSOR_DEVICE_ATTR(fan1_target, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_target, amdgpu_hwmon_set_fan1_target, 0);
3421static SENSOR_DEVICE_ATTR(fan1_enable, S_IRUGO | S_IWUSR, amdgpu_hwmon_get_fan1_enable, amdgpu_hwmon_set_fan1_enable, 0);
3422static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, amdgpu_hwmon_show_vddgfx, NULL, 0);
3423static SENSOR_DEVICE_ATTR(in0_label, S_IRUGO, amdgpu_hwmon_show_vddgfx_label, NULL, 0);
3424static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, amdgpu_hwmon_show_vddnb, NULL, 0);
3425static SENSOR_DEVICE_ATTR(in1_label, S_IRUGO, amdgpu_hwmon_show_vddnb_label, NULL, 0);
3426static SENSOR_DEVICE_ATTR(power1_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 0);
3427static SENSOR_DEVICE_ATTR(power1_input, S_IRUGO, amdgpu_hwmon_show_power_input, NULL, 0);
3428static SENSOR_DEVICE_ATTR(power1_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 0);
3429static SENSOR_DEVICE_ATTR(power1_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 0);
3430static SENSOR_DEVICE_ATTR(power1_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 0);
3431static SENSOR_DEVICE_ATTR(power1_cap_default, S_IRUGO, amdgpu_hwmon_show_power_cap_default, NULL, 0);
3432static SENSOR_DEVICE_ATTR(power1_label, S_IRUGO, amdgpu_hwmon_show_power_label, NULL, 0);
3433static SENSOR_DEVICE_ATTR(power2_average, S_IRUGO, amdgpu_hwmon_show_power_avg, NULL, 1);
3434static SENSOR_DEVICE_ATTR(power2_cap_max, S_IRUGO, amdgpu_hwmon_show_power_cap_max, NULL, 1);
3435static SENSOR_DEVICE_ATTR(power2_cap_min, S_IRUGO, amdgpu_hwmon_show_power_cap_min, NULL, 1);
3436static SENSOR_DEVICE_ATTR(power2_cap, S_IRUGO | S_IWUSR, amdgpu_hwmon_show_power_cap, amdgpu_hwmon_set_power_cap, 1);
3437static SENSOR_DEVICE_ATTR(power2_cap_default, S_IRUGO, amdgpu_hwmon_show_power_cap_default, NULL, 1);
3438static SENSOR_DEVICE_ATTR(power2_label, S_IRUGO, amdgpu_hwmon_show_power_label, NULL, 1);
3439static SENSOR_DEVICE_ATTR(freq1_input, S_IRUGO, amdgpu_hwmon_show_sclk, NULL, 0);
3440static SENSOR_DEVICE_ATTR(freq1_label, S_IRUGO, amdgpu_hwmon_show_sclk_label, NULL, 0);
3441static SENSOR_DEVICE_ATTR(freq2_input, S_IRUGO, amdgpu_hwmon_show_mclk, NULL, 0);
3442static SENSOR_DEVICE_ATTR(freq2_label, S_IRUGO, amdgpu_hwmon_show_mclk_label, NULL, 0);
3443
3444static struct attribute *hwmon_attributes[] = {
3445	&sensor_dev_attr_temp1_input.dev_attr.attr,
3446	&sensor_dev_attr_temp1_crit.dev_attr.attr,
3447	&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
3448	&sensor_dev_attr_temp2_input.dev_attr.attr,
3449	&sensor_dev_attr_temp2_crit.dev_attr.attr,
3450	&sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
3451	&sensor_dev_attr_temp3_input.dev_attr.attr,
3452	&sensor_dev_attr_temp3_crit.dev_attr.attr,
3453	&sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
3454	&sensor_dev_attr_temp1_emergency.dev_attr.attr,
3455	&sensor_dev_attr_temp2_emergency.dev_attr.attr,
3456	&sensor_dev_attr_temp3_emergency.dev_attr.attr,
3457	&sensor_dev_attr_temp1_label.dev_attr.attr,
3458	&sensor_dev_attr_temp2_label.dev_attr.attr,
3459	&sensor_dev_attr_temp3_label.dev_attr.attr,
3460	&sensor_dev_attr_pwm1.dev_attr.attr,
3461	&sensor_dev_attr_pwm1_enable.dev_attr.attr,
3462	&sensor_dev_attr_pwm1_min.dev_attr.attr,
3463	&sensor_dev_attr_pwm1_max.dev_attr.attr,
3464	&sensor_dev_attr_fan1_input.dev_attr.attr,
3465	&sensor_dev_attr_fan1_min.dev_attr.attr,
3466	&sensor_dev_attr_fan1_max.dev_attr.attr,
3467	&sensor_dev_attr_fan1_target.dev_attr.attr,
3468	&sensor_dev_attr_fan1_enable.dev_attr.attr,
3469	&sensor_dev_attr_in0_input.dev_attr.attr,
3470	&sensor_dev_attr_in0_label.dev_attr.attr,
3471	&sensor_dev_attr_in1_input.dev_attr.attr,
3472	&sensor_dev_attr_in1_label.dev_attr.attr,
3473	&sensor_dev_attr_power1_average.dev_attr.attr,
3474	&sensor_dev_attr_power1_input.dev_attr.attr,
3475	&sensor_dev_attr_power1_cap_max.dev_attr.attr,
3476	&sensor_dev_attr_power1_cap_min.dev_attr.attr,
3477	&sensor_dev_attr_power1_cap.dev_attr.attr,
3478	&sensor_dev_attr_power1_cap_default.dev_attr.attr,
3479	&sensor_dev_attr_power1_label.dev_attr.attr,
3480	&sensor_dev_attr_power2_average.dev_attr.attr,
3481	&sensor_dev_attr_power2_cap_max.dev_attr.attr,
3482	&sensor_dev_attr_power2_cap_min.dev_attr.attr,
3483	&sensor_dev_attr_power2_cap.dev_attr.attr,
3484	&sensor_dev_attr_power2_cap_default.dev_attr.attr,
3485	&sensor_dev_attr_power2_label.dev_attr.attr,
3486	&sensor_dev_attr_freq1_input.dev_attr.attr,
3487	&sensor_dev_attr_freq1_label.dev_attr.attr,
3488	&sensor_dev_attr_freq2_input.dev_attr.attr,
3489	&sensor_dev_attr_freq2_label.dev_attr.attr,
3490	NULL
3491};
3492
3493static umode_t hwmon_attributes_visible(struct kobject *kobj,
3494					struct attribute *attr, int index)
3495{
3496	struct device *dev = kobj_to_dev(kobj);
3497	struct amdgpu_device *adev = dev_get_drvdata(dev);
3498	umode_t effective_mode = attr->mode;
3499	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
3500	uint32_t tmp;
3501
3502	/* under pp one vf mode manage of hwmon attributes is not supported */
3503	if (amdgpu_sriov_is_pp_one_vf(adev))
3504		effective_mode &= ~S_IWUSR;
3505
3506	/* Skip fan attributes if fan is not present */
3507	if (adev->pm.no_fan && (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3508	    attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3509	    attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3510	    attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3511	    attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3512	    attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3513	    attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3514	    attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3515	    attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3516		return 0;
3517
3518	/* Skip fan attributes on APU */
3519	if ((adev->flags & AMD_IS_APU) &&
3520	    (attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3521	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3522	     attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3523	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3524	     attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3525	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3526	     attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3527	     attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3528	     attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3529		return 0;
3530
3531	/* Skip crit temp on APU */
3532	if ((((adev->flags & AMD_IS_APU) && (adev->family >= AMDGPU_FAMILY_CZ)) ||
3533	    (gc_ver == IP_VERSION(9, 4, 3) || gc_ver == IP_VERSION(9, 4, 4))) &&
3534	    (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
3535	     attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr))
3536		return 0;
3537
3538	/* Skip limit attributes if DPM is not enabled */
3539	if (!adev->pm.dpm_enabled &&
3540	    (attr == &sensor_dev_attr_temp1_crit.dev_attr.attr ||
3541	     attr == &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr ||
3542	     attr == &sensor_dev_attr_pwm1.dev_attr.attr ||
3543	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr ||
3544	     attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3545	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr ||
3546	     attr == &sensor_dev_attr_fan1_input.dev_attr.attr ||
3547	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr ||
3548	     attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3549	     attr == &sensor_dev_attr_fan1_target.dev_attr.attr ||
3550	     attr == &sensor_dev_attr_fan1_enable.dev_attr.attr))
3551		return 0;
3552
3553	/* mask fan attributes if we have no bindings for this asic to expose */
3554	if (((amdgpu_dpm_get_fan_speed_pwm(adev, NULL) == -EOPNOTSUPP) &&
3555	      attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't query fan */
3556	    ((amdgpu_dpm_get_fan_control_mode(adev, NULL) == -EOPNOTSUPP) &&
3557	     attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't query state */
3558		effective_mode &= ~S_IRUGO;
3559
3560	if (((amdgpu_dpm_set_fan_speed_pwm(adev, U32_MAX) == -EOPNOTSUPP) &&
3561	      attr == &sensor_dev_attr_pwm1.dev_attr.attr) || /* can't manage fan */
3562	      ((amdgpu_dpm_set_fan_control_mode(adev, U32_MAX) == -EOPNOTSUPP) &&
3563	      attr == &sensor_dev_attr_pwm1_enable.dev_attr.attr)) /* can't manage state */
3564		effective_mode &= ~S_IWUSR;
3565
3566	/* not implemented yet for APUs other than GC 10.3.1 (vangogh) and 9.4.3 */
3567	if (((adev->family == AMDGPU_FAMILY_SI) ||
3568	     ((adev->flags & AMD_IS_APU) && (gc_ver != IP_VERSION(10, 3, 1)) &&
3569	      (gc_ver != IP_VERSION(9, 4, 3) && gc_ver != IP_VERSION(9, 4, 4)))) &&
3570	    (attr == &sensor_dev_attr_power1_cap_max.dev_attr.attr ||
3571	     attr == &sensor_dev_attr_power1_cap_min.dev_attr.attr ||
3572	     attr == &sensor_dev_attr_power1_cap.dev_attr.attr ||
3573	     attr == &sensor_dev_attr_power1_cap_default.dev_attr.attr))
3574		return 0;
3575
3576	/* not implemented yet for APUs having < GC 9.3.0 (Renoir) */
3577	if (((adev->family == AMDGPU_FAMILY_SI) ||
3578	     ((adev->flags & AMD_IS_APU) && (gc_ver < IP_VERSION(9, 3, 0)))) &&
3579	    (attr == &sensor_dev_attr_power1_average.dev_attr.attr))
3580		return 0;
3581
3582	/* not all products support both average and instantaneous */
3583	if (attr == &sensor_dev_attr_power1_average.dev_attr.attr &&
3584	    amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_AVG_POWER, (void *)&tmp) == -EOPNOTSUPP)
3585		return 0;
3586	if (attr == &sensor_dev_attr_power1_input.dev_attr.attr &&
3587	    amdgpu_hwmon_get_sensor_generic(adev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER, (void *)&tmp) == -EOPNOTSUPP)
3588		return 0;
3589
3590	/* hide max/min values if we can't both query and manage the fan */
3591	if (((amdgpu_dpm_set_fan_speed_pwm(adev, U32_MAX) == -EOPNOTSUPP) &&
3592	      (amdgpu_dpm_get_fan_speed_pwm(adev, NULL) == -EOPNOTSUPP) &&
3593	      (amdgpu_dpm_set_fan_speed_rpm(adev, U32_MAX) == -EOPNOTSUPP) &&
3594	      (amdgpu_dpm_get_fan_speed_rpm(adev, NULL) == -EOPNOTSUPP)) &&
3595	    (attr == &sensor_dev_attr_pwm1_max.dev_attr.attr ||
3596	     attr == &sensor_dev_attr_pwm1_min.dev_attr.attr))
3597		return 0;
3598
3599	if ((amdgpu_dpm_set_fan_speed_rpm(adev, U32_MAX) == -EOPNOTSUPP) &&
3600	     (amdgpu_dpm_get_fan_speed_rpm(adev, NULL) == -EOPNOTSUPP) &&
3601	     (attr == &sensor_dev_attr_fan1_max.dev_attr.attr ||
3602	     attr == &sensor_dev_attr_fan1_min.dev_attr.attr))
3603		return 0;
3604
3605	if ((adev->family == AMDGPU_FAMILY_SI ||	/* not implemented yet */
3606	     adev->family == AMDGPU_FAMILY_KV ||	/* not implemented yet */
3607	     (gc_ver == IP_VERSION(9, 4, 3) ||
3608	      gc_ver == IP_VERSION(9, 4, 4))) &&
3609	    (attr == &sensor_dev_attr_in0_input.dev_attr.attr ||
3610	     attr == &sensor_dev_attr_in0_label.dev_attr.attr))
3611		return 0;
3612
3613	/* only APUs other than gc 9,4,3 have vddnb */
3614	if ((!(adev->flags & AMD_IS_APU) ||
3615	     (gc_ver == IP_VERSION(9, 4, 3) ||
3616	      gc_ver == IP_VERSION(9, 4, 4))) &&
3617	    (attr == &sensor_dev_attr_in1_input.dev_attr.attr ||
3618	     attr == &sensor_dev_attr_in1_label.dev_attr.attr))
3619		return 0;
3620
3621	/* no mclk on APUs other than gc 9,4,3*/
3622	if (((adev->flags & AMD_IS_APU) && (gc_ver != IP_VERSION(9, 4, 3))) &&
3623	    (attr == &sensor_dev_attr_freq2_input.dev_attr.attr ||
3624	     attr == &sensor_dev_attr_freq2_label.dev_attr.attr))
3625		return 0;
3626
3627	if (((adev->flags & AMD_IS_APU) || gc_ver < IP_VERSION(9, 0, 0)) &&
3628	    (gc_ver != IP_VERSION(9, 4, 3) && gc_ver != IP_VERSION(9, 4, 4)) &&
3629	    (attr == &sensor_dev_attr_temp2_input.dev_attr.attr ||
3630	     attr == &sensor_dev_attr_temp2_label.dev_attr.attr ||
3631	     attr == &sensor_dev_attr_temp2_crit.dev_attr.attr ||
3632	     attr == &sensor_dev_attr_temp3_input.dev_attr.attr ||
3633	     attr == &sensor_dev_attr_temp3_label.dev_attr.attr ||
3634	     attr == &sensor_dev_attr_temp3_crit.dev_attr.attr))
3635		return 0;
3636
3637	/* hotspot temperature for gc 9,4,3*/
3638	if (gc_ver == IP_VERSION(9, 4, 3) ||
3639	    gc_ver == IP_VERSION(9, 4, 4)) {
3640		if (attr == &sensor_dev_attr_temp1_input.dev_attr.attr ||
3641		    attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
3642		    attr == &sensor_dev_attr_temp1_label.dev_attr.attr)
3643			return 0;
3644
3645		if (attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
3646		    attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr)
3647			return attr->mode;
3648	}
3649
3650	/* only SOC15 dGPUs support hotspot and mem temperatures */
3651	if (((adev->flags & AMD_IS_APU) || gc_ver < IP_VERSION(9, 0, 0)) &&
3652	    (attr == &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr ||
3653	     attr == &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr ||
3654	     attr == &sensor_dev_attr_temp1_emergency.dev_attr.attr ||
3655	     attr == &sensor_dev_attr_temp2_emergency.dev_attr.attr ||
3656	     attr == &sensor_dev_attr_temp3_emergency.dev_attr.attr))
3657		return 0;
3658
3659	/* only Vangogh has fast PPT limit and power labels */
3660	if (!(gc_ver == IP_VERSION(10, 3, 1)) &&
3661	    (attr == &sensor_dev_attr_power2_average.dev_attr.attr ||
3662	     attr == &sensor_dev_attr_power2_cap_max.dev_attr.attr ||
3663	     attr == &sensor_dev_attr_power2_cap_min.dev_attr.attr ||
3664	     attr == &sensor_dev_attr_power2_cap.dev_attr.attr ||
3665	     attr == &sensor_dev_attr_power2_cap_default.dev_attr.attr ||
3666	     attr == &sensor_dev_attr_power2_label.dev_attr.attr))
3667		return 0;
3668
3669	return effective_mode;
3670}
3671
3672static const struct attribute_group hwmon_attrgroup = {
3673	.attrs = hwmon_attributes,
3674	.is_visible = hwmon_attributes_visible,
3675};
3676
3677static const struct attribute_group *hwmon_groups[] = {
3678	&hwmon_attrgroup,
3679	NULL
3680};
3681
3682static int amdgpu_retrieve_od_settings(struct amdgpu_device *adev,
3683				       enum pp_clock_type od_type,
3684				       char *buf)
3685{
3686	int size = 0;
3687	int ret;
3688
3689	if (amdgpu_in_reset(adev))
3690		return -EPERM;
3691	if (adev->in_suspend && !adev->in_runpm)
3692		return -EPERM;
3693
3694	ret = pm_runtime_get_if_active(adev->dev);
3695	if (ret <= 0)
3696		return ret ?: -EPERM;
 
 
3697
3698	size = amdgpu_dpm_print_clock_levels(adev, od_type, buf);
3699	if (size == 0)
3700		size = sysfs_emit(buf, "\n");
3701
 
3702	pm_runtime_put_autosuspend(adev->dev);
3703
3704	return size;
3705}
3706
3707static int parse_input_od_command_lines(const char *buf,
3708					size_t count,
3709					u32 *type,
3710					long *params,
3711					uint32_t *num_of_params)
3712{
3713	const char delimiter[3] = {' ', '\n', '\0'};
3714	uint32_t parameter_size = 0;
3715	char buf_cpy[128] = {0};
3716	char *tmp_str, *sub_str;
3717	int ret;
3718
3719	if (count > sizeof(buf_cpy) - 1)
3720		return -EINVAL;
3721
3722	memcpy(buf_cpy, buf, count);
3723	tmp_str = buf_cpy;
3724
3725	/* skip heading spaces */
3726	while (isspace(*tmp_str))
3727		tmp_str++;
3728
3729	switch (*tmp_str) {
3730	case 'c':
3731		*type = PP_OD_COMMIT_DPM_TABLE;
3732		return 0;
3733	case 'r':
3734		params[parameter_size] = *type;
3735		*num_of_params = 1;
3736		*type = PP_OD_RESTORE_DEFAULT_TABLE;
3737		return 0;
3738	default:
3739		break;
3740	}
3741
3742	while ((sub_str = strsep(&tmp_str, delimiter)) != NULL) {
3743		if (strlen(sub_str) == 0)
3744			continue;
3745
3746		ret = kstrtol(sub_str, 0, &params[parameter_size]);
3747		if (ret)
3748			return -EINVAL;
3749		parameter_size++;
3750
3751		while (isspace(*tmp_str))
3752			tmp_str++;
3753	}
3754
3755	*num_of_params = parameter_size;
3756
3757	return 0;
3758}
3759
3760static int
3761amdgpu_distribute_custom_od_settings(struct amdgpu_device *adev,
3762				     enum PP_OD_DPM_TABLE_COMMAND cmd_type,
3763				     const char *in_buf,
3764				     size_t count)
3765{
3766	uint32_t parameter_size = 0;
3767	long parameter[64];
3768	int ret;
3769
3770	if (amdgpu_in_reset(adev))
3771		return -EPERM;
3772	if (adev->in_suspend && !adev->in_runpm)
3773		return -EPERM;
3774
3775	ret = parse_input_od_command_lines(in_buf,
3776					   count,
3777					   &cmd_type,
3778					   parameter,
3779					   &parameter_size);
3780	if (ret)
3781		return ret;
3782
3783	ret = pm_runtime_resume_and_get(adev->dev);
3784	if (ret < 0)
3785		return ret;
3786
3787	ret = amdgpu_dpm_odn_edit_dpm_table(adev,
3788					    cmd_type,
3789					    parameter,
3790					    parameter_size);
3791	if (ret)
3792		goto err_out;
3793
3794	if (cmd_type == PP_OD_COMMIT_DPM_TABLE) {
3795		ret = amdgpu_dpm_dispatch_task(adev,
3796					       AMD_PP_TASK_READJUST_POWER_STATE,
3797					       NULL);
3798		if (ret)
3799			goto err_out;
3800	}
3801
3802	pm_runtime_mark_last_busy(adev->dev);
3803	pm_runtime_put_autosuspend(adev->dev);
3804
3805	return count;
3806
3807err_out:
3808	pm_runtime_mark_last_busy(adev->dev);
 
3809	pm_runtime_put_autosuspend(adev->dev);
3810
3811	return ret;
3812}
3813
3814/**
3815 * DOC: fan_curve
3816 *
3817 * The amdgpu driver provides a sysfs API for checking and adjusting the fan
3818 * control curve line.
3819 *
3820 * Reading back the file shows you the current settings(temperature in Celsius
3821 * degree and fan speed in pwm) applied to every anchor point of the curve line
3822 * and their permitted ranges if changable.
3823 *
3824 * Writing a desired string(with the format like "anchor_point_index temperature
3825 * fan_speed_in_pwm") to the file, change the settings for the specific anchor
3826 * point accordingly.
3827 *
3828 * When you have finished the editing, write "c" (commit) to the file to commit
3829 * your changes.
3830 *
3831 * If you want to reset to the default value, write "r" (reset) to the file to
3832 * reset them
3833 *
3834 * There are two fan control modes supported: auto and manual. With auto mode,
3835 * PMFW handles the fan speed control(how fan speed reacts to ASIC temperature).
3836 * While with manual mode, users can set their own fan curve line as what
3837 * described here. Normally the ASIC is booted up with auto mode. Any
3838 * settings via this interface will switch the fan control to manual mode
3839 * implicitly.
3840 */
3841static ssize_t fan_curve_show(struct kobject *kobj,
3842			      struct kobj_attribute *attr,
3843			      char *buf)
3844{
3845	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3846	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3847
3848	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_CURVE, buf);
3849}
3850
3851static ssize_t fan_curve_store(struct kobject *kobj,
3852			       struct kobj_attribute *attr,
3853			       const char *buf,
3854			       size_t count)
3855{
3856	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3857	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3858
3859	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3860							     PP_OD_EDIT_FAN_CURVE,
3861							     buf,
3862							     count);
3863}
3864
3865static umode_t fan_curve_visible(struct amdgpu_device *adev)
3866{
3867	umode_t umode = 0000;
3868
3869	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_CURVE_RETRIEVE)
3870		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3871
3872	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_CURVE_SET)
3873		umode |= S_IWUSR;
3874
3875	return umode;
3876}
3877
3878/**
3879 * DOC: acoustic_limit_rpm_threshold
3880 *
3881 * The amdgpu driver provides a sysfs API for checking and adjusting the
3882 * acoustic limit in RPM for fan control.
3883 *
3884 * Reading back the file shows you the current setting and the permitted
3885 * ranges if changable.
3886 *
3887 * Writing an integer to the file, change the setting accordingly.
3888 *
3889 * When you have finished the editing, write "c" (commit) to the file to commit
3890 * your changes.
3891 *
3892 * If you want to reset to the default value, write "r" (reset) to the file to
3893 * reset them
3894 *
3895 * This setting works under auto fan control mode only. It adjusts the PMFW's
3896 * behavior about the maximum speed in RPM the fan can spin. Setting via this
3897 * interface will switch the fan control to auto mode implicitly.
3898 */
3899static ssize_t acoustic_limit_threshold_show(struct kobject *kobj,
3900					     struct kobj_attribute *attr,
3901					     char *buf)
3902{
3903	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3904	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3905
3906	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_ACOUSTIC_LIMIT, buf);
3907}
3908
3909static ssize_t acoustic_limit_threshold_store(struct kobject *kobj,
3910					      struct kobj_attribute *attr,
3911					      const char *buf,
3912					      size_t count)
3913{
3914	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3915	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3916
3917	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3918							     PP_OD_EDIT_ACOUSTIC_LIMIT,
3919							     buf,
3920							     count);
3921}
3922
3923static umode_t acoustic_limit_threshold_visible(struct amdgpu_device *adev)
3924{
3925	umode_t umode = 0000;
3926
3927	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_LIMIT_THRESHOLD_RETRIEVE)
3928		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3929
3930	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_LIMIT_THRESHOLD_SET)
3931		umode |= S_IWUSR;
3932
3933	return umode;
3934}
3935
3936/**
3937 * DOC: acoustic_target_rpm_threshold
3938 *
3939 * The amdgpu driver provides a sysfs API for checking and adjusting the
3940 * acoustic target in RPM for fan control.
3941 *
3942 * Reading back the file shows you the current setting and the permitted
3943 * ranges if changable.
3944 *
3945 * Writing an integer to the file, change the setting accordingly.
3946 *
3947 * When you have finished the editing, write "c" (commit) to the file to commit
3948 * your changes.
3949 *
3950 * If you want to reset to the default value, write "r" (reset) to the file to
3951 * reset them
3952 *
3953 * This setting works under auto fan control mode only. It can co-exist with
3954 * other settings which can work also under auto mode. It adjusts the PMFW's
3955 * behavior about the maximum speed in RPM the fan can spin when ASIC
3956 * temperature is not greater than target temperature. Setting via this
3957 * interface will switch the fan control to auto mode implicitly.
3958 */
3959static ssize_t acoustic_target_threshold_show(struct kobject *kobj,
3960					      struct kobj_attribute *attr,
3961					      char *buf)
3962{
3963	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3964	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3965
3966	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_ACOUSTIC_TARGET, buf);
3967}
3968
3969static ssize_t acoustic_target_threshold_store(struct kobject *kobj,
3970					       struct kobj_attribute *attr,
3971					       const char *buf,
3972					       size_t count)
3973{
3974	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
3975	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
3976
3977	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
3978							     PP_OD_EDIT_ACOUSTIC_TARGET,
3979							     buf,
3980							     count);
3981}
3982
3983static umode_t acoustic_target_threshold_visible(struct amdgpu_device *adev)
3984{
3985	umode_t umode = 0000;
3986
3987	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_TARGET_THRESHOLD_RETRIEVE)
3988		umode |= S_IRUSR | S_IRGRP | S_IROTH;
3989
3990	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_ACOUSTIC_TARGET_THRESHOLD_SET)
3991		umode |= S_IWUSR;
3992
3993	return umode;
3994}
3995
3996/**
3997 * DOC: fan_target_temperature
3998 *
3999 * The amdgpu driver provides a sysfs API for checking and adjusting the
4000 * target tempeature in Celsius degree for fan control.
4001 *
4002 * Reading back the file shows you the current setting and the permitted
4003 * ranges if changable.
4004 *
4005 * Writing an integer to the file, change the setting accordingly.
4006 *
4007 * When you have finished the editing, write "c" (commit) to the file to commit
4008 * your changes.
4009 *
4010 * If you want to reset to the default value, write "r" (reset) to the file to
4011 * reset them
4012 *
4013 * This setting works under auto fan control mode only. It can co-exist with
4014 * other settings which can work also under auto mode. Paring with the
4015 * acoustic_target_rpm_threshold setting, they define the maximum speed in
4016 * RPM the fan can spin when ASIC temperature is not greater than target
4017 * temperature. Setting via this interface will switch the fan control to
4018 * auto mode implicitly.
4019 */
4020static ssize_t fan_target_temperature_show(struct kobject *kobj,
4021					   struct kobj_attribute *attr,
4022					   char *buf)
4023{
4024	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4025	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4026
4027	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_TARGET_TEMPERATURE, buf);
4028}
4029
4030static ssize_t fan_target_temperature_store(struct kobject *kobj,
4031					    struct kobj_attribute *attr,
4032					    const char *buf,
4033					    size_t count)
4034{
4035	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4036	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4037
4038	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
4039							     PP_OD_EDIT_FAN_TARGET_TEMPERATURE,
4040							     buf,
4041							     count);
4042}
4043
4044static umode_t fan_target_temperature_visible(struct amdgpu_device *adev)
4045{
4046	umode_t umode = 0000;
4047
4048	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_TARGET_TEMPERATURE_RETRIEVE)
4049		umode |= S_IRUSR | S_IRGRP | S_IROTH;
4050
4051	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_TARGET_TEMPERATURE_SET)
4052		umode |= S_IWUSR;
4053
4054	return umode;
4055}
4056
4057/**
4058 * DOC: fan_minimum_pwm
4059 *
4060 * The amdgpu driver provides a sysfs API for checking and adjusting the
4061 * minimum fan speed in PWM.
4062 *
4063 * Reading back the file shows you the current setting and the permitted
4064 * ranges if changable.
4065 *
4066 * Writing an integer to the file, change the setting accordingly.
4067 *
4068 * When you have finished the editing, write "c" (commit) to the file to commit
4069 * your changes.
4070 *
4071 * If you want to reset to the default value, write "r" (reset) to the file to
4072 * reset them
4073 *
4074 * This setting works under auto fan control mode only. It can co-exist with
4075 * other settings which can work also under auto mode. It adjusts the PMFW's
4076 * behavior about the minimum fan speed in PWM the fan should spin. Setting
4077 * via this interface will switch the fan control to auto mode implicitly.
4078 */
4079static ssize_t fan_minimum_pwm_show(struct kobject *kobj,
4080				    struct kobj_attribute *attr,
4081				    char *buf)
4082{
4083	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4084	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4085
4086	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_MINIMUM_PWM, buf);
4087}
4088
4089static ssize_t fan_minimum_pwm_store(struct kobject *kobj,
4090				     struct kobj_attribute *attr,
4091				     const char *buf,
4092				     size_t count)
4093{
4094	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4095	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4096
4097	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
4098							     PP_OD_EDIT_FAN_MINIMUM_PWM,
4099							     buf,
4100							     count);
4101}
4102
4103static umode_t fan_minimum_pwm_visible(struct amdgpu_device *adev)
4104{
4105	umode_t umode = 0000;
4106
4107	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_MINIMUM_PWM_RETRIEVE)
4108		umode |= S_IRUSR | S_IRGRP | S_IROTH;
4109
4110	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_MINIMUM_PWM_SET)
4111		umode |= S_IWUSR;
4112
4113	return umode;
4114}
4115
4116/**
4117 * DOC: fan_zero_rpm_enable
4118 *
4119 * The amdgpu driver provides a sysfs API for checking and adjusting the
4120 * zero RPM feature.
4121 *
4122 * Reading back the file shows you the current setting and the permitted
4123 * ranges if changable.
4124 *
4125 * Writing an integer to the file, change the setting accordingly.
4126 *
4127 * When you have finished the editing, write "c" (commit) to the file to commit
4128 * your changes.
4129 *
4130 * If you want to reset to the default value, write "r" (reset) to the file to
4131 * reset them.
4132 */
4133static ssize_t fan_zero_rpm_enable_show(struct kobject *kobj,
4134					   struct kobj_attribute *attr,
4135					   char *buf)
4136{
4137	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4138	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4139
4140	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_ZERO_RPM_ENABLE, buf);
4141}
4142
4143static ssize_t fan_zero_rpm_enable_store(struct kobject *kobj,
4144					    struct kobj_attribute *attr,
4145					    const char *buf,
4146					    size_t count)
4147{
4148	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4149	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4150
4151	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
4152							     PP_OD_EDIT_FAN_ZERO_RPM_ENABLE,
4153							     buf,
4154							     count);
4155}
4156
4157static umode_t fan_zero_rpm_enable_visible(struct amdgpu_device *adev)
4158{
4159	umode_t umode = 0000;
4160
4161	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_ZERO_RPM_ENABLE_RETRIEVE)
4162		umode |= S_IRUSR | S_IRGRP | S_IROTH;
4163
4164	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_ZERO_RPM_ENABLE_SET)
4165		umode |= S_IWUSR;
4166
4167	return umode;
4168}
4169
4170/**
4171 * DOC: fan_zero_rpm_stop_temperature
4172 *
4173 * The amdgpu driver provides a sysfs API for checking and adjusting the
4174 * zero RPM stop temperature feature.
4175 *
4176 * Reading back the file shows you the current setting and the permitted
4177 * ranges if changable.
4178 *
4179 * Writing an integer to the file, change the setting accordingly.
4180 *
4181 * When you have finished the editing, write "c" (commit) to the file to commit
4182 * your changes.
4183 *
4184 * If you want to reset to the default value, write "r" (reset) to the file to
4185 * reset them.
4186 *
4187 * This setting works only if the Zero RPM setting is enabled. It adjusts the
4188 * temperature below which the fan can stop.
4189 */
4190static ssize_t fan_zero_rpm_stop_temp_show(struct kobject *kobj,
4191					   struct kobj_attribute *attr,
4192					   char *buf)
4193{
4194	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4195	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4196
4197	return (ssize_t)amdgpu_retrieve_od_settings(adev, OD_FAN_ZERO_RPM_STOP_TEMP, buf);
4198}
4199
4200static ssize_t fan_zero_rpm_stop_temp_store(struct kobject *kobj,
4201					    struct kobj_attribute *attr,
4202					    const char *buf,
4203					    size_t count)
4204{
4205	struct od_kobj *container = container_of(kobj, struct od_kobj, kobj);
4206	struct amdgpu_device *adev = (struct amdgpu_device *)container->priv;
4207
4208	return (ssize_t)amdgpu_distribute_custom_od_settings(adev,
4209							     PP_OD_EDIT_FAN_ZERO_RPM_STOP_TEMP,
4210							     buf,
4211							     count);
4212}
4213
4214static umode_t fan_zero_rpm_stop_temp_visible(struct amdgpu_device *adev)
4215{
4216	umode_t umode = 0000;
4217
4218	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_ZERO_RPM_STOP_TEMP_RETRIEVE)
4219		umode |= S_IRUSR | S_IRGRP | S_IROTH;
4220
4221	if (adev->pm.od_feature_mask & OD_OPS_SUPPORT_FAN_ZERO_RPM_STOP_TEMP_SET)
4222		umode |= S_IWUSR;
4223
4224	return umode;
4225}
4226
4227static struct od_feature_set amdgpu_od_set = {
4228	.containers = {
4229		[0] = {
4230			.name = "fan_ctrl",
4231			.sub_feature = {
4232				[0] = {
4233					.name = "fan_curve",
4234					.ops = {
4235						.is_visible = fan_curve_visible,
4236						.show = fan_curve_show,
4237						.store = fan_curve_store,
4238					},
4239				},
4240				[1] = {
4241					.name = "acoustic_limit_rpm_threshold",
4242					.ops = {
4243						.is_visible = acoustic_limit_threshold_visible,
4244						.show = acoustic_limit_threshold_show,
4245						.store = acoustic_limit_threshold_store,
4246					},
4247				},
4248				[2] = {
4249					.name = "acoustic_target_rpm_threshold",
4250					.ops = {
4251						.is_visible = acoustic_target_threshold_visible,
4252						.show = acoustic_target_threshold_show,
4253						.store = acoustic_target_threshold_store,
4254					},
4255				},
4256				[3] = {
4257					.name = "fan_target_temperature",
4258					.ops = {
4259						.is_visible = fan_target_temperature_visible,
4260						.show = fan_target_temperature_show,
4261						.store = fan_target_temperature_store,
4262					},
4263				},
4264				[4] = {
4265					.name = "fan_minimum_pwm",
4266					.ops = {
4267						.is_visible = fan_minimum_pwm_visible,
4268						.show = fan_minimum_pwm_show,
4269						.store = fan_minimum_pwm_store,
4270					},
4271				},
4272				[5] = {
4273					.name = "fan_zero_rpm_enable",
4274					.ops = {
4275						.is_visible = fan_zero_rpm_enable_visible,
4276						.show = fan_zero_rpm_enable_show,
4277						.store = fan_zero_rpm_enable_store,
4278					},
4279				},
4280				[6] = {
4281					.name = "fan_zero_rpm_stop_temperature",
4282					.ops = {
4283						.is_visible = fan_zero_rpm_stop_temp_visible,
4284						.show = fan_zero_rpm_stop_temp_show,
4285						.store = fan_zero_rpm_stop_temp_store,
4286					},
4287				},
4288			},
4289		},
4290	},
4291};
4292
4293static void od_kobj_release(struct kobject *kobj)
4294{
4295	struct od_kobj *od_kobj = container_of(kobj, struct od_kobj, kobj);
4296
4297	kfree(od_kobj);
4298}
4299
4300static const struct kobj_type od_ktype = {
4301	.release	= od_kobj_release,
4302	.sysfs_ops	= &kobj_sysfs_ops,
4303};
4304
4305static void amdgpu_od_set_fini(struct amdgpu_device *adev)
4306{
4307	struct od_kobj *container, *container_next;
4308	struct od_attribute *attribute, *attribute_next;
4309
4310	if (list_empty(&adev->pm.od_kobj_list))
4311		return;
4312
4313	list_for_each_entry_safe(container, container_next,
4314				 &adev->pm.od_kobj_list, entry) {
4315		list_del(&container->entry);
4316
4317		list_for_each_entry_safe(attribute, attribute_next,
4318					 &container->attribute, entry) {
4319			list_del(&attribute->entry);
4320			sysfs_remove_file(&container->kobj,
4321					  &attribute->attribute.attr);
4322			kfree(attribute);
4323		}
4324
4325		kobject_put(&container->kobj);
4326	}
4327}
4328
4329static bool amdgpu_is_od_feature_supported(struct amdgpu_device *adev,
4330					   struct od_feature_ops *feature_ops)
4331{
4332	umode_t mode;
4333
4334	if (!feature_ops->is_visible)
4335		return false;
4336
4337	/*
4338	 * If the feature has no user read and write mode set,
4339	 * we can assume the feature is actually not supported.(?)
4340	 * And the revelant sysfs interface should not be exposed.
4341	 */
4342	mode = feature_ops->is_visible(adev);
4343	if (mode & (S_IRUSR | S_IWUSR))
4344		return true;
4345
4346	return false;
4347}
4348
4349static bool amdgpu_od_is_self_contained(struct amdgpu_device *adev,
4350					struct od_feature_container *container)
4351{
4352	int i;
4353
4354	/*
4355	 * If there is no valid entry within the container, the container
4356	 * is recognized as a self contained container. And the valid entry
4357	 * here means it has a valid naming and it is visible/supported by
4358	 * the ASIC.
4359	 */
4360	for (i = 0; i < ARRAY_SIZE(container->sub_feature); i++) {
4361		if (container->sub_feature[i].name &&
4362		    amdgpu_is_od_feature_supported(adev,
4363			&container->sub_feature[i].ops))
4364			return false;
4365	}
4366
4367	return true;
4368}
4369
4370static int amdgpu_od_set_init(struct amdgpu_device *adev)
4371{
4372	struct od_kobj *top_set, *sub_set;
4373	struct od_attribute *attribute;
4374	struct od_feature_container *container;
4375	struct od_feature_item *feature;
4376	int i, j;
4377	int ret;
4378
4379	/* Setup the top `gpu_od` directory which holds all other OD interfaces */
4380	top_set = kzalloc(sizeof(*top_set), GFP_KERNEL);
4381	if (!top_set)
4382		return -ENOMEM;
4383	list_add(&top_set->entry, &adev->pm.od_kobj_list);
4384
4385	ret = kobject_init_and_add(&top_set->kobj,
4386				   &od_ktype,
4387				   &adev->dev->kobj,
4388				   "%s",
4389				   "gpu_od");
4390	if (ret)
4391		goto err_out;
4392	INIT_LIST_HEAD(&top_set->attribute);
4393	top_set->priv = adev;
4394
4395	for (i = 0; i < ARRAY_SIZE(amdgpu_od_set.containers); i++) {
4396		container = &amdgpu_od_set.containers[i];
4397
4398		if (!container->name)
4399			continue;
4400
4401		/*
4402		 * If there is valid entries within the container, the container
4403		 * will be presented as a sub directory and all its holding entries
4404		 * will be presented as plain files under it.
4405		 * While if there is no valid entry within the container, the container
4406		 * itself will be presented as a plain file under top `gpu_od` directory.
4407		 */
4408		if (amdgpu_od_is_self_contained(adev, container)) {
4409			if (!amdgpu_is_od_feature_supported(adev,
4410			     &container->ops))
4411				continue;
4412
4413			/*
4414			 * The container is presented as a plain file under top `gpu_od`
4415			 * directory.
4416			 */
4417			attribute = kzalloc(sizeof(*attribute), GFP_KERNEL);
4418			if (!attribute) {
4419				ret = -ENOMEM;
4420				goto err_out;
4421			}
4422			list_add(&attribute->entry, &top_set->attribute);
4423
4424			attribute->attribute.attr.mode =
4425					container->ops.is_visible(adev);
4426			attribute->attribute.attr.name = container->name;
4427			attribute->attribute.show =
4428					container->ops.show;
4429			attribute->attribute.store =
4430					container->ops.store;
4431			ret = sysfs_create_file(&top_set->kobj,
4432						&attribute->attribute.attr);
4433			if (ret)
4434				goto err_out;
4435		} else {
4436			/* The container is presented as a sub directory. */
4437			sub_set = kzalloc(sizeof(*sub_set), GFP_KERNEL);
4438			if (!sub_set) {
4439				ret = -ENOMEM;
4440				goto err_out;
4441			}
4442			list_add(&sub_set->entry, &adev->pm.od_kobj_list);
4443
4444			ret = kobject_init_and_add(&sub_set->kobj,
4445						   &od_ktype,
4446						   &top_set->kobj,
4447						   "%s",
4448						   container->name);
4449			if (ret)
4450				goto err_out;
4451			INIT_LIST_HEAD(&sub_set->attribute);
4452			sub_set->priv = adev;
4453
4454			for (j = 0; j < ARRAY_SIZE(container->sub_feature); j++) {
4455				feature = &container->sub_feature[j];
4456				if (!feature->name)
4457					continue;
4458
4459				if (!amdgpu_is_od_feature_supported(adev,
4460				     &feature->ops))
4461					continue;
4462
4463				/*
4464				 * With the container presented as a sub directory, the entry within
4465				 * it is presented as a plain file under the sub directory.
4466				 */
4467				attribute = kzalloc(sizeof(*attribute), GFP_KERNEL);
4468				if (!attribute) {
4469					ret = -ENOMEM;
4470					goto err_out;
4471				}
4472				list_add(&attribute->entry, &sub_set->attribute);
4473
4474				attribute->attribute.attr.mode =
4475						feature->ops.is_visible(adev);
4476				attribute->attribute.attr.name = feature->name;
4477				attribute->attribute.show =
4478						feature->ops.show;
4479				attribute->attribute.store =
4480						feature->ops.store;
4481				ret = sysfs_create_file(&sub_set->kobj,
4482							&attribute->attribute.attr);
4483				if (ret)
4484					goto err_out;
4485			}
4486		}
4487	}
4488
4489	/*
4490	 * If gpu_od is the only member in the list, that means gpu_od is an
4491	 * empty directory, so remove it.
4492	 */
4493	if (list_is_singular(&adev->pm.od_kobj_list))
4494		goto err_out;
4495
4496	return 0;
4497
4498err_out:
4499	amdgpu_od_set_fini(adev);
4500
4501	return ret;
4502}
4503
4504int amdgpu_pm_sysfs_init(struct amdgpu_device *adev)
4505{
4506	enum amdgpu_sriov_vf_mode mode;
4507	uint32_t mask = 0;
4508	int ret;
4509
4510	if (adev->pm.sysfs_initialized)
4511		return 0;
4512
4513	INIT_LIST_HEAD(&adev->pm.pm_attr_list);
4514
4515	if (adev->pm.dpm_enabled == 0)
4516		return 0;
4517
4518	mode = amdgpu_virt_get_sriov_vf_mode(adev);
4519
4520	/* under multi-vf mode, the hwmon attributes are all not supported */
4521	if (mode != SRIOV_VF_MODE_MULTI_VF) {
4522		adev->pm.int_hwmon_dev = hwmon_device_register_with_groups(adev->dev,
4523									DRIVER_NAME, adev,
4524									hwmon_groups);
4525		if (IS_ERR(adev->pm.int_hwmon_dev)) {
4526			ret = PTR_ERR(adev->pm.int_hwmon_dev);
4527			dev_err(adev->dev, "Unable to register hwmon device: %d\n", ret);
4528			return ret;
4529		}
4530	}
4531
4532	switch (mode) {
4533	case SRIOV_VF_MODE_ONE_VF:
4534		mask = ATTR_FLAG_ONEVF;
4535		break;
4536	case SRIOV_VF_MODE_MULTI_VF:
4537		mask = 0;
4538		break;
4539	case SRIOV_VF_MODE_BARE_METAL:
4540	default:
4541		mask = ATTR_FLAG_MASK_ALL;
4542		break;
4543	}
4544
4545	ret = amdgpu_device_attr_create_groups(adev,
4546					       amdgpu_device_attrs,
4547					       ARRAY_SIZE(amdgpu_device_attrs),
4548					       mask,
4549					       &adev->pm.pm_attr_list);
4550	if (ret)
4551		goto err_out0;
4552
4553	if (amdgpu_dpm_is_overdrive_supported(adev)) {
4554		ret = amdgpu_od_set_init(adev);
4555		if (ret)
4556			goto err_out1;
4557	} else if (adev->pm.pp_feature & PP_OVERDRIVE_MASK) {
4558		dev_info(adev->dev, "overdrive feature is not supported\n");
4559	}
4560
4561	if (amdgpu_dpm_get_pm_policy_info(adev, PP_PM_POLICY_NONE, NULL) !=
4562	    -EOPNOTSUPP) {
4563		ret = devm_device_add_group(adev->dev,
4564					    &amdgpu_pm_policy_attr_group);
4565		if (ret)
4566			goto err_out0;
4567	}
4568
4569	adev->pm.sysfs_initialized = true;
4570
4571	return 0;
4572
4573err_out1:
4574	amdgpu_device_attr_remove_groups(adev, &adev->pm.pm_attr_list);
4575err_out0:
4576	if (adev->pm.int_hwmon_dev)
4577		hwmon_device_unregister(adev->pm.int_hwmon_dev);
4578
4579	return ret;
4580}
4581
4582void amdgpu_pm_sysfs_fini(struct amdgpu_device *adev)
4583{
4584	amdgpu_od_set_fini(adev);
4585
4586	if (adev->pm.int_hwmon_dev)
4587		hwmon_device_unregister(adev->pm.int_hwmon_dev);
4588
4589	amdgpu_device_attr_remove_groups(adev, &adev->pm.pm_attr_list);
4590}
4591
4592/*
4593 * Debugfs info
4594 */
4595#if defined(CONFIG_DEBUG_FS)
4596
4597static void amdgpu_debugfs_prints_cpu_info(struct seq_file *m,
4598					   struct amdgpu_device *adev)
4599{
4600	uint16_t *p_val;
4601	uint32_t size;
4602	int i;
4603	uint32_t num_cpu_cores = amdgpu_dpm_get_num_cpu_cores(adev);
4604
4605	if (amdgpu_dpm_is_cclk_dpm_supported(adev)) {
4606		p_val = kcalloc(num_cpu_cores, sizeof(uint16_t),
4607				GFP_KERNEL);
4608
4609		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_CPU_CLK,
4610					    (void *)p_val, &size)) {
4611			for (i = 0; i < num_cpu_cores; i++)
4612				seq_printf(m, "\t%u MHz (CPU%d)\n",
4613					   *(p_val + i), i);
4614		}
4615
4616		kfree(p_val);
4617	}
4618}
4619
4620static int amdgpu_debugfs_pm_info_pp(struct seq_file *m, struct amdgpu_device *adev)
4621{
4622	uint32_t mp1_ver = amdgpu_ip_version(adev, MP1_HWIP, 0);
4623	uint32_t gc_ver = amdgpu_ip_version(adev, GC_HWIP, 0);
4624	uint32_t value;
4625	uint64_t value64 = 0;
4626	uint32_t query = 0;
4627	int size;
4628
4629	/* GPU Clocks */
4630	size = sizeof(value);
4631	seq_printf(m, "GFX Clocks and Power:\n");
4632
4633	amdgpu_debugfs_prints_cpu_info(m, adev);
4634
4635	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_MCLK, (void *)&value, &size))
4636		seq_printf(m, "\t%u MHz (MCLK)\n", value/100);
4637	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GFX_SCLK, (void *)&value, &size))
4638		seq_printf(m, "\t%u MHz (SCLK)\n", value/100);
4639	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK, (void *)&value, &size))
4640		seq_printf(m, "\t%u MHz (PSTATE_SCLK)\n", value/100);
4641	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK, (void *)&value, &size))
4642		seq_printf(m, "\t%u MHz (PSTATE_MCLK)\n", value/100);
4643	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDGFX, (void *)&value, &size))
4644		seq_printf(m, "\t%u mV (VDDGFX)\n", value);
4645	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VDDNB, (void *)&value, &size))
4646		seq_printf(m, "\t%u mV (VDDNB)\n", value);
4647	size = sizeof(uint32_t);
4648	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_AVG_POWER, (void *)&query, &size)) {
4649		if (adev->flags & AMD_IS_APU)
4650			seq_printf(m, "\t%u.%02u W (average SoC including CPU)\n", query >> 8, query & 0xff);
4651		else
4652			seq_printf(m, "\t%u.%02u W (average SoC)\n", query >> 8, query & 0xff);
4653	}
4654	size = sizeof(uint32_t);
4655	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_INPUT_POWER, (void *)&query, &size)) {
4656		if (adev->flags & AMD_IS_APU)
4657			seq_printf(m, "\t%u.%02u W (current SoC including CPU)\n", query >> 8, query & 0xff);
4658		else
4659			seq_printf(m, "\t%u.%02u W (current SoC)\n", query >> 8, query & 0xff);
4660	}
4661	size = sizeof(value);
4662	seq_printf(m, "\n");
4663
4664	/* GPU Temp */
4665	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_TEMP, (void *)&value, &size))
4666		seq_printf(m, "GPU Temperature: %u C\n", value/1000);
4667
4668	/* GPU Load */
4669	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_GPU_LOAD, (void *)&value, &size))
4670		seq_printf(m, "GPU Load: %u %%\n", value);
4671	/* MEM Load */
4672	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_MEM_LOAD, (void *)&value, &size))
4673		seq_printf(m, "MEM Load: %u %%\n", value);
4674	/* VCN Load */
4675	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCN_LOAD, (void *)&value, &size))
4676		seq_printf(m, "VCN Load: %u %%\n", value);
4677
4678	seq_printf(m, "\n");
4679
4680	/* SMC feature mask */
4681	if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK, (void *)&value64, &size))
4682		seq_printf(m, "SMC Feature Mask: 0x%016llx\n", value64);
4683
4684	/* ASICs greater than CHIP_VEGA20 supports these sensors */
4685	if (gc_ver != IP_VERSION(9, 4, 0) && mp1_ver > IP_VERSION(9, 0, 0)) {
4686		/* VCN clocks */
4687		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCN_POWER_STATE, (void *)&value, &size)) {
4688			if (!value) {
4689				seq_printf(m, "VCN: Powered down\n");
4690			} else {
4691				seq_printf(m, "VCN: Powered up\n");
4692				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
4693					seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
4694				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
4695					seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
4696			}
4697		}
4698		seq_printf(m, "\n");
4699	} else {
4700		/* UVD clocks */
4701		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_POWER, (void *)&value, &size)) {
4702			if (!value) {
4703				seq_printf(m, "UVD: Powered down\n");
4704			} else {
4705				seq_printf(m, "UVD: Powered up\n");
4706				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_DCLK, (void *)&value, &size))
4707					seq_printf(m, "\t%u MHz (DCLK)\n", value/100);
4708				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_UVD_VCLK, (void *)&value, &size))
4709					seq_printf(m, "\t%u MHz (VCLK)\n", value/100);
4710			}
4711		}
4712		seq_printf(m, "\n");
4713
4714		/* VCE clocks */
4715		if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_POWER, (void *)&value, &size)) {
4716			if (!value) {
4717				seq_printf(m, "VCE: Powered down\n");
4718			} else {
4719				seq_printf(m, "VCE: Powered up\n");
4720				if (!amdgpu_dpm_read_sensor(adev, AMDGPU_PP_SENSOR_VCE_ECCLK, (void *)&value, &size))
4721					seq_printf(m, "\t%u MHz (ECCLK)\n", value/100);
4722			}
4723		}
4724	}
4725
4726	return 0;
4727}
4728
4729static const struct cg_flag_name clocks[] = {
4730	{AMD_CG_SUPPORT_GFX_FGCG, "Graphics Fine Grain Clock Gating"},
4731	{AMD_CG_SUPPORT_GFX_MGCG, "Graphics Medium Grain Clock Gating"},
4732	{AMD_CG_SUPPORT_GFX_MGLS, "Graphics Medium Grain memory Light Sleep"},
4733	{AMD_CG_SUPPORT_GFX_CGCG, "Graphics Coarse Grain Clock Gating"},
4734	{AMD_CG_SUPPORT_GFX_CGLS, "Graphics Coarse Grain memory Light Sleep"},
4735	{AMD_CG_SUPPORT_GFX_CGTS, "Graphics Coarse Grain Tree Shader Clock Gating"},
4736	{AMD_CG_SUPPORT_GFX_CGTS_LS, "Graphics Coarse Grain Tree Shader Light Sleep"},
4737	{AMD_CG_SUPPORT_GFX_CP_LS, "Graphics Command Processor Light Sleep"},
4738	{AMD_CG_SUPPORT_GFX_RLC_LS, "Graphics Run List Controller Light Sleep"},
4739	{AMD_CG_SUPPORT_GFX_3D_CGCG, "Graphics 3D Coarse Grain Clock Gating"},
4740	{AMD_CG_SUPPORT_GFX_3D_CGLS, "Graphics 3D Coarse Grain memory Light Sleep"},
4741	{AMD_CG_SUPPORT_MC_LS, "Memory Controller Light Sleep"},
4742	{AMD_CG_SUPPORT_MC_MGCG, "Memory Controller Medium Grain Clock Gating"},
4743	{AMD_CG_SUPPORT_SDMA_LS, "System Direct Memory Access Light Sleep"},
4744	{AMD_CG_SUPPORT_SDMA_MGCG, "System Direct Memory Access Medium Grain Clock Gating"},
4745	{AMD_CG_SUPPORT_BIF_MGCG, "Bus Interface Medium Grain Clock Gating"},
4746	{AMD_CG_SUPPORT_BIF_LS, "Bus Interface Light Sleep"},
4747	{AMD_CG_SUPPORT_UVD_MGCG, "Unified Video Decoder Medium Grain Clock Gating"},
4748	{AMD_CG_SUPPORT_VCE_MGCG, "Video Compression Engine Medium Grain Clock Gating"},
4749	{AMD_CG_SUPPORT_HDP_LS, "Host Data Path Light Sleep"},
4750	{AMD_CG_SUPPORT_HDP_MGCG, "Host Data Path Medium Grain Clock Gating"},
4751	{AMD_CG_SUPPORT_DRM_MGCG, "Digital Right Management Medium Grain Clock Gating"},
4752	{AMD_CG_SUPPORT_DRM_LS, "Digital Right Management Light Sleep"},
4753	{AMD_CG_SUPPORT_ROM_MGCG, "Rom Medium Grain Clock Gating"},
4754	{AMD_CG_SUPPORT_DF_MGCG, "Data Fabric Medium Grain Clock Gating"},
4755	{AMD_CG_SUPPORT_VCN_MGCG, "VCN Medium Grain Clock Gating"},
4756	{AMD_CG_SUPPORT_HDP_DS, "Host Data Path Deep Sleep"},
4757	{AMD_CG_SUPPORT_HDP_SD, "Host Data Path Shutdown"},
4758	{AMD_CG_SUPPORT_IH_CG, "Interrupt Handler Clock Gating"},
4759	{AMD_CG_SUPPORT_JPEG_MGCG, "JPEG Medium Grain Clock Gating"},
4760	{AMD_CG_SUPPORT_REPEATER_FGCG, "Repeater Fine Grain Clock Gating"},
4761	{AMD_CG_SUPPORT_GFX_PERF_CLK, "Perfmon Clock Gating"},
4762	{AMD_CG_SUPPORT_ATHUB_MGCG, "Address Translation Hub Medium Grain Clock Gating"},
4763	{AMD_CG_SUPPORT_ATHUB_LS, "Address Translation Hub Light Sleep"},
4764	{0, NULL},
4765};
4766
4767static void amdgpu_parse_cg_state(struct seq_file *m, u64 flags)
4768{
4769	int i;
4770
4771	for (i = 0; clocks[i].flag; i++)
4772		seq_printf(m, "\t%s: %s\n", clocks[i].name,
4773			   (flags & clocks[i].flag) ? "On" : "Off");
4774}
4775
4776static int amdgpu_debugfs_pm_info_show(struct seq_file *m, void *unused)
4777{
4778	struct amdgpu_device *adev = (struct amdgpu_device *)m->private;
4779	struct drm_device *dev = adev_to_drm(adev);
4780	u64 flags = 0;
4781	int r;
4782
4783	if (amdgpu_in_reset(adev))
4784		return -EPERM;
4785	if (adev->in_suspend && !adev->in_runpm)
4786		return -EPERM;
4787
4788	r = pm_runtime_resume_and_get(dev->dev);
4789	if (r < 0)
 
4790		return r;
 
4791
4792	if (amdgpu_dpm_debugfs_print_current_performance_level(adev, m)) {
4793		r = amdgpu_debugfs_pm_info_pp(m, adev);
4794		if (r)
4795			goto out;
4796	}
4797
4798	amdgpu_device_ip_get_clockgating_state(adev, &flags);
4799
4800	seq_printf(m, "Clock Gating Flags Mask: 0x%llx\n", flags);
4801	amdgpu_parse_cg_state(m, flags);
4802	seq_printf(m, "\n");
4803
4804out:
 
4805	pm_runtime_put_autosuspend(dev->dev);
4806
4807	return r;
4808}
4809
4810DEFINE_SHOW_ATTRIBUTE(amdgpu_debugfs_pm_info);
4811
4812/*
4813 * amdgpu_pm_priv_buffer_read - Read memory region allocated to FW
4814 *
4815 * Reads debug memory region allocated to PMFW
4816 */
4817static ssize_t amdgpu_pm_prv_buffer_read(struct file *f, char __user *buf,
4818					 size_t size, loff_t *pos)
4819{
4820	struct amdgpu_device *adev = file_inode(f)->i_private;
4821	size_t smu_prv_buf_size;
4822	void *smu_prv_buf;
4823	int ret = 0;
4824
4825	if (amdgpu_in_reset(adev))
4826		return -EPERM;
4827	if (adev->in_suspend && !adev->in_runpm)
4828		return -EPERM;
4829
4830	ret = amdgpu_dpm_get_smu_prv_buf_details(adev, &smu_prv_buf, &smu_prv_buf_size);
4831	if (ret)
4832		return ret;
4833
4834	if (!smu_prv_buf || !smu_prv_buf_size)
4835		return -EINVAL;
4836
4837	return simple_read_from_buffer(buf, size, pos, smu_prv_buf,
4838				       smu_prv_buf_size);
4839}
4840
4841static const struct file_operations amdgpu_debugfs_pm_prv_buffer_fops = {
4842	.owner = THIS_MODULE,
4843	.open = simple_open,
4844	.read = amdgpu_pm_prv_buffer_read,
4845	.llseek = default_llseek,
4846};
4847
4848#endif
4849
4850void amdgpu_debugfs_pm_init(struct amdgpu_device *adev)
4851{
4852#if defined(CONFIG_DEBUG_FS)
4853	struct drm_minor *minor = adev_to_drm(adev)->primary;
4854	struct dentry *root = minor->debugfs_root;
4855
4856	if (!adev->pm.dpm_enabled)
4857		return;
4858
4859	debugfs_create_file("amdgpu_pm_info", 0444, root, adev,
4860			    &amdgpu_debugfs_pm_info_fops);
4861
4862	if (adev->pm.smu_prv_buffer_size > 0)
4863		debugfs_create_file_size("amdgpu_pm_prv_buffer", 0444, root,
4864					 adev,
4865					 &amdgpu_debugfs_pm_prv_buffer_fops,
4866					 adev->pm.smu_prv_buffer_size);
4867
4868	amdgpu_dpm_stb_debug_fs_init(adev);
4869#endif
4870}