xref: /linux/drivers/gpu/drm/amd/include/amd_shared.h (revision 40356542)
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 #ifndef __AMD_SHARED_H__
24 #define __AMD_SHARED_H__
25 
26 #include <drm/amd_asic_type.h>
27 #include <drm/drm_print.h>
28 
29 
30 #define AMD_MAX_USEC_TIMEOUT		1000000  /* 1000 ms */
31 
32 /*
33  * Chip flags
34  */
35 enum amd_chip_flags {
36 	AMD_ASIC_MASK = 0x0000ffffUL,
37 	AMD_FLAGS_MASK  = 0xffff0000UL,
38 	AMD_IS_MOBILITY = 0x00010000UL,
39 	AMD_IS_APU      = 0x00020000UL,
40 	AMD_IS_PX       = 0x00040000UL,
41 	AMD_EXP_HW_SUPPORT = 0x00080000UL,
42 };
43 
44 enum amd_apu_flags {
45 	AMD_APU_IS_RAVEN = 0x00000001UL,
46 	AMD_APU_IS_RAVEN2 = 0x00000002UL,
47 	AMD_APU_IS_PICASSO = 0x00000004UL,
48 	AMD_APU_IS_RENOIR = 0x00000008UL,
49 	AMD_APU_IS_GREEN_SARDINE = 0x00000010UL,
50 	AMD_APU_IS_VANGOGH = 0x00000020UL,
51 	AMD_APU_IS_CYAN_SKILLFISH2 = 0x00000040UL,
52 };
53 
54 /**
55 * DOC: IP Blocks
56 *
57 * GPUs are composed of IP (intellectual property) blocks. These
58 * IP blocks provide various functionalities: display, graphics,
59 * video decode, etc. The IP blocks that comprise a particular GPU
60 * are listed in the GPU's respective SoC file. amdgpu_device.c
61 * acquires the list of IP blocks for the GPU in use on initialization.
62 * It can then operate on this list to perform standard driver operations
63 * such as: init, fini, suspend, resume, etc.
64 *
65 *
66 * IP block implementations are named using the following convention:
67 * <functionality>_v<version> (E.g.: gfx_v6_0).
68 */
69 
70 /**
71 * enum amd_ip_block_type - Used to classify IP blocks by functionality.
72 *
73 * @AMD_IP_BLOCK_TYPE_COMMON: GPU Family
74 * @AMD_IP_BLOCK_TYPE_GMC: Graphics Memory Controller
75 * @AMD_IP_BLOCK_TYPE_IH: Interrupt Handler
76 * @AMD_IP_BLOCK_TYPE_SMC: System Management Controller
77 * @AMD_IP_BLOCK_TYPE_PSP: Platform Security Processor
78 * @AMD_IP_BLOCK_TYPE_DCE: Display and Compositing Engine
79 * @AMD_IP_BLOCK_TYPE_GFX: Graphics and Compute Engine
80 * @AMD_IP_BLOCK_TYPE_SDMA: System DMA Engine
81 * @AMD_IP_BLOCK_TYPE_UVD: Unified Video Decoder
82 * @AMD_IP_BLOCK_TYPE_VCE: Video Compression Engine
83 * @AMD_IP_BLOCK_TYPE_ACP: Audio Co-Processor
84 * @AMD_IP_BLOCK_TYPE_VCN: Video Core/Codec Next
85 * @AMD_IP_BLOCK_TYPE_MES: Micro-Engine Scheduler
86 * @AMD_IP_BLOCK_TYPE_JPEG: JPEG Engine
87 * @AMD_IP_BLOCK_TYPE_VPE: Video Processing Engine
88 * @AMD_IP_BLOCK_TYPE_UMSCH_MM: User Mode Schduler for Multimedia
89 * @AMD_IP_BLOCK_TYPE_NUM: Total number of IP block types
90 */
91 enum amd_ip_block_type {
92 	AMD_IP_BLOCK_TYPE_COMMON,
93 	AMD_IP_BLOCK_TYPE_GMC,
94 	AMD_IP_BLOCK_TYPE_IH,
95 	AMD_IP_BLOCK_TYPE_SMC,
96 	AMD_IP_BLOCK_TYPE_PSP,
97 	AMD_IP_BLOCK_TYPE_DCE,
98 	AMD_IP_BLOCK_TYPE_GFX,
99 	AMD_IP_BLOCK_TYPE_SDMA,
100 	AMD_IP_BLOCK_TYPE_UVD,
101 	AMD_IP_BLOCK_TYPE_VCE,
102 	AMD_IP_BLOCK_TYPE_ACP,
103 	AMD_IP_BLOCK_TYPE_VCN,
104 	AMD_IP_BLOCK_TYPE_MES,
105 	AMD_IP_BLOCK_TYPE_JPEG,
106 	AMD_IP_BLOCK_TYPE_VPE,
107 	AMD_IP_BLOCK_TYPE_UMSCH_MM,
108 	AMD_IP_BLOCK_TYPE_NUM,
109 };
110 
111 enum amd_clockgating_state {
112 	AMD_CG_STATE_GATE = 0,
113 	AMD_CG_STATE_UNGATE,
114 };
115 
116 
117 enum amd_powergating_state {
118 	AMD_PG_STATE_GATE = 0,
119 	AMD_PG_STATE_UNGATE,
120 };
121 
122 
123 /* CG flags */
124 #define AMD_CG_SUPPORT_GFX_MGCG			(1ULL << 0)
125 #define AMD_CG_SUPPORT_GFX_MGLS			(1ULL << 1)
126 #define AMD_CG_SUPPORT_GFX_CGCG			(1ULL << 2)
127 #define AMD_CG_SUPPORT_GFX_CGLS			(1ULL << 3)
128 #define AMD_CG_SUPPORT_GFX_CGTS			(1ULL << 4)
129 #define AMD_CG_SUPPORT_GFX_CGTS_LS		(1ULL << 5)
130 #define AMD_CG_SUPPORT_GFX_CP_LS		(1ULL << 6)
131 #define AMD_CG_SUPPORT_GFX_RLC_LS		(1ULL << 7)
132 #define AMD_CG_SUPPORT_MC_LS			(1ULL << 8)
133 #define AMD_CG_SUPPORT_MC_MGCG			(1ULL << 9)
134 #define AMD_CG_SUPPORT_SDMA_LS			(1ULL << 10)
135 #define AMD_CG_SUPPORT_SDMA_MGCG		(1ULL << 11)
136 #define AMD_CG_SUPPORT_BIF_LS			(1ULL << 12)
137 #define AMD_CG_SUPPORT_UVD_MGCG			(1ULL << 13)
138 #define AMD_CG_SUPPORT_VCE_MGCG			(1ULL << 14)
139 #define AMD_CG_SUPPORT_HDP_LS			(1ULL << 15)
140 #define AMD_CG_SUPPORT_HDP_MGCG			(1ULL << 16)
141 #define AMD_CG_SUPPORT_ROM_MGCG			(1ULL << 17)
142 #define AMD_CG_SUPPORT_DRM_LS			(1ULL << 18)
143 #define AMD_CG_SUPPORT_BIF_MGCG			(1ULL << 19)
144 #define AMD_CG_SUPPORT_GFX_3D_CGCG		(1ULL << 20)
145 #define AMD_CG_SUPPORT_GFX_3D_CGLS		(1ULL << 21)
146 #define AMD_CG_SUPPORT_DRM_MGCG			(1ULL << 22)
147 #define AMD_CG_SUPPORT_DF_MGCG			(1ULL << 23)
148 #define AMD_CG_SUPPORT_VCN_MGCG			(1ULL << 24)
149 #define AMD_CG_SUPPORT_HDP_DS			(1ULL << 25)
150 #define AMD_CG_SUPPORT_HDP_SD			(1ULL << 26)
151 #define AMD_CG_SUPPORT_IH_CG			(1ULL << 27)
152 #define AMD_CG_SUPPORT_ATHUB_LS			(1ULL << 28)
153 #define AMD_CG_SUPPORT_ATHUB_MGCG		(1ULL << 29)
154 #define AMD_CG_SUPPORT_JPEG_MGCG		(1ULL << 30)
155 #define AMD_CG_SUPPORT_GFX_FGCG			(1ULL << 31)
156 #define AMD_CG_SUPPORT_REPEATER_FGCG		(1ULL << 32)
157 #define AMD_CG_SUPPORT_GFX_PERF_CLK		(1ULL << 33)
158 /* PG flags */
159 #define AMD_PG_SUPPORT_GFX_PG			(1 << 0)
160 #define AMD_PG_SUPPORT_GFX_SMG			(1 << 1)
161 #define AMD_PG_SUPPORT_GFX_DMG			(1 << 2)
162 #define AMD_PG_SUPPORT_UVD			(1 << 3)
163 #define AMD_PG_SUPPORT_VCE			(1 << 4)
164 #define AMD_PG_SUPPORT_CP			(1 << 5)
165 #define AMD_PG_SUPPORT_GDS			(1 << 6)
166 #define AMD_PG_SUPPORT_RLC_SMU_HS		(1 << 7)
167 #define AMD_PG_SUPPORT_SDMA			(1 << 8)
168 #define AMD_PG_SUPPORT_ACP			(1 << 9)
169 #define AMD_PG_SUPPORT_SAMU			(1 << 10)
170 #define AMD_PG_SUPPORT_GFX_QUICK_MG		(1 << 11)
171 #define AMD_PG_SUPPORT_GFX_PIPELINE		(1 << 12)
172 #define AMD_PG_SUPPORT_MMHUB			(1 << 13)
173 #define AMD_PG_SUPPORT_VCN			(1 << 14)
174 #define AMD_PG_SUPPORT_VCN_DPG			(1 << 15)
175 #define AMD_PG_SUPPORT_ATHUB			(1 << 16)
176 #define AMD_PG_SUPPORT_JPEG			(1 << 17)
177 #define AMD_PG_SUPPORT_IH_SRAM_PG		(1 << 18)
178 #define AMD_PG_SUPPORT_JPEG_DPG		(1 << 19)
179 
180 /**
181  * enum PP_FEATURE_MASK - Used to mask power play features.
182  *
183  * @PP_SCLK_DPM_MASK: Dynamic adjustment of the system (graphics) clock.
184  * @PP_MCLK_DPM_MASK: Dynamic adjustment of the memory clock.
185  * @PP_PCIE_DPM_MASK: Dynamic adjustment of PCIE clocks and lanes.
186  * @PP_SCLK_DEEP_SLEEP_MASK: System (graphics) clock deep sleep.
187  * @PP_POWER_CONTAINMENT_MASK: Power containment.
188  * @PP_UVD_HANDSHAKE_MASK: Unified video decoder handshake.
189  * @PP_SMC_VOLTAGE_CONTROL_MASK: Dynamic voltage control.
190  * @PP_VBI_TIME_SUPPORT_MASK: Vertical blank interval support.
191  * @PP_ULV_MASK: Ultra low voltage.
192  * @PP_ENABLE_GFX_CG_THRU_SMU: SMU control of GFX engine clockgating.
193  * @PP_CLOCK_STRETCH_MASK: Clock stretching.
194  * @PP_OD_FUZZY_FAN_CONTROL_MASK: Overdrive fuzzy fan control.
195  * @PP_SOCCLK_DPM_MASK: Dynamic adjustment of the SoC clock.
196  * @PP_DCEFCLK_DPM_MASK: Dynamic adjustment of the Display Controller Engine Fabric clock.
197  * @PP_OVERDRIVE_MASK: Over- and under-clocking support.
198  * @PP_GFXOFF_MASK: Dynamic graphics engine power control.
199  * @PP_ACG_MASK: Adaptive clock generator.
200  * @PP_STUTTER_MODE: Stutter mode.
201  * @PP_AVFS_MASK: Adaptive voltage and frequency scaling.
202  * @PP_GFX_DCS_MASK: GFX Async DCS.
203  *
204  * To override these settings on boot, append amdgpu.ppfeaturemask=<mask> to
205  * the kernel's command line parameters. This is usually done through a system's
206  * boot loader (E.g. GRUB). If manually loading the driver, pass
207  * ppfeaturemask=<mask> as a modprobe parameter.
208  */
209 enum PP_FEATURE_MASK {
210 	PP_SCLK_DPM_MASK = 0x1,
211 	PP_MCLK_DPM_MASK = 0x2,
212 	PP_PCIE_DPM_MASK = 0x4,
213 	PP_SCLK_DEEP_SLEEP_MASK = 0x8,
214 	PP_POWER_CONTAINMENT_MASK = 0x10,
215 	PP_UVD_HANDSHAKE_MASK = 0x20,
216 	PP_SMC_VOLTAGE_CONTROL_MASK = 0x40,
217 	PP_VBI_TIME_SUPPORT_MASK = 0x80,
218 	PP_ULV_MASK = 0x100,
219 	PP_ENABLE_GFX_CG_THRU_SMU = 0x200,
220 	PP_CLOCK_STRETCH_MASK = 0x400,
221 	PP_OD_FUZZY_FAN_CONTROL_MASK = 0x800,
222 	PP_SOCCLK_DPM_MASK = 0x1000,
223 	PP_DCEFCLK_DPM_MASK = 0x2000,
224 	PP_OVERDRIVE_MASK = 0x4000,
225 	PP_GFXOFF_MASK = 0x8000,
226 	PP_ACG_MASK = 0x10000,
227 	PP_STUTTER_MODE = 0x20000,
228 	PP_AVFS_MASK = 0x40000,
229 	PP_GFX_DCS_MASK = 0x80000,
230 };
231 
232 enum amd_harvest_ip_mask {
233     AMD_HARVEST_IP_VCN_MASK = 0x1,
234     AMD_HARVEST_IP_JPEG_MASK = 0x2,
235     AMD_HARVEST_IP_DMU_MASK = 0x4,
236 };
237 
238 enum DC_FEATURE_MASK {
239 	//Default value can be found at "uint amdgpu_dc_feature_mask"
240 	DC_FBC_MASK = (1 << 0), //0x1, disabled by default
241 	DC_MULTI_MON_PP_MCLK_SWITCH_MASK = (1 << 1), //0x2, enabled by default
242 	DC_DISABLE_FRACTIONAL_PWM_MASK = (1 << 2), //0x4, disabled by default
243 	DC_PSR_MASK = (1 << 3), //0x8, disabled by default for dcn < 3.1
244 	DC_EDP_NO_POWER_SEQUENCING = (1 << 4), //0x10, disabled by default
245 	DC_DISABLE_LTTPR_DP1_4A = (1 << 5), //0x20, disabled by default
246 	DC_DISABLE_LTTPR_DP2_0 = (1 << 6), //0x40, disabled by default
247 	DC_PSR_ALLOW_SMU_OPT = (1 << 7), //0x80, disabled by default
248 	DC_PSR_ALLOW_MULTI_DISP_OPT = (1 << 8), //0x100, disabled by default
249 	DC_REPLAY_MASK = (1 << 9), //0x200, disabled by default for dcn < 3.1.4
250 };
251 
252 enum DC_DEBUG_MASK {
253 	DC_DISABLE_PIPE_SPLIT = 0x1,
254 	DC_DISABLE_STUTTER = 0x2,
255 	DC_DISABLE_DSC = 0x4,
256 	DC_DISABLE_CLOCK_GATING = 0x8,
257 	DC_DISABLE_PSR = 0x10,
258 	DC_FORCE_SUBVP_MCLK_SWITCH = 0x20,
259 	DC_DISABLE_MPO = 0x40,
260 	DC_ENABLE_DPIA_TRACE = 0x80,
261 	DC_ENABLE_DML2 = 0x100,
262 	DC_DISABLE_PSR_SU = 0x200,
263 	DC_DISABLE_REPLAY = 0x400,
264 	DC_DISABLE_IPS = 0x800,
265 };
266 
267 enum amd_dpm_forced_level;
268 
269 /**
270  * struct amd_ip_funcs - general hooks for managing amdgpu IP Blocks
271  * @name: Name of IP block
272  * @early_init: sets up early driver state (pre sw_init),
273  *              does not configure hw - Optional
274  * @late_init: sets up late driver/hw state (post hw_init) - Optional
275  * @sw_init: sets up driver state, does not configure hw
276  * @sw_fini: tears down driver state, does not configure hw
277  * @early_fini: tears down stuff before dev detached from driver
278  * @hw_init: sets up the hw state
279  * @hw_fini: tears down the hw state
280  * @late_fini: final cleanup
281  * @prepare_suspend: handle IP specific changes to prepare for suspend
282  *                   (such as allocating any required memory)
283  * @suspend: handles IP specific hw/sw changes for suspend
284  * @resume: handles IP specific hw/sw changes for resume
285  * @is_idle: returns current IP block idle status
286  * @wait_for_idle: poll for idle
287  * @check_soft_reset: check soft reset the IP block
288  * @pre_soft_reset: pre soft reset the IP block
289  * @soft_reset: soft reset the IP block
290  * @post_soft_reset: post soft reset the IP block
291  * @set_clockgating_state: enable/disable cg for the IP block
292  * @set_powergating_state: enable/disable pg for the IP block
293  * @get_clockgating_state: get current clockgating status
294  *
295  * These hooks provide an interface for controlling the operational state
296  * of IP blocks. After acquiring a list of IP blocks for the GPU in use,
297  * the driver can make chip-wide state changes by walking this list and
298  * making calls to hooks from each IP block. This list is ordered to ensure
299  * that the driver initializes the IP blocks in a safe sequence.
300  */
301 struct amd_ip_funcs {
302 	char *name;
303 	int (*early_init)(void *handle);
304 	int (*late_init)(void *handle);
305 	int (*sw_init)(void *handle);
306 	int (*sw_fini)(void *handle);
307 	int (*early_fini)(void *handle);
308 	int (*hw_init)(void *handle);
309 	int (*hw_fini)(void *handle);
310 	void (*late_fini)(void *handle);
311 	int (*prepare_suspend)(void *handle);
312 	int (*suspend)(void *handle);
313 	int (*resume)(void *handle);
314 	bool (*is_idle)(void *handle);
315 	int (*wait_for_idle)(void *handle);
316 	bool (*check_soft_reset)(void *handle);
317 	int (*pre_soft_reset)(void *handle);
318 	int (*soft_reset)(void *handle);
319 	int (*post_soft_reset)(void *handle);
320 	int (*set_clockgating_state)(void *handle,
321 				     enum amd_clockgating_state state);
322 	int (*set_powergating_state)(void *handle,
323 				     enum amd_powergating_state state);
324 	void (*get_clockgating_state)(void *handle, u64 *flags);
325 	void (*dump_ip_state)(void *handle);
326 	void (*print_ip_state)(void *handle, struct drm_printer *p);
327 };
328 
329 
330 #endif /* __AMD_SHARED_H__ */
331