projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33747cc
)
drm/i915: remove HBR2 from chv supported list
author
Thulasimani,Sivakumar
<
[email protected]
>
Tue, 18 Aug 2015 05:37:57 +0000
(11:07 +0530)
committer
Jani Nikula
<
[email protected]
>
Wed, 19 Aug 2015 08:06:26 +0000
(11:06 +0300)
This patch removes 5.4Gbps from supported link rate for CHV since
it is not supported in it.
v2: change the ordering for better readability (Ville)
Cc:
[email protected]
# v4.1+
Reviewed-by: Ville Syrjälä <
[email protected]
>
Signed-off-by: Sivakumar Thulasimani <
[email protected]
>
Signed-off-by: Jani Nikula <
[email protected]
>
drivers/gpu/drm/i915/intel_dp.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_dp.c
b/drivers/gpu/drm/i915/intel_dp.c
index 6c8bf34ab16a35fcdfef8db5526658f3a575de5e..7ad0e0b5019d29d0df49cbd3a1006e8e187d9edf 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_dp.c
+++ b/
drivers/gpu/drm/i915/intel_dp.c
@@
-1176,11
+1176,12
@@
intel_dp_source_rates(struct drm_device *dev, const int **source_rates)
*source_rates = default_rates;
+ /* WaDisableHBR2:skl */
if (IS_SKYLAKE(dev) && INTEL_REVID(dev) <= SKL_REVID_B0)
- /* WaDisableHBR2:skl */
return (DP_LINK_BW_2_7 >> 3) + 1;
- else if (INTEL_INFO(dev)->gen >= 8 ||
- (IS_HASWELL(dev) && !IS_HSW_ULX(dev)))
+
+ if ((IS_HASWELL(dev) && !IS_HSW_ULX(dev)) || IS_BROADWELL(dev) ||
+ (INTEL_INFO(dev)->gen >= 9))
return (DP_LINK_BW_5_4 >> 3) + 1;
else
return (DP_LINK_BW_2_7 >> 3) + 1;