All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link M/N/TU and PBN values
@ 2023-11-16 13:18 Imre Deak
  2023-11-16 13:18   ` [Intel-gfx] " Imre Deak
                   ` (23 more replies)
  0 siblings, 24 replies; 68+ messages in thread
From: Imre Deak @ 2023-11-16 13:18 UTC (permalink / raw)
  To: intel-gfx

This is v2 of [1], with the following changes:
- Store the pbn_div value in fixed point format.
- Fix PBN calculation in patch 8.
- Reuse intel_dp_max_data_rate(), intel_dp_effective_data_rate() in
  intel_link_compute_m_n() (Jani).

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

Cc: Arun R Murthy <arun.r.murthy@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Lyude Paul <lyude@redhat.com>

Imre Deak (11):
  drm/dp_mst: Store the MST PBN divider value in fixed point format
  drm/dp_mst: Fix PBN divider calculation for UHBR rates
  drm/dp_mst: Add kunit tests for drm_dp_get_vc_payload_bw()
  drm/i915/dp: Replace intel_dp_is_uhbr_rate() with
    drm_dp_is_uhbr_rate()
  drm/i915/dp: Account for channel coding efficiency on UHBR links
  drm/i915/dp: Fix UHBR link M/N values
  drm/i915/dp_mst: Calculate the BW overhead in
    intel_dp_mst_find_vcpi_slots_for_bpp()
  drm/i915/dp_mst: Fix PBN / MTP_TU size calculation for UHBR rates
  drm/i915/dp: Report a rounded-down value as the maximum data rate
  drm/i915/dp: Simplify intel_dp_max_data_rate()
  drm/i915/dp: Reuse intel_dp_{max,effective}_data_rate in
    intel_link_compute_m_n()

 .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |   5 +-
 .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c |   3 +-
 .../display/amdgpu_dm/amdgpu_dm_mst_types.c   |   5 +-
 drivers/gpu/drm/display/drm_dp_mst_topology.c |  31 +++-
 drivers/gpu/drm/i915/display/intel_display.c  |  51 ++----
 drivers/gpu/drm/i915/display/intel_dp.c       |  78 +++++++---
 drivers/gpu/drm/i915/display/intel_dp.h       |   5 +-
 drivers/gpu/drm/i915/display/intel_dp_mst.c   |  55 +++++--
 drivers/gpu/drm/nouveau/dispnv50/disp.c       |   6 +-
 .../gpu/drm/tests/drm_dp_mst_helper_test.c    | 145 ++++++++++++++++++
 include/drm/display/drm_dp_helper.h           |  13 ++
 include/drm/display/drm_dp_mst_helper.h       |   7 +-
 12 files changed, 311 insertions(+), 93 deletions(-)

-- 
2.39.2


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

end of thread, other threads:[~2023-11-21 22:42 UTC | newest]

