All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 00/30] Comments applied to dp_link_caps
@ 2026-06-23 22:45 Michał Grzelak
  2026-06-23 22:45 ` [PATCH v1 01/30] drm/i915/dp: Rename intel_dp_link_config to intel_dp_link_config_entry Michał Grzelak
                   ` (36 more replies)
  0 siblings, 37 replies; 39+ messages in thread
From: Michał Grzelak @ 2026-06-23 22:45 UTC (permalink / raw)
  To: intel-gfx, intel-xe
  Cc: Mika Kahola, Luca Coelho, Nemesa Garg, Imre Deak,
	Michał Grzelak

To not block review of Imre's v2 of part2 series [1] I've applied my
comments on top of it since they are not critical to the overall design,
and can be looked afterwards; assuming they are at all valid :). Unlike
previous times, now those resended patches should be free from
disappointing mistakes like eg. duplication of From: tag or missing
Signed-off-by: of resender.

BR,
Michał

[1] https://lore.kernel.org/intel-gfx/20260616200849.3534628-1-imre.deak@intel.com/

Imre Deak (28):
  drm/i915/dp: Rename intel_dp_link_config to intel_dp_link_config_entry
  drm/i915/dp: Add struct intel_dp_link_config
  drm/i915/dp_link_caps: Introduce DP link capability module
  drm/i915/dp_link_caps: Move common rate helpers to link caps
  drm/i915/dp_link_caps: Move forced link param helpers to link caps
  drm/i915/dp: Simplify querying of forced link parameters
  drm/i915/dp_link_caps: Move forced and max link debugfs entries to
    link caps
  drm/i915/dp_link_training: Use helpers to get forced link params
  drm/i915/dp_link_caps: Move forced link params to link_caps
  drm/i915/dp_link_caps: Move link config helpers to link caps
  drm/i915/dp_link_caps: Move link config tracking to link_caps
  drm/i915/dp_link_caps: Rename helper updating the link configurations
  drm/i915/dp: Factor out helper to get link rate capabilities
  drm/i915/dp_link_caps: Pass supported link rates to link caps update
  drm/i915/dp_link_caps: Add helper to print all supported link rates
  drm/i915/dp_link_caps: Add helper to get the number of supported link
    rates
  drm/i915/dp_link_caps: Add helper to get common rate index
  drm/i915/dp_link_caps: Move tracking of common rates to link_caps
    struct
  drm/i915/dp_link_caps: Track max common lane count in link_caps
  drm/i915/dp_link_caps: Use max common lane count from link_caps
  drm/i915/dp_link_caps: Add helpers to get max link limits
  drm/i915/dp_link_caps: Add helpers to set max link limits
  drm/i915/dp_link_caps: Add helper to reset max link limits
  drm/i915/dp_link_caps: Add helper to reset link_caps state
  drm/i915/dp_link_caps: Move max link limits to link_caps
  drm/i915/dp_link_caps: Pass link_caps to static functions
  drm/i915/dp_link_caps: Pass link_caps to config update/lookup helpers
  drm/i915/dp_link_caps: Pass link_caps to common rate helpers

Michał Grzelak (2):
  drm/i915/dp_link_caps: s/lc/lce/
  drm/i915/dp: return -EINVAL on failure

 drivers/gpu/drm/i915/Makefile                 |   1 +
 .../drm/i915/display/intel_display_debugfs.c  |   2 +
 .../drm/i915/display/intel_display_types.h    |  32 +-
 drivers/gpu/drm/i915/display/intel_dp.c       | 274 ++-----
 drivers/gpu/drm/i915/display/intel_dp.h       |   6 +-
 .../gpu/drm/i915/display/intel_dp_link_caps.c | 675 ++++++++++++++++++
 .../gpu/drm/i915/display/intel_dp_link_caps.h |  47 ++
 .../drm/i915/display/intel_dp_link_training.c | 318 +--------
 drivers/gpu/drm/i915/display/intel_dp_test.c  |   7 +-
 .../gpu/drm/i915/display/intel_dp_tunnel.c    |   6 +-
 drivers/gpu/drm/xe/Makefile                   |   1 +
 11 files changed, 854 insertions(+), 515 deletions(-)
 create mode 100644 drivers/gpu/drm/i915/display/intel_dp_link_caps.c
 create mode 100644 drivers/gpu/drm/i915/display/intel_dp_link_caps.h

-- 
2.45.2


^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2026-06-24 10:46 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-23 22:45 [PATCH v1 00/30] Comments applied to dp_link_caps Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 01/30] drm/i915/dp: Rename intel_dp_link_config to intel_dp_link_config_entry Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 02/30] drm/i915/dp: Add struct intel_dp_link_config Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 03/30] drm/i915/dp_link_caps: Introduce DP link capability module Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 04/30] drm/i915/dp_link_caps: Move common rate helpers to link caps Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 05/30] drm/i915/dp_link_caps: Move forced link param " Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 06/30] drm/i915/dp: Simplify querying of forced link parameters Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 07/30] drm/i915/dp_link_caps: Move forced and max link debugfs entries to link caps Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 08/30] drm/i915/dp_link_training: Use helpers to get forced link params Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 09/30] drm/i915/dp_link_caps: Move forced link params to link_caps Michał Grzelak
2026-06-23 22:45 ` [PATCH v1 10/30] drm/i915/dp_link_caps: Move link config helpers to link caps Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 11/30] drm/i915/dp_link_caps: Move link config tracking to link_caps Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 12/30] drm/i915/dp_link_caps: Rename helper updating the link configurations Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 13/30] drm/i915/dp: Factor out helper to get link rate capabilities Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 14/30] drm/i915/dp_link_caps: Pass supported link rates to link caps update Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 15/30] drm/i915/dp_link_caps: Add helper to print all supported link rates Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 16/30] drm/i915/dp_link_caps: Add helper to get the number of " Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 17/30] drm/i915/dp_link_caps: Add helper to get common rate index Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 18/30] drm/i915/dp_link_caps: Move tracking of common rates to link_caps struct Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 19/30] drm/i915/dp_link_caps: Track max common lane count in link_caps Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 20/30] drm/i915/dp_link_caps: Use max common lane count from link_caps Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 21/30] drm/i915/dp_link_caps: Add helpers to get max link limits Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 22/30] drm/i915/dp_link_caps: Add helpers to set " Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 23/30] drm/i915/dp_link_caps: Add helper to reset " Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 24/30] drm/i915/dp_link_caps: Add helper to reset link_caps state Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 25/30] drm/i915/dp_link_caps: Move max link limits to link_caps Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 26/30] drm/i915/dp_link_caps: Pass link_caps to static functions Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 27/30] drm/i915/dp_link_caps: Pass link_caps to config update/lookup helpers Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 28/30] drm/i915/dp_link_caps: Pass link_caps to common rate helpers Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 29/30] drm/i915/dp_link_caps: s/lc/lce/ Michał Grzelak
2026-06-23 22:46 ` [PATCH v1 30/30] drm/i915/dp: return -EINVAL on failure Michał Grzelak
2026-06-23 23:09 ` ✗ CI.checkpatch: warning for Comments applied to dp_link_caps Patchwork
2026-06-23 23:10 ` ✓ CI.KUnit: success " Patchwork
2026-06-23 23:46 ` ✓ Xe.CI.BAT: " Patchwork
2026-06-24  0:37 ` ✓ i915.CI.BAT: " Patchwork
2026-06-24  5:22 ` ✓ Xe.CI.FULL: " Patchwork
2026-06-24  8:12 ` [PATCH v1 00/30] " Jani Nikula
2026-06-24  8:25   ` Michał Grzelak
2026-06-24 10:46 ` ✓ i915.CI.Full: success for " Patchwork

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.