public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Rodrigo Vivi <rodrigo.vivi@gmail.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH 0/9] drm-intel-collector - update
Date: Mon, 18 Nov 2013 18:32:29 -0800	[thread overview]
Message-ID: <1384828358-31563-1-git-send-email-rodrigo.vivi@gmail.com> (raw)


This is another drm-intel-collector updated notice:
http://cgit.freedesktop.org/~vivijim/drm-intel/log/?h=drm-intel-collector

Here goes the update list in order for better reviewers assignment:

Patch     drm/i915: Asynchronously perform the set-base for a simple modeset - Reviewed by me.
Patch     drm/i915: Fix gen3/4 vblank counter wraparound - Reviewer:
Patch     drm/i915: Use frame counter for intel_wait_for_vblank() on CTG - Reviewer:
Patch     drm/i915: Do hw quiescing first during unload - Reviewer:
Patch     drm/i915: print object bindings in debugfs - Reviewer:
Patch     drm/i915/vlv: enable HDMI audio for Valleyview2 - Reviewer:
Patch     drm/i915: Hold pc8 lock around toggling pc8.gpu_idle - Reviewed by Paulo
Patch     drm/i915: Do not enable package C8 on unsupported hardware - Reviewed by Paulo
Patch     drm/i915: Enable pipe gamma for sprites - Reviewer:

Overall Process:

drm-intel-collector - review request
 1. Daniel pushs drm-intel-testing (every 2 weeks)
 2. I rebase drm-intel-collector onto drm-intel-testing
 3. Add Reviewer: tag with voluntered reviewers. If you don't believe you should be assigned on a particular patch please don't get mad just tell you wont review or volunteer someone else.
 4. I resubmit remaining patches for review without picking any new (drm-intel-collector - review request)

drm-intel-collector - updated
 5. One week later I collect all simple (1-2) patches that wasn't yet reviewed and not queued by Daniel from one testing update until another.
 6. Request automated QA's PRTS automated i-g-t tests comparing drm-intel-testing x drm-intel-collector
 7. If tests are ok I send the update notification or the patches as a series to intel-gfx mailing list for better tracking and to be reviewed. (drm-intel-collector - updated)
 8. Let me know volunteers for review new patches and also let me know if I've picked any patch that I shouldn't.

There are some reasons that some patches can be left behind:
1. Your patch didn't applied cleanly and I couldn't easily solve the conflicts.
2. Kernel didn't compiled with your patch.
3. I simply missed it. If you believe this is the case please warn me.

Please help me to get these patches reviewed and queued by Daniel.

Also, please let me know if you have further ideas how to improve this process.

Thanks in advance,
Rodrigo.


Chris Wilson (4):
  drm/i915: Asynchronously perform the set-base for a simple modeset
  drm/i915: Do hw quiescing first during unload
  drm/i915: Hold pc8 lock around toggling pc8.gpu_idle
  drm/i915: Do not enable package C8 on unsupported hardware

Daniel Vetter (1):
  drm/i915: print object bindings in debugfs

Mengdong Lin (1):
  drm/i915/vlv: enable HDMI audio for Valleyview2

Ville Syrjälä (3):
  drm/i915: Fix gen3/4 vblank counter wraparound
  drm/i915: Use frame counter for intel_wait_for_vblank() on CTG
  drm/i915: Enable pipe gamma for sprites

 drivers/gpu/drm/i915/i915_debugfs.c  |  6 ++++
 drivers/gpu/drm/i915/i915_dma.c      | 10 +++---
 drivers/gpu/drm/i915/i915_drv.h      |  1 +
 drivers/gpu/drm/i915/i915_irq.c      |  2 +-
 drivers/gpu/drm/i915/i915_reg.h      | 20 ++++++++++-
 drivers/gpu/drm/i915/intel_display.c | 65 ++++++++++++++++++++++++++++--------
 drivers/gpu/drm/i915/intel_sprite.c  | 18 ++++++++++
 7 files changed, 103 insertions(+), 19 deletions(-)

-- 
1.8.3.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

             reply	other threads:[~2013-11-19  2:32 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-19  2:32 Rodrigo Vivi [this message]
2013-11-19  2:32 ` [PATCH 1/9] drm/i915: Asynchronously perform the set-base for a simple modeset Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 2/9] drm/i915: Fix gen3/4 vblank counter wraparound Rodrigo Vivi
2013-11-19 13:51   ` Chris Wilson
2013-11-19  2:32 ` [PATCH 3/9] drm/i915: Use frame counter for intel_wait_for_vblank() on CTG Rodrigo Vivi
2013-11-19 13:46   ` Chris Wilson
2013-11-19 16:38     ` Daniel Vetter
2013-11-19 17:26       ` Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 4/9] drm/i915: Do hw quiescing first during unload Rodrigo Vivi
2013-11-19 17:43   ` Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 5/9] drm/i915: print object bindings in debugfs Rodrigo Vivi
2013-11-19 13:52   ` Chris Wilson
2013-11-19 17:37     ` Rodrigo Vivi
2013-11-20 11:03       ` Chris Wilson
2013-11-20 16:52         ` Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 6/9] drm/i915/vlv: enable HDMI audio for Valleyview2 Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 7/9] drm/i915: Hold pc8 lock around toggling pc8.gpu_idle Rodrigo Vivi
2013-11-19  2:32 ` [PATCH 8/9] drm/i915: Do not enable package C8 on unsupported hardware Rodrigo Vivi
2013-11-19 12:02   ` Daniel Vetter
2013-11-19  2:32 ` [PATCH 9/9] drm/i915: Enable pipe gamma for sprites Rodrigo Vivi
2013-11-19 17:42   ` Rodrigo Vivi
2013-11-21  8:10     ` Daniel Vetter
2013-11-19  2:35 ` [PATCH 0/9] drm-intel-collector - update Rodrigo Vivi
2013-11-19  3:28 ` Ausmus, James
2013-11-19 17:25   ` Rodrigo Vivi
2013-11-19 17:44     ` Rodrigo Vivi
  -- strict thread matches above, loose matches on Subject: below --
2014-02-07 20:36 Rodrigo Vivi
2015-04-15 23:52 Rodrigo Vivi

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=1384828358-31563-1-git-send-email-rodrigo.vivi@gmail.com \
    --to=rodrigo.vivi@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox