From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2 00/17] drm/i915: Port A HPD and other HPD cleanups
Date: Fri, 28 Aug 2015 14:38:11 +0300 [thread overview]
Message-ID: <20150828113811.GR5176@intel.com> (raw)
In-Reply-To: <1440708972-17112-1-git-send-email-ville.syrjala@linux.intel.com>
On Thu, Aug 27, 2015 at 11:55:55PM +0300, ville.syrjala@linux.intel.com wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Second posting of the HPD port A series, with some new added goodies
> at the end ;)
>
> I tried to accomodate Paulo's review comments on v1 of the series [1]
> and noticed a few other warts myself that I tried to sort out. Additonally
> I added a bunch of BXT cleanups to the end, and an extra regression
> fix for gen2-4.
>
> I've not had time to test this version yet. I'll try to do that soon,
> and especially give it a shakedown on a BXT.
Tested on BXT now. At laest port C HPD (HDMI on the board I have) works.
Not quite sure about the port A vs. B swapping. There seems to be a bit
of a mess around those parts with intel_hpd_pin_to_port() vs. irq_port[]
vs. hpd_pin. The way I see it we should not be messing with the
irq_port[] assignment and instead intel_hpd_pin_to_port() should do the
right thing with the swapped pins, but currently that's not how it is.
But since it's only BXT A-step that's affected, I'm not sure there's any
point in spending time to handle it more cleanly.
>
> The entire series is available at
> git://github.com/vsyrjala/linux.git port_a_hotplug_7
>
> [1] http://lists.freedesktop.org/archives/intel-gfx/2015-August/073559.html
>
> Ville Syrjälä (17):
> drm/i915: Clean up various HPD defines
> drm/i915: Extract intel_hpd_enabled_irqs()
> drm/i915: Factor out ilk_update_display_irq()
> drm/i915: Add HAS_PCH_LPT_LP() macro
> drm/i915: Rename BXT PORTA HPD defines
> drm/i915: Move {pin,long}_mask initialization to caller from
> intel_get_hpd_pins()
> drm/i915: Introduce spt_irq_handler()
> drm/i915: Add port A HPD support for ILK/SNB
> drm/i915: Add port A HPD support for IVB/HSW
> drm/i915: LPT:LP needs port A HPD enabled in both north and south
> drm/i915: Add port A HPD support for BDW
> drm/i915: Add port A HPD support for SPT
> drm/i915: Reinitialize HPD after runtime D3
> drm/i915: Rewrite bxt_hpd_handler() to look like everyone else
> drm/i915: Refactor the hpd irq handling functions
> drm/i915: Rewrite BXT HPD code to conform to pre-existing style
> drm/i915: Pass hpd_status_i915[] to intel_get_hpd_pins() in pre-g4x
>
> drivers/gpu/drm/i915/i915_drv.c | 9 +
> drivers/gpu/drm/i915/i915_drv.h | 1 +
> drivers/gpu/drm/i915/i915_irq.c | 477 ++++++++++++++++++++++++-----------
> drivers/gpu/drm/i915/i915_reg.h | 99 ++++----
> drivers/gpu/drm/i915/intel_display.c | 13 +-
> drivers/gpu/drm/i915/intel_pm.c | 4 +-
> 6 files changed, 390 insertions(+), 213 deletions(-)
>
> --
> 2.4.6
--
Ville Syrjälä
Intel OTC
_______________________________________________
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-28 11:38 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-27 20:55 [PATCH v2 00/17] drm/i915: Port A HPD and other HPD cleanups ville.syrjala
2015-08-27 20:55 ` [PATCH v2 01/17] drm/i915: Clean up various HPD defines ville.syrjala
2015-08-27 20:55 ` [PATCH v2 02/17] drm/i915: Extract intel_hpd_enabled_irqs() ville.syrjala
2015-08-27 20:55 ` [PATCH v2 03/17] drm/i915: Factor out ilk_update_display_irq() ville.syrjala
2015-08-27 20:55 ` [PATCH 04/17] drm/i915: Add HAS_PCH_LPT_LP() macro ville.syrjala
2015-08-27 20:56 ` [PATCH 05/17] drm/i915: Rename BXT PORTA HPD defines ville.syrjala
2015-08-27 20:56 ` [PATCH 06/17] drm/i915: Move {pin, long}_mask initialization to caller from intel_get_hpd_pins() ville.syrjala
2015-08-28 18:01 ` Paulo Zanoni
2015-08-28 18:25 ` Ville Syrjälä
2015-08-28 18:26 ` [PATCH v2 " ville.syrjala
2015-08-27 20:56 ` [PATCH v2 07/17] drm/i915: Introduce spt_irq_handler() ville.syrjala
2015-08-28 18:20 ` Paulo Zanoni
2015-08-28 18:29 ` Ville Syrjälä
2015-08-27 20:56 ` [PATCH v2 08/17] drm/i915: Add port A HPD support for ILK/SNB ville.syrjala
2015-08-27 20:56 ` [PATCH v2 09/17] drm/i915: Add port A HPD support for IVB/HSW ville.syrjala
2015-08-27 20:56 ` [PATCH v2 10/17] drm/i915: LPT:LP needs port A HPD enabled in both north and south ville.syrjala
2015-08-27 20:56 ` [PATCH v2 11/17] drm/i915: Add port A HPD support for BDW ville.syrjala
2015-08-28 20:51 ` Paulo Zanoni
2015-08-27 20:56 ` [PATCH 12/17] drm/i915: Add port A HPD support for SPT ville.syrjala
2015-08-27 20:56 ` [PATCH 13/17] drm/i915: Reinitialize HPD after runtime D3 ville.syrjala
2015-08-27 20:56 ` [PATCH 14/17] drm/i915: Rewrite bxt_hpd_handler() to look like everyone else ville.syrjala
2015-08-28 21:01 ` Paulo Zanoni
2015-08-27 20:56 ` [PATCH 15/17] drm/i915: Refactor the hpd irq handling functions ville.syrjala
2015-08-28 21:32 ` Paulo Zanoni
2015-08-27 20:56 ` [PATCH 16/17] drm/i915: Rewrite BXT HPD code to conform to pre-existing style ville.syrjala
2015-08-28 22:04 ` Paulo Zanoni
2015-08-27 20:56 ` [PATCH 17/17] drm/i915: Pass hpd_status_i915[] to intel_get_hpd_pins() in pre-g4x ville.syrjala
2015-08-28 22:10 ` Paulo Zanoni
2015-09-02 13:40 ` Jani Nikula
2015-08-30 2:01 ` shuang.he
2015-08-28 11:38 ` Ville Syrjälä [this message]
2015-08-28 19:59 ` [PATCH 18/17] drm/i915: Don't call intel_get_hpd_pins() when there's no hotplug interrupt ville.syrjala
2015-08-28 22:15 ` Paulo Zanoni
2015-09-02 15:10 ` Daniel Vetter
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=20150828113811.GR5176@intel.com \
--to=ville.syrjala@linux.intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.