]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/gpu/drm/amd/powerplay/amdgpu_smu.c
drm/amd/powerplay: refine code to support no-dpm case
[linux.git] / drivers / gpu / drm / amd / powerplay / amdgpu_smu.c
1 /*
2  * Copyright 2019 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
23 #include <linux/firmware.h>
24
25 #include "pp_debug.h"
26 #include "amdgpu.h"
27 #include "amdgpu_smu.h"
28 #include "smu_internal.h"
29 #include "soc15_common.h"
30 #include "smu_v11_0.h"
31 #include "smu_v12_0.h"
32 #include "atom.h"
33 #include "amd_pcie.h"
34 #include "vega20_ppt.h"
35 #include "arcturus_ppt.h"
36 #include "navi10_ppt.h"
37 #include "renoir_ppt.h"
38
39 #undef __SMU_DUMMY_MAP
40 #define __SMU_DUMMY_MAP(type)   #type
41 static const char* __smu_message_names[] = {
42         SMU_MESSAGE_TYPES
43 };
44
45 const char *smu_get_message_name(struct smu_context *smu, enum smu_message_type type)
46 {
47         if (type < 0 || type >= SMU_MSG_MAX_COUNT)
48                 return "unknown smu message";
49         return __smu_message_names[type];
50 }
51
52 #undef __SMU_DUMMY_MAP
53 #define __SMU_DUMMY_MAP(fea)    #fea
54 static const char* __smu_feature_names[] = {
55         SMU_FEATURE_MASKS
56 };
57
58 const char *smu_get_feature_name(struct smu_context *smu, enum smu_feature_mask feature)
59 {
60         if (feature < 0 || feature >= SMU_FEATURE_COUNT)
61                 return "unknown smu feature";
62         return __smu_feature_names[feature];
63 }
64
65 size_t smu_sys_get_pp_feature_mask(struct smu_context *smu, char *buf)
66 {
67         size_t size = 0;
68         int ret = 0, i = 0;
69         uint32_t feature_mask[2] = { 0 };
70         int32_t feature_index = 0;
71         uint32_t count = 0;
72         uint32_t sort_feature[SMU_FEATURE_COUNT];
73         uint64_t hw_feature_count = 0;
74
75         mutex_lock(&smu->mutex);
76
77         ret = smu_feature_get_enabled_mask(smu, feature_mask, 2);
78         if (ret)
79                 goto failed;
80
81         size =  sprintf(buf + size, "features high: 0x%08x low: 0x%08x\n",
82                         feature_mask[1], feature_mask[0]);
83
84         for (i = 0; i < SMU_FEATURE_COUNT; i++) {
85                 feature_index = smu_feature_get_index(smu, i);
86                 if (feature_index < 0)
87                         continue;
88                 sort_feature[feature_index] = i;
89                 hw_feature_count++;
90         }
91
92         for (i = 0; i < hw_feature_count; i++) {
93                 size += sprintf(buf + size, "%02d. %-20s (%2d) : %s\n",
94                                count++,
95                                smu_get_feature_name(smu, sort_feature[i]),
96                                i,
97                                !!smu_feature_is_enabled(smu, sort_feature[i]) ?
98                                "enabled" : "disabled");
99         }
100
101 failed:
102         mutex_unlock(&smu->mutex);
103
104         return size;
105 }
106
107 static int smu_feature_update_enable_state(struct smu_context *smu,
108                                            uint64_t feature_mask,
109                                            bool enabled)
110 {
111         struct smu_feature *feature = &smu->smu_feature;
112         uint32_t feature_low = 0, feature_high = 0;
113         int ret = 0;
114
115         if (!smu->pm_enabled)
116                 return ret;
117
118         feature_low = (feature_mask >> 0 ) & 0xffffffff;
119         feature_high = (feature_mask >> 32) & 0xffffffff;
120
121         if (enabled) {
122                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesLow,
123                                                   feature_low);
124                 if (ret)
125                         return ret;
126                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_EnableSmuFeaturesHigh,
127                                                   feature_high);
128                 if (ret)
129                         return ret;
130         } else {
131                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesLow,
132                                                   feature_low);
133                 if (ret)
134                         return ret;
135                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_DisableSmuFeaturesHigh,
136                                                   feature_high);
137                 if (ret)
138                         return ret;
139         }
140
141         mutex_lock(&feature->mutex);
142         if (enabled)
143                 bitmap_or(feature->enabled, feature->enabled,
144                                 (unsigned long *)(&feature_mask), SMU_FEATURE_MAX);
145         else
146                 bitmap_andnot(feature->enabled, feature->enabled,
147                                 (unsigned long *)(&feature_mask), SMU_FEATURE_MAX);
148         mutex_unlock(&feature->mutex);
149
150         return ret;
151 }
152
153 int smu_sys_set_pp_feature_mask(struct smu_context *smu, uint64_t new_mask)
154 {
155         int ret = 0;
156         uint32_t feature_mask[2] = { 0 };
157         uint64_t feature_2_enabled = 0;
158         uint64_t feature_2_disabled = 0;
159         uint64_t feature_enables = 0;
160
161         mutex_lock(&smu->mutex);
162
163         ret = smu_feature_get_enabled_mask(smu, feature_mask, 2);
164         if (ret)
165                 goto out;
166
167         feature_enables = ((uint64_t)feature_mask[1] << 32 | (uint64_t)feature_mask[0]);
168
169         feature_2_enabled  = ~feature_enables & new_mask;
170         feature_2_disabled = feature_enables & ~new_mask;
171
172         if (feature_2_enabled) {
173                 ret = smu_feature_update_enable_state(smu, feature_2_enabled, true);
174                 if (ret)
175                         goto out;
176         }
177         if (feature_2_disabled) {
178                 ret = smu_feature_update_enable_state(smu, feature_2_disabled, false);
179                 if (ret)
180                         goto out;
181         }
182
183 out:
184         mutex_unlock(&smu->mutex);
185
186         return ret;
187 }
188
189 int smu_get_smc_version(struct smu_context *smu, uint32_t *if_version, uint32_t *smu_version)
190 {
191         int ret = 0;
192
193         if (!if_version && !smu_version)
194                 return -EINVAL;
195
196         if (if_version) {
197                 ret = smu_send_smc_msg(smu, SMU_MSG_GetDriverIfVersion);
198                 if (ret)
199                         return ret;
200
201                 ret = smu_read_smc_arg(smu, if_version);
202                 if (ret)
203                         return ret;
204         }
205
206         if (smu_version) {
207                 ret = smu_send_smc_msg(smu, SMU_MSG_GetSmuVersion);
208                 if (ret)
209                         return ret;
210
211                 ret = smu_read_smc_arg(smu, smu_version);
212                 if (ret)
213                         return ret;
214         }
215
216         return ret;
217 }
218
219 int smu_set_soft_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
220                             uint32_t min, uint32_t max)
221 {
222         int ret = 0;
223
224         if (min <= 0 && max <= 0)
225                 return -EINVAL;
226
227         if (!smu_clk_dpm_is_enabled(smu, clk_type))
228                 return 0;
229
230         ret = smu_set_soft_freq_limited_range(smu, clk_type, min, max);
231         return ret;
232 }
233
234 int smu_set_hard_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
235                             uint32_t min, uint32_t max)
236 {
237         int ret = 0, clk_id = 0;
238         uint32_t param;
239
240         if (min <= 0 && max <= 0)
241                 return -EINVAL;
242
243         if (!smu_clk_dpm_is_enabled(smu, clk_type))
244                 return 0;
245
246         clk_id = smu_clk_get_index(smu, clk_type);
247         if (clk_id < 0)
248                 return clk_id;
249
250         if (max > 0) {
251                 param = (uint32_t)((clk_id << 16) | (max & 0xffff));
252                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_SetHardMaxByFreq,
253                                                   param);
254                 if (ret)
255                         return ret;
256         }
257
258         if (min > 0) {
259                 param = (uint32_t)((clk_id << 16) | (min & 0xffff));
260                 ret = smu_send_smc_msg_with_param(smu, SMU_MSG_SetHardMinByFreq,
261                                                   param);
262                 if (ret)
263                         return ret;
264         }
265
266
267         return ret;
268 }
269
270 int smu_get_dpm_freq_range(struct smu_context *smu, enum smu_clk_type clk_type,
271                            uint32_t *min, uint32_t *max, bool lock_needed)
272 {
273         uint32_t clock_limit;
274         int ret = 0;
275
276         if (!min && !max)
277                 return -EINVAL;
278
279         if (lock_needed)
280                 mutex_lock(&smu->mutex);
281
282         if (!smu_clk_dpm_is_enabled(smu, clk_type)) {
283                 switch (clk_type) {
284                 case SMU_MCLK:
285                 case SMU_UCLK:
286                         clock_limit = smu->smu_table.boot_values.uclk;
287                         break;
288                 case SMU_GFXCLK:
289                 case SMU_SCLK:
290                         clock_limit = smu->smu_table.boot_values.gfxclk;
291                         break;
292                 case SMU_SOCCLK:
293                         clock_limit = smu->smu_table.boot_values.socclk;
294                         break;
295                 default:
296                         clock_limit = 0;
297                         break;
298                 }
299
300                 /* clock in Mhz unit */
301                 if (min)
302                         *min = clock_limit / 100;
303                 if (max)
304                         *max = clock_limit / 100;
305         } else {
306                 /*
307                  * Todo: Use each asic(ASIC_ppt funcs) control the callbacks exposed to the
308                  * core driver and then have helpers for stuff that is common(SMU_v11_x | SMU_v12_x funcs).
309                  */
310                 ret = smu_get_dpm_ultimate_freq(smu, clk_type, min, max);
311         }
312
313         if (lock_needed)
314                 mutex_unlock(&smu->mutex);
315
316         return ret;
317 }
318
319 int smu_get_dpm_freq_by_index(struct smu_context *smu, enum smu_clk_type clk_type,
320                               uint16_t level, uint32_t *value)
321 {
322         int ret = 0, clk_id = 0;
323         uint32_t param;
324
325         if (!value)
326                 return -EINVAL;
327
328         if (!smu_clk_dpm_is_enabled(smu, clk_type))
329                 return 0;
330
331         clk_id = smu_clk_get_index(smu, clk_type);
332         if (clk_id < 0)
333                 return clk_id;
334
335         param = (uint32_t)(((clk_id & 0xffff) << 16) | (level & 0xffff));
336
337         ret = smu_send_smc_msg_with_param(smu,SMU_MSG_GetDpmFreqByIndex,
338                                           param);
339         if (ret)
340                 return ret;
341
342         ret = smu_read_smc_arg(smu, &param);
343         if (ret)
344                 return ret;
345
346         /* BIT31:  0 - Fine grained DPM, 1 - Dicrete DPM
347          * now, we un-support it */
348         *value = param & 0x7fffffff;
349
350         return ret;
351 }
352
353 int smu_get_dpm_level_count(struct smu_context *smu, enum smu_clk_type clk_type,
354                             uint32_t *value)
355 {
356         return smu_get_dpm_freq_by_index(smu, clk_type, 0xff, value);
357 }
358
359 int smu_get_dpm_level_range(struct smu_context *smu, enum smu_clk_type clk_type,
360                             uint32_t *min_value, uint32_t *max_value)
361 {
362         int ret = 0;
363         uint32_t level_count = 0;
364
365         if (!min_value && !max_value)
366                 return -EINVAL;
367
368         if (min_value) {
369                 /* by default, level 0 clock value as min value */
370                 ret = smu_get_dpm_freq_by_index(smu, clk_type, 0, min_value);
371                 if (ret)
372                         return ret;
373         }
374
375         if (max_value) {
376                 ret = smu_get_dpm_level_count(smu, clk_type, &level_count);
377                 if (ret)
378                         return ret;
379
380                 ret = smu_get_dpm_freq_by_index(smu, clk_type, level_count - 1, max_value);
381                 if (ret)
382                         return ret;
383         }
384
385         return ret;
386 }
387
388 bool smu_clk_dpm_is_enabled(struct smu_context *smu, enum smu_clk_type clk_type)
389 {
390         enum smu_feature_mask feature_id = 0;
391
392         switch (clk_type) {
393         case SMU_MCLK:
394         case SMU_UCLK:
395                 feature_id = SMU_FEATURE_DPM_UCLK_BIT;
396                 break;
397         case SMU_GFXCLK:
398         case SMU_SCLK:
399                 feature_id = SMU_FEATURE_DPM_GFXCLK_BIT;
400                 break;
401         case SMU_SOCCLK:
402                 feature_id = SMU_FEATURE_DPM_SOCCLK_BIT;
403                 break;
404         default:
405                 return true;
406         }
407
408         if(!smu_feature_is_enabled(smu, feature_id)) {
409                 return false;
410         }
411
412         return true;
413 }
414
415 /**
416  * smu_dpm_set_power_gate - power gate/ungate the specific IP block
417  *
418  * @smu:        smu_context pointer
419  * @block_type: the IP block to power gate/ungate
420  * @gate:       to power gate if true, ungate otherwise
421  *
422  * This API uses no smu->mutex lock protection due to:
423  * 1. It is either called by other IP block(gfx/sdma/vcn/uvd/vce).
424  *    This is guarded to be race condition free by the caller.
425  * 2. Or get called on user setting request of power_dpm_force_performance_level.
426  *    Under this case, the smu->mutex lock protection is already enforced on
427  *    the parent API smu_force_performance_level of the call path.
428  */
429 int smu_dpm_set_power_gate(struct smu_context *smu, uint32_t block_type,
430                            bool gate)
431 {
432         int ret = 0;
433
434         switch (block_type) {
435         case AMD_IP_BLOCK_TYPE_UVD:
436                 ret = smu_dpm_set_uvd_enable(smu, gate);
437                 break;
438         case AMD_IP_BLOCK_TYPE_VCE:
439                 ret = smu_dpm_set_vce_enable(smu, gate);
440                 break;
441         case AMD_IP_BLOCK_TYPE_GFX:
442                 ret = smu_gfx_off_control(smu, gate);
443                 break;
444         case AMD_IP_BLOCK_TYPE_SDMA:
445                 ret = smu_powergate_sdma(smu, gate);
446                 break;
447         case AMD_IP_BLOCK_TYPE_JPEG:
448                 ret = smu_dpm_set_jpeg_enable(smu, gate);
449                 break;
450         default:
451                 break;
452         }
453
454         return ret;
455 }
456
457 int smu_get_power_num_states(struct smu_context *smu,
458                              struct pp_states_info *state_info)
459 {
460         if (!state_info)
461                 return -EINVAL;
462
463         /* not support power state */
464         memset(state_info, 0, sizeof(struct pp_states_info));
465         state_info->nums = 1;
466         state_info->states[0] = POWER_STATE_TYPE_DEFAULT;
467
468         return 0;
469 }
470
471 int smu_common_read_sensor(struct smu_context *smu, enum amd_pp_sensors sensor,
472                            void *data, uint32_t *size)
473 {
474         struct smu_power_context *smu_power = &smu->smu_power;
475         struct smu_power_gate *power_gate = &smu_power->power_gate;
476         int ret = 0;
477
478         if(!data || !size)
479                 return -EINVAL;
480
481         switch (sensor) {
482         case AMDGPU_PP_SENSOR_STABLE_PSTATE_SCLK:
483                 *((uint32_t *)data) = smu->pstate_sclk;
484                 *size = 4;
485                 break;
486         case AMDGPU_PP_SENSOR_STABLE_PSTATE_MCLK:
487                 *((uint32_t *)data) = smu->pstate_mclk;
488                 *size = 4;
489                 break;
490         case AMDGPU_PP_SENSOR_ENABLED_SMC_FEATURES_MASK:
491                 ret = smu_feature_get_enabled_mask(smu, (uint32_t *)data, 2);
492                 *size = 8;
493                 break;
494         case AMDGPU_PP_SENSOR_UVD_POWER:
495                 *(uint32_t *)data = smu_feature_is_enabled(smu, SMU_FEATURE_DPM_UVD_BIT) ? 1 : 0;
496                 *size = 4;
497                 break;
498         case AMDGPU_PP_SENSOR_VCE_POWER:
499                 *(uint32_t *)data = smu_feature_is_enabled(smu, SMU_FEATURE_DPM_VCE_BIT) ? 1 : 0;
500                 *size = 4;
501                 break;
502         case AMDGPU_PP_SENSOR_VCN_POWER_STATE:
503                 *(uint32_t *)data = power_gate->vcn_gated ? 0 : 1;
504                 *size = 4;
505                 break;
506         default:
507                 ret = -EINVAL;
508                 break;
509         }
510
511         if (ret)
512                 *size = 0;
513
514         return ret;
515 }
516
517 int smu_update_table(struct smu_context *smu, enum smu_table_id table_index, int argument,
518                      void *table_data, bool drv2smu)
519 {
520         struct smu_table_context *smu_table = &smu->smu_table;
521         struct amdgpu_device *adev = smu->adev;
522         struct smu_table *table = &smu_table->driver_table;
523         int table_id = smu_table_get_index(smu, table_index);
524         uint32_t table_size;
525         int ret = 0;
526
527         if (!table_data || table_id >= SMU_TABLE_COUNT || table_id < 0)
528                 return -EINVAL;
529
530         table_size = smu_table->tables[table_index].size;
531
532         if (drv2smu)
533                 memcpy(table->cpu_addr, table_data, table_size);
534
535         ret = smu_send_smc_msg_with_param(smu, drv2smu ?
536                                           SMU_MSG_TransferTableDram2Smu :
537                                           SMU_MSG_TransferTableSmu2Dram,
538                                           table_id | ((argument & 0xFFFF) << 16));
539         if (ret)
540                 return ret;
541
542         /* flush hdp cache */
543         adev->nbio.funcs->hdp_flush(adev, NULL);
544
545         if (!drv2smu)
546                 memcpy(table_data, table->cpu_addr, table_size);
547
548         return ret;
549 }
550
551 bool is_support_sw_smu(struct amdgpu_device *adev)
552 {
553         if (adev->asic_type == CHIP_VEGA20)
554                 return (amdgpu_dpm == 2) ? true : false;
555         else if (adev->asic_type >= CHIP_ARCTURUS) {
556                 if (amdgpu_sriov_vf(adev)&& !amdgpu_sriov_is_pp_one_vf(adev))
557                         return false;
558                 else
559                         return true;
560         } else
561                 return false;
562 }
563
564 bool is_support_sw_smu_xgmi(struct amdgpu_device *adev)
565 {
566         if (!is_support_sw_smu(adev))
567                 return false;
568
569         if (adev->asic_type == CHIP_VEGA20)
570                 return true;
571
572         return false;
573 }
574
575 int smu_sys_get_pp_table(struct smu_context *smu, void **table)
576 {
577         struct smu_table_context *smu_table = &smu->smu_table;
578         uint32_t powerplay_table_size;
579
580         if (!smu_table->power_play_table && !smu_table->hardcode_pptable)
581                 return -EINVAL;
582
583         mutex_lock(&smu->mutex);
584
585         if (smu_table->hardcode_pptable)
586                 *table = smu_table->hardcode_pptable;
587         else
588                 *table = smu_table->power_play_table;
589
590         powerplay_table_size = smu_table->power_play_table_size;
591
592         mutex_unlock(&smu->mutex);
593
594         return powerplay_table_size;
595 }
596
597 int smu_sys_set_pp_table(struct smu_context *smu,  void *buf, size_t size)
598 {
599         struct smu_table_context *smu_table = &smu->smu_table;
600         ATOM_COMMON_TABLE_HEADER *header = (ATOM_COMMON_TABLE_HEADER *)buf;
601         int ret = 0;
602
603         if (!smu->pm_enabled)
604                 return -EINVAL;
605         if (header->usStructureSize != size) {
606                 pr_err("pp table size not matched !\n");
607                 return -EIO;
608         }
609
610         mutex_lock(&smu->mutex);
611         if (!smu_table->hardcode_pptable)
612                 smu_table->hardcode_pptable = kzalloc(size, GFP_KERNEL);
613         if (!smu_table->hardcode_pptable) {
614                 ret = -ENOMEM;
615                 goto failed;
616         }
617
618         memcpy(smu_table->hardcode_pptable, buf, size);
619         smu_table->power_play_table = smu_table->hardcode_pptable;
620         smu_table->power_play_table_size = size;
621
622         /*
623          * Special hw_fini action(for Navi1x, the DPMs disablement will be
624          * skipped) may be needed for custom pptable uploading.
625          */
626         smu->uploading_custom_pp_table = true;
627
628         ret = smu_reset(smu);
629         if (ret)
630                 pr_info("smu reset failed, ret = %d\n", ret);
631
632         smu->uploading_custom_pp_table = false;
633
634 failed:
635         mutex_unlock(&smu->mutex);
636         return ret;
637 }
638
639 int smu_feature_init_dpm(struct smu_context *smu)
640 {
641         struct smu_feature *feature = &smu->smu_feature;
642         int ret = 0;
643         uint32_t allowed_feature_mask[SMU_FEATURE_MAX/32];
644
645         if (!smu->pm_enabled)
646                 return ret;
647         mutex_lock(&feature->mutex);
648         bitmap_zero(feature->allowed, SMU_FEATURE_MAX);
649         mutex_unlock(&feature->mutex);
650
651         ret = smu_get_allowed_feature_mask(smu, allowed_feature_mask,
652                                              SMU_FEATURE_MAX/32);
653         if (ret)
654                 return ret;
655
656         mutex_lock(&feature->mutex);
657         bitmap_or(feature->allowed, feature->allowed,
658                       (unsigned long *)allowed_feature_mask,
659                       feature->feature_num);
660         mutex_unlock(&feature->mutex);
661
662         return ret;
663 }
664
665
666 int smu_feature_is_enabled(struct smu_context *smu, enum smu_feature_mask mask)
667 {
668         struct smu_feature *feature = &smu->smu_feature;
669         int feature_id;
670         int ret = 0;
671
672         if (smu->is_apu)
673                 return 1;
674
675         feature_id = smu_feature_get_index(smu, mask);
676         if (feature_id < 0)
677                 return 0;
678
679         WARN_ON(feature_id > feature->feature_num);
680
681         mutex_lock(&feature->mutex);
682         ret = test_bit(feature_id, feature->enabled);
683         mutex_unlock(&feature->mutex);
684
685         return ret;
686 }
687
688 int smu_feature_set_enabled(struct smu_context *smu, enum smu_feature_mask mask,
689                             bool enable)
690 {
691         struct smu_feature *feature = &smu->smu_feature;
692         int feature_id;
693
694         feature_id = smu_feature_get_index(smu, mask);
695         if (feature_id < 0)
696                 return -EINVAL;
697
698         WARN_ON(feature_id > feature->feature_num);
699
700         return smu_feature_update_enable_state(smu,
701                                                1ULL << feature_id,
702                                                enable);
703 }
704
705 int smu_feature_is_supported(struct smu_context *smu, enum smu_feature_mask mask)
706 {
707         struct smu_feature *feature = &smu->smu_feature;
708         int feature_id;
709         int ret = 0;
710
711         feature_id = smu_feature_get_index(smu, mask);
712         if (feature_id < 0)
713                 return 0;
714
715         WARN_ON(feature_id > feature->feature_num);
716
717         mutex_lock(&feature->mutex);
718         ret = test_bit(feature_id, feature->supported);
719         mutex_unlock(&feature->mutex);
720
721         return ret;
722 }
723
724 int smu_feature_set_supported(struct smu_context *smu,
725                               enum smu_feature_mask mask,
726                               bool enable)
727 {
728         struct smu_feature *feature = &smu->smu_feature;
729         int feature_id;
730         int ret = 0;
731
732         feature_id = smu_feature_get_index(smu, mask);
733         if (feature_id < 0)
734                 return -EINVAL;
735
736         WARN_ON(feature_id > feature->feature_num);
737
738         mutex_lock(&feature->mutex);
739         if (enable)
740                 test_and_set_bit(feature_id, feature->supported);
741         else
742                 test_and_clear_bit(feature_id, feature->supported);
743         mutex_unlock(&feature->mutex);
744
745         return ret;
746 }
747
748 static int smu_set_funcs(struct amdgpu_device *adev)
749 {
750         struct smu_context *smu = &adev->smu;
751
752         if (adev->pm.pp_feature & PP_OVERDRIVE_MASK)
753                 smu->od_enabled = true;
754
755         switch (adev->asic_type) {
756         case CHIP_VEGA20:
757                 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
758                 vega20_set_ppt_funcs(smu);
759                 break;
760         case CHIP_NAVI10:
761         case CHIP_NAVI14:
762         case CHIP_NAVI12:
763                 navi10_set_ppt_funcs(smu);
764                 break;
765         case CHIP_ARCTURUS:
766                 adev->pm.pp_feature &= ~PP_GFXOFF_MASK;
767                 arcturus_set_ppt_funcs(smu);
768                 /* OD is not supported on Arcturus */
769                 smu->od_enabled =false;
770                 break;
771         case CHIP_RENOIR:
772                 renoir_set_ppt_funcs(smu);
773                 break;
774         default:
775                 return -EINVAL;
776         }
777
778         return 0;
779 }
780
781 static int smu_early_init(void *handle)
782 {
783         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
784         struct smu_context *smu = &adev->smu;
785
786         smu->adev = adev;
787         smu->pm_enabled = !!amdgpu_dpm;
788         smu->is_apu = false;
789         mutex_init(&smu->mutex);
790
791         return smu_set_funcs(adev);
792 }
793
794 static int smu_late_init(void *handle)
795 {
796         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
797         struct smu_context *smu = &adev->smu;
798
799         if (!smu->pm_enabled)
800                 return 0;
801
802         smu_handle_task(&adev->smu,
803                         smu->smu_dpm.dpm_level,
804                         AMD_PP_TASK_COMPLETE_INIT,
805                         false);
806
807         return 0;
808 }
809
810 int smu_get_atom_data_table(struct smu_context *smu, uint32_t table,
811                             uint16_t *size, uint8_t *frev, uint8_t *crev,
812                             uint8_t **addr)
813 {
814         struct amdgpu_device *adev = smu->adev;
815         uint16_t data_start;
816
817         if (!amdgpu_atom_parse_data_header(adev->mode_info.atom_context, table,
818                                            size, frev, crev, &data_start))
819                 return -EINVAL;
820
821         *addr = (uint8_t *)adev->mode_info.atom_context->bios + data_start;
822
823         return 0;
824 }
825
826 static int smu_initialize_pptable(struct smu_context *smu)
827 {
828         /* TODO */
829         return 0;
830 }
831
832 static int smu_smc_table_sw_init(struct smu_context *smu)
833 {
834         int ret;
835
836         ret = smu_initialize_pptable(smu);
837         if (ret) {
838                 pr_err("Failed to init smu_initialize_pptable!\n");
839                 return ret;
840         }
841
842         /**
843          * Create smu_table structure, and init smc tables such as
844          * TABLE_PPTABLE, TABLE_WATERMARKS, TABLE_SMU_METRICS, and etc.
845          */
846         ret = smu_init_smc_tables(smu);
847         if (ret) {
848                 pr_err("Failed to init smc tables!\n");
849                 return ret;
850         }
851
852         /**
853          * Create smu_power_context structure, and allocate smu_dpm_context and
854          * context size to fill the smu_power_context data.
855          */
856         ret = smu_init_power(smu);
857         if (ret) {
858                 pr_err("Failed to init smu_init_power!\n");
859                 return ret;
860         }
861
862         return 0;
863 }
864
865 static int smu_smc_table_sw_fini(struct smu_context *smu)
866 {
867         int ret;
868
869         ret = smu_fini_smc_tables(smu);
870         if (ret) {
871                 pr_err("Failed to smu_fini_smc_tables!\n");
872                 return ret;
873         }
874
875         return 0;
876 }
877
878 static int smu_sw_init(void *handle)
879 {
880         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
881         struct smu_context *smu = &adev->smu;
882         int ret;
883
884         smu->pool_size = adev->pm.smu_prv_buffer_size;
885         smu->smu_feature.feature_num = SMU_FEATURE_MAX;
886         mutex_init(&smu->smu_feature.mutex);
887         bitmap_zero(smu->smu_feature.supported, SMU_FEATURE_MAX);
888         bitmap_zero(smu->smu_feature.enabled, SMU_FEATURE_MAX);
889         bitmap_zero(smu->smu_feature.allowed, SMU_FEATURE_MAX);
890
891         mutex_init(&smu->smu_baco.mutex);
892         smu->smu_baco.state = SMU_BACO_STATE_EXIT;
893         smu->smu_baco.platform_support = false;
894
895         mutex_init(&smu->sensor_lock);
896         mutex_init(&smu->metrics_lock);
897
898         smu->watermarks_bitmap = 0;
899         smu->power_profile_mode = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
900         smu->default_power_profile_mode = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
901
902         smu->workload_mask = 1 << smu->workload_prority[PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT];
903         smu->workload_prority[PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT] = 0;
904         smu->workload_prority[PP_SMC_POWER_PROFILE_FULLSCREEN3D] = 1;
905         smu->workload_prority[PP_SMC_POWER_PROFILE_POWERSAVING] = 2;
906         smu->workload_prority[PP_SMC_POWER_PROFILE_VIDEO] = 3;
907         smu->workload_prority[PP_SMC_POWER_PROFILE_VR] = 4;
908         smu->workload_prority[PP_SMC_POWER_PROFILE_COMPUTE] = 5;
909         smu->workload_prority[PP_SMC_POWER_PROFILE_CUSTOM] = 6;
910
911         smu->workload_setting[0] = PP_SMC_POWER_PROFILE_BOOTUP_DEFAULT;
912         smu->workload_setting[1] = PP_SMC_POWER_PROFILE_FULLSCREEN3D;
913         smu->workload_setting[2] = PP_SMC_POWER_PROFILE_POWERSAVING;
914         smu->workload_setting[3] = PP_SMC_POWER_PROFILE_VIDEO;
915         smu->workload_setting[4] = PP_SMC_POWER_PROFILE_VR;
916         smu->workload_setting[5] = PP_SMC_POWER_PROFILE_COMPUTE;
917         smu->workload_setting[6] = PP_SMC_POWER_PROFILE_CUSTOM;
918         smu->display_config = &adev->pm.pm_display_cfg;
919
920         smu->smu_dpm.dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
921         smu->smu_dpm.requested_dpm_level = AMD_DPM_FORCED_LEVEL_AUTO;
922         ret = smu_init_microcode(smu);
923         if (ret) {
924                 pr_err("Failed to load smu firmware!\n");
925                 return ret;
926         }
927
928         ret = smu_smc_table_sw_init(smu);
929         if (ret) {
930                 pr_err("Failed to sw init smc table!\n");
931                 return ret;
932         }
933
934         ret = smu_register_irq_handler(smu);
935         if (ret) {
936                 pr_err("Failed to register smc irq handler!\n");
937                 return ret;
938         }
939
940         return 0;
941 }
942
943 static int smu_sw_fini(void *handle)
944 {
945         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
946         struct smu_context *smu = &adev->smu;
947         int ret;
948
949         kfree(smu->irq_source);
950         smu->irq_source = NULL;
951
952         ret = smu_smc_table_sw_fini(smu);
953         if (ret) {
954                 pr_err("Failed to sw fini smc table!\n");
955                 return ret;
956         }
957
958         ret = smu_fini_power(smu);
959         if (ret) {
960                 pr_err("Failed to init smu_fini_power!\n");
961                 return ret;
962         }
963
964         return 0;
965 }
966
967 static int smu_init_fb_allocations(struct smu_context *smu)
968 {
969         struct amdgpu_device *adev = smu->adev;
970         struct smu_table_context *smu_table = &smu->smu_table;
971         struct smu_table *tables = smu_table->tables;
972         struct smu_table *driver_table = &(smu_table->driver_table);
973         uint32_t max_table_size = 0;
974         int ret, i;
975
976         /* VRAM allocation for tool table */
977         if (tables[SMU_TABLE_PMSTATUSLOG].size) {
978                 ret = amdgpu_bo_create_kernel(adev,
979                                               tables[SMU_TABLE_PMSTATUSLOG].size,
980                                               tables[SMU_TABLE_PMSTATUSLOG].align,
981                                               tables[SMU_TABLE_PMSTATUSLOG].domain,
982                                               &tables[SMU_TABLE_PMSTATUSLOG].bo,
983                                               &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
984                                               &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
985                 if (ret) {
986                         pr_err("VRAM allocation for tool table failed!\n");
987                         return ret;
988                 }
989         }
990
991         /* VRAM allocation for driver table */
992         for (i = 0; i < SMU_TABLE_COUNT; i++) {
993                 if (tables[i].size == 0)
994                         continue;
995
996                 if (i == SMU_TABLE_PMSTATUSLOG)
997                         continue;
998
999                 if (max_table_size < tables[i].size)
1000                         max_table_size = tables[i].size;
1001         }
1002
1003         driver_table->size = max_table_size;
1004         driver_table->align = PAGE_SIZE;
1005         driver_table->domain = AMDGPU_GEM_DOMAIN_VRAM;
1006
1007         ret = amdgpu_bo_create_kernel(adev,
1008                                       driver_table->size,
1009                                       driver_table->align,
1010                                       driver_table->domain,
1011                                       &driver_table->bo,
1012                                       &driver_table->mc_address,
1013                                       &driver_table->cpu_addr);
1014         if (ret) {
1015                 pr_err("VRAM allocation for driver table failed!\n");
1016                 if (tables[SMU_TABLE_PMSTATUSLOG].mc_address)
1017                         amdgpu_bo_free_kernel(&tables[SMU_TABLE_PMSTATUSLOG].bo,
1018                                               &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
1019                                               &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
1020         }
1021
1022         return ret;
1023 }
1024
1025 static int smu_fini_fb_allocations(struct smu_context *smu)
1026 {
1027         struct smu_table_context *smu_table = &smu->smu_table;
1028         struct smu_table *tables = smu_table->tables;
1029         struct smu_table *driver_table = &(smu_table->driver_table);
1030
1031         if (!tables)
1032                 return 0;
1033
1034         if (tables[SMU_TABLE_PMSTATUSLOG].mc_address)
1035                 amdgpu_bo_free_kernel(&tables[SMU_TABLE_PMSTATUSLOG].bo,
1036                                       &tables[SMU_TABLE_PMSTATUSLOG].mc_address,
1037                                       &tables[SMU_TABLE_PMSTATUSLOG].cpu_addr);
1038
1039         amdgpu_bo_free_kernel(&driver_table->bo,
1040                               &driver_table->mc_address,
1041                               &driver_table->cpu_addr);
1042
1043         return 0;
1044 }
1045
1046 static int smu_smc_table_hw_init(struct smu_context *smu,
1047                                  bool initialize)
1048 {
1049         struct amdgpu_device *adev = smu->adev;
1050         int ret;
1051
1052         if (smu_is_dpm_running(smu) && adev->in_suspend) {
1053                 pr_info("dpm has been enabled\n");
1054                 return 0;
1055         }
1056
1057         if (adev->asic_type != CHIP_ARCTURUS) {
1058                 ret = smu_init_display_count(smu, 0);
1059                 if (ret)
1060                         return ret;
1061         }
1062
1063         if (initialize) {
1064                 /* get boot_values from vbios to set revision, gfxclk, and etc. */
1065                 ret = smu_get_vbios_bootup_values(smu);
1066                 if (ret)
1067                         return ret;
1068
1069                 ret = smu_setup_pptable(smu);
1070                 if (ret)
1071                         return ret;
1072
1073                 ret = smu_get_clk_info_from_vbios(smu);
1074                 if (ret)
1075                         return ret;
1076
1077                 /*
1078                  * check if the format_revision in vbios is up to pptable header
1079                  * version, and the structure size is not 0.
1080                  */
1081                 ret = smu_check_pptable(smu);
1082                 if (ret)
1083                         return ret;
1084
1085                 /*
1086                  * allocate vram bos to store smc table contents.
1087                  */
1088                 ret = smu_init_fb_allocations(smu);
1089                 if (ret)
1090                         return ret;
1091
1092                 /*
1093                  * Parse pptable format and fill PPTable_t smc_pptable to
1094                  * smu_table_context structure. And read the smc_dpm_table from vbios,
1095                  * then fill it into smc_pptable.
1096                  */
1097                 ret = smu_parse_pptable(smu);
1098                 if (ret)
1099                         return ret;
1100
1101                 /*
1102                  * Send msg GetDriverIfVersion to check if the return value is equal
1103                  * with DRIVER_IF_VERSION of smc header.
1104                  */
1105                 ret = smu_check_fw_version(smu);
1106                 if (ret)
1107                         return ret;
1108         }
1109
1110         /* smu_dump_pptable(smu); */
1111         if (!amdgpu_sriov_vf(adev)) {
1112                 ret = smu_set_driver_table_location(smu);
1113                 if (ret)
1114                         return ret;
1115
1116                 /*
1117                  * Copy pptable bo in the vram to smc with SMU MSGs such as
1118                  * SetDriverDramAddr and TransferTableDram2Smu.
1119                  */
1120                 ret = smu_write_pptable(smu);
1121                 if (ret)
1122                         return ret;
1123
1124                 /* issue Run*Btc msg */
1125                 ret = smu_run_btc(smu);
1126                 if (ret)
1127                         return ret;
1128                 ret = smu_feature_set_allowed_mask(smu);
1129                 if (ret)
1130                         return ret;
1131
1132                 ret = smu_system_features_control(smu, true);
1133                 if (ret)
1134                         return ret;
1135         }
1136         if (adev->asic_type != CHIP_ARCTURUS) {
1137                 ret = smu_notify_display_change(smu);
1138                 if (ret)
1139                         return ret;
1140
1141                 /*
1142                  * Set min deep sleep dce fclk with bootup value from vbios via
1143                  * SetMinDeepSleepDcefclk MSG.
1144                  */
1145                 ret = smu_set_min_dcef_deep_sleep(smu);
1146                 if (ret)
1147                         return ret;
1148         }
1149
1150         /*
1151          * Set initialized values (get from vbios) to dpm tables context such as
1152          * gfxclk, memclk, dcefclk, and etc. And enable the DPM feature for each
1153          * type of clks.
1154          */
1155         if (initialize) {
1156                 ret = smu_populate_smc_tables(smu);
1157                 if (ret)
1158                         return ret;
1159
1160                 ret = smu_init_max_sustainable_clocks(smu);
1161                 if (ret)
1162                         return ret;
1163         }
1164
1165         if (adev->asic_type != CHIP_ARCTURUS) {
1166                 ret = smu_override_pcie_parameters(smu);
1167                 if (ret)
1168                         return ret;
1169         }
1170
1171         ret = smu_set_default_od_settings(smu, initialize);
1172         if (ret)
1173                 return ret;
1174
1175         if (initialize) {
1176                 ret = smu_populate_umd_state_clk(smu);
1177                 if (ret)
1178                         return ret;
1179
1180                 ret = smu_get_power_limit(smu, &smu->default_power_limit, false, false);
1181                 if (ret)
1182                         return ret;
1183         }
1184
1185         /*
1186          * Set PMSTATUSLOG table bo address with SetToolsDramAddr MSG for tools.
1187          */
1188         if (!amdgpu_sriov_vf(adev)) {
1189                 ret = smu_set_tool_table_location(smu);
1190         }
1191         if (!smu_is_dpm_running(smu))
1192                 pr_info("dpm has been disabled\n");
1193
1194         return ret;
1195 }
1196
1197 /**
1198  * smu_alloc_memory_pool - allocate memory pool in the system memory
1199  *
1200  * @smu: amdgpu_device pointer
1201  *
1202  * This memory pool will be used for SMC use and msg SetSystemVirtualDramAddr
1203  * and DramLogSetDramAddr can notify it changed.
1204  *
1205  * Returns 0 on success, error on failure.
1206  */
1207 static int smu_alloc_memory_pool(struct smu_context *smu)
1208 {
1209         struct amdgpu_device *adev = smu->adev;
1210         struct smu_table_context *smu_table = &smu->smu_table;
1211         struct smu_table *memory_pool = &smu_table->memory_pool;
1212         uint64_t pool_size = smu->pool_size;
1213         int ret = 0;
1214
1215         if (pool_size == SMU_MEMORY_POOL_SIZE_ZERO)
1216                 return ret;
1217
1218         memory_pool->size = pool_size;
1219         memory_pool->align = PAGE_SIZE;
1220         memory_pool->domain = AMDGPU_GEM_DOMAIN_GTT;
1221
1222         switch (pool_size) {
1223         case SMU_MEMORY_POOL_SIZE_256_MB:
1224         case SMU_MEMORY_POOL_SIZE_512_MB:
1225         case SMU_MEMORY_POOL_SIZE_1_GB:
1226         case SMU_MEMORY_POOL_SIZE_2_GB:
1227                 ret = amdgpu_bo_create_kernel(adev,
1228                                               memory_pool->size,
1229                                               memory_pool->align,
1230                                               memory_pool->domain,
1231                                               &memory_pool->bo,
1232                                               &memory_pool->mc_address,
1233                                               &memory_pool->cpu_addr);
1234                 break;
1235         default:
1236                 break;
1237         }
1238
1239         return ret;
1240 }
1241
1242 static int smu_free_memory_pool(struct smu_context *smu)
1243 {
1244         struct smu_table_context *smu_table = &smu->smu_table;
1245         struct smu_table *memory_pool = &smu_table->memory_pool;
1246
1247         if (memory_pool->size == SMU_MEMORY_POOL_SIZE_ZERO)
1248                 return 0;
1249
1250         amdgpu_bo_free_kernel(&memory_pool->bo,
1251                               &memory_pool->mc_address,
1252                               &memory_pool->cpu_addr);
1253
1254         memset(memory_pool, 0, sizeof(struct smu_table));
1255
1256         return 0;
1257 }
1258
1259 static int smu_start_smc_engine(struct smu_context *smu)
1260 {
1261         struct amdgpu_device *adev = smu->adev;
1262         int ret = 0;
1263
1264         if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
1265                 if (adev->asic_type < CHIP_NAVI10) {
1266                         if (smu->ppt_funcs->load_microcode) {
1267                                 ret = smu->ppt_funcs->load_microcode(smu);
1268                                 if (ret)
1269                                         return ret;
1270                         }
1271                 }
1272         }
1273
1274         if (smu->ppt_funcs->check_fw_status) {
1275                 ret = smu->ppt_funcs->check_fw_status(smu);
1276                 if (ret)
1277                         pr_err("SMC is not ready\n");
1278         }
1279
1280         return ret;
1281 }
1282
1283 static int smu_hw_init(void *handle)
1284 {
1285         int ret;
1286         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1287         struct smu_context *smu = &adev->smu;
1288
1289         ret = smu_start_smc_engine(smu);
1290         if (ret) {
1291                 pr_err("SMU is not ready yet!\n");
1292                 return ret;
1293         }
1294
1295         if (smu->is_apu) {
1296                 smu_powergate_sdma(&adev->smu, false);
1297                 smu_powergate_vcn(&adev->smu, false);
1298                 smu_powergate_jpeg(&adev->smu, false);
1299                 smu_set_gfx_cgpg(&adev->smu, true);
1300         }
1301
1302         if (amdgpu_sriov_vf(adev) && !amdgpu_sriov_is_pp_one_vf(adev))
1303                 return 0;
1304
1305         if (!smu->pm_enabled)
1306                 return 0;
1307
1308         ret = smu_feature_init_dpm(smu);
1309         if (ret)
1310                 goto failed;
1311
1312         ret = smu_smc_table_hw_init(smu, true);
1313         if (ret)
1314                 goto failed;
1315
1316         ret = smu_alloc_memory_pool(smu);
1317         if (ret)
1318                 goto failed;
1319
1320         /*
1321          * Use msg SetSystemVirtualDramAddr and DramLogSetDramAddr can notify
1322          * pool location.
1323          */
1324         ret = smu_notify_memory_pool_location(smu);
1325         if (ret)
1326                 goto failed;
1327
1328         ret = smu_start_thermal_control(smu);
1329         if (ret)
1330                 goto failed;
1331
1332         if (!smu->pm_enabled)
1333                 adev->pm.dpm_enabled = false;
1334         else
1335                 adev->pm.dpm_enabled = true;    /* TODO: will set dpm_enabled flag while VCN and DAL DPM is workable */
1336
1337         pr_info("SMU is initialized successfully!\n");
1338
1339         return 0;
1340
1341 failed:
1342         return ret;
1343 }
1344
1345 static int smu_stop_dpms(struct smu_context *smu)
1346 {
1347         return smu_system_features_control(smu, false);
1348 }
1349
1350 static int smu_hw_fini(void *handle)
1351 {
1352         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1353         struct smu_context *smu = &adev->smu;
1354         struct smu_table_context *table_context = &smu->smu_table;
1355         int ret = 0;
1356
1357         if (amdgpu_sriov_vf(adev)&& !amdgpu_sriov_is_pp_one_vf(adev))
1358                 return 0;
1359
1360         if (smu->is_apu) {
1361                 smu_powergate_sdma(&adev->smu, true);
1362                 smu_powergate_vcn(&adev->smu, true);
1363                 smu_powergate_jpeg(&adev->smu, true);
1364         }
1365
1366         if (!smu->pm_enabled)
1367                 return 0;
1368
1369         if (!amdgpu_sriov_vf(adev)){
1370                 ret = smu_stop_thermal_control(smu);
1371                 if (ret) {
1372                         pr_warn("Fail to stop thermal control!\n");
1373                         return ret;
1374                 }
1375
1376                 /*
1377                  * For custom pptable uploading, skip the DPM features
1378                  * disable process on Navi1x ASICs.
1379                  *   - As the gfx related features are under control of
1380                  *     RLC on those ASICs. RLC reinitialization will be
1381                  *     needed to reenable them. That will cost much more
1382                  *     efforts.
1383                  *
1384                  *   - SMU firmware can handle the DPM reenablement
1385                  *     properly.
1386                  */
1387                 if (!smu->uploading_custom_pp_table ||
1388                                 !((adev->asic_type >= CHIP_NAVI10) &&
1389                                         (adev->asic_type <= CHIP_NAVI12))) {
1390                         ret = smu_stop_dpms(smu);
1391                         if (ret) {
1392                                 pr_warn("Fail to stop Dpms!\n");
1393                                 return ret;
1394                         }
1395                 }
1396         }
1397
1398         kfree(table_context->driver_pptable);
1399         table_context->driver_pptable = NULL;
1400
1401         kfree(table_context->max_sustainable_clocks);
1402         table_context->max_sustainable_clocks = NULL;
1403
1404         kfree(table_context->overdrive_table);
1405         table_context->overdrive_table = NULL;
1406
1407         ret = smu_fini_fb_allocations(smu);
1408         if (ret)
1409                 return ret;
1410
1411         ret = smu_free_memory_pool(smu);
1412         if (ret)
1413                 return ret;
1414
1415         return 0;
1416 }
1417
1418 int smu_reset(struct smu_context *smu)
1419 {
1420         struct amdgpu_device *adev = smu->adev;
1421         int ret = 0;
1422
1423         ret = smu_hw_fini(adev);
1424         if (ret)
1425                 return ret;
1426
1427         ret = smu_hw_init(adev);
1428         if (ret)
1429                 return ret;
1430
1431         return ret;
1432 }
1433
1434 static int smu_suspend(void *handle)
1435 {
1436         int ret;
1437         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1438         struct smu_context *smu = &adev->smu;
1439         bool baco_feature_is_enabled = false;
1440
1441         if (!smu->pm_enabled)
1442                 return 0;
1443
1444         if(!smu->is_apu)
1445                 baco_feature_is_enabled = smu_feature_is_enabled(smu, SMU_FEATURE_BACO_BIT);
1446
1447         ret = smu_system_features_control(smu, false);
1448         if (ret)
1449                 return ret;
1450
1451         if (baco_feature_is_enabled) {
1452                 ret = smu_feature_set_enabled(smu, SMU_FEATURE_BACO_BIT, true);
1453                 if (ret) {
1454                         pr_warn("set BACO feature enabled failed, return %d\n", ret);
1455                         return ret;
1456                 }
1457         }
1458
1459         smu->watermarks_bitmap &= ~(WATERMARKS_LOADED);
1460
1461         if (adev->asic_type >= CHIP_NAVI10 &&
1462             adev->gfx.rlc.funcs->stop)
1463                 adev->gfx.rlc.funcs->stop(adev);
1464         if (smu->is_apu)
1465                 smu_set_gfx_cgpg(&adev->smu, false);
1466
1467         return 0;
1468 }
1469
1470 static int smu_resume(void *handle)
1471 {
1472         int ret;
1473         struct amdgpu_device *adev = (struct amdgpu_device *)handle;
1474         struct smu_context *smu = &adev->smu;
1475
1476         if (amdgpu_sriov_vf(adev)&& !amdgpu_sriov_is_pp_one_vf(adev))
1477                 return 0;
1478
1479         if (!smu->pm_enabled)
1480                 return 0;
1481
1482         pr_info("SMU is resuming...\n");
1483
1484         ret = smu_start_smc_engine(smu);
1485         if (ret) {
1486                 pr_err("SMU is not ready yet!\n");
1487                 goto failed;
1488         }
1489
1490         ret = smu_smc_table_hw_init(smu, false);
1491         if (ret)
1492                 goto failed;
1493
1494         ret = smu_start_thermal_control(smu);
1495         if (ret)
1496                 goto failed;
1497
1498         if (smu->is_apu)
1499                 smu_set_gfx_cgpg(&adev->smu, true);
1500
1501         smu->disable_uclk_switch = 0;
1502
1503         pr_info("SMU is resumed successfully!\n");
1504
1505         return 0;
1506
1507 failed:
1508         return ret;
1509 }
1510
1511 int smu_display_configuration_change(struct smu_context *smu,
1512                                      const struct amd_pp_display_configuration *display_config)
1513 {
1514         int index = 0;
1515         int num_of_active_display = 0;
1516
1517         if (!smu->pm_enabled || !is_support_sw_smu(smu->adev))
1518                 return -EINVAL;
1519
1520         if (!display_config)
1521                 return -EINVAL;
1522
1523         mutex_lock(&smu->mutex);
1524
1525         if (smu->ppt_funcs->set_deep_sleep_dcefclk)
1526                 smu->ppt_funcs->set_deep_sleep_dcefclk(smu,
1527                                 display_config->min_dcef_deep_sleep_set_clk / 100);
1528
1529         for (index = 0; index < display_config->num_path_including_non_display; index++) {
1530                 if (display_config->displays[index].controller_id != 0)
1531                         num_of_active_display++;
1532         }
1533
1534         smu_set_active_display_count(smu, num_of_active_display);
1535
1536         smu_store_cc6_data(smu, display_config->cpu_pstate_separation_time,
1537                            display_config->cpu_cc6_disable,
1538                            display_config->cpu_pstate_disable,
1539                            display_config->nb_pstate_switch_disable);
1540
1541         mutex_unlock(&smu->mutex);
1542
1543         return 0;
1544 }
1545
1546 static int smu_get_clock_info(struct smu_context *smu,
1547                               struct smu_clock_info *clk_info,
1548                               enum smu_perf_level_designation designation)
1549 {
1550         int ret;
1551         struct smu_performance_level level = {0};
1552
1553         if (!clk_info)
1554                 return -EINVAL;
1555
1556         ret = smu_get_perf_level(smu, PERF_LEVEL_ACTIVITY, &level);
1557         if (ret)
1558                 return -EINVAL;
1559
1560         clk_info->min_mem_clk = level.memory_clock;
1561         clk_info->min_eng_clk = level.core_clock;
1562         clk_info->min_bus_bandwidth = level.non_local_mem_freq * level.non_local_mem_width;
1563
1564         ret = smu_get_perf_level(smu, designation, &level);
1565         if (ret)
1566                 return -EINVAL;
1567
1568         clk_info->min_mem_clk = level.memory_clock;
1569         clk_info->min_eng_clk = level.core_clock;
1570         clk_info->min_bus_bandwidth = level.non_local_mem_freq * level.non_local_mem_width;
1571
1572         return 0;
1573 }
1574
1575 int smu_get_current_clocks(struct smu_context *smu,
1576                            struct amd_pp_clock_info *clocks)
1577 {
1578         struct amd_pp_simple_clock_info simple_clocks = {0};
1579         struct smu_clock_info hw_clocks;
1580         int ret = 0;
1581
1582         if (!is_support_sw_smu(smu->adev))
1583                 return -EINVAL;
1584
1585         mutex_lock(&smu->mutex);
1586
1587         smu_get_dal_power_level(smu, &simple_clocks);
1588
1589         if (smu->support_power_containment)
1590                 ret = smu_get_clock_info(smu, &hw_clocks,
1591                                          PERF_LEVEL_POWER_CONTAINMENT);
1592         else
1593                 ret = smu_get_clock_info(smu, &hw_clocks, PERF_LEVEL_ACTIVITY);
1594
1595         if (ret) {
1596                 pr_err("Error in smu_get_clock_info\n");
1597                 goto failed;
1598         }
1599
1600         clocks->min_engine_clock = hw_clocks.min_eng_clk;
1601         clocks->max_engine_clock = hw_clocks.max_eng_clk;
1602         clocks->min_memory_clock = hw_clocks.min_mem_clk;
1603         clocks->max_memory_clock = hw_clocks.max_mem_clk;
1604         clocks->min_bus_bandwidth = hw_clocks.min_bus_bandwidth;
1605         clocks->max_bus_bandwidth = hw_clocks.max_bus_bandwidth;
1606         clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
1607         clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;
1608
1609         if (simple_clocks.level == 0)
1610                 clocks->max_clocks_state = PP_DAL_POWERLEVEL_7;
1611         else
1612                 clocks->max_clocks_state = simple_clocks.level;
1613
1614         if (!smu_get_current_shallow_sleep_clocks(smu, &hw_clocks)) {
1615                 clocks->max_engine_clock_in_sr = hw_clocks.max_eng_clk;
1616                 clocks->min_engine_clock_in_sr = hw_clocks.min_eng_clk;
1617         }
1618
1619 failed:
1620         mutex_unlock(&smu->mutex);
1621         return ret;
1622 }
1623
1624 static int smu_set_clockgating_state(void *handle,
1625                                      enum amd_clockgating_state state)
1626 {
1627         return 0;
1628 }
1629
1630 static int smu_set_powergating_state(void *handle,
1631                                      enum amd_powergating_state state)
1632 {
1633         return 0;
1634 }
1635
1636 static int smu_enable_umd_pstate(void *handle,
1637                       enum amd_dpm_forced_level *level)
1638 {
1639         uint32_t profile_mode_mask = AMD_DPM_FORCED_LEVEL_PROFILE_STANDARD |
1640                                         AMD_DPM_FORCED_LEVEL_PROFILE_MIN_SCLK |
1641                                         AMD_DPM_FORCED_LEVEL_PROFILE_MIN_MCLK |
1642                                         AMD_DPM_FORCED_LEVEL_PROFILE_PEAK;
1643
1644         struct smu_context *smu = (struct smu_context*)(handle);
1645         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1646
1647         if (!smu->is_apu && (!smu->pm_enabled || !smu_dpm_ctx->dpm_context))
1648                 return -EINVAL;
1649
1650         if (!(smu_dpm_ctx->dpm_level & profile_mode_mask)) {
1651                 /* enter umd pstate, save current level, disable gfx cg*/
1652                 if (*level & profile_mode_mask) {
1653                         smu_dpm_ctx->saved_dpm_level = smu_dpm_ctx->dpm_level;
1654                         smu_dpm_ctx->enable_umd_pstate = true;
1655                         amdgpu_device_ip_set_clockgating_state(smu->adev,
1656                                                                AMD_IP_BLOCK_TYPE_GFX,
1657                                                                AMD_CG_STATE_UNGATE);
1658                         amdgpu_device_ip_set_powergating_state(smu->adev,
1659                                                                AMD_IP_BLOCK_TYPE_GFX,
1660                                                                AMD_PG_STATE_UNGATE);
1661                 }
1662         } else {
1663                 /* exit umd pstate, restore level, enable gfx cg*/
1664                 if (!(*level & profile_mode_mask)) {
1665                         if (*level == AMD_DPM_FORCED_LEVEL_PROFILE_EXIT)
1666                                 *level = smu_dpm_ctx->saved_dpm_level;
1667                         smu_dpm_ctx->enable_umd_pstate = false;
1668                         amdgpu_device_ip_set_clockgating_state(smu->adev,
1669                                                                AMD_IP_BLOCK_TYPE_GFX,
1670                                                                AMD_CG_STATE_GATE);
1671                         amdgpu_device_ip_set_powergating_state(smu->adev,
1672                                                                AMD_IP_BLOCK_TYPE_GFX,
1673                                                                AMD_PG_STATE_GATE);
1674                 }
1675         }
1676
1677         return 0;
1678 }
1679
1680 int smu_adjust_power_state_dynamic(struct smu_context *smu,
1681                                    enum amd_dpm_forced_level level,
1682                                    bool skip_display_settings)
1683 {
1684         int ret = 0;
1685         int index = 0;
1686         long workload;
1687         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1688
1689         if (!smu->pm_enabled)
1690                 return -EINVAL;
1691
1692         if (!skip_display_settings) {
1693                 ret = smu_display_config_changed(smu);
1694                 if (ret) {
1695                         pr_err("Failed to change display config!");
1696                         return ret;
1697                 }
1698         }
1699
1700         ret = smu_apply_clocks_adjust_rules(smu);
1701         if (ret) {
1702                 pr_err("Failed to apply clocks adjust rules!");
1703                 return ret;
1704         }
1705
1706         if (!skip_display_settings) {
1707                 ret = smu_notify_smc_display_config(smu);
1708                 if (ret) {
1709                         pr_err("Failed to notify smc display config!");
1710                         return ret;
1711                 }
1712         }
1713
1714         if (smu_dpm_ctx->dpm_level != level) {
1715                 ret = smu_asic_set_performance_level(smu, level);
1716                 if (ret) {
1717                         pr_err("Failed to set performance level!");
1718                         return ret;
1719                 }
1720
1721                 /* update the saved copy */
1722                 smu_dpm_ctx->dpm_level = level;
1723         }
1724
1725         if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
1726                 index = fls(smu->workload_mask);
1727                 index = index > 0 && index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
1728                 workload = smu->workload_setting[index];
1729
1730                 if (smu->power_profile_mode != workload)
1731                         smu_set_power_profile_mode(smu, &workload, 0, false);
1732         }
1733
1734         return ret;
1735 }
1736
1737 int smu_handle_task(struct smu_context *smu,
1738                     enum amd_dpm_forced_level level,
1739                     enum amd_pp_task task_id,
1740                     bool lock_needed)
1741 {
1742         int ret = 0;
1743
1744         if (lock_needed)
1745                 mutex_lock(&smu->mutex);
1746
1747         switch (task_id) {
1748         case AMD_PP_TASK_DISPLAY_CONFIG_CHANGE:
1749                 ret = smu_pre_display_config_changed(smu);
1750                 if (ret)
1751                         goto out;
1752                 ret = smu_set_cpu_power_state(smu);
1753                 if (ret)
1754                         goto out;
1755                 ret = smu_adjust_power_state_dynamic(smu, level, false);
1756                 break;
1757         case AMD_PP_TASK_COMPLETE_INIT:
1758         case AMD_PP_TASK_READJUST_POWER_STATE:
1759                 ret = smu_adjust_power_state_dynamic(smu, level, true);
1760                 break;
1761         default:
1762                 break;
1763         }
1764
1765 out:
1766         if (lock_needed)
1767                 mutex_unlock(&smu->mutex);
1768
1769         return ret;
1770 }
1771
1772 int smu_switch_power_profile(struct smu_context *smu,
1773                              enum PP_SMC_POWER_PROFILE type,
1774                              bool en)
1775 {
1776         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1777         long workload;
1778         uint32_t index;
1779
1780         if (!smu->pm_enabled)
1781                 return -EINVAL;
1782
1783         if (!(type < PP_SMC_POWER_PROFILE_CUSTOM))
1784                 return -EINVAL;
1785
1786         mutex_lock(&smu->mutex);
1787
1788         if (!en) {
1789                 smu->workload_mask &= ~(1 << smu->workload_prority[type]);
1790                 index = fls(smu->workload_mask);
1791                 index = index > 0 && index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
1792                 workload = smu->workload_setting[index];
1793         } else {
1794                 smu->workload_mask |= (1 << smu->workload_prority[type]);
1795                 index = fls(smu->workload_mask);
1796                 index = index <= WORKLOAD_POLICY_MAX ? index - 1 : 0;
1797                 workload = smu->workload_setting[index];
1798         }
1799
1800         if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL)
1801                 smu_set_power_profile_mode(smu, &workload, 0, false);
1802
1803         mutex_unlock(&smu->mutex);
1804
1805         return 0;
1806 }
1807
1808 enum amd_dpm_forced_level smu_get_performance_level(struct smu_context *smu)
1809 {
1810         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1811         enum amd_dpm_forced_level level;
1812
1813         if (!smu->is_apu && !smu_dpm_ctx->dpm_context)
1814                 return -EINVAL;
1815
1816         mutex_lock(&(smu->mutex));
1817         level = smu_dpm_ctx->dpm_level;
1818         mutex_unlock(&(smu->mutex));
1819
1820         return level;
1821 }
1822
1823 int smu_force_performance_level(struct smu_context *smu, enum amd_dpm_forced_level level)
1824 {
1825         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1826         int ret = 0;
1827
1828         if (!smu->is_apu && !smu_dpm_ctx->dpm_context)
1829                 return -EINVAL;
1830
1831         mutex_lock(&smu->mutex);
1832
1833         ret = smu_enable_umd_pstate(smu, &level);
1834         if (ret) {
1835                 mutex_unlock(&smu->mutex);
1836                 return ret;
1837         }
1838
1839         ret = smu_handle_task(smu, level,
1840                               AMD_PP_TASK_READJUST_POWER_STATE,
1841                               false);
1842
1843         mutex_unlock(&smu->mutex);
1844
1845         return ret;
1846 }
1847
1848 int smu_set_display_count(struct smu_context *smu, uint32_t count)
1849 {
1850         int ret = 0;
1851
1852         mutex_lock(&smu->mutex);
1853         ret = smu_init_display_count(smu, count);
1854         mutex_unlock(&smu->mutex);
1855
1856         return ret;
1857 }
1858
1859 int smu_force_clk_levels(struct smu_context *smu,
1860                          enum smu_clk_type clk_type,
1861                          uint32_t mask,
1862                          bool lock_needed)
1863 {
1864         struct smu_dpm_context *smu_dpm_ctx = &(smu->smu_dpm);
1865         int ret = 0;
1866
1867         if (smu_dpm_ctx->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL) {
1868                 pr_debug("force clock level is for dpm manual mode only.\n");
1869                 return -EINVAL;
1870         }
1871
1872         if (lock_needed)
1873                 mutex_lock(&smu->mutex);
1874
1875         if (smu->ppt_funcs && smu->ppt_funcs->force_clk_levels)
1876                 ret = smu->ppt_funcs->force_clk_levels(smu, clk_type, mask);
1877
1878         if (lock_needed)
1879                 mutex_unlock(&smu->mutex);
1880
1881         return ret;
1882 }
1883
1884 int smu_set_mp1_state(struct smu_context *smu,
1885                       enum pp_mp1_state mp1_state)
1886 {
1887         uint16_t msg;
1888         int ret;
1889
1890         /*
1891          * The SMC is not fully ready. That may be
1892          * expected as the IP may be masked.
1893          * So, just return without error.
1894          */
1895         if (!smu->pm_enabled)
1896                 return 0;
1897
1898         mutex_lock(&smu->mutex);
1899
1900         switch (mp1_state) {
1901         case PP_MP1_STATE_SHUTDOWN:
1902                 msg = SMU_MSG_PrepareMp1ForShutdown;
1903                 break;
1904         case PP_MP1_STATE_UNLOAD:
1905                 msg = SMU_MSG_PrepareMp1ForUnload;
1906                 break;
1907         case PP_MP1_STATE_RESET:
1908                 msg = SMU_MSG_PrepareMp1ForReset;
1909                 break;
1910         case PP_MP1_STATE_NONE:
1911         default:
1912                 mutex_unlock(&smu->mutex);
1913                 return 0;
1914         }
1915
1916         /* some asics may not support those messages */
1917         if (smu_msg_get_index(smu, msg) < 0) {
1918                 mutex_unlock(&smu->mutex);
1919                 return 0;
1920         }
1921
1922         ret = smu_send_smc_msg(smu, msg);
1923         if (ret)
1924                 pr_err("[PrepareMp1] Failed!\n");
1925
1926         mutex_unlock(&smu->mutex);
1927
1928         return ret;
1929 }
1930
1931 int smu_set_df_cstate(struct smu_context *smu,
1932                       enum pp_df_cstate state)
1933 {
1934         int ret = 0;
1935
1936         /*
1937          * The SMC is not fully ready. That may be
1938          * expected as the IP may be masked.
1939          * So, just return without error.
1940          */
1941         if (!smu->pm_enabled)
1942                 return 0;
1943
1944         if (!smu->ppt_funcs || !smu->ppt_funcs->set_df_cstate)
1945                 return 0;
1946
1947         mutex_lock(&smu->mutex);
1948
1949         ret = smu->ppt_funcs->set_df_cstate(smu, state);
1950         if (ret)
1951                 pr_err("[SetDfCstate] failed!\n");
1952
1953         mutex_unlock(&smu->mutex);
1954
1955         return ret;
1956 }
1957
1958 int smu_write_watermarks_table(struct smu_context *smu)
1959 {
1960         void *watermarks_table = smu->smu_table.watermarks_table;
1961
1962         if (!watermarks_table)
1963                 return -EINVAL;
1964
1965         return smu_update_table(smu,
1966                                 SMU_TABLE_WATERMARKS,
1967                                 0,
1968                                 watermarks_table,
1969                                 true);
1970 }
1971
1972 int smu_set_watermarks_for_clock_ranges(struct smu_context *smu,
1973                 struct dm_pp_wm_sets_with_clock_ranges_soc15 *clock_ranges)
1974 {
1975         void *table = smu->smu_table.watermarks_table;
1976
1977         if (!table)
1978                 return -EINVAL;
1979
1980         mutex_lock(&smu->mutex);
1981
1982         if (!smu->disable_watermark &&
1983                         smu_feature_is_enabled(smu, SMU_FEATURE_DPM_DCEFCLK_BIT) &&
1984                         smu_feature_is_enabled(smu, SMU_FEATURE_DPM_SOCCLK_BIT)) {
1985                 smu_set_watermarks_table(smu, table, clock_ranges);
1986                 smu->watermarks_bitmap |= WATERMARKS_EXIST;
1987                 smu->watermarks_bitmap &= ~WATERMARKS_LOADED;
1988         }
1989
1990         mutex_unlock(&smu->mutex);
1991
1992         return 0;
1993 }
1994
1995 const struct amd_ip_funcs smu_ip_funcs = {
1996         .name = "smu",
1997         .early_init = smu_early_init,
1998         .late_init = smu_late_init,
1999         .sw_init = smu_sw_init,
2000         .sw_fini = smu_sw_fini,
2001         .hw_init = smu_hw_init,
2002         .hw_fini = smu_hw_fini,
2003         .suspend = smu_suspend,
2004         .resume = smu_resume,
2005         .is_idle = NULL,
2006         .check_soft_reset = NULL,
2007         .wait_for_idle = NULL,
2008         .soft_reset = NULL,
2009         .set_clockgating_state = smu_set_clockgating_state,
2010         .set_powergating_state = smu_set_powergating_state,
2011         .enable_umd_pstate = smu_enable_umd_pstate,
2012 };
2013
2014 const struct amdgpu_ip_block_version smu_v11_0_ip_block =
2015 {
2016         .type = AMD_IP_BLOCK_TYPE_SMC,
2017         .major = 11,
2018         .minor = 0,
2019         .rev = 0,
2020         .funcs = &smu_ip_funcs,
2021 };
2022
2023 const struct amdgpu_ip_block_version smu_v12_0_ip_block =
2024 {
2025         .type = AMD_IP_BLOCK_TYPE_SMC,
2026         .major = 12,
2027         .minor = 0,
2028         .rev = 0,
2029         .funcs = &smu_ip_funcs,
2030 };
2031
2032 int smu_load_microcode(struct smu_context *smu)
2033 {
2034         int ret = 0;
2035
2036         mutex_lock(&smu->mutex);
2037
2038         if (smu->ppt_funcs->load_microcode)
2039                 ret = smu->ppt_funcs->load_microcode(smu);
2040
2041         mutex_unlock(&smu->mutex);
2042
2043         return ret;
2044 }
2045
2046 int smu_check_fw_status(struct smu_context *smu)
2047 {
2048         int ret = 0;
2049
2050         mutex_lock(&smu->mutex);
2051
2052         if (smu->ppt_funcs->check_fw_status)
2053                 ret = smu->ppt_funcs->check_fw_status(smu);
2054
2055         mutex_unlock(&smu->mutex);
2056
2057         return ret;
2058 }
2059
2060 int smu_set_gfx_cgpg(struct smu_context *smu, bool enabled)
2061 {
2062         int ret = 0;
2063
2064         mutex_lock(&smu->mutex);
2065
2066         if (smu->ppt_funcs->set_gfx_cgpg)
2067                 ret = smu->ppt_funcs->set_gfx_cgpg(smu, enabled);
2068
2069         mutex_unlock(&smu->mutex);
2070
2071         return ret;
2072 }
2073
2074 int smu_set_fan_speed_rpm(struct smu_context *smu, uint32_t speed)
2075 {
2076         int ret = 0;
2077
2078         mutex_lock(&smu->mutex);
2079
2080         if (smu->ppt_funcs->set_fan_speed_rpm)
2081                 ret = smu->ppt_funcs->set_fan_speed_rpm(smu, speed);
2082
2083         mutex_unlock(&smu->mutex);
2084
2085         return ret;
2086 }
2087
2088 int smu_get_power_limit(struct smu_context *smu,
2089                         uint32_t *limit,
2090                         bool def,
2091                         bool lock_needed)
2092 {
2093         int ret = 0;
2094
2095         if (lock_needed)
2096                 mutex_lock(&smu->mutex);
2097
2098         if (smu->ppt_funcs->get_power_limit)
2099                 ret = smu->ppt_funcs->get_power_limit(smu, limit, def);
2100
2101         if (lock_needed)
2102                 mutex_unlock(&smu->mutex);
2103
2104         return ret;
2105 }
2106
2107 int smu_set_power_limit(struct smu_context *smu, uint32_t limit)
2108 {
2109         int ret = 0;
2110
2111         mutex_lock(&smu->mutex);
2112
2113         if (smu->ppt_funcs->set_power_limit)
2114                 ret = smu->ppt_funcs->set_power_limit(smu, limit);
2115
2116         mutex_unlock(&smu->mutex);
2117
2118         return ret;
2119 }
2120
2121 int smu_print_clk_levels(struct smu_context *smu, enum smu_clk_type clk_type, char *buf)
2122 {
2123         int ret = 0;
2124
2125         mutex_lock(&smu->mutex);
2126
2127         if (smu->ppt_funcs->print_clk_levels)
2128                 ret = smu->ppt_funcs->print_clk_levels(smu, clk_type, buf);
2129
2130         mutex_unlock(&smu->mutex);
2131
2132         return ret;
2133 }
2134
2135 int smu_get_od_percentage(struct smu_context *smu, enum smu_clk_type type)
2136 {
2137         int ret = 0;
2138
2139         mutex_lock(&smu->mutex);
2140
2141         if (smu->ppt_funcs->get_od_percentage)
2142                 ret = smu->ppt_funcs->get_od_percentage(smu, type);
2143
2144         mutex_unlock(&smu->mutex);
2145
2146         return ret;
2147 }
2148
2149 int smu_set_od_percentage(struct smu_context *smu, enum smu_clk_type type, uint32_t value)
2150 {
2151         int ret = 0;
2152
2153         mutex_lock(&smu->mutex);
2154
2155         if (smu->ppt_funcs->set_od_percentage)
2156                 ret = smu->ppt_funcs->set_od_percentage(smu, type, value);
2157
2158         mutex_unlock(&smu->mutex);
2159
2160         return ret;
2161 }
2162
2163 int smu_od_edit_dpm_table(struct smu_context *smu,
2164                           enum PP_OD_DPM_TABLE_COMMAND type,
2165                           long *input, uint32_t size)
2166 {
2167         int ret = 0;
2168
2169         mutex_lock(&smu->mutex);
2170
2171         if (smu->ppt_funcs->od_edit_dpm_table)
2172                 ret = smu->ppt_funcs->od_edit_dpm_table(smu, type, input, size);
2173
2174         mutex_unlock(&smu->mutex);
2175
2176         return ret;
2177 }
2178
2179 int smu_read_sensor(struct smu_context *smu,
2180                     enum amd_pp_sensors sensor,
2181                     void *data, uint32_t *size)
2182 {
2183         int ret = 0;
2184
2185         mutex_lock(&smu->mutex);
2186
2187         if (smu->ppt_funcs->read_sensor)
2188                 ret = smu->ppt_funcs->read_sensor(smu, sensor, data, size);
2189
2190         mutex_unlock(&smu->mutex);
2191
2192         return ret;
2193 }
2194
2195 int smu_get_power_profile_mode(struct smu_context *smu, char *buf)
2196 {
2197         int ret = 0;
2198
2199         mutex_lock(&smu->mutex);
2200
2201         if (smu->ppt_funcs->get_power_profile_mode)
2202                 ret = smu->ppt_funcs->get_power_profile_mode(smu, buf);
2203
2204         mutex_unlock(&smu->mutex);
2205
2206         return ret;
2207 }
2208
2209 int smu_set_power_profile_mode(struct smu_context *smu,
2210                                long *param,
2211                                uint32_t param_size,
2212                                bool lock_needed)
2213 {
2214         int ret = 0;
2215
2216         if (lock_needed)
2217                 mutex_lock(&smu->mutex);
2218
2219         if (smu->ppt_funcs->set_power_profile_mode)
2220                 ret = smu->ppt_funcs->set_power_profile_mode(smu, param, param_size);
2221
2222         if (lock_needed)
2223                 mutex_unlock(&smu->mutex);
2224
2225         return ret;
2226 }
2227
2228
2229 int smu_get_fan_control_mode(struct smu_context *smu)
2230 {
2231         int ret = 0;
2232
2233         mutex_lock(&smu->mutex);
2234
2235         if (smu->ppt_funcs->get_fan_control_mode)
2236                 ret = smu->ppt_funcs->get_fan_control_mode(smu);
2237
2238         mutex_unlock(&smu->mutex);
2239
2240         return ret;
2241 }
2242
2243 int smu_set_fan_control_mode(struct smu_context *smu, int value)
2244 {
2245         int ret = 0;
2246
2247         mutex_lock(&smu->mutex);
2248
2249         if (smu->ppt_funcs->set_fan_control_mode)
2250                 ret = smu->ppt_funcs->set_fan_control_mode(smu, value);
2251
2252         mutex_unlock(&smu->mutex);
2253
2254         return ret;
2255 }
2256
2257 int smu_get_fan_speed_percent(struct smu_context *smu, uint32_t *speed)
2258 {
2259         int ret = 0;
2260
2261         mutex_lock(&smu->mutex);
2262
2263         if (smu->ppt_funcs->get_fan_speed_percent)
2264                 ret = smu->ppt_funcs->get_fan_speed_percent(smu, speed);
2265
2266         mutex_unlock(&smu->mutex);
2267
2268         return ret;
2269 }
2270
2271 int smu_set_fan_speed_percent(struct smu_context *smu, uint32_t speed)
2272 {
2273         int ret = 0;
2274
2275         mutex_lock(&smu->mutex);
2276
2277         if (smu->ppt_funcs->set_fan_speed_percent)
2278                 ret = smu->ppt_funcs->set_fan_speed_percent(smu, speed);
2279
2280         mutex_unlock(&smu->mutex);
2281
2282         return ret;
2283 }
2284
2285 int smu_get_fan_speed_rpm(struct smu_context *smu, uint32_t *speed)
2286 {
2287         int ret = 0;
2288
2289         mutex_lock(&smu->mutex);
2290
2291         if (smu->ppt_funcs->get_fan_speed_rpm)
2292                 ret = smu->ppt_funcs->get_fan_speed_rpm(smu, speed);
2293
2294         mutex_unlock(&smu->mutex);
2295
2296         return ret;
2297 }
2298
2299 int smu_set_deep_sleep_dcefclk(struct smu_context *smu, int clk)
2300 {
2301         int ret = 0;
2302
2303         mutex_lock(&smu->mutex);
2304
2305         if (smu->ppt_funcs->set_deep_sleep_dcefclk)
2306                 ret = smu->ppt_funcs->set_deep_sleep_dcefclk(smu, clk);
2307
2308         mutex_unlock(&smu->mutex);
2309
2310         return ret;
2311 }
2312
2313 int smu_set_active_display_count(struct smu_context *smu, uint32_t count)
2314 {
2315         int ret = 0;
2316
2317         if (smu->ppt_funcs->set_active_display_count)
2318                 ret = smu->ppt_funcs->set_active_display_count(smu, count);
2319
2320         return ret;
2321 }
2322
2323 int smu_get_clock_by_type(struct smu_context *smu,
2324                           enum amd_pp_clock_type type,
2325                           struct amd_pp_clocks *clocks)
2326 {
2327         int ret = 0;
2328
2329         mutex_lock(&smu->mutex);
2330
2331         if (smu->ppt_funcs->get_clock_by_type)
2332                 ret = smu->ppt_funcs->get_clock_by_type(smu, type, clocks);
2333
2334         mutex_unlock(&smu->mutex);
2335
2336         return ret;
2337 }
2338
2339 int smu_get_max_high_clocks(struct smu_context *smu,
2340                             struct amd_pp_simple_clock_info *clocks)
2341 {
2342         int ret = 0;
2343
2344         mutex_lock(&smu->mutex);
2345
2346         if (smu->ppt_funcs->get_max_high_clocks)
2347                 ret = smu->ppt_funcs->get_max_high_clocks(smu, clocks);
2348
2349         mutex_unlock(&smu->mutex);
2350
2351         return ret;
2352 }
2353
2354 int smu_get_clock_by_type_with_latency(struct smu_context *smu,
2355                                        enum smu_clk_type clk_type,
2356                                        struct pp_clock_levels_with_latency *clocks)
2357 {
2358         int ret = 0;
2359
2360         mutex_lock(&smu->mutex);
2361
2362         if (smu->ppt_funcs->get_clock_by_type_with_latency)
2363                 ret = smu->ppt_funcs->get_clock_by_type_with_latency(smu, clk_type, clocks);
2364
2365         mutex_unlock(&smu->mutex);
2366
2367         return ret;
2368 }
2369
2370 int smu_get_clock_by_type_with_voltage(struct smu_context *smu,
2371                                        enum amd_pp_clock_type type,
2372                                        struct pp_clock_levels_with_voltage *clocks)
2373 {
2374         int ret = 0;
2375
2376         mutex_lock(&smu->mutex);
2377
2378         if (smu->ppt_funcs->get_clock_by_type_with_voltage)
2379                 ret = smu->ppt_funcs->get_clock_by_type_with_voltage(smu, type, clocks);
2380
2381         mutex_unlock(&smu->mutex);
2382
2383         return ret;
2384 }
2385
2386
2387 int smu_display_clock_voltage_request(struct smu_context *smu,
2388                                       struct pp_display_clock_request *clock_req)
2389 {
2390         int ret = 0;
2391
2392         mutex_lock(&smu->mutex);
2393
2394         if (smu->ppt_funcs->display_clock_voltage_request)
2395                 ret = smu->ppt_funcs->display_clock_voltage_request(smu, clock_req);
2396
2397         mutex_unlock(&smu->mutex);
2398
2399         return ret;
2400 }
2401
2402
2403 int smu_display_disable_memory_clock_switch(struct smu_context *smu, bool disable_memory_clock_switch)
2404 {
2405         int ret = -EINVAL;
2406
2407         mutex_lock(&smu->mutex);
2408
2409         if (smu->ppt_funcs->display_disable_memory_clock_switch)
2410                 ret = smu->ppt_funcs->display_disable_memory_clock_switch(smu, disable_memory_clock_switch);
2411
2412         mutex_unlock(&smu->mutex);
2413
2414         return ret;
2415 }
2416
2417 int smu_notify_smu_enable_pwe(struct smu_context *smu)
2418 {
2419         int ret = 0;
2420
2421         mutex_lock(&smu->mutex);
2422
2423         if (smu->ppt_funcs->notify_smu_enable_pwe)
2424                 ret = smu->ppt_funcs->notify_smu_enable_pwe(smu);
2425
2426         mutex_unlock(&smu->mutex);
2427
2428         return ret;
2429 }
2430
2431 int smu_set_xgmi_pstate(struct smu_context *smu,
2432                         uint32_t pstate)
2433 {
2434         int ret = 0;
2435
2436         mutex_lock(&smu->mutex);
2437
2438         if (smu->ppt_funcs->set_xgmi_pstate)
2439                 ret = smu->ppt_funcs->set_xgmi_pstate(smu, pstate);
2440
2441         mutex_unlock(&smu->mutex);
2442
2443         return ret;
2444 }
2445
2446 int smu_set_azalia_d3_pme(struct smu_context *smu)
2447 {
2448         int ret = 0;
2449
2450         mutex_lock(&smu->mutex);
2451
2452         if (smu->ppt_funcs->set_azalia_d3_pme)
2453                 ret = smu->ppt_funcs->set_azalia_d3_pme(smu);
2454
2455         mutex_unlock(&smu->mutex);
2456
2457         return ret;
2458 }
2459
2460 bool smu_baco_is_support(struct smu_context *smu)
2461 {
2462         bool ret = false;
2463
2464         mutex_lock(&smu->mutex);
2465
2466         if (smu->ppt_funcs && smu->ppt_funcs->baco_is_support)
2467                 ret = smu->ppt_funcs->baco_is_support(smu);
2468
2469         mutex_unlock(&smu->mutex);
2470
2471         return ret;
2472 }
2473
2474 int smu_baco_get_state(struct smu_context *smu, enum smu_baco_state *state)
2475 {
2476         if (smu->ppt_funcs->baco_get_state)
2477                 return -EINVAL;
2478
2479         mutex_lock(&smu->mutex);
2480         *state = smu->ppt_funcs->baco_get_state(smu);
2481         mutex_unlock(&smu->mutex);
2482
2483         return 0;
2484 }
2485
2486 int smu_baco_enter(struct smu_context *smu)
2487 {
2488         int ret = 0;
2489
2490         mutex_lock(&smu->mutex);
2491
2492         if (smu->ppt_funcs->baco_enter)
2493                 ret = smu->ppt_funcs->baco_enter(smu);
2494
2495         mutex_unlock(&smu->mutex);
2496
2497         return ret;
2498 }
2499
2500 int smu_baco_exit(struct smu_context *smu)
2501 {
2502         int ret = 0;
2503
2504         mutex_lock(&smu->mutex);
2505
2506         if (smu->ppt_funcs->baco_exit)
2507                 ret = smu->ppt_funcs->baco_exit(smu);
2508
2509         mutex_unlock(&smu->mutex);
2510
2511         return ret;
2512 }
2513
2514 int smu_mode2_reset(struct smu_context *smu)
2515 {
2516         int ret = 0;
2517
2518         mutex_lock(&smu->mutex);
2519
2520         if (smu->ppt_funcs->mode2_reset)
2521                 ret = smu->ppt_funcs->mode2_reset(smu);
2522
2523         mutex_unlock(&smu->mutex);
2524
2525         return ret;
2526 }
2527
2528 int smu_get_max_sustainable_clocks_by_dc(struct smu_context *smu,
2529                                          struct pp_smu_nv_clock_table *max_clocks)
2530 {
2531         int ret = 0;
2532
2533         mutex_lock(&smu->mutex);
2534
2535         if (smu->ppt_funcs->get_max_sustainable_clocks_by_dc)
2536                 ret = smu->ppt_funcs->get_max_sustainable_clocks_by_dc(smu, max_clocks);
2537
2538         mutex_unlock(&smu->mutex);
2539
2540         return ret;
2541 }
2542
2543 int smu_get_uclk_dpm_states(struct smu_context *smu,
2544                             unsigned int *clock_values_in_khz,
2545                             unsigned int *num_states)
2546 {
2547         int ret = 0;
2548
2549         mutex_lock(&smu->mutex);
2550
2551         if (smu->ppt_funcs->get_uclk_dpm_states)
2552                 ret = smu->ppt_funcs->get_uclk_dpm_states(smu, clock_values_in_khz, num_states);
2553
2554         mutex_unlock(&smu->mutex);
2555
2556         return ret;
2557 }
2558
2559 enum amd_pm_state_type smu_get_current_power_state(struct smu_context *smu)
2560 {
2561         enum amd_pm_state_type pm_state = POWER_STATE_TYPE_DEFAULT;
2562
2563         mutex_lock(&smu->mutex);
2564
2565         if (smu->ppt_funcs->get_current_power_state)
2566                 pm_state = smu->ppt_funcs->get_current_power_state(smu);
2567
2568         mutex_unlock(&smu->mutex);
2569
2570         return pm_state;
2571 }
2572
2573 int smu_get_dpm_clock_table(struct smu_context *smu,
2574                             struct dpm_clocks *clock_table)
2575 {
2576         int ret = 0;
2577
2578         mutex_lock(&smu->mutex);
2579
2580         if (smu->ppt_funcs->get_dpm_clock_table)
2581                 ret = smu->ppt_funcs->get_dpm_clock_table(smu, clock_table);
2582
2583         mutex_unlock(&smu->mutex);
2584
2585         return ret;
2586 }
2587
2588 uint32_t smu_get_pptable_power_limit(struct smu_context *smu)
2589 {
2590         uint32_t ret = 0;
2591
2592         if (smu->ppt_funcs->get_pptable_power_limit)
2593                 ret = smu->ppt_funcs->get_pptable_power_limit(smu);
2594
2595         return ret;
2596 }
2597
2598 int smu_send_smc_msg(struct smu_context *smu,
2599                      enum smu_message_type msg)
2600 {
2601         int ret;
2602
2603         ret = smu_send_smc_msg_with_param(smu, msg, 0);
2604         return ret;
2605 }