Thread overview: 68+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-16 13:18 [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link M/N/TU and PBN values Imre Deak
2023-11-16 13:18 ` [PATCH v2 01/11] drm/dp_mst: Store the MST PBN divider value in fixed point format Imre Deak
2023-11-16 13:18   ` Imre Deak
2023-11-16 13:18   ` [Intel-gfx] " Imre Deak
2023-11-17 10:56   ` Ville Syrjälä
2023-11-17 10:56     ` [Intel-gfx] " Ville Syrjälä
2023-11-17 14:11     ` Imre Deak
2023-11-17 14:11       ` [Intel-gfx] " Imre Deak
2023-11-21 13:54   ` Imre Deak
2023-11-21 13:54     ` [Intel-gfx] " Imre Deak
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 02/11] drm/dp_mst: Fix PBN divider calculation for UHBR rates Imre Deak
2023-11-16 13:18   ` Imre Deak
2023-11-17 11:00   ` [Intel-gfx] " Ville Syrjälä
2023-11-17 13:58     ` Imre Deak
2023-11-17 15:09   ` [Intel-gfx] [PATCH v3 " Imre Deak
2023-11-17 15:09     ` Imre Deak
2023-11-17 16:21     ` [Intel-gfx] " Ville Syrjälä
2023-11-17 16:21       ` Ville Syrjälä
2023-11-17 19:40       ` [Intel-gfx] " Rodrigo Vivi
2023-11-21 13:39         ` Maarten Lankhorst
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 03/11] drm/dp_mst: Add kunit tests for drm_dp_get_vc_payload_bw() Imre Deak
2023-11-16 13:18   ` Imre Deak
2023-11-17 11:04   ` [Intel-gfx] " Ville Syrjälä
2023-11-17 14:35     ` Imre Deak
2023-11-17 15:09   ` [Intel-gfx] [PATCH v3 " Imre Deak
2023-11-17 15:09     ` Imre Deak
2023-11-17 15:27     ` [Intel-gfx] [PATCH v4 " Imre Deak
2023-11-17 15:27       ` Imre Deak
2023-11-17 16:18       ` [Intel-gfx] " Ville Syrjälä
2023-11-17 16:18         ` Ville Syrjälä
2023-11-20 12:52       ` [Intel-gfx] [PATCH v5 " Imre Deak
2023-11-20 12:52         ` Imre Deak
2023-11-18 23:41   ` [Intel-gfx] [PATCH v2 " kernel test robot
2023-11-18 23:41     ` kernel test robot
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 04/11] drm/i915/dp: Replace intel_dp_is_uhbr_rate() with drm_dp_is_uhbr_rate() Imre Deak
2023-11-17  3:21   ` Murthy, Arun R
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 05/11] drm/i915/dp: Account for channel coding efficiency on UHBR links Imre Deak
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 06/11] drm/i915/dp: Fix UHBR link M/N values Imre Deak
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 07/11] drm/i915/dp_mst: Calculate the BW overhead in intel_dp_mst_find_vcpi_slots_for_bpp() Imre Deak
2023-11-17  9:18   ` Murthy, Arun R
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 08/11] drm/i915/dp_mst: Fix PBN / MTP_TU size calculation for UHBR rates Imre Deak
2023-11-17 15:09   ` [Intel-gfx] [PATCH v3 " Imre Deak
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 09/11] drm/i915/dp: Report a rounded-down value as the maximum data rate Imre Deak
2023-11-17 11:43   ` Lisovskiy, Stanislav
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 10/11] drm/i915/dp: Simplify intel_dp_max_data_rate() Imre Deak
2023-11-17 17:10   ` Ville Syrjälä
2023-11-16 13:18 ` [Intel-gfx] [PATCH v2 11/11] drm/i915/dp: Reuse intel_dp_{max, effective}_data_rate in intel_link_compute_m_n() Imre Deak
2023-11-17 17:11   ` Ville Syrjälä
2023-11-16 16:55 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fix UHBR data, link M/N/TU and PBN values Patchwork
2023-11-16 16:55 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-11-16 17:09 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-11-17 14:11 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2023-11-17 20:23 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fix UHBR data, link M/N/TU and PBN values (rev5) Patchwork
2023-11-17 20:23 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-11-17 20:37 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-11-18 17:09 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
2023-11-20 12:31 ` [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link M/N/TU and PBN values Jani Nikula
2023-11-20 12:31   ` [PATCH v2 00/11] drm/i915: Fix UHBR data,link " Jani Nikula
2023-11-20 13:10   ` [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link " Imre Deak
2023-11-20 13:10     ` [PATCH v2 00/11] drm/i915: Fix UHBR data,link " Imre Deak
2023-11-20 13:36     ` [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link " Jani Nikula
2023-11-20 13:36       ` [PATCH v2 00/11] drm/i915: Fix UHBR data,link " Jani Nikula
2023-11-21  2:23 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Fix UHBR data, link M/N/TU and PBN values (rev6) Patchwork
2023-11-21  2:23 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-11-21  2:37 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-11-21 20:54   ` Imre Deak
2023-11-21 20:54     ` [Intel-gfx] " Imre Deak
2023-11-21 22:42 ` [Intel-gfx] [PATCH v2 00/11] drm/i915: Fix UHBR data, link M/N/TU and PBN values Lyude Paul

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.