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