2 * Copyright 2016 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include <drm/amdgpu_drm.h>
26 #include "atomfirmware.h"
27 #include "amdgpu_atomfirmware.h"
30 #include "soc15_hw_ip.h"
33 struct atom_firmware_info_v3_1 v31;
34 struct atom_firmware_info_v3_2 v32;
35 struct atom_firmware_info_v3_3 v33;
36 struct atom_firmware_info_v3_4 v34;
40 * Helper function to query firmware capability
42 * @adev: amdgpu_device pointer
44 * Return firmware_capability in firmwareinfo table on success or 0 if not
46 uint32_t amdgpu_atomfirmware_query_firmware_capability(struct amdgpu_device *adev)
48 struct amdgpu_mode_info *mode_info = &adev->mode_info;
50 u16 data_offset, size;
51 union firmware_info *firmware_info;
55 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
58 if (amdgpu_atom_parse_data_header(adev->mode_info.atom_context,
59 index, &size, &frev, &crev, &data_offset)) {
60 /* support firmware_info 3.1 + */
61 if ((frev == 3 && crev >=1) || (frev > 3)) {
62 firmware_info = (union firmware_info *)
63 (mode_info->atom_context->bios + data_offset);
64 fw_cap = le32_to_cpu(firmware_info->v31.firmware_capability);
72 * Helper function to query gpu virtualizaiton capability
74 * @adev: amdgpu_device pointer
76 * Return true if gpu virtualization is supported or false if not
78 bool amdgpu_atomfirmware_gpu_virtualization_supported(struct amdgpu_device *adev)
82 fw_cap = adev->mode_info.firmware_flags;
84 return (fw_cap & ATOM_FIRMWARE_CAP_GPU_VIRTUALIZATION) ? true : false;
87 void amdgpu_atomfirmware_scratch_regs_init(struct amdgpu_device *adev)
89 int index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
93 if (amdgpu_atom_parse_data_header(adev->mode_info.atom_context, index, NULL,
94 NULL, NULL, &data_offset)) {
95 struct atom_firmware_info_v3_1 *firmware_info =
96 (struct atom_firmware_info_v3_1 *)(adev->mode_info.atom_context->bios +
99 adev->bios_scratch_reg_offset =
100 le32_to_cpu(firmware_info->bios_scratch_reg_startaddr);
104 int amdgpu_atomfirmware_allocate_fb_scratch(struct amdgpu_device *adev)
106 struct atom_context *ctx = adev->mode_info.atom_context;
107 int index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
108 vram_usagebyfirmware);
109 struct vram_usagebyfirmware_v2_1 *firmware_usage;
110 uint32_t start_addr, size;
111 uint16_t data_offset;
114 if (amdgpu_atom_parse_data_header(ctx, index, NULL, NULL, NULL, &data_offset)) {
115 firmware_usage = (struct vram_usagebyfirmware_v2_1 *)(ctx->bios + data_offset);
116 DRM_DEBUG("atom firmware requested %08x %dkb fw %dkb drv\n",
117 le32_to_cpu(firmware_usage->start_address_in_kb),
118 le16_to_cpu(firmware_usage->used_by_firmware_in_kb),
119 le16_to_cpu(firmware_usage->used_by_driver_in_kb));
121 start_addr = le32_to_cpu(firmware_usage->start_address_in_kb);
122 size = le16_to_cpu(firmware_usage->used_by_firmware_in_kb);
124 if ((uint32_t)(start_addr & ATOM_VRAM_OPERATION_FLAGS_MASK) ==
125 (uint32_t)(ATOM_VRAM_BLOCK_SRIOV_MSG_SHARE_RESERVATION <<
126 ATOM_VRAM_OPERATION_FLAGS_SHIFT)) {
127 /* Firmware request VRAM reservation for SR-IOV */
128 adev->mman.fw_vram_usage_start_offset = (start_addr &
129 (~ATOM_VRAM_OPERATION_FLAGS_MASK)) << 10;
130 adev->mman.fw_vram_usage_size = size << 10;
131 /* Use the default scratch size */
134 usage_bytes = le16_to_cpu(firmware_usage->used_by_driver_in_kb) << 10;
137 ctx->scratch_size_bytes = 0;
138 if (usage_bytes == 0)
139 usage_bytes = 20 * 1024;
140 /* allocate some scratch memory */
141 ctx->scratch = kzalloc(usage_bytes, GFP_KERNEL);
144 ctx->scratch_size_bytes = usage_bytes;
149 struct atom_integrated_system_info_v1_11 v11;
150 struct atom_integrated_system_info_v1_12 v12;
151 struct atom_integrated_system_info_v2_1 v21;
155 struct atom_umc_info_v3_1 v31;
156 struct atom_umc_info_v3_2 v32;
157 struct atom_umc_info_v3_3 v33;
161 struct atom_vram_info_header_v2_3 v23;
162 struct atom_vram_info_header_v2_4 v24;
163 struct atom_vram_info_header_v2_5 v25;
164 struct atom_vram_info_header_v2_6 v26;
165 struct atom_vram_info_header_v3_0 v30;
169 struct atom_vram_module_v9 v9;
170 struct atom_vram_module_v10 v10;
171 struct atom_vram_module_v11 v11;
172 struct atom_vram_module_v3_0 v30;
175 static int convert_atom_mem_type_to_vram_type(struct amdgpu_device *adev,
180 if (adev->flags & AMD_IS_APU) {
181 switch (atom_mem_type) {
184 vram_type = AMDGPU_VRAM_TYPE_DDR2;
188 vram_type = AMDGPU_VRAM_TYPE_DDR3;
192 vram_type = AMDGPU_VRAM_TYPE_DDR4;
196 vram_type = AMDGPU_VRAM_TYPE_DDR5;
199 vram_type = AMDGPU_VRAM_TYPE_UNKNOWN;
203 switch (atom_mem_type) {
204 case ATOM_DGPU_VRAM_TYPE_GDDR5:
205 vram_type = AMDGPU_VRAM_TYPE_GDDR5;
207 case ATOM_DGPU_VRAM_TYPE_HBM2:
208 case ATOM_DGPU_VRAM_TYPE_HBM2E:
209 vram_type = AMDGPU_VRAM_TYPE_HBM;
211 case ATOM_DGPU_VRAM_TYPE_GDDR6:
212 vram_type = AMDGPU_VRAM_TYPE_GDDR6;
215 vram_type = AMDGPU_VRAM_TYPE_UNKNOWN;
225 amdgpu_atomfirmware_get_vram_info(struct amdgpu_device *adev,
226 int *vram_width, int *vram_type,
229 struct amdgpu_mode_info *mode_info = &adev->mode_info;
231 u16 data_offset, size;
232 union igp_info *igp_info;
233 union vram_info *vram_info;
234 union vram_module *vram_module;
238 u32 mem_channel_number;
239 u32 mem_channel_width;
242 if (adev->flags & AMD_IS_APU)
243 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
244 integratedsysteminfo);
246 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
249 if (amdgpu_atom_parse_data_header(mode_info->atom_context,
251 &frev, &crev, &data_offset)) {
252 if (adev->flags & AMD_IS_APU) {
253 igp_info = (union igp_info *)
254 (mode_info->atom_context->bios + data_offset);
260 mem_channel_number = igp_info->v11.umachannelnumber;
261 if (!mem_channel_number)
262 mem_channel_number = 1;
263 /* channel width is 64 */
265 *vram_width = mem_channel_number * 64;
266 mem_type = igp_info->v11.memorytype;
268 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
278 mem_channel_number = igp_info->v21.umachannelnumber;
279 if (!mem_channel_number)
280 mem_channel_number = 1;
281 /* channel width is 64 */
283 *vram_width = mem_channel_number * 64;
284 mem_type = igp_info->v21.memorytype;
286 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
296 vram_info = (union vram_info *)
297 (mode_info->atom_context->bios + data_offset);
298 module_id = (RREG32(adev->bios_scratch_reg_offset + 4) & 0x00ff0000) >> 16;
303 vram_module = (union vram_module *)vram_info->v30.vram_module;
304 mem_vendor = (vram_module->v30.dram_vendor_id) & 0xF;
306 *vram_vendor = mem_vendor;
307 mem_type = vram_info->v30.memory_type;
309 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
310 mem_channel_number = vram_info->v30.channel_num;
311 mem_channel_width = vram_info->v30.channel_width;
313 *vram_width = mem_channel_number * mem_channel_width;
318 } else if (frev == 2) {
322 if (module_id > vram_info->v23.vram_module_num)
324 vram_module = (union vram_module *)vram_info->v23.vram_module;
325 while (i < module_id) {
326 vram_module = (union vram_module *)
327 ((u8 *)vram_module + vram_module->v9.vram_module_size);
330 mem_type = vram_module->v9.memory_type;
332 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
333 mem_channel_number = vram_module->v9.channel_num;
334 mem_channel_width = vram_module->v9.channel_width;
336 *vram_width = mem_channel_number * (1 << mem_channel_width);
337 mem_vendor = (vram_module->v9.vender_rev_id) & 0xF;
339 *vram_vendor = mem_vendor;
343 if (module_id > vram_info->v24.vram_module_num)
345 vram_module = (union vram_module *)vram_info->v24.vram_module;
346 while (i < module_id) {
347 vram_module = (union vram_module *)
348 ((u8 *)vram_module + vram_module->v10.vram_module_size);
351 mem_type = vram_module->v10.memory_type;
353 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
354 mem_channel_number = vram_module->v10.channel_num;
355 mem_channel_width = vram_module->v10.channel_width;
357 *vram_width = mem_channel_number * (1 << mem_channel_width);
358 mem_vendor = (vram_module->v10.vender_rev_id) & 0xF;
360 *vram_vendor = mem_vendor;
364 if (module_id > vram_info->v25.vram_module_num)
366 vram_module = (union vram_module *)vram_info->v25.vram_module;
367 while (i < module_id) {
368 vram_module = (union vram_module *)
369 ((u8 *)vram_module + vram_module->v11.vram_module_size);
372 mem_type = vram_module->v11.memory_type;
374 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
375 mem_channel_number = vram_module->v11.channel_num;
376 mem_channel_width = vram_module->v11.channel_width;
378 *vram_width = mem_channel_number * (1 << mem_channel_width);
379 mem_vendor = (vram_module->v11.vender_rev_id) & 0xF;
381 *vram_vendor = mem_vendor;
385 if (module_id > vram_info->v26.vram_module_num)
387 vram_module = (union vram_module *)vram_info->v26.vram_module;
388 while (i < module_id) {
389 vram_module = (union vram_module *)
390 ((u8 *)vram_module + vram_module->v9.vram_module_size);
393 mem_type = vram_module->v9.memory_type;
395 *vram_type = convert_atom_mem_type_to_vram_type(adev, mem_type);
396 mem_channel_number = vram_module->v9.channel_num;
397 mem_channel_width = vram_module->v9.channel_width;
399 *vram_width = mem_channel_number * (1 << mem_channel_width);
400 mem_vendor = (vram_module->v9.vender_rev_id) & 0xF;
402 *vram_vendor = mem_vendor;
419 * Return true if vbios enabled ecc by default, if umc info table is available
420 * or false if ecc is not enabled or umc info table is not available
422 bool amdgpu_atomfirmware_mem_ecc_supported(struct amdgpu_device *adev)
424 struct amdgpu_mode_info *mode_info = &adev->mode_info;
426 u16 data_offset, size;
427 union umc_info *umc_info;
429 bool ecc_default_enabled = false;
433 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
436 if (amdgpu_atom_parse_data_header(mode_info->atom_context,
437 index, &size, &frev, &crev, &data_offset)) {
439 umc_info = (union umc_info *)
440 (mode_info->atom_context->bios + data_offset);
443 umc_config = le32_to_cpu(umc_info->v31.umc_config);
444 ecc_default_enabled =
445 (umc_config & UMC_CONFIG__DEFAULT_MEM_ECC_ENABLE) ? true : false;
448 umc_config = le32_to_cpu(umc_info->v32.umc_config);
449 ecc_default_enabled =
450 (umc_config & UMC_CONFIG__DEFAULT_MEM_ECC_ENABLE) ? true : false;
453 umc_config = le32_to_cpu(umc_info->v33.umc_config);
454 umc_config1 = le32_to_cpu(umc_info->v33.umc_config1);
455 ecc_default_enabled =
456 ((umc_config & UMC_CONFIG__DEFAULT_MEM_ECC_ENABLE) ||
457 (umc_config1 & UMC_CONFIG1__ENABLE_ECC_CAPABLE)) ? true : false;
460 /* unsupported crev */
466 return ecc_default_enabled;
470 * Helper function to query sram ecc capablity
472 * @adev: amdgpu_device pointer
474 * Return true if vbios supports sram ecc or false if not
476 bool amdgpu_atomfirmware_sram_ecc_supported(struct amdgpu_device *adev)
480 fw_cap = adev->mode_info.firmware_flags;
482 return (fw_cap & ATOM_FIRMWARE_CAP_SRAM_ECC) ? true : false;
486 * Helper function to query dynamic boot config capability
488 * @adev: amdgpu_device pointer
490 * Return true if vbios supports dynamic boot config or false if not
492 bool amdgpu_atomfirmware_dynamic_boot_config_supported(struct amdgpu_device *adev)
496 fw_cap = adev->mode_info.firmware_flags;
498 return (fw_cap & ATOM_FIRMWARE_CAP_DYNAMIC_BOOT_CFG_ENABLE) ? true : false;
502 * amdgpu_atomfirmware_ras_rom_addr -- Get the RAS EEPROM addr from VBIOS
503 * @adev: amdgpu_device pointer
504 * @i2c_address: pointer to u8; if not NULL, will contain
505 * the RAS EEPROM address if the function returns true
507 * Return true if VBIOS supports RAS EEPROM address reporting,
508 * else return false. If true and @i2c_address is not NULL,
509 * will contain the RAS ROM address.
511 bool amdgpu_atomfirmware_ras_rom_addr(struct amdgpu_device *adev,
514 struct amdgpu_mode_info *mode_info = &adev->mode_info;
516 u16 data_offset, size;
517 union firmware_info *firmware_info;
520 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
523 if (amdgpu_atom_parse_data_header(adev->mode_info.atom_context,
524 index, &size, &frev, &crev,
526 /* support firmware_info 3.4 + */
527 if ((frev == 3 && crev >=4) || (frev > 3)) {
528 firmware_info = (union firmware_info *)
529 (mode_info->atom_context->bios + data_offset);
530 /* The ras_rom_i2c_slave_addr should ideally
531 * be a 19-bit EEPROM address, which would be
532 * used as is by the driver; see top of
535 * When this is the case, 0 is of course a
536 * valid RAS EEPROM address, in which case,
537 * we'll drop the first "if (firm...)" and only
538 * leave the check for the pointer.
540 * The reason this works right now is because
541 * ras_rom_i2c_slave_addr contains the EEPROM
542 * device type qualifier 1010b in the top 4
545 if (firmware_info->v34.ras_rom_i2c_slave_addr) {
547 *i2c_address = firmware_info->v34.ras_rom_i2c_slave_addr;
558 struct atom_smu_info_v3_1 v31;
562 struct atom_gfx_info_v2_2 v22;
563 struct atom_gfx_info_v2_4 v24;
564 struct atom_gfx_info_v2_7 v27;
565 struct atom_gfx_info_v3_0 v30;
568 int amdgpu_atomfirmware_get_clock_info(struct amdgpu_device *adev)
570 struct amdgpu_mode_info *mode_info = &adev->mode_info;
571 struct amdgpu_pll *spll = &adev->clock.spll;
572 struct amdgpu_pll *mpll = &adev->clock.mpll;
574 uint16_t data_offset;
575 int ret = -EINVAL, index;
577 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
579 if (amdgpu_atom_parse_data_header(mode_info->atom_context, index, NULL,
580 &frev, &crev, &data_offset)) {
581 union firmware_info *firmware_info =
582 (union firmware_info *)(mode_info->atom_context->bios +
585 adev->clock.default_sclk =
586 le32_to_cpu(firmware_info->v31.bootup_sclk_in10khz);
587 adev->clock.default_mclk =
588 le32_to_cpu(firmware_info->v31.bootup_mclk_in10khz);
590 adev->pm.current_sclk = adev->clock.default_sclk;
591 adev->pm.current_mclk = adev->clock.default_mclk;
596 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
598 if (amdgpu_atom_parse_data_header(mode_info->atom_context, index, NULL,
599 &frev, &crev, &data_offset)) {
600 union smu_info *smu_info =
601 (union smu_info *)(mode_info->atom_context->bios +
605 spll->reference_freq = le32_to_cpu(smu_info->v31.core_refclk_10khz);
607 spll->reference_div = 0;
608 spll->min_post_div = 1;
609 spll->max_post_div = 1;
610 spll->min_ref_div = 2;
611 spll->max_ref_div = 0xff;
612 spll->min_feedback_div = 4;
613 spll->max_feedback_div = 0xff;
619 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
621 if (amdgpu_atom_parse_data_header(mode_info->atom_context, index, NULL,
622 &frev, &crev, &data_offset)) {
623 union umc_info *umc_info =
624 (union umc_info *)(mode_info->atom_context->bios +
628 mpll->reference_freq = le32_to_cpu(umc_info->v31.mem_refclk_10khz);
630 mpll->reference_div = 0;
631 mpll->min_post_div = 1;
632 mpll->max_post_div = 1;
633 mpll->min_ref_div = 2;
634 mpll->max_ref_div = 0xff;
635 mpll->min_feedback_div = 4;
636 mpll->max_feedback_div = 0xff;
642 /* if asic is Navi+, the rlc reference clock is used for system clock
643 * from vbios gfx_info table */
644 if (adev->asic_type >= CHIP_NAVI10) {
645 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
647 if (amdgpu_atom_parse_data_header(mode_info->atom_context, index, NULL,
648 &frev, &crev, &data_offset)) {
649 union gfx_info *gfx_info = (union gfx_info *)
650 (mode_info->atom_context->bios + data_offset);
652 (frev == 2 && crev == 6)) {
653 spll->reference_freq = le32_to_cpu(gfx_info->v30.golden_tsc_count_lower_refclk);
655 } else if ((frev == 2) &&
658 spll->reference_freq = le32_to_cpu(gfx_info->v22.rlc_gpu_timer_refclk);
669 int amdgpu_atomfirmware_get_gfx_info(struct amdgpu_device *adev)
671 struct amdgpu_mode_info *mode_info = &adev->mode_info;
674 uint16_t data_offset;
676 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
678 if (amdgpu_atom_parse_data_header(mode_info->atom_context, index, NULL,
679 &frev, &crev, &data_offset)) {
680 union gfx_info *gfx_info = (union gfx_info *)
681 (mode_info->atom_context->bios + data_offset);
685 adev->gfx.config.max_shader_engines = gfx_info->v24.max_shader_engines;
686 adev->gfx.config.max_cu_per_sh = gfx_info->v24.max_cu_per_sh;
687 adev->gfx.config.max_sh_per_se = gfx_info->v24.max_sh_per_se;
688 adev->gfx.config.max_backends_per_se = gfx_info->v24.max_backends_per_se;
689 adev->gfx.config.max_texture_channel_caches = gfx_info->v24.max_texture_channel_caches;
690 adev->gfx.config.max_gprs = le16_to_cpu(gfx_info->v24.gc_num_gprs);
691 adev->gfx.config.max_gs_threads = gfx_info->v24.gc_num_max_gs_thds;
692 adev->gfx.config.gs_vgt_table_depth = gfx_info->v24.gc_gs_table_depth;
693 adev->gfx.config.gs_prim_buffer_depth =
694 le16_to_cpu(gfx_info->v24.gc_gsprim_buff_depth);
695 adev->gfx.config.double_offchip_lds_buf =
696 gfx_info->v24.gc_double_offchip_lds_buffer;
697 adev->gfx.cu_info.wave_front_size = le16_to_cpu(gfx_info->v24.gc_wave_size);
698 adev->gfx.cu_info.max_waves_per_simd = le16_to_cpu(gfx_info->v24.gc_max_waves_per_simd);
699 adev->gfx.cu_info.max_scratch_slots_per_cu = gfx_info->v24.gc_max_scratch_slots_per_cu;
700 adev->gfx.cu_info.lds_size = le16_to_cpu(gfx_info->v24.gc_lds_size);
703 adev->gfx.config.max_shader_engines = gfx_info->v27.max_shader_engines;
704 adev->gfx.config.max_cu_per_sh = gfx_info->v27.max_cu_per_sh;
705 adev->gfx.config.max_sh_per_se = gfx_info->v27.max_sh_per_se;
706 adev->gfx.config.max_backends_per_se = gfx_info->v27.max_backends_per_se;
707 adev->gfx.config.max_texture_channel_caches = gfx_info->v27.max_texture_channel_caches;
708 adev->gfx.config.max_gprs = le16_to_cpu(gfx_info->v27.gc_num_gprs);
709 adev->gfx.config.max_gs_threads = gfx_info->v27.gc_num_max_gs_thds;
710 adev->gfx.config.gs_vgt_table_depth = gfx_info->v27.gc_gs_table_depth;
711 adev->gfx.config.gs_prim_buffer_depth = le16_to_cpu(gfx_info->v27.gc_gsprim_buff_depth);
712 adev->gfx.config.double_offchip_lds_buf = gfx_info->v27.gc_double_offchip_lds_buffer;
713 adev->gfx.cu_info.wave_front_size = le16_to_cpu(gfx_info->v27.gc_wave_size);
714 adev->gfx.cu_info.max_waves_per_simd = le16_to_cpu(gfx_info->v27.gc_max_waves_per_simd);
715 adev->gfx.cu_info.max_scratch_slots_per_cu = gfx_info->v27.gc_max_scratch_slots_per_cu;
716 adev->gfx.cu_info.lds_size = le16_to_cpu(gfx_info->v27.gc_lds_size);
721 } else if (frev == 3) {
724 adev->gfx.config.max_shader_engines = gfx_info->v30.max_shader_engines;
725 adev->gfx.config.max_cu_per_sh = gfx_info->v30.max_cu_per_sh;
726 adev->gfx.config.max_sh_per_se = gfx_info->v30.max_sh_per_se;
727 adev->gfx.config.max_backends_per_se = gfx_info->v30.max_backends_per_se;
728 adev->gfx.config.max_texture_channel_caches = gfx_info->v30.max_texture_channel_caches;
742 * Helper function to query two stage mem training capability
744 * @adev: amdgpu_device pointer
746 * Return true if two stage mem training is supported or false if not
748 bool amdgpu_atomfirmware_mem_training_supported(struct amdgpu_device *adev)
752 fw_cap = adev->mode_info.firmware_flags;
754 return (fw_cap & ATOM_FIRMWARE_CAP_ENABLE_2STAGE_BIST_TRAINING) ? true : false;
757 int amdgpu_atomfirmware_get_fw_reserved_fb_size(struct amdgpu_device *adev)
759 struct atom_context *ctx = adev->mode_info.atom_context;
760 union firmware_info *firmware_info;
762 u16 data_offset, size;
764 int fw_reserved_fb_size;
766 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
769 if (!amdgpu_atom_parse_data_header(ctx, index, &size,
770 &frev, &crev, &data_offset))
771 /* fail to parse data_header */
774 firmware_info = (union firmware_info *)(ctx->bios + data_offset);
781 fw_reserved_fb_size =
782 (firmware_info->v34.fw_reserved_size_in_kb << 10);
785 fw_reserved_fb_size = 0;
789 return fw_reserved_fb_size;
793 * Helper function to execute asic_init table
795 * @adev: amdgpu_device pointer
796 * @fb_reset: flag to indicate whether fb is reset or not
798 * Return 0 if succeed, otherwise failed
800 int amdgpu_atomfirmware_asic_init(struct amdgpu_device *adev, bool fb_reset)
802 struct amdgpu_mode_info *mode_info = &adev->mode_info;
803 struct atom_context *ctx;
805 uint16_t data_offset;
806 uint32_t bootup_sclk_in10khz, bootup_mclk_in10khz;
807 struct asic_init_ps_allocation_v2_1 asic_init_ps_v2_1;
813 ctx = mode_info->atom_context;
817 /* query bootup sclk/mclk from firmware_info table */
818 index = get_index_into_master_table(atom_master_list_of_data_tables_v2_1,
820 if (amdgpu_atom_parse_data_header(ctx, index, NULL,
821 &frev, &crev, &data_offset)) {
822 union firmware_info *firmware_info =
823 (union firmware_info *)(ctx->bios +
826 bootup_sclk_in10khz =
827 le32_to_cpu(firmware_info->v31.bootup_sclk_in10khz);
828 bootup_mclk_in10khz =
829 le32_to_cpu(firmware_info->v31.bootup_mclk_in10khz);
834 index = get_index_into_master_table(atom_master_list_of_command_functions_v2_1,
836 if (amdgpu_atom_parse_cmd_header(mode_info->atom_context, index, &frev, &crev)) {
837 if (frev == 2 && crev >= 1) {
838 memset(&asic_init_ps_v2_1, 0, sizeof(asic_init_ps_v2_1));
839 asic_init_ps_v2_1.param.engineparam.sclkfreqin10khz = bootup_sclk_in10khz;
840 asic_init_ps_v2_1.param.memparam.mclkfreqin10khz = bootup_mclk_in10khz;
841 asic_init_ps_v2_1.param.engineparam.engineflag = b3NORMAL_ENGINE_INIT;
843 asic_init_ps_v2_1.param.memparam.memflag = b3DRAM_SELF_REFRESH_EXIT;
845 asic_init_ps_v2_1.param.memparam.memflag = 0;
853 return amdgpu_atom_execute_table(ctx, ATOM_CMD_INIT, (uint32_t *)&asic_init_ps_v2_1);