|
@@ -307,8 +307,6 @@ void radeon_panel_mode_fixup(struct drm_encoder *encoder,
|
|
bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
|
|
bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
|
|
u32 pixel_clock)
|
|
u32 pixel_clock)
|
|
{
|
|
{
|
|
- struct drm_device *dev = encoder->dev;
|
|
|
|
- struct radeon_device *rdev = dev->dev_private;
|
|
|
|
struct drm_connector *connector;
|
|
struct drm_connector *connector;
|
|
struct radeon_connector *radeon_connector;
|
|
struct radeon_connector *radeon_connector;
|
|
struct radeon_connector_atom_dig *dig_connector;
|
|
struct radeon_connector_atom_dig *dig_connector;
|
|
@@ -326,7 +324,7 @@ bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
|
|
case DRM_MODE_CONNECTOR_HDMIB:
|
|
case DRM_MODE_CONNECTOR_HDMIB:
|
|
if (radeon_connector->use_digital) {
|
|
if (radeon_connector->use_digital) {
|
|
/* HDMI 1.3 supports up to 340 Mhz over single link */
|
|
/* HDMI 1.3 supports up to 340 Mhz over single link */
|
|
- if (ASIC_IS_DCE3(rdev) && drm_detect_hdmi_monitor(radeon_connector->edid)) {
|
|
|
|
|
|
+ if (0 && drm_detect_hdmi_monitor(radeon_connector->edid)) {
|
|
if (pixel_clock > 340000)
|
|
if (pixel_clock > 340000)
|
|
return true;
|
|
return true;
|
|
else
|
|
else
|
|
@@ -348,7 +346,7 @@ bool radeon_dig_monitor_is_duallink(struct drm_encoder *encoder,
|
|
return false;
|
|
return false;
|
|
else {
|
|
else {
|
|
/* HDMI 1.3 supports up to 340 Mhz over single link */
|
|
/* HDMI 1.3 supports up to 340 Mhz over single link */
|
|
- if (ASIC_IS_DCE3(rdev) && drm_detect_hdmi_monitor(radeon_connector->edid)) {
|
|
|
|
|
|
+ if (0 && drm_detect_hdmi_monitor(radeon_connector->edid)) {
|
|
if (pixel_clock > 340000)
|
|
if (pixel_clock > 340000)
|
|
return true;
|
|
return true;
|
|
else
|
|
else
|