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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/ozone/platform/dri/dri_wrapper.h"
#include <fcntl.h>
#include <sys/mman.h>
#include <unistd.h>
#include <xf86drm.h>
#include <xf86drmMode.h>
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/stl_util.h"
#include "base/task_runner.h"
#include "base/thread_task_runner_handle.h"
#include "base/trace_event/trace_event.h"
#include "third_party/skia/include/core/SkImageInfo.h"
#include "ui/ozone/platform/dri/dri_util.h"
#include "ui/ozone/platform/dri/hardware_display_plane_manager_legacy.h"
namespace ui {
namespace {
struct PageFlipPayload {
PageFlipPayload(const scoped_refptr<base::TaskRunner>& task_runner,
const DriWrapper::PageFlipCallback& callback)
: task_runner(task_runner), callback(callback) {}
// Task runner for the thread scheduling the page flip event. This is used to
// run the callback on the same thread the callback was created on.
scoped_refptr<base::TaskRunner> task_runner;
DriWrapper::PageFlipCallback callback;
};
bool DrmCreateDumbBuffer(int fd,
const SkImageInfo& info,
uint32_t* handle,
uint32_t* stride) {
struct drm_mode_create_dumb request;
memset(&request, 0, sizeof(request));
request.width = info.width();
request.height = info.height();
request.bpp = info.bytesPerPixel() << 3;
request.flags = 0;
if (drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &request) < 0) {
VLOG(2) << "Cannot create dumb buffer (" << errno << ") "
<< strerror(errno);
return false;
}
// The driver may choose to align the last row as well. We don't care about
// the last alignment bits since they aren't used for display purposes, so
// just check that the expected size is <= to what the driver allocated.
DCHECK_LE(info.getSafeSize(request.pitch), request.size);
*handle = request.handle;
*stride = request.pitch;
return true;
}
void DrmDestroyDumbBuffer(int fd, uint32_t handle) {
struct drm_mode_destroy_dumb destroy_request;
memset(&destroy_request, 0, sizeof(destroy_request));
destroy_request.handle = handle;
drmIoctl(fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_request);
}
void HandlePageFlipEventOnIO(int fd,
unsigned int frame,
unsigned int seconds,
unsigned int useconds,
void* data) {
scoped_ptr<PageFlipPayload> payload(static_cast<PageFlipPayload*>(data));
payload->task_runner->PostTask(
FROM_HERE, base::Bind(payload->callback, frame, seconds, useconds));
}
void HandlePageFlipEventOnUI(int fd,
unsigned int frame,
unsigned int seconds,
unsigned int useconds,
void* data) {
scoped_ptr<PageFlipPayload> payload(static_cast<PageFlipPayload*>(data));
payload->callback.Run(frame, seconds, useconds);
}
} // namespace
class DriWrapper::IOWatcher
: public base::RefCountedThreadSafe<DriWrapper::IOWatcher>,
public base::MessagePumpLibevent::Watcher {
public:
IOWatcher(int fd,
const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner)
: io_task_runner_(io_task_runner) {
io_task_runner_->PostTask(FROM_HERE,
base::Bind(&IOWatcher::RegisterOnIO, this, fd));
}
void Shutdown() {
io_task_runner_->PostTask(FROM_HERE,
base::Bind(&IOWatcher::UnregisterOnIO, this));
}
private:
friend class base::RefCountedThreadSafe<IOWatcher>;
~IOWatcher() override {}
void RegisterOnIO(int fd) {
DCHECK(base::MessageLoopForIO::IsCurrent());
base::MessageLoopForIO::current()->WatchFileDescriptor(
fd, true, base::MessageLoopForIO::WATCH_READ, &controller_, this);
}
void UnregisterOnIO() {
DCHECK(base::MessageLoopForIO::IsCurrent());
controller_.StopWatchingFileDescriptor();
}
// base::MessagePumpLibevent::Watcher overrides:
void OnFileCanReadWithoutBlocking(int fd) override {
DCHECK(base::MessageLoopForIO::IsCurrent());
TRACE_EVENT1("dri", "OnDrmEvent", "socket", fd);
drmEventContext event;
event.version = DRM_EVENT_CONTEXT_VERSION;
event.page_flip_handler = HandlePageFlipEventOnIO;
event.vblank_handler = nullptr;
drmHandleEvent(fd, &event);
}
void OnFileCanWriteWithoutBlocking(int fd) override { NOTREACHED(); }
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
base::MessagePumpLibevent::FileDescriptorWatcher controller_;
DISALLOW_COPY_AND_ASSIGN(IOWatcher);
};
DriWrapper::DriWrapper(const base::FilePath& device_path)
: device_path_(device_path),
file_(device_path,
base::File::FLAG_OPEN | base::File::FLAG_READ |
base::File::FLAG_WRITE) {
LOG_IF(FATAL, !file_.IsValid())
<< "Failed to open '" << device_path_.value()
<< "': " << base::File::ErrorToString(file_.error_details());
}
DriWrapper::DriWrapper(const base::FilePath& device_path, base::File file)
: device_path_(device_path), file_(file.Pass()) {
}
DriWrapper::~DriWrapper() {
if (watcher_)
watcher_->Shutdown();
}
void DriWrapper::Initialize() {
plane_manager_.reset(new HardwareDisplayPlaneManagerLegacy());
if (!plane_manager_->Initialize(this))
LOG(ERROR) << "Failed to initialize the plane manager";
}
void DriWrapper::InitializeTaskRunner(
const scoped_refptr<base::SingleThreadTaskRunner>& task_runner) {
DCHECK(!task_runner_);
task_runner_ = task_runner;
watcher_ = new IOWatcher(file_.GetPlatformFile(), task_runner_);
}
ScopedDrmCrtcPtr DriWrapper::GetCrtc(uint32_t crtc_id) {
DCHECK(file_.IsValid());
return ScopedDrmCrtcPtr(drmModeGetCrtc(file_.GetPlatformFile(), crtc_id));
}
bool DriWrapper::SetCrtc(uint32_t crtc_id,
uint32_t framebuffer,
std::vector<uint32_t> connectors,
drmModeModeInfo* mode) {
DCHECK(file_.IsValid());
DCHECK(!connectors.empty());
DCHECK(mode);
TRACE_EVENT2("dri", "DriWrapper::SetCrtc", "crtc", crtc_id, "size",
gfx::Size(mode->hdisplay, mode->vdisplay).ToString());
return !drmModeSetCrtc(file_.GetPlatformFile(), crtc_id, framebuffer, 0, 0,
vector_as_array(&connectors), connectors.size(), mode);
}
bool DriWrapper::SetCrtc(drmModeCrtc* crtc, std::vector<uint32_t> connectors) {
DCHECK(file_.IsValid());
// If there's no buffer then the CRTC was disabled.
if (!crtc->buffer_id)
return DisableCrtc(crtc->crtc_id);
DCHECK(!connectors.empty());
TRACE_EVENT1("dri", "DriWrapper::RestoreCrtc",
"crtc", crtc->crtc_id);
return !drmModeSetCrtc(file_.GetPlatformFile(), crtc->crtc_id,
crtc->buffer_id, crtc->x, crtc->y,
vector_as_array(&connectors), connectors.size(),
&crtc->mode);
}
bool DriWrapper::DisableCrtc(uint32_t crtc_id) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::DisableCrtc",
"crtc", crtc_id);
return !drmModeSetCrtc(file_.GetPlatformFile(), crtc_id, 0, 0, 0, NULL, 0,
NULL);
}
ScopedDrmConnectorPtr DriWrapper::GetConnector(uint32_t connector_id) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::GetConnector", "connector", connector_id);
return ScopedDrmConnectorPtr(
drmModeGetConnector(file_.GetPlatformFile(), connector_id));
}
bool DriWrapper::AddFramebuffer(uint32_t width,
uint32_t height,
uint8_t depth,
uint8_t bpp,
uint32_t stride,
uint32_t handle,
uint32_t* framebuffer) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::AddFramebuffer",
"handle", handle);
return !drmModeAddFB(file_.GetPlatformFile(), width, height, depth, bpp,
stride, handle, framebuffer);
}
bool DriWrapper::RemoveFramebuffer(uint32_t framebuffer) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::RemoveFramebuffer",
"framebuffer", framebuffer);
return !drmModeRmFB(file_.GetPlatformFile(), framebuffer);
}
bool DriWrapper::PageFlip(uint32_t crtc_id,
uint32_t framebuffer,
const PageFlipCallback& callback) {
DCHECK(file_.IsValid());
TRACE_EVENT2("dri", "DriWrapper::PageFlip",
"crtc", crtc_id,
"framebuffer", framebuffer);
// NOTE: Calling drmModeSetCrtc will immediately update the state, though
// callbacks to already scheduled page flips will be honored by the kernel.
scoped_ptr<PageFlipPayload> payload(
new PageFlipPayload(base::ThreadTaskRunnerHandle::Get(), callback));
if (!drmModePageFlip(file_.GetPlatformFile(), crtc_id, framebuffer,
DRM_MODE_PAGE_FLIP_EVENT, payload.get())) {
// If successful the payload will be removed by a PageFlip event.
ignore_result(payload.release());
// If a task runner isn't installed then fall back to synchronously handling
// the page flip events.
if (!task_runner_) {
TRACE_EVENT1("dri", "OnDrmEvent", "socket", file_.GetPlatformFile());
drmEventContext event;
event.version = DRM_EVENT_CONTEXT_VERSION;
event.page_flip_handler = HandlePageFlipEventOnUI;
event.vblank_handler = nullptr;
drmHandleEvent(file_.GetPlatformFile(), &event);
}
return true;
}
return false;
}
bool DriWrapper::PageFlipOverlay(uint32_t crtc_id,
uint32_t framebuffer,
const gfx::Rect& location,
const gfx::Rect& source,
int overlay_plane) {
DCHECK(file_.IsValid());
TRACE_EVENT2("dri", "DriWrapper::PageFlipOverlay",
"crtc", crtc_id,
"framebuffer", framebuffer);
return !drmModeSetPlane(file_.GetPlatformFile(), overlay_plane, crtc_id,
framebuffer, 0, location.x(), location.y(),
location.width(), location.height(), source.x(),
source.y(), source.width(), source.height());
}
ScopedDrmFramebufferPtr DriWrapper::GetFramebuffer(uint32_t framebuffer) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::GetFramebuffer",
"framebuffer", framebuffer);
return ScopedDrmFramebufferPtr(
drmModeGetFB(file_.GetPlatformFile(), framebuffer));
}
ScopedDrmPropertyPtr DriWrapper::GetProperty(drmModeConnector* connector,
const char* name) {
TRACE_EVENT2("dri", "DriWrapper::GetProperty",
"connector", connector->connector_id,
"name", name);
for (int i = 0; i < connector->count_props; ++i) {
ScopedDrmPropertyPtr property(
drmModeGetProperty(file_.GetPlatformFile(), connector->props[i]));
if (!property)
continue;
if (strcmp(property->name, name) == 0)
return property.Pass();
}
return ScopedDrmPropertyPtr();
}
bool DriWrapper::SetProperty(uint32_t connector_id,
uint32_t property_id,
uint64_t value) {
DCHECK(file_.IsValid());
return !drmModeConnectorSetProperty(file_.GetPlatformFile(), connector_id,
property_id, value);
}
bool DriWrapper::GetCapability(uint64_t capability, uint64_t* value) {
DCHECK(file_.IsValid());
return !drmGetCap(file_.GetPlatformFile(), capability, value);
}
ScopedDrmPropertyBlobPtr DriWrapper::GetPropertyBlob(
drmModeConnector* connector, const char* name) {
DCHECK(file_.IsValid());
TRACE_EVENT2("dri", "DriWrapper::GetPropertyBlob",
"connector", connector->connector_id,
"name", name);
for (int i = 0; i < connector->count_props; ++i) {
ScopedDrmPropertyPtr property(
drmModeGetProperty(file_.GetPlatformFile(), connector->props[i]));
if (!property)
continue;
if (strcmp(property->name, name) == 0 &&
property->flags & DRM_MODE_PROP_BLOB)
return ScopedDrmPropertyBlobPtr(drmModeGetPropertyBlob(
file_.GetPlatformFile(), connector->prop_values[i]));
}
return ScopedDrmPropertyBlobPtr();
}
bool DriWrapper::SetCursor(uint32_t crtc_id,
uint32_t handle,
const gfx::Size& size) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::SetCursor", "handle", handle);
return !drmModeSetCursor(file_.GetPlatformFile(), crtc_id, handle,
size.width(), size.height());
}
bool DriWrapper::MoveCursor(uint32_t crtc_id, const gfx::Point& point) {
DCHECK(file_.IsValid());
return !drmModeMoveCursor(file_.GetPlatformFile(), crtc_id, point.x(),
point.y());
}
bool DriWrapper::CreateDumbBuffer(const SkImageInfo& info,
uint32_t* handle,
uint32_t* stride,
void** pixels) {
DCHECK(file_.IsValid());
TRACE_EVENT0("dri", "DriWrapper::CreateDumbBuffer");
if (!DrmCreateDumbBuffer(file_.GetPlatformFile(), info, handle, stride))
return false;
if (!MapDumbBuffer(file_.GetPlatformFile(), *handle,
info.getSafeSize(*stride), pixels)) {
DrmDestroyDumbBuffer(file_.GetPlatformFile(), *handle);
return false;
}
return true;
}
void DriWrapper::DestroyDumbBuffer(const SkImageInfo& info,
uint32_t handle,
uint32_t stride,
void* pixels) {
DCHECK(file_.IsValid());
TRACE_EVENT1("dri", "DriWrapper::DestroyDumbBuffer", "handle", handle);
munmap(pixels, info.getSafeSize(stride));
DrmDestroyDumbBuffer(file_.GetPlatformFile(), handle);
}
bool DriWrapper::SetMaster() {
DCHECK(file_.IsValid());
return (drmSetMaster(file_.GetPlatformFile()) == 0);
}
bool DriWrapper::DropMaster() {
DCHECK(file_.IsValid());
return (drmDropMaster(file_.GetPlatformFile()) == 0);
}
} // namespace ui
|