summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/powerplay/hwmgr/iceland_hwmgr.h
blob: f253988de2d2b231f00bc2c955828872d7e4c6ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
/*
 * Copyright 2016 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Author: Huang Rui <ray.huang@amd.com>
 *
 */
#ifndef ICELAND_HWMGR_H
#define ICELAND_HWMGR_H

#include "hwmgr.h"
#include "ppatomctrl.h"
#include "ppinterrupt.h"
#include "ppsmc.h"
#include "iceland_powertune.h"
#include "pp_endian.h"
#include "smu71_discrete.h"

#define ICELAND_MAX_HARDWARE_POWERLEVELS 2
#define ICELAND_DYNCLK_NUMBER_OF_TREND_COEFFICIENTS 15

struct iceland_performance_level {
	uint32_t	memory_clock;
	uint32_t	engine_clock;
	uint16_t	pcie_gen;
	uint16_t	pcie_lane;
};

struct _phw_iceland_bacos {
	uint32_t                          best_match;
	uint32_t                          baco_flags;
	struct iceland_performance_level		  performance_level;
};
typedef struct _phw_iceland_bacos phw_iceland_bacos;

struct _phw_iceland_uvd_clocks {
	uint32_t   VCLK;
	uint32_t   DCLK;
};

typedef struct _phw_iceland_uvd_clocks phw_iceland_uvd_clocks;

struct _phw_iceland_vce_clocks {
	uint32_t   EVCLK;
	uint32_t   ECCLK;
};

typedef struct _phw_iceland_vce_clocks phw_iceland_vce_clocks;

struct iceland_power_state {
	uint32_t                    magic;
	phw_iceland_uvd_clocks        uvd_clocks;
	phw_iceland_vce_clocks        vce_clocks;
	uint32_t                    sam_clk;
	uint32_t                    acp_clk;
	uint16_t                    performance_level_count;
	bool                        dc_compatible;
	uint32_t                    sclk_threshold;
	struct iceland_performance_level performance_levels[ICELAND_MAX_HARDWARE_POWERLEVELS];
};

struct _phw_iceland_dpm_level {
	bool		enabled;
	uint32_t    value;
	uint32_t    param1;
};
typedef struct _phw_iceland_dpm_level phw_iceland_dpm_level;

#define ICELAND_MAX_DEEPSLEEP_DIVIDER_ID 5
#define MAX_REGULAR_DPM_NUMBER 8
#define ICELAND_MINIMUM_ENGINE_CLOCK 5000

struct iceland_single_dpm_table {
	uint32_t count;
	phw_iceland_dpm_level dpm_levels[MAX_REGULAR_DPM_NUMBER];
};

struct iceland_dpm_table {
	struct iceland_single_dpm_table  sclk_table;
	struct iceland_single_dpm_table  mclk_table;
	struct iceland_single_dpm_table  pcie_speed_table;
	struct iceland_single_dpm_table  vddc_table;
	struct iceland_single_dpm_table  vdd_gfx_table;
	struct iceland_single_dpm_table  vdd_ci_table;
	struct iceland_single_dpm_table  mvdd_table;
};
typedef struct _phw_iceland_dpm_table phw_iceland_dpm_table;


struct _phw_iceland_clock_regisiters {
	uint32_t  vCG_SPLL_FUNC_CNTL;
	uint32_t  vCG_SPLL_FUNC_CNTL_2;
	uint32_t  vCG_SPLL_FUNC_CNTL_3;
	uint32_t  vCG_SPLL_FUNC_CNTL_4;
	uint32_t  vCG_SPLL_SPREAD_SPECTRUM;
	uint32_t  vCG_SPLL_SPREAD_SPECTRUM_2;
	uint32_t  vDLL_CNTL;
	uint32_t  vMCLK_PWRMGT_CNTL;
	uint32_t  vMPLL_AD_FUNC_CNTL;
	uint32_t  vMPLL_DQ_FUNC_CNTL;
	uint32_t  vMPLL_FUNC_CNTL;
	uint32_t  vMPLL_FUNC_CNTL_1;
	uint32_t  vMPLL_FUNC_CNTL_2;
	uint32_t  vMPLL_SS1;
	uint32_t  vMPLL_SS2;
};
typedef struct _phw_iceland_clock_regisiters phw_iceland_clock_registers;

struct _phw_iceland_voltage_smio_registers {
	uint32_t vs0_vid_lower_smio_cntl;
};
typedef struct _phw_iceland_voltage_smio_registers phw_iceland_voltage_smio_registers;


struct _phw_iceland_mc_reg_entry {
	uint32_t mclk_max;
	uint32_t mc_data[SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE];
};
typedef struct _phw_iceland_mc_reg_entry phw_iceland_mc_reg_entry;

struct _phw_iceland_mc_reg_table {
	uint8_t   last;               /* number of registers*/
	uint8_t   num_entries;        /* number of entries in mc_reg_table_entry used*/
	uint16_t  validflag;          /* indicate the corresponding register is valid or not. 1: valid, 0: invalid. bit0->address[0], bit1->address[1], etc.*/
	phw_iceland_mc_reg_entry    mc_reg_table_entry[MAX_AC_TIMING_ENTRIES];
	SMU71_Discrete_MCRegisterAddress mc_reg_address[SMU71_DISCRETE_MC_REGISTER_ARRAY_SIZE];
};
typedef struct _phw_iceland_mc_reg_table phw_iceland_mc_reg_table;

#define DISABLE_MC_LOADMICROCODE   1
#define DISABLE_MC_CFGPROGRAMMING  2


/*Ultra Low Voltage parameter structure */
struct phw_iceland_ulv_parm{
	bool					ulv_supported;
	uint32_t   				ch_ulv_parameter;
	uint32_t				ulv_volt_change_delay;
	struct iceland_performance_level	ulv_power_level;
};

#define ICELAND_MAX_LEAKAGE_COUNT  8

struct phw_iceland_leakage_voltage {
	uint16_t  count;
	uint16_t  leakage_id[ICELAND_MAX_LEAKAGE_COUNT];
	uint16_t  actual_voltage[ICELAND_MAX_LEAKAGE_COUNT];
};

struct _phw_iceland_display_timing {
	uint32_t min_clock_insr;
	uint32_t num_existing_displays;
};
typedef struct _phw_iceland_display_timing phw_iceland_display_timing;


struct phw_iceland_thermal_temperature_setting
{
	long temperature_low;
	long temperature_high;
	long temperature_shutdown;
};

struct _phw_iceland_dpmlevel_enable_mask {
	uint32_t uvd_dpm_enable_mask;
	uint32_t vce_dpm_enable_mask;
	uint32_t acp_dpm_enable_mask;
	uint32_t samu_dpm_enable_mask;
	uint32_t sclk_dpm_enable_mask;
	uint32_t mclk_dpm_enable_mask;
	uint32_t pcie_dpm_enable_mask;
};
typedef struct _phw_iceland_dpmlevel_enable_mask phw_iceland_dpmlevel_enable_mask;

struct _phw_iceland_pcie_perf_range {
	uint16_t max;
	uint16_t min;
};
typedef struct _phw_iceland_pcie_perf_range phw_iceland_pcie_perf_range;

struct _phw_iceland_vbios_boot_state {
	uint16_t					mvdd_bootup_value;
	uint16_t					vddc_bootup_value;
	uint16_t					vddci_bootup_value;
	uint16_t					vddgfx_bootup_value;
	uint32_t					sclk_bootup_value;
	uint32_t					mclk_bootup_value;
	uint16_t					pcie_gen_bootup_value;
	uint16_t					pcie_lane_bootup_value;
};
typedef struct _phw_iceland_vbios_boot_state phw_iceland_vbios_boot_state;

