Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst
@ 2025-02-17  6:42 Kunal Joshi
  2025-02-17  6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Kunal Joshi @ 2025-02-17  6:42 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Add new test kms_dp_link_training to validate both
UHBR and non-UHBR link rates over SST and MST configurations.
Add four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst)
to check if the link rates match the expected UHBR or NON-UHBR capability
and whether the outputs are MST or SST.

Kunal Joshi (4):
  tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform
  tests/intel/kms_joiner_helper: add helper for joiner-related functions
  lib/igt_kms: add function to set link params
  tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over
    SST/MST

 lib/igt_kms.c                      |  33 +++
 lib/igt_kms.h                      |   2 +
 tests/intel/kms_dp_link_training.c | 378 +++++++++++++++++++++++++++++
 tests/intel/kms_joiner.c           |  15 +-
 tests/intel/kms_joiner_helper.c    | 181 ++++++++++++++
 tests/intel/kms_joiner_helper.h    |  20 ++
 tests/meson.build                  |   5 +
 7 files changed, 621 insertions(+), 13 deletions(-)
 create mode 100644 tests/intel/kms_dp_link_training.c
 create mode 100644 tests/intel/kms_joiner_helper.c
 create mode 100644 tests/intel/kms_joiner_helper.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst
@ 2025-02-18 15:01 Kunal Joshi
  2025-02-20  6:40 ` Joshi, Kunal1
  0 siblings, 1 reply; 13+ messages in thread
From: Kunal Joshi @ 2025-02-18 15:01 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Add new test kms_dp_link_training to validate both
UHBR and non-UHBR link rates over SST and MST configurations.
Add four new subtests (uhbr-sst, uhbr-mst, non-uhbr-sst, non-uhbr-mst)
to check if the link rates match the expected UHBR or NON-UHBR capability
and whether the outputs are MST or SST.

Kunal Joshi (4):
  tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform
  tests/intel/kms_joiner_helper: add helper for joiner-related functions
  lib/igt_kms: add function to set link params
  tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over
    SST/MST

 lib/igt_kms.c                      |  33 +++
 lib/igt_kms.h                      |   2 +
 tests/intel/kms_dp_link_training.c | 384 +++++++++++++++++++++++++++++
 tests/intel/kms_joiner.c           |  15 +-
 tests/intel/kms_joiner_helper.c    | 181 ++++++++++++++
 tests/intel/kms_joiner_helper.h    |  20 ++
 tests/meson.build                  |   5 +
 7 files changed, 627 insertions(+), 13 deletions(-)
 create mode 100644 tests/intel/kms_dp_link_training.c
 create mode 100644 tests/intel/kms_joiner_helper.c
 create mode 100644 tests/intel/kms_joiner_helper.h

-- 
2.25.1


^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst
@ 2024-12-31 14:15 Kunal Joshi
  0 siblings, 0 replies; 13+ messages in thread
From: Kunal Joshi @ 2024-12-31 14:15 UTC (permalink / raw)
  To: igt-dev; +Cc: Kunal Joshi

Add new test validating UHBR and non-UHBR link rates for
both SST and MST configurations. The series comprises three patches:

1. tests/intel/kms_joiner_helper:
   - Introduces kms_joiner_helper.c/h for pipe assignments taking care of joiners
   - Moves common joiner-related logic out of kms_joiner.c.

2. tests/intel/kms_mst_helper:
   - Adds kms_mst_helper.c/h for MST-specific operations.
   - Centralizes code for identifying and assigning MST outputs.

3. tests/kms_feature_discovery:
   - Implements tests verifying UHBR and non-UHBR link rates with SST and MST.
   - Uses the new helpers for pipe assignments and topology discovery.

Kunal Joshi (4):
  tests/intel/kms_joiner_helper: helper for joiner-related functions
  tests/intel/kms_mst_helper: Add helper for MST-related functions
  tests/kms_feature_discovery: Add tests for UHBR/non-UHBR over SST/MST
  HAX: DO NOT MERGE

 tests/intel-ci/fast-feedback.testlist    |  14 ++
 tests/intel-ci/xe-fast-feedback.testlist |  14 ++
 tests/intel/kms_dp_linktrain_fallback.c  |  28 +---
 tests/intel/kms_joiner.c                 |  15 +-
 tests/intel/kms_joiner_helper.c          | 179 +++++++++++++++++++++++
 tests/intel/kms_joiner_helper.h          |  15 ++
 tests/intel/kms_mst_helper.c             |  48 ++++++
 tests/intel/kms_mst_helper.h             |  10 ++
 tests/kms_feature_discovery.c            | 171 ++++++++++++++++++++++
 tests/meson.build                        |   6 +
 10 files changed, 463 insertions(+), 37 deletions(-)
 create mode 100644 tests/intel/kms_joiner_helper.c
 create mode 100644 tests/intel/kms_joiner_helper.h
 create mode 100644 tests/intel/kms_mst_helper.c
 create mode 100644 tests/intel/kms_mst_helper.h

-- 
2.25.1


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

end of thread, other threads:[~2025-02-20  6:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-17  6:42 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-17  6:42 ` [PATCH i-g-t 1/4] tests/intel/kms_joiner: refactor set_all_master_pipes_for_platform Kunal Joshi
2025-02-18  7:51   ` B, Jeevan
2025-02-17  6:42 ` [PATCH i-g-t 2/4] tests/intel/kms_joiner_helper: add helper for joiner-related functions Kunal Joshi
2025-02-17  6:42 ` [PATCH i-g-t 3/4] lib/igt_kms: add function to set link params Kunal Joshi
2025-02-17  6:42 ` [PATCH i-g-t 4/4] tests/intel/kms_dp_link_training: add tests for UHBR/NON-UHBR over SST/MST Kunal Joshi
2025-02-17 10:08 ` ✓ i915.CI.BAT: success for add test to validate uhbr/non-uhbr over sst/mst (rev4) Patchwork
2025-02-17 10:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-02-17 12:47 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-17 16:02 ` ✗ Xe.CI.Full: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2025-02-18 15:01 [PATCH i-g-t 0/4] add test to validate uhbr/non-uhbr over sst/mst Kunal Joshi
2025-02-20  6:40 ` Joshi, Kunal1
2024-12-31 14:15 Kunal Joshi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox