diff options
author | Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> | 2020-11-13 23:04:54 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-11-16 20:17:43 +0300 |
commit | 5fe6b98ae00dc2e0ac24ef8a45d828b82a4aae90 (patch) | |
tree | f306ce1ce3d7658ae0e1e85e7d45e170b4ef69f8 /drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h | |
parent | b3fcde184e5047debe5d4e07396b5bb054aa1159 (diff) | |
download | linux-5fe6b98ae00dc2e0ac24ef8a45d828b82a4aae90.tar.xz |
drm/amd/display: Update dmub code
There is a delta in the dmub code
- add boot options
- add boot status
- remove unused auto_load_is_done func pointer
Signed-off-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Reviewed-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h')
-rw-r--r-- | drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h index b0d1347d13f0..9fd24f93a216 100644 --- a/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h +++ b/drivers/gpu/drm/amd/display/dmub/inc/dmub_cmd.h @@ -191,7 +191,8 @@ union dmub_fw_boot_options { uint32_t optimized_init : 1; uint32_t skip_phy_access : 1; uint32_t disable_clk_gate: 1; - uint32_t reserved : 27; + uint32_t skip_phy_init_panel_sequence: 1; + uint32_t reserved : 26; } bits; uint32_t all; }; |