[RFC v4 05/22] tests/kms_properties: Add colorop properties test
Bhanuprakash Modem
bhanuprakash.modem at intel.com
Wed Feb 14 06:39:36 UTC 2024
From: Harry Wentland <harry.wentland at amd.com>
We've introduced the concept of a new DRM core object, the
drm_colorop, to represent a color operation as part of a
color pipeline.
Add new tests to kms_properties to test the properties of
a drm_colorop object.
v3:
- Update test to work without new libdrm definitions for
colorop objects
- Test colorop properties with both atomic and legacy
code paths
Signed-off-by: Harry Wentland <harry.wentland at amd.com>
---
tests/kms_properties.c | 71 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/kms_properties.c b/tests/kms_properties.c
index bd414f534..e33503303 100644
--- a/tests/kms_properties.c
+++ b/tests/kms_properties.c
@@ -49,6 +49,7 @@
* @crtc: CRTC
* @plane: Plane
* @invalid: Invalid (connector/crtc/plane)
+ * @colorop: Colorop
*
* arg[2]:
*
@@ -221,6 +222,39 @@ static void test_properties(int fd, uint32_t type, uint32_t id, bool atomic)
}
}
+static void run_colorop_property_tests(igt_display_t *display, enum pipe pipe, igt_output_t *output, bool atomic)
+{
+ struct igt_fb fb;
+ igt_plane_t *plane;
+ igt_colorop_t *colorop;
+ int i;
+ int colorop_id = 0;
+
+ prepare_pipe(display, pipe, output, &fb);
+
+ for_each_plane_on_pipe(display, pipe, plane) {
+ igt_info("Testing colorop properties on plane %s.#%d-%s (output: %s)\n",
+ kmstest_pipe_name(pipe), plane->index, kmstest_plane_type_name(plane->type), output->name);
+
+ /* iterate over all color pipelines on plane */
+ for (i = 0; i < plane->num_color_pipelines; ++i) {
+ /* iterate over all colorops in pipeline*/
+ colorop = plane->color_pipelines[i];
+ while (colorop) {
+ igt_info("Testing colorop properties on %s.#%d.#%d-%s (output: %s)\n",
+ kmstest_pipe_name(pipe), plane->index, colorop->id, kmstest_plane_type_name(plane->type), output->name);
+ test_properties(display->drm_fd, DRM_MODE_OBJECT_COLOROP, colorop->id, atomic);
+
+ colorop_id = igt_colorop_get_prop(display, colorop,
+ IGT_COLOROP_NEXT);
+ colorop = igt_find_colorop(display, colorop_id);
+ }
+ }
+ }
+
+ cleanup_pipe(display, pipe, output, &fb);
+}
+
static void run_plane_property_tests(igt_display_t *display, enum pipe pipe, igt_output_t *output, bool atomic)
{
struct igt_fb fb;
@@ -266,6 +300,35 @@ static void run_connector_property_tests(igt_display_t *display, enum pipe pipe,
cleanup_pipe(display, pipe, output, &fb);
}
+static void colorop_properties(igt_display_t *display, bool atomic)
+{
+ bool found_any = false, found;
+ igt_output_t *output;
+ enum pipe pipe;
+
+ /* colorops are only available with atomic */
+ igt_skip_on(!display->is_atomic);
+
+ for_each_pipe(display, pipe) {
+ found = false;
+
+ for_each_valid_output_on_pipe(display, pipe, output) {
+ igt_display_reset(display);
+
+ igt_output_set_pipe(output, pipe);
+ if (!i915_pipe_output_combo_valid(display))
+ continue;
+
+ found_any = found = true;
+
+ run_colorop_property_tests(display, pipe, output, atomic);
+ break;
+ }
+ }
+
+ igt_skip_on(!found_any);
+}
+
static void plane_properties(igt_display_t *display, bool atomic)
{
bool found_any = false, found;
@@ -799,6 +862,14 @@ igt_main
igt_subtest("plane-properties-atomic")
plane_properties(&display, true);
+ igt_describe("Tests colorop properties with atomic commit");
+ igt_subtest("colorop-properties-atomic")
+ colorop_properties(&display, true);
+
+ igt_describe("Tests colorop properties with legacy commit");
+ igt_subtest("colorop-properties-legacy")
+ colorop_properties(&display, false);
+
igt_describe("Tests crtc properties with legacy commit");
igt_subtest("crtc-properties-legacy")
crtc_properties(&display, false);
--
2.43.0
More information about the igt-dev
mailing list