Skip to content

Commit

Permalink
drm/i915: Enable DisplayPort audio
Browse files Browse the repository at this point in the history
This will turn on DP audio output by checking monitor's audio
capability.

Signed-off-by: Zhenyu Wang <[email protected]>
[ickle: rebase onto recent changes and rearranged for clarity]
Signed-off-by: Chris Wilson <[email protected]>
  • Loading branch information
zhenyw authored and ickle committed Oct 19, 2010
1 parent 8fe9790 commit a9756bb
Showing 1 changed file with 41 additions and 21 deletions.
62 changes: 41 additions & 21 deletions drivers/gpu/drm/i915/intel_dp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1458,9 +1458,8 @@ intel_dp_check_link_status(struct intel_dp *intel_dp)
}

static enum drm_connector_status
ironlake_dp_detect(struct drm_connector *connector)
ironlake_dp_detect(struct intel_dp *intel_dp)
{
struct intel_dp *intel_dp = intel_attached_dp(connector);
enum drm_connector_status status;

/* Can't disconnect eDP */
Expand All @@ -1470,8 +1469,8 @@ ironlake_dp_detect(struct drm_connector *connector)
status = connector_status_disconnected;
if (intel_dp_aux_native_read(intel_dp,
0x000, intel_dp->dpcd,
sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
{
sizeof (intel_dp->dpcd))
== sizeof(intel_dp->dpcd)) {
if (intel_dp->dpcd[0] != 0)
status = connector_status_connected;
}
Expand All @@ -1480,25 +1479,13 @@ ironlake_dp_detect(struct drm_connector *connector)
return status;
}

/**
* Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
*
* \return true if DP port is connected.
* \return false if DP port is disconnected.
*/
static enum drm_connector_status
intel_dp_detect(struct drm_connector *connector, bool force)
g4x_dp_detect(struct intel_dp *intel_dp)
{
struct intel_dp *intel_dp = intel_attached_dp(connector);
struct drm_device *dev = intel_dp->base.base.dev;
struct drm_i915_private *dev_priv = dev->dev_private;
uint32_t temp, bit;
enum drm_connector_status status;

intel_dp->has_audio = false;

if (HAS_PCH_SPLIT(dev))
return ironlake_dp_detect(connector);
uint32_t temp, bit;

switch (intel_dp->output_reg) {
case DP_B:
Expand All @@ -1520,14 +1507,47 @@ intel_dp_detect(struct drm_connector *connector, bool force)
return connector_status_disconnected;

status = connector_status_disconnected;
if (intel_dp_aux_native_read(intel_dp,
0x000, intel_dp->dpcd,
if (intel_dp_aux_native_read(intel_dp, 0x000, intel_dp->dpcd,
sizeof (intel_dp->dpcd)) == sizeof (intel_dp->dpcd))
{
if (intel_dp->dpcd[0] != 0)
status = connector_status_connected;
}
return status;

return bit;
}

/**
* Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect DP connection.
*
* \return true if DP port is connected.
* \return false if DP port is disconnected.
*/
static enum drm_connector_status
intel_dp_detect(struct drm_connector *connector, bool force)
{
struct intel_dp *intel_dp = intel_attached_dp(connector);
struct drm_device *dev = intel_dp->base.base.dev;
enum drm_connector_status status;
struct edid *edid = NULL;

intel_dp->has_audio = false;

if (HAS_PCH_SPLIT(dev))
status = ironlake_dp_detect(intel_dp);
else
status = g4x_dp_detect(intel_dp);
if (status != connector_status_connected)
return status;

edid = drm_get_edid(connector, &intel_dp->adapter);
if (edid) {
intel_dp->has_audio = drm_detect_monitor_audio(edid);
connector->display_info.raw_edid = NULL;
kfree(edid);
}

return connector_status_connected;
}

static int intel_dp_get_modes(struct drm_connector *connector)
Expand Down

0 comments on commit a9756bb

Please sign in to comment.