All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rodrigo Vivi <rodrigo.vivi@kernel.org>
To: "José Roberto de Souza" <jose.souza@intel.com>
Cc: intel-xe@lists.freedesktop.org, rodrigo.vivi@intel.com
Subject: Re: [Intel-xe] [PATCH v2 00/15] Display fixes
Date: Tue, 2 May 2023 15:18:44 -0400	[thread overview]
Message-ID: <ZFFiFFmlc4b3ZDuw@rdvivi-mobl4> (raw)
In-Reply-To: <20230425192624.168640-1-jose.souza@intel.com>

On Tue, Apr 25, 2023 at 12:26:09PM -0700, José Roberto de Souza wrote:
> This patch series does 4 main things:
> - fix the dkl phy mutex initialization by:
> 	- backporting: https://patchwork.freedesktop.org/series/116431/
> 	- backporting: https://patchwork.freedesktop.org/patch/msgid/20230420170558.35398-1-jose.souza@intel.com
> 	- fixing display function calls
> 
> - enable modular fia in TGL
> 	- this patch will be gone in next Xe rebase as has_modular_fia
> 	was removed in drm-tip. Not backporting patches removing it
> 	because it is a huge series.
> 
> - Makes has_psr_hw_tracking default as 0, as only TGL and DG1 supports
> PSR HW tracking in Xe kmd
> 
> - Enable Raptorlake-P
> 
> v2:
> - function call fixes in 'squash! drm/xe/display: Implement display support'
> 
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/249

Since I'm delaying on the rebase I was expecting for this week, I went
ahead and pushed this series so we unblock folks.

As we agreed in the chat, I added you SoB in all the backported patches
you submit. Anyone in the way of patch deliverable needs to add the SoB
by the rules... Let's try to follow the rules even though these patches
will be gone on the next rebase so we don't end up accidentally missing
something behind...

> 
> Jani Nikula (10):
>   drm/i915/display: remove intel_display_commit_duplicated_state()
>   drm/i915/display: start high level display driver file
>   drm/i915/display: move intel_modeset_probe_defer() to
>     intel_display_driver.[ch]
>   drm/i915/display: rename intel_modeset_probe_defer() ->
>     intel_display_driver_probe_defer()
>   drm/i915/display: move modeset probe/remove functions to
>     intel_display_driver.c
>   drm/i915/display: rename intel_display_driver_* functions
>   drm/i915/display: add intel_display_reset.[ch]
>   drm/i915/display: move display suspend/resume to
>     intel_display_driver.[ch]
>   drm/i915/display: rename intel_display_driver_suspend/resume functions
>   drm/i915/display: add intel_display_driver_early_probe()
> 
> José Roberto de Souza (5):
>   drm/i915: Initialize dkl_phy spin lock from display code path
>   squash! drm/xe/display: Implement display support
>   TEMPORARY: drm/xe/display: Enable modular fia in TGL
>   drm/xe/display: Disable PSR HW tracking by default in all display
>     versions
>   drm/xe: Enable Raptorlake-P
> 
>  drivers/gpu/drm/i915/Makefile                 |   2 +
>  drivers/gpu/drm/i915/display/intel_display.c  | 693 +-----------------
>  drivers/gpu/drm/i915/display/intel_display.h  |  29 +-
>  .../drm/i915/display/intel_display_driver.c   | 585 +++++++++++++++
>  .../drm/i915/display/intel_display_driver.h   |  36 +
>  .../drm/i915/display/intel_display_reset.c    | 135 ++++
>  .../drm/i915/display/intel_display_reset.h    |  14 +
>  drivers/gpu/drm/i915/display/intel_dkl_phy.c  |   9 +
>  drivers/gpu/drm/i915/display/intel_dkl_phy.h  |   1 +
>  drivers/gpu/drm/i915/gt/intel_reset.c         |   6 +-
>  drivers/gpu/drm/i915/i915_driver.c            |  35 +-
>  drivers/gpu/drm/i915/i915_irq.c               |   2 +-
>  drivers/gpu/drm/i915/i915_pci.c               |   3 +-
>  drivers/gpu/drm/xe/Makefile                   |   1 +
>  drivers/gpu/drm/xe/xe_display.c               |  38 +-
>  drivers/gpu/drm/xe/xe_pci.c                   |   1 +
>  16 files changed, 854 insertions(+), 736 deletions(-)
>  create mode 100644 drivers/gpu/drm/i915/display/intel_display_driver.c
>  create mode 100644 drivers/gpu/drm/i915/display/intel_display_driver.h
>  create mode 100644 drivers/gpu/drm/i915/display/intel_display_reset.c
>  create mode 100644 drivers/gpu/drm/i915/display/intel_display_reset.h
> 
> -- 
> 2.40.0
> 

      parent reply	other threads:[~2023-05-02 19:18 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-25 19:26 [Intel-xe] [PATCH v2 00/15] Display fixes José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 01/15] drm/i915/display: remove intel_display_commit_duplicated_state() José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 02/15] drm/i915/display: start high level display driver file José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 03/15] drm/i915/display: move intel_modeset_probe_defer() to intel_display_driver.[ch] José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 04/15] drm/i915/display: rename intel_modeset_probe_defer() -> intel_display_driver_probe_defer() José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 05/15] drm/i915/display: move modeset probe/remove functions to intel_display_driver.c José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 06/15] drm/i915/display: rename intel_display_driver_* functions José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 07/15] drm/i915/display: add intel_display_reset.[ch] José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 08/15] drm/i915/display: move display suspend/resume to intel_display_driver.[ch] José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 09/15] drm/i915/display: rename intel_display_driver_suspend/resume functions José Roberto de Souza
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 10/15] drm/i915/display: add intel_display_driver_early_probe() José Roberto de Souza
2023-04-25 19:26 ` [Intel-gfx] [PATCH v2 11/15] drm/i915: Initialize dkl_phy spin lock from display code path José Roberto de Souza
2023-04-25 19:26   ` [Intel-xe] " José Roberto de Souza
2023-05-02 19:16   ` [Intel-gfx] " Rodrigo Vivi
2023-05-02 19:16     ` [Intel-xe] " Rodrigo Vivi
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 12/15] squash! drm/xe/display: Implement display support José Roberto de Souza
2023-05-03 19:43   ` Rodrigo Vivi
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 13/15] TEMPORARY: drm/xe/display: Enable modular fia in TGL José Roberto de Souza
2023-05-02 19:15   ` Rodrigo Vivi
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 14/15] drm/xe/display: Disable PSR HW tracking by default in all display versions José Roberto de Souza
2023-05-02 19:13   ` Rodrigo Vivi
2023-04-25 19:26 ` [Intel-xe] [PATCH v2 15/15] drm/xe: Enable Raptorlake-P José Roberto de Souza
2023-04-25 19:29 ` [Intel-xe] ✓ CI.Patch_applied: success for Display fixes (rev3) Patchwork
2023-04-25 19:30 ` [Intel-xe] ✓ CI.KUnit: " Patchwork
2023-04-25 19:34 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-04-25 19:57 ` [Intel-xe] ○ CI.BAT: info " Patchwork
2023-05-02 19:18 ` Rodrigo Vivi [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=ZFFiFFmlc4b3ZDuw@rdvivi-mobl4 \
    --to=rodrigo.vivi@kernel.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jose.souza@intel.com \
    --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.