blob: f2814ae7ecddb702f20e446adb2d6ca88760c6e0 [file] [log] [blame]
Chunming Zhoud03846a2015-07-28 14:20:03 -04001/*
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 */
24#ifndef _CGS_COMMON_H
25#define _CGS_COMMON_H
26
rezhu404b2fa2015-08-07 13:37:56 +080027#include "amd_shared.h"
Jammy Zhoubf3911b02015-05-13 18:58:05 +080028
Dave Airlie110e6f22016-04-12 13:25:48 +100029struct cgs_device;
30
Chunming Zhoud03846a2015-07-28 14:20:03 -040031/**
Chunming Zhoud03846a2015-07-28 14:20:03 -040032 * enum cgs_ind_reg - Indirect register spaces
33 */
34enum cgs_ind_reg {
35 CGS_IND_REG__MMIO,
36 CGS_IND_REG__PCIE,
37 CGS_IND_REG__SMC,
38 CGS_IND_REG__UVD_CTX,
39 CGS_IND_REG__DIDT,
Rex Zhuccdbb202016-06-08 12:47:41 +080040 CGS_IND_REG_GC_CAC,
Evan Quanc62a59d2017-07-04 09:24:34 +080041 CGS_IND_REG_SE_CAC,
Chunming Zhoud03846a2015-07-28 14:20:03 -040042 CGS_IND_REG__AUDIO_ENDPT
43};
44
45/**
Chunming Zhoud03846a2015-07-28 14:20:03 -040046 * enum cgs_engine - Engines that can be statically power-gated
47 */
48enum cgs_engine {
49 CGS_ENGINE__UVD,
50 CGS_ENGINE__VCE,
51 CGS_ENGINE__VP8,
52 CGS_ENGINE__ACP_DMA,
53 CGS_ENGINE__ACP_DSP0,
54 CGS_ENGINE__ACP_DSP1,
55 CGS_ENGINE__ISP,
56 /* ... */
57};
58
Jammy Zhoubf3911b02015-05-13 18:58:05 +080059/*
60 * enum cgs_ucode_id - Firmware types for different IPs
61 */
62enum cgs_ucode_id {
63 CGS_UCODE_ID_SMU = 0,
yanyang1735f0022016-02-05 17:39:37 +080064 CGS_UCODE_ID_SMU_SK,
Jammy Zhoubf3911b02015-05-13 18:58:05 +080065 CGS_UCODE_ID_SDMA0,
66 CGS_UCODE_ID_SDMA1,
67 CGS_UCODE_ID_CP_CE,
68 CGS_UCODE_ID_CP_PFP,
69 CGS_UCODE_ID_CP_ME,
70 CGS_UCODE_ID_CP_MEC,
71 CGS_UCODE_ID_CP_MEC_JT1,
72 CGS_UCODE_ID_CP_MEC_JT2,
73 CGS_UCODE_ID_GMCON_RENG,
74 CGS_UCODE_ID_RLC_G,
Monk Liubed57122016-09-26 16:35:03 +080075 CGS_UCODE_ID_STORAGE,
Jammy Zhoubf3911b02015-05-13 18:58:05 +080076 CGS_UCODE_ID_MAXIMUM,
77};
78
Alex Deucherba228ac2015-12-23 11:25:43 -050079/*
80 * enum cgs_resource_type - GPU resource type
81 */
82enum cgs_resource_type {
83 CGS_RESOURCE_TYPE_MMIO = 0,
84 CGS_RESOURCE_TYPE_FB,
85 CGS_RESOURCE_TYPE_IO,
86 CGS_RESOURCE_TYPE_DOORBELL,
87 CGS_RESOURCE_TYPE_ROM,
88};
89
Chunming Zhoud03846a2015-07-28 14:20:03 -040090/**
Jammy Zhoubf3911b02015-05-13 18:58:05 +080091 * struct cgs_firmware_info - Firmware information
92 */
93struct cgs_firmware_info {
94 uint16_t version;
Frank Minfc76cbf2016-04-27 18:53:29 +080095 uint16_t fw_version;
Jammy Zhoubf3911b02015-05-13 18:58:05 +080096 uint16_t feature_version;
97 uint32_t image_size;
98 uint64_t mc_addr;
Huang Rui340efe22016-06-19 23:55:14 +080099
100 /* only for smc firmware */
101 uint32_t ucode_start_address;
102
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800103 void *kptr;
Huang Rui5d7213b2017-02-10 16:42:19 +0800104 bool is_kicker;
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800105};
106
Rex Zhu47bf18b2015-09-17 16:34:14 +0800107struct cgs_mode_info {
108 uint32_t refresh_rate;
Rex Zhu47bf18b2015-09-17 16:34:14 +0800109 uint32_t vblank_time_us;
110};
111
112struct cgs_display_info {
113 uint32_t display_count;
114 uint32_t active_display_mask;
115 struct cgs_mode_info *mode_info;
116};
117
Chunming Zhoud03846a2015-07-28 14:20:03 -0400118typedef unsigned long cgs_handle_t;
119
120/**
Chunming Zhoud03846a2015-07-28 14:20:03 -0400121 * cgs_read_register() - Read an MMIO register
122 * @cgs_device: opaque device handle
123 * @offset: register offset
124 *
125 * Return: register value
126 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000127typedef uint32_t (*cgs_read_register_t)(struct cgs_device *cgs_device, unsigned offset);
Chunming Zhoud03846a2015-07-28 14:20:03 -0400128
129/**
130 * cgs_write_register() - Write an MMIO register
131 * @cgs_device: opaque device handle
132 * @offset: register offset
133 * @value: register value
134 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000135typedef void (*cgs_write_register_t)(struct cgs_device *cgs_device, unsigned offset,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400136 uint32_t value);
137
138/**
139 * cgs_read_ind_register() - Read an indirect register
140 * @cgs_device: opaque device handle
141 * @offset: register offset
142 *
143 * Return: register value
144 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000145typedef uint32_t (*cgs_read_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400146 unsigned index);
147
148/**
149 * cgs_write_ind_register() - Write an indirect register
150 * @cgs_device: opaque device handle
151 * @offset: register offset
152 * @value: register value
153 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000154typedef void (*cgs_write_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400155 unsigned index, uint32_t value);
156
Tom St Denis38e40d92017-09-06 08:04:10 -0400157#define CGS_REG_FIELD_SHIFT(reg, field) reg##__##field##__SHIFT
158#define CGS_REG_FIELD_MASK(reg, field) reg##__##field##_MASK
159
160#define CGS_REG_SET_FIELD(orig_val, reg, field, field_val) \
161 (((orig_val) & ~CGS_REG_FIELD_MASK(reg, field)) | \
162 (CGS_REG_FIELD_MASK(reg, field) & ((field_val) << CGS_REG_FIELD_SHIFT(reg, field))))
163
164#define CGS_REG_GET_FIELD(value, reg, field) \
165 (((value) & CGS_REG_FIELD_MASK(reg, field)) >> CGS_REG_FIELD_SHIFT(reg, field))
166
167#define CGS_WREG32_FIELD(device, reg, field, val) \
168 cgs_write_register(device, mm##reg, (cgs_read_register(device, mm##reg) & ~CGS_REG_FIELD_MASK(reg, field)) | (val) << CGS_REG_FIELD_SHIFT(reg, field))
169
170#define CGS_WREG32_FIELD_IND(device, space, reg, field, val) \
171 cgs_write_ind_register(device, space, ix##reg, (cgs_read_ind_register(device, space, ix##reg) & ~CGS_REG_FIELD_MASK(reg, field)) | (val) << CGS_REG_FIELD_SHIFT(reg, field))
172
Chunming Zhoud03846a2015-07-28 14:20:03 -0400173/**
Alex Deucherba228ac2015-12-23 11:25:43 -0500174 * cgs_get_pci_resource() - provide access to a device resource (PCI BAR)
175 * @cgs_device: opaque device handle
176 * @resource_type: Type of Resource (MMIO, IO, ROM, FB, DOORBELL)
177 * @size: size of the region
178 * @offset: offset from the start of the region
179 * @resource_base: base address (not including offset) returned
180 *
181 * Return: 0 on success, -errno otherwise
182 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000183typedef int (*cgs_get_pci_resource_t)(struct cgs_device *cgs_device,
Alex Deucherba228ac2015-12-23 11:25:43 -0500184 enum cgs_resource_type resource_type,
185 uint64_t size,
186 uint64_t offset,
187 uint64_t *resource_base);
188
Chunming Zhoud03846a2015-07-28 14:20:03 -0400189/**
190 * cgs_atom_get_data_table() - Get a pointer to an ATOM BIOS data table
191 * @cgs_device: opaque device handle
192 * @table: data table index
193 * @size: size of the table (output, may be NULL)
194 * @frev: table format revision (output, may be NULL)
195 * @crev: table content revision (output, may be NULL)
196 *
197 * Return: Pointer to start of the table, or NULL on failure
198 */
199typedef const void *(*cgs_atom_get_data_table_t)(
Dave Airlie110e6f22016-04-12 13:25:48 +1000200 struct cgs_device *cgs_device, unsigned table,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400201 uint16_t *size, uint8_t *frev, uint8_t *crev);
202
203/**
204 * cgs_atom_get_cmd_table_revs() - Get ATOM BIOS command table revisions
205 * @cgs_device: opaque device handle
206 * @table: data table index
207 * @frev: table format revision (output, may be NULL)
208 * @crev: table content revision (output, may be NULL)
209 *
210 * Return: 0 on success, -errno otherwise
211 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000212typedef int (*cgs_atom_get_cmd_table_revs_t)(struct cgs_device *cgs_device, unsigned table,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400213 uint8_t *frev, uint8_t *crev);
214
215/**
216 * cgs_atom_exec_cmd_table() - Execute an ATOM BIOS command table
217 * @cgs_device: opaque device handle
218 * @table: command table index
219 * @args: arguments
220 *
221 * Return: 0 on success, -errno otherwise
222 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000223typedef int (*cgs_atom_exec_cmd_table_t)(struct cgs_device *cgs_device,
Chunming Zhoud03846a2015-07-28 14:20:03 -0400224 unsigned table, void *args);
225
226/**
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800227 * cgs_get_firmware_info - Get the firmware information from core driver
228 * @cgs_device: opaque device handle
229 * @type: the firmware type
230 * @info: returend firmware information
231 *
232 * Return: 0 on success, -errno otherwise
233 */
Dave Airlie110e6f22016-04-12 13:25:48 +1000234typedef int (*cgs_get_firmware_info)(struct cgs_device *cgs_device,
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800235 enum cgs_ucode_id type,
236 struct cgs_firmware_info *info);
237
Monk Liua3927462016-05-31 13:44:30 +0800238typedef int (*cgs_rel_firmware)(struct cgs_device *cgs_device,
239 enum cgs_ucode_id type);
240
Dave Airlie110e6f22016-04-12 13:25:48 +1000241typedef int(*cgs_set_powergating_state)(struct cgs_device *cgs_device,
rezhu404b2fa2015-08-07 13:37:56 +0800242 enum amd_ip_block_type block_type,
243 enum amd_powergating_state state);
244
Dave Airlie110e6f22016-04-12 13:25:48 +1000245typedef int(*cgs_set_clockgating_state)(struct cgs_device *cgs_device,
rezhu404b2fa2015-08-07 13:37:56 +0800246 enum amd_ip_block_type block_type,
247 enum amd_clockgating_state state);
Chunming Zhoud03846a2015-07-28 14:20:03 -0400248
Rex Zhu47bf18b2015-09-17 16:34:14 +0800249typedef int(*cgs_get_active_displays_info)(
Dave Airlie110e6f22016-04-12 13:25:48 +1000250 struct cgs_device *cgs_device,
Rex Zhu47bf18b2015-09-17 16:34:14 +0800251 struct cgs_display_info *info);
252
Dave Airlie110e6f22016-04-12 13:25:48 +1000253typedef int (*cgs_notify_dpm_enabled)(struct cgs_device *cgs_device, bool enabled);
Rex Zhu4c900802016-03-29 14:20:37 +0800254
Frank Minac00bbf2016-04-27 20:04:58 +0800255typedef int (*cgs_is_virtualization_enabled_t)(void *cgs_device);
256
Rex Zhue8a95b22016-12-21 20:30:58 +0800257typedef int (*cgs_enter_safe_mode)(struct cgs_device *cgs_device, bool en);
258
Evan Quan209ee272017-07-04 15:37:09 +0800259typedef void (*cgs_lock_grbm_idx)(struct cgs_device *cgs_device, bool lock);
260
Chunming Zhoud03846a2015-07-28 14:20:03 -0400261struct cgs_ops {
Chunming Zhoud03846a2015-07-28 14:20:03 -0400262 /* MMIO access */
263 cgs_read_register_t read_register;
264 cgs_write_register_t write_register;
265 cgs_read_ind_register_t read_ind_register;
266 cgs_write_ind_register_t write_ind_register;
Alex Deucherba228ac2015-12-23 11:25:43 -0500267 /* PCI resources */
268 cgs_get_pci_resource_t get_pci_resource;
Chunming Zhoud03846a2015-07-28 14:20:03 -0400269 /* ATOM BIOS */
270 cgs_atom_get_data_table_t atom_get_data_table;
271 cgs_atom_get_cmd_table_revs_t atom_get_cmd_table_revs;
272 cgs_atom_exec_cmd_table_t atom_exec_cmd_table;
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800273 /* Firmware Info */
274 cgs_get_firmware_info get_firmware_info;
Monk Liua3927462016-05-31 13:44:30 +0800275 cgs_rel_firmware rel_firmware;
rezhu404b2fa2015-08-07 13:37:56 +0800276 /* cg pg interface*/
277 cgs_set_powergating_state set_powergating_state;
278 cgs_set_clockgating_state set_clockgating_state;
Rex Zhu47bf18b2015-09-17 16:34:14 +0800279 /* display manager */
280 cgs_get_active_displays_info get_active_displays_info;
Rex Zhu4c900802016-03-29 14:20:37 +0800281 /* notify dpm enabled */
282 cgs_notify_dpm_enabled notify_dpm_enabled;
Frank Minac00bbf2016-04-27 20:04:58 +0800283 cgs_is_virtualization_enabled_t is_virtualization_enabled;
Rex Zhue8a95b22016-12-21 20:30:58 +0800284 cgs_enter_safe_mode enter_safe_mode;
Evan Quan209ee272017-07-04 15:37:09 +0800285 cgs_lock_grbm_idx lock_grbm_idx;
Chunming Zhoud03846a2015-07-28 14:20:03 -0400286};
287
288struct cgs_os_ops; /* To be define in OS-specific CGS header */
289
290struct cgs_device
291{
292 const struct cgs_ops *ops;
Chunming Zhoud03846a2015-07-28 14:20:03 -0400293 /* to be embedded at the start of driver private structure */
294};
295
296/* Convenience macros that make CGS indirect function calls look like
297 * normal function calls */
298#define CGS_CALL(func,dev,...) \
299 (((struct cgs_device *)dev)->ops->func(dev, ##__VA_ARGS__))
300#define CGS_OS_CALL(func,dev,...) \
301 (((struct cgs_device *)dev)->os_ops->func(dev, ##__VA_ARGS__))
302
Chunming Zhoud03846a2015-07-28 14:20:03 -0400303#define cgs_read_register(dev,offset) \
304 CGS_CALL(read_register,dev,offset)
305#define cgs_write_register(dev,offset,value) \
306 CGS_CALL(write_register,dev,offset,value)
307#define cgs_read_ind_register(dev,space,index) \
308 CGS_CALL(read_ind_register,dev,space,index)
309#define cgs_write_ind_register(dev,space,index,value) \
310 CGS_CALL(write_ind_register,dev,space,index,value)
311
Chunming Zhoud03846a2015-07-28 14:20:03 -0400312#define cgs_atom_get_data_table(dev,table,size,frev,crev) \
313 CGS_CALL(atom_get_data_table,dev,table,size,frev,crev)
314#define cgs_atom_get_cmd_table_revs(dev,table,frev,crev) \
315 CGS_CALL(atom_get_cmd_table_revs,dev,table,frev,crev)
316#define cgs_atom_exec_cmd_table(dev,table,args) \
317 CGS_CALL(atom_exec_cmd_table,dev,table,args)
318
Jammy Zhoubf3911b02015-05-13 18:58:05 +0800319#define cgs_get_firmware_info(dev, type, info) \
320 CGS_CALL(get_firmware_info, dev, type, info)
Monk Liua3927462016-05-31 13:44:30 +0800321#define cgs_rel_firmware(dev, type) \
322 CGS_CALL(rel_firmware, dev, type)
rezhu404b2fa2015-08-07 13:37:56 +0800323#define cgs_set_powergating_state(dev, block_type, state) \
324 CGS_CALL(set_powergating_state, dev, block_type, state)
325#define cgs_set_clockgating_state(dev, block_type, state) \
326 CGS_CALL(set_clockgating_state, dev, block_type, state)
Rex Zhu4c900802016-03-29 14:20:37 +0800327#define cgs_notify_dpm_enabled(dev, enabled) \
328 CGS_CALL(notify_dpm_enabled, dev, enabled)
329
Rex Zhu47bf18b2015-09-17 16:34:14 +0800330#define cgs_get_active_displays_info(dev, info) \
331 CGS_CALL(get_active_displays_info, dev, info)
Rex Zhu4c900802016-03-29 14:20:37 +0800332
Alex Deucherba228ac2015-12-23 11:25:43 -0500333#define cgs_get_pci_resource(cgs_device, resource_type, size, offset, \
334 resource_base) \
335 CGS_CALL(get_pci_resource, cgs_device, resource_type, size, offset, \
336 resource_base)
Chunming Zhoud03846a2015-07-28 14:20:03 -0400337
Frank Minac00bbf2016-04-27 20:04:58 +0800338#define cgs_is_virtualization_enabled(cgs_device) \
339 CGS_CALL(is_virtualization_enabled, cgs_device)
Rex Zhue8a95b22016-12-21 20:30:58 +0800340
341#define cgs_enter_safe_mode(cgs_device, en) \
342 CGS_CALL(enter_safe_mode, cgs_device, en)
343
Evan Quan209ee272017-07-04 15:37:09 +0800344#define cgs_lock_grbm_idx(cgs_device, lock) \
345 CGS_CALL(lock_grbm_idx, cgs_device, lock)
Rex Zhuba89a3e2017-09-25 20:45:52 +0800346
Evan Quan1357f0c2017-12-28 14:14:08 +0800347
Chunming Zhoud03846a2015-07-28 14:20:03 -0400348#endif /* _CGS_COMMON_H */