1 /* 2 * Copyright 2021 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 #include <linux/firmware.h> 24 #include <linux/slab.h> 25 #include <linux/module.h> 26 #include <linux/pci.h> 27 28 #include "amdgpu.h" 29 #include "amdgpu_atombios.h" 30 #include "amdgpu_ih.h" 31 #include "amdgpu_uvd.h" 32 #include "amdgpu_vce.h" 33 #include "amdgpu_ucode.h" 34 #include "amdgpu_psp.h" 35 #include "amdgpu_smu.h" 36 #include "atom.h" 37 #include "amd_pcie.h" 38 39 #include "gc/gc_11_0_0_offset.h" 40 #include "gc/gc_11_0_0_sh_mask.h" 41 #include "mp/mp_13_0_0_offset.h" 42 43 #include "soc15.h" 44 #include "soc15_common.h" 45 46 static const struct amd_ip_funcs soc21_common_ip_funcs; 47 48 /* SOC21 */ 49 static const struct amdgpu_video_codec_info vcn_4_0_0_video_codecs_encode_array[] = 50 { 51 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_MPEG4_AVC, 4096, 2304, 0)}, 52 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_HEVC, 4096, 2304, 0)}, 53 }; 54 55 static const struct amdgpu_video_codecs vcn_4_0_0_video_codecs_encode = 56 { 57 .codec_count = ARRAY_SIZE(vcn_4_0_0_video_codecs_encode_array), 58 .codec_array = vcn_4_0_0_video_codecs_encode_array, 59 }; 60 61 static const struct amdgpu_video_codec_info vcn_4_0_0_video_codecs_decode_array[] = 62 { 63 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_MPEG4_AVC, 4096, 4906, 52)}, 64 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_HEVC, 8192, 4352, 186)}, 65 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_JPEG, 4096, 4096, 0)}, 66 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_VP9, 8192, 4352, 0)}, 67 {codec_info_build(AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_AV1, 8192, 4352, 0)}, 68 }; 69 70 static const struct amdgpu_video_codecs vcn_4_0_0_video_codecs_decode = 71 { 72 .codec_count = ARRAY_SIZE(vcn_4_0_0_video_codecs_decode_array), 73 .codec_array = vcn_4_0_0_video_codecs_decode_array, 74 }; 75 76 static int soc21_query_video_codecs(struct amdgpu_device *adev, bool encode, 77 const struct amdgpu_video_codecs **codecs) 78 { 79 switch (adev->ip_versions[UVD_HWIP][0]) { 80 81 case IP_VERSION(4, 0, 0): 82 if (encode) 83 *codecs = &vcn_4_0_0_video_codecs_encode; 84 else 85 *codecs = &vcn_4_0_0_video_codecs_decode; 86 return 0; 87 default: 88 return -EINVAL; 89 } 90 } 91 /* 92 * Indirect registers accessor 93 */ 94 static u32 soc21_pcie_rreg(struct amdgpu_device *adev, u32 reg) 95 { 96 unsigned long address, data; 97 address = adev->nbio.funcs->get_pcie_index_offset(adev); 98 data = adev->nbio.funcs->get_pcie_data_offset(adev); 99 100 return amdgpu_device_indirect_rreg(adev, address, data, reg); 101 } 102 103 static void soc21_pcie_wreg(struct amdgpu_device *adev, u32 reg, u32 v) 104 { 105 unsigned long address, data; 106 107 address = adev->nbio.funcs->get_pcie_index_offset(adev); 108 data = adev->nbio.funcs->get_pcie_data_offset(adev); 109 110 amdgpu_device_indirect_wreg(adev, address, data, reg, v); 111 } 112 113 static u64 soc21_pcie_rreg64(struct amdgpu_device *adev, u32 reg) 114 { 115 unsigned long address, data; 116 address = adev->nbio.funcs->get_pcie_index_offset(adev); 117 data = adev->nbio.funcs->get_pcie_data_offset(adev); 118 119 return amdgpu_device_indirect_rreg64(adev, address, data, reg); 120 } 121 122 static void soc21_pcie_wreg64(struct amdgpu_device *adev, u32 reg, u64 v) 123 { 124 unsigned long address, data; 125 126 address = adev->nbio.funcs->get_pcie_index_offset(adev); 127 data = adev->nbio.funcs->get_pcie_data_offset(adev); 128 129 amdgpu_device_indirect_wreg64(adev, address, data, reg, v); 130 } 131 132 static u32 soc21_didt_rreg(struct amdgpu_device *adev, u32 reg) 133 { 134 unsigned long flags, address, data; 135 u32 r; 136 137 address = SOC15_REG_OFFSET(GC, 0, regDIDT_IND_INDEX); 138 data = SOC15_REG_OFFSET(GC, 0, regDIDT_IND_DATA); 139 140 spin_lock_irqsave(&adev->didt_idx_lock, flags); 141 WREG32(address, (reg)); 142 r = RREG32(data); 143 spin_unlock_irqrestore(&adev->didt_idx_lock, flags); 144 return r; 145 } 146 147 static void soc21_didt_wreg(struct amdgpu_device *adev, u32 reg, u32 v) 148 { 149 unsigned long flags, address, data; 150 151 address = SOC15_REG_OFFSET(GC, 0, regDIDT_IND_INDEX); 152 data = SOC15_REG_OFFSET(GC, 0, regDIDT_IND_DATA); 153 154 spin_lock_irqsave(&adev->didt_idx_lock, flags); 155 WREG32(address, (reg)); 156 WREG32(data, (v)); 157 spin_unlock_irqrestore(&adev->didt_idx_lock, flags); 158 } 159 160 static u32 soc21_get_config_memsize(struct amdgpu_device *adev) 161 { 162 return adev->nbio.funcs->get_memsize(adev); 163 } 164 165 static u32 soc21_get_xclk(struct amdgpu_device *adev) 166 { 167 return adev->clock.spll.reference_freq; 168 } 169 170 171 void soc21_grbm_select(struct amdgpu_device *adev, 172 u32 me, u32 pipe, u32 queue, u32 vmid) 173 { 174 u32 grbm_gfx_cntl = 0; 175 grbm_gfx_cntl = REG_SET_FIELD(grbm_gfx_cntl, GRBM_GFX_CNTL, PIPEID, pipe); 176 grbm_gfx_cntl = REG_SET_FIELD(grbm_gfx_cntl, GRBM_GFX_CNTL, MEID, me); 177 grbm_gfx_cntl = REG_SET_FIELD(grbm_gfx_cntl, GRBM_GFX_CNTL, VMID, vmid); 178 grbm_gfx_cntl = REG_SET_FIELD(grbm_gfx_cntl, GRBM_GFX_CNTL, QUEUEID, queue); 179 180 WREG32(SOC15_REG_OFFSET(GC, 0, regGRBM_GFX_CNTL), grbm_gfx_cntl); 181 } 182 183 static void soc21_vga_set_state(struct amdgpu_device *adev, bool state) 184 { 185 /* todo */ 186 } 187 188 static bool soc21_read_disabled_bios(struct amdgpu_device *adev) 189 { 190 /* todo */ 191 return false; 192 } 193 194 static struct soc15_allowed_register_entry soc21_allowed_read_registers[] = { 195 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS)}, 196 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS2)}, 197 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS_SE0)}, 198 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS_SE1)}, 199 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS_SE2)}, 200 { SOC15_REG_ENTRY(GC, 0, regGRBM_STATUS_SE3)}, 201 { SOC15_REG_ENTRY(SDMA0, 0, regSDMA0_STATUS_REG)}, 202 { SOC15_REG_ENTRY(SDMA1, 0, regSDMA1_STATUS_REG)}, 203 { SOC15_REG_ENTRY(GC, 0, regCP_STAT)}, 204 { SOC15_REG_ENTRY(GC, 0, regCP_STALLED_STAT1)}, 205 { SOC15_REG_ENTRY(GC, 0, regCP_STALLED_STAT2)}, 206 { SOC15_REG_ENTRY(GC, 0, regCP_STALLED_STAT3)}, 207 { SOC15_REG_ENTRY(GC, 0, regCP_CPF_BUSY_STAT)}, 208 { SOC15_REG_ENTRY(GC, 0, regCP_CPF_STALLED_STAT1)}, 209 { SOC15_REG_ENTRY(GC, 0, regCP_CPF_STATUS)}, 210 { SOC15_REG_ENTRY(GC, 0, regCP_CPC_BUSY_STAT)}, 211 { SOC15_REG_ENTRY(GC, 0, regCP_CPC_STALLED_STAT1)}, 212 { SOC15_REG_ENTRY(GC, 0, regCP_CPC_STATUS)}, 213 { SOC15_REG_ENTRY(GC, 0, regGB_ADDR_CONFIG)}, 214 }; 215 216 static uint32_t soc21_read_indexed_register(struct amdgpu_device *adev, u32 se_num, 217 u32 sh_num, u32 reg_offset) 218 { 219 uint32_t val; 220 221 mutex_lock(&adev->grbm_idx_mutex); 222 if (se_num != 0xffffffff || sh_num != 0xffffffff) 223 amdgpu_gfx_select_se_sh(adev, se_num, sh_num, 0xffffffff); 224 225 val = RREG32(reg_offset); 226 227 if (se_num != 0xffffffff || sh_num != 0xffffffff) 228 amdgpu_gfx_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff); 229 mutex_unlock(&adev->grbm_idx_mutex); 230 return val; 231 } 232 233 static uint32_t soc21_get_register_value(struct amdgpu_device *adev, 234 bool indexed, u32 se_num, 235 u32 sh_num, u32 reg_offset) 236 { 237 if (indexed) { 238 return soc21_read_indexed_register(adev, se_num, sh_num, reg_offset); 239 } else { 240 if (reg_offset == SOC15_REG_OFFSET(GC, 0, regGB_ADDR_CONFIG) && adev->gfx.config.gb_addr_config) 241 return adev->gfx.config.gb_addr_config; 242 return RREG32(reg_offset); 243 } 244 } 245 246 static int soc21_read_register(struct amdgpu_device *adev, u32 se_num, 247 u32 sh_num, u32 reg_offset, u32 *value) 248 { 249 uint32_t i; 250 struct soc15_allowed_register_entry *en; 251 252 *value = 0; 253 for (i = 0; i < ARRAY_SIZE(soc21_allowed_read_registers); i++) { 254 en = &soc21_allowed_read_registers[i]; 255 if (reg_offset != 256 (adev->reg_offset[en->hwip][en->inst][en->seg] + en->reg_offset)) 257 continue; 258 259 *value = soc21_get_register_value(adev, 260 soc21_allowed_read_registers[i].grbm_indexed, 261 se_num, sh_num, reg_offset); 262 return 0; 263 } 264 return -EINVAL; 265 } 266 267 #if 0 268 static int soc21_asic_mode1_reset(struct amdgpu_device *adev) 269 { 270 u32 i; 271 int ret = 0; 272 273 amdgpu_atombios_scratch_regs_engine_hung(adev, true); 274 275 /* disable BM */ 276 pci_clear_master(adev->pdev); 277 278 amdgpu_device_cache_pci_state(adev->pdev); 279 280 if (amdgpu_dpm_is_mode1_reset_supported(adev)) { 281 dev_info(adev->dev, "GPU smu mode1 reset\n"); 282 ret = amdgpu_dpm_mode1_reset(adev); 283 } else { 284 dev_info(adev->dev, "GPU psp mode1 reset\n"); 285 ret = psp_gpu_reset(adev); 286 } 287 288 if (ret) 289 dev_err(adev->dev, "GPU mode1 reset failed\n"); 290 amdgpu_device_load_pci_state(adev->pdev); 291 292 /* wait for asic to come out of reset */ 293 for (i = 0; i < adev->usec_timeout; i++) { 294 u32 memsize = adev->nbio.funcs->get_memsize(adev); 295 296 if (memsize != 0xffffffff) 297 break; 298 udelay(1); 299 } 300 301 amdgpu_atombios_scratch_regs_engine_hung(adev, false); 302 303 return ret; 304 } 305 #endif 306 307 static enum amd_reset_method 308 soc21_asic_reset_method(struct amdgpu_device *adev) 309 { 310 if (amdgpu_reset_method == AMD_RESET_METHOD_MODE1 || 311 amdgpu_reset_method == AMD_RESET_METHOD_BACO) 312 return amdgpu_reset_method; 313 314 if (amdgpu_reset_method != -1) 315 dev_warn(adev->dev, "Specified reset method:%d isn't supported, using AUTO instead.\n", 316 amdgpu_reset_method); 317 318 switch (adev->ip_versions[MP1_HWIP][0]) { 319 case IP_VERSION(13, 0, 0): 320 return AMD_RESET_METHOD_MODE1; 321 default: 322 if (amdgpu_dpm_is_baco_supported(adev)) 323 return AMD_RESET_METHOD_BACO; 324 else 325 return AMD_RESET_METHOD_MODE1; 326 } 327 } 328 329 static int soc21_asic_reset(struct amdgpu_device *adev) 330 { 331 int ret = 0; 332 333 switch (soc21_asic_reset_method(adev)) { 334 case AMD_RESET_METHOD_PCI: 335 dev_info(adev->dev, "PCI reset\n"); 336 ret = amdgpu_device_pci_reset(adev); 337 break; 338 case AMD_RESET_METHOD_BACO: 339 dev_info(adev->dev, "BACO reset\n"); 340 ret = amdgpu_dpm_baco_reset(adev); 341 break; 342 default: 343 dev_info(adev->dev, "MODE1 reset\n"); 344 ret = amdgpu_device_mode1_reset(adev); 345 break; 346 } 347 348 return ret; 349 } 350 351 static int soc21_set_uvd_clocks(struct amdgpu_device *adev, u32 vclk, u32 dclk) 352 { 353 /* todo */ 354 return 0; 355 } 356 357 static int soc21_set_vce_clocks(struct amdgpu_device *adev, u32 evclk, u32 ecclk) 358 { 359 /* todo */ 360 return 0; 361 } 362 363 static void soc21_pcie_gen3_enable(struct amdgpu_device *adev) 364 { 365 if (pci_is_root_bus(adev->pdev->bus)) 366 return; 367 368 if (amdgpu_pcie_gen2 == 0) 369 return; 370 371 if (!(adev->pm.pcie_gen_mask & (CAIL_PCIE_LINK_SPEED_SUPPORT_GEN2 | 372 CAIL_PCIE_LINK_SPEED_SUPPORT_GEN3))) 373 return; 374 375 /* todo */ 376 } 377 378 static void soc21_program_aspm(struct amdgpu_device *adev) 379 { 380 381 if (amdgpu_aspm == 0) 382 return; 383 384 /* todo */ 385 } 386 387 static void soc21_enable_doorbell_aperture(struct amdgpu_device *adev, 388 bool enable) 389 { 390 adev->nbio.funcs->enable_doorbell_aperture(adev, enable); 391 adev->nbio.funcs->enable_doorbell_selfring_aperture(adev, enable); 392 } 393 394 const struct amdgpu_ip_block_version soc21_common_ip_block = 395 { 396 .type = AMD_IP_BLOCK_TYPE_COMMON, 397 .major = 1, 398 .minor = 0, 399 .rev = 0, 400 .funcs = &soc21_common_ip_funcs, 401 }; 402 403 static uint32_t soc21_get_rev_id(struct amdgpu_device *adev) 404 { 405 return adev->nbio.funcs->get_rev_id(adev); 406 } 407 408 static bool soc21_need_full_reset(struct amdgpu_device *adev) 409 { 410 return true; 411 } 412 413 static bool soc21_need_reset_on_init(struct amdgpu_device *adev) 414 { 415 u32 sol_reg; 416 417 if (adev->flags & AMD_IS_APU) 418 return false; 419 420 /* Check sOS sign of life register to confirm sys driver and sOS 421 * are already been loaded. 422 */ 423 sol_reg = RREG32_SOC15(MP0, 0, regMP0_SMN_C2PMSG_81); 424 if (sol_reg) 425 return true; 426 427 return false; 428 } 429 430 static uint64_t soc21_get_pcie_replay_count(struct amdgpu_device *adev) 431 { 432 433 /* TODO 434 * dummy implement for pcie_replay_count sysfs interface 435 * */ 436 437 return 0; 438 } 439 440 static void soc21_init_doorbell_index(struct amdgpu_device *adev) 441 { 442 adev->doorbell_index.kiq = AMDGPU_NAVI10_DOORBELL_KIQ; 443 adev->doorbell_index.mec_ring0 = AMDGPU_NAVI10_DOORBELL_MEC_RING0; 444 adev->doorbell_index.mec_ring1 = AMDGPU_NAVI10_DOORBELL_MEC_RING1; 445 adev->doorbell_index.mec_ring2 = AMDGPU_NAVI10_DOORBELL_MEC_RING2; 446 adev->doorbell_index.mec_ring3 = AMDGPU_NAVI10_DOORBELL_MEC_RING3; 447 adev->doorbell_index.mec_ring4 = AMDGPU_NAVI10_DOORBELL_MEC_RING4; 448 adev->doorbell_index.mec_ring5 = AMDGPU_NAVI10_DOORBELL_MEC_RING5; 449 adev->doorbell_index.mec_ring6 = AMDGPU_NAVI10_DOORBELL_MEC_RING6; 450 adev->doorbell_index.mec_ring7 = AMDGPU_NAVI10_DOORBELL_MEC_RING7; 451 adev->doorbell_index.userqueue_start = AMDGPU_NAVI10_DOORBELL_USERQUEUE_START; 452 adev->doorbell_index.userqueue_end = AMDGPU_NAVI10_DOORBELL_USERQUEUE_END; 453 adev->doorbell_index.gfx_ring0 = AMDGPU_NAVI10_DOORBELL_GFX_RING0; 454 adev->doorbell_index.gfx_ring1 = AMDGPU_NAVI10_DOORBELL_GFX_RING1; 455 adev->doorbell_index.gfx_userqueue_start = 456 AMDGPU_NAVI10_DOORBELL_GFX_USERQUEUE_START; 457 adev->doorbell_index.gfx_userqueue_end = 458 AMDGPU_NAVI10_DOORBELL_GFX_USERQUEUE_END; 459 adev->doorbell_index.mes_ring0 = AMDGPU_NAVI10_DOORBELL_MES_RING0; 460 adev->doorbell_index.mes_ring1 = AMDGPU_NAVI10_DOORBELL_MES_RING1; 461 adev->doorbell_index.sdma_engine[0] = AMDGPU_NAVI10_DOORBELL_sDMA_ENGINE0; 462 adev->doorbell_index.sdma_engine[1] = AMDGPU_NAVI10_DOORBELL_sDMA_ENGINE1; 463 adev->doorbell_index.ih = AMDGPU_NAVI10_DOORBELL_IH; 464 adev->doorbell_index.vcn.vcn_ring0_1 = AMDGPU_NAVI10_DOORBELL64_VCN0_1; 465 adev->doorbell_index.vcn.vcn_ring2_3 = AMDGPU_NAVI10_DOORBELL64_VCN2_3; 466 adev->doorbell_index.vcn.vcn_ring4_5 = AMDGPU_NAVI10_DOORBELL64_VCN4_5; 467 adev->doorbell_index.vcn.vcn_ring6_7 = AMDGPU_NAVI10_DOORBELL64_VCN6_7; 468 adev->doorbell_index.first_non_cp = AMDGPU_NAVI10_DOORBELL64_FIRST_NON_CP; 469 adev->doorbell_index.last_non_cp = AMDGPU_NAVI10_DOORBELL64_LAST_NON_CP; 470 471 adev->doorbell_index.max_assignment = AMDGPU_NAVI10_DOORBELL_MAX_ASSIGNMENT << 1; 472 adev->doorbell_index.sdma_doorbell_range = 20; 473 } 474 475 static void soc21_pre_asic_init(struct amdgpu_device *adev) 476 { 477 } 478 479 static const struct amdgpu_asic_funcs soc21_asic_funcs = 480 { 481 .read_disabled_bios = &soc21_read_disabled_bios, 482 .read_bios_from_rom = &amdgpu_soc15_read_bios_from_rom, 483 .read_register = &soc21_read_register, 484 .reset = &soc21_asic_reset, 485 .reset_method = &soc21_asic_reset_method, 486 .set_vga_state = &soc21_vga_set_state, 487 .get_xclk = &soc21_get_xclk, 488 .set_uvd_clocks = &soc21_set_uvd_clocks, 489 .set_vce_clocks = &soc21_set_vce_clocks, 490 .get_config_memsize = &soc21_get_config_memsize, 491 .init_doorbell_index = &soc21_init_doorbell_index, 492 .need_full_reset = &soc21_need_full_reset, 493 .need_reset_on_init = &soc21_need_reset_on_init, 494 .get_pcie_replay_count = &soc21_get_pcie_replay_count, 495 .supports_baco = &amdgpu_dpm_is_baco_supported, 496 .pre_asic_init = &soc21_pre_asic_init, 497 .query_video_codecs = &soc21_query_video_codecs, 498 }; 499 500 static int soc21_common_early_init(void *handle) 501 { 502 #define MMIO_REG_HOLE_OFFSET (0x80000 - PAGE_SIZE) 503 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 504 505 adev->rmmio_remap.reg_offset = MMIO_REG_HOLE_OFFSET; 506 adev->rmmio_remap.bus_addr = adev->rmmio_base + MMIO_REG_HOLE_OFFSET; 507 adev->smc_rreg = NULL; 508 adev->smc_wreg = NULL; 509 adev->pcie_rreg = &soc21_pcie_rreg; 510 adev->pcie_wreg = &soc21_pcie_wreg; 511 adev->pcie_rreg64 = &soc21_pcie_rreg64; 512 adev->pcie_wreg64 = &soc21_pcie_wreg64; 513 514 /* TODO: will add them during VCN v2 implementation */ 515 adev->uvd_ctx_rreg = NULL; 516 adev->uvd_ctx_wreg = NULL; 517 518 adev->didt_rreg = &soc21_didt_rreg; 519 adev->didt_wreg = &soc21_didt_wreg; 520 521 adev->asic_funcs = &soc21_asic_funcs; 522 523 adev->rev_id = soc21_get_rev_id(adev); 524 adev->external_rev_id = 0xff; 525 switch (adev->ip_versions[GC_HWIP][0]) { 526 case IP_VERSION(11, 0, 0): 527 adev->cg_flags = AMD_CG_SUPPORT_GFX_CGCG | 528 AMD_CG_SUPPORT_GFX_CGLS | 529 AMD_CG_SUPPORT_GFX_3D_CGCG | 530 AMD_CG_SUPPORT_GFX_3D_CGLS | 531 AMD_CG_SUPPORT_GFX_MGCG | 532 AMD_CG_SUPPORT_REPEATER_FGCG | 533 AMD_CG_SUPPORT_GFX_FGCG | 534 AMD_CG_SUPPORT_GFX_PERF_CLK | 535 AMD_CG_SUPPORT_VCN_MGCG | 536 AMD_CG_SUPPORT_JPEG_MGCG | 537 AMD_CG_SUPPORT_ATHUB_MGCG | 538 AMD_CG_SUPPORT_ATHUB_LS | 539 AMD_CG_SUPPORT_MC_MGCG | 540 AMD_CG_SUPPORT_MC_LS | 541 AMD_CG_SUPPORT_IH_CG | 542 AMD_CG_SUPPORT_HDP_SD; 543 adev->pg_flags = AMD_PG_SUPPORT_VCN | 544 AMD_PG_SUPPORT_VCN_DPG | 545 AMD_PG_SUPPORT_JPEG | 546 AMD_PG_SUPPORT_ATHUB | 547 AMD_PG_SUPPORT_MMHUB; 548 adev->external_rev_id = adev->rev_id + 0x1; // TODO: need update 549 break; 550 case IP_VERSION(11, 0, 2): 551 adev->cg_flags = 0; 552 adev->pg_flags = 0; 553 adev->external_rev_id = adev->rev_id + 0x10; 554 break; 555 default: 556 /* FIXME: not supported yet */ 557 return -EINVAL; 558 } 559 560 return 0; 561 } 562 563 static int soc21_common_late_init(void *handle) 564 { 565 return 0; 566 } 567 568 static int soc21_common_sw_init(void *handle) 569 { 570 return 0; 571 } 572 573 static int soc21_common_sw_fini(void *handle) 574 { 575 return 0; 576 } 577 578 static int soc21_common_hw_init(void *handle) 579 { 580 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 581 582 /* enable pcie gen2/3 link */ 583 soc21_pcie_gen3_enable(adev); 584 /* enable aspm */ 585 soc21_program_aspm(adev); 586 /* setup nbio registers */ 587 adev->nbio.funcs->init_registers(adev); 588 /* remap HDP registers to a hole in mmio space, 589 * for the purpose of expose those registers 590 * to process space 591 */ 592 if (adev->nbio.funcs->remap_hdp_registers) 593 adev->nbio.funcs->remap_hdp_registers(adev); 594 /* enable the doorbell aperture */ 595 soc21_enable_doorbell_aperture(adev, true); 596 597 return 0; 598 } 599 600 static int soc21_common_hw_fini(void *handle) 601 { 602 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 603 604 /* disable the doorbell aperture */ 605 soc21_enable_doorbell_aperture(adev, false); 606 607 return 0; 608 } 609 610 static int soc21_common_suspend(void *handle) 611 { 612 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 613 614 return soc21_common_hw_fini(adev); 615 } 616 617 static int soc21_common_resume(void *handle) 618 { 619 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 620 621 return soc21_common_hw_init(adev); 622 } 623 624 static bool soc21_common_is_idle(void *handle) 625 { 626 return true; 627 } 628 629 static int soc21_common_wait_for_idle(void *handle) 630 { 631 return 0; 632 } 633 634 static int soc21_common_soft_reset(void *handle) 635 { 636 return 0; 637 } 638 639 static int soc21_common_set_clockgating_state(void *handle, 640 enum amd_clockgating_state state) 641 { 642 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 643 644 switch (adev->ip_versions[NBIO_HWIP][0]) { 645 case IP_VERSION(4, 3, 0): 646 adev->nbio.funcs->update_medium_grain_clock_gating(adev, 647 state == AMD_CG_STATE_GATE); 648 adev->nbio.funcs->update_medium_grain_light_sleep(adev, 649 state == AMD_CG_STATE_GATE); 650 adev->hdp.funcs->update_clock_gating(adev, 651 state == AMD_CG_STATE_GATE); 652 break; 653 default: 654 break; 655 } 656 return 0; 657 } 658 659 static int soc21_common_set_powergating_state(void *handle, 660 enum amd_powergating_state state) 661 { 662 /* TODO */ 663 return 0; 664 } 665 666 static void soc21_common_get_clockgating_state(void *handle, u64 *flags) 667 { 668 struct amdgpu_device *adev = (struct amdgpu_device *)handle; 669 670 adev->nbio.funcs->get_clockgating_state(adev, flags); 671 672 adev->hdp.funcs->get_clock_gating_state(adev, flags); 673 674 return; 675 } 676 677 static const struct amd_ip_funcs soc21_common_ip_funcs = { 678 .name = "soc21_common", 679 .early_init = soc21_common_early_init, 680 .late_init = soc21_common_late_init, 681 .sw_init = soc21_common_sw_init, 682 .sw_fini = soc21_common_sw_fini, 683 .hw_init = soc21_common_hw_init, 684 .hw_fini = soc21_common_hw_fini, 685 .suspend = soc21_common_suspend, 686 .resume = soc21_common_resume, 687 .is_idle = soc21_common_is_idle, 688 .wait_for_idle = soc21_common_wait_for_idle, 689 .soft_reset = soc21_common_soft_reset, 690 .set_clockgating_state = soc21_common_set_clockgating_state, 691 .set_powergating_state = soc21_common_set_powergating_state, 692 .get_clockgating_state = soc21_common_get_clockgating_state, 693 }; 694