]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/amd/powerplay/hwmgr/tonga_hwmgr.c
Merge branch 'for-4.8/core' of git://git.kernel.dk/linux-block
[karo-tx-linux.git] / drivers / gpu / drm / amd / powerplay / hwmgr / tonga_hwmgr.c
1 /*
2  * Copyright 2015 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/module.h>
24 #include <linux/slab.h>
25 #include <linux/fb.h>
26 #include "linux/delay.h"
27 #include "pp_acpi.h"
28 #include "hwmgr.h"
29 #include <atombios.h>
30 #include "tonga_hwmgr.h"
31 #include "pptable.h"
32 #include "processpptables.h"
33 #include "tonga_processpptables.h"
34 #include "tonga_pptable.h"
35 #include "pp_debug.h"
36 #include "tonga_ppsmc.h"
37 #include "cgs_common.h"
38 #include "pppcielanes.h"
39 #include "tonga_dyn_defaults.h"
40 #include "smumgr.h"
41 #include "tonga_smumgr.h"
42 #include "tonga_clockpowergating.h"
43 #include "tonga_thermal.h"
44
45 #include "smu/smu_7_1_2_d.h"
46 #include "smu/smu_7_1_2_sh_mask.h"
47
48 #include "gmc/gmc_8_1_d.h"
49 #include "gmc/gmc_8_1_sh_mask.h"
50
51 #include "bif/bif_5_0_d.h"
52 #include "bif/bif_5_0_sh_mask.h"
53
54 #include "dce/dce_10_0_d.h"
55 #include "dce/dce_10_0_sh_mask.h"
56
57 #include "cgs_linux.h"
58 #include "eventmgr.h"
59 #include "amd_pcie_helpers.h"
60
61 #define MC_CG_ARB_FREQ_F0           0x0a
62 #define MC_CG_ARB_FREQ_F1           0x0b
63 #define MC_CG_ARB_FREQ_F2           0x0c
64 #define MC_CG_ARB_FREQ_F3           0x0d
65
66 #define MC_CG_SEQ_DRAMCONF_S0       0x05
67 #define MC_CG_SEQ_DRAMCONF_S1       0x06
68 #define MC_CG_SEQ_YCLK_SUSPEND      0x04
69 #define MC_CG_SEQ_YCLK_RESUME       0x0a
70
71 #define PCIE_BUS_CLK                10000
72 #define TCLK                        (PCIE_BUS_CLK / 10)
73
74 #define SMC_RAM_END 0x40000
75 #define SMC_CG_IND_START            0xc0030000
76 #define SMC_CG_IND_END              0xc0040000  /* First byte after SMC_CG_IND*/
77
78 #define VOLTAGE_SCALE               4
79 #define VOLTAGE_VID_OFFSET_SCALE1   625
80 #define VOLTAGE_VID_OFFSET_SCALE2   100
81
82 #define VDDC_VDDCI_DELTA            200
83 #define VDDC_VDDGFX_DELTA           300
84
85 #define MC_SEQ_MISC0_GDDR5_SHIFT 28
86 #define MC_SEQ_MISC0_GDDR5_MASK  0xf0000000
87 #define MC_SEQ_MISC0_GDDR5_VALUE 5
88
89 typedef uint32_t PECI_RegistryValue;
90
91 /* [2.5%,~2.5%] Clock stretched is multiple of 2.5% vs not and [Fmin, Fmax, LDO_REFSEL, USE_FOR_LOW_FREQ] */
92 static const uint16_t PP_ClockStretcherLookupTable[2][4] = {
93         {600, 1050, 3, 0},
94         {600, 1050, 6, 1} };
95
96 /* [FF, SS] type, [] 4 voltage ranges, and [Floor Freq, Boundary Freq, VID min , VID max] */
97 static const uint32_t PP_ClockStretcherDDTTable[2][4][4] = {
98         { {265, 529, 120, 128}, {325, 650, 96, 119}, {430, 860, 32, 95}, {0, 0, 0, 31} },
99         { {275, 550, 104, 112}, {319, 638, 96, 103}, {360, 720, 64, 95}, {384, 768, 32, 63} } };
100
101 /* [Use_For_Low_freq] value, [0%, 5%, 10%, 7.14%, 14.28%, 20%] (coming from PWR_CKS_CNTL.stretch_amount reg spec) */
102 static const uint8_t PP_ClockStretchAmountConversion[2][6] = {
103         {0, 1, 3, 2, 4, 5},
104         {0, 2, 4, 5, 6, 5} };
105
106 /* Values for the CG_THERMAL_CTRL::DPM_EVENT_SRC field. */
107 enum DPM_EVENT_SRC {
108         DPM_EVENT_SRC_ANALOG = 0,               /* Internal analog trip point */
109         DPM_EVENT_SRC_EXTERNAL = 1,             /* External (GPIO 17) signal */
110         DPM_EVENT_SRC_DIGITAL = 2,              /* Internal digital trip point (DIG_THERM_DPM) */
111         DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,   /* Internal analog or external */
112         DPM_EVENT_SRC_DIGITAL_OR_EXTERNAL = 4   /* Internal digital or external */
113 };
114 typedef enum DPM_EVENT_SRC DPM_EVENT_SRC;
115
116 static const unsigned long PhwTonga_Magic = (unsigned long)(PHM_VIslands_Magic);
117
118 struct tonga_power_state *cast_phw_tonga_power_state(
119                                   struct pp_hw_power_state *hw_ps)
120 {
121         if (hw_ps == NULL)
122                 return NULL;
123
124         PP_ASSERT_WITH_CODE((PhwTonga_Magic == hw_ps->magic),
125                                 "Invalid Powerstate Type!",
126                                  return NULL);
127
128         return (struct tonga_power_state *)hw_ps;
129 }
130
131 const struct tonga_power_state *cast_const_phw_tonga_power_state(
132                                  const struct pp_hw_power_state *hw_ps)
133 {
134         if (hw_ps == NULL)
135                 return NULL;
136
137         PP_ASSERT_WITH_CODE((PhwTonga_Magic == hw_ps->magic),
138                                 "Invalid Powerstate Type!",
139                                  return NULL);
140
141         return (const struct tonga_power_state *)hw_ps;
142 }
143
144 int tonga_add_voltage(struct pp_hwmgr *hwmgr,
145         phm_ppt_v1_voltage_lookup_table *look_up_table,
146         phm_ppt_v1_voltage_lookup_record *record)
147 {
148         uint32_t i;
149         PP_ASSERT_WITH_CODE((NULL != look_up_table),
150                 "Lookup Table empty.", return -1;);
151         PP_ASSERT_WITH_CODE((0 != look_up_table->count),
152                 "Lookup Table empty.", return -1;);
153         PP_ASSERT_WITH_CODE((SMU72_MAX_LEVELS_VDDGFX >= look_up_table->count),
154                 "Lookup Table is full.", return -1;);
155
156         /* This is to avoid entering duplicate calculated records. */
157         for (i = 0; i < look_up_table->count; i++) {
158                 if (look_up_table->entries[i].us_vdd == record->us_vdd) {
159                         if (look_up_table->entries[i].us_calculated == 1)
160                                 return 0;
161                         else
162                                 break;
163                 }
164         }
165
166         look_up_table->entries[i].us_calculated = 1;
167         look_up_table->entries[i].us_vdd = record->us_vdd;
168         look_up_table->entries[i].us_cac_low = record->us_cac_low;
169         look_up_table->entries[i].us_cac_mid = record->us_cac_mid;
170         look_up_table->entries[i].us_cac_high = record->us_cac_high;
171         /* Only increment the count when we're appending, not replacing duplicate entry. */
172         if (i == look_up_table->count)
173                 look_up_table->count++;
174
175         return 0;
176 }
177
178 int tonga_notify_smc_display_change(struct pp_hwmgr *hwmgr, bool has_display)
179 {
180         PPSMC_Msg msg = has_display? (PPSMC_Msg)PPSMC_HasDisplay : (PPSMC_Msg)PPSMC_NoDisplay;
181
182         return (smum_send_msg_to_smc(hwmgr->smumgr, msg) == 0) ?  0 : -1;
183 }
184
185 uint8_t tonga_get_voltage_id(pp_atomctrl_voltage_table *voltage_table,
186                 uint32_t voltage)
187 {
188         uint8_t count = (uint8_t) (voltage_table->count);
189         uint8_t i = 0;
190
191         PP_ASSERT_WITH_CODE((NULL != voltage_table),
192                 "Voltage Table empty.", return 0;);
193         PP_ASSERT_WITH_CODE((0 != count),
194                 "Voltage Table empty.", return 0;);
195
196         for (i = 0; i < count; i++) {
197                 /* find first voltage bigger than requested */
198                 if (voltage_table->entries[i].value >= voltage)
199                         return i;
200         }
201
202         /* voltage is bigger than max voltage in the table */
203         return i - 1;
204 }
205
206 /**
207  * @brief PhwTonga_GetVoltageOrder
208  *  Returns index of requested voltage record in lookup(table)
209  * @param hwmgr - pointer to hardware manager
210  * @param lookupTable - lookup list to search in
211  * @param voltage - voltage to look for
212  * @return 0 on success
213  */
214 uint8_t tonga_get_voltage_index(phm_ppt_v1_voltage_lookup_table *look_up_table,
215                 uint16_t voltage)
216 {
217         uint8_t count = (uint8_t) (look_up_table->count);
218         uint8_t i;
219
220         PP_ASSERT_WITH_CODE((NULL != look_up_table), "Lookup Table empty.", return 0;);
221         PP_ASSERT_WITH_CODE((0 != count), "Lookup Table empty.", return 0;);
222
223         for (i = 0; i < count; i++) {
224                 /* find first voltage equal or bigger than requested */
225                 if (look_up_table->entries[i].us_vdd >= voltage)
226                         return i;
227         }
228
229         /* voltage is bigger than max voltage in the table */
230         return i-1;
231 }
232
233 bool tonga_is_dpm_running(struct pp_hwmgr *hwmgr)
234 {
235         /*
236          * We return the status of Voltage Control instead of checking SCLK/MCLK DPM
237          * because we may have test scenarios that need us intentionly disable SCLK/MCLK DPM,
238          * whereas voltage control is a fundemental change that will not be disabled
239          */
240
241         return (0 == PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
242                                         FEATURE_STATUS, VOLTAGE_CONTROLLER_ON) ? 1 : 0);
243 }
244
245 /**
246  * Re-generate the DPM level mask value
247  * @param    hwmgr      the address of the hardware manager
248  */
249 static uint32_t tonga_get_dpm_level_enable_mask_value(
250                         struct tonga_single_dpm_table * dpm_table)
251 {
252         uint32_t i;
253         uint32_t mask_value = 0;
254
255         for (i = dpm_table->count; i > 0; i--) {
256                 mask_value = mask_value << 1;
257
258                 if (dpm_table->dpm_levels[i-1].enabled)
259                         mask_value |= 0x1;
260                 else
261                         mask_value &= 0xFFFFFFFE;
262         }
263         return mask_value;
264 }
265
266 /**
267  * Retrieve DPM default values from registry (if available)
268  *
269  * @param    hwmgr  the address of the powerplay hardware manager.
270  */
271 void tonga_initialize_dpm_defaults(struct pp_hwmgr *hwmgr)
272 {
273         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
274         phw_tonga_ulv_parm *ulv = &(data->ulv);
275         uint32_t tmp;
276
277         ulv->ch_ulv_parameter = PPTONGA_CGULVPARAMETER_DFLT;
278         data->voting_rights_clients0 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT0;
279         data->voting_rights_clients1 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT1;
280         data->voting_rights_clients2 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT2;
281         data->voting_rights_clients3 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT3;
282         data->voting_rights_clients4 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT4;
283         data->voting_rights_clients5 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT5;
284         data->voting_rights_clients6 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT6;
285         data->voting_rights_clients7 = PPTONGA_VOTINGRIGHTSCLIENTS_DFLT7;
286
287         data->static_screen_threshold_unit = PPTONGA_STATICSCREENTHRESHOLDUNIT_DFLT;
288         data->static_screen_threshold = PPTONGA_STATICSCREENTHRESHOLD_DFLT;
289
290         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
291                 PHM_PlatformCaps_ABM);
292         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
293                 PHM_PlatformCaps_NonABMSupportInPPLib);
294
295         tmp = 0;
296         if (tmp == 0)
297                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
298                         PHM_PlatformCaps_DynamicACTiming);
299
300         tmp = 0;
301         if (0 != tmp)
302                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
303                         PHM_PlatformCaps_DisableMemoryTransition);
304
305         data->mclk_strobe_mode_threshold = 40000;
306         data->mclk_stutter_mode_threshold = 30000;
307         data->mclk_edc_enable_threshold = 40000;
308         data->mclk_edc_wr_enable_threshold = 40000;
309
310         tmp = 0;
311         if (tmp != 0)
312                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
313                         PHM_PlatformCaps_DisableMCLS);
314
315         data->pcie_gen_performance.max = PP_PCIEGen1;
316         data->pcie_gen_performance.min = PP_PCIEGen3;
317         data->pcie_gen_power_saving.max = PP_PCIEGen1;
318         data->pcie_gen_power_saving.min = PP_PCIEGen3;
319
320         data->pcie_lane_performance.max = 0;
321         data->pcie_lane_performance.min = 16;
322         data->pcie_lane_power_saving.max = 0;
323         data->pcie_lane_power_saving.min = 16;
324
325         tmp = 0;
326
327         if (tmp)
328                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
329                         PHM_PlatformCaps_SclkThrottleLowNotification);
330
331         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
332                 PHM_PlatformCaps_DynamicUVDState);
333
334 }
335
336 int tonga_update_sclk_threshold(struct pp_hwmgr *hwmgr)
337 {
338         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
339
340         int result = 0;
341         uint32_t low_sclk_interrupt_threshold = 0;
342
343         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
344                         PHM_PlatformCaps_SclkThrottleLowNotification)
345                 && (hwmgr->gfx_arbiter.sclk_threshold != data->low_sclk_interrupt_threshold)) {
346                 data->low_sclk_interrupt_threshold = hwmgr->gfx_arbiter.sclk_threshold;
347                 low_sclk_interrupt_threshold = data->low_sclk_interrupt_threshold;
348
349                 CONVERT_FROM_HOST_TO_SMC_UL(low_sclk_interrupt_threshold);
350
351                 result = tonga_copy_bytes_to_smc(
352                                 hwmgr->smumgr,
353                                 data->dpm_table_start + offsetof(SMU72_Discrete_DpmTable,
354                                 LowSclkInterruptThreshold),
355                                 (uint8_t *)&low_sclk_interrupt_threshold,
356                                 sizeof(uint32_t),
357                                 data->sram_end
358                                 );
359         }
360
361         return result;
362 }
363
364 /**
365  * Find SCLK value that is associated with specified virtual_voltage_Id.
366  *
367  * @param    hwmgr  the address of the powerplay hardware manager.
368  * @param    virtual_voltage_Id  voltageId to look for.
369  * @param    sclk output value .
370  * @return   always 0 if success and 2 if association not found
371  */
372 static int tonga_get_sclk_for_voltage_evv(struct pp_hwmgr *hwmgr,
373         phm_ppt_v1_voltage_lookup_table *lookup_table,
374         uint16_t virtual_voltage_id, uint32_t *sclk)
375 {
376         uint8_t entryId;
377         uint8_t voltageId;
378         struct phm_ppt_v1_information *pptable_info =
379                                         (struct phm_ppt_v1_information *)(hwmgr->pptable);
380
381         PP_ASSERT_WITH_CODE(lookup_table->count != 0, "Lookup table is empty", return -1);
382
383         /* search for leakage voltage ID 0xff01 ~ 0xff08 and sckl */
384         for (entryId = 0; entryId < pptable_info->vdd_dep_on_sclk->count; entryId++) {
385                 voltageId = pptable_info->vdd_dep_on_sclk->entries[entryId].vddInd;
386                 if (lookup_table->entries[voltageId].us_vdd == virtual_voltage_id)
387                         break;
388         }
389
390         PP_ASSERT_WITH_CODE(entryId < pptable_info->vdd_dep_on_sclk->count,
391                         "Can't find requested voltage id in vdd_dep_on_sclk table!",
392                         return -1;
393                         );
394
395         *sclk = pptable_info->vdd_dep_on_sclk->entries[entryId].clk;
396
397         return 0;
398 }
399
400 /**
401  * Get Leakage VDDC based on leakage ID.
402  *
403  * @param    hwmgr  the address of the powerplay hardware manager.
404  * @return   2 if vddgfx returned is greater than 2V or if BIOS
405  */
406 int tonga_get_evv_voltage(struct pp_hwmgr *hwmgr)
407 {
408         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
409         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
410         phm_ppt_v1_clock_voltage_dependency_table *sclk_table = pptable_info->vdd_dep_on_sclk;
411         uint16_t    virtual_voltage_id;
412         uint16_t    vddc = 0;
413         uint16_t    vddgfx = 0;
414         uint16_t    i, j;
415         uint32_t  sclk = 0;
416
417         /* retrieve voltage for leakage ID (0xff01 + i) */
418         for (i = 0; i < TONGA_MAX_LEAKAGE_COUNT; i++) {
419                 virtual_voltage_id = ATOM_VIRTUAL_VOLTAGE_ID0 + i;
420
421                 /* in split mode we should have only vddgfx EVV leakages */
422                 if (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) {
423                         if (0 == tonga_get_sclk_for_voltage_evv(hwmgr,
424                                                 pptable_info->vddgfx_lookup_table, virtual_voltage_id, &sclk)) {
425                                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
426                                                         PHM_PlatformCaps_ClockStretcher)) {
427                                         for (j = 1; j < sclk_table->count; j++) {
428                                                 if (sclk_table->entries[j].clk == sclk &&
429                                                                 sclk_table->entries[j].cks_enable == 0) {
430                                                         sclk += 5000;
431                                                         break;
432                                                 }
433                                         }
434                                 }
435                                 if (0 == atomctrl_get_voltage_evv_on_sclk
436                                     (hwmgr, VOLTAGE_TYPE_VDDGFX, sclk,
437                                      virtual_voltage_id, &vddgfx)) {
438                                         /* need to make sure vddgfx is less than 2v or else, it could burn the ASIC. */
439                                         PP_ASSERT_WITH_CODE((vddgfx < 2000 && vddgfx != 0), "Invalid VDDGFX value!", return -1);
440
441                                         /* the voltage should not be zero nor equal to leakage ID */
442                                         if (vddgfx != 0 && vddgfx != virtual_voltage_id) {
443                                                 data->vddcgfx_leakage.actual_voltage[data->vddcgfx_leakage.count] = vddgfx;
444                                                 data->vddcgfx_leakage.leakage_id[data->vddcgfx_leakage.count] = virtual_voltage_id;
445                                                 data->vddcgfx_leakage.count++;
446                                         }
447                                 } else {
448                                         printk("Error retrieving EVV voltage value!\n");
449                                 }
450                         }
451                 } else {
452                         /*  in merged mode we have only vddc EVV leakages */
453                         if (0 == tonga_get_sclk_for_voltage_evv(hwmgr,
454                                                 pptable_info->vddc_lookup_table,
455                                                 virtual_voltage_id, &sclk)) {
456                                 if (0 == atomctrl_get_voltage_evv_on_sclk
457                                     (hwmgr, VOLTAGE_TYPE_VDDC, sclk,
458                                      virtual_voltage_id, &vddc)) {
459                                         /* need to make sure vddc is less than 2v or else, it could burn the ASIC. */
460                                         PP_ASSERT_WITH_CODE(vddc < 2000, "Invalid VDDC value!", return -1);
461
462                                         /* the voltage should not be zero nor equal to leakage ID */
463                                         if (vddc != 0 && vddc != virtual_voltage_id) {
464                                                 data->vddc_leakage.actual_voltage[data->vddc_leakage.count] = vddc;
465                                                 data->vddc_leakage.leakage_id[data->vddc_leakage.count] = virtual_voltage_id;
466                                                 data->vddc_leakage.count++;
467                                         }
468                                 } else {
469                                         printk("Error retrieving EVV voltage value!\n");
470                                 }
471                         }
472                 }
473         }
474
475         return 0;
476 }
477
478 int tonga_enable_sclk_mclk_dpm(struct pp_hwmgr *hwmgr)
479 {
480         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
481
482         /* enable SCLK dpm */
483         if (0 == data->sclk_dpm_key_disabled) {
484                 PP_ASSERT_WITH_CODE(
485                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
486                                                    PPSMC_MSG_DPM_Enable)),
487                                 "Failed to enable SCLK DPM during DPM Start Function!",
488                                 return -1);
489         }
490
491         /* enable MCLK dpm */
492         if (0 == data->mclk_dpm_key_disabled) {
493                 PP_ASSERT_WITH_CODE(
494                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
495                                              PPSMC_MSG_MCLKDPM_Enable)),
496                                 "Failed to enable MCLK DPM during DPM Start Function!",
497                                 return -1);
498
499                 PHM_WRITE_FIELD(hwmgr->device, MC_SEQ_CNTL_3, CAC_EN, 0x1);
500
501                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
502                         ixLCAC_MC0_CNTL, 0x05);/* CH0,1 read */
503                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
504                         ixLCAC_MC1_CNTL, 0x05);/* CH2,3 read */
505                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
506                         ixLCAC_CPL_CNTL, 0x100005);/*Read */
507
508                 udelay(10);
509
510                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
511                         ixLCAC_MC0_CNTL, 0x400005);/* CH0,1 write */
512                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
513                         ixLCAC_MC1_CNTL, 0x400005);/* CH2,3 write */
514                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
515                         ixLCAC_CPL_CNTL, 0x500005);/* write */
516
517         }
518
519         return 0;
520 }
521
522 int tonga_start_dpm(struct pp_hwmgr *hwmgr)
523 {
524         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
525
526         /* enable general power management */
527         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, GENERAL_PWRMGT, GLOBAL_PWRMGT_EN, 1);
528         /* enable sclk deep sleep */
529         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, SCLK_PWRMGT_CNTL, DYNAMIC_PM_EN, 1);
530
531         /* prepare for PCIE DPM */
532         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, data->soft_regs_start +
533                         offsetof(SMU72_SoftRegisters, VoltageChangeTimeout), 0x1000);
534
535         PHM_WRITE_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__PCIE, SWRST_COMMAND_1, RESETLC, 0x0);
536
537         PP_ASSERT_WITH_CODE(
538                         (0 == smum_send_msg_to_smc(hwmgr->smumgr,
539                                         PPSMC_MSG_Voltage_Cntl_Enable)),
540                         "Failed to enable voltage DPM during DPM Start Function!",
541                         return -1);
542
543         if (0 != tonga_enable_sclk_mclk_dpm(hwmgr)) {
544                 PP_ASSERT_WITH_CODE(0, "Failed to enable Sclk DPM and Mclk DPM!", return -1);
545         }
546
547         /* enable PCIE dpm */
548         if (0 == data->pcie_dpm_key_disabled) {
549                 PP_ASSERT_WITH_CODE(
550                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
551                                                 PPSMC_MSG_PCIeDPM_Enable)),
552                                 "Failed to enable pcie DPM during DPM Start Function!",
553                                 return -1
554                                 );
555         }
556
557         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
558                                 PHM_PlatformCaps_Falcon_QuickTransition)) {
559                                    smum_send_msg_to_smc(hwmgr->smumgr,
560                                     PPSMC_MSG_EnableACDCGPIOInterrupt);
561         }
562
563         return 0;
564 }
565
566 int tonga_disable_sclk_mclk_dpm(struct pp_hwmgr *hwmgr)
567 {
568         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
569
570         /* disable SCLK dpm */
571         if (0 == data->sclk_dpm_key_disabled) {
572                 /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
573                 PP_ASSERT_WITH_CODE(
574                                 (0 == tonga_is_dpm_running(hwmgr)),
575                                 "Trying to Disable SCLK DPM when DPM is disabled",
576                                 return -1
577                                 );
578
579                 PP_ASSERT_WITH_CODE(
580                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
581                                                   PPSMC_MSG_DPM_Disable)),
582                                 "Failed to disable SCLK DPM during DPM stop Function!",
583                                 return -1);
584         }
585
586         /* disable MCLK dpm */
587         if (0 == data->mclk_dpm_key_disabled) {
588                 /* Checking if DPM is running.  If we discover hang because of this, we should skip this message. */
589                 PP_ASSERT_WITH_CODE(
590                                 (0 == tonga_is_dpm_running(hwmgr)),
591                                 "Trying to Disable MCLK DPM when DPM is disabled",
592                                 return -1
593                                 );
594
595                 PP_ASSERT_WITH_CODE(
596                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
597                                             PPSMC_MSG_MCLKDPM_Disable)),
598                                 "Failed to Disable MCLK DPM during DPM stop Function!",
599                                 return -1);
600         }
601
602         return 0;
603 }
604
605 int tonga_stop_dpm(struct pp_hwmgr *hwmgr)
606 {
607         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
608
609         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, GENERAL_PWRMGT, GLOBAL_PWRMGT_EN, 0);
610         /* disable sclk deep sleep*/
611         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, SCLK_PWRMGT_CNTL, DYNAMIC_PM_EN, 0);
612
613         /* disable PCIE dpm */
614         if (0 == data->pcie_dpm_key_disabled) {
615                 /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
616                 PP_ASSERT_WITH_CODE(
617                                 (0 == tonga_is_dpm_running(hwmgr)),
618                                 "Trying to Disable PCIE DPM when DPM is disabled",
619                                 return -1
620                                 );
621                 PP_ASSERT_WITH_CODE(
622                                 (0 == smum_send_msg_to_smc(hwmgr->smumgr,
623                                                 PPSMC_MSG_PCIeDPM_Disable)),
624                                 "Failed to disable pcie DPM during DPM stop Function!",
625                                 return -1);
626         }
627
628         if (0 != tonga_disable_sclk_mclk_dpm(hwmgr))
629                 PP_ASSERT_WITH_CODE(0, "Failed to disable Sclk DPM and Mclk DPM!", return -1);
630
631         /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
632         PP_ASSERT_WITH_CODE(
633                         (0 == tonga_is_dpm_running(hwmgr)),
634                         "Trying to Disable Voltage CNTL when DPM is disabled",
635                         return -1
636                         );
637
638         PP_ASSERT_WITH_CODE(
639                         (0 == smum_send_msg_to_smc(hwmgr->smumgr,
640                                         PPSMC_MSG_Voltage_Cntl_Disable)),
641                         "Failed to disable voltage DPM during DPM stop Function!",
642                         return -1);
643
644         return 0;
645 }
646
647 int tonga_enable_sclk_control(struct pp_hwmgr *hwmgr)
648 {
649         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, SCLK_PWRMGT_CNTL, SCLK_PWRMGT_OFF, 0);
650
651         return 0;
652 }
653
654 /**
655  * Send a message to the SMC and return a parameter
656  *
657  * @param    hwmgr:  the address of the powerplay hardware manager.
658  * @param    msg: the message to send.
659  * @param    parameter: pointer to the received parameter
660  * @return   The response that came from the SMC.
661  */
662 PPSMC_Result tonga_send_msg_to_smc_return_parameter(
663                 struct pp_hwmgr *hwmgr,
664                 PPSMC_Msg msg,
665                 uint32_t *parameter)
666 {
667         int result;
668
669         result = smum_send_msg_to_smc(hwmgr->smumgr, msg);
670
671         if ((0 == result) && parameter) {
672                 *parameter = cgs_read_register(hwmgr->device, mmSMC_MSG_ARG_0);
673         }
674
675         return result;
676 }
677
678 /**
679  * force DPM power State
680  *
681  * @param    hwmgr:  the address of the powerplay hardware manager.
682  * @param    n     :  DPM level
683  * @return   The response that came from the SMC.
684  */
685 int tonga_dpm_force_state(struct pp_hwmgr *hwmgr, uint32_t n)
686 {
687         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
688         uint32_t level_mask = 1 << n;
689
690         /* Checking if DPM is running.  If we discover hang because of this, we should skip this message. */
691         PP_ASSERT_WITH_CODE(0 == tonga_is_dpm_running(hwmgr),
692                         "Trying to force SCLK when DPM is disabled", return -1;);
693         if (0 == data->sclk_dpm_key_disabled)
694                 return (0 == smum_send_msg_to_smc_with_parameter(
695                                                              hwmgr->smumgr,
696                      (PPSMC_Msg)(PPSMC_MSG_SCLKDPM_SetEnabledMask),
697                                                     level_mask) ? 0 : 1);
698
699         return 0;
700 }
701
702 /**
703  * force DPM power State
704  *
705  * @param    hwmgr:  the address of the powerplay hardware manager.
706  * @param    n     :  DPM level
707  * @return   The response that came from the SMC.
708  */
709 int tonga_dpm_force_state_mclk(struct pp_hwmgr *hwmgr, uint32_t n)
710 {
711         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
712         uint32_t level_mask = 1 << n;
713
714         /* Checking if DPM is running.  If we discover hang because of this, we should skip this message. */
715         PP_ASSERT_WITH_CODE(0 == tonga_is_dpm_running(hwmgr),
716                         "Trying to Force MCLK when DPM is disabled", return -1;);
717         if (0 == data->mclk_dpm_key_disabled)
718                 return (0 == smum_send_msg_to_smc_with_parameter(
719                                                                 hwmgr->smumgr,
720                                                                 (PPSMC_Msg)(PPSMC_MSG_MCLKDPM_SetEnabledMask),
721                                                                 level_mask) ? 0 : 1);
722
723         return 0;
724 }
725
726 /**
727  * force DPM power State
728  *
729  * @param    hwmgr:  the address of the powerplay hardware manager.
730  * @param    n     :  DPM level
731  * @return   The response that came from the SMC.
732  */
733 int tonga_dpm_force_state_pcie(struct pp_hwmgr *hwmgr, uint32_t n)
734 {
735         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
736
737         /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
738         PP_ASSERT_WITH_CODE(0 == tonga_is_dpm_running(hwmgr),
739                         "Trying to Force PCIE level when DPM is disabled", return -1;);
740         if (0 == data->pcie_dpm_key_disabled)
741                 return (0 == smum_send_msg_to_smc_with_parameter(
742                                                              hwmgr->smumgr,
743                            (PPSMC_Msg)(PPSMC_MSG_PCIeDPM_ForceLevel),
744                                                                 n) ? 0 : 1);
745
746         return 0;
747 }
748
749 /**
750  * Set the initial state by calling SMC to switch to this state directly
751  *
752  * @param    hwmgr  the address of the powerplay hardware manager.
753  * @return   always 0
754  */
755 int tonga_set_boot_state(struct pp_hwmgr *hwmgr)
756 {
757         /*
758         * SMC only stores one state that SW will ask to switch too,
759         * so we switch the the just uploaded one
760         */
761         return (0 == tonga_disable_sclk_mclk_dpm(hwmgr)) ? 0 : 1;
762 }
763
764 /**
765  * Get the location of various tables inside the FW image.
766  *
767  * @param    hwmgr  the address of the powerplay hardware manager.
768  * @return   always 0
769  */
770 int tonga_process_firmware_header(struct pp_hwmgr *hwmgr)
771 {
772         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
773         struct tonga_smumgr *tonga_smu = (struct tonga_smumgr *)(hwmgr->smumgr->backend);
774
775         uint32_t tmp;
776         int result;
777         bool error = 0;
778
779         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
780                                 SMU72_FIRMWARE_HEADER_LOCATION +
781                                 offsetof(SMU72_Firmware_Header, DpmTable),
782                                 &tmp, data->sram_end);
783
784         if (0 == result) {
785                 data->dpm_table_start = tmp;
786         }
787
788         error |= (0 != result);
789
790         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
791                                 SMU72_FIRMWARE_HEADER_LOCATION +
792                                 offsetof(SMU72_Firmware_Header, SoftRegisters),
793                                 &tmp, data->sram_end);
794
795         if (0 == result) {
796                 data->soft_regs_start = tmp;
797                 tonga_smu->ulSoftRegsStart = tmp;
798         }
799
800         error |= (0 != result);
801
802
803         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
804                                 SMU72_FIRMWARE_HEADER_LOCATION +
805                                 offsetof(SMU72_Firmware_Header, mcRegisterTable),
806                                 &tmp, data->sram_end);
807
808         if (0 == result) {
809                 data->mc_reg_table_start = tmp;
810         }
811
812         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
813                                 SMU72_FIRMWARE_HEADER_LOCATION +
814                                 offsetof(SMU72_Firmware_Header, FanTable),
815                                 &tmp, data->sram_end);
816
817         if (0 == result) {
818                 data->fan_table_start = tmp;
819         }
820
821         error |= (0 != result);
822
823         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
824                                 SMU72_FIRMWARE_HEADER_LOCATION +
825                                 offsetof(SMU72_Firmware_Header, mcArbDramTimingTable),
826                                 &tmp, data->sram_end);
827
828         if (0 == result) {
829                 data->arb_table_start = tmp;
830         }
831
832         error |= (0 != result);
833
834
835         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
836                                 SMU72_FIRMWARE_HEADER_LOCATION +
837                                 offsetof(SMU72_Firmware_Header, Version),
838                                 &tmp, data->sram_end);
839
840         if (0 == result) {
841                 hwmgr->microcode_version_info.SMC = tmp;
842         }
843
844         error |= (0 != result);
845
846         return error ? 1 : 0;
847 }
848
849 /**
850  * Read clock related registers.
851  *
852  * @param    hwmgr  the address of the powerplay hardware manager.
853  * @return   always 0
854  */
855 int tonga_read_clock_registers(struct pp_hwmgr *hwmgr)
856 {
857         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
858
859         data->clock_registers.vCG_SPLL_FUNC_CNTL         =
860                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_FUNC_CNTL);
861         data->clock_registers.vCG_SPLL_FUNC_CNTL_2       =
862                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_FUNC_CNTL_2);
863         data->clock_registers.vCG_SPLL_FUNC_CNTL_3       =
864                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_FUNC_CNTL_3);
865         data->clock_registers.vCG_SPLL_FUNC_CNTL_4       =
866                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_FUNC_CNTL_4);
867         data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM   =
868                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_SPREAD_SPECTRUM);
869         data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM_2 =
870                 cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_SPLL_SPREAD_SPECTRUM_2);
871         data->clock_registers.vDLL_CNTL                  =
872                 cgs_read_register(hwmgr->device, mmDLL_CNTL);
873         data->clock_registers.vMCLK_PWRMGT_CNTL          =
874                 cgs_read_register(hwmgr->device, mmMCLK_PWRMGT_CNTL);
875         data->clock_registers.vMPLL_AD_FUNC_CNTL         =
876                 cgs_read_register(hwmgr->device, mmMPLL_AD_FUNC_CNTL);
877         data->clock_registers.vMPLL_DQ_FUNC_CNTL         =
878                 cgs_read_register(hwmgr->device, mmMPLL_DQ_FUNC_CNTL);
879         data->clock_registers.vMPLL_FUNC_CNTL            =
880                 cgs_read_register(hwmgr->device, mmMPLL_FUNC_CNTL);
881         data->clock_registers.vMPLL_FUNC_CNTL_1          =
882                 cgs_read_register(hwmgr->device, mmMPLL_FUNC_CNTL_1);
883         data->clock_registers.vMPLL_FUNC_CNTL_2          =
884                 cgs_read_register(hwmgr->device, mmMPLL_FUNC_CNTL_2);
885         data->clock_registers.vMPLL_SS1                  =
886                 cgs_read_register(hwmgr->device, mmMPLL_SS1);
887         data->clock_registers.vMPLL_SS2                  =
888                 cgs_read_register(hwmgr->device, mmMPLL_SS2);
889
890         return 0;
891 }
892
893 /**
894  * Find out if memory is GDDR5.
895  *
896  * @param    hwmgr  the address of the powerplay hardware manager.
897  * @return   always 0
898  */
899 int tonga_get_memory_type(struct pp_hwmgr *hwmgr)
900 {
901         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
902         uint32_t temp;
903
904         temp = cgs_read_register(hwmgr->device, mmMC_SEQ_MISC0);
905
906         data->is_memory_GDDR5 = (MC_SEQ_MISC0_GDDR5_VALUE ==
907                         ((temp & MC_SEQ_MISC0_GDDR5_MASK) >>
908                          MC_SEQ_MISC0_GDDR5_SHIFT));
909
910         return 0;
911 }
912
913 /**
914  * Enables Dynamic Power Management by SMC
915  *
916  * @param    hwmgr  the address of the powerplay hardware manager.
917  * @return   always 0
918  */
919 int tonga_enable_acpi_power_management(struct pp_hwmgr *hwmgr)
920 {
921         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, GENERAL_PWRMGT, STATIC_PM_EN, 1);
922
923         return 0;
924 }
925
926 /**
927  * Initialize PowerGating States for different engines
928  *
929  * @param    hwmgr  the address of the powerplay hardware manager.
930  * @return   always 0
931  */
932 int tonga_init_power_gate_state(struct pp_hwmgr *hwmgr)
933 {
934         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
935
936         data->uvd_power_gated = 0;
937         data->vce_power_gated = 0;
938         data->samu_power_gated = 0;
939         data->acp_power_gated = 0;
940         data->pg_acp_init = 1;
941
942         return 0;
943 }
944
945 /**
946  * Checks if DPM is enabled
947  *
948  * @param    hwmgr  the address of the powerplay hardware manager.
949  * @return   always 0
950  */
951 int tonga_check_for_dpm_running(struct pp_hwmgr *hwmgr)
952 {
953         /*
954          * We return the status of Voltage Control instead of checking SCLK/MCLK DPM
955          * because we may have test scenarios that need us intentionly disable SCLK/MCLK DPM,
956          * whereas voltage control is a fundemental change that will not be disabled
957          */
958         return (0 == tonga_is_dpm_running(hwmgr) ? 0 : 1);
959 }
960
961 /**
962  * Checks if DPM is stopped
963  *
964  * @param    hwmgr  the address of the powerplay hardware manager.
965  * @return   always 0
966  */
967 int tonga_check_for_dpm_stopped(struct pp_hwmgr *hwmgr)
968 {
969         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
970
971         if (0 != tonga_is_dpm_running(hwmgr)) {
972                 /* If HW Virtualization is enabled, dpm_table_start will not have a valid value */
973                 if (!data->dpm_table_start) {
974                         return 1;
975                 }
976         }
977
978         return 0;
979 }
980
981 /**
982  * Remove repeated voltage values and create table with unique values.
983  *
984  * @param    hwmgr  the address of the powerplay hardware manager.
985  * @param    voltage_table  the pointer to changing voltage table
986  * @return    1 in success
987  */
988
989 static int tonga_trim_voltage_table(struct pp_hwmgr *hwmgr,
990                         pp_atomctrl_voltage_table *voltage_table)
991 {
992         uint32_t table_size, i, j;
993         uint16_t vvalue;
994         bool bVoltageFound = 0;
995         pp_atomctrl_voltage_table *table;
996
997         PP_ASSERT_WITH_CODE((NULL != voltage_table), "Voltage Table empty.", return -1;);
998         table_size = sizeof(pp_atomctrl_voltage_table);
999         table = kzalloc(table_size, GFP_KERNEL);
1000
1001         if (NULL == table)
1002                 return -ENOMEM;
1003
1004         memset(table, 0x00, table_size);
1005         table->mask_low = voltage_table->mask_low;
1006         table->phase_delay = voltage_table->phase_delay;
1007
1008         for (i = 0; i < voltage_table->count; i++) {
1009                 vvalue = voltage_table->entries[i].value;
1010                 bVoltageFound = 0;
1011
1012                 for (j = 0; j < table->count; j++) {
1013                         if (vvalue == table->entries[j].value) {
1014                                 bVoltageFound = 1;
1015                                 break;
1016                         }
1017                 }
1018
1019                 if (!bVoltageFound) {
1020                         table->entries[table->count].value = vvalue;
1021                         table->entries[table->count].smio_low =
1022                                 voltage_table->entries[i].smio_low;
1023                         table->count++;
1024                 }
1025         }
1026
1027         memcpy(table, voltage_table, sizeof(pp_atomctrl_voltage_table));
1028
1029         kfree(table);
1030
1031         return 0;
1032 }
1033
1034 static int tonga_get_svi2_vdd_ci_voltage_table(
1035                 struct pp_hwmgr *hwmgr,
1036                 phm_ppt_v1_clock_voltage_dependency_table *voltage_dependency_table)
1037 {
1038         uint32_t i;
1039         int result;
1040         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1041         pp_atomctrl_voltage_table *vddci_voltage_table = &(data->vddci_voltage_table);
1042
1043         PP_ASSERT_WITH_CODE((0 != voltage_dependency_table->count),
1044                         "Voltage Dependency Table empty.", return -1;);
1045
1046         vddci_voltage_table->mask_low = 0;
1047         vddci_voltage_table->phase_delay = 0;
1048         vddci_voltage_table->count = voltage_dependency_table->count;
1049
1050         for (i = 0; i < voltage_dependency_table->count; i++) {
1051                 vddci_voltage_table->entries[i].value =
1052                         voltage_dependency_table->entries[i].vddci;
1053                 vddci_voltage_table->entries[i].smio_low = 0;
1054         }
1055
1056         result = tonga_trim_voltage_table(hwmgr, vddci_voltage_table);
1057         PP_ASSERT_WITH_CODE((0 == result),
1058                         "Failed to trim VDDCI table.", return result;);
1059
1060         return 0;
1061 }
1062
1063
1064
1065 static int tonga_get_svi2_vdd_voltage_table(
1066                 struct pp_hwmgr *hwmgr,
1067                 phm_ppt_v1_voltage_lookup_table *look_up_table,
1068                 pp_atomctrl_voltage_table *voltage_table)
1069 {
1070         uint8_t i = 0;
1071
1072         PP_ASSERT_WITH_CODE((0 != look_up_table->count),
1073                         "Voltage Lookup Table empty.", return -1;);
1074
1075         voltage_table->mask_low = 0;
1076         voltage_table->phase_delay = 0;
1077
1078         voltage_table->count = look_up_table->count;
1079
1080         for (i = 0; i < voltage_table->count; i++) {
1081                 voltage_table->entries[i].value = look_up_table->entries[i].us_vdd;
1082                 voltage_table->entries[i].smio_low = 0;
1083         }
1084
1085         return 0;
1086 }
1087
1088 /*
1089  * -------------------------------------------------------- Voltage Tables --------------------------------------------------------------------------
1090  * If the voltage table would be bigger than what will fit into the state table on the SMC keep only the higher entries.
1091  */
1092
1093 static void tonga_trim_voltage_table_to_fit_state_table(
1094                 struct pp_hwmgr *hwmgr,
1095                 uint32_t max_voltage_steps,
1096                 pp_atomctrl_voltage_table *voltage_table)
1097 {
1098         unsigned int i, diff;
1099
1100         if (voltage_table->count <= max_voltage_steps) {
1101                 return;
1102         }
1103
1104         diff = voltage_table->count - max_voltage_steps;
1105
1106         for (i = 0; i < max_voltage_steps; i++) {
1107                 voltage_table->entries[i] = voltage_table->entries[i + diff];
1108         }
1109
1110         voltage_table->count = max_voltage_steps;
1111
1112         return;
1113 }
1114
1115 /**
1116  * Create Voltage Tables.
1117  *
1118  * @param    hwmgr  the address of the powerplay hardware manager.
1119  * @return   always 0
1120  */
1121 int tonga_construct_voltage_tables(struct pp_hwmgr *hwmgr)
1122 {
1123         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1124         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1125         int result;
1126
1127         /* MVDD has only GPIO voltage control */
1128         if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->mvdd_control) {
1129                 result = atomctrl_get_voltage_table_v3(hwmgr,
1130                                         VOLTAGE_TYPE_MVDDC, VOLTAGE_OBJ_GPIO_LUT, &(data->mvdd_voltage_table));
1131                 PP_ASSERT_WITH_CODE((0 == result),
1132                         "Failed to retrieve MVDD table.", return result;);
1133         }
1134
1135         if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->vdd_ci_control) {
1136                 /* GPIO voltage */
1137                 result = atomctrl_get_voltage_table_v3(hwmgr,
1138                                         VOLTAGE_TYPE_VDDCI, VOLTAGE_OBJ_GPIO_LUT, &(data->vddci_voltage_table));
1139                 PP_ASSERT_WITH_CODE((0 == result),
1140                         "Failed to retrieve VDDCI table.", return result;);
1141         } else if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_ci_control) {
1142                 /* SVI2 voltage */
1143                 result = tonga_get_svi2_vdd_ci_voltage_table(hwmgr,
1144                                         pptable_info->vdd_dep_on_mclk);
1145                 PP_ASSERT_WITH_CODE((0 == result),
1146                         "Failed to retrieve SVI2 VDDCI table from dependancy table.", return result;);
1147         }
1148
1149         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_gfx_control) {
1150                 /* VDDGFX has only SVI2 voltage control */
1151                 result = tonga_get_svi2_vdd_voltage_table(hwmgr,
1152                                         pptable_info->vddgfx_lookup_table, &(data->vddgfx_voltage_table));
1153                 PP_ASSERT_WITH_CODE((0 == result),
1154                         "Failed to retrieve SVI2 VDDGFX table from lookup table.", return result;);
1155         }
1156
1157         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->voltage_control) {
1158                 /* VDDC has only SVI2 voltage control */
1159                 result = tonga_get_svi2_vdd_voltage_table(hwmgr,
1160                                         pptable_info->vddc_lookup_table, &(data->vddc_voltage_table));
1161                 PP_ASSERT_WITH_CODE((0 == result),
1162                         "Failed to retrieve SVI2 VDDC table from lookup table.", return result;);
1163         }
1164
1165         PP_ASSERT_WITH_CODE(
1166                         (data->vddc_voltage_table.count <= (SMU72_MAX_LEVELS_VDDC)),
1167                         "Too many voltage values for VDDC. Trimming to fit state table.",
1168                         tonga_trim_voltage_table_to_fit_state_table(hwmgr,
1169                         SMU72_MAX_LEVELS_VDDC, &(data->vddc_voltage_table));
1170                         );
1171
1172         PP_ASSERT_WITH_CODE(
1173                         (data->vddgfx_voltage_table.count <= (SMU72_MAX_LEVELS_VDDGFX)),
1174                         "Too many voltage values for VDDGFX. Trimming to fit state table.",
1175                         tonga_trim_voltage_table_to_fit_state_table(hwmgr,
1176                         SMU72_MAX_LEVELS_VDDGFX, &(data->vddgfx_voltage_table));
1177                         );
1178
1179         PP_ASSERT_WITH_CODE(
1180                         (data->vddci_voltage_table.count <= (SMU72_MAX_LEVELS_VDDCI)),
1181                         "Too many voltage values for VDDCI. Trimming to fit state table.",
1182                         tonga_trim_voltage_table_to_fit_state_table(hwmgr,
1183                         SMU72_MAX_LEVELS_VDDCI, &(data->vddci_voltage_table));
1184                         );
1185
1186         PP_ASSERT_WITH_CODE(
1187                         (data->mvdd_voltage_table.count <= (SMU72_MAX_LEVELS_MVDD)),
1188                         "Too many voltage values for MVDD. Trimming to fit state table.",
1189                         tonga_trim_voltage_table_to_fit_state_table(hwmgr,
1190                         SMU72_MAX_LEVELS_MVDD, &(data->mvdd_voltage_table));
1191                         );
1192
1193         return 0;
1194 }
1195
1196 /**
1197  * Vddc table preparation for SMC.
1198  *
1199  * @param    hwmgr      the address of the hardware manager
1200  * @param    table     the SMC DPM table structure to be populated
1201  * @return   always 0
1202  */
1203 static int tonga_populate_smc_vddc_table(struct pp_hwmgr *hwmgr,
1204                         SMU72_Discrete_DpmTable *table)
1205 {
1206         unsigned int count;
1207         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1208
1209         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->voltage_control) {
1210                 table->VddcLevelCount = data->vddc_voltage_table.count;
1211                 for (count = 0; count < table->VddcLevelCount; count++) {
1212                         table->VddcTable[count] =
1213                                 PP_HOST_TO_SMC_US(data->vddc_voltage_table.entries[count].value * VOLTAGE_SCALE);
1214                 }
1215                 CONVERT_FROM_HOST_TO_SMC_UL(table->VddcLevelCount);
1216         }
1217         return 0;
1218 }
1219
1220 /**
1221  * VddGfx table preparation for SMC.
1222  *
1223  * @param    hwmgr      the address of the hardware manager
1224  * @param    table     the SMC DPM table structure to be populated
1225  * @return   always 0
1226  */
1227 static int tonga_populate_smc_vdd_gfx_table(struct pp_hwmgr *hwmgr,
1228                         SMU72_Discrete_DpmTable *table)
1229 {
1230         unsigned int count;
1231         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1232
1233         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_gfx_control) {
1234                 table->VddGfxLevelCount = data->vddgfx_voltage_table.count;
1235                 for (count = 0; count < data->vddgfx_voltage_table.count; count++) {
1236                         table->VddGfxTable[count] =
1237                                 PP_HOST_TO_SMC_US(data->vddgfx_voltage_table.entries[count].value * VOLTAGE_SCALE);
1238                 }
1239                 CONVERT_FROM_HOST_TO_SMC_UL(table->VddGfxLevelCount);
1240         }
1241         return 0;
1242 }
1243
1244 /**
1245  * Vddci table preparation for SMC.
1246  *
1247  * @param    *hwmgr The address of the hardware manager.
1248  * @param    *table The SMC DPM table structure to be populated.
1249  * @return   0
1250  */
1251 static int tonga_populate_smc_vdd_ci_table(struct pp_hwmgr *hwmgr,
1252                         SMU72_Discrete_DpmTable *table)
1253 {
1254         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1255         uint32_t count;
1256
1257         table->VddciLevelCount = data->vddci_voltage_table.count;
1258         for (count = 0; count < table->VddciLevelCount; count++) {
1259                 if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_ci_control) {
1260                         table->VddciTable[count] =
1261                                 PP_HOST_TO_SMC_US(data->vddci_voltage_table.entries[count].value * VOLTAGE_SCALE);
1262                 } else if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->vdd_ci_control) {
1263                         table->SmioTable1.Pattern[count].Voltage =
1264                                 PP_HOST_TO_SMC_US(data->vddci_voltage_table.entries[count].value * VOLTAGE_SCALE);
1265                         /* Index into DpmTable.Smio. Drive bits from Smio entry to get this voltage level. */
1266                         table->SmioTable1.Pattern[count].Smio =
1267                                 (uint8_t) count;
1268                         table->Smio[count] |=
1269                                 data->vddci_voltage_table.entries[count].smio_low;
1270                         table->VddciTable[count] =
1271                                 PP_HOST_TO_SMC_US(data->vddci_voltage_table.entries[count].value * VOLTAGE_SCALE);
1272                 }
1273         }
1274
1275         table->SmioMask1 = data->vddci_voltage_table.mask_low;
1276         CONVERT_FROM_HOST_TO_SMC_UL(table->VddciLevelCount);
1277
1278         return 0;
1279 }
1280
1281 /**
1282  * Mvdd table preparation for SMC.
1283  *
1284  * @param    *hwmgr The address of the hardware manager.
1285  * @param    *table The SMC DPM table structure to be populated.
1286  * @return   0
1287  */
1288 static int tonga_populate_smc_mvdd_table(struct pp_hwmgr *hwmgr,
1289                         SMU72_Discrete_DpmTable *table)
1290 {
1291         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1292         uint32_t count;
1293
1294         if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->mvdd_control) {
1295                 table->MvddLevelCount = data->mvdd_voltage_table.count;
1296                 for (count = 0; count < table->MvddLevelCount; count++) {
1297                         table->SmioTable2.Pattern[count].Voltage =
1298                                 PP_HOST_TO_SMC_US(data->mvdd_voltage_table.entries[count].value * VOLTAGE_SCALE);
1299                         /* Index into DpmTable.Smio. Drive bits from Smio entry to get this voltage level.*/
1300                         table->SmioTable2.Pattern[count].Smio =
1301                                 (uint8_t) count;
1302                         table->Smio[count] |=
1303                                 data->mvdd_voltage_table.entries[count].smio_low;
1304                 }
1305                 table->SmioMask2 = data->mvdd_voltage_table.mask_low;
1306
1307                 CONVERT_FROM_HOST_TO_SMC_UL(table->MvddLevelCount);
1308         }
1309
1310         return 0;
1311 }
1312
1313 /**
1314  * Convert a voltage value in mv unit to VID number required by SMU firmware
1315  */
1316 static uint8_t convert_to_vid(uint16_t vddc)
1317 {
1318         return (uint8_t) ((6200 - (vddc * VOLTAGE_SCALE)) / 25);
1319 }
1320
1321
1322 /**
1323  * Preparation of vddc and vddgfx CAC tables for SMC.
1324  *
1325  * @param    hwmgr      the address of the hardware manager
1326  * @param    table     the SMC DPM table structure to be populated
1327  * @return   always 0
1328  */
1329 static int tonga_populate_cac_tables(struct pp_hwmgr *hwmgr,
1330                         SMU72_Discrete_DpmTable *table)
1331 {
1332         uint32_t count;
1333         uint8_t index;
1334         int result = 0;
1335         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1336         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1337         struct phm_ppt_v1_voltage_lookup_table *vddgfx_lookup_table = pptable_info->vddgfx_lookup_table;
1338         struct phm_ppt_v1_voltage_lookup_table *vddc_lookup_table = pptable_info->vddc_lookup_table;
1339
1340         /* pTables is already swapped, so in order to use the value from it, we need to swap it back. */
1341         uint32_t vddcLevelCount = PP_SMC_TO_HOST_UL(table->VddcLevelCount);
1342         uint32_t vddgfxLevelCount = PP_SMC_TO_HOST_UL(table->VddGfxLevelCount);
1343
1344         for (count = 0; count < vddcLevelCount; count++) {
1345                 /* We are populating vddc CAC data to BapmVddc table in split and merged mode */
1346                 index = tonga_get_voltage_index(vddc_lookup_table,
1347                         data->vddc_voltage_table.entries[count].value);
1348                 table->BapmVddcVidLoSidd[count] =
1349                         convert_to_vid(vddc_lookup_table->entries[index].us_cac_low);
1350                 table->BapmVddcVidHiSidd[count] =
1351                         convert_to_vid(vddc_lookup_table->entries[index].us_cac_mid);
1352                 table->BapmVddcVidHiSidd2[count] =
1353                         convert_to_vid(vddc_lookup_table->entries[index].us_cac_high);
1354         }
1355
1356         if ((data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2)) {
1357                 /* We are populating vddgfx CAC data to BapmVddgfx table in split mode */
1358                 for (count = 0; count < vddgfxLevelCount; count++) {
1359                         index = tonga_get_voltage_index(vddgfx_lookup_table,
1360                                 data->vddgfx_voltage_table.entries[count].value);
1361                         table->BapmVddGfxVidLoSidd[count] =
1362                                 convert_to_vid(vddgfx_lookup_table->entries[index].us_cac_low);
1363                         table->BapmVddGfxVidHiSidd[count] =
1364                                 convert_to_vid(vddgfx_lookup_table->entries[index].us_cac_mid);
1365                         table->BapmVddGfxVidHiSidd2[count] =
1366                                 convert_to_vid(vddgfx_lookup_table->entries[index].us_cac_high);
1367                 }
1368         } else {
1369                 for (count = 0; count < vddcLevelCount; count++) {
1370                         index = tonga_get_voltage_index(vddc_lookup_table,
1371                                 data->vddc_voltage_table.entries[count].value);
1372                         table->BapmVddGfxVidLoSidd[count] =
1373                                 convert_to_vid(vddc_lookup_table->entries[index].us_cac_low);
1374                         table->BapmVddGfxVidHiSidd[count] =
1375                                 convert_to_vid(vddc_lookup_table->entries[index].us_cac_mid);
1376                         table->BapmVddGfxVidHiSidd2[count] =
1377                                 convert_to_vid(vddc_lookup_table->entries[index].us_cac_high);
1378                 }
1379         }
1380
1381         return result;
1382 }
1383
1384
1385 /**
1386  * Preparation of voltage tables for SMC.
1387  *
1388  * @param    hwmgr      the address of the hardware manager
1389  * @param    table     the SMC DPM table structure to be populated
1390  * @return   always 0
1391  */
1392
1393 int tonga_populate_smc_voltage_tables(struct pp_hwmgr *hwmgr,
1394         SMU72_Discrete_DpmTable *table)
1395 {
1396         int result;
1397
1398         result = tonga_populate_smc_vddc_table(hwmgr, table);
1399         PP_ASSERT_WITH_CODE(0 == result,
1400                         "can not populate VDDC voltage table to SMC", return -1);
1401
1402         result = tonga_populate_smc_vdd_ci_table(hwmgr, table);
1403         PP_ASSERT_WITH_CODE(0 == result,
1404                         "can not populate VDDCI voltage table to SMC", return -1);
1405
1406         result = tonga_populate_smc_vdd_gfx_table(hwmgr, table);
1407         PP_ASSERT_WITH_CODE(0 == result,
1408                         "can not populate VDDGFX voltage table to SMC", return -1);
1409
1410         result = tonga_populate_smc_mvdd_table(hwmgr, table);
1411         PP_ASSERT_WITH_CODE(0 == result,
1412                         "can not populate MVDD voltage table to SMC", return -1);
1413
1414         result = tonga_populate_cac_tables(hwmgr, table);
1415         PP_ASSERT_WITH_CODE(0 == result,
1416                         "can not populate CAC voltage tables to SMC", return -1);
1417
1418         return 0;
1419 }
1420
1421 /**
1422  * Populates the SMC VRConfig field in DPM table.
1423  *
1424  * @param    hwmgr      the address of the hardware manager
1425  * @param    table     the SMC DPM table structure to be populated
1426  * @return   always 0
1427  */
1428 static int tonga_populate_vr_config(struct pp_hwmgr *hwmgr,
1429                         SMU72_Discrete_DpmTable *table)
1430 {
1431         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1432         uint16_t config;
1433
1434         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_gfx_control) {
1435                 /*  Splitted mode */
1436                 config = VR_SVI2_PLANE_1;
1437                 table->VRConfig |= (config<<VRCONF_VDDGFX_SHIFT);
1438
1439                 if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->voltage_control) {
1440                         config = VR_SVI2_PLANE_2;
1441                         table->VRConfig |= config;
1442                 } else {
1443                         printk(KERN_ERR "[ powerplay ] VDDC and VDDGFX should be both on SVI2 control in splitted mode! \n");
1444                 }
1445         } else {
1446                 /* Merged mode  */
1447                 config = VR_MERGED_WITH_VDDC;
1448                 table->VRConfig |= (config<<VRCONF_VDDGFX_SHIFT);
1449
1450                 /* Set Vddc Voltage Controller  */
1451                 if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->voltage_control) {
1452                         config = VR_SVI2_PLANE_1;
1453                         table->VRConfig |= config;
1454                 } else {
1455                         printk(KERN_ERR "[ powerplay ] VDDC should be on SVI2 control in merged mode! \n");
1456                 }
1457         }
1458
1459         /* Set Vddci Voltage Controller  */
1460         if (TONGA_VOLTAGE_CONTROL_BY_SVID2 == data->vdd_ci_control) {
1461                 config = VR_SVI2_PLANE_2;  /* only in merged mode */
1462                 table->VRConfig |= (config<<VRCONF_VDDCI_SHIFT);
1463         } else if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->vdd_ci_control) {
1464                 config = VR_SMIO_PATTERN_1;
1465                 table->VRConfig |= (config<<VRCONF_VDDCI_SHIFT);
1466         }
1467
1468         /* Set Mvdd Voltage Controller */
1469         if (TONGA_VOLTAGE_CONTROL_BY_GPIO == data->mvdd_control) {
1470                 config = VR_SMIO_PATTERN_2;
1471                 table->VRConfig |= (config<<VRCONF_MVDD_SHIFT);
1472         }
1473
1474         return 0;
1475 }
1476
1477 static int tonga_get_dependecy_volt_by_clk(struct pp_hwmgr *hwmgr,
1478         phm_ppt_v1_clock_voltage_dependency_table *allowed_clock_voltage_table,
1479         uint32_t clock, SMU_VoltageLevel *voltage, uint32_t *mvdd)
1480 {
1481         uint32_t i = 0;
1482         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1483         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1484
1485         /* clock - voltage dependency table is empty table */
1486         if (allowed_clock_voltage_table->count == 0)
1487                 return -1;
1488
1489         for (i = 0; i < allowed_clock_voltage_table->count; i++) {
1490                 /* find first sclk bigger than request */
1491                 if (allowed_clock_voltage_table->entries[i].clk >= clock) {
1492                         voltage->VddGfx = tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1493                                                                 allowed_clock_voltage_table->entries[i].vddgfx);
1494
1495                         voltage->Vddc = tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1496                                                                 allowed_clock_voltage_table->entries[i].vddc);
1497
1498                         if (allowed_clock_voltage_table->entries[i].vddci) {
1499                                 voltage->Vddci = tonga_get_voltage_id(&data->vddci_voltage_table,
1500                                                                         allowed_clock_voltage_table->entries[i].vddci);
1501                         } else {
1502                                 voltage->Vddci = tonga_get_voltage_id(&data->vddci_voltage_table,
1503                                                                         allowed_clock_voltage_table->entries[i].vddc - data->vddc_vddci_delta);
1504                         }
1505
1506                         if (allowed_clock_voltage_table->entries[i].mvdd) {
1507                                 *mvdd = (uint32_t) allowed_clock_voltage_table->entries[i].mvdd;
1508                         }
1509
1510                         voltage->Phases = 1;
1511                         return 0;
1512                 }
1513         }
1514
1515         /* sclk is bigger than max sclk in the dependence table */
1516         voltage->VddGfx = tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1517                 allowed_clock_voltage_table->entries[i-1].vddgfx);
1518         voltage->Vddc = tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1519                 allowed_clock_voltage_table->entries[i-1].vddc);
1520
1521         if (allowed_clock_voltage_table->entries[i-1].vddci) {
1522                 voltage->Vddci = tonga_get_voltage_id(&data->vddci_voltage_table,
1523                         allowed_clock_voltage_table->entries[i-1].vddci);
1524         }
1525         if (allowed_clock_voltage_table->entries[i-1].mvdd) {
1526                 *mvdd = (uint32_t) allowed_clock_voltage_table->entries[i-1].mvdd;
1527         }
1528
1529         return 0;
1530 }
1531
1532 /**
1533  * Call SMC to reset S0/S1 to S1 and Reset SMIO to initial value
1534  *
1535  * @param    hwmgr  the address of the powerplay hardware manager.
1536  * @return   always 0
1537  */
1538 int tonga_reset_to_default(struct pp_hwmgr *hwmgr)
1539 {
1540         return (smum_send_msg_to_smc(hwmgr->smumgr, PPSMC_MSG_ResetToDefaults) == 0) ? 0 : 1;
1541 }
1542
1543 int tonga_populate_memory_timing_parameters(
1544                 struct pp_hwmgr *hwmgr,
1545                 uint32_t engine_clock,
1546                 uint32_t memory_clock,
1547                 struct SMU72_Discrete_MCArbDramTimingTableEntry *arb_regs
1548                 )
1549 {
1550         uint32_t dramTiming;
1551         uint32_t dramTiming2;
1552         uint32_t burstTime;
1553         int result;
1554
1555         result = atomctrl_set_engine_dram_timings_rv770(hwmgr,
1556                                 engine_clock, memory_clock);
1557
1558         PP_ASSERT_WITH_CODE(result == 0,
1559                 "Error calling VBIOS to set DRAM_TIMING.", return result);
1560
1561         dramTiming  = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING);
1562         dramTiming2 = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING2);
1563         burstTime = PHM_READ_FIELD(hwmgr->device, MC_ARB_BURST_TIME, STATE0);
1564
1565         arb_regs->McArbDramTiming  = PP_HOST_TO_SMC_UL(dramTiming);
1566         arb_regs->McArbDramTiming2 = PP_HOST_TO_SMC_UL(dramTiming2);
1567         arb_regs->McArbBurstTime = (uint8_t)burstTime;
1568
1569         return 0;
1570 }
1571
1572 /**
1573  * Setup parameters for the MC ARB.
1574  *
1575  * @param    hwmgr  the address of the powerplay hardware manager.
1576  * @return   always 0
1577  * This function is to be called from the SetPowerState table.
1578  */
1579 int tonga_program_memory_timing_parameters(struct pp_hwmgr *hwmgr)
1580 {
1581         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1582         int result = 0;
1583         SMU72_Discrete_MCArbDramTimingTable  arb_regs;
1584         uint32_t i, j;
1585
1586         memset(&arb_regs, 0x00, sizeof(SMU72_Discrete_MCArbDramTimingTable));
1587
1588         for (i = 0; i < data->dpm_table.sclk_table.count; i++) {
1589                 for (j = 0; j < data->dpm_table.mclk_table.count; j++) {
1590                         result = tonga_populate_memory_timing_parameters
1591                                 (hwmgr, data->dpm_table.sclk_table.dpm_levels[i].value,
1592                                  data->dpm_table.mclk_table.dpm_levels[j].value,
1593                                  &arb_regs.entries[i][j]);
1594
1595                         if (0 != result) {
1596                                 break;
1597                         }
1598                 }
1599         }
1600
1601         if (0 == result) {
1602                 result = tonga_copy_bytes_to_smc(
1603                                 hwmgr->smumgr,
1604                                 data->arb_table_start,
1605                                 (uint8_t *)&arb_regs,
1606                                 sizeof(SMU72_Discrete_MCArbDramTimingTable),
1607                                 data->sram_end
1608                                 );
1609         }
1610
1611         return result;
1612 }
1613
1614 static int tonga_populate_smc_link_level(struct pp_hwmgr *hwmgr, SMU72_Discrete_DpmTable *table)
1615 {
1616         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1617         struct tonga_dpm_table *dpm_table = &data->dpm_table;
1618         uint32_t i;
1619
1620         /* Index (dpm_table->pcie_speed_table.count) is reserved for PCIE boot level. */
1621         for (i = 0; i <= dpm_table->pcie_speed_table.count; i++) {
1622                 table->LinkLevel[i].PcieGenSpeed  =
1623                         (uint8_t)dpm_table->pcie_speed_table.dpm_levels[i].value;
1624                 table->LinkLevel[i].PcieLaneCount =
1625                         (uint8_t)encode_pcie_lane_width(dpm_table->pcie_speed_table.dpm_levels[i].param1);
1626                 table->LinkLevel[i].EnabledForActivity =
1627                         1;
1628                 table->LinkLevel[i].SPC =
1629                         (uint8_t)(data->pcie_spc_cap & 0xff);
1630                 table->LinkLevel[i].DownThreshold =
1631                         PP_HOST_TO_SMC_UL(5);
1632                 table->LinkLevel[i].UpThreshold =
1633                         PP_HOST_TO_SMC_UL(30);
1634         }
1635
1636         data->smc_state_table.LinkLevelCount =
1637                 (uint8_t)dpm_table->pcie_speed_table.count;
1638         data->dpm_level_enable_mask.pcie_dpm_enable_mask =
1639                 tonga_get_dpm_level_enable_mask_value(&dpm_table->pcie_speed_table);
1640
1641         return 0;
1642 }
1643
1644 static int tonga_populate_smc_uvd_level(struct pp_hwmgr *hwmgr,
1645                                         SMU72_Discrete_DpmTable *table)
1646 {
1647         int result = 0;
1648
1649         uint8_t count;
1650         pp_atomctrl_clock_dividers_vi dividers;
1651         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1652         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1653         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
1654
1655         table->UvdLevelCount = (uint8_t) (mm_table->count);
1656         table->UvdBootLevel = 0;
1657
1658         for (count = 0; count < table->UvdLevelCount; count++) {
1659                 table->UvdLevel[count].VclkFrequency = mm_table->entries[count].vclk;
1660                 table->UvdLevel[count].DclkFrequency = mm_table->entries[count].dclk;
1661                 table->UvdLevel[count].MinVoltage.Vddc =
1662                         tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1663                                                 mm_table->entries[count].vddc);
1664                 table->UvdLevel[count].MinVoltage.VddGfx =
1665                         (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) ?
1666                         tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1667                                                 mm_table->entries[count].vddgfx) : 0;
1668                 table->UvdLevel[count].MinVoltage.Vddci =
1669                         tonga_get_voltage_id(&data->vddci_voltage_table,
1670                                              mm_table->entries[count].vddc - data->vddc_vddci_delta);
1671                 table->UvdLevel[count].MinVoltage.Phases = 1;
1672
1673                 /* retrieve divider value for VBIOS */
1674                 result = atomctrl_get_dfs_pll_dividers_vi(hwmgr,
1675                                                           table->UvdLevel[count].VclkFrequency, &dividers);
1676                 PP_ASSERT_WITH_CODE((0 == result),
1677                                     "can not find divide id for Vclk clock", return result);
1678
1679                 table->UvdLevel[count].VclkDivider = (uint8_t)dividers.pll_post_divider;
1680
1681                 result = atomctrl_get_dfs_pll_dividers_vi(hwmgr,
1682                                                           table->UvdLevel[count].DclkFrequency, &dividers);
1683                 PP_ASSERT_WITH_CODE((0 == result),
1684                                     "can not find divide id for Dclk clock", return result);
1685
1686                 table->UvdLevel[count].DclkDivider = (uint8_t)dividers.pll_post_divider;
1687
1688                 CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].VclkFrequency);
1689                 CONVERT_FROM_HOST_TO_SMC_UL(table->UvdLevel[count].DclkFrequency);
1690                 //CONVERT_FROM_HOST_TO_SMC_UL((uint32_t)table->UvdLevel[count].MinVoltage);
1691         }
1692
1693         return result;
1694
1695 }
1696
1697 static int tonga_populate_smc_vce_level(struct pp_hwmgr *hwmgr,
1698                 SMU72_Discrete_DpmTable *table)
1699 {
1700         int result = 0;
1701
1702         uint8_t count;
1703         pp_atomctrl_clock_dividers_vi dividers;
1704         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1705         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1706         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
1707
1708         table->VceLevelCount = (uint8_t) (mm_table->count);
1709         table->VceBootLevel = 0;
1710
1711         for (count = 0; count < table->VceLevelCount; count++) {
1712                 table->VceLevel[count].Frequency =
1713                         mm_table->entries[count].eclk;
1714                 table->VceLevel[count].MinVoltage.Vddc =
1715                         tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1716                                 mm_table->entries[count].vddc);
1717                 table->VceLevel[count].MinVoltage.VddGfx =
1718                         (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) ?
1719                         tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1720                                 mm_table->entries[count].vddgfx) : 0;
1721                 table->VceLevel[count].MinVoltage.Vddci =
1722                         tonga_get_voltage_id(&data->vddci_voltage_table,
1723                                 mm_table->entries[count].vddc - data->vddc_vddci_delta);
1724                 table->VceLevel[count].MinVoltage.Phases = 1;
1725
1726                 /* retrieve divider value for VBIOS */
1727                 result = atomctrl_get_dfs_pll_dividers_vi(hwmgr,
1728                                         table->VceLevel[count].Frequency, &dividers);
1729                 PP_ASSERT_WITH_CODE((0 == result),
1730                                 "can not find divide id for VCE engine clock", return result);
1731
1732                 table->VceLevel[count].Divider = (uint8_t)dividers.pll_post_divider;
1733
1734                 CONVERT_FROM_HOST_TO_SMC_UL(table->VceLevel[count].Frequency);
1735         }
1736
1737         return result;
1738 }
1739
1740 static int tonga_populate_smc_acp_level(struct pp_hwmgr *hwmgr,
1741                 SMU72_Discrete_DpmTable *table)
1742 {
1743         int result = 0;
1744         uint8_t count;
1745         pp_atomctrl_clock_dividers_vi dividers;
1746         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1747         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1748         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
1749
1750         table->AcpLevelCount = (uint8_t) (mm_table->count);
1751         table->AcpBootLevel = 0;
1752
1753         for (count = 0; count < table->AcpLevelCount; count++) {
1754                 table->AcpLevel[count].Frequency =
1755                         pptable_info->mm_dep_table->entries[count].aclk;
1756                 table->AcpLevel[count].MinVoltage.Vddc =
1757                         tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1758                         mm_table->entries[count].vddc);
1759                 table->AcpLevel[count].MinVoltage.VddGfx =
1760                         (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) ?
1761                         tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1762                                 mm_table->entries[count].vddgfx) : 0;
1763                 table->AcpLevel[count].MinVoltage.Vddci =
1764                         tonga_get_voltage_id(&data->vddci_voltage_table,
1765                                 mm_table->entries[count].vddc - data->vddc_vddci_delta);
1766                 table->AcpLevel[count].MinVoltage.Phases = 1;
1767
1768                 /* retrieve divider value for VBIOS */
1769                 result = atomctrl_get_dfs_pll_dividers_vi(hwmgr,
1770                         table->AcpLevel[count].Frequency, &dividers);
1771                 PP_ASSERT_WITH_CODE((0 == result),
1772                         "can not find divide id for engine clock", return result);
1773
1774                 table->AcpLevel[count].Divider = (uint8_t)dividers.pll_post_divider;
1775
1776                 CONVERT_FROM_HOST_TO_SMC_UL(table->AcpLevel[count].Frequency);
1777         }
1778
1779         return result;
1780 }
1781
1782 static int tonga_populate_smc_samu_level(struct pp_hwmgr *hwmgr,
1783         SMU72_Discrete_DpmTable *table)
1784 {
1785         int result = 0;
1786         uint8_t count;
1787         pp_atomctrl_clock_dividers_vi dividers;
1788         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1789         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
1790         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
1791
1792         table->SamuBootLevel = 0;
1793         table->SamuLevelCount = (uint8_t) (mm_table->count);
1794
1795         for (count = 0; count < table->SamuLevelCount; count++) {
1796                 /* not sure whether we need evclk or not */
1797                 table->SamuLevel[count].Frequency =
1798                         pptable_info->mm_dep_table->entries[count].samclock;
1799                 table->SamuLevel[count].MinVoltage.Vddc =
1800                         tonga_get_voltage_index(pptable_info->vddc_lookup_table,
1801                                 mm_table->entries[count].vddc);
1802                 table->SamuLevel[count].MinVoltage.VddGfx =
1803                         (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) ?
1804                         tonga_get_voltage_index(pptable_info->vddgfx_lookup_table,
1805                                 mm_table->entries[count].vddgfx) : 0;
1806                 table->SamuLevel[count].MinVoltage.Vddci =
1807                         tonga_get_voltage_id(&data->vddci_voltage_table,
1808                                 mm_table->entries[count].vddc - data->vddc_vddci_delta);
1809                 table->SamuLevel[count].MinVoltage.Phases = 1;
1810
1811                 /* retrieve divider value for VBIOS */
1812                 result = atomctrl_get_dfs_pll_dividers_vi(hwmgr,
1813                                         table->SamuLevel[count].Frequency, &dividers);
1814                 PP_ASSERT_WITH_CODE((0 == result),
1815                         "can not find divide id for samu clock", return result);
1816
1817                 table->SamuLevel[count].Divider = (uint8_t)dividers.pll_post_divider;
1818
1819                 CONVERT_FROM_HOST_TO_SMC_UL(table->SamuLevel[count].Frequency);
1820         }
1821
1822         return result;
1823 }
1824
1825 /**
1826  * Populates the SMC MCLK structure using the provided memory clock
1827  *
1828  * @param    hwmgr      the address of the hardware manager
1829  * @param    memory_clock the memory clock to use to populate the structure
1830  * @param    sclk        the SMC SCLK structure to be populated
1831  */
1832 static int tonga_calculate_mclk_params(
1833                 struct pp_hwmgr *hwmgr,
1834                 uint32_t memory_clock,
1835                 SMU72_Discrete_MemoryLevel *mclk,
1836                 bool strobe_mode,
1837                 bool dllStateOn
1838                 )
1839 {
1840         const tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
1841         uint32_t  dll_cntl = data->clock_registers.vDLL_CNTL;
1842         uint32_t  mclk_pwrmgt_cntl = data->clock_registers.vMCLK_PWRMGT_CNTL;
1843         uint32_t  mpll_ad_func_cntl = data->clock_registers.vMPLL_AD_FUNC_CNTL;
1844         uint32_t  mpll_dq_func_cntl = data->clock_registers.vMPLL_DQ_FUNC_CNTL;
1845         uint32_t  mpll_func_cntl = data->clock_registers.vMPLL_FUNC_CNTL;
1846         uint32_t  mpll_func_cntl_1 = data->clock_registers.vMPLL_FUNC_CNTL_1;
1847         uint32_t  mpll_func_cntl_2 = data->clock_registers.vMPLL_FUNC_CNTL_2;
1848         uint32_t  mpll_ss1 = data->clock_registers.vMPLL_SS1;
1849         uint32_t  mpll_ss2 = data->clock_registers.vMPLL_SS2;
1850
1851         pp_atomctrl_memory_clock_param mpll_param;
1852         int result;
1853
1854         result = atomctrl_get_memory_pll_dividers_si(hwmgr,
1855                                 memory_clock, &mpll_param, strobe_mode);
1856         PP_ASSERT_WITH_CODE(0 == result,
1857                 "Error retrieving Memory Clock Parameters from VBIOS.", return result);
1858
1859         /* MPLL_FUNC_CNTL setup*/
1860         mpll_func_cntl = PHM_SET_FIELD(mpll_func_cntl, MPLL_FUNC_CNTL, BWCTRL, mpll_param.bw_ctrl);
1861
1862         /* MPLL_FUNC_CNTL_1 setup*/
1863         mpll_func_cntl_1  = PHM_SET_FIELD(mpll_func_cntl_1,
1864                                                         MPLL_FUNC_CNTL_1, CLKF, mpll_param.mpll_fb_divider.cl_kf);
1865         mpll_func_cntl_1  = PHM_SET_FIELD(mpll_func_cntl_1,
1866                                                         MPLL_FUNC_CNTL_1, CLKFRAC, mpll_param.mpll_fb_divider.clk_frac);
1867         mpll_func_cntl_1  = PHM_SET_FIELD(mpll_func_cntl_1,
1868                                                         MPLL_FUNC_CNTL_1, VCO_MODE, mpll_param.vco_mode);
1869
1870         /* MPLL_AD_FUNC_CNTL setup*/
1871         mpll_ad_func_cntl = PHM_SET_FIELD(mpll_ad_func_cntl,
1872                                                         MPLL_AD_FUNC_CNTL, YCLK_POST_DIV, mpll_param.mpll_post_divider);
1873
1874         if (data->is_memory_GDDR5) {
1875                 /* MPLL_DQ_FUNC_CNTL setup*/
1876                 mpll_dq_func_cntl  = PHM_SET_FIELD(mpll_dq_func_cntl,
1877                                                                 MPLL_DQ_FUNC_CNTL, YCLK_SEL, mpll_param.yclk_sel);
1878                 mpll_dq_func_cntl  = PHM_SET_FIELD(mpll_dq_func_cntl,
1879                                                                 MPLL_DQ_FUNC_CNTL, YCLK_POST_DIV, mpll_param.mpll_post_divider);
1880         }
1881
1882         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
1883                         PHM_PlatformCaps_MemorySpreadSpectrumSupport)) {
1884                 /*
1885                  ************************************
1886                  Fref = Reference Frequency
1887                  NF = Feedback divider ratio
1888                  NR = Reference divider ratio
1889                  Fnom = Nominal VCO output frequency = Fref * NF / NR
1890                  Fs = Spreading Rate
1891                  D = Percentage down-spread / 2
1892                  Fint = Reference input frequency to PFD = Fref / NR
1893                  NS = Spreading rate divider ratio = int(Fint / (2 * Fs))
1894                  CLKS = NS - 1 = ISS_STEP_NUM[11:0]
1895                  NV = D * Fs / Fnom * 4 * ((Fnom/Fref * NR) ^ 2)
1896                  CLKV = 65536 * NV = ISS_STEP_SIZE[25:0]
1897                  *************************************
1898                  */
1899                 pp_atomctrl_internal_ss_info ss_info;
1900                 uint32_t freq_nom;
1901                 uint32_t tmp;
1902                 uint32_t reference_clock = atomctrl_get_mpll_reference_clock(hwmgr);
1903
1904                 /* for GDDR5 for all modes and DDR3 */
1905                 if (1 == mpll_param.qdr)
1906                         freq_nom = memory_clock * 4 * (1 << mpll_param.mpll_post_divider);
1907                 else
1908                         freq_nom = memory_clock * 2 * (1 << mpll_param.mpll_post_divider);
1909
1910                 /* tmp = (freq_nom / reference_clock * reference_divider) ^ 2  Note: S.I. reference_divider = 1*/
1911                 tmp = (freq_nom / reference_clock);
1912                 tmp = tmp * tmp;
1913
1914                 if (0 == atomctrl_get_memory_clock_spread_spectrum(hwmgr, freq_nom, &ss_info)) {
1915                         /* ss_info.speed_spectrum_percentage -- in unit of 0.01% */
1916                         /* ss.Info.speed_spectrum_rate -- in unit of khz */
1917                         /* CLKS = reference_clock / (2 * speed_spectrum_rate * reference_divider) * 10 */
1918                         /*     = reference_clock * 5 / speed_spectrum_rate */
1919                         uint32_t clks = reference_clock * 5 / ss_info.speed_spectrum_rate;
1920
1921                         /* CLKV = 65536 * speed_spectrum_percentage / 2 * spreadSpecrumRate / freq_nom * 4 / 100000 * ((freq_nom / reference_clock) ^ 2) */
1922                         /*     = 131 * speed_spectrum_percentage * speed_spectrum_rate / 100 * ((freq_nom / reference_clock) ^ 2) / freq_nom */
1923                         uint32_t clkv =
1924                                 (uint32_t)((((131 * ss_info.speed_spectrum_percentage *
1925                                                         ss_info.speed_spectrum_rate) / 100) * tmp) / freq_nom);
1926
1927                         mpll_ss1 = PHM_SET_FIELD(mpll_ss1, MPLL_SS1, CLKV, clkv);
1928                         mpll_ss2 = PHM_SET_FIELD(mpll_ss2, MPLL_SS2, CLKS, clks);
1929                 }
1930         }
1931
1932         /* MCLK_PWRMGT_CNTL setup */
1933         mclk_pwrmgt_cntl = PHM_SET_FIELD(mclk_pwrmgt_cntl,
1934                 MCLK_PWRMGT_CNTL, DLL_SPEED, mpll_param.dll_speed);
1935         mclk_pwrmgt_cntl = PHM_SET_FIELD(mclk_pwrmgt_cntl,
1936                 MCLK_PWRMGT_CNTL, MRDCK0_PDNB, dllStateOn);
1937         mclk_pwrmgt_cntl = PHM_SET_FIELD(mclk_pwrmgt_cntl,
1938                 MCLK_PWRMGT_CNTL, MRDCK1_PDNB, dllStateOn);
1939
1940
1941         /* Save the result data to outpupt memory level structure */
1942         mclk->MclkFrequency   = memory_clock;
1943         mclk->MpllFuncCntl    = mpll_func_cntl;
1944         mclk->MpllFuncCntl_1  = mpll_func_cntl_1;
1945         mclk->MpllFuncCntl_2  = mpll_func_cntl_2;
1946         mclk->MpllAdFuncCntl  = mpll_ad_func_cntl;
1947         mclk->MpllDqFuncCntl  = mpll_dq_func_cntl;
1948         mclk->MclkPwrmgtCntl  = mclk_pwrmgt_cntl;
1949         mclk->DllCntl         = dll_cntl;
1950         mclk->MpllSs1         = mpll_ss1;
1951         mclk->MpllSs2         = mpll_ss2;
1952
1953         return 0;
1954 }
1955
1956 static uint8_t tonga_get_mclk_frequency_ratio(uint32_t memory_clock,
1957                 bool strobe_mode)
1958 {
1959         uint8_t mc_para_index;
1960
1961         if (strobe_mode) {
1962                 if (memory_clock < 12500) {
1963                         mc_para_index = 0x00;
1964                 } else if (memory_clock > 47500) {
1965                         mc_para_index = 0x0f;
1966                 } else {
1967                         mc_para_index = (uint8_t)((memory_clock - 10000) / 2500);
1968                 }
1969         } else {
1970                 if (memory_clock < 65000) {
1971                         mc_para_index = 0x00;
1972                 } else if (memory_clock > 135000) {
1973                         mc_para_index = 0x0f;
1974                 } else {
1975                         mc_para_index = (uint8_t)((memory_clock - 60000) / 5000);
1976                 }
1977         }
1978
1979         return mc_para_index;
1980 }
1981
1982 static uint8_t tonga_get_ddr3_mclk_frequency_ratio(uint32_t memory_clock)
1983 {
1984         uint8_t mc_para_index;
1985
1986         if (memory_clock < 10000) {
1987                 mc_para_index = 0;
1988         } else if (memory_clock >= 80000) {
1989                 mc_para_index = 0x0f;
1990         } else {
1991                 mc_para_index = (uint8_t)((memory_clock - 10000) / 5000 + 1);
1992         }
1993
1994         return mc_para_index;
1995 }
1996
1997 static int tonga_populate_single_memory_level(
1998                 struct pp_hwmgr *hwmgr,
1999                 uint32_t memory_clock,
2000                 SMU72_Discrete_MemoryLevel *memory_level
2001                 )
2002 {
2003         uint32_t minMvdd = 0;
2004         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2005         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2006         int result = 0;
2007         bool dllStateOn;
2008         struct cgs_display_info info = {0};
2009
2010
2011         if (NULL != pptable_info->vdd_dep_on_mclk) {
2012                 result = tonga_get_dependecy_volt_by_clk(hwmgr,
2013                         pptable_info->vdd_dep_on_mclk, memory_clock, &memory_level->MinVoltage, &minMvdd);
2014                 PP_ASSERT_WITH_CODE((0 == result),
2015                         "can not find MinVddc voltage value from memory VDDC voltage dependency table", return result);
2016         }
2017
2018         if (data->mvdd_control == TONGA_VOLTAGE_CONTROL_NONE) {
2019                 memory_level->MinMvdd = data->vbios_boot_state.mvdd_bootup_value;
2020         } else {
2021                 memory_level->MinMvdd = minMvdd;
2022         }
2023         memory_level->EnabledForThrottle = 1;
2024         memory_level->EnabledForActivity = 0;
2025         memory_level->UpHyst = 0;
2026         memory_level->DownHyst = 100;
2027         memory_level->VoltageDownHyst = 0;
2028
2029         /* Indicates maximum activity level for this performance level.*/
2030         memory_level->ActivityLevel = (uint16_t)data->mclk_activity_target;
2031         memory_level->StutterEnable = 0;
2032         memory_level->StrobeEnable = 0;
2033         memory_level->EdcReadEnable = 0;
2034         memory_level->EdcWriteEnable = 0;
2035         memory_level->RttEnable = 0;
2036
2037         /* default set to low watermark. Highest level will be set to high later.*/
2038         memory_level->DisplayWatermark = PPSMC_DISPLAY_WATERMARK_LOW;
2039
2040         cgs_get_active_displays_info(hwmgr->device, &info);
2041         data->display_timing.num_existing_displays = info.display_count;
2042
2043         if ((data->mclk_stutter_mode_threshold != 0) &&
2044             (memory_clock <= data->mclk_stutter_mode_threshold) &&
2045             (data->is_uvd_enabled == 0)
2046             && (PHM_READ_FIELD(hwmgr->device, DPG_PIPE_STUTTER_CONTROL, STUTTER_ENABLE) & 0x1)
2047             && (data->display_timing.num_existing_displays <= 2)
2048             && (data->display_timing.num_existing_displays != 0))
2049                 memory_level->StutterEnable = 1;
2050
2051         /* decide strobe mode*/
2052         memory_level->StrobeEnable = (data->mclk_strobe_mode_threshold != 0) &&
2053                 (memory_clock <= data->mclk_strobe_mode_threshold);
2054
2055         /* decide EDC mode and memory clock ratio*/
2056         if (data->is_memory_GDDR5) {
2057                 memory_level->StrobeRatio = tonga_get_mclk_frequency_ratio(memory_clock,
2058                                         memory_level->StrobeEnable);
2059
2060                 if ((data->mclk_edc_enable_threshold != 0) &&
2061                                 (memory_clock > data->mclk_edc_enable_threshold)) {
2062                         memory_level->EdcReadEnable = 1;
2063                 }
2064
2065                 if ((data->mclk_edc_wr_enable_threshold != 0) &&
2066                                 (memory_clock > data->mclk_edc_wr_enable_threshold)) {
2067                         memory_level->EdcWriteEnable = 1;
2068                 }
2069
2070                 if (memory_level->StrobeEnable) {
2071                         if (tonga_get_mclk_frequency_ratio(memory_clock, 1) >=
2072                                         ((cgs_read_register(hwmgr->device, mmMC_SEQ_MISC7) >> 16) & 0xf)) {
2073                                 dllStateOn = ((cgs_read_register(hwmgr->device, mmMC_SEQ_MISC5) >> 1) & 0x1) ? 1 : 0;
2074                         } else {
2075                                 dllStateOn = ((cgs_read_register(hwmgr->device, mmMC_SEQ_MISC6) >> 1) & 0x1) ? 1 : 0;
2076                         }
2077
2078                 } else {
2079                         dllStateOn = data->dll_defaule_on;
2080                 }
2081         } else {
2082                 memory_level->StrobeRatio =
2083                         tonga_get_ddr3_mclk_frequency_ratio(memory_clock);
2084                 dllStateOn = ((cgs_read_register(hwmgr->device, mmMC_SEQ_MISC5) >> 1) & 0x1) ? 1 : 0;
2085         }
2086
2087         result = tonga_calculate_mclk_params(hwmgr,
2088                 memory_clock, memory_level, memory_level->StrobeEnable, dllStateOn);
2089
2090         if (0 == result) {
2091                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MinMvdd);
2092                 /* MCLK frequency in units of 10KHz*/
2093                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MclkFrequency);
2094                 /* Indicates maximum activity level for this performance level.*/
2095                 CONVERT_FROM_HOST_TO_SMC_US(memory_level->ActivityLevel);
2096                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllFuncCntl);
2097                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllFuncCntl_1);
2098                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllFuncCntl_2);
2099                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllAdFuncCntl);
2100                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllDqFuncCntl);
2101                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MclkPwrmgtCntl);
2102                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->DllCntl);
2103                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllSs1);
2104                 CONVERT_FROM_HOST_TO_SMC_UL(memory_level->MpllSs2);
2105         }
2106
2107         return result;
2108 }
2109
2110 /**
2111  * Populates the SMC MVDD structure using the provided memory clock.
2112  *
2113  * @param    hwmgr      the address of the hardware manager
2114  * @param    mclk        the MCLK value to be used in the decision if MVDD should be high or low.
2115  * @param    voltage     the SMC VOLTAGE structure to be populated
2116  */
2117 int tonga_populate_mvdd_value(struct pp_hwmgr *hwmgr, uint32_t mclk, SMIO_Pattern *smio_pattern)
2118 {
2119         const tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2120         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2121         uint32_t i = 0;
2122
2123         if (TONGA_VOLTAGE_CONTROL_NONE != data->mvdd_control) {
2124                 /* find mvdd value which clock is more than request */
2125                 for (i = 0; i < pptable_info->vdd_dep_on_mclk->count; i++) {
2126                         if (mclk <= pptable_info->vdd_dep_on_mclk->entries[i].clk) {
2127                                 /* Always round to higher voltage. */
2128                                 smio_pattern->Voltage = data->mvdd_voltage_table.entries[i].value;
2129                                 break;
2130                         }
2131                 }
2132
2133                 PP_ASSERT_WITH_CODE(i < pptable_info->vdd_dep_on_mclk->count,
2134                         "MVDD Voltage is outside the supported range.", return -1);
2135
2136         } else {
2137                 return -1;
2138         }
2139
2140         return 0;
2141 }
2142
2143
2144 static int tonga_populate_smv_acpi_level(struct pp_hwmgr *hwmgr,
2145         SMU72_Discrete_DpmTable *table)
2146 {
2147         int result = 0;
2148         const tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2149         pp_atomctrl_clock_dividers_vi dividers;
2150         SMIO_Pattern voltage_level;
2151         uint32_t spll_func_cntl    = data->clock_registers.vCG_SPLL_FUNC_CNTL;
2152         uint32_t spll_func_cntl_2  = data->clock_registers.vCG_SPLL_FUNC_CNTL_2;
2153         uint32_t dll_cntl          = data->clock_registers.vDLL_CNTL;
2154         uint32_t mclk_pwrmgt_cntl  = data->clock_registers.vMCLK_PWRMGT_CNTL;
2155
2156         /* The ACPI state should not do DPM on DC (or ever).*/
2157         table->ACPILevel.Flags &= ~PPSMC_SWSTATE_FLAG_DC;
2158
2159         table->ACPILevel.MinVoltage = data->smc_state_table.GraphicsLevel[0].MinVoltage;
2160
2161         /* assign zero for now*/
2162         table->ACPILevel.SclkFrequency = atomctrl_get_reference_clock(hwmgr);
2163
2164         /* get the engine clock dividers for this clock value*/
2165         result = atomctrl_get_engine_pll_dividers_vi(hwmgr,
2166                 table->ACPILevel.SclkFrequency,  &dividers);
2167
2168         PP_ASSERT_WITH_CODE(result == 0,
2169                 "Error retrieving Engine Clock dividers from VBIOS.", return result);
2170
2171         /* divider ID for required SCLK*/
2172         table->ACPILevel.SclkDid = (uint8_t)dividers.pll_post_divider;
2173         table->ACPILevel.DisplayWatermark = PPSMC_DISPLAY_WATERMARK_LOW;
2174         table->ACPILevel.DeepSleepDivId = 0;
2175
2176         spll_func_cntl      = PHM_SET_FIELD(spll_func_cntl,
2177                                                         CG_SPLL_FUNC_CNTL,   SPLL_PWRON,     0);
2178         spll_func_cntl      = PHM_SET_FIELD(spll_func_cntl,
2179                                                         CG_SPLL_FUNC_CNTL,   SPLL_RESET,     1);
2180         spll_func_cntl_2    = PHM_SET_FIELD(spll_func_cntl_2,
2181                                                         CG_SPLL_FUNC_CNTL_2, SCLK_MUX_SEL,   4);
2182
2183         table->ACPILevel.CgSpllFuncCntl = spll_func_cntl;
2184         table->ACPILevel.CgSpllFuncCntl2 = spll_func_cntl_2;
2185         table->ACPILevel.CgSpllFuncCntl3 = data->clock_registers.vCG_SPLL_FUNC_CNTL_3;
2186         table->ACPILevel.CgSpllFuncCntl4 = data->clock_registers.vCG_SPLL_FUNC_CNTL_4;
2187         table->ACPILevel.SpllSpreadSpectrum = data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM;
2188         table->ACPILevel.SpllSpreadSpectrum2 = data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM_2;
2189         table->ACPILevel.CcPwrDynRm = 0;
2190         table->ACPILevel.CcPwrDynRm1 = 0;
2191
2192
2193         /* For various features to be enabled/disabled while this level is active.*/
2194         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.Flags);
2195         /* SCLK frequency in units of 10KHz*/
2196         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.SclkFrequency);
2197         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CgSpllFuncCntl);
2198         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CgSpllFuncCntl2);
2199         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CgSpllFuncCntl3);
2200         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CgSpllFuncCntl4);
2201         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.SpllSpreadSpectrum);
2202         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.SpllSpreadSpectrum2);
2203         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CcPwrDynRm);
2204         CONVERT_FROM_HOST_TO_SMC_UL(table->ACPILevel.CcPwrDynRm1);
2205
2206         /* table->MemoryACPILevel.MinVddcPhases = table->ACPILevel.MinVddcPhases;*/
2207         table->MemoryACPILevel.MinVoltage = data->smc_state_table.MemoryLevel[0].MinVoltage;
2208
2209         /*  CONVERT_FROM_HOST_TO_SMC_UL(table->MemoryACPILevel.MinVoltage);*/
2210
2211         if (0 == tonga_populate_mvdd_value(hwmgr, 0, &voltage_level))
2212                 table->MemoryACPILevel.MinMvdd =
2213                         PP_HOST_TO_SMC_UL(voltage_level.Voltage * VOLTAGE_SCALE);
2214         else
2215                 table->MemoryACPILevel.MinMvdd = 0;
2216
2217         /* Force reset on DLL*/
2218         mclk_pwrmgt_cntl    = PHM_SET_FIELD(mclk_pwrmgt_cntl,
2219                 MCLK_PWRMGT_CNTL, MRDCK0_RESET, 0x1);
2220         mclk_pwrmgt_cntl    = PHM_SET_FIELD(mclk_pwrmgt_cntl,
2221                 MCLK_PWRMGT_CNTL, MRDCK1_RESET, 0x1);
2222
2223         /* Disable DLL in ACPIState*/
2224         mclk_pwrmgt_cntl    = PHM_SET_FIELD(mclk_pwrmgt_cntl,
2225                 MCLK_PWRMGT_CNTL, MRDCK0_PDNB, 0);
2226         mclk_pwrmgt_cntl    = PHM_SET_FIELD(mclk_pwrmgt_cntl,
2227                 MCLK_PWRMGT_CNTL, MRDCK1_PDNB, 0);
2228
2229         /* Enable DLL bypass signal*/
2230         dll_cntl            = PHM_SET_FIELD(dll_cntl,
2231                 DLL_CNTL, MRDCK0_BYPASS, 0);
2232         dll_cntl            = PHM_SET_FIELD(dll_cntl,
2233                 DLL_CNTL, MRDCK1_BYPASS, 0);
2234
2235         table->MemoryACPILevel.DllCntl            =
2236                 PP_HOST_TO_SMC_UL(dll_cntl);
2237         table->MemoryACPILevel.MclkPwrmgtCntl     =
2238                 PP_HOST_TO_SMC_UL(mclk_pwrmgt_cntl);
2239         table->MemoryACPILevel.MpllAdFuncCntl     =
2240                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_AD_FUNC_CNTL);
2241         table->MemoryACPILevel.MpllDqFuncCntl     =
2242                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_DQ_FUNC_CNTL);
2243         table->MemoryACPILevel.MpllFuncCntl       =
2244                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_FUNC_CNTL);
2245         table->MemoryACPILevel.MpllFuncCntl_1     =
2246                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_FUNC_CNTL_1);
2247         table->MemoryACPILevel.MpllFuncCntl_2     =
2248                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_FUNC_CNTL_2);
2249         table->MemoryACPILevel.MpllSs1            =
2250                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_SS1);
2251         table->MemoryACPILevel.MpllSs2            =
2252                 PP_HOST_TO_SMC_UL(data->clock_registers.vMPLL_SS2);
2253
2254         table->MemoryACPILevel.EnabledForThrottle = 0;
2255         table->MemoryACPILevel.EnabledForActivity = 0;
2256         table->MemoryACPILevel.UpHyst = 0;
2257         table->MemoryACPILevel.DownHyst = 100;
2258         table->MemoryACPILevel.VoltageDownHyst = 0;
2259         /* Indicates maximum activity level for this performance level.*/
2260         table->MemoryACPILevel.ActivityLevel = PP_HOST_TO_SMC_US((uint16_t)data->mclk_activity_target);
2261
2262         table->MemoryACPILevel.StutterEnable = 0;
2263         table->MemoryACPILevel.StrobeEnable = 0;
2264         table->MemoryACPILevel.EdcReadEnable = 0;
2265         table->MemoryACPILevel.EdcWriteEnable = 0;
2266         table->MemoryACPILevel.RttEnable = 0;
2267
2268         return result;
2269 }
2270
2271 static int tonga_find_boot_level(struct tonga_single_dpm_table *table, uint32_t value, uint32_t *boot_level)
2272 {
2273         int result = 0;
2274         uint32_t i;
2275
2276         for (i = 0; i < table->count; i++) {
2277                 if (value == table->dpm_levels[i].value) {
2278                         *boot_level = i;
2279                         result = 0;
2280                 }
2281         }
2282         return result;
2283 }
2284
2285 static int tonga_populate_smc_boot_level(struct pp_hwmgr *hwmgr,
2286                         SMU72_Discrete_DpmTable *table)
2287 {
2288         int result = 0;
2289         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2290
2291         table->GraphicsBootLevel  = 0;        /* 0 == DPM[0] (low), etc. */
2292         table->MemoryBootLevel    = 0;        /* 0 == DPM[0] (low), etc. */
2293
2294         /* find boot level from dpm table*/
2295         result = tonga_find_boot_level(&(data->dpm_table.sclk_table),
2296         data->vbios_boot_state.sclk_bootup_value,
2297         (uint32_t *)&(data->smc_state_table.GraphicsBootLevel));
2298
2299         if (0 != result) {
2300                 data->smc_state_table.GraphicsBootLevel = 0;
2301                 printk(KERN_ERR "[ powerplay ] VBIOS did not find boot engine clock value \
2302                         in dependency table. Using Graphics DPM level 0!");
2303                 result = 0;
2304         }
2305
2306         result = tonga_find_boot_level(&(data->dpm_table.mclk_table),
2307                 data->vbios_boot_state.mclk_bootup_value,
2308                 (uint32_t *)&(data->smc_state_table.MemoryBootLevel));
2309
2310         if (0 != result) {
2311                 data->smc_state_table.MemoryBootLevel = 0;
2312                 printk(KERN_ERR "[ powerplay ] VBIOS did not find boot engine clock value \
2313                         in dependency table. Using Memory DPM level 0!");
2314                 result = 0;
2315         }
2316
2317         table->BootVoltage.Vddc =
2318                 tonga_get_voltage_id(&(data->vddc_voltage_table),
2319                         data->vbios_boot_state.vddc_bootup_value);
2320         table->BootVoltage.VddGfx =
2321                 tonga_get_voltage_id(&(data->vddgfx_voltage_table),
2322                         data->vbios_boot_state.vddgfx_bootup_value);
2323         table->BootVoltage.Vddci =
2324                 tonga_get_voltage_id(&(data->vddci_voltage_table),
2325                         data->vbios_boot_state.vddci_bootup_value);
2326         table->BootMVdd = data->vbios_boot_state.mvdd_bootup_value;
2327
2328         CONVERT_FROM_HOST_TO_SMC_US(table->BootMVdd);
2329
2330         return result;
2331 }
2332
2333
2334 /**
2335  * Calculates the SCLK dividers using the provided engine clock
2336  *
2337  * @param    hwmgr      the address of the hardware manager
2338  * @param    engine_clock the engine clock to use to populate the structure
2339  * @param    sclk        the SMC SCLK structure to be populated
2340  */
2341 int tonga_calculate_sclk_params(struct pp_hwmgr *hwmgr,
2342                 uint32_t engine_clock, SMU72_Discrete_GraphicsLevel *sclk)
2343 {
2344         const tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2345         pp_atomctrl_clock_dividers_vi dividers;
2346         uint32_t spll_func_cntl            = data->clock_registers.vCG_SPLL_FUNC_CNTL;
2347         uint32_t spll_func_cntl_3          = data->clock_registers.vCG_SPLL_FUNC_CNTL_3;
2348         uint32_t spll_func_cntl_4          = data->clock_registers.vCG_SPLL_FUNC_CNTL_4;
2349         uint32_t cg_spll_spread_spectrum   = data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM;
2350         uint32_t cg_spll_spread_spectrum_2 = data->clock_registers.vCG_SPLL_SPREAD_SPECTRUM_2;
2351         uint32_t    reference_clock;
2352         uint32_t reference_divider;
2353         uint32_t fbdiv;
2354         int result;
2355
2356         /* get the engine clock dividers for this clock value*/
2357         result = atomctrl_get_engine_pll_dividers_vi(hwmgr, engine_clock,  &dividers);
2358
2359         PP_ASSERT_WITH_CODE(result == 0,
2360                 "Error retrieving Engine Clock dividers from VBIOS.", return result);
2361
2362         /* To get FBDIV we need to multiply this by 16384 and divide it by Fref.*/
2363         reference_clock = atomctrl_get_reference_clock(hwmgr);
2364
2365         reference_divider = 1 + dividers.uc_pll_ref_div;
2366
2367         /* low 14 bits is fraction and high 12 bits is divider*/
2368         fbdiv = dividers.ul_fb_div.ul_fb_divider & 0x3FFFFFF;
2369
2370         /* SPLL_FUNC_CNTL setup*/
2371         spll_func_cntl = PHM_SET_FIELD(spll_func_cntl,
2372                 CG_SPLL_FUNC_CNTL, SPLL_REF_DIV, dividers.uc_pll_ref_div);
2373         spll_func_cntl = PHM_SET_FIELD(spll_func_cntl,
2374                 CG_SPLL_FUNC_CNTL, SPLL_PDIV_A,  dividers.uc_pll_post_div);
2375
2376         /* SPLL_FUNC_CNTL_3 setup*/
2377         spll_func_cntl_3 = PHM_SET_FIELD(spll_func_cntl_3,
2378                 CG_SPLL_FUNC_CNTL_3, SPLL_FB_DIV, fbdiv);
2379
2380         /* set to use fractional accumulation*/
2381         spll_func_cntl_3 = PHM_SET_FIELD(spll_func_cntl_3,
2382                 CG_SPLL_FUNC_CNTL_3, SPLL_DITHEN, 1);
2383
2384         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
2385                         PHM_PlatformCaps_EngineSpreadSpectrumSupport)) {
2386                 pp_atomctrl_internal_ss_info ss_info;
2387
2388                 uint32_t vcoFreq = engine_clock * dividers.uc_pll_post_div;
2389                 if (0 == atomctrl_get_engine_clock_spread_spectrum(hwmgr, vcoFreq, &ss_info)) {
2390                         /*
2391                         * ss_info.speed_spectrum_percentage -- in unit of 0.01%
2392                         * ss_info.speed_spectrum_rate -- in unit of khz
2393                         */
2394                         /* clks = reference_clock * 10 / (REFDIV + 1) / speed_spectrum_rate / 2 */
2395                         uint32_t clkS = reference_clock * 5 / (reference_divider * ss_info.speed_spectrum_rate);
2396
2397                         /* clkv = 2 * D * fbdiv / NS */
2398                         uint32_t clkV = 4 * ss_info.speed_spectrum_percentage * fbdiv / (clkS * 10000);
2399
2400                         cg_spll_spread_spectrum =
2401                                 PHM_SET_FIELD(cg_spll_spread_spectrum, CG_SPLL_SPREAD_SPECTRUM, CLKS, clkS);
2402                         cg_spll_spread_spectrum =
2403                                 PHM_SET_FIELD(cg_spll_spread_spectrum, CG_SPLL_SPREAD_SPECTRUM, SSEN, 1);
2404                         cg_spll_spread_spectrum_2 =
2405                                 PHM_SET_FIELD(cg_spll_spread_spectrum_2, CG_SPLL_SPREAD_SPECTRUM_2, CLKV, clkV);
2406                 }
2407         }
2408
2409         sclk->SclkFrequency        = engine_clock;
2410         sclk->CgSpllFuncCntl3      = spll_func_cntl_3;
2411         sclk->CgSpllFuncCntl4      = spll_func_cntl_4;
2412         sclk->SpllSpreadSpectrum   = cg_spll_spread_spectrum;
2413         sclk->SpllSpreadSpectrum2  = cg_spll_spread_spectrum_2;
2414         sclk->SclkDid              = (uint8_t)dividers.pll_post_divider;
2415
2416         return 0;
2417 }
2418
2419 static uint8_t tonga_get_sleep_divider_id_from_clock(uint32_t engine_clock,
2420                 uint32_t min_engine_clock_in_sr)
2421 {
2422         uint32_t i, temp;
2423         uint32_t min = max(min_engine_clock_in_sr, (uint32_t)TONGA_MINIMUM_ENGINE_CLOCK);
2424
2425         PP_ASSERT_WITH_CODE((engine_clock >= min),
2426                         "Engine clock can't satisfy stutter requirement!", return 0);
2427
2428         for (i = TONGA_MAX_DEEPSLEEP_DIVIDER_ID;; i--) {
2429                 temp = engine_clock >> i;
2430
2431                 if(temp >= min || i == 0)
2432                         break;
2433         }
2434         return (uint8_t)i;
2435 }
2436
2437 /**
2438  * Populates single SMC SCLK structure using the provided engine clock
2439  *
2440  * @param    hwmgr      the address of the hardware manager
2441  * @param    engine_clock the engine clock to use to populate the structure
2442  * @param    sclk        the SMC SCLK structure to be populated
2443  */
2444 static int tonga_populate_single_graphic_level(struct pp_hwmgr *hwmgr, uint32_t engine_clock, uint16_t sclk_activity_level_threshold, SMU72_Discrete_GraphicsLevel *graphic_level)
2445 {
2446         int result;
2447         uint32_t threshold;
2448         uint32_t mvdd;
2449         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2450         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2451
2452         result = tonga_calculate_sclk_params(hwmgr, engine_clock, graphic_level);
2453
2454
2455         /* populate graphics levels*/
2456         result = tonga_get_dependecy_volt_by_clk(hwmgr,
2457                 pptable_info->vdd_dep_on_sclk, engine_clock,
2458                 &graphic_level->MinVoltage, &mvdd);
2459         PP_ASSERT_WITH_CODE((0 == result),
2460                 "can not find VDDC voltage value for VDDC       \
2461                 engine clock dependency table", return result);
2462
2463         /* SCLK frequency in units of 10KHz*/
2464         graphic_level->SclkFrequency = engine_clock;
2465
2466         /* Indicates maximum activity level for this performance level. 50% for now*/
2467         graphic_level->ActivityLevel = sclk_activity_level_threshold;
2468
2469         graphic_level->CcPwrDynRm = 0;
2470         graphic_level->CcPwrDynRm1 = 0;
2471         /* this level can be used if activity is high enough.*/
2472         graphic_level->EnabledForActivity = 0;
2473         /* this level can be used for throttling.*/
2474         graphic_level->EnabledForThrottle = 1;
2475         graphic_level->UpHyst = 0;
2476         graphic_level->DownHyst = 0;
2477         graphic_level->VoltageDownHyst = 0;
2478         graphic_level->PowerThrottle = 0;
2479
2480         threshold = engine_clock * data->fast_watemark_threshold / 100;
2481 /*
2482         *get the DAL clock. do it in funture.
2483         PECI_GetMinClockSettings(hwmgr->peci, &minClocks);
2484         data->display_timing.min_clock_insr = minClocks.engineClockInSR;
2485 */
2486         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
2487                         PHM_PlatformCaps_SclkDeepSleep))
2488                 graphic_level->DeepSleepDivId =
2489                                 tonga_get_sleep_divider_id_from_clock(engine_clock,
2490                                                 data->display_timing.min_clock_insr);
2491
2492         /* Default to slow, highest DPM level will be set to PPSMC_DISPLAY_WATERMARK_LOW later.*/
2493         graphic_level->DisplayWatermark = PPSMC_DISPLAY_WATERMARK_LOW;
2494
2495         if (0 == result) {
2496                 /* CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->MinVoltage);*/
2497                 /* CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->MinVddcPhases);*/
2498                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->SclkFrequency);
2499                 CONVERT_FROM_HOST_TO_SMC_US(graphic_level->ActivityLevel);
2500                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->CgSpllFuncCntl3);
2501                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->CgSpllFuncCntl4);
2502                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->SpllSpreadSpectrum);
2503                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->SpllSpreadSpectrum2);
2504                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->CcPwrDynRm);
2505                 CONVERT_FROM_HOST_TO_SMC_UL(graphic_level->CcPwrDynRm1);
2506         }
2507
2508         return result;
2509 }
2510
2511 /**
2512  * Populates all SMC SCLK levels' structure based on the trimmed allowed dpm engine clock states
2513  *
2514  * @param    hwmgr      the address of the hardware manager
2515  */
2516 static int tonga_populate_all_graphic_levels(struct pp_hwmgr *hwmgr)
2517 {
2518         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2519         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2520         struct tonga_dpm_table *dpm_table = &data->dpm_table;
2521         phm_ppt_v1_pcie_table *pcie_table = pptable_info->pcie_table;
2522         uint8_t pcie_entry_count = (uint8_t) data->dpm_table.pcie_speed_table.count;
2523         int result = 0;
2524         uint32_t level_array_adress = data->dpm_table_start +
2525                 offsetof(SMU72_Discrete_DpmTable, GraphicsLevel);
2526         uint32_t level_array_size = sizeof(SMU72_Discrete_GraphicsLevel) *
2527                 SMU72_MAX_LEVELS_GRAPHICS;   /* 64 -> long; 32 -> int*/
2528         SMU72_Discrete_GraphicsLevel *levels = data->smc_state_table.GraphicsLevel;
2529         uint32_t i, maxEntry;
2530         uint8_t highest_pcie_level_enabled = 0, lowest_pcie_level_enabled = 0, mid_pcie_level_enabled = 0, count = 0;
2531         PECI_RegistryValue reg_value;
2532         memset(levels, 0x00, level_array_size);
2533
2534         for (i = 0; i < dpm_table->sclk_table.count; i++) {
2535                 result = tonga_populate_single_graphic_level(hwmgr,
2536                                         dpm_table->sclk_table.dpm_levels[i].value,
2537                                         (uint16_t)data->activity_target[i],
2538                                         &(data->smc_state_table.GraphicsLevel[i]));
2539
2540                 if (0 != result)
2541                         return result;
2542
2543                 /* Making sure only DPM level 0-1 have Deep Sleep Div ID populated. */
2544                 if (i > 1)
2545                         data->smc_state_table.GraphicsLevel[i].DeepSleepDivId = 0;
2546
2547                 if (0 == i) {
2548                         reg_value = 0;
2549                         if (reg_value != 0)
2550                                 data->smc_state_table.GraphicsLevel[0].UpHyst = (uint8_t)reg_value;
2551                 }
2552
2553                 if (1 == i) {
2554                         reg_value = 0;
2555                         if (reg_value != 0)
2556                                 data->smc_state_table.GraphicsLevel[1].UpHyst = (uint8_t)reg_value;
2557                 }
2558         }
2559
2560         /* Only enable level 0 for now. */
2561         data->smc_state_table.GraphicsLevel[0].EnabledForActivity = 1;
2562
2563         /* set highest level watermark to high */
2564         if (dpm_table->sclk_table.count > 1)
2565                 data->smc_state_table.GraphicsLevel[dpm_table->sclk_table.count-1].DisplayWatermark =
2566                         PPSMC_DISPLAY_WATERMARK_HIGH;
2567
2568         data->smc_state_table.GraphicsDpmLevelCount =
2569                 (uint8_t)dpm_table->sclk_table.count;
2570         data->dpm_level_enable_mask.sclk_dpm_enable_mask =
2571                 tonga_get_dpm_level_enable_mask_value(&dpm_table->sclk_table);
2572
2573         if (pcie_table != NULL) {
2574                 PP_ASSERT_WITH_CODE((pcie_entry_count >= 1),
2575                         "There must be 1 or more PCIE levels defined in PPTable.", return -1);
2576                 maxEntry = pcie_entry_count - 1; /* for indexing, we need to decrement by 1.*/
2577                 for (i = 0; i < dpm_table->sclk_table.count; i++) {
2578                         data->smc_state_table.GraphicsLevel[i].pcieDpmLevel =
2579                                 (uint8_t) ((i < maxEntry) ? i : maxEntry);
2580                 }
2581         } else {
2582                 if (0 == data->dpm_level_enable_mask.pcie_dpm_enable_mask)
2583                         printk(KERN_ERR "[ powerplay ] Pcie Dpm Enablemask is 0!");
2584
2585                 while (data->dpm_level_enable_mask.pcie_dpm_enable_mask &&
2586                                 ((data->dpm_level_enable_mask.pcie_dpm_enable_mask &
2587                                         (1<<(highest_pcie_level_enabled+1))) != 0)) {
2588                         highest_pcie_level_enabled++;
2589                 }
2590
2591                 while (data->dpm_level_enable_mask.pcie_dpm_enable_mask &&
2592                                 ((data->dpm_level_enable_mask.pcie_dpm_enable_mask &
2593                                         (1<<lowest_pcie_level_enabled)) == 0)) {
2594                         lowest_pcie_level_enabled++;
2595                 }
2596
2597                 while ((count < highest_pcie_level_enabled) &&
2598                                 ((data->dpm_level_enable_mask.pcie_dpm_enable_mask &
2599                                         (1<<(lowest_pcie_level_enabled+1+count))) == 0)) {
2600                         count++;
2601                 }
2602                 mid_pcie_level_enabled = (lowest_pcie_level_enabled+1+count) < highest_pcie_level_enabled ?
2603                         (lowest_pcie_level_enabled+1+count) : highest_pcie_level_enabled;
2604
2605
2606                 /* set pcieDpmLevel to highest_pcie_level_enabled*/
2607                 for (i = 2; i < dpm_table->sclk_table.count; i++) {
2608                         data->smc_state_table.GraphicsLevel[i].pcieDpmLevel = highest_pcie_level_enabled;
2609                 }
2610
2611                 /* set pcieDpmLevel to lowest_pcie_level_enabled*/
2612                 data->smc_state_table.GraphicsLevel[0].pcieDpmLevel = lowest_pcie_level_enabled;
2613
2614                 /* set pcieDpmLevel to mid_pcie_level_enabled*/
2615                 data->smc_state_table.GraphicsLevel[1].pcieDpmLevel = mid_pcie_level_enabled;
2616         }
2617         /* level count will send to smc once at init smc table and never change*/
2618         result = tonga_copy_bytes_to_smc(hwmgr->smumgr, level_array_adress, (uint8_t *)levels, (uint32_t)level_array_size, data->sram_end);
2619
2620         if (0 != result)
2621                 return result;
2622
2623         return 0;
2624 }
2625
2626 /**
2627  * Populates all SMC MCLK levels' structure based on the trimmed allowed dpm memory clock states
2628  *
2629  * @param    hwmgr      the address of the hardware manager
2630  */
2631
2632 static int tonga_populate_all_memory_levels(struct pp_hwmgr *hwmgr)
2633 {
2634         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2635         struct tonga_dpm_table *dpm_table = &data->dpm_table;
2636         int result;
2637         /* populate MCLK dpm table to SMU7 */
2638         uint32_t level_array_adress = data->dpm_table_start + offsetof(SMU72_Discrete_DpmTable, MemoryLevel);
2639         uint32_t level_array_size = sizeof(SMU72_Discrete_MemoryLevel) * SMU72_MAX_LEVELS_MEMORY;
2640         SMU72_Discrete_MemoryLevel *levels = data->smc_state_table.MemoryLevel;
2641         uint32_t i;
2642
2643         memset(levels, 0x00, level_array_size);
2644
2645         for (i = 0; i < dpm_table->mclk_table.count; i++) {
2646                 PP_ASSERT_WITH_CODE((0 != dpm_table->mclk_table.dpm_levels[i].value),
2647                         "can not populate memory level as memory clock is zero", return -1);
2648                 result = tonga_populate_single_memory_level(hwmgr, dpm_table->mclk_table.dpm_levels[i].value,
2649                         &(data->smc_state_table.MemoryLevel[i]));
2650                 if (0 != result) {
2651                         return result;
2652                 }
2653         }
2654
2655         /* Only enable level 0 for now.*/
2656         data->smc_state_table.MemoryLevel[0].EnabledForActivity = 1;
2657
2658         /*
2659         * in order to prevent MC activity from stutter mode to push DPM up.
2660         * the UVD change complements this by putting the MCLK in a higher state
2661         * by default such that we are not effected by up threshold or and MCLK DPM latency.
2662         */
2663         data->smc_state_table.MemoryLevel[0].ActivityLevel = 0x1F;
2664         CONVERT_FROM_HOST_TO_SMC_US(data->smc_state_table.MemoryLevel[0].ActivityLevel);
2665
2666         data->smc_state_table.MemoryDpmLevelCount = (uint8_t)dpm_table->mclk_table.count;
2667         data->dpm_level_enable_mask.mclk_dpm_enable_mask = tonga_get_dpm_level_enable_mask_value(&dpm_table->mclk_table);
2668         /* set highest level watermark to high*/
2669         data->smc_state_table.MemoryLevel[dpm_table->mclk_table.count-1].DisplayWatermark = PPSMC_DISPLAY_WATERMARK_HIGH;
2670
2671         /* level count will send to smc once at init smc table and never change*/
2672         result = tonga_copy_bytes_to_smc(hwmgr->smumgr,
2673                 level_array_adress, (uint8_t *)levels, (uint32_t)level_array_size, data->sram_end);
2674
2675         if (0 != result) {
2676                 return result;
2677         }
2678
2679         return 0;
2680 }
2681
2682 struct TONGA_DLL_SPEED_SETTING {
2683         uint16_t            Min;                          /* Minimum Data Rate*/
2684         uint16_t            Max;                          /* Maximum Data Rate*/
2685         uint32_t                        dll_speed;                     /* The desired DLL_SPEED setting*/
2686 };
2687
2688 static int tonga_populate_clock_stretcher_data_table(struct pp_hwmgr *hwmgr)
2689 {
2690         return 0;
2691 }
2692
2693 /* ---------------------------------------- ULV related functions ----------------------------------------------------*/
2694
2695
2696 static int tonga_reset_single_dpm_table(
2697         struct pp_hwmgr *hwmgr,
2698         struct tonga_single_dpm_table *dpm_table,
2699         uint32_t count)
2700 {
2701         uint32_t i;
2702         if (!(count <= MAX_REGULAR_DPM_NUMBER))
2703                 printk(KERN_ERR "[ powerplay ] Fatal error, can not set up single DPM \
2704                         table entries to exceed max number! \n");
2705
2706         dpm_table->count = count;
2707         for (i = 0; i < MAX_REGULAR_DPM_NUMBER; i++) {
2708                 dpm_table->dpm_levels[i].enabled = 0;
2709         }
2710
2711         return 0;
2712 }
2713
2714 static void tonga_setup_pcie_table_entry(
2715         struct tonga_single_dpm_table *dpm_table,
2716         uint32_t index, uint32_t pcie_gen,
2717         uint32_t pcie_lanes)
2718 {
2719         dpm_table->dpm_levels[index].value = pcie_gen;
2720         dpm_table->dpm_levels[index].param1 = pcie_lanes;
2721         dpm_table->dpm_levels[index].enabled = 1;
2722 }
2723
2724 static int tonga_setup_default_pcie_tables(struct pp_hwmgr *hwmgr)
2725 {
2726         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2727         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2728         phm_ppt_v1_pcie_table *pcie_table = pptable_info->pcie_table;
2729         uint32_t i, maxEntry;
2730
2731         if (data->use_pcie_performance_levels && !data->use_pcie_power_saving_levels) {
2732                 data->pcie_gen_power_saving = data->pcie_gen_performance;
2733                 data->pcie_lane_power_saving = data->pcie_lane_performance;
2734         } else if (!data->use_pcie_performance_levels && data->use_pcie_power_saving_levels) {
2735                 data->pcie_gen_performance = data->pcie_gen_power_saving;
2736                 data->pcie_lane_performance = data->pcie_lane_power_saving;
2737         }
2738
2739         tonga_reset_single_dpm_table(hwmgr, &data->dpm_table.pcie_speed_table, SMU72_MAX_LEVELS_LINK);
2740
2741         if (pcie_table != NULL) {
2742                 /*
2743                 * maxEntry is used to make sure we reserve one PCIE level for boot level (fix for A+A PSPP issue).
2744                 * If PCIE table from PPTable have ULV entry + 8 entries, then ignore the last entry.
2745                 */
2746                 maxEntry = (SMU72_MAX_LEVELS_LINK < pcie_table->count) ?
2747                                                 SMU72_MAX_LEVELS_LINK : pcie_table->count;
2748                 for (i = 1; i < maxEntry; i++) {
2749                         tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, i-1,
2750                                 get_pcie_gen_support(data->pcie_gen_cap, pcie_table->entries[i].gen_speed),
2751                                 get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2752                 }
2753                 data->dpm_table.pcie_speed_table.count = maxEntry - 1;
2754         } else {
2755                 /* Hardcode Pcie Table */
2756                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 0,
2757                         get_pcie_gen_support(data->pcie_gen_cap, PP_Min_PCIEGen),
2758                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2759                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 1,
2760                         get_pcie_gen_support(data->pcie_gen_cap, PP_Min_PCIEGen),
2761                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2762                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 2,
2763                         get_pcie_gen_support(data->pcie_gen_cap, PP_Max_PCIEGen),
2764                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2765                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 3,
2766                         get_pcie_gen_support(data->pcie_gen_cap, PP_Max_PCIEGen),
2767                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2768                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 4,
2769                         get_pcie_gen_support(data->pcie_gen_cap, PP_Max_PCIEGen),
2770                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2771                 tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table, 5,
2772                         get_pcie_gen_support(data->pcie_gen_cap, PP_Max_PCIEGen),
2773                         get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2774                 data->dpm_table.pcie_speed_table.count = 6;
2775         }
2776         /* Populate last level for boot PCIE level, but do not increment count. */
2777         tonga_setup_pcie_table_entry(&data->dpm_table.pcie_speed_table,
2778                 data->dpm_table.pcie_speed_table.count,
2779                 get_pcie_gen_support(data->pcie_gen_cap, PP_Min_PCIEGen),
2780                 get_pcie_lane_support(data->pcie_lane_cap, PP_Max_PCIELane));
2781
2782         return 0;
2783
2784 }
2785
2786 /*
2787  * This function is to initalize all DPM state tables for SMU7 based on the dependency table.
2788  * Dynamic state patching function will then trim these state tables to the allowed range based
2789  * on the power policy or external client requests, such as UVD request, etc.
2790  */
2791 static int tonga_setup_default_dpm_tables(struct pp_hwmgr *hwmgr)
2792 {
2793         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2794         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2795         uint32_t i;
2796
2797         phm_ppt_v1_clock_voltage_dependency_table *allowed_vdd_sclk_table =
2798                 pptable_info->vdd_dep_on_sclk;
2799         phm_ppt_v1_clock_voltage_dependency_table *allowed_vdd_mclk_table =
2800                 pptable_info->vdd_dep_on_mclk;
2801
2802         PP_ASSERT_WITH_CODE(allowed_vdd_sclk_table != NULL,
2803                 "SCLK dependency table is missing. This table is mandatory", return -1);
2804         PP_ASSERT_WITH_CODE(allowed_vdd_sclk_table->count >= 1,
2805                 "SCLK dependency table has to have is missing. This table is mandatory", return -1);
2806
2807         PP_ASSERT_WITH_CODE(allowed_vdd_mclk_table != NULL,
2808                 "MCLK dependency table is missing. This table is mandatory", return -1);
2809         PP_ASSERT_WITH_CODE(allowed_vdd_mclk_table->count >= 1,
2810                 "VMCLK dependency table has to have is missing. This table is mandatory", return -1);
2811
2812         /* clear the state table to reset everything to default */
2813         memset(&(data->dpm_table), 0x00, sizeof(data->dpm_table));
2814         tonga_reset_single_dpm_table(hwmgr, &data->dpm_table.sclk_table, SMU72_MAX_LEVELS_GRAPHICS);
2815         tonga_reset_single_dpm_table(hwmgr, &data->dpm_table.mclk_table, SMU72_MAX_LEVELS_MEMORY);
2816         /* tonga_reset_single_dpm_table(hwmgr, &tonga_hwmgr->dpm_table.VddcTable, SMU72_MAX_LEVELS_VDDC); */
2817         /* tonga_reset_single_dpm_table(hwmgr, &tonga_hwmgr->dpm_table.vdd_gfx_table, SMU72_MAX_LEVELS_VDDGFX);*/
2818         /* tonga_reset_single_dpm_table(hwmgr, &tonga_hwmgr->dpm_table.vdd_ci_table, SMU72_MAX_LEVELS_VDDCI);*/
2819         /* tonga_reset_single_dpm_table(hwmgr, &tonga_hwmgr->dpm_table.mvdd_table, SMU72_MAX_LEVELS_MVDD);*/
2820
2821         PP_ASSERT_WITH_CODE(allowed_vdd_sclk_table != NULL,
2822                 "SCLK dependency table is missing. This table is mandatory", return -1);
2823         /* Initialize Sclk DPM table based on allow Sclk values*/
2824         data->dpm_table.sclk_table.count = 0;
2825
2826         for (i = 0; i < allowed_vdd_sclk_table->count; i++) {
2827                 if (i == 0 || data->dpm_table.sclk_table.dpm_levels[data->dpm_table.sclk_table.count-1].value !=
2828                                 allowed_vdd_sclk_table->entries[i].clk) {
2829                         data->dpm_table.sclk_table.dpm_levels[data->dpm_table.sclk_table.count].value =
2830                                 allowed_vdd_sclk_table->entries[i].clk;
2831                         data->dpm_table.sclk_table.dpm_levels[data->dpm_table.sclk_table.count].enabled = 1; /*(i==0) ? 1 : 0; to do */
2832                         data->dpm_table.sclk_table.count++;
2833                 }
2834         }
2835
2836         PP_ASSERT_WITH_CODE(allowed_vdd_mclk_table != NULL,
2837                 "MCLK dependency table is missing. This table is mandatory", return -1);
2838         /* Initialize Mclk DPM table based on allow Mclk values */
2839         data->dpm_table.mclk_table.count = 0;
2840         for (i = 0; i < allowed_vdd_mclk_table->count; i++) {
2841                 if (i == 0 || data->dpm_table.mclk_table.dpm_levels[data->dpm_table.mclk_table.count-1].value !=
2842                         allowed_vdd_mclk_table->entries[i].clk) {
2843                         data->dpm_table.mclk_table.dpm_levels[data->dpm_table.mclk_table.count].value =
2844                                 allowed_vdd_mclk_table->entries[i].clk;
2845                         data->dpm_table.mclk_table.dpm_levels[data->dpm_table.mclk_table.count].enabled = 1; /*(i==0) ? 1 : 0; */
2846                         data->dpm_table.mclk_table.count++;
2847                 }
2848         }
2849
2850         /* setup PCIE gen speed levels*/
2851         tonga_setup_default_pcie_tables(hwmgr);
2852
2853         /* save a copy of the default DPM table*/
2854         memcpy(&(data->golden_dpm_table), &(data->dpm_table), sizeof(struct tonga_dpm_table));
2855
2856         return 0;
2857 }
2858
2859 int tonga_populate_smc_initial_state(struct pp_hwmgr *hwmgr,
2860                 const struct tonga_power_state *bootState)
2861 {
2862         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2863         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2864         uint8_t count, level;
2865
2866         count = (uint8_t) (pptable_info->vdd_dep_on_sclk->count);
2867         for (level = 0; level < count; level++) {
2868                 if (pptable_info->vdd_dep_on_sclk->entries[level].clk >=
2869                         bootState->performance_levels[0].engine_clock) {
2870                         data->smc_state_table.GraphicsBootLevel = level;
2871                         break;
2872                 }
2873         }
2874
2875         count = (uint8_t) (pptable_info->vdd_dep_on_mclk->count);
2876         for (level = 0; level < count; level++) {
2877                 if (pptable_info->vdd_dep_on_mclk->entries[level].clk >=
2878                         bootState->performance_levels[0].memory_clock) {
2879                         data->smc_state_table.MemoryBootLevel = level;
2880                         break;
2881                 }
2882         }
2883
2884         return 0;
2885 }
2886
2887 /**
2888  * Initializes the SMC table and uploads it
2889  *
2890  * @param    hwmgr  the address of the powerplay hardware manager.
2891  * @param    pInput  the pointer to input data (PowerState)
2892  * @return   always 0
2893  */
2894 int tonga_init_smc_table(struct pp_hwmgr *hwmgr)
2895 {
2896         int result;
2897         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
2898         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
2899         SMU72_Discrete_DpmTable  *table = &(data->smc_state_table);
2900         const phw_tonga_ulv_parm *ulv = &(data->ulv);
2901         uint8_t i;
2902         PECI_RegistryValue reg_value;
2903         pp_atomctrl_gpio_pin_assignment gpio_pin_assignment;
2904
2905         result = tonga_setup_default_dpm_tables(hwmgr);
2906         PP_ASSERT_WITH_CODE(0 == result,
2907                 "Failed to setup default DPM tables!", return result;);
2908         memset(&(data->smc_state_table), 0x00, sizeof(data->smc_state_table));
2909         if (TONGA_VOLTAGE_CONTROL_NONE != data->voltage_control) {
2910                 tonga_populate_smc_voltage_tables(hwmgr, table);
2911         }
2912
2913         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
2914                         PHM_PlatformCaps_AutomaticDCTransition)) {
2915                 table->SystemFlags |= PPSMC_SYSTEMFLAG_GPIO_DC;
2916         }
2917
2918         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
2919                         PHM_PlatformCaps_StepVddc)) {
2920                 table->SystemFlags |= PPSMC_SYSTEMFLAG_STEPVDDC;
2921         }
2922
2923         if (data->is_memory_GDDR5) {
2924                 table->SystemFlags |= PPSMC_SYSTEMFLAG_GDDR5;
2925         }
2926
2927         i = PHM_READ_FIELD(hwmgr->device, CC_MC_MAX_CHANNEL, NOOFCHAN);
2928
2929         if (i == 1 || i == 0) {
2930                 table->SystemFlags |= PPSMC_SYSTEMFLAG_12CHANNEL;
2931         }
2932
2933         if (ulv->ulv_supported && pptable_info->us_ulv_voltage_offset) {
2934                 PP_ASSERT_WITH_CODE(0 == result,
2935                         "Failed to initialize ULV state!", return result;);
2936
2937                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
2938                         ixCG_ULV_PARAMETER, ulv->ch_ulv_parameter);
2939         }
2940
2941         result = tonga_populate_smc_link_level(hwmgr, table);
2942         PP_ASSERT_WITH_CODE(0 == result,
2943                 "Failed to initialize Link Level!", return result;);
2944
2945         result = tonga_populate_all_graphic_levels(hwmgr);
2946         PP_ASSERT_WITH_CODE(0 == result,
2947                 "Failed to initialize Graphics Level!", return result;);
2948
2949         result = tonga_populate_all_memory_levels(hwmgr);
2950         PP_ASSERT_WITH_CODE(0 == result,
2951                 "Failed to initialize Memory Level!", return result;);
2952
2953         result = tonga_populate_smv_acpi_level(hwmgr, table);
2954         PP_ASSERT_WITH_CODE(0 == result,
2955                 "Failed to initialize ACPI Level!", return result;);
2956
2957         result = tonga_populate_smc_vce_level(hwmgr, table);
2958         PP_ASSERT_WITH_CODE(0 == result,
2959                 "Failed to initialize VCE Level!", return result;);
2960
2961         result = tonga_populate_smc_acp_level(hwmgr, table);
2962         PP_ASSERT_WITH_CODE(0 == result,
2963                 "Failed to initialize ACP Level!", return result;);
2964
2965         result = tonga_populate_smc_samu_level(hwmgr, table);
2966         PP_ASSERT_WITH_CODE(0 == result,
2967                 "Failed to initialize SAMU Level!", return result;);
2968
2969         /* Since only the initial state is completely set up at this point (the other states are just copies of the boot state) we only */
2970         /* need to populate the  ARB settings for the initial state. */
2971         result = tonga_program_memory_timing_parameters(hwmgr);
2972         PP_ASSERT_WITH_CODE(0 == result,
2973                 "Failed to Write ARB settings for the initial state.", return result;);
2974
2975         result = tonga_populate_smc_uvd_level(hwmgr, table);
2976         PP_ASSERT_WITH_CODE(0 == result,
2977                 "Failed to initialize UVD Level!", return result;);
2978
2979         result = tonga_populate_smc_boot_level(hwmgr, table);
2980         PP_ASSERT_WITH_CODE(0 == result,
2981                 "Failed to initialize Boot Level!", return result;);
2982
2983         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
2984                         PHM_PlatformCaps_ClockStretcher)) {
2985                 result = tonga_populate_clock_stretcher_data_table(hwmgr);
2986                 PP_ASSERT_WITH_CODE(0 == result,
2987                         "Failed to populate Clock Stretcher Data Table!", return result;);
2988         }
2989         table->GraphicsVoltageChangeEnable  = 1;
2990         table->GraphicsThermThrottleEnable  = 1;
2991         table->GraphicsInterval = 1;
2992         table->VoltageInterval  = 1;
2993         table->ThermalInterval  = 1;
2994         table->TemperatureLimitHigh =
2995                 pptable_info->cac_dtp_table->usTargetOperatingTemp *
2996                 TONGA_Q88_FORMAT_CONVERSION_UNIT;
2997         table->TemperatureLimitLow =
2998                 (pptable_info->cac_dtp_table->usTargetOperatingTemp - 1) *
2999                 TONGA_Q88_FORMAT_CONVERSION_UNIT;
3000         table->MemoryVoltageChangeEnable  = 1;
3001         table->MemoryInterval  = 1;
3002         table->VoltageResponseTime  = 0;
3003         table->PhaseResponseTime  = 0;
3004         table->MemoryThermThrottleEnable  = 1;
3005
3006         /*
3007         * Cail reads current link status and reports it as cap (we cannot change this due to some previous issues we had)
3008         * SMC drops the link status to lowest level after enabling DPM by PowerPlay. After pnp or toggling CF, driver gets reloaded again
3009         * but this time Cail reads current link status which was set to low by SMC and reports it as cap to powerplay
3010         * To avoid it, we set PCIeBootLinkLevel to highest dpm level
3011         */
3012         PP_ASSERT_WITH_CODE((1 <= data->dpm_table.pcie_speed_table.count),
3013                         "There must be 1 or more PCIE levels defined in PPTable.",
3014                         return -1);
3015
3016         table->PCIeBootLinkLevel = (uint8_t) (data->dpm_table.pcie_speed_table.count);
3017
3018         table->PCIeGenInterval  = 1;
3019
3020         result = tonga_populate_vr_config(hwmgr, table);
3021         PP_ASSERT_WITH_CODE(0 == result,
3022                 "Failed to populate VRConfig setting!", return result);
3023
3024         table->ThermGpio  = 17;
3025         table->SclkStepSize = 0x4000;
3026
3027         reg_value = 0;
3028         if ((0 == reg_value) &&
3029                 (0 == atomctrl_get_pp_assign_pin(hwmgr,
3030                         VDDC_VRHOT_GPIO_PINID, &gpio_pin_assignment))) {
3031                 table->VRHotGpio = gpio_pin_assignment.uc_gpio_pin_bit_shift;
3032                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
3033                         PHM_PlatformCaps_RegulatorHot);
3034         } else {
3035                 table->VRHotGpio = TONGA_UNUSED_GPIO_PIN;
3036                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
3037                         PHM_PlatformCaps_RegulatorHot);
3038         }
3039
3040         /* ACDC Switch GPIO */
3041         reg_value = 0;
3042         if ((0 == reg_value) &&
3043                 (0 == atomctrl_get_pp_assign_pin(hwmgr,
3044                         PP_AC_DC_SWITCH_GPIO_PINID, &gpio_pin_assignment))) {
3045                 table->AcDcGpio = gpio_pin_assignment.uc_gpio_pin_bit_shift;
3046                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
3047                         PHM_PlatformCaps_AutomaticDCTransition);
3048         } else {
3049                 table->AcDcGpio = TONGA_UNUSED_GPIO_PIN;
3050                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
3051                         PHM_PlatformCaps_AutomaticDCTransition);
3052         }
3053
3054         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
3055                 PHM_PlatformCaps_Falcon_QuickTransition);
3056
3057         reg_value = 0;
3058         if (1 == reg_value) {
3059                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
3060                         PHM_PlatformCaps_AutomaticDCTransition);
3061                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
3062                         PHM_PlatformCaps_Falcon_QuickTransition);
3063         }
3064
3065         reg_value = 0;
3066         if ((0 == reg_value) &&
3067                 (0 == atomctrl_get_pp_assign_pin(hwmgr,
3068                         THERMAL_INT_OUTPUT_GPIO_PINID, &gpio_pin_assignment))) {
3069                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
3070                         PHM_PlatformCaps_ThermalOutGPIO);
3071
3072                 table->ThermOutGpio = gpio_pin_assignment.uc_gpio_pin_bit_shift;
3073
3074                 table->ThermOutPolarity =
3075                         (0 == (cgs_read_register(hwmgr->device, mmGPIOPAD_A) &
3076                         (1 << gpio_pin_assignment.uc_gpio_pin_bit_shift))) ? 1:0;
3077
3078                 table->ThermOutMode = SMU7_THERM_OUT_MODE_THERM_ONLY;
3079
3080                 /* if required, combine VRHot/PCC with thermal out GPIO*/
3081                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
3082                         PHM_PlatformCaps_RegulatorHot) &&
3083                         phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
3084                         PHM_PlatformCaps_CombinePCCWithThermalSignal)){
3085                         table->ThermOutMode = SMU7_THERM_OUT_MODE_THERM_VRHOT;
3086                 }
3087         } else {
3088                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
3089                         PHM_PlatformCaps_ThermalOutGPIO);
3090
3091                 table->ThermOutGpio = 17;
3092                 table->ThermOutPolarity = 1;
3093                 table->ThermOutMode = SMU7_THERM_OUT_MODE_DISABLE;
3094         }
3095
3096         for (i = 0; i < SMU72_MAX_ENTRIES_SMIO; i++) {
3097                 table->Smio[i] = PP_HOST_TO_SMC_UL(table->Smio[i]);
3098         }
3099         CONVERT_FROM_HOST_TO_SMC_UL(table->SystemFlags);
3100         CONVERT_FROM_HOST_TO_SMC_UL(table->VRConfig);
3101         CONVERT_FROM_HOST_TO_SMC_UL(table->SmioMask1);
3102         CONVERT_FROM_HOST_TO_SMC_UL(table->SmioMask2);
3103         CONVERT_FROM_HOST_TO_SMC_UL(table->SclkStepSize);
3104         CONVERT_FROM_HOST_TO_SMC_US(table->TemperatureLimitHigh);
3105         CONVERT_FROM_HOST_TO_SMC_US(table->TemperatureLimitLow);
3106         CONVERT_FROM_HOST_TO_SMC_US(table->VoltageResponseTime);
3107         CONVERT_FROM_HOST_TO_SMC_US(table->PhaseResponseTime);
3108
3109         /* Upload all dpm data to SMC memory.(dpm level, dpm level count etc) */
3110         result = tonga_copy_bytes_to_smc(hwmgr->smumgr, data->dpm_table_start +
3111                                                                                 offsetof(SMU72_Discrete_DpmTable, SystemFlags),
3112                                                                                 (uint8_t *)&(table->SystemFlags),
3113                                                                                 sizeof(SMU72_Discrete_DpmTable)-3 * sizeof(SMU72_PIDController),
3114                                                                                 data->sram_end);
3115
3116         PP_ASSERT_WITH_CODE(0 == result,
3117                 "Failed to upload dpm data to SMC memory!", return result;);
3118
3119         return result;
3120 }
3121
3122 /* Look up the voltaged based on DAL's requested level. and then send the requested VDDC voltage to SMC*/
3123 static void tonga_apply_dal_minimum_voltage_request(struct pp_hwmgr *hwmgr)
3124 {
3125         return;
3126 }
3127
3128 int tonga_upload_dpm_level_enable_mask(struct pp_hwmgr *hwmgr)
3129 {
3130         PPSMC_Result result;
3131         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3132
3133         /* Apply minimum voltage based on DAL's request level */
3134         tonga_apply_dal_minimum_voltage_request(hwmgr);
3135
3136         if (0 == data->sclk_dpm_key_disabled) {
3137                 /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
3138                 if (0 != tonga_is_dpm_running(hwmgr))
3139                         printk(KERN_ERR "[ powerplay ] Trying to set Enable Mask when DPM is disabled \n");
3140
3141                 if (0 != data->dpm_level_enable_mask.sclk_dpm_enable_mask) {
3142                         result = smum_send_msg_to_smc_with_parameter(
3143                                                                 hwmgr->smumgr,
3144                                 (PPSMC_Msg)PPSMC_MSG_SCLKDPM_SetEnabledMask,
3145                                 data->dpm_level_enable_mask.sclk_dpm_enable_mask);
3146                         PP_ASSERT_WITH_CODE((0 == result),
3147                                 "Set Sclk Dpm enable Mask failed", return -1);
3148                 }
3149         }
3150
3151         if (0 == data->mclk_dpm_key_disabled) {
3152                 /* Checking if DPM is running.  If we discover hang because of this, we should skip this message.*/
3153                 if (0 != tonga_is_dpm_running(hwmgr))
3154                         printk(KERN_ERR "[ powerplay ] Trying to set Enable Mask when DPM is disabled \n");
3155
3156                 if (0 != data->dpm_level_enable_mask.mclk_dpm_enable_mask) {
3157                         result = smum_send_msg_to_smc_with_parameter(
3158                                                                 hwmgr->smumgr,
3159                                 (PPSMC_Msg)PPSMC_MSG_MCLKDPM_SetEnabledMask,
3160                                 data->dpm_level_enable_mask.mclk_dpm_enable_mask);
3161                         PP_ASSERT_WITH_CODE((0 == result),
3162                                 "Set Mclk Dpm enable Mask failed", return -1);
3163                 }
3164         }
3165
3166         return 0;
3167 }
3168
3169
3170 int tonga_force_dpm_highest(struct pp_hwmgr *hwmgr)
3171 {
3172         uint32_t level, tmp;
3173         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3174
3175         if (0 == data->pcie_dpm_key_disabled) {
3176                 /* PCIE */
3177                 if (data->dpm_level_enable_mask.pcie_dpm_enable_mask != 0) {
3178                         level = 0;
3179                         tmp = data->dpm_level_enable_mask.pcie_dpm_enable_mask;
3180                         while (tmp >>= 1)
3181                                 level++ ;
3182
3183                         if (0 != level) {
3184                                 PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state_pcie(hwmgr, level)),
3185                                         "force highest pcie dpm state failed!", return -1);
3186                         }
3187                 }
3188         }
3189
3190         if (0 == data->sclk_dpm_key_disabled) {
3191                 /* SCLK */
3192                 if (data->dpm_level_enable_mask.sclk_dpm_enable_mask != 0) {
3193                         level = 0;
3194                         tmp = data->dpm_level_enable_mask.sclk_dpm_enable_mask;
3195                         while (tmp >>= 1)
3196                                 level++ ;
3197
3198                         if (0 != level) {
3199                                 PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state(hwmgr, level)),
3200                                         "force highest sclk dpm state failed!", return -1);
3201                                 if (PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device,
3202                                         CGS_IND_REG__SMC, TARGET_AND_CURRENT_PROFILE_INDEX, CURR_SCLK_INDEX) != level)
3203                                         printk(KERN_ERR "[ powerplay ] Target_and_current_Profile_Index. \
3204                                                 Curr_Sclk_Index does not match the level \n");
3205
3206                         }
3207                 }
3208         }
3209
3210         if (0 == data->mclk_dpm_key_disabled) {
3211                 /* MCLK */
3212                 if (data->dpm_level_enable_mask.mclk_dpm_enable_mask != 0) {
3213                         level = 0;
3214                         tmp = data->dpm_level_enable_mask.mclk_dpm_enable_mask;
3215                         while (tmp >>= 1)
3216                                 level++ ;
3217
3218                         if (0 != level) {
3219                                 PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state_mclk(hwmgr, level)),
3220                                         "force highest mclk dpm state failed!", return -1);
3221                                 if (PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
3222                                         TARGET_AND_CURRENT_PROFILE_INDEX, CURR_MCLK_INDEX) != level)
3223                                         printk(KERN_ERR "[ powerplay ] Target_and_current_Profile_Index. \
3224                                                 Curr_Mclk_Index does not match the level \n");
3225                         }
3226                 }
3227         }
3228
3229         return 0;
3230 }
3231
3232 /**
3233  * Find the MC microcode version and store it in the HwMgr struct
3234  *
3235  * @param    hwmgr  the address of the powerplay hardware manager.
3236  * @return   always 0
3237  */
3238 int tonga_get_mc_microcode_version (struct pp_hwmgr *hwmgr)
3239 {
3240         cgs_write_register(hwmgr->device, mmMC_SEQ_IO_DEBUG_INDEX, 0x9F);
3241
3242         hwmgr->microcode_version_info.MC = cgs_read_register(hwmgr->device, mmMC_SEQ_IO_DEBUG_DATA);
3243
3244         return 0;
3245 }
3246
3247 /**
3248  * Initialize Dynamic State Adjustment Rule Settings
3249  *
3250  * @param    hwmgr  the address of the powerplay hardware manager.
3251  */
3252 int tonga_initializa_dynamic_state_adjustment_rule_settings(struct pp_hwmgr *hwmgr)
3253 {
3254         uint32_t table_size;
3255         struct phm_clock_voltage_dependency_table *table_clk_vlt;
3256         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3257
3258         hwmgr->dyn_state.mclk_sclk_ratio = 4;
3259         hwmgr->dyn_state.sclk_mclk_delta = 15000;      /* 150 MHz */
3260         hwmgr->dyn_state.vddc_vddci_delta = 200;       /* 200mV */
3261
3262         /* initialize vddc_dep_on_dal_pwrl table */
3263         table_size = sizeof(uint32_t) + 4 * sizeof(struct phm_clock_voltage_dependency_record);
3264         table_clk_vlt = (struct phm_clock_voltage_dependency_table *)kzalloc(table_size, GFP_KERNEL);
3265
3266         if (NULL == table_clk_vlt) {
3267                 printk(KERN_ERR "[ powerplay ] Can not allocate space for vddc_dep_on_dal_pwrl! \n");
3268                 return -ENOMEM;
3269         } else {
3270                 table_clk_vlt->count = 4;
3271                 table_clk_vlt->entries[0].clk = PP_DAL_POWERLEVEL_ULTRALOW;
3272                 table_clk_vlt->entries[0].v = 0;
3273                 table_clk_vlt->entries[1].clk = PP_DAL_POWERLEVEL_LOW;
3274                 table_clk_vlt->entries[1].v = 720;
3275                 table_clk_vlt->entries[2].clk = PP_DAL_POWERLEVEL_NOMINAL;
3276                 table_clk_vlt->entries[2].v = 810;
3277                 table_clk_vlt->entries[3].clk = PP_DAL_POWERLEVEL_PERFORMANCE;
3278                 table_clk_vlt->entries[3].v = 900;
3279                 pptable_info->vddc_dep_on_dal_pwrl = table_clk_vlt;
3280                 hwmgr->dyn_state.vddc_dep_on_dal_pwrl = table_clk_vlt;
3281         }
3282
3283         return 0;
3284 }
3285
3286 static int tonga_set_private_var_based_on_pptale(struct pp_hwmgr *hwmgr)
3287 {
3288         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3289         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3290
3291         phm_ppt_v1_clock_voltage_dependency_table *allowed_sclk_vdd_table =
3292                 pptable_info->vdd_dep_on_sclk;
3293         phm_ppt_v1_clock_voltage_dependency_table *allowed_mclk_vdd_table =
3294                 pptable_info->vdd_dep_on_mclk;
3295
3296         PP_ASSERT_WITH_CODE(allowed_sclk_vdd_table != NULL,
3297                 "VDD dependency on SCLK table is missing.       \
3298                 This table is mandatory", return -1);
3299         PP_ASSERT_WITH_CODE(allowed_sclk_vdd_table->count >= 1,
3300                 "VDD dependency on SCLK table has to have is missing.   \
3301                 This table is mandatory", return -1);
3302
3303         PP_ASSERT_WITH_CODE(allowed_mclk_vdd_table != NULL,
3304                 "VDD dependency on MCLK table is missing.       \
3305                 This table is mandatory", return -1);
3306         PP_ASSERT_WITH_CODE(allowed_mclk_vdd_table->count >= 1,
3307                 "VDD dependency on MCLK table has to have is missing.    \
3308                 This table is mandatory", return -1);
3309
3310         data->min_vddc_in_pp_table = (uint16_t)allowed_sclk_vdd_table->entries[0].vddc;
3311         data->max_vddc_in_pp_table = (uint16_t)allowed_sclk_vdd_table->entries[allowed_sclk_vdd_table->count - 1].vddc;
3312
3313         pptable_info->max_clock_voltage_on_ac.sclk =
3314                 allowed_sclk_vdd_table->entries[allowed_sclk_vdd_table->count - 1].clk;
3315         pptable_info->max_clock_voltage_on_ac.mclk =
3316                 allowed_mclk_vdd_table->entries[allowed_mclk_vdd_table->count - 1].clk;
3317         pptable_info->max_clock_voltage_on_ac.vddc =
3318                 allowed_sclk_vdd_table->entries[allowed_sclk_vdd_table->count - 1].vddc;
3319         pptable_info->max_clock_voltage_on_ac.vddci =
3320                 allowed_mclk_vdd_table->entries[allowed_mclk_vdd_table->count - 1].vddci;
3321
3322         hwmgr->dyn_state.max_clock_voltage_on_ac.sclk =
3323                 pptable_info->max_clock_voltage_on_ac.sclk;
3324         hwmgr->dyn_state.max_clock_voltage_on_ac.mclk =
3325                 pptable_info->max_clock_voltage_on_ac.mclk;
3326         hwmgr->dyn_state.max_clock_voltage_on_ac.vddc =
3327                 pptable_info->max_clock_voltage_on_ac.vddc;
3328         hwmgr->dyn_state.max_clock_voltage_on_ac.vddci =
3329                 pptable_info->max_clock_voltage_on_ac.vddci;
3330
3331         return 0;
3332 }
3333
3334 int tonga_unforce_dpm_levels(struct pp_hwmgr *hwmgr)
3335 {
3336         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3337         int result = 1;
3338
3339         PP_ASSERT_WITH_CODE (0 == tonga_is_dpm_running(hwmgr),
3340                 "Trying to Unforce DPM when DPM is disabled. Returning without sending SMC message.",
3341                                                         return result);
3342
3343         if (0 == data->pcie_dpm_key_disabled) {
3344                 PP_ASSERT_WITH_CODE((0 == smum_send_msg_to_smc(
3345                                                              hwmgr->smumgr,
3346                                         PPSMC_MSG_PCIeDPM_UnForceLevel)),
3347                                            "unforce pcie level failed!",
3348                                                                 return -1);
3349         }
3350
3351         result = tonga_upload_dpm_level_enable_mask(hwmgr);
3352
3353         return result;
3354 }
3355
3356 static uint32_t tonga_get_lowest_enable_level(
3357                                 struct pp_hwmgr *hwmgr, uint32_t level_mask)
3358 {
3359         uint32_t level = 0;
3360
3361         while (0 == (level_mask & (1 << level)))
3362                 level++;
3363
3364         return level;
3365 }
3366
3367 static int tonga_force_dpm_lowest(struct pp_hwmgr *hwmgr)
3368 {
3369         uint32_t level;
3370         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3371
3372         if (0 == data->pcie_dpm_key_disabled) {
3373                 /* PCIE */
3374                 if (data->dpm_level_enable_mask.pcie_dpm_enable_mask != 0) {
3375                         level = tonga_get_lowest_enable_level(hwmgr,
3376                                                               data->dpm_level_enable_mask.pcie_dpm_enable_mask);
3377                         PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state_pcie(hwmgr, level)),
3378                                             "force lowest pcie dpm state failed!", return -1);
3379                 }
3380         }
3381
3382         if (0 == data->sclk_dpm_key_disabled) {
3383                 /* SCLK */
3384                 if (0 != data->dpm_level_enable_mask.sclk_dpm_enable_mask) {
3385                         level = tonga_get_lowest_enable_level(hwmgr,
3386                                                               data->dpm_level_enable_mask.sclk_dpm_enable_mask);
3387
3388                         PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state(hwmgr, level)),
3389                                             "force sclk dpm state failed!", return -1);
3390
3391                         if (PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device,
3392                                                          CGS_IND_REG__SMC, TARGET_AND_CURRENT_PROFILE_INDEX, CURR_SCLK_INDEX) != level)
3393                                 printk(KERN_ERR "[ powerplay ] Target_and_current_Profile_Index.        \
3394                                 Curr_Sclk_Index does not match the level \n");
3395                 }
3396         }
3397
3398         if (0 == data->mclk_dpm_key_disabled) {
3399                 /* MCLK */
3400                 if (data->dpm_level_enable_mask.mclk_dpm_enable_mask != 0) {
3401                         level = tonga_get_lowest_enable_level(hwmgr,
3402                                                               data->dpm_level_enable_mask.mclk_dpm_enable_mask);
3403                         PP_ASSERT_WITH_CODE((0 == tonga_dpm_force_state_mclk(hwmgr, level)),
3404                                             "force lowest mclk dpm state failed!", return -1);
3405                         if (PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
3406                                                          TARGET_AND_CURRENT_PROFILE_INDEX, CURR_MCLK_INDEX) != level)
3407                                 printk(KERN_ERR "[ powerplay ] Target_and_current_Profile_Index. \
3408                                                 Curr_Mclk_Index does not match the level \n");
3409                 }
3410         }
3411
3412         return 0;
3413 }
3414
3415 static int tonga_patch_voltage_dependency_tables_with_lookup_table(struct pp_hwmgr *hwmgr)
3416 {
3417         uint8_t entryId;
3418         uint8_t voltageId;
3419         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3420         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3421
3422         phm_ppt_v1_clock_voltage_dependency_table *sclk_table = pptable_info->vdd_dep_on_sclk;
3423         phm_ppt_v1_clock_voltage_dependency_table *mclk_table = pptable_info->vdd_dep_on_mclk;
3424         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
3425
3426         if (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) {
3427                 for (entryId = 0; entryId < sclk_table->count; ++entryId) {
3428                         voltageId = sclk_table->entries[entryId].vddInd;
3429                         sclk_table->entries[entryId].vddgfx =
3430                                 pptable_info->vddgfx_lookup_table->entries[voltageId].us_vdd;
3431                 }
3432         } else {
3433                 for (entryId = 0; entryId < sclk_table->count; ++entryId) {
3434                         voltageId = sclk_table->entries[entryId].vddInd;
3435                         sclk_table->entries[entryId].vddc =
3436                                 pptable_info->vddc_lookup_table->entries[voltageId].us_vdd;
3437                 }
3438         }
3439
3440         for (entryId = 0; entryId < mclk_table->count; ++entryId) {
3441                 voltageId = mclk_table->entries[entryId].vddInd;
3442                 mclk_table->entries[entryId].vddc =
3443                         pptable_info->vddc_lookup_table->entries[voltageId].us_vdd;
3444         }
3445
3446         for (entryId = 0; entryId < mm_table->count; ++entryId) {
3447                 voltageId = mm_table->entries[entryId].vddcInd;
3448                 mm_table->entries[entryId].vddc =
3449                         pptable_info->vddc_lookup_table->entries[voltageId].us_vdd;
3450         }
3451
3452         return 0;
3453
3454 }
3455
3456 static int tonga_calc_voltage_dependency_tables(struct pp_hwmgr *hwmgr)
3457 {
3458         uint8_t entryId;
3459         phm_ppt_v1_voltage_lookup_record v_record;
3460         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3461         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3462
3463         phm_ppt_v1_clock_voltage_dependency_table *sclk_table = pptable_info->vdd_dep_on_sclk;
3464         phm_ppt_v1_clock_voltage_dependency_table *mclk_table = pptable_info->vdd_dep_on_mclk;
3465
3466         if (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) {
3467                 for (entryId = 0; entryId < sclk_table->count; ++entryId) {
3468                         if (sclk_table->entries[entryId].vdd_offset & (1 << 15))
3469                                 v_record.us_vdd = sclk_table->entries[entryId].vddgfx +
3470                                         sclk_table->entries[entryId].vdd_offset - 0xFFFF;
3471                         else
3472                                 v_record.us_vdd = sclk_table->entries[entryId].vddgfx +
3473                                         sclk_table->entries[entryId].vdd_offset;
3474
3475                         sclk_table->entries[entryId].vddc =
3476                                 v_record.us_cac_low = v_record.us_cac_mid =
3477                                 v_record.us_cac_high = v_record.us_vdd;
3478
3479                         tonga_add_voltage(hwmgr, pptable_info->vddc_lookup_table, &v_record);
3480                 }
3481
3482                 for (entryId = 0; entryId < mclk_table->count; ++entryId) {
3483                         if (mclk_table->entries[entryId].vdd_offset & (1 << 15))
3484                                 v_record.us_vdd = mclk_table->entries[entryId].vddc +
3485                                         mclk_table->entries[entryId].vdd_offset - 0xFFFF;
3486                         else
3487                                 v_record.us_vdd = mclk_table->entries[entryId].vddc +
3488                                         mclk_table->entries[entryId].vdd_offset;
3489
3490                         mclk_table->entries[entryId].vddgfx = v_record.us_cac_low =
3491                                 v_record.us_cac_mid = v_record.us_cac_high = v_record.us_vdd;
3492                         tonga_add_voltage(hwmgr, pptable_info->vddgfx_lookup_table, &v_record);
3493                 }
3494         }
3495
3496         return 0;
3497
3498 }
3499
3500 static int tonga_calc_mm_voltage_dependency_table(struct pp_hwmgr *hwmgr)
3501 {
3502         uint32_t entryId;
3503         phm_ppt_v1_voltage_lookup_record v_record;
3504         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3505         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3506         phm_ppt_v1_mm_clock_voltage_dependency_table *mm_table = pptable_info->mm_dep_table;
3507
3508         if (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) {
3509                 for (entryId = 0; entryId < mm_table->count; entryId++) {
3510                         if (mm_table->entries[entryId].vddgfx_offset & (1 << 15))
3511                                 v_record.us_vdd = mm_table->entries[entryId].vddc +
3512                                         mm_table->entries[entryId].vddgfx_offset - 0xFFFF;
3513                         else
3514                                 v_record.us_vdd = mm_table->entries[entryId].vddc +
3515                                         mm_table->entries[entryId].vddgfx_offset;
3516
3517                         /* Add the calculated VDDGFX to the VDDGFX lookup table */
3518                         mm_table->entries[entryId].vddgfx = v_record.us_cac_low =
3519                                 v_record.us_cac_mid = v_record.us_cac_high = v_record.us_vdd;
3520                         tonga_add_voltage(hwmgr, pptable_info->vddgfx_lookup_table, &v_record);
3521                 }
3522         }
3523         return 0;
3524 }
3525
3526
3527 /**
3528  * Change virtual leakage voltage to actual value.
3529  *
3530  * @param     hwmgr  the address of the powerplay hardware manager.
3531  * @param     pointer to changing voltage
3532  * @param     pointer to leakage table
3533  */
3534 static void tonga_patch_with_vdd_leakage(struct pp_hwmgr *hwmgr,
3535                 uint16_t *voltage, phw_tonga_leakage_voltage *pLeakageTable)
3536 {
3537         uint32_t leakage_index;
3538
3539         /* search for leakage voltage ID 0xff01 ~ 0xff08 */
3540         for (leakage_index = 0; leakage_index < pLeakageTable->count; leakage_index++) {
3541                 /* if this voltage matches a leakage voltage ID */
3542                 /* patch with actual leakage voltage */
3543                 if (pLeakageTable->leakage_id[leakage_index] == *voltage) {
3544                         *voltage = pLeakageTable->actual_voltage[leakage_index];
3545                         break;
3546                 }
3547         }
3548
3549         if (*voltage > ATOM_VIRTUAL_VOLTAGE_ID0)
3550                 printk(KERN_ERR "[ powerplay ] Voltage value looks like a Leakage ID but it's not patched \n");
3551 }
3552
3553 /**
3554  * Patch voltage lookup table by EVV leakages.
3555  *
3556  * @param     hwmgr  the address of the powerplay hardware manager.
3557  * @param     pointer to voltage lookup table
3558  * @param     pointer to leakage table
3559  * @return     always 0
3560  */
3561 static int tonga_patch_lookup_table_with_leakage(struct pp_hwmgr *hwmgr,
3562                 phm_ppt_v1_voltage_lookup_table *lookup_table,
3563                 phw_tonga_leakage_voltage *pLeakageTable)
3564 {
3565         uint32_t i;
3566
3567         for (i = 0; i < lookup_table->count; i++) {
3568                 tonga_patch_with_vdd_leakage(hwmgr,
3569                         &lookup_table->entries[i].us_vdd, pLeakageTable);
3570         }
3571
3572         return 0;
3573 }
3574
3575 static int tonga_patch_clock_voltage_lomits_with_vddc_leakage(struct pp_hwmgr *hwmgr,
3576                 phw_tonga_leakage_voltage *pLeakageTable, uint16_t *Vddc)
3577 {
3578         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3579
3580         tonga_patch_with_vdd_leakage(hwmgr, (uint16_t *)Vddc, pLeakageTable);
3581         hwmgr->dyn_state.max_clock_voltage_on_dc.vddc =
3582                 pptable_info->max_clock_voltage_on_dc.vddc;
3583
3584         return 0;
3585 }
3586
3587 static int tonga_patch_clock_voltage_limits_with_vddgfx_leakage(
3588                 struct pp_hwmgr *hwmgr, phw_tonga_leakage_voltage *pLeakageTable,
3589                 uint16_t *Vddgfx)
3590 {
3591         tonga_patch_with_vdd_leakage(hwmgr, (uint16_t *)Vddgfx, pLeakageTable);
3592         return 0;
3593 }
3594
3595 int tonga_sort_lookup_table(struct pp_hwmgr *hwmgr,
3596                 phm_ppt_v1_voltage_lookup_table *lookup_table)
3597 {
3598         uint32_t table_size, i, j;
3599         phm_ppt_v1_voltage_lookup_record tmp_voltage_lookup_record;
3600         table_size = lookup_table->count;
3601
3602         PP_ASSERT_WITH_CODE(0 != lookup_table->count,
3603                 "Lookup table is empty", return -1);
3604
3605         /* Sorting voltages */
3606         for (i = 0; i < table_size - 1; i++) {
3607                 for (j = i + 1; j > 0; j--) {
3608                         if (lookup_table->entries[j].us_vdd < lookup_table->entries[j-1].us_vdd) {
3609                                 tmp_voltage_lookup_record = lookup_table->entries[j-1];
3610                                 lookup_table->entries[j-1] = lookup_table->entries[j];
3611                                 lookup_table->entries[j] = tmp_voltage_lookup_record;
3612                         }
3613                 }
3614         }
3615
3616         return 0;
3617 }
3618
3619 static int tonga_complete_dependency_tables(struct pp_hwmgr *hwmgr)
3620 {
3621         int result = 0;
3622         int tmp_result;
3623         tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
3624         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
3625
3626         if (data->vdd_gfx_control == TONGA_VOLTAGE_CONTROL_BY_SVID2) {
3627                 tmp_result = tonga_patch_lookup_table_with_leakage(hwmgr,
3628                         pptable_info->vddgfx_lookup_table, &(data->vddcgfx_leakage));
3629                 if (tmp_result != 0)
3630                         result = tmp_result;
3631
3632                 tmp_result = tonga_patch_clock_voltage_limits_with_vddgfx_leakage(hwmgr,
3633                         &(data->vddcgfx_leakage), &pptable_info->max_clock_voltage_on_dc.vddgfx);
3634                 if (tmp_result != 0)
3635                         result = tmp_result;
3636         } else {
3637                 tmp_result = tonga_patch_lookup_table_with_leakage(hwmgr,
3638                         pptable_info->vddc_lookup_table, &(data->vddc_leakage));
3639                 if (tmp_result != 0)
3640                         result = tmp_result;
3641
3642                 tmp_result = tonga_patch_clock_voltage_lomits_with_vddc_leakage(hwmgr,
3643                         &(data->vddc_leakage), &pptable_info->max_clock_voltage_on_dc.vddc);
3644                 if (tmp_result != 0)
3645                         result = tmp_result;
3646         }
3647
3648         tmp_result = tonga_patch_voltage_dependency_tables_with_lookup_table(hwmgr);
3649         if (tmp_result != 0)
3650                 result = tmp_result;
3651
3652         tmp_result = tonga_calc_voltage_dependency_tables(hwmgr);
3653         if (tmp_result != 0)
3654                 result = tmp_result;
3655
3656         tmp_result = tonga_calc_mm_voltage_dependency_table(hwmgr);
3657         if (tmp_result != 0)
3658                 result = tmp_result;
3659
3660         tmp_result = tonga_sort_lookup_table(hwmgr, pptable_info->vddgfx_lookup_table);
3661         if (tmp_result != 0)
3662                 result = tmp_result;
3663
3664         tmp_result = tonga_sort_lookup_table(hwmgr, pptable_info->vddc_lookup_table);
3665         if (tmp_result != 0)
3666                 result = tmp_result;
3667
3668         return result;
3669 }
3670
3671 int tonga_init_sclk_threshold(struct pp_hwmgr *hwmgr)
3672 {
3673         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3674         data->low_sclk_interrupt_threshold = 0;
3675
3676         return 0;
3677 }
3678
3679 int tonga_setup_asic_task(struct pp_hwmgr *hwmgr)
3680 {
3681         int tmp_result, result = 0;
3682
3683         tmp_result = tonga_read_clock_registers(hwmgr);
3684         PP_ASSERT_WITH_CODE((0 == tmp_result),
3685                 "Failed to read clock registers!", result = tmp_result);
3686
3687         tmp_result = tonga_get_memory_type(hwmgr);
3688         PP_ASSERT_WITH_CODE((0 == tmp_result),
3689                 "Failed to get memory type!", result = tmp_result);
3690
3691         tmp_result = tonga_enable_acpi_power_management(hwmgr);
3692         PP_ASSERT_WITH_CODE((0 == tmp_result),
3693                 "Failed to enable ACPI power management!", result = tmp_result);
3694
3695         tmp_result = tonga_init_power_gate_state(hwmgr);
3696         PP_ASSERT_WITH_CODE((0 == tmp_result),
3697                 "Failed to init power gate state!", result = tmp_result);
3698
3699         tmp_result = tonga_get_mc_microcode_version(hwmgr);
3700         PP_ASSERT_WITH_CODE((0 == tmp_result),
3701                 "Failed to get MC microcode version!", result = tmp_result);
3702
3703         tmp_result = tonga_init_sclk_threshold(hwmgr);
3704         PP_ASSERT_WITH_CODE((0 == tmp_result),
3705                 "Failed to init sclk threshold!", result = tmp_result);
3706
3707         return result;
3708 }
3709
3710 /**
3711  * Enable voltage control
3712  *
3713  * @param    hwmgr  the address of the powerplay hardware manager.
3714  * @return   always 0
3715  */
3716 int tonga_enable_voltage_control(struct pp_hwmgr *hwmgr)
3717 {
3718         /* enable voltage control */
3719         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, GENERAL_PWRMGT, VOLT_PWRMGT_EN, 1);
3720
3721         return 0;
3722 }
3723
3724 /**
3725  * Checks if we want to support voltage control
3726  *
3727  * @param    hwmgr  the address of the powerplay hardware manager.
3728  */
3729 bool cf_tonga_voltage_control(const struct pp_hwmgr *hwmgr)
3730 {
3731         const struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
3732
3733         return(TONGA_VOLTAGE_CONTROL_NONE != data->voltage_control);
3734 }
3735
3736 /*---------------------------MC----------------------------*/
3737
3738 uint8_t tonga_get_memory_modile_index(struct pp_hwmgr *hwmgr)
3739 {
3740         return (uint8_t) (0xFF & (cgs_read_register(hwmgr->device, mmBIOS_SCRATCH_4) >> 16));
3741 }
3742
3743 bool tonga_check_s0_mc_reg_index(uint16_t inReg, uint16_t *outReg)
3744 {
3745         bool result = 1;
3746
3747         switch (inReg) {
3748         case  mmMC_SEQ_RAS_TIMING:
3749                 *outReg = mmMC_SEQ_RAS_TIMING_LP;
3750                 break;
3751
3752         case  mmMC_SEQ_DLL_STBY:
3753                 *outReg = mmMC_SEQ_DLL_STBY_LP;
3754                 break;
3755
3756         case  mmMC_SEQ_G5PDX_CMD0:
3757                 *outReg = mmMC_SEQ_G5PDX_CMD0_LP;
3758                 break;
3759
3760         case  mmMC_SEQ_G5PDX_CMD1:
3761                 *outReg = mmMC_SEQ_G5PDX_CMD1_LP;
3762                 break;
3763
3764         case  mmMC_SEQ_G5PDX_CTRL:
3765                 *outReg = mmMC_SEQ_G5PDX_CTRL_LP;
3766                 break;
3767
3768         case mmMC_SEQ_CAS_TIMING:
3769                 *outReg = mmMC_SEQ_CAS_TIMING_LP;
3770                 break;
3771
3772         case mmMC_SEQ_MISC_TIMING:
3773                 *outReg = mmMC_SEQ_MISC_TIMING_LP;
3774                 break;
3775
3776         case mmMC_SEQ_MISC_TIMING2:
3777                 *outReg = mmMC_SEQ_MISC_TIMING2_LP;
3778                 break;
3779
3780         case mmMC_SEQ_PMG_DVS_CMD:
3781                 *outReg = mmMC_SEQ_PMG_DVS_CMD_LP;
3782                 break;
3783
3784         case mmMC_SEQ_PMG_DVS_CTL:
3785                 *outReg = mmMC_SEQ_PMG_DVS_CTL_LP;
3786                 break;
3787
3788         case mmMC_SEQ_RD_CTL_D0:
3789                 *outReg = mmMC_SEQ_RD_CTL_D0_LP;
3790                 break;
3791
3792         case mmMC_SEQ_RD_CTL_D1:
3793                 *outReg = mmMC_SEQ_RD_CTL_D1_LP;
3794                 break;
3795
3796         case mmMC_SEQ_WR_CTL_D0:
3797                 *outReg = mmMC_SEQ_WR_CTL_D0_LP;
3798                 break;
3799
3800         case mmMC_SEQ_WR_CTL_D1:
3801                 *outReg = mmMC_SEQ_WR_CTL_D1_LP;
3802                 break;
3803
3804         case mmMC_PMG_CMD_EMRS:
3805                 *outReg = mmMC_SEQ_PMG_CMD_EMRS_LP;
3806                 break;
3807
3808         case mmMC_PMG_CMD_MRS:
3809                 *outReg = mmMC_SEQ_PMG_CMD_MRS_LP;
3810                 break;
3811
3812         case mmMC_PMG_CMD_MRS1:
3813                 *outReg = mmMC_SEQ_PMG_CMD_MRS1_LP;
3814                 break;
3815
3816         case mmMC_SEQ_PMG_TIMING:
3817                 *outReg = mmMC_SEQ_PMG_TIMING_LP;
3818                 break;
3819
3820         case mmMC_PMG_CMD_MRS2:
3821                 *outReg = mmMC_SEQ_PMG_CMD_MRS2_LP;
3822                 break;
3823
3824         case mmMC_SEQ_WR_CTL_2:
3825                 *outReg = mmMC_SEQ_WR_CTL_2_LP;
3826                 break;
3827
3828         default:
3829                 result = 0;
3830                 break;
3831         }
3832
3833         return result;
3834 }
3835
3836 int tonga_set_s0_mc_reg_index(phw_tonga_mc_reg_table *table)
3837 {
3838         uint32_t i;
3839         uint16_t address;
3840
3841         for (i = 0; i < table->last; i++) {
3842                 table->mc_reg_address[i].s0 =
3843                         tonga_check_s0_mc_reg_index(table->mc_reg_address[i].s1, &address)
3844                         ? address : table->mc_reg_address[i].s1;
3845         }
3846         return 0;
3847 }
3848
3849 int tonga_copy_vbios_smc_reg_table(const pp_atomctrl_mc_reg_table *table, phw_tonga_mc_reg_table *ni_table)
3850 {
3851         uint8_t i, j;
3852
3853         PP_ASSERT_WITH_CODE((table->last <= SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3854                 "Invalid VramInfo table.", return -1);
3855         PP_ASSERT_WITH_CODE((table->num_entries <= MAX_AC_TIMING_ENTRIES),
3856                 "Invalid VramInfo table.", return -1);
3857
3858         for (i = 0; i < table->last; i++) {
3859                 ni_table->mc_reg_address[i].s1 = table->mc_reg_address[i].s1;
3860         }
3861         ni_table->last = table->last;
3862
3863         for (i = 0; i < table->num_entries; i++) {
3864                 ni_table->mc_reg_table_entry[i].mclk_max =
3865                         table->mc_reg_table_entry[i].mclk_max;
3866                 for (j = 0; j < table->last; j++) {
3867                         ni_table->mc_reg_table_entry[i].mc_data[j] =
3868                                 table->mc_reg_table_entry[i].mc_data[j];
3869                 }
3870         }
3871
3872         ni_table->num_entries = table->num_entries;
3873
3874         return 0;
3875 }
3876
3877 /**
3878  * VBIOS omits some information to reduce size, we need to recover them here.
3879  * 1.   when we see mmMC_SEQ_MISC1, bit[31:16] EMRS1, need to be write to  mmMC_PMG_CMD_EMRS /_LP[15:0].
3880  *      Bit[15:0] MRS, need to be update mmMC_PMG_CMD_MRS/_LP[15:0]
3881  * 2.   when we see mmMC_SEQ_RESERVE_M, bit[15:0] EMRS2, need to be write to mmMC_PMG_CMD_MRS1/_LP[15:0].
3882  * 3.   need to set these data for each clock range
3883  *
3884  * @param    hwmgr the address of the powerplay hardware manager.
3885  * @param    table the address of MCRegTable
3886  * @return   always 0
3887  */
3888 int tonga_set_mc_special_registers(struct pp_hwmgr *hwmgr, phw_tonga_mc_reg_table *table)
3889 {
3890         uint8_t i, j, k;
3891         uint32_t temp_reg;
3892         const tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
3893
3894         for (i = 0, j = table->last; i < table->last; i++) {
3895                 PP_ASSERT_WITH_CODE((j < SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3896                         "Invalid VramInfo table.", return -1);
3897                 switch (table->mc_reg_address[i].s1) {
3898                 /*
3899                 * mmMC_SEQ_MISC1, bit[31:16] EMRS1, need to be write to  mmMC_PMG_CMD_EMRS /_LP[15:0].
3900                 * Bit[15:0] MRS, need to be update mmMC_PMG_CMD_MRS/_LP[15:0]
3901                 */
3902                 case mmMC_SEQ_MISC1:
3903                         temp_reg = cgs_read_register(hwmgr->device, mmMC_PMG_CMD_EMRS);
3904                         table->mc_reg_address[j].s1 = mmMC_PMG_CMD_EMRS;
3905                         table->mc_reg_address[j].s0 = mmMC_SEQ_PMG_CMD_EMRS_LP;
3906                         for (k = 0; k < table->num_entries; k++) {
3907                                 table->mc_reg_table_entry[k].mc_data[j] =
3908                                         ((temp_reg & 0xffff0000)) |
3909                                         ((table->mc_reg_table_entry[k].mc_data[i] & 0xffff0000) >> 16);
3910                         }
3911                         j++;
3912                         PP_ASSERT_WITH_CODE((j < SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3913                                 "Invalid VramInfo table.", return -1);
3914
3915                         temp_reg = cgs_read_register(hwmgr->device, mmMC_PMG_CMD_MRS);
3916                         table->mc_reg_address[j].s1 = mmMC_PMG_CMD_MRS;
3917                         table->mc_reg_address[j].s0 = mmMC_SEQ_PMG_CMD_MRS_LP;
3918                         for (k = 0; k < table->num_entries; k++) {
3919                                 table->mc_reg_table_entry[k].mc_data[j] =
3920                                         (temp_reg & 0xffff0000) |
3921                                         (table->mc_reg_table_entry[k].mc_data[i] & 0x0000ffff);
3922
3923                                 if (!data->is_memory_GDDR5) {
3924                                         table->mc_reg_table_entry[k].mc_data[j] |= 0x100;
3925                                 }
3926                         }
3927                         j++;
3928                         PP_ASSERT_WITH_CODE((j <= SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3929                                 "Invalid VramInfo table.", return -1);
3930
3931                         if (!data->is_memory_GDDR5) {
3932                                 table->mc_reg_address[j].s1 = mmMC_PMG_AUTO_CMD;
3933                                 table->mc_reg_address[j].s0 = mmMC_PMG_AUTO_CMD;
3934                                 for (k = 0; k < table->num_entries; k++) {
3935                                         table->mc_reg_table_entry[k].mc_data[j] =
3936                                                 (table->mc_reg_table_entry[k].mc_data[i] & 0xffff0000) >> 16;
3937                                 }
3938                                 j++;
3939                                 PP_ASSERT_WITH_CODE((j <= SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3940                                         "Invalid VramInfo table.", return -1);
3941                         }
3942
3943                         break;
3944
3945                 case mmMC_SEQ_RESERVE_M:
3946                         temp_reg = cgs_read_register(hwmgr->device, mmMC_PMG_CMD_MRS1);
3947                         table->mc_reg_address[j].s1 = mmMC_PMG_CMD_MRS1;
3948                         table->mc_reg_address[j].s0 = mmMC_SEQ_PMG_CMD_MRS1_LP;
3949                         for (k = 0; k < table->num_entries; k++) {
3950                                 table->mc_reg_table_entry[k].mc_data[j] =
3951                                         (temp_reg & 0xffff0000) |
3952                                         (table->mc_reg_table_entry[k].mc_data[i] & 0x0000ffff);
3953                         }
3954                         j++;
3955                         PP_ASSERT_WITH_CODE((j <= SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE),
3956                                 "Invalid VramInfo table.", return -1);
3957                         break;
3958
3959                 default:
3960                         break;
3961                 }
3962
3963         }
3964
3965         table->last = j;
3966
3967         return 0;
3968 }
3969
3970 int tonga_set_valid_flag(phw_tonga_mc_reg_table *table)
3971 {
3972         uint8_t i, j;
3973         for (i = 0; i < table->last; i++) {
3974                 for (j = 1; j < table->num_entries; j++) {
3975                         if (table->mc_reg_table_entry[j-1].mc_data[i] !=
3976                                 table->mc_reg_table_entry[j].mc_data[i]) {
3977                                 table->validflag |= (1<<i);
3978                                 break;
3979                         }
3980                 }
3981         }
3982
3983         return 0;
3984 }
3985
3986 int tonga_initialize_mc_reg_table(struct pp_hwmgr *hwmgr)
3987 {
3988         int result;
3989         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
3990         pp_atomctrl_mc_reg_table *table;
3991         phw_tonga_mc_reg_table *ni_table = &data->tonga_mc_reg_table;
3992         uint8_t module_index = tonga_get_memory_modile_index(hwmgr);
3993
3994         table = kzalloc(sizeof(pp_atomctrl_mc_reg_table), GFP_KERNEL);
3995
3996         if (NULL == table)
3997                 return -ENOMEM;
3998
3999         /* Program additional LP registers that are no longer programmed by VBIOS */
4000         cgs_write_register(hwmgr->device, mmMC_SEQ_RAS_TIMING_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_RAS_TIMING));
4001         cgs_write_register(hwmgr->device, mmMC_SEQ_CAS_TIMING_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_CAS_TIMING));
4002         cgs_write_register(hwmgr->device, mmMC_SEQ_DLL_STBY_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_DLL_STBY));
4003         cgs_write_register(hwmgr->device, mmMC_SEQ_G5PDX_CMD0_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_G5PDX_CMD0));
4004         cgs_write_register(hwmgr->device, mmMC_SEQ_G5PDX_CMD1_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_G5PDX_CMD1));
4005         cgs_write_register(hwmgr->device, mmMC_SEQ_G5PDX_CTRL_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_G5PDX_CTRL));
4006         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_DVS_CMD_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_PMG_DVS_CMD));
4007         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_DVS_CTL_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_PMG_DVS_CTL));
4008         cgs_write_register(hwmgr->device, mmMC_SEQ_MISC_TIMING_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_MISC_TIMING));
4009         cgs_write_register(hwmgr->device, mmMC_SEQ_MISC_TIMING2_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_MISC_TIMING2));
4010         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_CMD_EMRS_LP, cgs_read_register(hwmgr->device, mmMC_PMG_CMD_EMRS));
4011         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_CMD_MRS_LP, cgs_read_register(hwmgr->device, mmMC_PMG_CMD_MRS));
4012         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_CMD_MRS1_LP, cgs_read_register(hwmgr->device, mmMC_PMG_CMD_MRS1));
4013         cgs_write_register(hwmgr->device, mmMC_SEQ_WR_CTL_D0_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_WR_CTL_D0));
4014         cgs_write_register(hwmgr->device, mmMC_SEQ_WR_CTL_D1_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_WR_CTL_D1));
4015         cgs_write_register(hwmgr->device, mmMC_SEQ_RD_CTL_D0_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_RD_CTL_D0));
4016         cgs_write_register(hwmgr->device, mmMC_SEQ_RD_CTL_D1_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_RD_CTL_D1));
4017         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_TIMING_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_PMG_TIMING));
4018         cgs_write_register(hwmgr->device, mmMC_SEQ_PMG_CMD_MRS2_LP, cgs_read_register(hwmgr->device, mmMC_PMG_CMD_MRS2));
4019         cgs_write_register(hwmgr->device, mmMC_SEQ_WR_CTL_2_LP, cgs_read_register(hwmgr->device, mmMC_SEQ_WR_CTL_2));
4020
4021         memset(table, 0x00, sizeof(pp_atomctrl_mc_reg_table));
4022
4023         result = atomctrl_initialize_mc_reg_table(hwmgr, module_index, table);
4024
4025         if (0 == result)
4026                 result = tonga_copy_vbios_smc_reg_table(table, ni_table);
4027
4028         if (0 == result) {
4029                 tonga_set_s0_mc_reg_index(ni_table);
4030                 result = tonga_set_mc_special_registers(hwmgr, ni_table);
4031         }
4032
4033         if (0 == result)
4034                 tonga_set_valid_flag(ni_table);
4035
4036         kfree(table);
4037         return result;
4038 }
4039
4040 /*
4041 * Copy one arb setting to another and then switch the active set.
4042 * arbFreqSrc and arbFreqDest is one of the MC_CG_ARB_FREQ_Fx constants.
4043 */
4044 int tonga_copy_and_switch_arb_sets(struct pp_hwmgr *hwmgr,
4045                 uint32_t arbFreqSrc, uint32_t arbFreqDest)
4046 {
4047         uint32_t mc_arb_dram_timing;
4048         uint32_t mc_arb_dram_timing2;
4049         uint32_t burst_time;
4050         uint32_t mc_cg_config;
4051
4052         switch (arbFreqSrc) {
4053         case MC_CG_ARB_FREQ_F0:
4054                 mc_arb_dram_timing  = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING);
4055                 mc_arb_dram_timing2 = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING2);
4056                 burst_time = PHM_READ_FIELD(hwmgr->device, MC_ARB_BURST_TIME, STATE0);
4057                 break;
4058
4059         case MC_CG_ARB_FREQ_F1:
4060                 mc_arb_dram_timing  = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING_1);
4061                 mc_arb_dram_timing2 = cgs_read_register(hwmgr->device, mmMC_ARB_DRAM_TIMING2_1);
4062                 burst_time = PHM_READ_FIELD(hwmgr->device, MC_ARB_BURST_TIME, STATE1);
4063                 break;
4064
4065         default:
4066                 return -1;
4067         }
4068
4069         switch (arbFreqDest) {
4070         case MC_CG_ARB_FREQ_F0:
4071                 cgs_write_register(hwmgr->device, mmMC_ARB_DRAM_TIMING, mc_arb_dram_timing);
4072                 cgs_write_register(hwmgr->device, mmMC_ARB_DRAM_TIMING2, mc_arb_dram_timing2);
4073                 PHM_WRITE_FIELD(hwmgr->device, MC_ARB_BURST_TIME, STATE0, burst_time);
4074                 break;
4075
4076         case MC_CG_ARB_FREQ_F1:
4077                 cgs_write_register(hwmgr->device, mmMC_ARB_DRAM_TIMING_1, mc_arb_dram_timing);
4078                 cgs_write_register(hwmgr->device, mmMC_ARB_DRAM_TIMING2_1, mc_arb_dram_timing2);
4079                 PHM_WRITE_FIELD(hwmgr->device, MC_ARB_BURST_TIME, STATE1, burst_time);
4080                 break;
4081
4082         default:
4083                 return -1;
4084         }
4085
4086         mc_cg_config = cgs_read_register(hwmgr->device, mmMC_CG_CONFIG);
4087         mc_cg_config |= 0x0000000F;
4088         cgs_write_register(hwmgr->device, mmMC_CG_CONFIG, mc_cg_config);
4089         PHM_WRITE_FIELD(hwmgr->device, MC_ARB_CG, CG_ARB_REQ, arbFreqDest);
4090
4091         return 0;
4092 }
4093
4094 /**
4095  * Initial switch from ARB F0->F1
4096  *
4097  * @param    hwmgr  the address of the powerplay hardware manager.
4098  * @return   always 0
4099  * This function is to be called from the SetPowerState table.
4100  */
4101 int tonga_initial_switch_from_arb_f0_to_f1(struct pp_hwmgr *hwmgr)
4102 {
4103         return tonga_copy_and_switch_arb_sets(hwmgr, MC_CG_ARB_FREQ_F0, MC_CG_ARB_FREQ_F1);
4104 }
4105
4106 /**
4107  * Initialize the ARB DRAM timing table's index field.
4108  *
4109  * @param    hwmgr  the address of the powerplay hardware manager.
4110  * @return   always 0
4111  */
4112 int tonga_init_arb_table_index(struct pp_hwmgr *hwmgr)
4113 {
4114         const tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4115         uint32_t tmp;
4116         int result;
4117
4118         /*
4119         * This is a read-modify-write on the first byte of the ARB table.
4120         * The first byte in the SMU72_Discrete_MCArbDramTimingTable structure is the field 'current'.
4121         * This solution is ugly, but we never write the whole table only individual fields in it.
4122         * In reality this field should not be in that structure but in a soft register.
4123         */
4124         result = tonga_read_smc_sram_dword(hwmgr->smumgr,
4125                                 data->arb_table_start, &tmp, data->sram_end);
4126
4127         if (0 != result)
4128                 return result;
4129
4130         tmp &= 0x00FFFFFF;
4131         tmp |= ((uint32_t)MC_CG_ARB_FREQ_F1) << 24;
4132
4133         return tonga_write_smc_sram_dword(hwmgr->smumgr,
4134                         data->arb_table_start,  tmp, data->sram_end);
4135 }
4136
4137 int tonga_populate_mc_reg_address(struct pp_hwmgr *hwmgr, SMU72_Discrete_MCRegisters *mc_reg_table)
4138 {
4139         const struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4140
4141         uint32_t i, j;
4142
4143         for (i = 0, j = 0; j < data->tonga_mc_reg_table.last; j++) {
4144                 if (data->tonga_mc_reg_table.validflag & 1<<j) {
4145                         PP_ASSERT_WITH_CODE(i < SMU72_DISCRETE_MC_REGISTER_ARRAY_SIZE,
4146                                 "Index of mc_reg_table->address[] array out of boundary", return -1);
4147                         mc_reg_table->address[i].s0 =
4148                                 PP_HOST_TO_SMC_US(data->tonga_mc_reg_table.mc_reg_address[j].s0);
4149                         mc_reg_table->address[i].s1 =
4150                                 PP_HOST_TO_SMC_US(data->tonga_mc_reg_table.mc_reg_address[j].s1);
4151                         i++;
4152                 }
4153         }
4154
4155         mc_reg_table->last = (uint8_t)i;
4156
4157         return 0;
4158 }
4159
4160 /*convert register values from driver to SMC format */
4161 void tonga_convert_mc_registers(
4162         const phw_tonga_mc_reg_entry * pEntry,
4163         SMU72_Discrete_MCRegisterSet *pData,
4164         uint32_t numEntries, uint32_t validflag)
4165 {
4166         uint32_t i, j;
4167
4168         for (i = 0, j = 0; j < numEntries; j++) {
4169                 if (validflag & 1<<j) {
4170                         pData->value[i] = PP_HOST_TO_SMC_UL(pEntry->mc_data[j]);
4171                         i++;
4172                 }
4173         }
4174 }
4175
4176 /* find the entry in the memory range table, then populate the value to SMC's tonga_mc_reg_table */
4177 int tonga_convert_mc_reg_table_entry_to_smc(
4178                 struct pp_hwmgr *hwmgr,
4179                 const uint32_t memory_clock,
4180                 SMU72_Discrete_MCRegisterSet *mc_reg_table_data
4181                 )
4182 {
4183         const tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4184         uint32_t i = 0;
4185
4186         for (i = 0; i < data->tonga_mc_reg_table.num_entries; i++) {
4187                 if (memory_clock <=
4188                         data->tonga_mc_reg_table.mc_reg_table_entry[i].mclk_max) {
4189                         break;
4190                 }
4191         }
4192
4193         if ((i == data->tonga_mc_reg_table.num_entries) && (i > 0))
4194                 --i;
4195
4196         tonga_convert_mc_registers(&data->tonga_mc_reg_table.mc_reg_table_entry[i],
4197                 mc_reg_table_data, data->tonga_mc_reg_table.last, data->tonga_mc_reg_table.validflag);
4198
4199         return 0;
4200 }
4201
4202 int tonga_convert_mc_reg_table_to_smc(struct pp_hwmgr *hwmgr,
4203                 SMU72_Discrete_MCRegisters *mc_reg_table)
4204 {
4205         int result = 0;
4206         tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4207         int res;
4208         uint32_t i;
4209
4210         for (i = 0; i < data->dpm_table.mclk_table.count; i++) {
4211                 res = tonga_convert_mc_reg_table_entry_to_smc(
4212                                 hwmgr,
4213                                 data->dpm_table.mclk_table.dpm_levels[i].value,
4214                                 &mc_reg_table->data[i]
4215                                 );
4216
4217                 if (0 != res)
4218                         result = res;
4219         }
4220
4221         return result;
4222 }
4223
4224 int tonga_populate_initial_mc_reg_table(struct pp_hwmgr *hwmgr)
4225 {
4226         int result;
4227         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4228
4229         memset(&data->mc_reg_table, 0x00, sizeof(SMU72_Discrete_MCRegisters));
4230         result = tonga_populate_mc_reg_address(hwmgr, &(data->mc_reg_table));
4231         PP_ASSERT_WITH_CODE(0 == result,
4232                 "Failed to initialize MCRegTable for the MC register addresses!", return result;);
4233
4234         result = tonga_convert_mc_reg_table_to_smc(hwmgr, &data->mc_reg_table);
4235         PP_ASSERT_WITH_CODE(0 == result,
4236                 "Failed to initialize MCRegTable for driver state!", return result;);
4237
4238         return tonga_copy_bytes_to_smc(hwmgr->smumgr, data->mc_reg_table_start,
4239                         (uint8_t *)&data->mc_reg_table, sizeof(SMU72_Discrete_MCRegisters), data->sram_end);
4240 }
4241
4242 /**
4243  * Programs static screed detection parameters
4244  *
4245  * @param   hwmgr  the address of the powerplay hardware manager.
4246  * @return   always 0
4247  */
4248 int tonga_program_static_screen_threshold_parameters(struct pp_hwmgr *hwmgr)
4249 {
4250         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
4251
4252         /* Set static screen threshold unit*/
4253         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device,
4254                 CGS_IND_REG__SMC, CG_STATIC_SCREEN_PARAMETER, STATIC_SCREEN_THRESHOLD_UNIT,
4255                 data->static_screen_threshold_unit);
4256         /* Set static screen threshold*/
4257         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device,
4258                 CGS_IND_REG__SMC, CG_STATIC_SCREEN_PARAMETER, STATIC_SCREEN_THRESHOLD,
4259                 data->static_screen_threshold);
4260
4261         return 0;
4262 }
4263
4264 /**
4265  * Setup display gap for glitch free memory clock switching.
4266  *
4267  * @param    hwmgr  the address of the powerplay hardware manager.
4268  * @return   always 0
4269  */
4270 int tonga_enable_display_gap(struct pp_hwmgr *hwmgr)
4271 {
4272         uint32_t display_gap = cgs_read_ind_register(hwmgr->device,
4273                                                         CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL);
4274
4275         display_gap = PHM_SET_FIELD(display_gap,
4276                                         CG_DISPLAY_GAP_CNTL, DISP_GAP, DISPLAY_GAP_IGNORE);
4277
4278         display_gap = PHM_SET_FIELD(display_gap,
4279                                         CG_DISPLAY_GAP_CNTL, DISP_GAP_MCHG, DISPLAY_GAP_VBLANK);
4280
4281         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4282                 ixCG_DISPLAY_GAP_CNTL, display_gap);
4283
4284         return 0;
4285 }
4286
4287 /**
4288  * Programs activity state transition voting clients
4289  *
4290  * @param    hwmgr  the address of the powerplay hardware manager.
4291  * @return   always 0
4292  */
4293 int tonga_program_voting_clients(struct pp_hwmgr *hwmgr)
4294 {
4295         tonga_hwmgr *data = (tonga_hwmgr *)(hwmgr->backend);
4296
4297         /* Clear reset for voting clients before enabling DPM */
4298         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
4299                 SCLK_PWRMGT_CNTL, RESET_SCLK_CNT, 0);
4300         PHM_WRITE_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
4301                 SCLK_PWRMGT_CNTL, RESET_BUSY_CNT, 0);
4302
4303         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4304                 ixCG_FREQ_TRAN_VOTING_0, data->voting_rights_clients0);
4305         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4306                 ixCG_FREQ_TRAN_VOTING_1, data->voting_rights_clients1);
4307         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4308                 ixCG_FREQ_TRAN_VOTING_2, data->voting_rights_clients2);
4309         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4310                 ixCG_FREQ_TRAN_VOTING_3, data->voting_rights_clients3);
4311         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4312                 ixCG_FREQ_TRAN_VOTING_4, data->voting_rights_clients4);
4313         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4314                 ixCG_FREQ_TRAN_VOTING_5, data->voting_rights_clients5);
4315         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4316                 ixCG_FREQ_TRAN_VOTING_6, data->voting_rights_clients6);
4317         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4318                 ixCG_FREQ_TRAN_VOTING_7, data->voting_rights_clients7);
4319
4320         return 0;
4321 }
4322
4323
4324 int tonga_enable_dpm_tasks(struct pp_hwmgr *hwmgr)
4325 {
4326         int tmp_result, result = 0;
4327
4328         tmp_result = tonga_check_for_dpm_stopped(hwmgr);
4329
4330         if (cf_tonga_voltage_control(hwmgr)) {
4331                 tmp_result = tonga_enable_voltage_control(hwmgr);
4332                 PP_ASSERT_WITH_CODE((0 == tmp_result),
4333                         "Failed to enable voltage control!", result = tmp_result);
4334
4335                 tmp_result = tonga_construct_voltage_tables(hwmgr);
4336                 PP_ASSERT_WITH_CODE((0 == tmp_result),
4337                         "Failed to contruct voltage tables!", result = tmp_result);
4338         }
4339
4340         tmp_result = tonga_initialize_mc_reg_table(hwmgr);
4341         PP_ASSERT_WITH_CODE((0 == tmp_result),
4342                 "Failed to initialize MC reg table!", result = tmp_result);
4343
4344         tmp_result = tonga_program_static_screen_threshold_parameters(hwmgr);
4345         PP_ASSERT_WITH_CODE((0 == tmp_result),
4346                 "Failed to program static screen threshold parameters!", result = tmp_result);
4347
4348         tmp_result = tonga_enable_display_gap(hwmgr);
4349         PP_ASSERT_WITH_CODE((0 == tmp_result),
4350                 "Failed to enable display gap!", result = tmp_result);
4351
4352         tmp_result = tonga_program_voting_clients(hwmgr);
4353         PP_ASSERT_WITH_CODE((0 == tmp_result),
4354                 "Failed to program voting clients!", result = tmp_result);
4355
4356         tmp_result = tonga_process_firmware_header(hwmgr);
4357         PP_ASSERT_WITH_CODE((0 == tmp_result),
4358                 "Failed to process firmware header!", result = tmp_result);
4359
4360         tmp_result = tonga_initial_switch_from_arb_f0_to_f1(hwmgr);
4361         PP_ASSERT_WITH_CODE((0 == tmp_result),
4362                 "Failed to initialize switch from ArbF0 to F1!", result = tmp_result);
4363
4364         tmp_result = tonga_init_smc_table(hwmgr);
4365         PP_ASSERT_WITH_CODE((0 == tmp_result),
4366                 "Failed to initialize SMC table!", result = tmp_result);
4367
4368         tmp_result = tonga_init_arb_table_index(hwmgr);
4369         PP_ASSERT_WITH_CODE((0 == tmp_result),
4370                 "Failed to initialize ARB table index!", result = tmp_result);
4371
4372         tmp_result = tonga_populate_initial_mc_reg_table(hwmgr);
4373         PP_ASSERT_WITH_CODE((0 == tmp_result),
4374                 "Failed to populate initialize MC Reg table!", result = tmp_result);
4375
4376         tmp_result = tonga_notify_smc_display_change(hwmgr, false);
4377         PP_ASSERT_WITH_CODE((0 == tmp_result),
4378                 "Failed to notify no display!", result = tmp_result);
4379
4380         /* enable SCLK control */
4381         tmp_result = tonga_enable_sclk_control(hwmgr);
4382         PP_ASSERT_WITH_CODE((0 == tmp_result),
4383                 "Failed to enable SCLK control!", result = tmp_result);
4384
4385         /* enable DPM */
4386         tmp_result = tonga_start_dpm(hwmgr);
4387         PP_ASSERT_WITH_CODE((0 == tmp_result),
4388                 "Failed to start DPM!", result = tmp_result);
4389
4390         return result;
4391 }
4392
4393 int tonga_disable_dpm_tasks(struct pp_hwmgr *hwmgr)
4394 {
4395         int tmp_result, result = 0;
4396
4397         tmp_result = tonga_check_for_dpm_running(hwmgr);
4398         PP_ASSERT_WITH_CODE((0 == tmp_result),
4399                 "SMC is still running!", return 0);
4400
4401         tmp_result = tonga_stop_dpm(hwmgr);
4402         PP_ASSERT_WITH_CODE((0 == tmp_result),
4403                 "Failed to stop DPM!", result = tmp_result);
4404
4405         tmp_result = tonga_reset_to_default(hwmgr);
4406         PP_ASSERT_WITH_CODE((0 == tmp_result),
4407                 "Failed to reset to default!", result = tmp_result);
4408
4409         return result;
4410 }
4411
4412 int tonga_reset_asic_tasks(struct pp_hwmgr *hwmgr)
4413 {
4414         int result;
4415
4416         result = tonga_set_boot_state(hwmgr);
4417         if (0 != result)
4418                 printk(KERN_ERR "[ powerplay ] Failed to reset asic via set boot state! \n");
4419
4420         return result;
4421 }
4422
4423 int tonga_hwmgr_backend_fini(struct pp_hwmgr *hwmgr)
4424 {
4425         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4426
4427         if (data->soft_pp_table) {
4428                 kfree(data->soft_pp_table);
4429                 data->soft_pp_table = NULL;
4430         }
4431
4432         return phm_hwmgr_backend_fini(hwmgr);
4433 }
4434
4435 /**
4436  * Initializes the Volcanic Islands Hardware Manager
4437  *
4438  * @param   hwmgr the address of the powerplay hardware manager.
4439  * @return   1 if success; otherwise appropriate error code.
4440  */
4441 int tonga_hwmgr_backend_init(struct pp_hwmgr *hwmgr)
4442 {
4443         int result = 0;
4444         SMU72_Discrete_DpmTable  *table = NULL;
4445         tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4446         pp_atomctrl_gpio_pin_assignment gpio_pin_assignment;
4447         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
4448         phw_tonga_ulv_parm *ulv;
4449         struct cgs_system_info sys_info = {0};
4450
4451         PP_ASSERT_WITH_CODE((NULL != hwmgr),
4452                 "Invalid Parameter!", return -1;);
4453
4454         data->dll_defaule_on = 0;
4455         data->sram_end = SMC_RAM_END;
4456
4457         data->activity_target[0] = PPTONGA_TARGETACTIVITY_DFLT;
4458         data->activity_target[1] = PPTONGA_TARGETACTIVITY_DFLT;
4459         data->activity_target[2] = PPTONGA_TARGETACTIVITY_DFLT;
4460         data->activity_target[3] = PPTONGA_TARGETACTIVITY_DFLT;
4461         data->activity_target[4] = PPTONGA_TARGETACTIVITY_DFLT;
4462         data->activity_target[5] = PPTONGA_TARGETACTIVITY_DFLT;
4463         data->activity_target[6] = PPTONGA_TARGETACTIVITY_DFLT;
4464         data->activity_target[7] = PPTONGA_TARGETACTIVITY_DFLT;
4465
4466         data->vddc_vddci_delta = VDDC_VDDCI_DELTA;
4467         data->vddc_vddgfx_delta = VDDC_VDDGFX_DELTA;
4468         data->mclk_activity_target = PPTONGA_MCLK_TARGETACTIVITY_DFLT;
4469
4470         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4471                 PHM_PlatformCaps_DisableVoltageIsland);
4472
4473         data->sclk_dpm_key_disabled = 0;
4474         data->mclk_dpm_key_disabled = 0;
4475         data->pcie_dpm_key_disabled = 0;
4476         data->pcc_monitor_enabled = 0;
4477
4478         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4479                 PHM_PlatformCaps_UnTabledHardwareInterface);
4480
4481         data->gpio_debug = 0;
4482         data->engine_clock_data = 0;
4483         data->memory_clock_data = 0;
4484         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4485                 PHM_PlatformCaps_DynamicPatchPowerState);
4486
4487         /* need to set voltage control types before EVV patching*/
4488         data->voltage_control = TONGA_VOLTAGE_CONTROL_NONE;
4489         data->vdd_ci_control = TONGA_VOLTAGE_CONTROL_NONE;
4490         data->vdd_gfx_control = TONGA_VOLTAGE_CONTROL_NONE;
4491         data->mvdd_control = TONGA_VOLTAGE_CONTROL_NONE;
4492         data->force_pcie_gen = PP_PCIEGenInvalid;
4493
4494         if (atomctrl_is_voltage_controled_by_gpio_v3(hwmgr,
4495                                 VOLTAGE_TYPE_VDDC, VOLTAGE_OBJ_SVID2)) {
4496                 data->voltage_control = TONGA_VOLTAGE_CONTROL_BY_SVID2;
4497         }
4498
4499         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
4500                         PHM_PlatformCaps_ControlVDDGFX)) {
4501                 if (atomctrl_is_voltage_controled_by_gpio_v3(hwmgr,
4502                         VOLTAGE_TYPE_VDDGFX, VOLTAGE_OBJ_SVID2)) {
4503                         data->vdd_gfx_control = TONGA_VOLTAGE_CONTROL_BY_SVID2;
4504                 }
4505         }
4506
4507         if (TONGA_VOLTAGE_CONTROL_NONE == data->vdd_gfx_control) {
4508                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
4509                         PHM_PlatformCaps_ControlVDDGFX);
4510         }
4511
4512         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
4513                         PHM_PlatformCaps_EnableMVDDControl)) {
4514                 if (atomctrl_is_voltage_controled_by_gpio_v3(hwmgr,
4515                                         VOLTAGE_TYPE_MVDDC, VOLTAGE_OBJ_GPIO_LUT)) {
4516                         data->mvdd_control = TONGA_VOLTAGE_CONTROL_BY_GPIO;
4517                 }
4518         }
4519
4520         if (TONGA_VOLTAGE_CONTROL_NONE == data->mvdd_control) {
4521                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
4522                         PHM_PlatformCaps_EnableMVDDControl);
4523         }
4524
4525         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
4526                         PHM_PlatformCaps_ControlVDDCI)) {
4527                 if (atomctrl_is_voltage_controled_by_gpio_v3(hwmgr,
4528                                         VOLTAGE_TYPE_VDDCI, VOLTAGE_OBJ_GPIO_LUT))
4529                         data->vdd_ci_control = TONGA_VOLTAGE_CONTROL_BY_GPIO;
4530                 else if (atomctrl_is_voltage_controled_by_gpio_v3(hwmgr,
4531                                                 VOLTAGE_TYPE_VDDCI, VOLTAGE_OBJ_SVID2))
4532                         data->vdd_ci_control = TONGA_VOLTAGE_CONTROL_BY_SVID2;
4533         }
4534
4535         if (TONGA_VOLTAGE_CONTROL_NONE == data->vdd_ci_control)
4536                 phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
4537                 PHM_PlatformCaps_ControlVDDCI);
4538
4539         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4540                 PHM_PlatformCaps_TablelessHardwareInterface);
4541
4542         if (pptable_info->cac_dtp_table->usClockStretchAmount != 0)
4543                 phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4544                         PHM_PlatformCaps_ClockStretcher);
4545
4546         /* Initializes DPM default values*/
4547         tonga_initialize_dpm_defaults(hwmgr);
4548
4549         /* Get leakage voltage based on leakage ID.*/
4550         PP_ASSERT_WITH_CODE((0 == tonga_get_evv_voltage(hwmgr)),
4551                 "Get EVV Voltage Failed.  Abort Driver loading!", return -1);
4552
4553         tonga_complete_dependency_tables(hwmgr);
4554
4555         /* Parse pptable data read from VBIOS*/
4556         tonga_set_private_var_based_on_pptale(hwmgr);
4557
4558         /* ULV Support*/
4559         ulv = &(data->ulv);
4560         ulv->ulv_supported = 0;
4561
4562         /* Initalize Dynamic State Adjustment Rule Settings*/
4563         result = tonga_initializa_dynamic_state_adjustment_rule_settings(hwmgr);
4564         if (result)
4565                 printk(KERN_ERR "[ powerplay ] tonga_initializa_dynamic_state_adjustment_rule_settings failed!\n");
4566         data->uvd_enabled = 0;
4567
4568         table = &(data->smc_state_table);
4569
4570         /*
4571         * if ucGPIO_ID=VDDC_PCC_GPIO_PINID in GPIO_LUTable,
4572         * Peak Current Control feature is enabled and we should program PCC HW register
4573         */
4574         if (0 == atomctrl_get_pp_assign_pin(hwmgr, VDDC_PCC_GPIO_PINID, &gpio_pin_assignment)) {
4575                 uint32_t temp_reg = cgs_read_ind_register(hwmgr->device,
4576                                                                                 CGS_IND_REG__SMC, ixCNB_PWRMGT_CNTL);
4577
4578                 switch (gpio_pin_assignment.uc_gpio_pin_bit_shift) {
4579                 case 0:
4580                         temp_reg = PHM_SET_FIELD(temp_reg,
4581                                 CNB_PWRMGT_CNTL, GNB_SLOW_MODE, 0x1);
4582                         break;
4583                 case 1:
4584                         temp_reg = PHM_SET_FIELD(temp_reg,
4585                                 CNB_PWRMGT_CNTL, GNB_SLOW_MODE, 0x2);
4586                         break;
4587                 case 2:
4588                         temp_reg = PHM_SET_FIELD(temp_reg,
4589                                 CNB_PWRMGT_CNTL, GNB_SLOW, 0x1);
4590                         break;
4591                 case 3:
4592                         temp_reg = PHM_SET_FIELD(temp_reg,
4593                                 CNB_PWRMGT_CNTL, FORCE_NB_PS1, 0x1);
4594                         break;
4595                 case 4:
4596                         temp_reg = PHM_SET_FIELD(temp_reg,
4597                                 CNB_PWRMGT_CNTL, DPM_ENABLED, 0x1);
4598                         break;
4599                 default:
4600                         printk(KERN_ERR "[ powerplay ] Failed to setup PCC HW register! \
4601                                 Wrong GPIO assigned for VDDC_PCC_GPIO_PINID! \n");
4602                         break;
4603                 }
4604                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC,
4605                         ixCNB_PWRMGT_CNTL, temp_reg);
4606         }
4607
4608         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4609                 PHM_PlatformCaps_EnableSMU7ThermalManagement);
4610         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4611                 PHM_PlatformCaps_SMU7);
4612
4613         data->vddc_phase_shed_control = 0;
4614
4615         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
4616                       PHM_PlatformCaps_UVDPowerGating);
4617         phm_cap_unset(hwmgr->platform_descriptor.platformCaps,
4618                       PHM_PlatformCaps_VCEPowerGating);
4619         sys_info.size = sizeof(struct cgs_system_info);
4620         sys_info.info_id = CGS_SYSTEM_INFO_PG_FLAGS;
4621         result = cgs_query_system_info(hwmgr->device, &sys_info);
4622         if (!result) {
4623                 if (sys_info.value & AMD_PG_SUPPORT_UVD)
4624                         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4625                                       PHM_PlatformCaps_UVDPowerGating);
4626                 if (sys_info.value & AMD_PG_SUPPORT_VCE)
4627                         phm_cap_set(hwmgr->platform_descriptor.platformCaps,
4628                                       PHM_PlatformCaps_VCEPowerGating);
4629         }
4630
4631         if (0 == result) {
4632                 data->is_tlu_enabled = 0;
4633                 hwmgr->platform_descriptor.hardwareActivityPerformanceLevels =
4634                         TONGA_MAX_HARDWARE_POWERLEVELS;
4635                 hwmgr->platform_descriptor.hardwarePerformanceLevels = 2;
4636                 hwmgr->platform_descriptor.minimumClocksReductionPercentage  = 50;
4637
4638                 sys_info.size = sizeof(struct cgs_system_info);
4639                 sys_info.info_id = CGS_SYSTEM_INFO_PCIE_GEN_INFO;
4640                 result = cgs_query_system_info(hwmgr->device, &sys_info);
4641                 if (result)
4642                         data->pcie_gen_cap = 0x30007;
4643                 else
4644                         data->pcie_gen_cap = (uint32_t)sys_info.value;
4645                 if (data->pcie_gen_cap & CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3)
4646                         data->pcie_spc_cap = 20;
4647                 sys_info.size = sizeof(struct cgs_system_info);
4648                 sys_info.info_id = CGS_SYSTEM_INFO_PCIE_MLW;
4649                 result = cgs_query_system_info(hwmgr->device, &sys_info);
4650                 if (result)
4651                         data->pcie_lane_cap = 0x2f0000;
4652                 else
4653                         data->pcie_lane_cap = (uint32_t)sys_info.value;
4654         } else {
4655                 /* Ignore return value in here, we are cleaning up a mess. */
4656                 tonga_hwmgr_backend_fini(hwmgr);
4657         }
4658
4659         return result;
4660 }
4661
4662 static int tonga_force_dpm_level(struct pp_hwmgr *hwmgr,
4663                 enum amd_dpm_forced_level level)
4664 {
4665         int ret = 0;
4666
4667         switch (level) {
4668         case AMD_DPM_FORCED_LEVEL_HIGH:
4669                 ret = tonga_force_dpm_highest(hwmgr);
4670                 if (ret)
4671                         return ret;
4672                 break;
4673         case AMD_DPM_FORCED_LEVEL_LOW:
4674                 ret = tonga_force_dpm_lowest(hwmgr);
4675                 if (ret)
4676                         return ret;
4677                 break;
4678         case AMD_DPM_FORCED_LEVEL_AUTO:
4679                 ret = tonga_unforce_dpm_levels(hwmgr);
4680                 if (ret)
4681                         return ret;
4682                 break;
4683         default:
4684                 break;
4685         }
4686
4687         hwmgr->dpm_level = level;
4688         return ret;
4689 }
4690
4691 static int tonga_apply_state_adjust_rules(struct pp_hwmgr *hwmgr,
4692                                 struct pp_power_state  *prequest_ps,
4693                         const struct pp_power_state *pcurrent_ps)
4694 {
4695         struct tonga_power_state *tonga_ps =
4696                                 cast_phw_tonga_power_state(&prequest_ps->hardware);
4697
4698         uint32_t sclk;
4699         uint32_t mclk;
4700         struct PP_Clocks minimum_clocks = {0};
4701         bool disable_mclk_switching;
4702         bool disable_mclk_switching_for_frame_lock;
4703         struct cgs_display_info info = {0};
4704         const struct phm_clock_and_voltage_limits *max_limits;
4705         uint32_t i;
4706         tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4707         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
4708
4709         int32_t count;
4710         int32_t stable_pstate_sclk = 0, stable_pstate_mclk = 0;
4711
4712         data->battery_state = (PP_StateUILabel_Battery == prequest_ps->classification.ui_label);
4713
4714         PP_ASSERT_WITH_CODE(tonga_ps->performance_level_count == 2,
4715                                  "VI should always have 2 performance levels",
4716                                  );
4717
4718         max_limits = (PP_PowerSource_AC == hwmgr->power_source) ?
4719                         &(hwmgr->dyn_state.max_clock_voltage_on_ac) :
4720                         &(hwmgr->dyn_state.max_clock_voltage_on_dc);
4721
4722         if (PP_PowerSource_DC == hwmgr->power_source) {
4723                 for (i = 0; i < tonga_ps->performance_level_count; i++) {
4724                         if (tonga_ps->performance_levels[i].memory_clock > max_limits->mclk)
4725                                 tonga_ps->performance_levels[i].memory_clock = max_limits->mclk;
4726                         if (tonga_ps->performance_levels[i].engine_clock > max_limits->sclk)
4727                                 tonga_ps->performance_levels[i].engine_clock = max_limits->sclk;
4728                 }
4729         }
4730
4731         tonga_ps->vce_clocks.EVCLK = hwmgr->vce_arbiter.evclk;
4732         tonga_ps->vce_clocks.ECCLK = hwmgr->vce_arbiter.ecclk;
4733
4734         tonga_ps->acp_clk = hwmgr->acp_arbiter.acpclk;
4735
4736         cgs_get_active_displays_info(hwmgr->device, &info);
4737
4738         /*TO DO result = PHM_CheckVBlankTime(hwmgr, &vblankTooShort);*/
4739
4740         /* TO DO GetMinClockSettings(hwmgr->pPECI, &minimum_clocks); */
4741
4742         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_StablePState)) {
4743
4744                 max_limits = &(hwmgr->dyn_state.max_clock_voltage_on_ac);
4745                 stable_pstate_sclk = (max_limits->sclk * 75) / 100;
4746
4747                 for (count = pptable_info->vdd_dep_on_sclk->count-1; count >= 0; count--) {
4748                         if (stable_pstate_sclk >= pptable_info->vdd_dep_on_sclk->entries[count].clk) {
4749                                 stable_pstate_sclk = pptable_info->vdd_dep_on_sclk->entries[count].clk;
4750                                 break;
4751                         }
4752                 }
4753
4754                 if (count < 0)
4755                         stable_pstate_sclk = pptable_info->vdd_dep_on_sclk->entries[0].clk;
4756
4757                 stable_pstate_mclk = max_limits->mclk;
4758
4759                 minimum_clocks.engineClock = stable_pstate_sclk;
4760                 minimum_clocks.memoryClock = stable_pstate_mclk;
4761         }
4762
4763         if (minimum_clocks.engineClock < hwmgr->gfx_arbiter.sclk)
4764                 minimum_clocks.engineClock = hwmgr->gfx_arbiter.sclk;
4765
4766         if (minimum_clocks.memoryClock < hwmgr->gfx_arbiter.mclk)
4767                 minimum_clocks.memoryClock = hwmgr->gfx_arbiter.mclk;
4768
4769         tonga_ps->sclk_threshold = hwmgr->gfx_arbiter.sclk_threshold;
4770
4771         if (0 != hwmgr->gfx_arbiter.sclk_over_drive) {
4772                 PP_ASSERT_WITH_CODE((hwmgr->gfx_arbiter.sclk_over_drive <= hwmgr->platform_descriptor.overdriveLimit.engineClock),
4773                                         "Overdrive sclk exceeds limit",
4774                                         hwmgr->gfx_arbiter.sclk_over_drive = hwmgr->platform_descriptor.overdriveLimit.engineClock);
4775
4776                 if (hwmgr->gfx_arbiter.sclk_over_drive >= hwmgr->gfx_arbiter.sclk)
4777                         tonga_ps->performance_levels[1].engine_clock = hwmgr->gfx_arbiter.sclk_over_drive;
4778         }
4779
4780         if (0 != hwmgr->gfx_arbiter.mclk_over_drive) {
4781                 PP_ASSERT_WITH_CODE((hwmgr->gfx_arbiter.mclk_over_drive <= hwmgr->platform_descriptor.overdriveLimit.memoryClock),
4782                         "Overdrive mclk exceeds limit",
4783                         hwmgr->gfx_arbiter.mclk_over_drive = hwmgr->platform_descriptor.overdriveLimit.memoryClock);
4784
4785                 if (hwmgr->gfx_arbiter.mclk_over_drive >= hwmgr->gfx_arbiter.mclk)
4786                         tonga_ps->performance_levels[1].memory_clock = hwmgr->gfx_arbiter.mclk_over_drive;
4787         }
4788
4789         disable_mclk_switching_for_frame_lock = phm_cap_enabled(
4790                                     hwmgr->platform_descriptor.platformCaps,
4791                                     PHM_PlatformCaps_DisableMclkSwitchingForFrameLock);
4792
4793         disable_mclk_switching = (1 < info.display_count) ||
4794                                     disable_mclk_switching_for_frame_lock;
4795
4796         sclk  = tonga_ps->performance_levels[0].engine_clock;
4797         mclk  = tonga_ps->performance_levels[0].memory_clock;
4798
4799         if (disable_mclk_switching)
4800                 mclk  = tonga_ps->performance_levels[tonga_ps->performance_level_count - 1].memory_clock;
4801
4802         if (sclk < minimum_clocks.engineClock)
4803                 sclk = (minimum_clocks.engineClock > max_limits->sclk) ? max_limits->sclk : minimum_clocks.engineClock;
4804
4805         if (mclk < minimum_clocks.memoryClock)
4806                 mclk = (minimum_clocks.memoryClock > max_limits->mclk) ? max_limits->mclk : minimum_clocks.memoryClock;
4807
4808         tonga_ps->performance_levels[0].engine_clock = sclk;
4809         tonga_ps->performance_levels[0].memory_clock = mclk;
4810
4811         tonga_ps->performance_levels[1].engine_clock =
4812                 (tonga_ps->performance_levels[1].engine_clock >= tonga_ps->performance_levels[0].engine_clock) ?
4813                               tonga_ps->performance_levels[1].engine_clock :
4814                               tonga_ps->performance_levels[0].engine_clock;
4815
4816         if (disable_mclk_switching) {
4817                 if (mclk < tonga_ps->performance_levels[1].memory_clock)
4818                         mclk = tonga_ps->performance_levels[1].memory_clock;
4819
4820                 tonga_ps->performance_levels[0].memory_clock = mclk;
4821                 tonga_ps->performance_levels[1].memory_clock = mclk;
4822         } else {
4823                 if (tonga_ps->performance_levels[1].memory_clock < tonga_ps->performance_levels[0].memory_clock)
4824                         tonga_ps->performance_levels[1].memory_clock = tonga_ps->performance_levels[0].memory_clock;
4825         }
4826
4827         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_StablePState)) {
4828                 for (i=0; i < tonga_ps->performance_level_count; i++) {
4829                         tonga_ps->performance_levels[i].engine_clock = stable_pstate_sclk;
4830                         tonga_ps->performance_levels[i].memory_clock = stable_pstate_mclk;
4831                         tonga_ps->performance_levels[i].pcie_gen = data->pcie_gen_performance.max;
4832                         tonga_ps->performance_levels[i].pcie_lane = data->pcie_gen_performance.max;
4833                 }
4834         }
4835
4836         return 0;
4837 }
4838
4839 int tonga_get_power_state_size(struct pp_hwmgr *hwmgr)
4840 {
4841         return sizeof(struct tonga_power_state);
4842 }
4843
4844 static int tonga_dpm_get_mclk(struct pp_hwmgr *hwmgr, bool low)
4845 {
4846         struct pp_power_state  *ps;
4847         struct tonga_power_state  *tonga_ps;
4848
4849         if (hwmgr == NULL)
4850                 return -EINVAL;
4851
4852         ps = hwmgr->request_ps;
4853
4854         if (ps == NULL)
4855                 return -EINVAL;
4856
4857         tonga_ps = cast_phw_tonga_power_state(&ps->hardware);
4858
4859         if (low)
4860                 return tonga_ps->performance_levels[0].memory_clock;
4861         else
4862                 return tonga_ps->performance_levels[tonga_ps->performance_level_count-1].memory_clock;
4863 }
4864
4865 static int tonga_dpm_get_sclk(struct pp_hwmgr *hwmgr, bool low)
4866 {
4867         struct pp_power_state  *ps;
4868         struct tonga_power_state  *tonga_ps;
4869
4870         if (hwmgr == NULL)
4871                 return -EINVAL;
4872
4873         ps = hwmgr->request_ps;
4874
4875         if (ps == NULL)
4876                 return -EINVAL;
4877
4878         tonga_ps = cast_phw_tonga_power_state(&ps->hardware);
4879
4880         if (low)
4881                 return tonga_ps->performance_levels[0].engine_clock;
4882         else
4883                 return tonga_ps->performance_levels[tonga_ps->performance_level_count-1].engine_clock;
4884 }
4885
4886 static uint16_t tonga_get_current_pcie_speed(
4887                                                    struct pp_hwmgr *hwmgr)
4888 {
4889         uint32_t speed_cntl = 0;
4890
4891         speed_cntl = cgs_read_ind_register(hwmgr->device,
4892                                                    CGS_IND_REG__PCIE,
4893                                                    ixPCIE_LC_SPEED_CNTL);
4894         return((uint16_t)PHM_GET_FIELD(speed_cntl,
4895                         PCIE_LC_SPEED_CNTL, LC_CURRENT_DATA_RATE));
4896 }
4897
4898 static int tonga_get_current_pcie_lane_number(
4899                                                    struct pp_hwmgr *hwmgr)
4900 {
4901         uint32_t link_width;
4902
4903         link_width = PHM_READ_INDIRECT_FIELD(hwmgr->device,
4904                                                         CGS_IND_REG__PCIE,
4905                                                   PCIE_LC_LINK_WIDTH_CNTL,
4906                                                         LC_LINK_WIDTH_RD);
4907
4908         PP_ASSERT_WITH_CODE((7 >= link_width),
4909                         "Invalid PCIe lane width!", return 0);
4910
4911         return decode_pcie_lane_width(link_width);
4912 }
4913
4914 static int tonga_dpm_patch_boot_state(struct pp_hwmgr *hwmgr,
4915                                         struct pp_hw_power_state *hw_ps)
4916 {
4917         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4918         struct tonga_power_state *ps = (struct tonga_power_state *)hw_ps;
4919         ATOM_FIRMWARE_INFO_V2_2 *fw_info;
4920         uint16_t size;
4921         uint8_t frev, crev;
4922         int index = GetIndexIntoMasterTable(DATA, FirmwareInfo);
4923
4924         /* First retrieve the Boot clocks and VDDC from the firmware info table.
4925          * We assume here that fw_info is unchanged if this call fails.
4926          */
4927         fw_info = (ATOM_FIRMWARE_INFO_V2_2 *)cgs_atom_get_data_table(
4928                         hwmgr->device, index,
4929                         &size, &frev, &crev);
4930         if (!fw_info)
4931                 /* During a test, there is no firmware info table. */
4932                 return 0;
4933
4934         /* Patch the state. */
4935         data->vbios_boot_state.sclk_bootup_value  = le32_to_cpu(fw_info->ulDefaultEngineClock);
4936         data->vbios_boot_state.mclk_bootup_value  = le32_to_cpu(fw_info->ulDefaultMemoryClock);
4937         data->vbios_boot_state.mvdd_bootup_value  = le16_to_cpu(fw_info->usBootUpMVDDCVoltage);
4938         data->vbios_boot_state.vddc_bootup_value  = le16_to_cpu(fw_info->usBootUpVDDCVoltage);
4939         data->vbios_boot_state.vddci_bootup_value = le16_to_cpu(fw_info->usBootUpVDDCIVoltage);
4940         data->vbios_boot_state.pcie_gen_bootup_value = tonga_get_current_pcie_speed(hwmgr);
4941         data->vbios_boot_state.pcie_lane_bootup_value =
4942                         (uint16_t)tonga_get_current_pcie_lane_number(hwmgr);
4943
4944         /* set boot power state */
4945         ps->performance_levels[0].memory_clock = data->vbios_boot_state.mclk_bootup_value;
4946         ps->performance_levels[0].engine_clock = data->vbios_boot_state.sclk_bootup_value;
4947         ps->performance_levels[0].pcie_gen = data->vbios_boot_state.pcie_gen_bootup_value;
4948         ps->performance_levels[0].pcie_lane = data->vbios_boot_state.pcie_lane_bootup_value;
4949
4950         return 0;
4951 }
4952
4953 static int tonga_get_pp_table_entry_callback_func(struct pp_hwmgr *hwmgr,
4954                 void *state, struct pp_power_state *power_state,
4955                 void *pp_table, uint32_t classification_flag)
4956 {
4957         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
4958
4959         struct tonga_power_state  *tonga_ps =
4960                         (struct tonga_power_state *)(&(power_state->hardware));
4961
4962         struct tonga_performance_level *performance_level;
4963
4964         ATOM_Tonga_State *state_entry = (ATOM_Tonga_State *)state;
4965
4966         ATOM_Tonga_POWERPLAYTABLE *powerplay_table =
4967                         (ATOM_Tonga_POWERPLAYTABLE *)pp_table;
4968
4969         ATOM_Tonga_SCLK_Dependency_Table *sclk_dep_table =
4970                         (ATOM_Tonga_SCLK_Dependency_Table *)
4971                         (((unsigned long)powerplay_table) +
4972                         le16_to_cpu(powerplay_table->usSclkDependencyTableOffset));
4973
4974         ATOM_Tonga_MCLK_Dependency_Table *mclk_dep_table =
4975                         (ATOM_Tonga_MCLK_Dependency_Table *)
4976                         (((unsigned long)powerplay_table) +
4977                         le16_to_cpu(powerplay_table->usMclkDependencyTableOffset));
4978
4979         /* The following fields are not initialized here: id orderedList allStatesList */
4980         power_state->classification.ui_label =
4981                         (le16_to_cpu(state_entry->usClassification) &
4982                         ATOM_PPLIB_CLASSIFICATION_UI_MASK) >>
4983                         ATOM_PPLIB_CLASSIFICATION_UI_SHIFT;
4984         power_state->classification.flags = classification_flag;
4985         /* NOTE: There is a classification2 flag in BIOS that is not being used right now */
4986
4987         power_state->classification.temporary_state = false;
4988         power_state->classification.to_be_deleted = false;
4989
4990         power_state->validation.disallowOnDC =
4991                         (0 != (le32_to_cpu(state_entry->ulCapsAndSettings) & ATOM_Tonga_DISALLOW_ON_DC));
4992
4993         power_state->pcie.lanes = 0;
4994
4995         power_state->display.disableFrameModulation = false;
4996         power_state->display.limitRefreshrate = false;
4997         power_state->display.enableVariBright =
4998                         (0 != (le32_to_cpu(state_entry->ulCapsAndSettings) & ATOM_Tonga_ENABLE_VARIBRIGHT));
4999
5000         power_state->validation.supportedPowerLevels = 0;
5001         power_state->uvd_clocks.VCLK = 0;
5002         power_state->uvd_clocks.DCLK = 0;
5003         power_state->temperatures.min = 0;
5004         power_state->temperatures.max = 0;
5005
5006         performance_level = &(tonga_ps->performance_levels
5007                         [tonga_ps->performance_level_count++]);
5008
5009         PP_ASSERT_WITH_CODE(
5010                         (tonga_ps->performance_level_count < SMU72_MAX_LEVELS_GRAPHICS),
5011                         "Performance levels exceeds SMC limit!",
5012                         return -1);
5013
5014         PP_ASSERT_WITH_CODE(
5015                         (tonga_ps->performance_level_count <=
5016                                         hwmgr->platform_descriptor.hardwareActivityPerformanceLevels),
5017                         "Performance levels exceeds Driver limit!",
5018                         return -1);
5019
5020         /* Performance levels are arranged from low to high. */
5021         performance_level->memory_clock =
5022                                 le32_to_cpu(mclk_dep_table->entries[state_entry->ucMemoryClockIndexLow].ulMclk);
5023
5024         performance_level->engine_clock =
5025                                 le32_to_cpu(sclk_dep_table->entries[state_entry->ucEngineClockIndexLow].ulSclk);
5026
5027         performance_level->pcie_gen = get_pcie_gen_support(
5028                                                         data->pcie_gen_cap,
5029                                              state_entry->ucPCIEGenLow);
5030
5031         performance_level->pcie_lane = get_pcie_lane_support(
5032                                                     data->pcie_lane_cap,
5033                                            state_entry->ucPCIELaneHigh);
5034
5035         performance_level =
5036                         &(tonga_ps->performance_levels[tonga_ps->performance_level_count++]);
5037
5038         performance_level->memory_clock =
5039                                 le32_to_cpu(mclk_dep_table->entries[state_entry->ucMemoryClockIndexHigh].ulMclk);
5040
5041         performance_level->engine_clock =
5042                                 le32_to_cpu(sclk_dep_table->entries[state_entry->ucEngineClockIndexHigh].ulSclk);
5043
5044         performance_level->pcie_gen = get_pcie_gen_support(
5045                                                         data->pcie_gen_cap,
5046                                             state_entry->ucPCIEGenHigh);
5047
5048         performance_level->pcie_lane = get_pcie_lane_support(
5049                                                     data->pcie_lane_cap,
5050                                            state_entry->ucPCIELaneHigh);
5051
5052         return 0;
5053 }
5054
5055 static int tonga_get_pp_table_entry(struct pp_hwmgr *hwmgr,
5056                     unsigned long entry_index, struct pp_power_state *ps)
5057 {
5058         int result;
5059         struct tonga_power_state *tonga_ps;
5060         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5061
5062         struct phm_ppt_v1_information *table_info =
5063                         (struct phm_ppt_v1_information *)(hwmgr->pptable);
5064
5065         struct phm_ppt_v1_clock_voltage_dependency_table *dep_mclk_table =
5066                                            table_info->vdd_dep_on_mclk;
5067
5068         ps->hardware.magic = PhwTonga_Magic;
5069
5070         tonga_ps = cast_phw_tonga_power_state(&(ps->hardware));
5071
5072         result = tonga_get_powerplay_table_entry(hwmgr, entry_index, ps,
5073                         tonga_get_pp_table_entry_callback_func);
5074
5075         /* This is the earliest time we have all the dependency table and the VBIOS boot state
5076          * as PP_Tables_GetPowerPlayTableEntry retrieves the VBIOS boot state
5077          * if there is only one VDDCI/MCLK level, check if it's the same as VBIOS boot state
5078          */
5079         if (dep_mclk_table != NULL && dep_mclk_table->count == 1) {
5080                 if (dep_mclk_table->entries[0].clk !=
5081                                 data->vbios_boot_state.mclk_bootup_value)
5082                         printk(KERN_ERR "Single MCLK entry VDDCI/MCLK dependency table "
5083                                         "does not match VBIOS boot MCLK level");
5084                 if (dep_mclk_table->entries[0].vddci !=
5085                                 data->vbios_boot_state.vddci_bootup_value)
5086                         printk(KERN_ERR "Single VDDCI entry VDDCI/MCLK dependency table "
5087                                         "does not match VBIOS boot VDDCI level");
5088         }
5089
5090         /* set DC compatible flag if this state supports DC */
5091         if (!ps->validation.disallowOnDC)
5092                 tonga_ps->dc_compatible = true;
5093
5094         if (ps->classification.flags & PP_StateClassificationFlag_ACPI)
5095                 data->acpi_pcie_gen = tonga_ps->performance_levels[0].pcie_gen;
5096         else if (ps->classification.flags & PP_StateClassificationFlag_Boot) {
5097                 if (data->bacos.best_match == 0xffff) {
5098                         /* For V.I. use boot state as base BACO state */
5099                         data->bacos.best_match = PP_StateClassificationFlag_Boot;
5100                         data->bacos.performance_level = tonga_ps->performance_levels[0];
5101                 }
5102         }
5103
5104         tonga_ps->uvd_clocks.VCLK = ps->uvd_clocks.VCLK;
5105         tonga_ps->uvd_clocks.DCLK = ps->uvd_clocks.DCLK;
5106
5107         if (!result) {
5108                 uint32_t i;
5109
5110                 switch (ps->classification.ui_label) {
5111                 case PP_StateUILabel_Performance:
5112                         data->use_pcie_performance_levels = true;
5113
5114                         for (i = 0; i < tonga_ps->performance_level_count; i++) {
5115                                 if (data->pcie_gen_performance.max <
5116                                                 tonga_ps->performance_levels[i].pcie_gen)
5117                                         data->pcie_gen_performance.max =
5118                                                         tonga_ps->performance_levels[i].pcie_gen;
5119
5120                                 if (data->pcie_gen_performance.min >
5121                                                 tonga_ps->performance_levels[i].pcie_gen)
5122                                         data->pcie_gen_performance.min =
5123                                                         tonga_ps->performance_levels[i].pcie_gen;
5124
5125                                 if (data->pcie_lane_performance.max <
5126                                                 tonga_ps->performance_levels[i].pcie_lane)
5127                                         data->pcie_lane_performance.max =
5128                                                         tonga_ps->performance_levels[i].pcie_lane;
5129
5130                                 if (data->pcie_lane_performance.min >
5131                                                 tonga_ps->performance_levels[i].pcie_lane)
5132                                         data->pcie_lane_performance.min =
5133                                                         tonga_ps->performance_levels[i].pcie_lane;
5134                         }
5135                         break;
5136                 case PP_StateUILabel_Battery:
5137                         data->use_pcie_power_saving_levels = true;
5138
5139                         for (i = 0; i < tonga_ps->performance_level_count; i++) {
5140                                 if (data->pcie_gen_power_saving.max <
5141                                                 tonga_ps->performance_levels[i].pcie_gen)
5142                                         data->pcie_gen_power_saving.max =
5143                                                         tonga_ps->performance_levels[i].pcie_gen;
5144
5145                                 if (data->pcie_gen_power_saving.min >
5146                                                 tonga_ps->performance_levels[i].pcie_gen)
5147                                         data->pcie_gen_power_saving.min =
5148                                                         tonga_ps->performance_levels[i].pcie_gen;
5149
5150                                 if (data->pcie_lane_power_saving.max <
5151                                                 tonga_ps->performance_levels[i].pcie_lane)
5152                                         data->pcie_lane_power_saving.max =
5153                                                         tonga_ps->performance_levels[i].pcie_lane;
5154
5155                                 if (data->pcie_lane_power_saving.min >
5156                                                 tonga_ps->performance_levels[i].pcie_lane)
5157                                         data->pcie_lane_power_saving.min =
5158                                                         tonga_ps->performance_levels[i].pcie_lane;
5159                         }
5160                         break;
5161                 default:
5162                         break;
5163                 }
5164         }
5165         return 0;
5166 }
5167
5168 static void
5169 tonga_print_current_perforce_level(struct pp_hwmgr *hwmgr, struct seq_file *m)
5170 {
5171         uint32_t sclk, mclk, activity_percent;
5172         uint32_t offset;
5173         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5174
5175         smum_send_msg_to_smc(hwmgr->smumgr, (PPSMC_Msg)(PPSMC_MSG_API_GetSclkFrequency));
5176
5177         sclk = cgs_read_register(hwmgr->device, mmSMC_MSG_ARG_0);
5178
5179         smum_send_msg_to_smc(hwmgr->smumgr, (PPSMC_Msg)(PPSMC_MSG_API_GetMclkFrequency));
5180
5181         mclk = cgs_read_register(hwmgr->device, mmSMC_MSG_ARG_0);
5182         seq_printf(m, "\n [  mclk  ]: %u MHz\n\n [  sclk  ]: %u MHz\n", mclk/100, sclk/100);
5183
5184         offset = data->soft_regs_start + offsetof(SMU72_SoftRegisters, AverageGraphicsActivity);
5185         activity_percent = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, offset);
5186         activity_percent += 0x80;
5187         activity_percent >>= 8;
5188
5189         seq_printf(m, "\n [GPU load]: %u%%\n\n", activity_percent > 100 ? 100 : activity_percent);
5190
5191         seq_printf(m, "uvd    %sabled\n", data->uvd_power_gated ? "dis" : "en");
5192
5193         seq_printf(m, "vce    %sabled\n", data->vce_power_gated ? "dis" : "en");
5194 }
5195
5196 static int tonga_find_dpm_states_clocks_in_dpm_table(struct pp_hwmgr *hwmgr, const void *input)
5197 {
5198         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5199         const struct tonga_power_state *tonga_ps = cast_const_phw_tonga_power_state(states->pnew_state);
5200         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5201         struct tonga_single_dpm_table *psclk_table = &(data->dpm_table.sclk_table);
5202         uint32_t sclk = tonga_ps->performance_levels[tonga_ps->performance_level_count-1].engine_clock;
5203         struct tonga_single_dpm_table *pmclk_table = &(data->dpm_table.mclk_table);
5204         uint32_t mclk = tonga_ps->performance_levels[tonga_ps->performance_level_count-1].memory_clock;
5205         struct PP_Clocks min_clocks = {0};
5206         uint32_t i;
5207         struct cgs_display_info info = {0};
5208
5209         data->need_update_smu7_dpm_table = 0;
5210
5211         for (i = 0; i < psclk_table->count; i++) {
5212                 if (sclk == psclk_table->dpm_levels[i].value)
5213                         break;
5214         }
5215
5216         if (i >= psclk_table->count)
5217                 data->need_update_smu7_dpm_table |= DPMTABLE_OD_UPDATE_SCLK;
5218         else {
5219         /* TODO: Check SCLK in DAL's minimum clocks in case DeepSleep divider update is required.*/
5220                 if(data->display_timing.min_clock_insr != min_clocks.engineClockInSR)
5221                         data->need_update_smu7_dpm_table |= DPMTABLE_UPDATE_SCLK;
5222         }
5223
5224         for (i=0; i < pmclk_table->count; i++) {
5225                 if (mclk == pmclk_table->dpm_levels[i].value)
5226                         break;
5227         }
5228
5229         if (i >= pmclk_table->count)
5230                 data->need_update_smu7_dpm_table |= DPMTABLE_OD_UPDATE_MCLK;
5231
5232         cgs_get_active_displays_info(hwmgr->device, &info);
5233
5234         if (data->display_timing.num_existing_displays != info.display_count)
5235                 data->need_update_smu7_dpm_table |= DPMTABLE_UPDATE_MCLK;
5236
5237         return 0;
5238 }
5239
5240 static uint16_t tonga_get_maximum_link_speed(struct pp_hwmgr *hwmgr, const struct tonga_power_state *hw_ps)
5241 {
5242         uint32_t i;
5243         uint32_t sclk, max_sclk = 0;
5244         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5245         struct tonga_dpm_table *pdpm_table = &data->dpm_table;
5246
5247         for (i = 0; i < hw_ps->performance_level_count; i++) {
5248                 sclk = hw_ps->performance_levels[i].engine_clock;
5249                 if (max_sclk < sclk)
5250                         max_sclk = sclk;
5251         }
5252
5253         for (i = 0; i < pdpm_table->sclk_table.count; i++) {
5254                 if (pdpm_table->sclk_table.dpm_levels[i].value == max_sclk)
5255                         return (uint16_t) ((i >= pdpm_table->pcie_speed_table.count) ?
5256                                         pdpm_table->pcie_speed_table.dpm_levels[pdpm_table->pcie_speed_table.count-1].value :
5257                                         pdpm_table->pcie_speed_table.dpm_levels[i].value);
5258         }
5259
5260         return 0;
5261 }
5262
5263 static int tonga_request_link_speed_change_before_state_change(struct pp_hwmgr *hwmgr, const void *input)
5264 {
5265         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5266         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5267         const struct tonga_power_state *tonga_nps = cast_const_phw_tonga_power_state(states->pnew_state);
5268         const struct tonga_power_state *tonga_cps = cast_const_phw_tonga_power_state(states->pcurrent_state);
5269
5270         uint16_t target_link_speed = tonga_get_maximum_link_speed(hwmgr, tonga_nps);
5271         uint16_t current_link_speed;
5272
5273         if (data->force_pcie_gen == PP_PCIEGenInvalid)
5274                 current_link_speed = tonga_get_maximum_link_speed(hwmgr, tonga_cps);
5275         else
5276                 current_link_speed = data->force_pcie_gen;
5277
5278         data->force_pcie_gen = PP_PCIEGenInvalid;
5279         data->pspp_notify_required = false;
5280         if (target_link_speed > current_link_speed) {
5281                 switch(target_link_speed) {
5282                 case PP_PCIEGen3:
5283                         if (0 == acpi_pcie_perf_request(hwmgr->device, PCIE_PERF_REQ_GEN3, false))
5284                                 break;
5285                         data->force_pcie_gen = PP_PCIEGen2;
5286                         if (current_link_speed == PP_PCIEGen2)
5287                                 break;
5288                 case PP_PCIEGen2:
5289                         if (0 == acpi_pcie_perf_request(hwmgr->device, PCIE_PERF_REQ_GEN2, false))
5290                                 break;
5291                 default:
5292                         data->force_pcie_gen = tonga_get_current_pcie_speed(hwmgr);
5293                         break;
5294                 }
5295         } else {
5296                 if (target_link_speed < current_link_speed)
5297                         data->pspp_notify_required = true;
5298         }
5299
5300         return 0;
5301 }
5302
5303 static int tonga_freeze_sclk_mclk_dpm(struct pp_hwmgr *hwmgr)
5304 {
5305         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5306
5307         if (0 == data->need_update_smu7_dpm_table)
5308                 return 0;
5309
5310         if ((0 == data->sclk_dpm_key_disabled) &&
5311                 (data->need_update_smu7_dpm_table &
5312                 (DPMTABLE_OD_UPDATE_SCLK + DPMTABLE_UPDATE_SCLK))) {
5313                 PP_ASSERT_WITH_CODE(
5314                         0 == tonga_is_dpm_running(hwmgr),
5315                         "Trying to freeze SCLK DPM when DPM is disabled",
5316                         );
5317                 PP_ASSERT_WITH_CODE(
5318                         0 == smum_send_msg_to_smc(hwmgr->smumgr,
5319                                           PPSMC_MSG_SCLKDPM_FreezeLevel),
5320                         "Failed to freeze SCLK DPM during FreezeSclkMclkDPM Function!",
5321                         return -1);
5322         }
5323
5324         if ((0 == data->mclk_dpm_key_disabled) &&
5325                 (data->need_update_smu7_dpm_table &
5326                  DPMTABLE_OD_UPDATE_MCLK)) {
5327                 PP_ASSERT_WITH_CODE(0 == tonga_is_dpm_running(hwmgr),
5328                         "Trying to freeze MCLK DPM when DPM is disabled",
5329                         );
5330                 PP_ASSERT_WITH_CODE(
5331                         0 == smum_send_msg_to_smc(hwmgr->smumgr,
5332                                                         PPSMC_MSG_MCLKDPM_FreezeLevel),
5333                         "Failed to freeze MCLK DPM during FreezeSclkMclkDPM Function!",
5334                         return -1);
5335         }
5336
5337         return 0;
5338 }
5339
5340 static int tonga_populate_and_upload_sclk_mclk_dpm_levels(struct pp_hwmgr *hwmgr, const void *input)
5341 {
5342         int result = 0;
5343
5344         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5345         const struct tonga_power_state *tonga_ps = cast_const_phw_tonga_power_state(states->pnew_state);
5346         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5347         uint32_t sclk = tonga_ps->performance_levels[tonga_ps->performance_level_count-1].engine_clock;
5348         uint32_t mclk = tonga_ps->performance_levels[tonga_ps->performance_level_count-1].memory_clock;
5349         struct tonga_dpm_table *pdpm_table = &data->dpm_table;
5350
5351         struct tonga_dpm_table *pgolden_dpm_table = &data->golden_dpm_table;
5352         uint32_t dpm_count, clock_percent;
5353         uint32_t i;
5354
5355         if (0 == data->need_update_smu7_dpm_table)
5356                 return 0;
5357
5358         if (data->need_update_smu7_dpm_table & DPMTABLE_OD_UPDATE_SCLK) {
5359                 pdpm_table->sclk_table.dpm_levels[pdpm_table->sclk_table.count-1].value = sclk;
5360
5361                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_OD6PlusinACSupport) ||
5362                     phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_OD6PlusinDCSupport)) {
5363                 /* Need to do calculation based on the golden DPM table
5364                  * as the Heatmap GPU Clock axis is also based on the default values
5365                  */
5366                         PP_ASSERT_WITH_CODE(
5367                                 (pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value != 0),
5368                                 "Divide by 0!",
5369                                 return -1);
5370                         dpm_count = pdpm_table->sclk_table.count < 2 ? 0 : pdpm_table->sclk_table.count-2;
5371                         for (i = dpm_count; i > 1; i--) {
5372                                 if (sclk > pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value) {
5373                                         clock_percent = ((sclk - pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value)*100) /
5374                                                         pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value;
5375
5376                                         pdpm_table->sclk_table.dpm_levels[i].value =
5377                                                         pgolden_dpm_table->sclk_table.dpm_levels[i].value +
5378                                                         (pgolden_dpm_table->sclk_table.dpm_levels[i].value * clock_percent)/100;
5379
5380                                 } else if (pgolden_dpm_table->sclk_table.dpm_levels[pdpm_table->sclk_table.count-1].value > sclk) {
5381                                         clock_percent = ((pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value - sclk)*100) /
5382                                                                 pgolden_dpm_table->sclk_table.dpm_levels[pgolden_dpm_table->sclk_table.count-1].value;
5383
5384                                         pdpm_table->sclk_table.dpm_levels[i].value =
5385                                                         pgolden_dpm_table->sclk_table.dpm_levels[i].value -
5386                                                         (pgolden_dpm_table->sclk_table.dpm_levels[i].value * clock_percent)/100;
5387                                 } else
5388                                         pdpm_table->sclk_table.dpm_levels[i].value =
5389                                                         pgolden_dpm_table->sclk_table.dpm_levels[i].value;
5390                         }
5391                 }
5392         }
5393
5394         if (data->need_update_smu7_dpm_table & DPMTABLE_OD_UPDATE_MCLK) {
5395                 pdpm_table->mclk_table.dpm_levels[pdpm_table->mclk_table.count-1].value = mclk;
5396
5397                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_OD6PlusinACSupport) ||
5398                         phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_OD6PlusinDCSupport)) {
5399
5400                         PP_ASSERT_WITH_CODE(
5401                                         (pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value != 0),
5402                                         "Divide by 0!",
5403                                         return -1);
5404                         dpm_count = pdpm_table->mclk_table.count < 2? 0 : pdpm_table->mclk_table.count-2;
5405                         for (i = dpm_count; i > 1; i--) {
5406                                 if (mclk > pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value) {
5407                                                 clock_percent = ((mclk - pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value)*100) /
5408                                                                     pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value;
5409
5410                                                 pdpm_table->mclk_table.dpm_levels[i].value =
5411                                                                                 pgolden_dpm_table->mclk_table.dpm_levels[i].value +
5412                                                                                 (pgolden_dpm_table->mclk_table.dpm_levels[i].value * clock_percent)/100;
5413
5414                                 } else if (pgolden_dpm_table->mclk_table.dpm_levels[pdpm_table->mclk_table.count-1].value > mclk) {
5415                                                 clock_percent = ((pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value - mclk)*100) /
5416                                                                     pgolden_dpm_table->mclk_table.dpm_levels[pgolden_dpm_table->mclk_table.count-1].value;
5417
5418                                                 pdpm_table->mclk_table.dpm_levels[i].value =
5419                                                                         pgolden_dpm_table->mclk_table.dpm_levels[i].value -
5420                                                                         (pgolden_dpm_table->mclk_table.dpm_levels[i].value * clock_percent)/100;
5421                                 } else
5422                                         pdpm_table->mclk_table.dpm_levels[i].value = pgolden_dpm_table->mclk_table.dpm_levels[i].value;
5423                         }
5424                 }
5425         }
5426
5427         if (data->need_update_smu7_dpm_table & (DPMTABLE_OD_UPDATE_SCLK + DPMTABLE_UPDATE_SCLK)) {
5428                 result = tonga_populate_all_graphic_levels(hwmgr);
5429                 PP_ASSERT_WITH_CODE((0 == result),
5430                         "Failed to populate SCLK during PopulateNewDPMClocksStates Function!",
5431                         return result);
5432         }
5433
5434         if (data->need_update_smu7_dpm_table & (DPMTABLE_OD_UPDATE_MCLK + DPMTABLE_UPDATE_MCLK)) {
5435                 /*populate MCLK dpm table to SMU7 */
5436                 result = tonga_populate_all_memory_levels(hwmgr);
5437                 PP_ASSERT_WITH_CODE((0 == result),
5438                                 "Failed to populate MCLK during PopulateNewDPMClocksStates Function!",
5439                                 return result);
5440         }
5441
5442         return result;
5443 }
5444
5445 static  int tonga_trim_single_dpm_states(struct pp_hwmgr *hwmgr,
5446                           struct tonga_single_dpm_table * pdpm_table,
5447                              uint32_t low_limit, uint32_t high_limit)
5448 {
5449         uint32_t i;
5450
5451         for (i = 0; i < pdpm_table->count; i++) {
5452                 if ((pdpm_table->dpm_levels[i].value < low_limit) ||
5453                     (pdpm_table->dpm_levels[i].value > high_limit))
5454                         pdpm_table->dpm_levels[i].enabled = false;
5455                 else
5456                         pdpm_table->dpm_levels[i].enabled = true;
5457         }
5458         return 0;
5459 }
5460
5461 static int tonga_trim_dpm_states(struct pp_hwmgr *hwmgr, const struct tonga_power_state *hw_state)
5462 {
5463         int result = 0;
5464         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5465         uint32_t high_limit_count;
5466
5467         PP_ASSERT_WITH_CODE((hw_state->performance_level_count >= 1),
5468                                 "power state did not have any performance level",
5469                                  return -1);
5470
5471         high_limit_count = (1 == hw_state->performance_level_count) ? 0: 1;
5472
5473         tonga_trim_single_dpm_states(hwmgr,
5474                                         &(data->dpm_table.sclk_table),
5475                                         hw_state->performance_levels[0].engine_clock,
5476                                         hw_state->performance_levels[high_limit_count].engine_clock);
5477
5478         tonga_trim_single_dpm_states(hwmgr,
5479                                                 &(data->dpm_table.mclk_table),
5480                                                 hw_state->performance_levels[0].memory_clock,
5481                                                 hw_state->performance_levels[high_limit_count].memory_clock);
5482
5483         return result;
5484 }
5485
5486 static int tonga_generate_dpm_level_enable_mask(struct pp_hwmgr *hwmgr, const void *input)
5487 {
5488         int result;
5489         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5490         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5491         const struct tonga_power_state *tonga_ps = cast_const_phw_tonga_power_state(states->pnew_state);
5492
5493         result = tonga_trim_dpm_states(hwmgr, tonga_ps);
5494         if (0 != result)
5495                 return result;
5496
5497         data->dpm_level_enable_mask.sclk_dpm_enable_mask = tonga_get_dpm_level_enable_mask_value(&data->dpm_table.sclk_table);
5498         data->dpm_level_enable_mask.mclk_dpm_enable_mask = tonga_get_dpm_level_enable_mask_value(&data->dpm_table.mclk_table);
5499         data->last_mclk_dpm_enable_mask = data->dpm_level_enable_mask.mclk_dpm_enable_mask;
5500         if (data->uvd_enabled)
5501                 data->dpm_level_enable_mask.mclk_dpm_enable_mask &= 0xFFFFFFFE;
5502
5503         data->dpm_level_enable_mask.pcie_dpm_enable_mask = tonga_get_dpm_level_enable_mask_value(&data->dpm_table.pcie_speed_table);
5504
5505         return 0;
5506 }
5507
5508 int tonga_enable_disable_vce_dpm(struct pp_hwmgr *hwmgr, bool enable)
5509 {
5510         return smum_send_msg_to_smc(hwmgr->smumgr, enable ?
5511                                   (PPSMC_Msg)PPSMC_MSG_VCEDPM_Enable :
5512                                   (PPSMC_Msg)PPSMC_MSG_VCEDPM_Disable);
5513 }
5514
5515 int tonga_enable_disable_uvd_dpm(struct pp_hwmgr *hwmgr, bool enable)
5516 {
5517         return smum_send_msg_to_smc(hwmgr->smumgr, enable ?
5518                                   (PPSMC_Msg)PPSMC_MSG_UVDDPM_Enable :
5519                                   (PPSMC_Msg)PPSMC_MSG_UVDDPM_Disable);
5520 }
5521
5522 int tonga_update_uvd_dpm(struct pp_hwmgr *hwmgr, bool bgate)
5523 {
5524         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5525         uint32_t mm_boot_level_offset, mm_boot_level_value;
5526         struct phm_ppt_v1_information *ptable_information = (struct phm_ppt_v1_information *)(hwmgr->pptable);
5527
5528         if (!bgate) {
5529                 data->smc_state_table.UvdBootLevel = (uint8_t) (ptable_information->mm_dep_table->count - 1);
5530                 mm_boot_level_offset = data->dpm_table_start + offsetof(SMU72_Discrete_DpmTable, UvdBootLevel);
5531                 mm_boot_level_offset /= 4;
5532                 mm_boot_level_offset *= 4;
5533                 mm_boot_level_value = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, mm_boot_level_offset);
5534                 mm_boot_level_value &= 0x00FFFFFF;
5535                 mm_boot_level_value |= data->smc_state_table.UvdBootLevel << 24;
5536                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, mm_boot_level_offset, mm_boot_level_value);
5537
5538                 if (!phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_UVDDPM) ||
5539                     phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_StablePState))
5540                         smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
5541                                                 PPSMC_MSG_UVDDPM_SetEnabledMask,
5542                                                 (uint32_t)(1 << data->smc_state_table.UvdBootLevel));
5543         }
5544
5545         return tonga_enable_disable_uvd_dpm(hwmgr, !bgate);
5546 }
5547
5548 int tonga_update_vce_dpm(struct pp_hwmgr *hwmgr, const void *input)
5549 {
5550         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5551         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5552         const struct tonga_power_state *tonga_nps = cast_const_phw_tonga_power_state(states->pnew_state);
5553         const struct tonga_power_state *tonga_cps = cast_const_phw_tonga_power_state(states->pcurrent_state);
5554
5555         uint32_t mm_boot_level_offset, mm_boot_level_value;
5556         struct phm_ppt_v1_information *pptable_info = (struct phm_ppt_v1_information *)(hwmgr->pptable);
5557
5558         if (tonga_nps->vce_clocks.EVCLK > 0 && (tonga_cps == NULL || tonga_cps->vce_clocks.EVCLK == 0)) {
5559                 data->smc_state_table.VceBootLevel = (uint8_t) (pptable_info->mm_dep_table->count - 1);
5560
5561                 mm_boot_level_offset = data->dpm_table_start + offsetof(SMU72_Discrete_DpmTable, VceBootLevel);
5562                 mm_boot_level_offset /= 4;
5563                 mm_boot_level_offset *= 4;
5564                 mm_boot_level_value = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, mm_boot_level_offset);
5565                 mm_boot_level_value &= 0xFF00FFFF;
5566                 mm_boot_level_value |= data->smc_state_table.VceBootLevel << 16;
5567                 cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, mm_boot_level_offset, mm_boot_level_value);
5568
5569                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_StablePState))
5570                         smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
5571                                         PPSMC_MSG_VCEDPM_SetEnabledMask,
5572                                 (uint32_t)(1 << data->smc_state_table.VceBootLevel));
5573
5574                 tonga_enable_disable_vce_dpm(hwmgr, true);
5575         } else if (tonga_nps->vce_clocks.EVCLK == 0 && tonga_cps != NULL && tonga_cps->vce_clocks.EVCLK > 0)
5576                 tonga_enable_disable_vce_dpm(hwmgr, false);
5577
5578         return 0;
5579 }
5580
5581 static int tonga_update_and_upload_mc_reg_table(struct pp_hwmgr *hwmgr)
5582 {
5583         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5584
5585         uint32_t address;
5586         int32_t result;
5587
5588         if (0 == (data->need_update_smu7_dpm_table & DPMTABLE_OD_UPDATE_MCLK))
5589                 return 0;
5590
5591
5592         memset(&data->mc_reg_table, 0, sizeof(SMU72_Discrete_MCRegisters));
5593
5594         result = tonga_convert_mc_reg_table_to_smc(hwmgr, &(data->mc_reg_table));
5595
5596         if(result != 0)
5597                 return result;
5598
5599
5600         address = data->mc_reg_table_start + (uint32_t)offsetof(SMU72_Discrete_MCRegisters, data[0]);
5601
5602         return  tonga_copy_bytes_to_smc(hwmgr->smumgr, address,
5603                                  (uint8_t *)&data->mc_reg_table.data[0],
5604                                 sizeof(SMU72_Discrete_MCRegisterSet) * data->dpm_table.mclk_table.count,
5605                                 data->sram_end);
5606 }
5607
5608 static int tonga_program_memory_timing_parameters_conditionally(struct pp_hwmgr *hwmgr)
5609 {
5610         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5611
5612         if (data->need_update_smu7_dpm_table &
5613                 (DPMTABLE_OD_UPDATE_SCLK + DPMTABLE_OD_UPDATE_MCLK))
5614                 return tonga_program_memory_timing_parameters(hwmgr);
5615
5616         return 0;
5617 }
5618
5619 static int tonga_unfreeze_sclk_mclk_dpm(struct pp_hwmgr *hwmgr)
5620 {
5621         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5622
5623         if (0 == data->need_update_smu7_dpm_table)
5624                 return 0;
5625
5626         if ((0 == data->sclk_dpm_key_disabled) &&
5627                 (data->need_update_smu7_dpm_table &
5628                 (DPMTABLE_OD_UPDATE_SCLK + DPMTABLE_UPDATE_SCLK))) {
5629
5630                 PP_ASSERT_WITH_CODE(0 == tonga_is_dpm_running(hwmgr),
5631                         "Trying to Unfreeze SCLK DPM when DPM is disabled",
5632                         );
5633                 PP_ASSERT_WITH_CODE(
5634                          0 == smum_send_msg_to_smc(hwmgr->smumgr,
5635                                          PPSMC_MSG_SCLKDPM_UnfreezeLevel),
5636                         "Failed to unfreeze SCLK DPM during UnFreezeSclkMclkDPM Function!",
5637                         return -1);
5638         }
5639
5640         if ((0 == data->mclk_dpm_key_disabled) &&
5641                 (data->need_update_smu7_dpm_table & DPMTABLE_OD_UPDATE_MCLK)) {
5642
5643                 PP_ASSERT_WITH_CODE(
5644                                 0 == tonga_is_dpm_running(hwmgr),
5645                                 "Trying to Unfreeze MCLK DPM when DPM is disabled",
5646                                 );
5647                 PP_ASSERT_WITH_CODE(
5648                          0 == smum_send_msg_to_smc(hwmgr->smumgr,
5649                                          PPSMC_MSG_SCLKDPM_UnfreezeLevel),
5650                     "Failed to unfreeze MCLK DPM during UnFreezeSclkMclkDPM Function!",
5651                     return -1);
5652         }
5653
5654         data->need_update_smu7_dpm_table = 0;
5655
5656         return 0;
5657 }
5658
5659 static int tonga_notify_link_speed_change_after_state_change(struct pp_hwmgr *hwmgr, const void *input)
5660 {
5661         const struct phm_set_power_state_input *states = (const struct phm_set_power_state_input *)input;
5662         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5663         const struct tonga_power_state *tonga_ps = cast_const_phw_tonga_power_state(states->pnew_state);
5664         uint16_t target_link_speed = tonga_get_maximum_link_speed(hwmgr, tonga_ps);
5665         uint8_t  request;
5666
5667         if (data->pspp_notify_required  ||
5668             data->pcie_performance_request) {
5669                 if (target_link_speed == PP_PCIEGen3)
5670                         request = PCIE_PERF_REQ_GEN3;
5671                 else if (target_link_speed == PP_PCIEGen2)
5672                         request = PCIE_PERF_REQ_GEN2;
5673                 else
5674                         request = PCIE_PERF_REQ_GEN1;
5675
5676                 if(request == PCIE_PERF_REQ_GEN1 && tonga_get_current_pcie_speed(hwmgr) > 0) {
5677                         data->pcie_performance_request = false;
5678                         return 0;
5679                 }
5680
5681                 if (0 != acpi_pcie_perf_request(hwmgr->device, request, false)) {
5682                         if (PP_PCIEGen2 == target_link_speed)
5683                                 printk("PSPP request to switch to Gen2 from Gen3 Failed!");
5684                         else
5685                                 printk("PSPP request to switch to Gen1 from Gen2 Failed!");
5686                 }
5687         }
5688
5689         data->pcie_performance_request = false;
5690         return 0;
5691 }
5692
5693 static int tonga_set_power_state_tasks(struct pp_hwmgr *hwmgr, const void *input)
5694 {
5695         int tmp_result, result = 0;
5696
5697         tmp_result = tonga_find_dpm_states_clocks_in_dpm_table(hwmgr, input);
5698         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to find DPM states clocks in DPM table!", result = tmp_result);
5699
5700         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest)) {
5701                 tmp_result = tonga_request_link_speed_change_before_state_change(hwmgr, input);
5702                 PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to request link speed change before state change!", result = tmp_result);
5703         }
5704
5705         tmp_result = tonga_freeze_sclk_mclk_dpm(hwmgr);
5706         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to freeze SCLK MCLK DPM!", result = tmp_result);
5707
5708         tmp_result = tonga_populate_and_upload_sclk_mclk_dpm_levels(hwmgr, input);
5709         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to populate and upload SCLK MCLK DPM levels!", result = tmp_result);
5710
5711         tmp_result = tonga_generate_dpm_level_enable_mask(hwmgr, input);
5712         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to generate DPM level enabled mask!", result = tmp_result);
5713
5714         tmp_result = tonga_update_vce_dpm(hwmgr, input);
5715         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to update VCE DPM!", result = tmp_result);
5716
5717         tmp_result = tonga_update_sclk_threshold(hwmgr);
5718         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to update SCLK threshold!", result = tmp_result);
5719
5720         tmp_result = tonga_update_and_upload_mc_reg_table(hwmgr);
5721         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to upload MC reg table!", result = tmp_result);
5722
5723         tmp_result = tonga_program_memory_timing_parameters_conditionally(hwmgr);
5724         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to program memory timing parameters!", result = tmp_result);
5725
5726         tmp_result = tonga_unfreeze_sclk_mclk_dpm(hwmgr);
5727         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to unfreeze SCLK MCLK DPM!", result = tmp_result);
5728
5729         tmp_result = tonga_upload_dpm_level_enable_mask(hwmgr);
5730         PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to upload DPM level enabled mask!", result = tmp_result);
5731
5732         if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_PCIEPerformanceRequest)) {
5733                 tmp_result = tonga_notify_link_speed_change_after_state_change(hwmgr, input);
5734                 PP_ASSERT_WITH_CODE((0 == tmp_result), "Failed to notify link speed change after state change!", result = tmp_result);
5735         }
5736
5737         return result;
5738 }
5739
5740 /**
5741 *  Set maximum target operating fan output PWM
5742 *
5743 * @param    pHwMgr:  the address of the powerplay hardware manager.
5744 * @param    usMaxFanPwm:  max operating fan PWM in percents
5745 * @return   The response that came from the SMC.
5746 */
5747 static int tonga_set_max_fan_pwm_output(struct pp_hwmgr *hwmgr, uint16_t us_max_fan_pwm)
5748 {
5749         hwmgr->thermal_controller.advanceFanControlParameters.usMaxFanPWM = us_max_fan_pwm;
5750
5751         if (phm_is_hw_access_blocked(hwmgr))
5752                 return 0;
5753
5754         return (0 == smum_send_msg_to_smc_with_parameter(hwmgr->smumgr, PPSMC_MSG_SetFanPwmMax, us_max_fan_pwm) ? 0 : -1);
5755 }
5756
5757 int tonga_notify_smc_display_config_after_ps_adjustment(struct pp_hwmgr *hwmgr)
5758 {
5759         uint32_t num_active_displays = 0;
5760         struct cgs_display_info info = {0};
5761         info.mode_info = NULL;
5762
5763         cgs_get_active_displays_info(hwmgr->device, &info);
5764
5765         num_active_displays = info.display_count;
5766
5767         if (num_active_displays > 1)  /* to do && (pHwMgr->pPECI->displayConfiguration.bMultiMonitorInSync != TRUE)) */
5768                 tonga_notify_smc_display_change(hwmgr, false);
5769         else
5770                 tonga_notify_smc_display_change(hwmgr, true);
5771
5772         return 0;
5773 }
5774
5775 /**
5776 * Programs the display gap
5777 *
5778 * @param    hwmgr  the address of the powerplay hardware manager.
5779 * @return   always OK
5780 */
5781 int tonga_program_display_gap(struct pp_hwmgr *hwmgr)
5782 {
5783         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5784         uint32_t num_active_displays = 0;
5785         uint32_t display_gap = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL);
5786         uint32_t display_gap2;
5787         uint32_t pre_vbi_time_in_us;
5788         uint32_t frame_time_in_us;
5789         uint32_t ref_clock;
5790         uint32_t refresh_rate = 0;
5791         struct cgs_display_info info = {0};
5792         struct cgs_mode_info mode_info;
5793
5794         info.mode_info = &mode_info;
5795
5796         cgs_get_active_displays_info(hwmgr->device, &info);
5797         num_active_displays = info.display_count;
5798
5799         display_gap = PHM_SET_FIELD(display_gap, CG_DISPLAY_GAP_CNTL, DISP_GAP, (num_active_displays > 0)? DISPLAY_GAP_VBLANK_OR_WM : DISPLAY_GAP_IGNORE);
5800         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL, display_gap);
5801
5802         ref_clock = mode_info.ref_clock;
5803         refresh_rate = mode_info.refresh_rate;
5804
5805         if(0 == refresh_rate)
5806                 refresh_rate = 60;
5807
5808         frame_time_in_us = 1000000 / refresh_rate;
5809
5810         pre_vbi_time_in_us = frame_time_in_us - 200 - mode_info.vblank_time_us;
5811         display_gap2 = pre_vbi_time_in_us * (ref_clock / 100);
5812
5813         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_DISPLAY_GAP_CNTL2, display_gap2);
5814
5815         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, data->soft_regs_start + offsetof(SMU72_SoftRegisters, PreVBlankGap), 0x64);
5816
5817         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, data->soft_regs_start + offsetof(SMU72_SoftRegisters, VBlankTimeout), (frame_time_in_us - pre_vbi_time_in_us));
5818
5819         if (num_active_displays == 1)
5820                 tonga_notify_smc_display_change(hwmgr, true);
5821
5822         return 0;
5823 }
5824
5825 int tonga_display_configuration_changed_task(struct pp_hwmgr *hwmgr)
5826 {
5827
5828         tonga_program_display_gap(hwmgr);
5829
5830         /* to do PhwTonga_CacUpdateDisplayConfiguration(pHwMgr); */
5831         return 0;
5832 }
5833
5834 /**
5835 *  Set maximum target operating fan output RPM
5836 *
5837 * @param    pHwMgr:  the address of the powerplay hardware manager.
5838 * @param    usMaxFanRpm:  max operating fan RPM value.
5839 * @return   The response that came from the SMC.
5840 */
5841 static int tonga_set_max_fan_rpm_output(struct pp_hwmgr *hwmgr, uint16_t us_max_fan_pwm)
5842 {
5843         hwmgr->thermal_controller.advanceFanControlParameters.usMaxFanRPM = us_max_fan_pwm;
5844
5845         if (phm_is_hw_access_blocked(hwmgr))
5846                 return 0;
5847
5848         return (0 == smum_send_msg_to_smc_with_parameter(hwmgr->smumgr, PPSMC_MSG_SetFanRpmMax, us_max_fan_pwm) ? 0 : -1);
5849 }
5850
5851 uint32_t tonga_get_xclk(struct pp_hwmgr *hwmgr)
5852 {
5853         uint32_t reference_clock;
5854         uint32_t tc;
5855         uint32_t divide;
5856
5857         ATOM_FIRMWARE_INFO *fw_info;
5858         uint16_t size;
5859         uint8_t frev, crev;
5860         int index = GetIndexIntoMasterTable(DATA, FirmwareInfo);
5861
5862         tc = PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, CG_CLKPIN_CNTL_2, MUX_TCLK_TO_XCLK);
5863
5864         if (tc)
5865                 return TCLK;
5866
5867         fw_info = (ATOM_FIRMWARE_INFO *)cgs_atom_get_data_table(hwmgr->device, index,
5868                                                   &size, &frev, &crev);
5869
5870         if (!fw_info)
5871                 return 0;
5872
5873         reference_clock = le16_to_cpu(fw_info->usReferenceClock);
5874
5875         divide = PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC, CG_CLKPIN_CNTL, XTALIN_DIVIDE);
5876
5877         if (0 != divide)
5878                 return reference_clock / 4;
5879
5880         return reference_clock;
5881 }
5882
5883 int tonga_dpm_set_interrupt_state(void *private_data,
5884                                          unsigned src_id, unsigned type,
5885                                          int enabled)
5886 {
5887         uint32_t cg_thermal_int;
5888         struct pp_hwmgr *hwmgr = ((struct pp_eventmgr *)private_data)->hwmgr;
5889
5890         if (hwmgr == NULL)
5891                 return -EINVAL;
5892
5893         switch (type) {
5894         case AMD_THERMAL_IRQ_LOW_TO_HIGH:
5895                 if (enabled) {
5896                         cg_thermal_int = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT);
5897                         cg_thermal_int |= CG_THERMAL_INT_CTRL__THERM_INTH_MASK_MASK;
5898                         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT, cg_thermal_int);
5899                 } else {
5900                         cg_thermal_int = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT);
5901                         cg_thermal_int &= ~CG_THERMAL_INT_CTRL__THERM_INTH_MASK_MASK;
5902                         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT, cg_thermal_int);
5903                 }
5904                 break;
5905
5906         case AMD_THERMAL_IRQ_HIGH_TO_LOW:
5907                 if (enabled) {
5908                         cg_thermal_int = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT);
5909                         cg_thermal_int |= CG_THERMAL_INT_CTRL__THERM_INTL_MASK_MASK;
5910                         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT, cg_thermal_int);
5911                 } else {
5912                         cg_thermal_int = cgs_read_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT);
5913                         cg_thermal_int &= ~CG_THERMAL_INT_CTRL__THERM_INTL_MASK_MASK;
5914                         cgs_write_ind_register(hwmgr->device, CGS_IND_REG__SMC, ixCG_THERMAL_INT, cg_thermal_int);
5915                 }
5916                 break;
5917         default:
5918                 break;
5919         }
5920         return 0;
5921 }
5922
5923 int tonga_register_internal_thermal_interrupt(struct pp_hwmgr *hwmgr,
5924                                         const void *thermal_interrupt_info)
5925 {
5926         int result;
5927         const struct pp_interrupt_registration_info *info =
5928                         (const struct pp_interrupt_registration_info *)thermal_interrupt_info;
5929
5930         if (info == NULL)
5931                 return -EINVAL;
5932
5933         result = cgs_add_irq_source(hwmgr->device, 230, AMD_THERMAL_IRQ_LAST,
5934                                 tonga_dpm_set_interrupt_state,
5935                                 info->call_back, info->context);
5936
5937         if (result)
5938                 return -EINVAL;
5939
5940         result = cgs_add_irq_source(hwmgr->device, 231, AMD_THERMAL_IRQ_LAST,
5941                                 tonga_dpm_set_interrupt_state,
5942                                 info->call_back, info->context);
5943
5944         if (result)
5945                 return -EINVAL;
5946
5947         return 0;
5948 }
5949
5950 bool tonga_check_smc_update_required_for_display_configuration(struct pp_hwmgr *hwmgr)
5951 {
5952         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
5953         bool is_update_required = false;
5954         struct cgs_display_info info = {0,0,NULL};
5955
5956         cgs_get_active_displays_info(hwmgr->device, &info);
5957
5958         if (data->display_timing.num_existing_displays != info.display_count)
5959                 is_update_required = true;
5960 /* TO DO NEED TO GET DEEP SLEEP CLOCK FROM DAL
5961         if (phm_cap_enabled(hwmgr->hwmgr->platform_descriptor.platformCaps, PHM_PlatformCaps_SclkDeepSleep)) {
5962                 cgs_get_min_clock_settings(hwmgr->device, &min_clocks);
5963                 if(min_clocks.engineClockInSR != data->display_timing.minClockInSR)
5964                         is_update_required = true;
5965 */
5966         return is_update_required;
5967 }
5968
5969 static inline bool tonga_are_power_levels_equal(const struct tonga_performance_level *pl1,
5970                                                            const struct tonga_performance_level *pl2)
5971 {
5972         return ((pl1->memory_clock == pl2->memory_clock) &&
5973                   (pl1->engine_clock == pl2->engine_clock) &&
5974                   (pl1->pcie_gen == pl2->pcie_gen) &&
5975                   (pl1->pcie_lane == pl2->pcie_lane));
5976 }
5977
5978 int tonga_check_states_equal(struct pp_hwmgr *hwmgr, const struct pp_hw_power_state *pstate1, const struct pp_hw_power_state *pstate2, bool *equal)
5979 {
5980         const struct tonga_power_state *psa = cast_const_phw_tonga_power_state(pstate1);
5981         const struct tonga_power_state *psb = cast_const_phw_tonga_power_state(pstate2);
5982         int i;
5983
5984         if (equal == NULL || psa == NULL || psb == NULL)
5985                 return -EINVAL;
5986
5987         /* If the two states don't even have the same number of performance levels they cannot be the same state. */
5988         if (psa->performance_level_count != psb->performance_level_count) {
5989                 *equal = false;
5990                 return 0;
5991         }
5992
5993         for (i = 0; i < psa->performance_level_count; i++) {
5994                 if (!tonga_are_power_levels_equal(&(psa->performance_levels[i]), &(psb->performance_levels[i]))) {
5995                         /* If we have found even one performance level pair that is different the states are different. */
5996                         *equal = false;
5997                         return 0;
5998                 }
5999         }
6000
6001         /* If all performance levels are the same try to use the UVD clocks to break the tie.*/
6002         *equal = ((psa->uvd_clocks.VCLK == psb->uvd_clocks.VCLK) && (psa->uvd_clocks.DCLK == psb->uvd_clocks.DCLK));
6003         *equal &= ((psa->vce_clocks.EVCLK == psb->vce_clocks.EVCLK) && (psa->vce_clocks.ECCLK == psb->vce_clocks.ECCLK));
6004         *equal &= (psa->sclk_threshold == psb->sclk_threshold);
6005         *equal &= (psa->acp_clk == psb->acp_clk);
6006
6007         return 0;
6008 }
6009
6010 static int tonga_set_fan_control_mode(struct pp_hwmgr *hwmgr, uint32_t mode)
6011 {
6012         if (mode) {
6013                 /* stop auto-manage */
6014                 if (phm_cap_enabled(hwmgr->platform_descriptor.platformCaps,
6015                                 PHM_PlatformCaps_MicrocodeFanControl))
6016                         tonga_fan_ctrl_stop_smc_fan_control(hwmgr);
6017                 tonga_fan_ctrl_set_static_mode(hwmgr, mode);
6018         } else
6019                 /* restart auto-manage */
6020                 tonga_fan_ctrl_reset_fan_speed_to_default(hwmgr);
6021
6022         return 0;
6023 }
6024
6025 static int tonga_get_fan_control_mode(struct pp_hwmgr *hwmgr)
6026 {
6027         if (hwmgr->fan_ctrl_is_in_default_mode)
6028                 return hwmgr->fan_ctrl_default_mode;
6029         else
6030                 return PHM_READ_VFPF_INDIRECT_FIELD(hwmgr->device, CGS_IND_REG__SMC,
6031                                 CG_FDO_CTRL2, FDO_PWM_MODE);
6032 }
6033
6034 static int tonga_get_pp_table(struct pp_hwmgr *hwmgr, char **table)
6035 {
6036         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
6037
6038         if (!data->soft_pp_table) {
6039                 data->soft_pp_table = kmemdup(hwmgr->soft_pp_table,
6040                                               hwmgr->soft_pp_table_size,
6041                                               GFP_KERNEL);
6042                 if (!data->soft_pp_table)
6043                         return -ENOMEM;
6044         }
6045
6046         *table = (char *)&data->soft_pp_table;
6047
6048         return hwmgr->soft_pp_table_size;
6049 }
6050
6051 static int tonga_set_pp_table(struct pp_hwmgr *hwmgr, const char *buf, size_t size)
6052 {
6053         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
6054
6055         if (!data->soft_pp_table) {
6056                 data->soft_pp_table = kzalloc(hwmgr->soft_pp_table_size, GFP_KERNEL);
6057                 if (!data->soft_pp_table)
6058                         return -ENOMEM;
6059         }
6060
6061         memcpy(data->soft_pp_table, buf, size);
6062
6063         hwmgr->soft_pp_table = data->soft_pp_table;
6064
6065         /* TODO: re-init powerplay to implement modified pptable */
6066
6067         return 0;
6068 }
6069
6070 static int tonga_force_clock_level(struct pp_hwmgr *hwmgr,
6071                 enum pp_clock_type type, uint32_t mask)
6072 {
6073         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
6074
6075         if (hwmgr->dpm_level != AMD_DPM_FORCED_LEVEL_MANUAL)
6076                 return -EINVAL;
6077
6078         switch (type) {
6079         case PP_SCLK:
6080                 if (!data->sclk_dpm_key_disabled)
6081                         smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
6082                                         PPSMC_MSG_SCLKDPM_SetEnabledMask,
6083                                         data->dpm_level_enable_mask.sclk_dpm_enable_mask & mask);
6084                 break;
6085         case PP_MCLK:
6086                 if (!data->mclk_dpm_key_disabled)
6087                         smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
6088                                         PPSMC_MSG_MCLKDPM_SetEnabledMask,
6089                                         data->dpm_level_enable_mask.mclk_dpm_enable_mask & mask);
6090                 break;
6091         case PP_PCIE:
6092         {
6093                 uint32_t tmp = mask & data->dpm_level_enable_mask.pcie_dpm_enable_mask;
6094                 uint32_t level = 0;
6095
6096                 while (tmp >>= 1)
6097                         level++;
6098
6099                 if (!data->pcie_dpm_key_disabled)
6100                         smum_send_msg_to_smc_with_parameter(hwmgr->smumgr,
6101                                         PPSMC_MSG_PCIeDPM_ForceLevel,
6102                                         level);
6103                 break;
6104         }
6105         default:
6106                 break;
6107         }
6108
6109         return 0;
6110 }
6111
6112 static int tonga_print_clock_levels(struct pp_hwmgr *hwmgr,
6113                 enum pp_clock_type type, char *buf)
6114 {
6115         struct tonga_hwmgr *data = (struct tonga_hwmgr *)(hwmgr->backend);
6116         struct tonga_single_dpm_table *sclk_table = &(data->dpm_table.sclk_table);
6117         struct tonga_single_dpm_table *mclk_table = &(data->dpm_table.mclk_table);
6118         struct tonga_single_dpm_table *pcie_table = &(data->dpm_table.pcie_speed_table);
6119         int i, now, size = 0;
6120         uint32_t clock, pcie_speed;
6121
6122         switch (type) {
6123         case PP_SCLK:
6124                 smum_send_msg_to_smc(hwmgr->smumgr, PPSMC_MSG_API_GetSclkFrequency);
6125                 clock = cgs_read_register(hwmgr->device, mmSMC_MSG_ARG_0);
6126
6127                 for (i = 0; i < sclk_table->count; i++) {
6128                         if (clock > sclk_table->dpm_levels[i].value)
6129                                 continue;
6130                         break;
6131                 }
6132                 now = i;
6133
6134                 for (i = 0; i < sclk_table->count; i++)
6135                         size += sprintf(buf + size, "%d: %uMhz %s\n",
6136                                         i, sclk_table->dpm_levels[i].value / 100,
6137                                         (i == now) ? "*" : "");
6138                 break;
6139         case PP_MCLK:
6140                 smum_send_msg_to_smc(hwmgr->smumgr, PPSMC_MSG_API_GetMclkFrequency);
6141                 clock = cgs_read_register(hwmgr->device, mmSMC_MSG_ARG_0);
6142
6143                 for (i = 0; i < mclk_table->count; i++) {
6144                         if (clock > mclk_table->dpm_levels[i].value)
6145                                 continue;
6146                         break;
6147                 }
6148                 now = i;
6149
6150                 for (i = 0; i < mclk_table->count; i++)
6151                         size += sprintf(buf + size, "%d: %uMhz %s\n",
6152                                         i, mclk_table->dpm_levels[i].value / 100,
6153                                         (i == now) ? "*" : "");
6154                 break;
6155         case PP_PCIE:
6156                 pcie_speed = tonga_get_current_pcie_speed(hwmgr);
6157                 for (i = 0; i < pcie_table->count; i++) {
6158                         if (pcie_speed != pcie_table->dpm_levels[i].value)
6159                                 continue;
6160                         break;
6161                 }
6162                 now = i;
6163
6164                 for (i = 0; i < pcie_table->count; i++)
6165                         size += sprintf(buf + size, "%d: %s %s\n", i,
6166                                         (pcie_table->dpm_levels[i].value == 0) ? "2.5GB, x8" :
6167                                         (pcie_table->dpm_levels[i].value == 1) ? "5.0GB, x16" :
6168                                         (pcie_table->dpm_levels[i].value == 2) ? "8.0GB, x16" : "",
6169                                         (i == now) ? "*" : "");
6170                 break;
6171         default:
6172                 break;
6173         }
6174         return size;
6175 }
6176
6177 static const struct pp_hwmgr_func tonga_hwmgr_funcs = {
6178         .backend_init = &tonga_hwmgr_backend_init,
6179         .backend_fini = &tonga_hwmgr_backend_fini,
6180         .asic_setup = &tonga_setup_asic_task,
6181         .dynamic_state_management_enable = &tonga_enable_dpm_tasks,
6182         .apply_state_adjust_rules = tonga_apply_state_adjust_rules,
6183         .force_dpm_level = &tonga_force_dpm_level,
6184         .power_state_set = tonga_set_power_state_tasks,
6185         .get_power_state_size = tonga_get_power_state_size,
6186         .get_mclk = tonga_dpm_get_mclk,
6187         .get_sclk = tonga_dpm_get_sclk,
6188         .patch_boot_state = tonga_dpm_patch_boot_state,
6189         .get_pp_table_entry = tonga_get_pp_table_entry,
6190         .get_num_of_pp_table_entries = tonga_get_number_of_powerplay_table_entries,
6191         .print_current_perforce_level = tonga_print_current_perforce_level,
6192         .powerdown_uvd = tonga_phm_powerdown_uvd,
6193         .powergate_uvd = tonga_phm_powergate_uvd,
6194         .powergate_vce = tonga_phm_powergate_vce,
6195         .disable_clock_power_gating = tonga_phm_disable_clock_power_gating,
6196         .update_clock_gatings = tonga_phm_update_clock_gatings,
6197         .notify_smc_display_config_after_ps_adjustment = tonga_notify_smc_display_config_after_ps_adjustment,
6198         .display_config_changed = tonga_display_configuration_changed_task,
6199         .set_max_fan_pwm_output = tonga_set_max_fan_pwm_output,
6200         .set_max_fan_rpm_output = tonga_set_max_fan_rpm_output,
6201         .get_temperature = tonga_thermal_get_temperature,
6202         .stop_thermal_controller = tonga_thermal_stop_thermal_controller,
6203         .get_fan_speed_info = tonga_fan_ctrl_get_fan_speed_info,
6204         .get_fan_speed_percent = tonga_fan_ctrl_get_fan_speed_percent,
6205         .set_fan_speed_percent = tonga_fan_ctrl_set_fan_speed_percent,
6206         .reset_fan_speed_to_default = tonga_fan_ctrl_reset_fan_speed_to_default,
6207         .get_fan_speed_rpm = tonga_fan_ctrl_get_fan_speed_rpm,
6208         .set_fan_speed_rpm = tonga_fan_ctrl_set_fan_speed_rpm,
6209         .uninitialize_thermal_controller = tonga_thermal_ctrl_uninitialize_thermal_controller,
6210         .register_internal_thermal_interrupt = tonga_register_internal_thermal_interrupt,
6211         .check_smc_update_required_for_display_configuration = tonga_check_smc_update_required_for_display_configuration,
6212         .check_states_equal = tonga_check_states_equal,
6213         .set_fan_control_mode = tonga_set_fan_control_mode,
6214         .get_fan_control_mode = tonga_get_fan_control_mode,
6215         .get_pp_table = tonga_get_pp_table,
6216         .set_pp_table = tonga_set_pp_table,
6217         .force_clock_level = tonga_force_clock_level,
6218         .print_clock_levels = tonga_print_clock_levels,
6219 };
6220
6221 int tonga_hwmgr_init(struct pp_hwmgr *hwmgr)
6222 {
6223         tonga_hwmgr  *data;
6224
6225         data = kzalloc (sizeof(tonga_hwmgr), GFP_KERNEL);
6226         if (data == NULL)
6227                 return -ENOMEM;
6228         memset(data, 0x00, sizeof(tonga_hwmgr));
6229
6230         hwmgr->backend = data;
6231         hwmgr->hwmgr_func = &tonga_hwmgr_funcs;
6232         hwmgr->pptable_func = &tonga_pptable_funcs;
6233         pp_tonga_thermal_initialize(hwmgr);
6234         return 0;
6235 }
6236