All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: "Pandiyan, Dhinakaran" <dhinakaran.pandiyan@intel.com>
Cc: "intel-gfx@lists.freedesktop.org" <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 00/10] drm/i915: Nuke dig_port->port and assorted cleanups
Date: Thu, 9 Nov 2017 20:26:32 +0200	[thread overview]
Message-ID: <20171109182632.GA10981@intel.com> (raw)
In-Reply-To: <1510198127.8287.41.camel@dk-H97M-D3H>

On Thu, Nov 09, 2017 at 03:08:18AM +0000, Pandiyan, Dhinakaran wrote:
> 
> 
> 
> On Wed, 2017-11-01 at 11:55 +0200, Jani Nikula wrote:
> > On Tue, 31 Oct 2017, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> > > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > >
> > > The main attraction of this series is removal of
> > > intel_digital_port->port. Ever since the introduction of
> > > intel_encoder->port it has been redundant, and I figured
> > > it's high time we kill it.
> > >
> > > The other stuff is mostly elimination of uses of the
> > > legacy encoder->crtc pointer and intel_crtc->config. While those
> > > do still work we do kinda want to kill them off, and instead use
> > > the proper atomic states instead. Having multiple ways to do things
> > > also tends to confuse people so the sooner we get this cleaned utp
> > > the better. I think I mostly got the the encoder side done now,
> > > apart from link training related code which will need more thought.
> > 
> > For starters, on the series,
> > 
> > Acked-by: Jani Nikula <jani.nikula@intel.com>
> > 
> > I glanced through everything but I can't say I reviewed it yet.
> > 
> > BR,
> > Jani.
> > 
> 
> Only nits in a couple of places, you can address them if you want to.
> Reviewed-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> for the
> series.

Series pushed to dinq. Thanks for the review.

> 
> > >
> > > Entire series available here:
> > > git://github.com/vsyrjala/linux.git nuke_dig_port_port_4
> > >
> > > Ville Syrjälä (10):
> > >   drm/i915: Eliminate some encoder->crtc usage from DP code
> > >   drm/i915: Eliminate some encoder->crtc usage from DSI code
> > >   drm/i915: Eliminate some encoder->crtc usage from SDVO code
> > >   drm/i915: Eliminate some encoder->crtc usage from TV code
> > >   drm/i915: Pass crtc state to DPIO PHY functions
> > >   drm/i915: Eliminate crtc->config usage from CRT code
> > >   drm/i915: Replace dig_port->port with encoder port for BXT DPLL
> > >     selection
> > >   drm/i915: Nuke intel_digital_port->port
> > >   drm/i915: Clean up PPS code calling conventions
> > >   drm/i915: Clean up DP code local variables and calling conventions
> > >
> > >  drivers/gpu/drm/i915/i915_debugfs.c   |   2 +-
> > >  drivers/gpu/drm/i915/i915_drv.h       |  19 +-
> > >  drivers/gpu/drm/i915/intel_crt.c      |  44 ++--
> > >  drivers/gpu/drm/i915/intel_ddi.c      |  13 +-
> > >  drivers/gpu/drm/i915/intel_display.c  |  13 +-
> > >  drivers/gpu/drm/i915/intel_dp.c       | 432 +++++++++++++++-------------------
> > >  drivers/gpu/drm/i915/intel_dp_mst.c   |   6 +-
> > >  drivers/gpu/drm/i915/intel_dpio_phy.c |  99 ++++----
> > >  drivers/gpu/drm/i915/intel_dpll_mgr.c |  10 +-
> > >  drivers/gpu/drm/i915/intel_drv.h      |   5 +-
> > >  drivers/gpu/drm/i915/intel_dsi.c      |  17 +-
> > >  drivers/gpu/drm/i915/intel_hdmi.c     |  34 ++-
> > >  drivers/gpu/drm/i915/intel_pipe_crc.c |   4 +-
> > >  drivers/gpu/drm/i915/intel_psr.c      |   4 +-
> > >  drivers/gpu/drm/i915/intel_sdvo.c     |   4 +-
> > >  drivers/gpu/drm/i915/intel_tv.c       |   4 +-
> > >  16 files changed, 316 insertions(+), 394 deletions(-)
> > 

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2017-11-09 18:26 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-31 20:51 [PATCH 00/10] drm/i915: Nuke dig_port->port and assorted cleanups Ville Syrjala
2017-10-31 20:51 ` [PATCH 01/10] drm/i915: Eliminate some encoder->crtc usage from DP code Ville Syrjala
2017-11-09  1:35   ` Pandiyan, Dhinakaran
2017-11-09 14:36     ` Ville Syrjälä
2017-10-31 20:51 ` [PATCH 02/10] drm/i915: Eliminate some encoder->crtc usage from DSI code Ville Syrjala
2017-11-09  1:36   ` Pandiyan, Dhinakaran
2017-11-09 14:43     ` Ville Syrjälä
2017-10-31 20:51 ` [PATCH 03/10] drm/i915: Eliminate some encoder->crtc usage from SDVO code Ville Syrjala
2017-10-31 20:51 ` [PATCH 04/10] drm/i915: Eliminate some encoder->crtc usage from TV code Ville Syrjala
2017-10-31 20:51 ` [PATCH 05/10] drm/i915: Pass crtc state to DPIO PHY functions Ville Syrjala
2017-10-31 20:51 ` [PATCH 06/10] drm/i915: Eliminate crtc->config usage from CRT code Ville Syrjala
2017-10-31 20:51 ` [PATCH 07/10] drm/i915: Replace dig_port->port with encoder port for BXT DPLL selection Ville Syrjala
2017-10-31 20:51 ` [PATCH 08/10] drm/i915: Nuke intel_digital_port->port Ville Syrjala
2017-11-09  1:37   ` Pandiyan, Dhinakaran
2017-11-09 13:50     ` Ville Syrjälä
2017-11-09 15:24   ` [PATCH v2 " Ville Syrjala
2017-10-31 20:51 ` [PATCH 09/10] drm/i915: Clean up PPS code calling conventions Ville Syrjala
2017-10-31 20:51 ` [PATCH 10/10] drm/i915: Clean up DP code local variables and " Ville Syrjala
2017-11-09  3:01   ` Pandiyan, Dhinakaran
2017-11-09 15:27     ` Ville Syrjälä
2017-11-09 15:27   ` [PATCH v2 " Ville Syrjala
2017-10-31 22:31 ` ✗ Fi.CI.BAT: warning for drm/i915: Nuke dig_port->port and assorted cleanups Patchwork
2017-11-01  9:55 ` [PATCH 00/10] " Jani Nikula
2017-11-09  3:08   ` Pandiyan, Dhinakaran
2017-11-09 18:26     ` Ville Syrjälä [this message]
2017-11-09 16:01 ` ✓ Fi.CI.BAT: success for drm/i915: Nuke dig_port->port and assorted cleanups (rev3) Patchwork
2017-11-09 16:59 ` ✓ Fi.CI.IGT: " Patchwork

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=20171109182632.GA10981@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=dhinakaran.pandiyan@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.