#define DPMTABLE_OD_UPDATE_SCLK     0x00000001
#define DPMTABLE_OD_UPDATE_MCLK     0x00000002
#define DPMTABLE_UPDATE_SCLK        0x00000004
#define DPMTABLE_UPDATE_MCLK        0x00000008

/* We need to review which fields are needed. */
/* This is mostly a copy of the RV7xx/Evergreen structure which is close, but not identical to the N.Islands one. */
struct iceland_hwmgr {
	struct iceland_dpm_table               dpm_table;
	struct iceland_dpm_table               golden_dpm_table;

	uint32_t                           voting_rights_clients0;
	uint32_t                           voting_rights_clients1;
	uint32_t                           voting_rights_clients2;
	uint32_t                           voting_rights_clients3;
	uint32_t                           voting_rights_clients4;
	uint32_t                           voting_rights_clients5;
	uint32_t                           voting_rights_clients6;
	uint32_t                           voting_rights_clients7;
	uint32_t                           static_screen_threshold_unit;
	uint32_t                           static_screen_threshold;
	uint32_t                           voltage_control;
	uint32_t                           vdd_gfx_control;

	uint32_t                           vddc_vddci_delta;
	uint32_t                           vddc_vddgfx_delta;

	struct pp_interrupt_registration_info    internal_high_thermal_interrupt_info;
	struct pp_interrupt_registration_info    internal_low_thermal_interrupt_info;
	struct pp_interrupt_registration_info    smc_to_host_interrupt_info;
	uint32_t                          active_auto_throttle_sources;

	struct pp_interrupt_registration_info    external_throttle_interrupt;
	irq_handler_func_t             external_throttle_callback;
	void                             *external_throttle_context;

	struct pp_interrupt_registration_info    ctf_interrupt_info;
	irq_handler_func_t             ctf_callback;
	void                             *ctf_context;

	phw_iceland_clock_registers	  clock_registers;
	phw_iceland_voltage_smio_registers  voltage_smio_registers;

	bool	is_memory_GDDR5;
	uint16_t                          acpi_vddc;
	bool	pspp_notify_required;        /* Flag to indicate if PSPP notification to SBIOS is required */
	uint16_t                          force_pcie_gen;            /* The forced PCI-E speed if not 0xffff */
	uint16_t                          acpi_pcie_gen;             /* The PCI-E speed at ACPI time */
	uint32_t                           pcie_gen_cap;             /* The PCI-E speed capabilities bitmap from CAIL */
	uint32_t                           pcie_lane_cap;            /* The PCI-E lane capabilities bitmap from CAIL */
	uint32_t                           pcie_spc_cap;             /* Symbol Per Clock Capabilities from registry */
	struct phw_iceland_leakage_voltage	vddc_leakage;        /* The Leakage VDDC supported (based on leakage ID).*/
	struct phw_iceland_leakage_voltage	vddcgfx_leakage;     /* The Leakage VDDC supported (based on leakage ID). */
	struct phw_iceland_leakage_voltage	vddci_leakage;       /* The Leakage VDDCI supported (based on leakage ID). */

	uint32_t                           mvdd_control;
	uint32_t                           vddc_mask_low;
	uint32_t                           mvdd_mask_low;
	uint16_t                          max_vddc_in_pp_table;        /* the maximum VDDC value in the powerplay table*/
	uint16_t                          min_vddc_in_pp_table;
	uint16_t                          max_vddci_in_pp_table;       /* the maximum VDDCI value in the powerplay table */
	uint16_t                          min_vddci_in_pp_table;
	uint32_t                           mclk_strobe_mode_threshold;
	uint32_t                           mclk_stutter_mode_threshold;
	uint32_t                           mclk_edc_enable_threshold;
	uint32_t                           mclk_edc_wr_enable_threshold;
	bool	is_uvd_enabled;
	bool	is_xdma_enabled;
	phw_iceland_vbios_boot_state      vbios_boot_state;

	bool                         battery_state;
	bool                         is_tlu_enabled;
	bool                         pcie_performance_request;

	/* -------------- SMC SRAM Address of firmware header tables ----------------*/
	uint32_t			sram_end;           /* The first address after the SMC SRAM. */
	uint32_t			dpm_table_start;    /* The start of the dpm table in the SMC SRAM. */
	uint32_t			soft_regs_start;    /* The start of the soft registers in the SMC SRAM. */
	uint32_t			mc_reg_table_start; /* The start of the mc register table in the SMC SRAM. */
	uint32_t			fan_table_start;    /* The start of the fan table in the SMC SRAM. */
	uint32_t			arb_table_start;    /* The start of the ARB setting table in the SMC SRAM. */
	uint32_t			ulv_settings_start;
	SMU71_Discrete_DpmTable		smc_state_table;    /* The carbon copy of the SMC state table. */
	SMU71_Discrete_MCRegisters      mc_reg_table;
	SMU71_Discrete_Ulv              ulv_setting;         /* The carbon copy of ULV setting. */

	/* -------------- Stuff originally coming from Evergreen --------------------*/
	phw_iceland_mc_reg_table	 iceland_mc_reg_table;
	uint32_t                         vdd_ci_control;
	pp_atomctrl_voltage_table        vddc_voltage_table;
	pp_atomctrl_voltage_table        vddci_voltage_table;
	pp_atomctrl_voltage_table        vddgfx_voltage_table;
	pp_atomctrl_voltage_table        mvdd_voltage_table;

	uint32_t                           mgcg_cgtt_local2;
	uint32_t                           mgcg_cgtt_local3;
	uint32_t                           gpio_debug;
	uint32_t			mc_micro_code_feature;
	uint32_t			highest_mclk;
	uint16_t                          acpi_vdd_ci;
	uint8_t                           mvdd_high_index;
	uint8_t                           mvdd_low_index;
	bool                         dll_defaule_on;
	bool                         performance_request_registered;

	/* ----------------- Low Power Features ---------------------*/
	phw_iceland_bacos					bacos;
	struct phw_iceland_ulv_parm              	ulv;

	/* ----------------- CAC Stuff ---------------------*/
	uint32_t					cac_table_start;
	bool                         cac_configuration_required;    /* TRUE if PP_CACConfigurationRequired == 1 */
	bool                         driver_calculate_cac_leakage;  /* TRUE if PP_DriverCalculateCACLeakage == 1 */
	bool                         cac_enabled;

	/* ----------------- DPM2 Parameters ---------------------*/
	uint32_t		power_containment_features;
	bool                         enable_bapm_feature;
	bool			     enable_dte_feature;
	bool                         enable_tdc_limit_feature;
	bool                         enable_pkg_pwr_tracking_feature;
	bool                         disable_uvd_power_tune_feature;
	struct iceland_pt_defaults           *power_tune_defaults;
	SMU71_Discrete_PmFuses           power_tune_table;
	uint32_t                           ul_dte_tj_offset;     /* Fudge factor in DPM table to correct HW DTE errors */
	uint32_t                           fast_watermark_threshold;  /* use fast watermark if clock is equal or above this. In percentage of the target high sclk. */

	/* ----------------- Phase Shedding ---------------------*/
	bool                         vddc_phase_shed_control;

	/* --------------------- DI/DT --------------------------*/
	phw_iceland_display_timing       display_timing;

	/* --------- ReadRegistry data for memory and engine clock margins ---- */
	uint32_t                           engine_clock_data;
	uint32_t                           memory_clock_data;

	/* -------- Thermal Temperature Setting --------------*/
	struct phw_iceland_thermal_temperature_setting 	thermal_temp_setting;
	phw_iceland_dpmlevel_enable_mask     dpm_level_enable_mask;

