Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: ui/ozone/platform/drm/gpu/drm_thread.cc

Issue 1311043016: Switch DRM platform to using a separate thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mv-drm-calls-on-thread2
Patch Set: update & fix clang Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/drm/gpu/drm_thread.cc
diff --git a/ui/ozone/platform/drm/gpu/drm_thread.cc b/ui/ozone/platform/drm/gpu/drm_thread.cc
new file mode 100644
index 0000000000000000000000000000000000000000..901dedb08c7c0aa19398ed49293842dd7a6f6703
--- /dev/null
+++ b/ui/ozone/platform/drm/gpu/drm_thread.cc
@@ -0,0 +1,226 @@
+// Copyright 2015 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/drm/gpu/drm_thread.h"
+
+#include "base/command_line.h"
+#include "base/thread_task_runner_handle.h"
+#include "ui/ozone/platform/drm/gpu/drm_buffer.h"
+#include "ui/ozone/platform/drm/gpu/drm_device_generator.h"
+#include "ui/ozone/platform/drm/gpu/drm_device_manager.h"
+#include "ui/ozone/platform/drm/gpu/drm_gpu_display_manager.h"
+#include "ui/ozone/platform/drm/gpu/drm_window.h"
+#include "ui/ozone/platform/drm/gpu/drm_window_proxy.h"
+#include "ui/ozone/platform/drm/gpu/gbm_buffer.h"
+#include "ui/ozone/platform/drm/gpu/gbm_device.h"
+#include "ui/ozone/platform/drm/gpu/gbm_surface_factory.h"
+#include "ui/ozone/platform/drm/gpu/proxy_helpers.h"
+#include "ui/ozone/platform/drm/gpu/screen_manager.h"
+#include "ui/ozone/public/ozone_switches.h"
+
+namespace ui {
+
+namespace {
+
+class GbmBufferGenerator : public ScanoutBufferGenerator {
+ public:
+ GbmBufferGenerator() {}
+ ~GbmBufferGenerator() override {}
+
+ // ScanoutBufferGenerator:
+ scoped_refptr<ScanoutBuffer> Create(const scoped_refptr<DrmDevice>& drm,
+ gfx::BufferFormat format,
+ const gfx::Size& size) override {
+ scoped_refptr<GbmDevice> gbm(static_cast<GbmDevice*>(drm.get()));
+ return GbmBuffer::CreateBuffer(gbm, format, size,
+ gfx::BufferUsage::SCANOUT);
+ }
+
+ protected:
+ DISALLOW_COPY_AND_ASSIGN(GbmBufferGenerator);
+};
+
+class GbmDeviceGenerator : public DrmDeviceGenerator {
+ public:
+ GbmDeviceGenerator(bool use_atomic) : use_atomic_(use_atomic) {}
+ ~GbmDeviceGenerator() override {}
+
+ // DrmDeviceGenerator:
+ scoped_refptr<DrmDevice> CreateDevice(const base::FilePath& path,
+ base::File file,
+ bool is_primary_device) override {
+ scoped_refptr<DrmDevice> drm =
+ new GbmDevice(path, file.Pass(), is_primary_device);
+ if (drm->Initialize(use_atomic_))
+ return drm;
+
+ return nullptr;
+ }
+
+ private:
+ bool use_atomic_;
+
+ DISALLOW_COPY_AND_ASSIGN(GbmDeviceGenerator);
+};
+
+} // namespace
+
+DrmThread::DrmThread() : base::Thread("DrmThread") {}
+
+DrmThread::~DrmThread() {
+ Stop();
+}
+
+void DrmThread::Start() {
+ if (!StartWithOptions(base::Thread::Options(base::MessageLoop::TYPE_IO, 0)))
+ LOG(FATAL) << "Failed to create DRM thread";
+}
+
+void DrmThread::Init() {
+ bool use_atomic = false;
+#if defined(USE_DRM_ATOMIC)
+ use_atomic = true;
+#endif
+
+ device_manager_.reset(new DrmDeviceManager(
+ make_scoped_ptr(new GbmDeviceGenerator(use_atomic))));
+ buffer_generator_.reset(new GbmBufferGenerator());
+ screen_manager_.reset(new ScreenManager(buffer_generator_.get()));
+
+ display_manager_.reset(
+ new DrmGpuDisplayManager(screen_manager_.get(), device_manager_.get()));
+}
+
+void DrmThread::CreateBuffer(gfx::AcceleratedWidget widget,
+ const gfx::Size& size,
+ gfx::BufferFormat format,
+ gfx::BufferUsage usage,
+ scoped_refptr<GbmBuffer>* buffer) {
+ scoped_refptr<GbmDevice> gbm =
+ static_cast<GbmDevice*>(device_manager_->GetDrmDevice(widget).get());
+ DCHECK(gbm);
+ *buffer = GbmBuffer::CreateBuffer(gbm, format, size, usage);
+}
+
+void DrmThread::SchedulePageFlip(gfx::AcceleratedWidget widget,
+ const std::vector<OverlayPlane>& planes,
+ const SwapCompletionCallback& callback) {
+ DrmWindow* window = screen_manager_->GetWindow(widget);
+ if (window)
+ window->SchedulePageFlip(planes, callback);
+ else
+ callback.Run(gfx::SwapResult::SWAP_ACK);
+}
+
+void DrmThread::GetVSyncParameters(
+ gfx::AcceleratedWidget widget,
+ const gfx::VSyncProvider::UpdateVSyncCallback& callback) {
+ DrmWindow* window = screen_manager_->GetWindow(widget);
+ // No need to call the callback if there isn't a window since the vsync
+ // provider doesn't require the callback to be called if there isn't a vsync
+ // data source.
+ if (window)
+ window->GetVSyncParameters(callback);
+}
+
+void DrmThread::CreateWindow(gfx::AcceleratedWidget widget) {
+ scoped_ptr<DrmWindow> window(
+ new DrmWindow(widget, device_manager_.get(), screen_manager_.get()));
+ window->Initialize();
+ screen_manager_->AddWindow(widget, window.Pass());
+}
+
+void DrmThread::DestroyWindow(gfx::AcceleratedWidget widget) {
+ scoped_ptr<DrmWindow> window = screen_manager_->RemoveWindow(widget);
+ window->Shutdown();
+}
+
+void DrmThread::SetWindowBounds(gfx::AcceleratedWidget widget,
+ const gfx::Rect& bounds) {
+ screen_manager_->GetWindow(widget)->SetBounds(bounds);
+}
+
+void DrmThread::SetCursor(gfx::AcceleratedWidget widget,
+ const std::vector<SkBitmap>& bitmaps,
+ const gfx::Point& location,
+ int frame_delay_ms) {
+ screen_manager_->GetWindow(widget)
+ ->SetCursor(bitmaps, location, frame_delay_ms);
+}
+
+void DrmThread::MoveCursor(gfx::AcceleratedWidget widget,
+ const gfx::Point& location) {
+ screen_manager_->GetWindow(widget)->MoveCursor(location);
+}
+
+void DrmThread::CheckOverlayCapabilities(
+ gfx::AcceleratedWidget widget,
+ const std::vector<OverlayCheck_Params>& overlays,
+ const base::Callback<void(gfx::AcceleratedWidget,
+ const std::vector<OverlayCheck_Params>&)>&
+ callback) {
+ callback.Run(widget, screen_manager_->GetWindow(widget)
+ ->TestPageFlip(overlays, buffer_generator_.get()));
+}
+
+void DrmThread::RefreshNativeDisplays(
+ const base::Callback<void(const std::vector<DisplaySnapshot_Params>&)>&
+ callback) {
+ callback.Run(display_manager_->GetDisplays());
+}
+
+void DrmThread::ConfigureNativeDisplay(
+ int64_t id,
+ const DisplayMode_Params& mode,
+ const gfx::Point& origin,
+ const base::Callback<void(int64_t, bool)>& callback) {
+ callback.Run(id, display_manager_->ConfigureDisplay(id, mode, origin));
+}
+
+void DrmThread::DisableNativeDisplay(
+ int64_t id,
+ const base::Callback<void(int64_t, bool)>& callback) {
+ callback.Run(id, display_manager_->DisableDisplay(id));
+}
+
+void DrmThread::TakeDisplayControl(const base::Callback<void(bool)>& callback) {
+ callback.Run(display_manager_->TakeDisplayControl());
+}
+
+void DrmThread::RelinquishDisplayControl(
+ const base::Callback<void(bool)>& callback) {
+ display_manager_->RelinquishDisplayControl();
+ callback.Run(true);
+}
+
+void DrmThread::AddGraphicsDevice(const base::FilePath& path,
+ const base::FileDescriptor& fd) {
+ device_manager_->AddDrmDevice(path, fd);
+}
+
+void DrmThread::RemoveGraphicsDevice(const base::FilePath& path) {
+ device_manager_->RemoveDrmDevice(path);
+}
+
+void DrmThread::GetHDCPState(
+ int64_t display_id,
+ const base::Callback<void(int64_t, bool, HDCPState)>& callback) {
+ HDCPState state = HDCP_STATE_UNDESIRED;
+ bool success = display_manager_->GetHDCPState(display_id, &state);
+ callback.Run(display_id, success, state);
+}
+
+void DrmThread::SetHDCPState(
+ int64_t display_id,
+ HDCPState state,
+ const base::Callback<void(int64_t, bool)>& callback) {
+ callback.Run(display_id, display_manager_->SetHDCPState(display_id, state));
+}
+
+void DrmThread::SetGammaRamp(int64_t id,
+ const std::vector<GammaRampRGBEntry>& lut) {
+ display_manager_->SetGammaRamp(id, lut);
+}
+
+} // namespace ui
« no previous file with comments | « ui/ozone/platform/drm/gpu/drm_thread.h ('k') | ui/ozone/platform/drm/gpu/drm_thread_message_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698