Since VGA hpd detection is done through RGB lines load detection and
nowadays often goes through a bridge to some digital interface, HPD
detection usually takes a while (up to a couple seconds).

Thus, it is not as relevant to stress it as many as 15 times.
This brings the toggle count down to 5 times, which makes the test run
a lot faster without really changing the outcome much.

Signed-off-by: Paul Kocialkowski <paul.kocialkow...@linux.intel.com>
---
 tests/chamelium.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/tests/chamelium.c b/tests/chamelium.c
index 3ee57af6..01ae4cd7 100644
--- a/tests/chamelium.c
+++ b/tests/chamelium.c
@@ -46,6 +46,9 @@ typedef struct {
 #define HPD_STORM_PULSE_INTERVAL_DP 100 /* ms */
 #define HPD_STORM_PULSE_INTERVAL_HDMI 200 /* ms */
 
+#define HPD_TOGGLE_COUNT_VGA 5
+#define HPD_TOGGLE_COUNT_DP_HDMI 15
+
 /* Pre-calculated CRCs for the pattern fb, for all the modes in the default
  * chamelium edid
  */
@@ -159,7 +162,7 @@ reset_state(data_t *data, struct chamelium_port *port)
 }
 
 static void
-test_basic_hotplug(data_t *data, struct chamelium_port *port)
+test_basic_hotplug(data_t *data, struct chamelium_port *port, int toggle_count)
 {
        struct udev_monitor *mon = igt_watch_hotplug();
        int i;
@@ -167,7 +170,7 @@ test_basic_hotplug(data_t *data, struct chamelium_port 
*port)
        reset_state(data, NULL);
        igt_hpd_storm_set_threshold(data->drm_fd, 0);
 
-       for (i = 0; i < 15; i++) {
+       for (i = 0; i < toggle_count; i++) {
                igt_flush_hotplugs(mon);
 
                /* Check if we get a sysfs hotplug event */
@@ -685,7 +688,8 @@ igt_main
                }
 
                connector_subtest("dp-hpd", DisplayPort)
-                       test_basic_hotplug(&data, port);
+                       test_basic_hotplug(&data, port,
+                                          HPD_TOGGLE_COUNT_DP_HDMI);
 
                connector_subtest("dp-edid-read", DisplayPort) {
                        test_edid_read(&data, port, edid_id,
@@ -741,7 +745,8 @@ igt_main
                }
 
                connector_subtest("hdmi-hpd", HDMIA)
-                       test_basic_hotplug(&data, port);
+                       test_basic_hotplug(&data, port,
+                                          HPD_TOGGLE_COUNT_DP_HDMI);
 
                connector_subtest("hdmi-edid-read", HDMIA) {
                        test_edid_read(&data, port, edid_id,
@@ -797,7 +802,7 @@ igt_main
                }
 
                connector_subtest("vga-hpd", VGA)
-                       test_basic_hotplug(&data, port);
+                       test_basic_hotplug(&data, port, HPD_TOGGLE_COUNT_VGA);
 
                connector_subtest("vga-edid-read", VGA) {
                        test_edid_read(&data, port, edid_id,
-- 
2.13.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to