From: Imre Deak <imre.deak@intel.com>
To: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Intel Graphics Development <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 00/14] i915 kerneldocs part 1
Date: Tue, 30 Sep 2014 16:16:38 +0300 [thread overview]
Message-ID: <1412082998.18498.17.camel@intelbox> (raw)
In-Reply-To: <1412067410-9346-1-git-send-email-daniel.vetter@ffwll.ch>
On Tue, 2014-09-30 at 10:56 +0200, Daniel Vetter wrote:
> Hi all,
>
> So I've decided that it's really time to (slowly) crawl through i915 and
> document everything. It's going to take years, but here's a start at least.
>
> I realize that this has good chances to create a constant stream of little
> conflicts all over. Well, so be it, I really think we need this.
>
> Overall approach is fairly simple:
> 1. Clean up interfaces for a set of functions.
> 2. Extract them into a new file grouped nicely together.
> 3. Write kerneldoc including short overview section.
> 4. Repeat.
>
> So here's the first batch. Comments & flames highly welcome. Review assignments
> below (counts for all the patches above the block).
>
> Cheers, Daniel
>
> Daniel Vetter (14):
> drm/i915: Remove intel_modeset_suspend_hw
> drm/i915: Extract intel_runtime_pm.c
> drm/i915: Bikeshed rpm functions name a bit.
> drm/i915: Move intel_display_set_init_power to intel_runtime_pm.c
> drm/i915: Call runtime_pm_disable directly
> drm/i915: Kerneldoc for intel_runtime_pm.c
>
> Reviewer: Imre
With the optional nitpicks I sent separately for the above 6 patches:
Reviewed-by: Imre Deak <imre.deak@intel.com>
>
> drm/i915: s/pm._irqs_disabled/pm.irqs_enabled/
> drm/i915: Use dev_priv instead of dev in irq setup functions
> drm/i915: kerneldoc for interrupt enable/disable functions
> drm/i915: Extract intel_fifo_underrun.c
> drm/i915: Use dev_priv in public intel_fifo_underrun.c functions
> drm/i915: Add wrappers to handle fifo underrun interrupts
> drm/i915: Filter gmch fifo underruns in the shared handler
> drm/i915: kerneldoc for intel_fifo_underrun.c
>
> Reviewer: Paulo
>
> Documentation/DocBook/drm.tmpl | 26 +
> drivers/gpu/drm/i915/Makefile | 5 +-
> drivers/gpu/drm/i915/i915_debugfs.c | 2 +-
> drivers/gpu/drm/i915/i915_dma.c | 25 +-
> drivers/gpu/drm/i915/i915_drv.c | 14 +-
> drivers/gpu/drm/i915/i915_drv.h | 22 +-
> drivers/gpu/drm/i915/i915_irq.c | 491 +++-------
> drivers/gpu/drm/i915/intel_crt.c | 2 +-
> drivers/gpu/drm/i915/intel_ddi.c | 8 +-
> drivers/gpu/drm/i915/intel_display.c | 84 +-
> drivers/gpu/drm/i915/intel_dp.c | 2 +-
> drivers/gpu/drm/i915/intel_drv.h | 62 +-
> drivers/gpu/drm/i915/intel_dsi.c | 2 +-
> drivers/gpu/drm/i915/intel_fifo_underrun.c | 380 ++++++++
> drivers/gpu/drm/i915/intel_hdmi.c | 2 +-
> drivers/gpu/drm/i915/intel_lvds.c | 2 +-
> drivers/gpu/drm/i915/intel_pm.c | 1159 -----------------------
> drivers/gpu/drm/i915/intel_runtime_pm.c | 1372 ++++++++++++++++++++++++++++
> 18 files changed, 2016 insertions(+), 1644 deletions(-)
> create mode 100644 drivers/gpu/drm/i915/intel_fifo_underrun.c
> create mode 100644 drivers/gpu/drm/i915/intel_runtime_pm.c
>
next prev parent reply other threads:[~2014-09-30 13:16 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-30 8:56 [PATCH 00/14] i915 kerneldocs part 1 Daniel Vetter
2014-09-30 8:56 ` [PATCH 01/14] drm/i915: Remove intel_modeset_suspend_hw Daniel Vetter
2014-09-30 8:56 ` [PATCH 02/14] drm/i915: Extract intel_runtime_pm.c Daniel Vetter
2014-09-30 12:22 ` Imre Deak
2014-09-30 8:56 ` [PATCH 03/14] drm/i915: Bikeshed rpm functions name a bit Daniel Vetter
2014-09-30 8:56 ` [PATCH 04/14] drm/i915: Move intel_display_set_init_power to intel_runtime_pm.c Daniel Vetter
2014-09-30 8:56 ` [PATCH 05/14] drm/i915: Call runtime_pm_disable directly Daniel Vetter
2014-09-30 12:46 ` Imre Deak
2014-09-30 8:56 ` [PATCH 06/14] drm/i915: Kerneldoc for intel_runtime_pm.c Daniel Vetter
2014-09-30 13:11 ` Imre Deak
2014-09-30 8:56 ` [PATCH 07/14] drm/i915: s/pm._irqs_disabled/pm.irqs_enabled/ Daniel Vetter
2014-10-02 20:36 ` Paulo Zanoni
2014-10-03 9:19 ` Daniel Vetter
2014-10-03 9:27 ` Chris Wilson
2014-10-03 11:49 ` Daniel Vetter
2014-09-30 8:56 ` [PATCH 08/14] drm/i915: Use dev_priv instead of dev in irq setup functions Daniel Vetter
2014-10-02 20:46 ` Paulo Zanoni
2014-09-30 8:56 ` [PATCH 09/14] drm/i915: kerneldoc for interrupt enable/disable functions Daniel Vetter
2014-10-02 20:55 ` Paulo Zanoni
2014-09-30 8:56 ` [PATCH 10/14] drm/i915: Extract intel_fifo_underrun.c Daniel Vetter
2014-09-30 8:56 ` [PATCH 11/14] drm/i915: Use dev_priv in public intel_fifo_underrun.c functions Daniel Vetter
2014-09-30 8:56 ` [PATCH 12/14] drm/i915: Add wrappers to handle fifo underrun interrupts Daniel Vetter
2014-09-30 8:56 ` [PATCH 13/14] drm/i915: Filter gmch fifo underruns in the shared handler Daniel Vetter
2014-09-30 8:56 ` [PATCH 14/14] drm/i915: kerneldoc for intel_fifo_underrun.c Daniel Vetter
2014-10-03 18:00 ` Paulo Zanoni
2014-10-03 20:51 ` Daniel Vetter
2014-09-30 13:16 ` Imre Deak [this message]
2014-10-01 8:42 ` [PATCH 00/14] i915 kerneldocs part 1 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=1412082998.18498.17.camel@intelbox \
--to=imre.deak@intel.com \
--cc=daniel.vetter@ffwll.ch \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox