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 00/13] drm/i915: the great header refactoring, part three
Date: Thu,  2 May 2019 18:02:34 +0300	[thread overview]
Message-ID: <cover.1556809195.git.jani.nikula@intel.com> (raw)

Continue the header refactoring started in [1] and [2].

BR,
Jani.

[1] https://patchwork.freedesktop.org/series/59022/
[2] https://patchwork.freedesktop.org/series/60060/

Jani Nikula (13):
  drm/i915/dvo: move DVO chip types to intel_dvo.c
  drm/i915/dsi: move operation mode types to intel_dsi.h
  drm/i915: move ranges to intel_display.c
  drm/i915: remove unused/stale macros and comments from intel_drv.h
  drm/i915/csr: move CSR version macros to intel_csr.h
  drm/i915: extract intel_dpio_phy.h from i915_drv.h
  drm/i915: extract intel_lpe_audio.h from i915_drv.h
  drm/i915: extract intel_acpi.h from i915_drv.h
  drm/i915: extract i915_debugfs.h from i915_drv.h
  drm/i915: move i915_vgacntrl_reg() where needed
  drm/i915: make i915_utils.h self-contained
  drm/i915: move more generic utils to i915_utils.h
  drm/i915: extract intel_gmbus.h from i915_drv.h and rename intel_i2c.c

 drivers/gpu/drm/i915/Makefile                 |   2 +-
 drivers/gpu/drm/i915/Makefile.header-test     |   6 +
 drivers/gpu/drm/i915/i915_debugfs.c           |   2 +
 drivers/gpu/drm/i915/i915_debugfs.h           |  20 +++
 drivers/gpu/drm/i915/i915_drv.c               |   8 +-
 drivers/gpu/drm/i915/i915_drv.h               | 145 ----------------
 drivers/gpu/drm/i915/i915_gpu_error.c         |   1 +
 drivers/gpu/drm/i915/i915_irq.c               |   1 +
 drivers/gpu/drm/i915/i915_suspend.c           |   3 +-
 drivers/gpu/drm/i915/i915_utils.h             | 159 +++++++++++++++++-
 drivers/gpu/drm/i915/intel_acpi.c             |   3 +
 drivers/gpu/drm/i915/intel_acpi.h             |  17 ++
 drivers/gpu/drm/i915/intel_audio.c            |   2 +-
 drivers/gpu/drm/i915/intel_bios.c             |   2 +
 drivers/gpu/drm/i915/intel_crt.c              |   1 +
 drivers/gpu/drm/i915/intel_csr.h              |   4 +
 drivers/gpu/drm/i915/intel_ddi.c              |   2 +
 drivers/gpu/drm/i915/intel_display.c          |  29 +++-
 drivers/gpu/drm/i915/intel_dp.c               |   2 +
 drivers/gpu/drm/i915/intel_dp_mst.c           |   1 +
 drivers/gpu/drm/i915/intel_dpio_phy.c         |   1 +
 drivers/gpu/drm/i915/intel_dpio_phy.h         |  58 +++++++
 drivers/gpu/drm/i915/intel_dpll_mgr.c         |   1 +
 drivers/gpu/drm/i915/intel_drv.h              | 140 ---------------
 drivers/gpu/drm/i915/intel_dsi.h              |   3 +
 drivers/gpu/drm/i915/intel_dvo.c              |   6 +
 .../drm/i915/{intel_i2c.c => intel_gmbus.c}   |  27 ++-
 drivers/gpu/drm/i915/intel_gmbus.h            |  27 +++
 drivers/gpu/drm/i915/intel_hdmi.c             |   3 +
 drivers/gpu/drm/i915/intel_lpe_audio.c        |   8 +-
 drivers/gpu/drm/i915/intel_lpe_audio.h        |  22 +++
 drivers/gpu/drm/i915/intel_lvds.c             |   1 +
 drivers/gpu/drm/i915/intel_pipe_crc.h         |   3 +
 drivers/gpu/drm/i915/intel_runtime_pm.c       |   1 +
 drivers/gpu/drm/i915/intel_sdvo.c             |   1 +
 35 files changed, 408 insertions(+), 304 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/i915_debugfs.h
 create mode 100644 drivers/gpu/drm/i915/intel_acpi.h
 create mode 100644 drivers/gpu/drm/i915/intel_dpio_phy.h
 rename drivers/gpu/drm/i915/{intel_i2c.c => intel_gmbus.c} (98%)
 create mode 100644 drivers/gpu/drm/i915/intel_gmbus.h
 create mode 100644 drivers/gpu/drm/i915/intel_lpe_audio.h

-- 
2.20.1

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

             reply	other threads:[~2019-05-02 15:00 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-02 15:02 Jani Nikula [this message]
2019-05-02 15:02 ` [PATCH 01/13] drm/i915/dvo: move DVO chip types to intel_dvo.c Jani Nikula
2019-05-02 15:02 ` [PATCH 02/13] drm/i915/dsi: move operation mode types to intel_dsi.h Jani Nikula
2019-05-02 15:02 ` [PATCH 03/13] drm/i915: move ranges to intel_display.c Jani Nikula
2019-05-02 15:02 ` [PATCH 04/13] drm/i915: remove unused/stale macros and comments from intel_drv.h Jani Nikula
2019-05-02 15:02 ` [PATCH 05/13] drm/i915/csr: move CSR version macros to intel_csr.h Jani Nikula
2019-05-02 15:02 ` [PATCH 06/13] drm/i915: extract intel_dpio_phy.h from i915_drv.h Jani Nikula
2019-05-02 15:02 ` [PATCH 07/13] drm/i915: extract intel_lpe_audio.h " Jani Nikula
2019-05-02 15:02 ` [PATCH 08/13] drm/i915: extract intel_acpi.h " Jani Nikula
2019-05-02 15:02 ` [PATCH 09/13] drm/i915: extract i915_debugfs.h " Jani Nikula
2019-05-02 15:02 ` [PATCH 10/13] drm/i915: move i915_vgacntrl_reg() where needed Jani Nikula
2019-05-02 15:02 ` [PATCH 11/13] drm/i915: make i915_utils.h self-contained Jani Nikula
2019-05-02 15:02 ` [PATCH 12/13] drm/i915: move more generic utils to i915_utils.h Jani Nikula
2019-05-02 15:09   ` Chris Wilson
2019-05-02 15:02 ` [PATCH 13/13] drm/i915: extract intel_gmbus.h from i915_drv.h and rename intel_i2c.c Jani Nikula
2019-05-02 15:11 ` [PATCH 00/13] drm/i915: the great header refactoring, part three Chris Wilson
2019-05-03  7:10   ` Jani Nikula
2019-05-02 18:26 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2019-05-02 18:34 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-05-02 19:06 ` ✓ Fi.CI.BAT: success " Patchwork
2019-05-03  0:16 ` ✓ 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=cover.1556809195.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.