From: "Jindal, Sonika" <sonika.jindal@intel.com>
To: Sivakumar Thulasimani <sivakumar.thulasimani@intel.com>,
intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 3/3] drm/i915: Check live status before reading edid
Date: Mon, 17 Aug 2015 11:09:57 +0530 [thread overview]
Message-ID: <55D173AD.9040102@intel.com> (raw)
In-Reply-To: <55C83A47.8030700@intel.com>
On 8/10/2015 11:14 AM, Sivakumar Thulasimani wrote:
>
>
> On 7/14/2015 5:21 PM, Sonika Jindal wrote:
>> Adding this for SKL onwards.
>>
>> v2: Adding checks for VLV/CHV as well. Reusing old ibx and g4x functions
>> to check digital port status. Adding a separate function to get bxt live
>> status (Daniel)
>>
>> Signed-off-by: Sonika Jindal <sonika.jindal@intel.com>
>> ---
>> drivers/gpu/drm/i915/intel_dp.c | 4 ++--
>> drivers/gpu/drm/i915/intel_drv.h | 2 ++
>> drivers/gpu/drm/i915/intel_hdmi.c | 43
>> +++++++++++++++++++++++++++++++++----
>> 3 files changed, 43 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/intel_dp.c
>> b/drivers/gpu/drm/i915/intel_dp.c
>> index 4ebfc3a..7b54b9d 100644
>> --- a/drivers/gpu/drm/i915/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/intel_dp.c
>> @@ -4443,8 +4443,8 @@ ironlake_dp_detect(struct intel_dp *intel_dp)
>> return intel_dp_detect_dpcd(intel_dp);
>> }
>> -static int g4x_digital_port_connected(struct drm_device *dev,
>> - struct intel_digital_port *intel_dig_port)
>> +int g4x_digital_port_connected(struct drm_device *dev,
>> + struct intel_digital_port *intel_dig_port)
>> {
>> struct drm_i915_private *dev_priv = dev->dev_private;
>> uint32_t bit;
>> diff --git a/drivers/gpu/drm/i915/intel_drv.h
>> b/drivers/gpu/drm/i915/intel_drv.h
>> index a47fbc3..30c8dd6 100644
>> --- a/drivers/gpu/drm/i915/intel_drv.h
>> +++ b/drivers/gpu/drm/i915/intel_drv.h
>> @@ -1187,6 +1187,8 @@ void intel_edp_drrs_disable(struct intel_dp
>> *intel_dp);
>> void intel_edp_drrs_invalidate(struct drm_device *dev,
>> unsigned frontbuffer_bits);
>> void intel_edp_drrs_flush(struct drm_device *dev, unsigned
>> frontbuffer_bits);
>> +int g4x_digital_port_connected(struct drm_device *dev,
>> + struct intel_digital_port *intel_dig_port);
>> /* intel_dp_mst.c */
>> int intel_dp_mst_encoder_init(struct intel_digital_port
>> *intel_dig_port, int conn_id);
>> diff --git a/drivers/gpu/drm/i915/intel_hdmi.c
>> b/drivers/gpu/drm/i915/intel_hdmi.c
>> index c4b82ce..402be54 100644
>> --- a/drivers/gpu/drm/i915/intel_hdmi.c
>> +++ b/drivers/gpu/drm/i915/intel_hdmi.c
>> @@ -1300,6 +1300,40 @@ intel_hdmi_unset_edid(struct drm_connector
>> *connector)
>> to_intel_connector(connector)->detect_edid = NULL;
>> }
>> +static bool bxt_port_connected(struct drm_i915_private *dev_priv,
>> + struct intel_digital_port *port)
>> +{
>> + u32 temp = I915_READ(GEN8_DE_PORT_ISR);
>> +
>> + /* TODO: Add bxt A0/A1 wa related to hpd pin swap */
>> + switch (port->port) {
> why not pass the encoder and use its hpd_pin ? that will avoid the need
> to do
> A0/A1 related checks ?
This was kept to make it inline with the other functions which does the
same thing. But because of the work around i think it will make sense to
try the way you suggest.
>> + case PORT_B:
>> + return temp & BXT_DE_PORT_HP_DDIB;
>> +
>> + case PORT_C:
>> + return temp & BXT_DE_PORT_HP_DDIC;
>> +
>> + default:
>> + return false;
>> +
>> + }
>> +}
>> +
>> +static bool intel_hdmi_live_status(struct intel_digital_port
>> *intel_dig_port)
>> +{
>> + struct drm_device *dev = intel_dig_port->base.base.dev;
>> + struct drm_i915_private *dev_priv = to_i915(dev);
>> +
>> + if (IS_VALLEYVIEW(dev))
>> + return g4x_digital_port_connected(dev, intel_dig_port);
>> + else if (IS_SKYLAKE(dev))
>> + return ibx_digital_port_connected(dev_priv, intel_dig_port);
>> + else if (IS_BROXTON(dev))
>> + return bxt_port_connected(dev_priv, intel_dig_port);
>> +
>> + return true;
>> +}
>> +
>> static bool
>> intel_hdmi_set_edid(struct drm_connector *connector)
>> {
>> @@ -1308,15 +1342,16 @@ intel_hdmi_set_edid(struct drm_connector
>> *connector)
>> struct intel_encoder *intel_encoder =
>> &hdmi_to_dig_port(intel_hdmi)->base;
>> enum intel_display_power_domain power_domain;
>> - struct edid *edid;
>> + struct edid *edid = NULL;
>> bool connected = false;
>> power_domain = intel_display_port_power_domain(intel_encoder);
>> intel_display_power_get(dev_priv, power_domain);
>> - edid = drm_get_edid(connector,
>> - intel_gmbus_get_adapter(dev_priv,
>> - intel_hdmi->ddc_bus));
>> + if (intel_hdmi_live_status(hdmi_to_dig_port(intel_hdmi)))
>> + edid = drm_get_edid(connector,
>> + intel_gmbus_get_adapter(dev_priv,
>> + intel_hdmi->ddc_bus));
>> intel_display_power_put(dev_priv, power_domain);
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-08-17 5:40 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-14 11:51 [PATCH 0/3] HDMI optimization series Sonika Jindal
2015-07-14 11:51 ` [PATCH 1/3] drm/i915: add attached connector to hdmi container Sonika Jindal
2015-07-14 11:51 ` [PATCH 2/3] drm/i915: Add HDMI probe function Sonika Jindal
2015-07-14 11:51 ` [PATCH 3/3] drm/i915: Check live status before reading edid Sonika Jindal
2015-07-14 14:29 ` Imre Deak
2015-07-15 3:55 ` Jindal, Sonika
2015-08-05 10:02 ` Imre Deak
2015-08-10 5:44 ` Sivakumar Thulasimani
2015-08-17 5:39 ` Jindal, Sonika [this message]
2015-08-07 13:23 ` [PATCH 0/3] HDMI optimization series Daniel Vetter
2015-08-10 4:50 ` Jindal, Sonika
2015-08-10 8:08 ` Daniel Vetter
2015-08-10 8:35 ` Jindal, Sonika
2015-08-11 9:41 ` Daniel Vetter
2015-08-11 11:03 ` Sharma, Shashank
2015-08-12 12:25 ` Daniel Vetter
2015-08-12 12:34 ` Sharma, Shashank
2015-08-12 12:40 ` Daniel Vetter
2015-08-12 12:46 ` Sharma, Shashank
2015-08-12 11:55 ` David Weinehall
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55D173AD.9040102@intel.com \
--to=sonika.jindal@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=sivakumar.thulasimani@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox