All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [PATCH 0/6] drm/i915: start splitting off runtime device info
Date: Mon, 31 Dec 2018 16:56:40 +0200	[thread overview]
Message-ID: <cover.1546267488.git.jani.nikula@intel.com> (raw)

The mkwrite_device_info removal series [1] seems to have stalled. I'm
trying to nudge things forward a bit with this series. This isn't near
as complete as Tvrtko's work, but does some of the prep work I wanted,
specifically using INTEL_INFO() and RUNTIME_INFO() to access the
fields. There are obviously conflicts, but mostly I think this should
make the rest of Tvrtko's work easier, not harder.

BR,
Jani.


[1] https://patchwork.freedesktop.org/series/52381/

Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>


Jani Nikula (6):
  drm/i915: start moving runtime device info to a separate struct
  drm/i915/reg: abstract display_mmio_offset access
  drm/i915: pass dev_priv to intel_device_info_runtime_init()
  drm/i915: always use INTEL_INFO() to access device info
  drm/i915: drop intel_device_info_dump()
  drm/i915: rename dev_priv info to __info to avoid usage

 drivers/gpu/drm/i915/i915_debugfs.c               |  26 +--
 drivers/gpu/drm/i915/i915_drv.c                   |  26 +--
 drivers/gpu/drm/i915/i915_drv.h                   | 104 ++++++-----
 drivers/gpu/drm/i915/i915_gpu_error.c             |   9 +-
 drivers/gpu/drm/i915/i915_gpu_error.h             |   1 +
 drivers/gpu/drm/i915/i915_perf.c                  |   4 +-
 drivers/gpu/drm/i915/i915_query.c                 |   2 +-
 drivers/gpu/drm/i915/i915_reg.h                   | 200 +++++++++++-----------
 drivers/gpu/drm/i915/intel_device_info.c          |  80 ++++-----
 drivers/gpu/drm/i915/intel_device_info.h          |  29 ++--
 drivers/gpu/drm/i915/intel_display.c              |   2 +-
 drivers/gpu/drm/i915/intel_display.h              |   6 +-
 drivers/gpu/drm/i915/intel_engine_cs.c            |   4 +-
 drivers/gpu/drm/i915/intel_lrc.c                  |  14 +-
 drivers/gpu/drm/i915/intel_pm.c                   |   2 +-
 drivers/gpu/drm/i915/intel_ringbuffer.c           |   2 +-
 drivers/gpu/drm/i915/intel_ringbuffer.h           |   4 +-
 drivers/gpu/drm/i915/intel_uncore.c               |   6 +-
 drivers/gpu/drm/i915/intel_workarounds.c          |   6 +-
 drivers/gpu/drm/i915/selftests/i915_gem_context.c |   6 +-
 drivers/gpu/drm/i915/selftests/intel_lrc.c        |   4 +-
 21 files changed, 267 insertions(+), 270 deletions(-)

-- 
2.11.0

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

             reply	other threads:[~2018-12-31 14:56 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-31 14:56 Jani Nikula [this message]
2018-12-31 14:56 ` [PATCH 1/6] drm/i915: start moving runtime device info to a separate struct Jani Nikula
2019-01-02  9:27   ` Tvrtko Ursulin
2019-01-02 10:21     ` Jani Nikula
2018-12-31 14:56 ` [PATCH 2/6] drm/i915/reg: abstract display_mmio_offset access Jani Nikula
2019-01-02  9:37   ` Tvrtko Ursulin
2018-12-31 14:56 ` [PATCH 3/6] drm/i915: pass dev_priv to intel_device_info_runtime_init() Jani Nikula
2019-01-02  9:38   ` Tvrtko Ursulin
2018-12-31 14:56 ` [PATCH 4/6] drm/i915: always use INTEL_INFO() to access device info Jani Nikula
2019-01-02  9:58   ` Tvrtko Ursulin
2018-12-31 14:56 ` [PATCH 5/6] drm/i915: drop intel_device_info_dump() Jani Nikula
2019-01-02 10:02   ` Tvrtko Ursulin
2019-01-02 10:42     ` Jani Nikula
2019-01-02 11:09       ` Tvrtko Ursulin
2018-12-31 14:56 ` [PATCH 6/6] drm/i915: rename dev_priv info to __info to avoid usage Jani Nikula
2019-01-02 10:04   ` Tvrtko Ursulin
2019-01-02 10:44     ` Jani Nikula
2019-01-02 11:10       ` Tvrtko Ursulin
2018-12-31 15:07 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915: start splitting off runtime device info Patchwork
2018-12-31 15:10 ` ✗ Fi.CI.SPARSE: " Patchwork
2018-12-31 15:43 ` ✓ Fi.CI.BAT: success " Patchwork
2018-12-31 17:53 ` ✓ Fi.CI.IGT: " Patchwork
2019-01-01 10:31 ` [PATCH 0/6] " Chris Wilson
2019-01-02  9:13   ` Jani Nikula
2019-01-02 10:17     ` Tvrtko Ursulin
2019-01-02 11:19       ` Jani Nikula

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=cover.1546267488.git.jani.nikula@intel.com \
    --to=jani.nikula@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.