2 * Copyright 2020 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
23 #define SWSMU_CODE_LAYER_L4
26 #include "amdgpu_smu.h"
28 #include "soc15_common.h"
31 * DO NOT use these for err/warn/info/debug messages.
32 * Use dev_err, dev_warn, dev_info and dev_dbg instead.
33 * They are more MGPU friendly.
40 #define MP1_C2PMSG_90__CONTENT_MASK 0xFFFFFFFFL
42 #undef __SMU_DUMMY_MAP
43 #define __SMU_DUMMY_MAP(type) #type
44 static const char * const __smu_message_names[] = {
48 #define smu_cmn_call_asic_func(intf, smu, args...) \
49 ((smu)->ppt_funcs ? ((smu)->ppt_funcs->intf ? \
50 (smu)->ppt_funcs->intf(smu, ##args) : \
54 static const char *smu_get_message_name(struct smu_context *smu,
55 enum smu_message_type type)
57 if (type < 0 || type >= SMU_MSG_MAX_COUNT)
58 return "unknown smu message";
60 return __smu_message_names[type];
63 static void smu_cmn_read_arg(struct smu_context *smu,
66 struct amdgpu_device *adev = smu->adev;
68 *arg = RREG32(smu->param_reg);
71 /* Redefine the SMU error codes here.
73 * Note that these definitions are redundant and should be removed
74 * when the SMU has exported a unified header file containing these
75 * macros, which header file we can just include and use the SMU's
76 * macros. At the moment, these error codes are defined by the SMU
77 * per-ASIC unfortunately, yet we're a one driver for all ASICs.
79 #define SMU_RESP_NONE 0
81 #define SMU_RESP_CMD_FAIL 0xFF
82 #define SMU_RESP_CMD_UNKNOWN 0xFE
83 #define SMU_RESP_CMD_BAD_PREREQ 0xFD
84 #define SMU_RESP_BUSY_OTHER 0xFC
85 #define SMU_RESP_DEBUG_END 0xFB
88 * __smu_cmn_poll_stat -- poll for a status from the SMU
89 * @smu: a pointer to SMU context
91 * Returns the status of the SMU, which could be,
92 * 0, the SMU is busy with your command;
93 * 1, execution status: success, execution result: success;
94 * 0xFF, execution status: success, execution result: failure;
95 * 0xFE, unknown command;
96 * 0xFD, valid command, but bad (command) prerequisites;
97 * 0xFC, the command was rejected as the SMU is busy;
98 * 0xFB, "SMC_Result_DebugDataDumpEnd".
100 * The values here are not defined by macros, because I'd rather we
101 * include a single header file which defines them, which is
102 * maintained by the SMU FW team, so that we're impervious to firmware
103 * changes. At the moment those values are defined in various header
104 * files, one for each ASIC, yet here we're a single ASIC-agnostic
105 * interface. Such a change can be followed-up by a subsequent patch.
107 static u32 __smu_cmn_poll_stat(struct smu_context *smu)
109 struct amdgpu_device *adev = smu->adev;
110 int timeout = adev->usec_timeout * 20;
113 for ( ; timeout > 0; timeout--) {
114 reg = RREG32(smu->resp_reg);
115 if ((reg & MP1_C2PMSG_90__CONTENT_MASK) != 0)
124 static void __smu_cmn_reg_print_error(struct smu_context *smu,
128 enum smu_message_type msg)
130 struct amdgpu_device *adev = smu->adev;
131 const char *message = smu_get_message_name(smu, msg);
134 switch (reg_c2pmsg_90) {
135 case SMU_RESP_NONE: {
136 msg_idx = RREG32(smu->msg_reg);
137 prm = RREG32(smu->param_reg);
138 dev_err_ratelimited(adev->dev,
139 "SMU: I'm not done with your previous command: SMN_C2PMSG_66:0x%08X SMN_C2PMSG_82:0x%08X",
144 /* The SMU executed the command. It completed with a
148 case SMU_RESP_CMD_FAIL:
149 /* The SMU executed the command. It completed with an
150 * unsuccessful result.
153 case SMU_RESP_CMD_UNKNOWN:
154 dev_err_ratelimited(adev->dev,
155 "SMU: unknown command: index:%d param:0x%08X message:%s",
156 msg_index, param, message);
158 case SMU_RESP_CMD_BAD_PREREQ:
159 dev_err_ratelimited(adev->dev,
160 "SMU: valid command, bad prerequisites: index:%d param:0x%08X message:%s",
161 msg_index, param, message);
163 case SMU_RESP_BUSY_OTHER:
164 dev_err_ratelimited(adev->dev,
165 "SMU: I'm very busy for your command: index:%d param:0x%08X message:%s",
166 msg_index, param, message);
168 case SMU_RESP_DEBUG_END:
169 dev_err_ratelimited(adev->dev,
170 "SMU: I'm debugging!");
173 dev_err_ratelimited(adev->dev,
174 "SMU: response:0x%08X for index:%d param:0x%08X message:%s?",
175 reg_c2pmsg_90, msg_index, param, message);
180 static int __smu_cmn_reg2errno(struct smu_context *smu, u32 reg_c2pmsg_90)
184 switch (reg_c2pmsg_90) {
186 /* The SMU is busy--still executing your command.
193 case SMU_RESP_CMD_FAIL:
194 /* Command completed successfully, but the command
195 * status was failure.
199 case SMU_RESP_CMD_UNKNOWN:
200 /* Unknown command--ignored by the SMU.
204 case SMU_RESP_CMD_BAD_PREREQ:
205 /* Valid command--bad prerequisites.
209 case SMU_RESP_BUSY_OTHER:
210 /* The SMU is busy with other commands. The client
211 * should retry in 10 us.
216 /* Unknown or debug response from the SMU.
225 static void __smu_cmn_send_msg(struct smu_context *smu,
229 struct amdgpu_device *adev = smu->adev;
231 WREG32(smu->resp_reg, 0);
232 WREG32(smu->param_reg, param);
233 WREG32(smu->msg_reg, msg);
237 * smu_cmn_send_msg_without_waiting -- send the message; don't wait for status
238 * @smu: pointer to an SMU context
239 * @msg_index: message index
240 * @param: message parameter to send to the SMU
242 * Send a message to the SMU with the parameter passed. Do not wait
243 * for status/result of the message, thus the "without_waiting".
245 * Return 0 on success, -errno on error if we weren't able to _send_
246 * the message for some reason. See __smu_cmn_reg2errno() for details
249 int smu_cmn_send_msg_without_waiting(struct smu_context *smu,
253 struct amdgpu_device *adev = smu->adev;
257 if (adev->no_hw_access)
260 reg = __smu_cmn_poll_stat(smu);
261 res = __smu_cmn_reg2errno(smu, reg);
262 if (reg == SMU_RESP_NONE ||
265 __smu_cmn_send_msg(smu, msg_index, param);
268 if (unlikely(adev->pm.smu_debug_mask & SMU_DEBUG_HALT_ON_ERROR) &&
269 res && (res != -ETIME)) {
270 amdgpu_device_halt(adev);
278 * smu_cmn_wait_for_response -- wait for response from the SMU
279 * @smu: pointer to an SMU context
281 * Wait for status from the SMU.
283 * Return 0 on success, -errno on error, indicating the execution
284 * status and result of the message being waited for. See
285 * __smu_cmn_reg2errno() for details of the -errno.
287 int smu_cmn_wait_for_response(struct smu_context *smu)
292 reg = __smu_cmn_poll_stat(smu);
293 res = __smu_cmn_reg2errno(smu, reg);
295 if (unlikely(smu->adev->pm.smu_debug_mask & SMU_DEBUG_HALT_ON_ERROR) &&
296 res && (res != -ETIME)) {
297 amdgpu_device_halt(smu->adev);
305 * smu_cmn_send_smc_msg_with_param -- send a message with parameter
306 * @smu: pointer to an SMU context
307 * @msg: message to send
308 * @param: parameter to send to the SMU
309 * @read_arg: pointer to u32 to return a value from the SMU back
312 * Send the message @msg with parameter @param to the SMU, wait for
313 * completion of the command, and return back a value from the SMU in
316 * Return 0 on success, -errno when a problem is encountered sending
317 * message or receiving reply. If there is a PCI bus recovery or
318 * the destination is a virtual GPU which does not allow this message
319 * type, the message is simply dropped and success is also returned.
320 * See __smu_cmn_reg2errno() for details of the -errno.
322 * If we weren't able to send the message to the SMU, we also print
323 * the error to the standard log.
325 * Command completion status is printed only if the -errno is
326 * -EREMOTEIO, indicating that the SMU returned back an
327 * undefined/unknown/unspecified result. All other cases are
328 * well-defined, not printed, but instead given back to the client to
329 * decide what further to do.
331 * The return value, @read_arg is read back regardless, to give back
332 * more information to the client, which on error would most likely be
333 * @param, but we can't assume that. This also eliminates more
336 int smu_cmn_send_smc_msg_with_param(struct smu_context *smu,
337 enum smu_message_type msg,
341 struct amdgpu_device *adev = smu->adev;
345 if (adev->no_hw_access)
348 index = smu_cmn_to_asic_specific_index(smu,
349 CMN2ASIC_MAPPING_MSG,
352 return index == -EACCES ? 0 : index;
354 mutex_lock(&smu->message_lock);
355 reg = __smu_cmn_poll_stat(smu);
356 res = __smu_cmn_reg2errno(smu, reg);
357 if (reg == SMU_RESP_NONE ||
359 __smu_cmn_reg_print_error(smu, reg, index, param, msg);
362 __smu_cmn_send_msg(smu, (uint16_t) index, param);
363 reg = __smu_cmn_poll_stat(smu);
364 res = __smu_cmn_reg2errno(smu, reg);
366 __smu_cmn_reg_print_error(smu, reg, index, param, msg);
368 smu_cmn_read_arg(smu, read_arg);
370 if (unlikely(adev->pm.smu_debug_mask & SMU_DEBUG_HALT_ON_ERROR) && res) {
371 amdgpu_device_halt(adev);
375 mutex_unlock(&smu->message_lock);
379 int smu_cmn_send_smc_msg(struct smu_context *smu,
380 enum smu_message_type msg,
383 return smu_cmn_send_smc_msg_with_param(smu,
389 int smu_cmn_to_asic_specific_index(struct smu_context *smu,
390 enum smu_cmn2asic_mapping_type type,
393 struct cmn2asic_msg_mapping msg_mapping;
394 struct cmn2asic_mapping mapping;
397 case CMN2ASIC_MAPPING_MSG:
398 if (index >= SMU_MSG_MAX_COUNT ||
402 msg_mapping = smu->message_map[index];
403 if (!msg_mapping.valid_mapping)
406 if (amdgpu_sriov_vf(smu->adev) &&
407 !msg_mapping.valid_in_vf)
410 return msg_mapping.map_to;
412 case CMN2ASIC_MAPPING_CLK:
413 if (index >= SMU_CLK_COUNT ||
417 mapping = smu->clock_map[index];
418 if (!mapping.valid_mapping)
421 return mapping.map_to;
423 case CMN2ASIC_MAPPING_FEATURE:
424 if (index >= SMU_FEATURE_COUNT ||
428 mapping = smu->feature_map[index];
429 if (!mapping.valid_mapping)
432 return mapping.map_to;
434 case CMN2ASIC_MAPPING_TABLE:
435 if (index >= SMU_TABLE_COUNT ||
439 mapping = smu->table_map[index];
440 if (!mapping.valid_mapping)
443 return mapping.map_to;
445 case CMN2ASIC_MAPPING_PWR:
446 if (index >= SMU_POWER_SOURCE_COUNT ||
450 mapping = smu->pwr_src_map[index];
451 if (!mapping.valid_mapping)
454 return mapping.map_to;
456 case CMN2ASIC_MAPPING_WORKLOAD:
457 if (index > PP_SMC_POWER_PROFILE_WINDOW3D ||
461 mapping = smu->workload_map[index];
462 if (!mapping.valid_mapping)
465 return mapping.map_to;
472 int smu_cmn_feature_is_supported(struct smu_context *smu,
473 enum smu_feature_mask mask)
475 struct smu_feature *feature = &smu->smu_feature;
478 feature_id = smu_cmn_to_asic_specific_index(smu,
479 CMN2ASIC_MAPPING_FEATURE,
484 WARN_ON(feature_id > feature->feature_num);
486 return test_bit(feature_id, feature->supported);
489 static int __smu_get_enabled_features(struct smu_context *smu,
490 uint64_t *enabled_features)
492 return smu_cmn_call_asic_func(get_enabled_mask, smu, enabled_features);
495 int smu_cmn_feature_is_enabled(struct smu_context *smu,
496 enum smu_feature_mask mask)
498 struct amdgpu_device *adev = smu->adev;
499 uint64_t enabled_features;
502 if (__smu_get_enabled_features(smu, &enabled_features)) {
503 dev_err(adev->dev, "Failed to retrieve enabled ppfeatures!\n");
508 * For Renoir and Cyan Skillfish, they are assumed to have all features
509 * enabled. Also considering they have no feature_map available, the
510 * check here can avoid unwanted feature_map check below.
512 if (enabled_features == ULLONG_MAX)
515 feature_id = smu_cmn_to_asic_specific_index(smu,
516 CMN2ASIC_MAPPING_FEATURE,
521 return test_bit(feature_id, (unsigned long *)&enabled_features);
524 bool smu_cmn_clk_dpm_is_enabled(struct smu_context *smu,
525 enum smu_clk_type clk_type)
527 enum smu_feature_mask feature_id = 0;
532 feature_id = SMU_FEATURE_DPM_UCLK_BIT;
536 feature_id = SMU_FEATURE_DPM_GFXCLK_BIT;
539 feature_id = SMU_FEATURE_DPM_SOCCLK_BIT;
543 feature_id = SMU_FEATURE_DPM_VCLK_BIT;
547 feature_id = SMU_FEATURE_DPM_DCLK_BIT;
550 feature_id = SMU_FEATURE_DPM_FCLK_BIT;
556 if (!smu_cmn_feature_is_enabled(smu, feature_id))
562 int smu_cmn_get_enabled_mask(struct smu_context *smu,
563 uint64_t *feature_mask)
565 uint32_t *feature_mask_high;
566 uint32_t *feature_mask_low;
567 int ret = 0, index = 0;
572 feature_mask_low = &((uint32_t *)feature_mask)[0];
573 feature_mask_high = &((uint32_t *)feature_mask)[1];
575 index = smu_cmn_to_asic_specific_index(smu,
576 CMN2ASIC_MAPPING_MSG,
577 SMU_MSG_GetEnabledSmuFeatures);
579 ret = smu_cmn_send_smc_msg_with_param(smu,
580 SMU_MSG_GetEnabledSmuFeatures,
586 ret = smu_cmn_send_smc_msg_with_param(smu,
587 SMU_MSG_GetEnabledSmuFeatures,
591 ret = smu_cmn_send_smc_msg(smu,
592 SMU_MSG_GetEnabledSmuFeaturesHigh,
597 ret = smu_cmn_send_smc_msg(smu,
598 SMU_MSG_GetEnabledSmuFeaturesLow,
605 uint64_t smu_cmn_get_indep_throttler_status(
606 const unsigned long dep_status,
607 const uint8_t *throttler_map)
609 uint64_t indep_status = 0;
612 for_each_set_bit(dep_bit, &dep_status, 32)
613 indep_status |= 1ULL << throttler_map[dep_bit];
618 int smu_cmn_feature_update_enable_state(struct smu_context *smu,
619 uint64_t feature_mask,
625 ret = smu_cmn_send_smc_msg_with_param(smu,
626 SMU_MSG_EnableSmuFeaturesLow,
627 lower_32_bits(feature_mask),
631 ret = smu_cmn_send_smc_msg_with_param(smu,
632 SMU_MSG_EnableSmuFeaturesHigh,
633 upper_32_bits(feature_mask),
636 ret = smu_cmn_send_smc_msg_with_param(smu,
637 SMU_MSG_DisableSmuFeaturesLow,
638 lower_32_bits(feature_mask),
642 ret = smu_cmn_send_smc_msg_with_param(smu,
643 SMU_MSG_DisableSmuFeaturesHigh,
644 upper_32_bits(feature_mask),
651 int smu_cmn_feature_set_enabled(struct smu_context *smu,
652 enum smu_feature_mask mask,
657 feature_id = smu_cmn_to_asic_specific_index(smu,
658 CMN2ASIC_MAPPING_FEATURE,
663 return smu_cmn_feature_update_enable_state(smu,
668 #undef __SMU_DUMMY_MAP
669 #define __SMU_DUMMY_MAP(fea) #fea
670 static const char* __smu_feature_names[] = {
674 static const char *smu_get_feature_name(struct smu_context *smu,
675 enum smu_feature_mask feature)
677 if (feature < 0 || feature >= SMU_FEATURE_COUNT)
678 return "unknown smu feature";
679 return __smu_feature_names[feature];
682 size_t smu_cmn_get_pp_feature_mask(struct smu_context *smu,
685 int8_t sort_feature[max(SMU_FEATURE_COUNT, SMU_FEATURE_MAX)];
686 uint64_t feature_mask;
687 int i, feature_index;
691 if (__smu_get_enabled_features(smu, &feature_mask))
694 size = sysfs_emit_at(buf, size, "features high: 0x%08x low: 0x%08x\n",
695 upper_32_bits(feature_mask), lower_32_bits(feature_mask));
697 memset(sort_feature, -1, sizeof(sort_feature));
699 for (i = 0; i < SMU_FEATURE_COUNT; i++) {
700 feature_index = smu_cmn_to_asic_specific_index(smu,
701 CMN2ASIC_MAPPING_FEATURE,
703 if (feature_index < 0)
706 sort_feature[feature_index] = i;
709 size += sysfs_emit_at(buf, size, "%-2s. %-20s %-3s : %-s\n",
710 "No", "Feature", "Bit", "State");
712 for (feature_index = 0; feature_index < SMU_FEATURE_MAX; feature_index++) {
713 if (sort_feature[feature_index] < 0)
716 size += sysfs_emit_at(buf, size, "%02d. %-20s (%2d) : %s\n",
718 smu_get_feature_name(smu, sort_feature[feature_index]),
720 !!test_bit(feature_index, (unsigned long *)&feature_mask) ?
721 "enabled" : "disabled");
727 int smu_cmn_set_pp_feature_mask(struct smu_context *smu,
731 uint64_t feature_mask;
732 uint64_t feature_2_enabled = 0;
733 uint64_t feature_2_disabled = 0;
735 ret = __smu_get_enabled_features(smu, &feature_mask);
739 feature_2_enabled = ~feature_mask & new_mask;
740 feature_2_disabled = feature_mask & ~new_mask;
742 if (feature_2_enabled) {
743 ret = smu_cmn_feature_update_enable_state(smu,
749 if (feature_2_disabled) {
750 ret = smu_cmn_feature_update_enable_state(smu,
761 * smu_cmn_disable_all_features_with_exception - disable all dpm features
762 * except this specified by
765 * @smu: smu_context pointer
766 * @mask: the dpm feature which should not be disabled
767 * SMU_FEATURE_COUNT: no exception, all dpm features
771 * 0 on success or a negative error code on failure.
773 int smu_cmn_disable_all_features_with_exception(struct smu_context *smu,
774 enum smu_feature_mask mask)
776 uint64_t features_to_disable = U64_MAX;
777 int skipped_feature_id;
779 if (mask != SMU_FEATURE_COUNT) {
780 skipped_feature_id = smu_cmn_to_asic_specific_index(smu,
781 CMN2ASIC_MAPPING_FEATURE,
783 if (skipped_feature_id < 0)
786 features_to_disable &= ~(1ULL << skipped_feature_id);
789 return smu_cmn_feature_update_enable_state(smu,
794 int smu_cmn_get_smc_version(struct smu_context *smu,
795 uint32_t *if_version,
796 uint32_t *smu_version)
800 if (!if_version && !smu_version)
803 if (smu->smc_fw_if_version && smu->smc_fw_version)
806 *if_version = smu->smc_fw_if_version;
809 *smu_version = smu->smc_fw_version;
815 ret = smu_cmn_send_smc_msg(smu, SMU_MSG_GetDriverIfVersion, if_version);
819 smu->smc_fw_if_version = *if_version;
823 ret = smu_cmn_send_smc_msg(smu, SMU_MSG_GetSmuVersion, smu_version);
827 smu->smc_fw_version = *smu_version;
833 int smu_cmn_update_table(struct smu_context *smu,
834 enum smu_table_id table_index,
839 struct smu_table_context *smu_table = &smu->smu_table;
840 struct amdgpu_device *adev = smu->adev;
841 struct smu_table *table = &smu_table->driver_table;
842 int table_id = smu_cmn_to_asic_specific_index(smu,
843 CMN2ASIC_MAPPING_TABLE,
847 if (!table_data || table_id >= SMU_TABLE_COUNT || table_id < 0)
850 table_size = smu_table->tables[table_index].size;
853 memcpy(table->cpu_addr, table_data, table_size);
855 * Flush hdp cache: to guard the content seen by
856 * GPU is consitent with CPU.
858 amdgpu_asic_flush_hdp(adev, NULL);
861 ret = smu_cmn_send_smc_msg_with_param(smu, drv2smu ?
862 SMU_MSG_TransferTableDram2Smu :
863 SMU_MSG_TransferTableSmu2Dram,
864 table_id | ((argument & 0xFFFF) << 16),
870 amdgpu_asic_invalidate_hdp(adev, NULL);
871 memcpy(table_data, table->cpu_addr, table_size);
877 int smu_cmn_write_watermarks_table(struct smu_context *smu)
879 void *watermarks_table = smu->smu_table.watermarks_table;
881 if (!watermarks_table)
884 return smu_cmn_update_table(smu,
885 SMU_TABLE_WATERMARKS,
891 int smu_cmn_write_pptable(struct smu_context *smu)
893 void *pptable = smu->smu_table.driver_pptable;
895 return smu_cmn_update_table(smu,
902 int smu_cmn_get_metrics_table(struct smu_context *smu,
906 struct smu_table_context *smu_table= &smu->smu_table;
907 uint32_t table_size =
908 smu_table->tables[SMU_TABLE_SMU_METRICS].size;
912 !smu_table->metrics_time ||
913 time_after(jiffies, smu_table->metrics_time + msecs_to_jiffies(1))) {
914 ret = smu_cmn_update_table(smu,
915 SMU_TABLE_SMU_METRICS,
917 smu_table->metrics_table,
920 dev_info(smu->adev->dev, "Failed to export SMU metrics table!\n");
923 smu_table->metrics_time = jiffies;
927 memcpy(metrics_table, smu_table->metrics_table, table_size);
932 int smu_cmn_get_combo_pptable(struct smu_context *smu)
934 void *pptable = smu->smu_table.combo_pptable;
936 return smu_cmn_update_table(smu,
937 SMU_TABLE_COMBO_PPTABLE,
943 void smu_cmn_init_soft_gpu_metrics(void *table, uint8_t frev, uint8_t crev)
945 struct metrics_table_header *header = (struct metrics_table_header *)table;
946 uint16_t structure_size;
948 #define METRICS_VERSION(a, b) ((a << 16) | b )
950 switch (METRICS_VERSION(frev, crev)) {
951 case METRICS_VERSION(1, 0):
952 structure_size = sizeof(struct gpu_metrics_v1_0);
954 case METRICS_VERSION(1, 1):
955 structure_size = sizeof(struct gpu_metrics_v1_1);
957 case METRICS_VERSION(1, 2):
958 structure_size = sizeof(struct gpu_metrics_v1_2);
960 case METRICS_VERSION(1, 3):
961 structure_size = sizeof(struct gpu_metrics_v1_3);
963 case METRICS_VERSION(2, 0):
964 structure_size = sizeof(struct gpu_metrics_v2_0);
966 case METRICS_VERSION(2, 1):
967 structure_size = sizeof(struct gpu_metrics_v2_1);
969 case METRICS_VERSION(2, 2):
970 structure_size = sizeof(struct gpu_metrics_v2_2);
976 #undef METRICS_VERSION
978 memset(header, 0xFF, structure_size);
980 header->format_revision = frev;
981 header->content_revision = crev;
982 header->structure_size = structure_size;
986 int smu_cmn_set_mp1_state(struct smu_context *smu,
987 enum pp_mp1_state mp1_state)
989 enum smu_message_type msg;
993 case PP_MP1_STATE_SHUTDOWN:
994 msg = SMU_MSG_PrepareMp1ForShutdown;
996 case PP_MP1_STATE_UNLOAD:
997 msg = SMU_MSG_PrepareMp1ForUnload;
999 case PP_MP1_STATE_RESET:
1000 msg = SMU_MSG_PrepareMp1ForReset;
1002 case PP_MP1_STATE_NONE:
1007 ret = smu_cmn_send_smc_msg(smu, msg, NULL);
1009 dev_err(smu->adev->dev, "[PrepareMp1] Failed!\n");
1014 bool smu_cmn_is_audio_func_enabled(struct amdgpu_device *adev)
1016 struct pci_dev *p = NULL;
1017 bool snd_driver_loaded;
1020 * If the ASIC comes with no audio function, we always assume
1023 p = pci_get_domain_bus_and_slot(pci_domain_nr(adev->pdev->bus),
1024 adev->pdev->bus->number, 1);
1028 snd_driver_loaded = pci_is_enabled(p) ? true : false;
1032 return snd_driver_loaded;