summaryrefslogtreecommitdiff
path: root/tests/kms-test-formats.py
blob: ae89bb54248501466a5df4a034f75a84db5b9a56 (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
60
61
62
63
#!/usr/bin/python3

import kmstest
import pykms
import time

class FormatsTest(kmstest.KMSTest):
    """Test all available plane formats."""

    def main(self):
        self.start("plane formats")

        # Find a CRTC with a connected connector and at least one plane
        for connector in self.card.connectors:
            if not connector.connected():
                self.skip("unconnected connector")
                continue

            try:
                mode = connector.get_default_mode()
            except ValueError:
                continue

            crtcs = connector.get_possible_crtcs()
            for crtc in crtcs:
                if crtc.primary_plane:
                    break
            else:
                crtc = None

            if crtc:
                break

        else:
            self.skip("no CRTC available with connector")
            return

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

        for format in crtc.primary_plane.formats:
            self.logger.log("Testing format %s" % format)

            # Create a frame buffer
            try:
                fb = pykms.DumbFramebuffer(self.card, mode.hdisplay, mode.vdisplay, format)
            except ValueError:
                continue

            pykms.draw_test_pattern(fb)

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

            self.run(3)

        self.atomic_crtc_disable(crtc)
        self.success()

FormatsTest().execute()