@@ -1850,19 +1850,21 @@ static enum bp_result get_firmware_info_v3_2(
1850
1850
/* Vega12 */
1851
1851
smu_info_v3_2 = GET_IMAGE (struct atom_smu_info_v3_2 ,
1852
1852
DATA_TABLES (smu_info ));
1853
- DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , smu_info_v3_2 -> gpuclk_ss_percentage );
1854
1853
if (!smu_info_v3_2 )
1855
1854
return BP_RESULT_BADBIOSTABLE ;
1856
1855
1856
+ DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , smu_info_v3_2 -> gpuclk_ss_percentage );
1857
+
1857
1858
info -> default_engine_clk = smu_info_v3_2 -> bootup_dcefclk_10khz * 10 ;
1858
1859
} else if (revision .minor == 3 ) {
1859
1860
/* Vega20 */
1860
1861
smu_info_v3_3 = GET_IMAGE (struct atom_smu_info_v3_3 ,
1861
1862
DATA_TABLES (smu_info ));
1862
- DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , smu_info_v3_3 -> gpuclk_ss_percentage );
1863
1863
if (!smu_info_v3_3 )
1864
1864
return BP_RESULT_BADBIOSTABLE ;
1865
1865
1866
+ DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , smu_info_v3_3 -> gpuclk_ss_percentage );
1867
+
1866
1868
info -> default_engine_clk = smu_info_v3_3 -> bootup_dcefclk_10khz * 10 ;
1867
1869
}
1868
1870
@@ -2422,10 +2424,11 @@ static enum bp_result get_integrated_info_v11(
2422
2424
info_v11 = GET_IMAGE (struct atom_integrated_system_info_v1_11 ,
2423
2425
DATA_TABLES (integratedsysteminfo ));
2424
2426
2425
- DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v11 -> gpuclk_ss_percentage );
2426
2427
if (info_v11 == NULL )
2427
2428
return BP_RESULT_BADBIOSTABLE ;
2428
2429
2430
+ DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v11 -> gpuclk_ss_percentage );
2431
+
2429
2432
info -> gpu_cap_info =
2430
2433
le32_to_cpu (info_v11 -> gpucapinfo );
2431
2434
/*
@@ -2637,11 +2640,12 @@ static enum bp_result get_integrated_info_v2_1(
2637
2640
2638
2641
info_v2_1 = GET_IMAGE (struct atom_integrated_system_info_v2_1 ,
2639
2642
DATA_TABLES (integratedsysteminfo ));
2640
- DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v2_1 -> gpuclk_ss_percentage );
2641
2643
2642
2644
if (info_v2_1 == NULL )
2643
2645
return BP_RESULT_BADBIOSTABLE ;
2644
2646
2647
+ DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v2_1 -> gpuclk_ss_percentage );
2648
+
2645
2649
info -> gpu_cap_info =
2646
2650
le32_to_cpu (info_v2_1 -> gpucapinfo );
2647
2651
/*
@@ -2799,11 +2803,11 @@ static enum bp_result get_integrated_info_v2_2(
2799
2803
info_v2_2 = GET_IMAGE (struct atom_integrated_system_info_v2_2 ,
2800
2804
DATA_TABLES (integratedsysteminfo ));
2801
2805
2802
- DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v2_2 -> gpuclk_ss_percentage );
2803
-
2804
2806
if (info_v2_2 == NULL )
2805
2807
return BP_RESULT_BADBIOSTABLE ;
2806
2808
2809
+ DC_LOG_BIOS ("gpuclk_ss_percentage (unit of 0.001 percent): %d\n" , info_v2_2 -> gpuclk_ss_percentage );
2810
+
2807
2811
info -> gpu_cap_info =
2808
2812
le32_to_cpu (info_v2_2 -> gpucapinfo );
2809
2813
/*
0 commit comments