summaryrefslogtreecommitdiff
path: root/kms++/src/card.cpp
blob: 4632f223cd672720af93ba5e5fd12a54bc914895 (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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <utility>
#include <stdexcept>
#include <string.h>
#include <algorithm>
#include <cerrno>
#include <algorithm>

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

#include <kms++/kms++.h>

using namespace std;

namespace kms
{

static int open_device_by_path(string path)
{
	int fd = open(path.c_str(), O_RDWR | O_CLOEXEC);
	if (fd < 0)
		throw invalid_argument(string(strerror(errno)) + " opening device " + path);
	return fd;
}

// open Nth DRM card with the given driver name
static int open_device_by_driver(string name, uint32_t idx)
{
	uint32_t matches = 0;

	transform(name.begin(), name.end(), name.begin(), ::tolower);

	for (uint32_t i = 0; ; ++i) {
		string path = "/dev/dri/card" + to_string(i);

		int fd = open(path.c_str(), O_RDWR | O_CLOEXEC);
		if (fd < 0) {
			// presume no more card nodes
			throw invalid_argument("no card found for " + name + ":" + to_string(idx));
		}

		drmVersionPtr ver = drmGetVersion(fd);
		string drv_name = string(ver->name, ver->name_len);
		drmFreeVersion(ver);

		transform(drv_name.begin(), drv_name.end(), drv_name.begin(), ::tolower);

		if (name == drv_name) {
			if (idx == matches)
				return fd;
			matches++;
		}

		close(fd);
	}
}

Card::Card()
{
	const char* drv_p = getenv("KMSXX_DRIVER");
	const char* dev_p = getenv("KMSXX_DEVICE");

	if (dev_p) {
		string dev(dev_p);
		m_fd = open_device_by_path(dev);
	} else if (drv_p) {
		string drv(drv_p);

		auto isplit = find(drv.begin(), drv.end(), ':');

		if (isplit == drv.begin())
			throw runtime_error("Invalid KMSXX_DRIVER");

		string name;
		uint32_t num = 0;

		if (isplit == drv.end()) {
			name = drv;
		} else {
			name = string(drv.begin(), isplit);
			string numstr = string(isplit + 1, drv.end());
			num = stoul(numstr);
		}

		m_fd = open_device_by_driver(name, num);
	} else {
		m_fd = open_device_by_path("/dev/dri/card0");
	}

	setup();
}

Card::Card(const std::string& driver, uint32_t idx)
{
	m_fd = open_device_by_driver(driver, idx);

	setup();
}

Card::Card(const std::string& dev_path)
{
	m_fd = open_device_by_path(dev_path);

	setup();
}

void Card::setup()
{
	drmVersionPtr ver = drmGetVersion(m_fd);
	m_version_major = ver->version_major;
	m_version_minor = ver->version_minor;
	m_version_patchlevel = ver->version_patchlevel;
	m_version_name = string(ver->name, ver->name_len);
	m_version_date = string(ver->date, ver->date_len);
	m_version_desc = string(ver->desc, ver->desc_len);
	drmFreeVersion(ver);

	int r;

	r = drmSetMaster(m_fd);
	m_is_master = r == 0;

	if (getenv("KMSXX_DISABLE_UNIVERSAL_PLANES") == 0) {
		r = drmSetClientCap(m_fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
		m_has_universal_planes = r == 0;
	} else {
		m_has_universal_planes = false;
	}

#ifdef DRM_CLIENT_CAP_ATOMIC
	if (getenv("KMSXX_DISABLE_ATOMIC") == 0) {
		r = drmSetClientCap(m_fd, DRM_CLIENT_CAP_ATOMIC, 1);
		m_has_atomic = r == 0;
	} else {
		m_has_atomic = false;
	}
#else
	m_has_atomic = false;
#endif

	uint64_t has_dumb;
	r = drmGetCap(m_fd, DRM_CAP_DUMB_BUFFER, &has_dumb);
	m_has_dumb = r == 0 && has_dumb;

	auto res = drmModeGetResources(m_fd);
	if (res) {
		for (int i = 0; i < res->count_connectors; ++i) {
			uint32_t id = res->connectors[i];
			auto ob = new Connector(*this, id, i);
			m_obmap[id] = ob;
			m_connectors.push_back(ob);
		}

		for (int i = 0; i < res->count_crtcs; ++i) {
			uint32_t id = res->crtcs[i];
			auto ob = new Crtc(*this, id, i);
			m_obmap[id] = ob;
			m_crtcs.push_back(ob);
		}

		for (int i = 0; i < res->count_encoders; ++i) {
			uint32_t id = res->encoders[i];
			auto ob = new Encoder(*this, id, i);
			m_obmap[id] = ob;
			m_encoders.push_back(ob);
		}

		drmModeFreeResources(res);

		auto planeRes = drmModeGetPlaneResources(m_fd);
		if (planeRes) {
			for (uint i = 0; i < planeRes->count_planes; ++i) {
				uint32_t id = planeRes->planes[i];
				auto ob = new Plane(*this, id, i);
				m_obmap[id] = ob;
				m_planes.push_back(ob);
			}

			drmModeFreePlaneResources(planeRes);
		}
	}

	// collect all possible props
	for (auto ob : get_objects()) {
		auto props = drmModeObjectGetProperties(m_fd, ob->id(), ob->object_type());

		if (props == nullptr)
			continue;

		for (unsigned i = 0; i < props->count_props; ++i) {
			uint32_t prop_id = props->props[i];

			if (m_obmap.find(prop_id) == m_obmap.end()) {
				auto ob = new Property(*this, prop_id);
				m_obmap[prop_id] = ob;
				m_properties.push_back(ob);
			}
		}

		drmModeFreeObjectProperties(props);
	}

	for (auto pair : m_obmap)
		pair.second->setup();
}

Card::~Card()
{
	restore_modes();

	while (m_framebuffers.size() > 0)
		delete m_framebuffers.back();

	for (auto pair : m_obmap)
		delete pair.second;

	close(m_fd);
}

void Card::drop_master()
{
	drmDropMaster(fd());
	m_is_master = false;
}

void Card::restore_modes()
{
	for (auto conn : get_connectors())
		conn->restore_mode();
}

Connector* Card::get_first_connected_connector() const
{
	for(auto c : m_connectors) {
		if (c->connected())
			return c;
	}

	throw invalid_argument("no connected connectors");
}

DrmObject* Card::get_object(uint32_t id) const
{
	auto iter = m_obmap.find(id);
	if (iter != m_obmap.end())
		return iter->second;
	return nullptr;
}

const vector<DrmObject*> Card::get_objects() const
{
	vector<DrmObject*> v;
	for(auto pair : m_obmap)
		v.push_back(pair.second);
	return v;
}

Connector* Card::get_connector(uint32_t id) const { return dynamic_cast<Connector*>(get_object(id)); }
Crtc* Card::get_crtc(uint32_t id) const { return dynamic_cast<Crtc*>(get_object(id)); }
Encoder* Card::get_encoder(uint32_t id) const { return dynamic_cast<Encoder*>(get_object(id)); }
Property* Card::get_prop(uint32_t id) const { return dynamic_cast<Property*>(get_object(id)); }
Plane* Card::get_plane(uint32_t id) const { return dynamic_cast<Plane*>(get_object(id)); }

std::vector<kms::Pipeline> Card::get_connected_pipelines()
{
	vector<Pipeline> outputs;

	for (auto conn : get_connectors())
	{
		if (conn->connected() == false)
			continue;

		Crtc* crtc = conn->get_current_crtc();

		if (!crtc) {
			for (auto possible : conn->get_possible_crtcs()) {
				if (find_if(outputs.begin(), outputs.end(), [possible](Pipeline out) { return out.crtc == possible; }) == outputs.end()) {
					crtc = possible;
					break;
				}
			}
		}

		if (!crtc)
			throw invalid_argument(string("Connector #") +
					       to_string(conn->idx()) +
					       " has no possible crtcs");

		outputs.push_back(Pipeline { crtc, conn });
	}

	return outputs;
}

static void page_flip_handler(int fd, unsigned int frame,
			      unsigned int sec, unsigned int usec,
			      void *data)
{
	auto handler = (PageFlipHandlerBase*)data;
	double time = sec + usec / 1000000.0;
	handler->handle_page_flip(frame, time);
}

void Card::call_page_flip_handlers()
{
	drmEventContext ev { };
	ev.version = DRM_EVENT_CONTEXT_VERSION;
	ev.page_flip_handler = page_flip_handler;

	drmHandleEvent(fd(), &ev);
}

int Card::disable_all()
{
	AtomicReq req(*this);

	for (Crtc* c : m_crtcs) {
		req.add(c, {
				{ "ACTIVE", 0 },
			});
	}

	for (Plane* p : m_planes) {
		req.add(p, {
				{ "FB_ID", 0 },
				{ "CRTC_ID", 0 },
			});
	}

	return req.commit_sync(true);
}

}