summaryrefslogtreecommitdiff
path: root/tests/kms-test-modeset.py
blob: f8a78ad2926bdf7841c9a65bb14ea9984ce7ebfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python3

import kmstest
import pykms

class ModeSetTest(kmstest.KMSTest):
    """Test mode setting on all connectors in sequence with the default mode."""

    def handle_page_flip(self, frame, time):
        self.logger.log("Page flip complete")

    def main(self):
        for connector in self.card.connectors:
            self.start("atomic mode set on connector %s" % connector.fullname)

            # Skip disconnected connectors
            if not connector.connected():
                self.skip("unconnected connector")
                continue

            # Find a CRTC suitable for the connector
            crtc = connector.get_current_crtc()
            if not crtc:
                crtcs = connector.get_possible_crtcs()
                if len(crtcs) == 0:
                    pass

                crtc = crtcs[0]

            # Get the default mode for the connector
            try:
                mode = connector.get_default_mode()
            except ValueError:
                self.skip("no mode available")
                continue

            self.logger.log("Testing connector %s on CRTC %u with mode %s" % \
                  (connector.fullname, crtc.id, mode.name))

            # Create a frame buffer
            fb = pykms.DumbFramebuffer(self.card, mode.hdisplay, mode.vdisplay, "XR24")
            pykms.draw_test_pattern(fb)

            # Perform a mode set
            ret = self.atomic_crtc_mode_set(crtc, connector, mode, fb)
            if ret < 0:
                self.fail("atomic mode set failed with %d" % ret)
                continue

            self.logger.log("Atomic mode set complete")
            self.run(5)
            self.atomic_crtc_disable(crtc)

            if self.flips == 0:
                self.fail("Page flip not registered")
            else:
                self.success()

ModeSetTest().execute()