summaryrefslogtreecommitdiffstats
path: root/ui/ozone/platform/drm/gpu/drm_gpu_display_manager.h
blob: bbfa50834d5bf3b5dd8ddcfe59d61ba626d7dc2b (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
// 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.

#ifndef UI_OZONE_PLATFORM_DRM_GPU_DRM_GPU_DISPLAY_MANAGER_H_
#define UI_OZONE_PLATFORM_DRM_GPU_DRM_GPU_DISPLAY_MANAGER_H_

#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "ui/ozone/common/gpu/ozone_gpu_message_params.h"

namespace base {
class FilePath;
class SingleThreadTaskRunner;
struct FileDescriptor;
}

namespace ui {

class DeviceManager;
class DisplayMode;
class DrmDevice;
class DrmDeviceGenerator;
class DrmDisplaySnapshot;
class DrmDisplayMode;
class ScreenManager;

class DrmGpuDisplayManager {
 public:
  DrmGpuDisplayManager(ScreenManager* screen_manager,
                       const scoped_refptr<DrmDevice>& primary_device,
                       scoped_ptr<DrmDeviceGenerator> device_generator);
  ~DrmGpuDisplayManager();

  void InitializeIOTaskRunner(
      const scoped_refptr<base::SingleThreadTaskRunner>& task_runner);

  // Returns a list of the connected displays. When this is called the list of
  // displays is refreshed.
  std::vector<DisplaySnapshot_Params> GetDisplays();

  bool ConfigureDisplay(int64_t id,
                        const DisplayMode_Params& mode,
                        const gfx::Point& origin);
  bool DisableDisplay(int64_t id);

  // Takes/releases the control of the DRM devices.
  bool TakeDisplayControl();
  bool RelinquishDisplayControl();

  // Called on DRM hotplug events to add/remove a DRM device.
  void AddGraphicsDevice(const base::FilePath& path,
                         const base::FileDescriptor& fd);
  void RemoveGraphicsDevice(const base::FilePath& path);

 private:
  DrmDisplaySnapshot* FindDisplaySnapshot(int64_t id);
  const DrmDisplayMode* FindDisplayMode(const gfx::Size& size,
                                        bool is_interlaced,
                                        float refresh_rate);

  void RefreshDisplayList();
  bool Configure(const DrmDisplaySnapshot& output,
                 const DrmDisplayMode* mode,
                 const gfx::Point& origin);

  bool GetHDCPState(const DrmDisplaySnapshot& output, HDCPState* state);
  bool SetHDCPState(const DrmDisplaySnapshot& output, HDCPState state);

  // Notify ScreenManager of all the displays that were present before the
  // update but are gone after the update.
  void NotifyScreenManager(
      const std::vector<DrmDisplaySnapshot*>& new_displays,
      const std::vector<DrmDisplaySnapshot*>& old_displays) const;

  ScreenManager* screen_manager_;  // Not owned.
  scoped_ptr<DrmDeviceGenerator> drm_device_generator_;
  scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
  std::vector<scoped_refptr<DrmDevice>> devices_;
  // Modes can be shared between different displays, so we need to keep track
  // of them independently for cleanup.
  ScopedVector<const DisplayMode> cached_modes_;
  ScopedVector<DrmDisplaySnapshot> cached_displays_;

  DISALLOW_COPY_AND_ASSIGN(DrmGpuDisplayManager);
};

}  // namespace ui

#endif  // UI_OZONE_PLATFORM_DRM_GPU_DRM_GPU_DISPLAY_MANAGER_H_