[PATCH i-g-t, v4 1/9] lib/igt_kms: Add "sharpness strength" as crtc property

Swati Sharma swati2.sharma at intel.com
Tue Dec 31 13:02:33 UTC 2024


Add "sharpness strength" as crtc property.

v2: Replace SHARPENESS_STRENGTH with SHARPNESS_STRENGTH. (Nemesa)
v3: Rebase
v4: Rebase

Signed-off-by: Swati Sharma <swati2.sharma at intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem at intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal at intel.com>
---
 lib/igt_kms.c | 4 ++++
 lib/igt_kms.h | 1 +
 2 files changed, 5 insertions(+)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index a67d17c4f..2a26c6c0e 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -717,6 +717,7 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
 	[IGT_CRTC_HISTOGRAM] = "HISTOGRAM_ENABLE",
 	[IGT_CRTC_GLOBAL_HISTOGRAM] = "HISTOGRAM_DATA",
 	[IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR] = "HISTOGRAM_IET",
+	[IGT_CRTC_SHARPNESS_STRENGTH] = "SHARPNESS_STRENGTH",
 };
 
 const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2621,6 +2622,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
 	if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_HISTOGRAM))
 		igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_HISTOGRAM, 0);
 
+	if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH))
+		igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_SHARPNESS_STRENGTH, 0);
+
 	pipe->out_fence_fd = -1;
 }
 
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 1e2a927ab..bfd297a93 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -168,6 +168,7 @@ enum igt_atomic_crtc_properties {
        IGT_CRTC_HISTOGRAM,
        IGT_CRTC_GLOBAL_HISTOGRAM,
        IGT_CRTC_GLOBAL_HIST_PIXEL_FACTOR,
+       IGT_CRTC_SHARPNESS_STRENGTH,
        IGT_NUM_CRTC_PROPS
 };
 
-- 
2.25.1



More information about the igt-dev mailing list