summaryrefslogtreecommitdiff
path: root/tests/db.cpp
blob: e1c425f910bf4bb8b651fc0b49fa4c0b6957d131 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include <cstdio>
#include <algorithm>
#include <chrono>

#include <xf86drm.h>
#include <xf86drmMode.h>
#include <drm_fourcc.h>

#include "kms++.h"

#include "test.h"

using namespace std;
using namespace kms;

static void main_loop(Card& card);

class Flipper
{
public:
	Flipper(Card& card, unsigned width, unsigned height)
		: m_current(0), m_bar_xpos(0)
	{
		auto format = PixelFormat::XRGB8888;
		m_fbs[0] = new DumbFramebuffer(card, width, height, format);
		m_fbs[1] = new DumbFramebuffer(card, width, height, format);
	}

	~Flipper()
	{
		delete m_fbs[0];
		delete m_fbs[1];
	}

	Framebuffer* get_next()
	{
		m_current ^= 1;

		const int bar_width = 20;
		const int bar_speed = 8;

		auto fb = m_fbs[m_current];

		int current_xpos = m_bar_xpos;
		int old_xpos = (current_xpos + (fb->width() - bar_width - bar_speed)) % (fb->width() - bar_width);
		int new_xpos = (current_xpos + bar_speed) % (fb->width() - bar_width);

		draw_color_bar(*fb, old_xpos, new_xpos, bar_width);

		m_bar_xpos = new_xpos;

		return fb;
	}

private:
	DumbFramebuffer* m_fbs[2];

	int m_current;
	int m_bar_xpos;
};

class OutputFlipHandler : private PageFlipHandlerBase
{
public:
	OutputFlipHandler(Connector* conn, Crtc* crtc, const Videomode& mode)
		: m_connector(conn), m_crtc(crtc), m_mode(mode),
		  m_flipper(conn->card(), mode.hdisplay, mode.vdisplay)
	{
	}

	OutputFlipHandler(const OutputFlipHandler& other) = delete;
	OutputFlipHandler& operator=(const OutputFlipHandler& other) = delete;

	void set_mode()
	{
		auto mode = m_connector->get_default_mode();
		auto fb = m_flipper.get_next();
		int r = m_crtc->set_mode(m_connector, *fb, mode);
		ASSERT(r == 0);
	}

	void start_flipping()
	{
		m_t1 = std::chrono::steady_clock::now();
		m_frame_num = 0;
		queue_next();
	}

private:
	void handle_page_flip(uint32_t frame, double time)
	{
		++m_frame_num;

		if (m_frame_num  % 100 == 0) {
			auto t2 = std::chrono::steady_clock::now();
			std::chrono::duration<float> fsec = t2 - m_t1;
			printf("Output %d: fps %f\n", m_connector->idx(), 100.0 / fsec.count());
			m_t1 = t2;
		}

		queue_next();
	}

	void queue_next()
	{
		auto crtc = m_crtc;
		auto& card = crtc->card();

		auto fb = m_flipper.get_next();

		if (card.has_atomic()) {
			int r;

			AtomicReq req(card);

			req.add(m_crtc, "FB_ID", fb->id());

			r = req.test();
			ASSERT(r == 0);

			r = req.commit(this);
			ASSERT(r == 0);
		} else {
			int r = crtc->page_flip(*fb, this);
			ASSERT(r == 0);
		}
	}

private:
	Connector* m_connector;
	Crtc* m_crtc;
	Videomode m_mode;

	int m_frame_num;
	chrono::steady_clock::time_point m_t1;

	Flipper m_flipper;
};

int main()
{
	Card card;

	if (card.master() == false)
		printf("Not DRM master, modeset may fail\n");

	//card.print_short();

	vector<OutputFlipHandler*> outputs;

	for (auto pipe : card.get_connected_pipelines())
	{
		auto conn = pipe.connector;
		auto crtc = pipe.crtc;

		auto mode = conn->get_default_mode();

		auto output = new OutputFlipHandler(conn, crtc, mode);
		outputs.push_back(output);
	}

	for(auto out : outputs)
		out->set_mode();

	for(auto out : outputs)
		out->start_flipping();

	main_loop(card);

	for(auto out : outputs)
		delete out;
}

static void main_loop(Card& card)
{
	fd_set fds;

	FD_ZERO(&fds);

	int fd = card.fd();

	printf("press enter to exit\n");

	while (true) {
		int r;

		FD_SET(0, &fds);
		FD_SET(fd, &fds);

		r = select(fd + 1, &fds, NULL, NULL, NULL);
		if (r < 0) {
			fprintf(stderr, "select() failed with %d: %m\n", errno);
			break;
		} else if (FD_ISSET(0, &fds)) {
			fprintf(stderr, "exit due to user-input\n");
			break;
		} else if (FD_ISSET(fd, &fds)) {
			card.call_page_flip_handlers();
		}
	}
}