diff options
author | Ville Syrjälä <[email protected]> | 2022-07-15 23:20:36 +0300 |
---|---|---|
committer | Ville Syrjälä <[email protected]> | 2022-09-05 15:15:25 +0300 |
commit | d48596f3ef2c0aa2ce7a106dd5ed99045d4ae377 (patch) | |
tree | ce08b891b11b461306d92e9a3260848814bffd12 | |
parent | f04b1d91aeec5f981b3a8f10b7321fed544d68d6 (diff) |
drm/i915: Define VBT eDP/DP max lane count bits
Since version 244 the VBT can llimt the eDP/DP max lane count.
Add the bits.
Signed-off-by: Ville Syrjälä <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Reviewed-by: Jani Nikula <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_vbt_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h b/drivers/gpu/drm/i915/display/intel_vbt_defs.h index 5b05cb0b6ba7..68a89f27e957 100644 --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h +++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h @@ -438,7 +438,7 @@ struct child_device_config { u8 iboost:1; /* 196+ */ u8 hpd_invert:1; /* 196+ */ u8 use_vbt_vswing:1; /* 218+ */ - u8 flag_reserved:2; + u8 dp_max_lane_count:2; /* 244+ */ u8 hdmi_support:1; /* 158+ */ u8 dp_support:1; /* 158+ */ u8 tmds_support:1; /* 158+ */ |