drm/amdgpu: update atom_firmware_info_v3_4 (v2)
authorFeifei Xu <Feifei.Xu@amd.com>
Tue, 8 Dec 2020 15:51:40 +0000 (23:51 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 24 Mar 2021 02:56:01 +0000 (22:56 -0400)
v1: Added some pspbl parameters
v2: fix fallthrough issue

Signed-off-by: Feifei Xu <Feifei.Xu@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Reviewed-by: Kevin Wang <kevin1.wang@amd.com>
Reviewed-by: Lazar Lijo <Lijo.Lazar@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/include/atomfirmware.h
drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0.c

index ec43a4f..1c0034d 100644 (file)
@@ -596,7 +596,10 @@ struct atom_firmware_info_v3_4 {
        uint32_t maco_pwrlimit_mw;                // bomaco mode power limit in unit of m-watt
        uint32_t usb_pwrlimit_mw;                 // power limit when USB is enable in unit of m-watt
        uint32_t fw_reserved_size_in_kb;          // VBIOS reserved extra fw size in unit of kb.
-       uint32_t reserved[5];
+        uint32_t pspbl_init_done_reg_addr;
+        uint32_t pspbl_init_done_value;
+        uint32_t pspbl_init_done_check_timeout;   // time out in unit of us when polling pspbl init done
+        uint32_t reserved[2];
 };
 
 /* 
index 0db4f15..7589cfe 100644 (file)
@@ -508,6 +508,7 @@ int smu_v13_0_get_vbios_bootup_values(struct smu_context *smu)
                smu->smu_table.boot_values.vdd_gfx = v_3_3->bootup_vddgfx_mv;
                smu->smu_table.boot_values.cooling_id = v_3_3->coolingsolution_id;
                smu->smu_table.boot_values.pp_table_id = v_3_3->pplib_pptable_id;
+               break;
        case 4:
        default:
                v_3_4 = (struct atom_firmware_info_v3_4 *)header;
@@ -522,6 +523,7 @@ int smu_v13_0_get_vbios_bootup_values(struct smu_context *smu)
                smu->smu_table.boot_values.vdd_gfx = v_3_4->bootup_vddgfx_mv;
                smu->smu_table.boot_values.cooling_id = v_3_4->coolingsolution_id;
                smu->smu_table.boot_values.pp_table_id = v_3_4->pplib_pptable_id;
+               break;
        }
 
        smu->smu_table.boot_values.format_revision = header->format_revision;