From: Jani Nikula <jani.nikula@intel.com>
To: "Kandpal, Suraj" <suraj.kandpal@intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
"intel-xe@lists.freedesktop.org" <intel-xe@lists.freedesktop.org>
Subject: RE: [PATCH 00/12] drm/i915: struct intel_display conversions, part 2434235
Date: Thu, 27 Feb 2025 12:36:19 +0200 [thread overview]
Message-ID: <87y0xr3c9o.fsf@intel.com> (raw)
In-Reply-To: <SN7PR11MB675029123F2C57E96A96CB27E3CD2@SN7PR11MB6750.namprd11.prod.outlook.com>
On Thu, 27 Feb 2025, "Kandpal, Suraj" <suraj.kandpal@intel.com> wrote:
>> -----Original Message-----
>> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Jani
>> Nikula
>> Sent: Tuesday, February 25, 2025 10:19 PM
>> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
>> Cc: Nikula, Jani <jani.nikula@intel.com>
>> Subject: [PATCH 00/12] drm/i915: struct intel_display conversions, part
>> 2434235
>>
>> More of the same.
>
> LGTM,
> Reviewed-by: Suraj Kandpal <suraj.kandpal@intel.com>
Thanks for the review, pushed to drm-intel-next.
BR,
Jani.
> For the whole series
>
>>
>> Jani Nikula (12):
>> drm/i915/display: remove leftover struct drm_i915_private forward
>> declarations
>> drm/i915/debugfs: continue display debugfs struct intel_display
>> conversion
>> drm/i915/tdf: convert intel_tdf.[ch] to struct intel_display
>> drm/i915/snps: convert intel_snps_phy.[ch] to struct intel_display
>> drm/i915/dkl: convert intel_dkl_phy.[ch] to struct intel_display
>> drm/i915/drrs: convert intel_drrs.[ch] to struct intel_display
>> drm/i915/display: convert the M/N functions to struct intel_display
>> drm/i915/dpt: convert intel_dpt.[ch] interfaces to struct
>> intel_display
>> drm/i915/fbc: convert intel_fbc.[ch] to struct intel_display
>> drm/i915/rps: convert intel_display_rps.[ch] to struct intel_display
>> drm/i915/ddi: convert intel_wait_ddi_buf_idle() to struct
>> intel_display
>> drm/i915/fdi: convert intel_fdi.[ch] to struct intel_display
>>
>> drivers/gpu/drm/i915/display/intel_atomic.h | 1 -
>> .../gpu/drm/i915/display/intel_atomic_plane.c | 8 +-
>> drivers/gpu/drm/i915/display/intel_ddi.c | 11 +-
>> drivers/gpu/drm/i915/display/intel_ddi.h | 4 +-
>> .../drm/i915/display/intel_ddi_buf_trans.h | 1 -
>> drivers/gpu/drm/i915/display/intel_display.c | 102 ++--
>> drivers/gpu/drm/i915/display/intel_display.h | 8 +-
>> .../drm/i915/display/intel_display_debugfs.c | 26 +-
>> .../drm/i915/display/intel_display_debugfs.h | 6 +-
>> .../drm/i915/display/intel_display_driver.c | 8 +-
>> .../drm/i915/display/intel_display_power.c | 2 +-
>> .../gpu/drm/i915/display/intel_display_rps.c | 4 +-
>> .../gpu/drm/i915/display/intel_display_rps.h | 4 +-
>> drivers/gpu/drm/i915/display/intel_dkl_phy.c | 8 +-
>> drivers/gpu/drm/i915/display/intel_dkl_phy.h | 3 +-
>> drivers/gpu/drm/i915/display/intel_dp.c | 7 +-
>> drivers/gpu/drm/i915/display/intel_dpt.c | 24 +-
>> drivers/gpu/drm/i915/display/intel_dpt.h | 7 +-
>> drivers/gpu/drm/i915/display/intel_drrs.c | 45 +-
>> drivers/gpu/drm/i915/display/intel_drrs.h | 10 +-
>> drivers/gpu/drm/i915/display/intel_fbc.c | 113 ++---
>> drivers/gpu/drm/i915/display/intel_fbc.h | 6 +-
>> drivers/gpu/drm/i915/display/intel_fdi.c | 464 +++++++++---------
>> drivers/gpu/drm/i915/display/intel_fdi.h | 16 +-
>> .../gpu/drm/i915/display/intel_frontbuffer.c | 11 +-
>> drivers/gpu/drm/i915/display/intel_hdmi.h | 1 -
>> .../drm/i915/display/intel_modeset_verify.c | 3 +-
>> drivers/gpu/drm/i915/display/intel_overlay.h | 1 -
>> .../gpu/drm/i915/display/intel_pch_display.c | 35 +-
>> drivers/gpu/drm/i915/display/intel_pipe_crc.h | 1 -
>> drivers/gpu/drm/i915/display/intel_snps_phy.c | 75 ++-
>> drivers/gpu/drm/i915/display/intel_snps_phy.h | 6 +-
>> drivers/gpu/drm/i915/display/intel_tdf.h | 6 +-
>> drivers/gpu/drm/i915/i915_driver.c | 4 +-
>> drivers/gpu/drm/xe/display/xe_display_rps.c | 2 +-
>> drivers/gpu/drm/xe/display/xe_tdf.c | 6 +-
>> 36 files changed, 493 insertions(+), 546 deletions(-)
>>
>> --
>> 2.39.5
>
--
Jani Nikula, Intel
prev parent reply other threads:[~2025-02-27 10:36 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-25 16:49 [PATCH 00/12] drm/i915: struct intel_display conversions, part 2434235 Jani Nikula
2025-02-25 16:49 ` [PATCH 01/12] drm/i915/display: remove leftover struct drm_i915_private forward declarations Jani Nikula
2025-02-25 16:49 ` [PATCH 02/12] drm/i915/debugfs: continue display debugfs struct intel_display conversion Jani Nikula
2025-02-25 16:49 ` [PATCH 03/12] drm/i915/tdf: convert intel_tdf.[ch] to struct intel_display Jani Nikula
2025-02-25 16:49 ` [PATCH 04/12] drm/i915/snps: convert intel_snps_phy.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 05/12] drm/i915/dkl: convert intel_dkl_phy.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 06/12] drm/i915/drrs: convert intel_drrs.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 07/12] drm/i915/display: convert the M/N functions " Jani Nikula
2025-02-25 16:49 ` [PATCH 08/12] drm/i915/dpt: convert intel_dpt.[ch] interfaces " Jani Nikula
2025-02-25 16:49 ` [PATCH 09/12] drm/i915/fbc: convert intel_fbc.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 10/12] drm/i915/rps: convert intel_display_rps.[ch] " Jani Nikula
2025-02-25 16:49 ` [PATCH 11/12] drm/i915/ddi: convert intel_wait_ddi_buf_idle() " Jani Nikula
2025-02-25 16:49 ` [PATCH 12/12] drm/i915/fdi: convert intel_fdi.[ch] " Jani Nikula
2025-02-25 18:52 ` ✓ CI.Patch_applied: success for drm/i915: struct intel_display conversions, part 2434235 Patchwork
2025-02-25 18:52 ` ✗ CI.checkpatch: warning " Patchwork
2025-02-25 18:53 ` ✓ CI.KUnit: success " Patchwork
2025-02-25 19:10 ` ✓ CI.Build: " Patchwork
2025-02-25 19:12 ` ✓ CI.Hooks: " Patchwork
2025-02-25 19:14 ` ✗ CI.checksparse: warning " Patchwork
2025-02-25 19:32 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-26 1:15 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-27 10:16 ` [PATCH 00/12] " Kandpal, Suraj
2025-02-27 10:36 ` Jani Nikula [this message]
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=87y0xr3c9o.fsf@intel.com \
--to=jani.nikula@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=suraj.kandpal@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).