mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 17:54:13 +08:00
drm/radeon/kms/rv100: reject modes > 135 Mhz on DVI (v2)
Due to heat issues. Fixes fdo bug 25992 v2: fix typo noticed by Maarten Maathuis Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
b042589ca0
commit
1b24203e51
@ -900,10 +900,18 @@ static void radeon_dvi_force(struct drm_connector *connector)
|
|||||||
static int radeon_dvi_mode_valid(struct drm_connector *connector,
|
static int radeon_dvi_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
struct drm_device *dev = connector->dev;
|
||||||
|
struct radeon_device *rdev = dev->dev_private;
|
||||||
struct radeon_connector *radeon_connector = to_radeon_connector(connector);
|
struct radeon_connector *radeon_connector = to_radeon_connector(connector);
|
||||||
|
|
||||||
/* XXX check mode bandwidth */
|
/* XXX check mode bandwidth */
|
||||||
|
|
||||||
|
/* clocks over 135 MHz have heat issues with DVI on RV100 */
|
||||||
|
if (radeon_connector->use_digital &&
|
||||||
|
(rdev->family == CHIP_RV100) &&
|
||||||
|
(mode->clock > 135000))
|
||||||
|
return MODE_CLOCK_HIGH;
|
||||||
|
|
||||||
if (radeon_connector->use_digital && (mode->clock > 165000)) {
|
if (radeon_connector->use_digital && (mode->clock > 165000)) {
|
||||||
if ((radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I) ||
|
if ((radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I) ||
|
||||||
(radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D) ||
|
(radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user