Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 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 | */ |
| 24 | #ifndef _CGS_COMMON_H |
| 25 | #define _CGS_COMMON_H |
| 26 | |
rezhu | 404b2fa | 2015-08-07 13:37:56 +0800 | [diff] [blame] | 27 | #include "amd_shared.h" |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 28 | |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 29 | struct cgs_device; |
| 30 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 31 | /** |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 32 | * enum cgs_ind_reg - Indirect register spaces |
| 33 | */ |
| 34 | enum 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 Zhu | ccdbb20 | 2016-06-08 12:47:41 +0800 | [diff] [blame] | 40 | CGS_IND_REG_GC_CAC, |
Evan Quan | c62a59d | 2017-07-04 09:24:34 +0800 | [diff] [blame] | 41 | CGS_IND_REG_SE_CAC, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 42 | CGS_IND_REG__AUDIO_ENDPT |
| 43 | }; |
| 44 | |
| 45 | /** |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 46 | * enum cgs_engine - Engines that can be statically power-gated |
| 47 | */ |
| 48 | enum 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 Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 59 | /* |
| 60 | * enum cgs_ucode_id - Firmware types for different IPs |
| 61 | */ |
| 62 | enum cgs_ucode_id { |
| 63 | CGS_UCODE_ID_SMU = 0, |
yanyang1 | 735f002 | 2016-02-05 17:39:37 +0800 | [diff] [blame] | 64 | CGS_UCODE_ID_SMU_SK, |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 65 | 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 Liu | bed5712 | 2016-09-26 16:35:03 +0800 | [diff] [blame] | 75 | CGS_UCODE_ID_STORAGE, |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 76 | CGS_UCODE_ID_MAXIMUM, |
| 77 | }; |
| 78 | |
Alex Deucher | ba228ac | 2015-12-23 11:25:43 -0500 | [diff] [blame] | 79 | /* |
| 80 | * enum cgs_resource_type - GPU resource type |
| 81 | */ |
| 82 | enum 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 Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 90 | /** |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 91 | * struct cgs_firmware_info - Firmware information |
| 92 | */ |
| 93 | struct cgs_firmware_info { |
| 94 | uint16_t version; |
Frank Min | fc76cbf | 2016-04-27 18:53:29 +0800 | [diff] [blame] | 95 | uint16_t fw_version; |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 96 | uint16_t feature_version; |
| 97 | uint32_t image_size; |
| 98 | uint64_t mc_addr; |
Huang Rui | 340efe2 | 2016-06-19 23:55:14 +0800 | [diff] [blame] | 99 | |
| 100 | /* only for smc firmware */ |
| 101 | uint32_t ucode_start_address; |
| 102 | |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 103 | void *kptr; |
Huang Rui | 5d7213b | 2017-02-10 16:42:19 +0800 | [diff] [blame] | 104 | bool is_kicker; |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 105 | }; |
| 106 | |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 107 | struct cgs_mode_info { |
| 108 | uint32_t refresh_rate; |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 109 | uint32_t vblank_time_us; |
| 110 | }; |
| 111 | |
| 112 | struct cgs_display_info { |
| 113 | uint32_t display_count; |
| 114 | uint32_t active_display_mask; |
| 115 | struct cgs_mode_info *mode_info; |
| 116 | }; |
| 117 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 118 | typedef unsigned long cgs_handle_t; |
| 119 | |
| 120 | /** |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 121 | * cgs_read_register() - Read an MMIO register |
| 122 | * @cgs_device: opaque device handle |
| 123 | * @offset: register offset |
| 124 | * |
| 125 | * Return: register value |
| 126 | */ |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 127 | typedef uint32_t (*cgs_read_register_t)(struct cgs_device *cgs_device, unsigned offset); |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 128 | |
| 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 135 | typedef void (*cgs_write_register_t)(struct cgs_device *cgs_device, unsigned offset, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 136 | 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 145 | typedef uint32_t (*cgs_read_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 146 | 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 154 | typedef void (*cgs_write_ind_register_t)(struct cgs_device *cgs_device, enum cgs_ind_reg space, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 155 | unsigned index, uint32_t value); |
| 156 | |
Tom St Denis | 38e40d9 | 2017-09-06 08:04:10 -0400 | [diff] [blame] | 157 | #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 Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 173 | /** |
Alex Deucher | ba228ac | 2015-12-23 11:25:43 -0500 | [diff] [blame] | 174 | * 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 183 | typedef int (*cgs_get_pci_resource_t)(struct cgs_device *cgs_device, |
Alex Deucher | ba228ac | 2015-12-23 11:25:43 -0500 | [diff] [blame] | 184 | enum cgs_resource_type resource_type, |
| 185 | uint64_t size, |
| 186 | uint64_t offset, |
| 187 | uint64_t *resource_base); |
| 188 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 189 | /** |
| 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 | */ |
| 199 | typedef const void *(*cgs_atom_get_data_table_t)( |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 200 | struct cgs_device *cgs_device, unsigned table, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 201 | 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 212 | typedef int (*cgs_atom_get_cmd_table_revs_t)(struct cgs_device *cgs_device, unsigned table, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 213 | 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 223 | typedef int (*cgs_atom_exec_cmd_table_t)(struct cgs_device *cgs_device, |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 224 | unsigned table, void *args); |
| 225 | |
| 226 | /** |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 227 | * 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 Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 234 | typedef int (*cgs_get_firmware_info)(struct cgs_device *cgs_device, |
Jammy Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 235 | enum cgs_ucode_id type, |
| 236 | struct cgs_firmware_info *info); |
| 237 | |
Monk Liu | a392746 | 2016-05-31 13:44:30 +0800 | [diff] [blame] | 238 | typedef int (*cgs_rel_firmware)(struct cgs_device *cgs_device, |
| 239 | enum cgs_ucode_id type); |
| 240 | |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 241 | typedef int(*cgs_set_powergating_state)(struct cgs_device *cgs_device, |
rezhu | 404b2fa | 2015-08-07 13:37:56 +0800 | [diff] [blame] | 242 | enum amd_ip_block_type block_type, |
| 243 | enum amd_powergating_state state); |
| 244 | |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 245 | typedef int(*cgs_set_clockgating_state)(struct cgs_device *cgs_device, |
rezhu | 404b2fa | 2015-08-07 13:37:56 +0800 | [diff] [blame] | 246 | enum amd_ip_block_type block_type, |
| 247 | enum amd_clockgating_state state); |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 248 | |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 249 | typedef int(*cgs_get_active_displays_info)( |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 250 | struct cgs_device *cgs_device, |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 251 | struct cgs_display_info *info); |
| 252 | |
Dave Airlie | 110e6f2 | 2016-04-12 13:25:48 +1000 | [diff] [blame] | 253 | typedef int (*cgs_notify_dpm_enabled)(struct cgs_device *cgs_device, bool enabled); |
Rex Zhu | 4c90080 | 2016-03-29 14:20:37 +0800 | [diff] [blame] | 254 | |
Frank Min | ac00bbf | 2016-04-27 20:04:58 +0800 | [diff] [blame] | 255 | typedef int (*cgs_is_virtualization_enabled_t)(void *cgs_device); |
| 256 | |
Rex Zhu | e8a95b2 | 2016-12-21 20:30:58 +0800 | [diff] [blame] | 257 | typedef int (*cgs_enter_safe_mode)(struct cgs_device *cgs_device, bool en); |
| 258 | |
Evan Quan | 209ee27 | 2017-07-04 15:37:09 +0800 | [diff] [blame] | 259 | typedef void (*cgs_lock_grbm_idx)(struct cgs_device *cgs_device, bool lock); |
| 260 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 261 | struct cgs_ops { |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 262 | /* 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 Deucher | ba228ac | 2015-12-23 11:25:43 -0500 | [diff] [blame] | 267 | /* PCI resources */ |
| 268 | cgs_get_pci_resource_t get_pci_resource; |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 269 | /* 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 Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 273 | /* Firmware Info */ |
| 274 | cgs_get_firmware_info get_firmware_info; |
Monk Liu | a392746 | 2016-05-31 13:44:30 +0800 | [diff] [blame] | 275 | cgs_rel_firmware rel_firmware; |
rezhu | 404b2fa | 2015-08-07 13:37:56 +0800 | [diff] [blame] | 276 | /* cg pg interface*/ |
| 277 | cgs_set_powergating_state set_powergating_state; |
| 278 | cgs_set_clockgating_state set_clockgating_state; |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 279 | /* display manager */ |
| 280 | cgs_get_active_displays_info get_active_displays_info; |
Rex Zhu | 4c90080 | 2016-03-29 14:20:37 +0800 | [diff] [blame] | 281 | /* notify dpm enabled */ |
| 282 | cgs_notify_dpm_enabled notify_dpm_enabled; |
Frank Min | ac00bbf | 2016-04-27 20:04:58 +0800 | [diff] [blame] | 283 | cgs_is_virtualization_enabled_t is_virtualization_enabled; |
Rex Zhu | e8a95b2 | 2016-12-21 20:30:58 +0800 | [diff] [blame] | 284 | cgs_enter_safe_mode enter_safe_mode; |
Evan Quan | 209ee27 | 2017-07-04 15:37:09 +0800 | [diff] [blame] | 285 | cgs_lock_grbm_idx lock_grbm_idx; |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | struct cgs_os_ops; /* To be define in OS-specific CGS header */ |
| 289 | |
| 290 | struct cgs_device |
| 291 | { |
| 292 | const struct cgs_ops *ops; |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 293 | /* 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 Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 303 | #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 Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 312 | #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 Zhou | bf3911b0 | 2015-05-13 18:58:05 +0800 | [diff] [blame] | 319 | #define cgs_get_firmware_info(dev, type, info) \ |
| 320 | CGS_CALL(get_firmware_info, dev, type, info) |
Monk Liu | a392746 | 2016-05-31 13:44:30 +0800 | [diff] [blame] | 321 | #define cgs_rel_firmware(dev, type) \ |
| 322 | CGS_CALL(rel_firmware, dev, type) |
rezhu | 404b2fa | 2015-08-07 13:37:56 +0800 | [diff] [blame] | 323 | #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 Zhu | 4c90080 | 2016-03-29 14:20:37 +0800 | [diff] [blame] | 327 | #define cgs_notify_dpm_enabled(dev, enabled) \ |
| 328 | CGS_CALL(notify_dpm_enabled, dev, enabled) |
| 329 | |
Rex Zhu | 47bf18b | 2015-09-17 16:34:14 +0800 | [diff] [blame] | 330 | #define cgs_get_active_displays_info(dev, info) \ |
| 331 | CGS_CALL(get_active_displays_info, dev, info) |
Rex Zhu | 4c90080 | 2016-03-29 14:20:37 +0800 | [diff] [blame] | 332 | |
Alex Deucher | ba228ac | 2015-12-23 11:25:43 -0500 | [diff] [blame] | 333 | #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 Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 337 | |
Frank Min | ac00bbf | 2016-04-27 20:04:58 +0800 | [diff] [blame] | 338 | #define cgs_is_virtualization_enabled(cgs_device) \ |
| 339 | CGS_CALL(is_virtualization_enabled, cgs_device) |
Rex Zhu | e8a95b2 | 2016-12-21 20:30:58 +0800 | [diff] [blame] | 340 | |
| 341 | #define cgs_enter_safe_mode(cgs_device, en) \ |
| 342 | CGS_CALL(enter_safe_mode, cgs_device, en) |
| 343 | |
Evan Quan | 209ee27 | 2017-07-04 15:37:09 +0800 | [diff] [blame] | 344 | #define cgs_lock_grbm_idx(cgs_device, lock) \ |
| 345 | CGS_CALL(lock_grbm_idx, cgs_device, lock) |
Rex Zhu | ba89a3e | 2017-09-25 20:45:52 +0800 | [diff] [blame] | 346 | |
Evan Quan | 1357f0c | 2017-12-28 14:14:08 +0800 | [diff] [blame] | 347 | |
Chunming Zhou | d03846a | 2015-07-28 14:20:03 -0400 | [diff] [blame] | 348 | #endif /* _CGS_COMMON_H */ |