/* * Copyright 2007-8 Advanced Micro Devices, Inc. * Copyright 2008 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Authors: Dave Airlie * Alex Deucher
*/
/* if the connector is already off, don't turn it back on */ if (connector->dpms != DRM_MODE_DPMS_ON) return;
/* just deal with DP (not eDP) here. */ if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) { struct amdgpu_connector_atom_dig *dig_connector =
amdgpu_connector->con_priv;
/* if existing sink type was not DP no need to retrain */ if (dig_connector->dp_sink_type != CONNECTOR_OBJECT_ID_DISPLAYPORT) return;
/* first get sink type as it may be reset after (un)plug */
dig_connector->dp_sink_type = amdgpu_atombios_dp_get_sinktype(amdgpu_connector); /* don't do anything if sink is not display port, i.e., * passive dp->(dvi|hdmi) adaptor
*/ if (dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT &&
amdgpu_display_hpd_sense(adev, amdgpu_connector->hpd.hpd) &&
amdgpu_atombios_dp_needs_link_train(amdgpu_connector)) { /* Don't start link training before we have the DPCD */ if (amdgpu_atombios_dp_get_dpcd(amdgpu_connector)) return;
/* Turn the connector off and back on immediately, which * will trigger link training
*/
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF);
drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON);
}
}
}
if (connector->display_info.is_hdmi) { /* * Pre DCE-8 hw can't handle > 12 bpc, and more than 12 bpc doesn't make * much sense without support for > 12 bpc framebuffers. RGB 4:4:4 at * 12 bpc is always supported on hdmi deep color sinks, as this is * required by the HDMI-1.3 spec. Clamp to a safe 12 bpc maximum.
*/ if (bpc > 12) {
DRM_DEBUG("%s: HDMI deep color %d bpc unsupported. Using 12 bpc.\n",
connector->name, bpc);
bpc = 12;
}
/* Any defined maximum tmds clock limit we must not exceed? */ if (connector->display_info.max_tmds_clock > 0) { /* mode_clock is clock in kHz for mode to be modeset on this connector */
mode_clock = amdgpu_connector->pixelclock_for_modeset;
/* Maximum allowable input clock in kHz */
max_tmds_clock = connector->display_info.max_tmds_clock;
/* Check if bpc is within clock limit. Try to degrade gracefully otherwise */ if ((bpc == 12) && (mode_clock * 3/2 > max_tmds_clock)) { if ((connector->display_info.edid_hdmi_rgb444_dc_modes & DRM_EDID_HDMI_DC_30) &&
(mode_clock * 5/4 <= max_tmds_clock))
bpc = 10; else
bpc = 8;
DRM_DEBUG("%s: HDMI deep color 12 bpc exceeds max tmds clock. Using %d bpc.\n",
connector->name, bpc);
}
if ((bpc == 10) && (mode_clock * 5/4 > max_tmds_clock)) {
bpc = 8;
DRM_DEBUG("%s: HDMI deep color 10 bpc exceeds max tmds clock. Using %d bpc.\n",
connector->name, bpc);
}
} elseif (bpc > 8) { /* max_tmds_clock missing, but hdmi spec mandates it for deep color. */
DRM_DEBUG("%s: Required max tmds clock for HDMI deep color missing. Using 8 bpc.\n",
connector->name);
bpc = 8;
}
}
if ((amdgpu_deep_color == 0) && (bpc > 8)) {
DRM_DEBUG("%s: Deep color disabled. Set amdgpu module param deep_color=1 to enable.\n",
connector->name);
bpc = 8;
}
DRM_DEBUG("%s: Display bpc=%d, returned bpc=%d\n",
connector->name, connector->display_info.bpc, bpc);
if (!amdgpu_connector->edid) { /* some laptops provide a hardcoded edid in rom for LCDs */ if (((connector->connector_type == DRM_MODE_CONNECTOR_LVDS) ||
(connector->connector_type == DRM_MODE_CONNECTOR_eDP))) {
amdgpu_connector->edid = amdgpu_connector_get_hardcoded_edid(adev);
drm_connector_update_edid_property(connector, amdgpu_connector->edid);
}
}
}
DRM_DEBUG_KMS("Adding native panel mode %s\n", mode->name);
} elseif (native_mode->hdisplay != 0 &&
native_mode->vdisplay != 0) { /* mac laptops without an edid */ /* Note that this is not necessarily the exact panel mode, * but an approximation based on the cvt formula. For these * systems we should ideally read the mode info out of the * registers or add a mode table, but this works and is much * simpler.
*/
mode = drm_cvt_mode(dev, native_mode->hdisplay, native_mode->vdisplay, 60, true, false, false); if (!mode) return NULL;
if (property == adev->mode_info.audio_property) { struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); /* need to find digital encoder on connector */
encoder = amdgpu_connector_find_encoder(connector, DRM_MODE_ENCODER_TMDS); if (!encoder) return 0;
if (property == adev->mode_info.dither_property) { struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); /* need to find digital encoder on connector */
encoder = amdgpu_connector_find_encoder(connector, DRM_MODE_ENCODER_TMDS); if (!encoder) return 0;
if (property == adev->mode_info.underscan_property) { /* need to find digital encoder on connector */
encoder = amdgpu_connector_find_encoder(connector, DRM_MODE_ENCODER_TMDS); if (!encoder) return 0;
if (property == adev->mode_info.underscan_hborder_property) { /* need to find digital encoder on connector */
encoder = amdgpu_connector_find_encoder(connector, DRM_MODE_ENCODER_TMDS); if (!encoder) return 0;
if (property == adev->mode_info.underscan_vborder_property) { /* need to find digital encoder on connector */
encoder = amdgpu_connector_find_encoder(connector, DRM_MODE_ENCODER_TMDS); if (!encoder) return 0;
/* If the EDID preferred mode doesn't match the native mode, use it */
list_for_each_entry_safe(mode, t, &connector->probed_modes, head) { if (mode->type & DRM_MODE_TYPE_PREFERRED) { if (mode->hdisplay != native_mode->hdisplay ||
mode->vdisplay != native_mode->vdisplay)
drm_mode_copy(native_mode, mode);
}
}
/* Try to get native mode details from EDID if necessary */ if (!native_mode->clock) {
list_for_each_entry_safe(mode, t, &connector->probed_modes, head) { if (mode->hdisplay == native_mode->hdisplay &&
mode->vdisplay == native_mode->vdisplay) {
drm_mode_copy(native_mode, mode);
drm_mode_set_crtcinfo(native_mode, CRTC_INTERLACE_HALVE_V);
DRM_DEBUG_KMS("Determined LVDS native mode details from EDID\n"); break;
}
}
}
staticint amdgpu_connector_lvds_get_modes(struct drm_connector *connector)
{ struct drm_encoder *encoder; int ret = 0; struct drm_display_mode *mode;
amdgpu_connector_get_edid(connector);
ret = amdgpu_connector_ddc_get_modes(connector); if (ret > 0) {
encoder = amdgpu_connector_best_single_encoder(connector); if (encoder) {
amdgpu_connector_fixup_lcd_native_mode(encoder, connector); /* add scaled modes */
amdgpu_connector_add_common_modes(encoder, connector);
} return ret;
}
encoder = amdgpu_connector_best_single_encoder(connector); if (!encoder) return 0;
/* we have no EDID modes */
mode = amdgpu_connector_lcd_native_mode(encoder); if (mode) {
ret = 1;
drm_mode_probed_add(connector, mode); /* add the width/height from vbios tables if available */
connector->display_info.width_mm = mode->width_mm;
connector->display_info.height_mm = mode->height_mm; /* add scaled modes */
amdgpu_connector_add_common_modes(encoder, connector);
}
/* AVIVO hardware supports downscaling modes larger than the panel * to the panel size, but I'm not sure this is desirable.
*/ if ((mode->hdisplay > native_mode->hdisplay) ||
(mode->vdisplay > native_mode->vdisplay)) return MODE_PANEL;
/* if scaling is disabled, block non-native modes */ if (amdgpu_encoder->rmx_type == RMX_OFF) { if ((mode->hdisplay != native_mode->hdisplay) ||
(mode->vdisplay != native_mode->vdisplay)) return MODE_PANEL;
}
}
/* check if panel is valid */ if (native_mode->hdisplay >= 320 && native_mode->vdisplay >= 240)
ret = connector_status_connected;
}
/* check for edid as well */
amdgpu_connector_get_edid(connector); if (amdgpu_connector->edid)
ret = connector_status_connected; /* check acpi lid status ??? */
if (!drm_kms_helper_is_poll_worker()) {
r = pm_runtime_get_sync(connector->dev->dev); if (r < 0) {
pm_runtime_put_autosuspend(connector->dev->dev); return connector_status_disconnected;
}
}
encoder = amdgpu_connector_best_single_encoder(connector); if (!encoder)
ret = connector_status_disconnected;
if (amdgpu_connector->ddc_bus)
dret = amdgpu_display_ddc_probe(amdgpu_connector, false); if (dret) {
amdgpu_connector->detected_by_load = false;
amdgpu_connector_free_edid(connector);
amdgpu_connector_get_edid(connector);
if (!amdgpu_connector->edid) {
DRM_ERROR("%s: probed a monitor but no|invalid EDID\n",
connector->name);
ret = connector_status_connected;
} else {
amdgpu_connector->use_digital =
!!(amdgpu_connector->edid->input & DRM_EDID_INPUT_DIGITAL);
/* some oems have boards with separate digital and analog connectors * with a shared ddc line (often vga + hdmi)
*/ if (amdgpu_connector->use_digital && amdgpu_connector->shared_ddc) {
amdgpu_connector_free_edid(connector);
ret = connector_status_disconnected;
} else {
ret = connector_status_connected;
}
}
} else {
/* if we aren't forcing don't do destructive polling */ if (!force) { /* only return the previous status if we last * detected a monitor via load.
*/ if (amdgpu_connector->detected_by_load)
ret = connector->status; goto out;
}
if (amdgpu_connector->dac_load_detect && encoder) {
encoder_funcs = encoder->helper_private;
ret = encoder_funcs->detect(encoder, connector); if (ret != connector_status_disconnected)
amdgpu_connector->detected_by_load = true;
}
}
if (amdgpu_connector->hpd.hpd != AMDGPU_HPD_NONE) { if (amdgpu_display_hpd_sense(adev, amdgpu_connector->hpd.hpd))
status = connector_status_connected; else
status = connector_status_disconnected; if (connector->status == status) returntrue;
}
if (amdgpu_connector->shared_ddc && *status == connector_status_connected) {
drm_connector_list_iter_begin(dev, &iter);
drm_for_each_connector_iter(list_connector,
&iter) { if (connector == list_connector) continue;
list_amdgpu_connector = to_amdgpu_connector(list_connector); if (list_amdgpu_connector->shared_ddc &&
list_amdgpu_connector->ddc_bus->rec.i2c_id ==
amdgpu_connector->ddc_bus->rec.i2c_id) { /* cases where both connectors are digital */ if (list_connector->connector_type != DRM_MODE_CONNECTOR_VGA) { /* hpd is our only option in this case */ if (!amdgpu_display_hpd_sense(adev,
amdgpu_connector->hpd.hpd)) {
amdgpu_connector_free_edid(connector);
*status = connector_status_disconnected;
}
}
}
}
drm_connector_list_iter_end(&iter);
}
}
/* * DVI is complicated * Do a DDC probe, if DDC probe passes, get the full EDID so * we can do analog/digital monitor detection at this point. * If the monitor is an analog monitor or we got no DDC, * we need to find the DAC encoder object for this connector. * If we got no DDC, we do load detection on the DAC encoder object. * If we got analog DDC or load detection passes on the DAC encoder * we have to check if this analog encoder is shared with anyone else (TV) * if its shared we have to set the other connector to disconnected.
*/ staticenum drm_connector_status
amdgpu_connector_dvi_detect(struct drm_connector *connector, bool force)
{ struct drm_device *dev = connector->dev; struct amdgpu_device *adev = drm_to_adev(dev); struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); conststruct drm_encoder_helper_funcs *encoder_funcs; int r; enum drm_connector_status ret = connector_status_disconnected; bool dret = false, broken_edid = false;
if (!drm_kms_helper_is_poll_worker()) {
r = pm_runtime_get_sync(connector->dev->dev); if (r < 0) {
pm_runtime_put_autosuspend(connector->dev->dev); return connector_status_disconnected;
}
}
if (amdgpu_connector->detected_hpd_without_ddc) {
force = true;
amdgpu_connector->detected_hpd_without_ddc = false;
}
if (!force && amdgpu_connector_check_hpd_status_unchanged(connector)) {
ret = connector->status; gotoexit;
}
if (amdgpu_connector->ddc_bus) {
dret = amdgpu_display_ddc_probe(amdgpu_connector, false);
/* Sometimes the pins required for the DDC probe on DVI * connectors don't make contact at the same time that the ones * for HPD do. If the DDC probe fails even though we had an HPD * signal, try again later
*/ if (!dret && !force &&
amdgpu_display_hpd_sense(adev, amdgpu_connector->hpd.hpd)) {
DRM_DEBUG_KMS("hpd detected without ddc, retrying in 1 second\n");
amdgpu_connector->detected_hpd_without_ddc = true;
schedule_delayed_work(&adev->hotplug_work,
msecs_to_jiffies(1000)); gotoexit;
}
} if (dret) {
amdgpu_connector->detected_by_load = false;
amdgpu_connector_free_edid(connector);
amdgpu_connector_get_edid(connector);
if (!amdgpu_connector->edid) {
DRM_ERROR("%s: probed a monitor but no|invalid EDID\n",
connector->name);
ret = connector_status_connected;
broken_edid = true; /* defer use_digital to later */
} else {
amdgpu_connector->use_digital =
!!(amdgpu_connector->edid->input & DRM_EDID_INPUT_DIGITAL);
/* some oems have boards with separate digital and analog connectors * with a shared ddc line (often vga + hdmi)
*/ if ((!amdgpu_connector->use_digital) && amdgpu_connector->shared_ddc) {
amdgpu_connector_free_edid(connector);
ret = connector_status_disconnected;
} else {
ret = connector_status_connected;
}
/* This gets complicated. We have boards with VGA + HDMI with a * shared DDC line and we have boards with DVI-D + HDMI with a shared * DDC line. The latter is more complex because with DVI<->HDMI adapters * you don't really know what's connected to which port as both are digital.
*/
amdgpu_connector_shared_ddc(&ret, connector, amdgpu_connector);
}
}
if ((ret == connector_status_connected) && (amdgpu_connector->use_digital == true)) goto out;
/* DVI-D and HDMI-A are digital only */ if ((connector->connector_type == DRM_MODE_CONNECTOR_DVID) ||
(connector->connector_type == DRM_MODE_CONNECTOR_HDMIA)) goto out;
/* if we aren't forcing don't do destructive polling */ if (!force) { /* only return the previous status if we last * detected a monitor via load.
*/ if (amdgpu_connector->detected_by_load)
ret = connector->status; goto out;
}
/* find analog encoder */ if (amdgpu_connector->dac_load_detect) { struct drm_encoder *encoder;
encoder_funcs = encoder->helper_private; if (encoder_funcs->detect) { if (!broken_edid) { if (ret != connector_status_connected) { /* deal with analog monitors without DDC */
ret = encoder_funcs->detect(encoder, connector); if (ret == connector_status_connected) {
amdgpu_connector->use_digital = false;
} if (ret != connector_status_disconnected)
amdgpu_connector->detected_by_load = true;
}
} else { enum drm_connector_status lret; /* assume digital unless load detected otherwise */
amdgpu_connector->use_digital = true;
lret = encoder_funcs->detect(encoder, connector);
DRM_DEBUG_KMS("load_detect %x returned: %x\n",
encoder->encoder_type, lret); if (lret == connector_status_connected)
amdgpu_connector->use_digital = false;
} break;
}
}
}
out: /* updated in get modes as well since we need to know if it's analog or digital */
amdgpu_connector_update_scratch_regs(connector, ret);
exit: if (!drm_kms_helper_is_poll_worker()) {
pm_runtime_mark_last_busy(connector->dev->dev);
pm_runtime_put_autosuspend(connector->dev->dev);
}
return ret;
}
/* okay need to be smart in here about which encoder to pick */ staticstruct drm_encoder *
amdgpu_connector_dvi_encoder(struct drm_connector *connector)
{ struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); struct drm_encoder *encoder;
drm_connector_for_each_possible_encoder(connector, encoder) { if (amdgpu_connector->use_digital == true) { if (encoder->encoder_type == DRM_MODE_ENCODER_TMDS) return encoder;
} else { if (encoder->encoder_type == DRM_MODE_ENCODER_DAC ||
encoder->encoder_type == DRM_MODE_ENCODER_TVDAC) return encoder;
}
}
/* see if we have a default encoder TODO */
/* then check use digitial */ /* pick the first one */
drm_connector_for_each_possible_encoder(connector, encoder) return encoder;
if (connector->force == DRM_FORCE_ON)
amdgpu_connector->use_digital = false; if (connector->force == DRM_FORCE_ON_DIGITAL)
amdgpu_connector->use_digital = true;
}
/** * amdgpu_max_hdmi_pixel_clock - Return max supported HDMI (TMDS) pixel clock * @adev: pointer to amdgpu_device * * Return: maximum supported HDMI (TMDS) pixel clock in KHz.
*/ staticint amdgpu_max_hdmi_pixel_clock(conststruct amdgpu_device *adev)
{ if (adev->asic_type >= CHIP_POLARIS10) return 600000; elseif (adev->asic_type >= CHIP_TONGA) return 300000; else return 297000;
}
/** * amdgpu_connector_dvi_mode_valid - Validate a mode on DVI/HDMI connectors * @connector: DRM connector to validate the mode on * @mode: display mode to validate * * Validate the given display mode on DVI and HDMI connectors, including * analog signals on DVI-I. * * Return: drm_mode_status indicating whether the mode is valid.
*/ staticenum drm_mode_status amdgpu_connector_dvi_mode_valid(struct drm_connector *connector, conststruct drm_display_mode *mode)
{ struct drm_device *dev = connector->dev; struct amdgpu_device *adev = drm_to_adev(dev); struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); constint max_hdmi_pixel_clock = amdgpu_max_hdmi_pixel_clock(adev); constint max_dvi_single_link_pixel_clock = 165000; int max_digital_pixel_clock_khz;
/* XXX check mode bandwidth */
if (amdgpu_connector->use_digital) { switch (amdgpu_connector->connector_object_id) { case CONNECTOR_OBJECT_ID_HDMI_TYPE_A:
max_digital_pixel_clock_khz = max_hdmi_pixel_clock; break; case CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I: case CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D:
max_digital_pixel_clock_khz = max_dvi_single_link_pixel_clock; break; case CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I: case CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D: case CONNECTOR_OBJECT_ID_HDMI_TYPE_B:
max_digital_pixel_clock_khz = max_dvi_single_link_pixel_clock * 2; break;
}
/* When the display EDID claims that it's an HDMI display, * we use the HDMI encoder mode of the display HW, * so we should verify against the max HDMI clock here.
*/ if (connector->display_info.is_hdmi)
max_digital_pixel_clock_khz = max_hdmi_pixel_clock;
if (mode->clock > max_digital_pixel_clock_khz) return MODE_CLOCK_HIGH;
}
/* check against the max pixel clock */ if ((mode->clock / 10) > adev->clock.max_pixel_clock) return MODE_CLOCK_HIGH;
if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) { if (!amdgpu_dig_connector->edp_on)
amdgpu_atombios_encoder_set_edp_panel_power(connector,
ATOM_TRANSMITTER_ACTION_POWER_ON);
amdgpu_connector_get_edid(connector);
ret = amdgpu_connector_ddc_get_modes(connector); if (!amdgpu_dig_connector->edp_on)
amdgpu_atombios_encoder_set_edp_panel_power(connector,
ATOM_TRANSMITTER_ACTION_POWER_OFF);
} else { /* need to setup ddc on the bridge */ if (amdgpu_connector_encoder_get_dp_bridge_encoder_id(connector) !=
ENCODER_OBJECT_ID_NONE) { if (encoder)
amdgpu_atombios_encoder_setup_ext_encoder_ddc(encoder);
}
amdgpu_connector_get_edid(connector);
ret = amdgpu_connector_ddc_get_modes(connector);
}
/* we have no EDID modes */
mode = amdgpu_connector_lcd_native_mode(encoder); if (mode) {
ret = 1;
drm_mode_probed_add(connector, mode); /* add the width/height from vbios tables if available */
connector->display_info.width_mm = mode->width_mm;
connector->display_info.height_mm = mode->height_mm; /* add scaled modes */
amdgpu_connector_add_common_modes(encoder, connector);
}
} else { /* need to setup ddc on the bridge */ if (amdgpu_connector_encoder_get_dp_bridge_encoder_id(connector) !=
ENCODER_OBJECT_ID_NONE) { if (encoder)
amdgpu_atombios_encoder_setup_ext_encoder_ddc(encoder);
}
amdgpu_connector_get_edid(connector);
ret = amdgpu_connector_ddc_get_modes(connector);
/* check if panel is valid */ if (native_mode->hdisplay >= 320 && native_mode->vdisplay >= 240)
ret = connector_status_connected;
} /* eDP is always DP */
amdgpu_dig_connector->dp_sink_type = CONNECTOR_OBJECT_ID_DISPLAYPORT; if (!amdgpu_dig_connector->edp_on)
amdgpu_atombios_encoder_set_edp_panel_power(connector,
ATOM_TRANSMITTER_ACTION_POWER_ON); if (!amdgpu_atombios_dp_get_dpcd(amdgpu_connector))
ret = connector_status_connected; if (!amdgpu_dig_connector->edp_on)
amdgpu_atombios_encoder_set_edp_panel_power(connector,
ATOM_TRANSMITTER_ACTION_POWER_OFF);
} elseif (amdgpu_connector_encoder_get_dp_bridge_encoder_id(connector) !=
ENCODER_OBJECT_ID_NONE) { /* DP bridges are always DP */
amdgpu_dig_connector->dp_sink_type = CONNECTOR_OBJECT_ID_DISPLAYPORT; /* get the DPCD from the bridge */
amdgpu_atombios_dp_get_dpcd(amdgpu_connector);
if (encoder) { /* setup ddc on the bridge */
amdgpu_atombios_encoder_setup_ext_encoder_ddc(encoder); /* bridge chips are always aux */ /* try DDC */ if (amdgpu_display_ddc_probe(amdgpu_connector, true))
ret = connector_status_connected; elseif (amdgpu_connector->dac_load_detect) { /* try load detection */ conststruct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
ret = encoder_funcs->detect(encoder, connector);
}
}
} else {
amdgpu_dig_connector->dp_sink_type =
amdgpu_atombios_dp_get_sinktype(amdgpu_connector); if (amdgpu_display_hpd_sense(adev, amdgpu_connector->hpd.hpd)) {
ret = connector_status_connected; if (amdgpu_dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT)
amdgpu_atombios_dp_get_dpcd(amdgpu_connector);
} else { if (amdgpu_dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) { if (!amdgpu_atombios_dp_get_dpcd(amdgpu_connector))
ret = connector_status_connected;
} else { /* try non-aux ddc (DP to DVI/HDMI/etc. adapter) */ if (amdgpu_display_ddc_probe(amdgpu_connector, false))
ret = connector_status_connected;
}
}
}
amdgpu_connector_update_scratch_regs(connector, ret);
out: if (!drm_kms_helper_is_poll_worker()) {
pm_runtime_mark_last_busy(connector->dev->dev);
pm_runtime_put_autosuspend(connector->dev->dev);
}
/* AVIVO hardware supports downscaling modes larger than the panel * to the panel size, but I'm not sure this is desirable.
*/ if ((mode->hdisplay > native_mode->hdisplay) ||
(mode->vdisplay > native_mode->vdisplay)) return MODE_PANEL;
/* if scaling is disabled, block non-native modes */ if (amdgpu_encoder->rmx_type == RMX_OFF) { if ((mode->hdisplay != native_mode->hdisplay) ||
(mode->vdisplay != native_mode->vdisplay)) return MODE_PANEL;
}
} return MODE_OK;
} else { if ((amdgpu_dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_DISPLAYPORT) ||
(amdgpu_dig_connector->dp_sink_type == CONNECTOR_OBJECT_ID_eDP)) { return amdgpu_atombios_dp_mode_valid_helper(connector, mode);
} else { if (connector->display_info.is_hdmi) { /* HDMI 1.3+ supports max clock of 340 Mhz */ if (mode->clock > 340000) return MODE_CLOCK_HIGH;
} else { if (mode->clock > 165000) return MODE_CLOCK_HIGH;
}
}
}
return MODE_OK;
}
staticint
amdgpu_connector_late_register(struct drm_connector *connector)
{ struct amdgpu_connector *amdgpu_connector = to_amdgpu_connector(connector); int r = 0;
if (amdgpu_connector->ddc_bus->has_aux) {
amdgpu_connector->ddc_bus->aux.dev = amdgpu_connector->base.kdev;
r = drm_dp_aux_register(&amdgpu_connector->ddc_bus->aux);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.