From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Cc: rodrigo.vivi@intel.com, jani.nikula@intel.com
Subject: [PATCH v2 00/12] drm/i915/display: bunch of struct intel_display conversions
Date: Thu, 24 Oct 2024 16:27:30 +0300 [thread overview]
Message-ID: <cover.1729776384.git.jani.nikula@intel.com> (raw)
Rebase and split patch 2 from, otherwise the same.
BR,
Jani.
[1] https://lore.kernel.org/r/cover.1729612605.git.jani.nikula@intel.com
Jani Nikula (12):
drm/i915/gmbus: convert to struct intel_display
drm/i915/cx0: remove unnecessary includes
drm/i915/cx0: convert to struct intel_display
drm/i915/dpio: convert to struct intel_display
drm/i915/hdcp: further conversion to struct intel_display
drm/i915/dp/hdcp: convert to struct intel_display
drm/i915/crt: convert to struct intel_display
drm/i915/display: convert vlv_wait_port_ready() to struct
intel_display
drm/i915/power: convert assert_chv_phy_status() to struct
intel_display
drm/i915/ips: convert to struct intel_display
drm/i915/dsi: convert to struct intel_display
drm/i915/de: remove unnecessary generic wrappers
drivers/gpu/drm/i915/display/g4x_dp.c | 3 +-
drivers/gpu/drm/i915/display/g4x_hdmi.c | 9 +-
drivers/gpu/drm/i915/display/hsw_ips.c | 47 +-
drivers/gpu/drm/i915/display/icl_dsi.c | 444 +++++++++---------
drivers/gpu/drm/i915/display/icl_dsi.h | 4 +-
drivers/gpu/drm/i915/display/intel_bios.c | 6 +-
drivers/gpu/drm/i915/display/intel_crt.c | 213 +++++----
drivers/gpu/drm/i915/display/intel_crt.h | 10 +-
drivers/gpu/drm/i915/display/intel_cx0_phy.c | 334 +++++++------
drivers/gpu/drm/i915/display/intel_cx0_phy.h | 8 +-
drivers/gpu/drm/i915/display/intel_ddi.c | 2 +-
drivers/gpu/drm/i915/display/intel_de.h | 46 +-
drivers/gpu/drm/i915/display/intel_display.c | 30 +-
drivers/gpu/drm/i915/display/intel_display.h | 2 +-
.../drm/i915/display/intel_display_driver.c | 11 +-
.../gpu/drm/i915/display/intel_display_irq.c | 11 +-
.../i915/display/intel_display_power_well.c | 114 +++--
drivers/gpu/drm/i915/display/intel_dp.c | 3 +-
drivers/gpu/drm/i915/display/intel_dp_hdcp.c | 93 ++--
drivers/gpu/drm/i915/display/intel_dpio_phy.c | 158 +++----
drivers/gpu/drm/i915/display/intel_dpio_phy.h | 22 +-
drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 6 +-
drivers/gpu/drm/i915/display/intel_dsi_vbt.c | 5 +-
drivers/gpu/drm/i915/display/intel_dvo.c | 8 +-
drivers/gpu/drm/i915/display/intel_gmbus.c | 290 ++++++------
drivers/gpu/drm/i915/display/intel_gmbus.h | 15 +-
.../gpu/drm/i915/display/intel_gmbus_regs.h | 16 +-
drivers/gpu/drm/i915/display/intel_hdcp.c | 30 +-
drivers/gpu/drm/i915/display/intel_hdcp.h | 10 +-
drivers/gpu/drm/i915/display/intel_hdmi.c | 11 +-
.../gpu/drm/i915/display/intel_hotplug_irq.c | 6 +-
drivers/gpu/drm/i915/display/intel_lvds.c | 2 +-
.../gpu/drm/i915/display/intel_pch_display.c | 3 +-
drivers/gpu/drm/i915/display/intel_sdvo.c | 9 +-
drivers/gpu/drm/i915/i915_suspend.c | 2 +-
drivers/gpu/drm/xe/display/xe_display.c | 4 +-
36 files changed, 1024 insertions(+), 963 deletions(-)
--
2.39.5
next reply other threads:[~2024-10-24 13:27 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-24 13:27 Jani Nikula [this message]
2024-10-24 13:27 ` [PATCH v2 01/12] drm/i915/gmbus: convert to struct intel_display Jani Nikula
2024-10-24 13:27 ` [PATCH v2 02/12] drm/i915/cx0: remove unnecessary includes Jani Nikula
2024-10-24 17:35 ` Rodrigo Vivi
2024-10-24 13:27 ` [PATCH v2 03/12] drm/i915/cx0: convert to struct intel_display Jani Nikula
2024-10-24 17:35 ` Rodrigo Vivi
2024-10-24 13:27 ` [PATCH v2 04/12] drm/i915/dpio: " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 05/12] drm/i915/hdcp: further conversion " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 06/12] drm/i915/dp/hdcp: convert " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 07/12] drm/i915/crt: " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 08/12] drm/i915/display: convert vlv_wait_port_ready() " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 09/12] drm/i915/power: convert assert_chv_phy_status() " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 10/12] drm/i915/ips: convert " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 11/12] drm/i915/dsi: " Jani Nikula
2024-10-24 13:27 ` [PATCH v2 12/12] drm/i915/de: remove unnecessary generic wrappers Jani Nikula
2024-10-24 13:54 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: bunch of struct intel_display conversions (rev2) Patchwork
2024-10-24 13:54 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-10-24 14:20 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-24 17:55 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-25 0:25 ` ✓ CI.Patch_applied: success " Patchwork
2024-10-25 0:26 ` ✗ CI.checkpatch: warning " Patchwork
2024-10-25 0:27 ` ✓ CI.KUnit: success " Patchwork
2024-10-25 0:38 ` ✓ CI.Build: " Patchwork
2024-10-25 0:41 ` ✓ CI.Hooks: " Patchwork
2024-10-25 0:42 ` ✗ CI.checksparse: warning " Patchwork
2024-10-25 1:08 ` ✗ CI.BAT: failure " Patchwork
2024-10-25 9:39 ` Jani Nikula
2024-10-26 9:50 ` ✗ CI.FULL: " Patchwork
2024-10-29 13:22 ` 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.1729776384.git.jani.nikula@intel.com \
--to=jani.nikula@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=rodrigo.vivi@intel.com \
/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.