	uint32_t				need_update_smu7_dpm_table;
	uint32_t				sclk_dpm_key_disabled;
	uint32_t				mclk_dpm_key_disabled;
	uint32_t				pcie_dpm_key_disabled;
	/* used to store the previous dal min sclock */
	uint32_t                           min_engine_clocks;
	phw_iceland_pcie_perf_range       pcie_gen_performance;
	phw_iceland_pcie_perf_range       pcie_lane_performance;
	phw_iceland_pcie_perf_range       pcie_gen_power_saving;
	phw_iceland_pcie_perf_range       pcie_lane_power_saving;
	bool                            use_pcie_performance_levels;
	bool                            use_pcie_power_saving_levels;
	/* percentage value from 0-100, default 50 */
	uint32_t                           activity_target[SMU71_MAX_LEVELS_GRAPHICS];
	uint32_t                           mclk_activity_target;
	uint32_t                           low_sclk_interrupt_threshold;
	uint32_t                           last_mclk_dpm_enable_mask;
	bool								uvd_enabled;
	uint32_t                           pcc_monitor_enabled;

	/* --------- Power Gating States ------------*/
	bool                           uvd_power_gated;  /* 1: gated, 0:not gated */
	bool                           vce_power_gated;  /* 1: gated, 0:not gated */
	bool                           samu_power_gated; /* 1: gated, 0:not gated */
	bool                           acp_power_gated;  /* 1: gated, 0:not gated */
	bool                           pg_acp_init;

	/* soft pptable for re-uploading into smu */
	void *soft_pp_table;
};

typedef struct iceland_hwmgr iceland_hwmgr;

int iceland_hwmgr_init(struct pp_hwmgr *hwmgr);
int iceland_update_uvd_dpm(struct pp_hwmgr *hwmgr, bool bgate);
uint32_t iceland_get_xclk(struct pp_hwmgr *hwmgr);
int iceland_populate_bapm_vddc_vid_sidd(struct pp_hwmgr *hwmgr);
int iceland_populate_vddc_vid(struct pp_hwmgr *hwmgr);

#define ICELAND_DPM2_NEAR_TDP_DEC          10
#define ICELAND_DPM2_ABOVE_SAFE_INC        5
#define ICELAND_DPM2_BELOW_SAFE_INC        20

/*
 * Log2 of the LTA window size (l2numWin_TDP). Eg. If LTA windows size
 * is 128, then this value should be Log2(128) = 7.
 */
#define ICELAND_DPM2_LTA_WINDOW_SIZE       7

#define ICELAND_DPM2_LTS_TRUNCATE          0

#define ICELAND_DPM2_TDP_SAFE_LIMIT_PERCENT            80  // Maximum 100

#define ICELAND_DPM2_MAXPS_PERCENT_H                   90  // Maximum 0xFF
#define ICELAND_DPM2_MAXPS_PERCENT_M                   90  // Maximum 0xFF

#define ICELAND_DPM2_PWREFFICIENCYRATIO_MARGIN         50

#define ICELAND_DPM2_SQ_RAMP_MAX_POWER                 0x3FFF
#define ICELAND_DPM2_SQ_RAMP_MIN_POWER                 0x12
#define ICELAND_DPM2_SQ_RAMP_MAX_POWER_DELTA           0x15
#define ICELAND_DPM2_SQ_RAMP_SHORT_TERM_INTERVAL_SIZE  0x1E
#define ICELAND_DPM2_SQ_RAMP_LONG_TERM_INTERVAL_RATIO  0xF

#define ICELAND_VOLTAGE_CONTROL_NONE                   0x0
#define ICELAND_VOLTAGE_CONTROL_BY_GPIO                0x1
#define ICELAND_VOLTAGE_CONTROL_BY_SVID2               0x2

/* convert to Q8.8 format for firmware */
#define ICELAND_Q88_FORMAT_CONVERSION_UNIT             256

#define ICELAND_UNUSED_GPIO_PIN 0x7F

#endif
OpenPOWER on IntegriCloud