From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: jani.nikula@intel.com
Subject: [Intel-gfx] [PATCH v4 00/11] drm/i915: refactor intel display
Date: Wed, 16 Dec 2020 13:29:07 +0200 [thread overview]
Message-ID: <cover.1608117676.git.jani.nikula@intel.com> (raw)
This is Dave's intel_display.c refactoring series [1] with some minor
issues addressed, to get CI results among other things.
I've reviewed and fixed any remaining minor issues I spotted in patches
1-8. I'm aware there may be things to improve, but I think this is
overall forward progress and cleanup that's long overdue. I'm prepared
to merge patches 1-8 unless there are strong objections.
I ran out of steam a little with patches 9-11, and haven't reviewed
them. They're included here just for completeness.
BR,
Jani.
[1] https://patchwork.freedesktop.org/series/84812/
Dave Airlie (11):
drm/i915/display: move needs_modeset to an inline in header
drm/i915/display: move to_intel_frontbuffer to header
drm/i915/display: fix misused comma
drm/i915: refactor cursor code out of i915_display.c
drm/i915: refactor some crtc code out of intel display.
drm/i915: refactor pll code out into intel_dpll.c
drm/i915: split fdi code out from intel_display.c
drm/i915: migrate hsw fdi code to new file.
drm/i915: migrate skl planes code new file
drm/i915: move pipe update code into crtc.
drm/i915: split fb scalable checks into g4x and skl versions
drivers/gpu/drm/i915/Makefile | 5 +
.../gpu/drm/i915/display/intel_atomic_plane.c | 76 -
drivers/gpu/drm/i915/display/intel_crt.c | 1 +
drivers/gpu/drm/i915/display/intel_crtc.c | 1187 +
drivers/gpu/drm/i915/display/intel_crtc.h | 22 +
drivers/gpu/drm/i915/display/intel_cursor.c | 806 +
drivers/gpu/drm/i915/display/intel_cursor.h | 17 +
drivers/gpu/drm/i915/display/intel_ddi.c | 197 +-
drivers/gpu/drm/i915/display/intel_ddi.h | 14 +-
drivers/gpu/drm/i915/display/intel_display.c | 20019 ++++++----------
drivers/gpu/drm/i915/display/intel_display.h | 46 +-
.../drm/i915/display/intel_display_types.h | 55 +
drivers/gpu/drm/i915/display/intel_dpll.c | 1363 ++
drivers/gpu/drm/i915/display/intel_dpll.h | 23 +
drivers/gpu/drm/i915/display/intel_fdi.c | 857 +
drivers/gpu/drm/i915/display/intel_fdi.h | 29 +
.../gpu/drm/i915/display/intel_gen9_plane.c | 2832 +++
drivers/gpu/drm/i915/display/intel_sprite.c | 1712 +-
18 files changed, 14739 insertions(+), 14522 deletions(-)
create mode 100644 drivers/gpu/drm/i915/display/intel_crtc.c
create mode 100644 drivers/gpu/drm/i915/display/intel_crtc.h
create mode 100644 drivers/gpu/drm/i915/display/intel_cursor.c
create mode 100644 drivers/gpu/drm/i915/display/intel_cursor.h
create mode 100644 drivers/gpu/drm/i915/display/intel_dpll.c
create mode 100644 drivers/gpu/drm/i915/display/intel_dpll.h
create mode 100644 drivers/gpu/drm/i915/display/intel_fdi.c
create mode 100644 drivers/gpu/drm/i915/display/intel_fdi.h
create mode 100644 drivers/gpu/drm/i915/display/intel_gen9_plane.c
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next reply other threads:[~2020-12-16 11:29 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-16 11:29 Jani Nikula [this message]
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 01/11] drm/i915/display: move needs_modeset to an inline in header Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 02/11] drm/i915/display: move to_intel_frontbuffer to header Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 03/11] drm/i915/display: fix misused comma Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 04/11] drm/i915: refactor cursor code out of i915_display.c Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 05/11] drm/i915: refactor some crtc code out of intel display Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 06/11] drm/i915: refactor pll code out into intel_dpll.c Jani Nikula
2020-12-16 11:58 ` Ville Syrjälä
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 07/11] drm/i915: split fdi code out from intel_display.c Jani Nikula
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 08/11] drm/i915: migrate hsw fdi code to new file Jani Nikula
2020-12-16 12:19 ` Ville Syrjälä
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 09/11] drm/i915: migrate skl planes code " Jani Nikula
2020-12-16 12:11 ` Ville Syrjälä
2020-12-16 15:21 ` [Intel-gfx] [kbuild] " Dan Carpenter
2020-12-16 15:21 ` [kbuild] Re: [Intel-gfx] " Dan Carpenter
2020-12-16 15:21 ` Dan Carpenter
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 10/11] drm/i915: move pipe update code into crtc Jani Nikula
2020-12-16 12:13 ` Ville Syrjälä
2020-12-16 11:29 ` [Intel-gfx] [PATCH v4 11/11] drm/i915: split fb scalable checks into g4x and skl versions Jani Nikula
2020-12-16 12:16 ` Ville Syrjälä
2020-12-16 12:54 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/i915: refactor intel display 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.1608117676.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.