blob: 02db89f05e3811255fe7f10a4be027d7159ae99b [file] [log] [blame]
Tao Bao557fa1f2017-02-07 12:51:00 -08001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tao Bao92bdb5a2018-10-21 12:12:37 -070017#pragma once
Tao Bao557fa1f2017-02-07 12:51:00 -080018
19#include <stdint.h>
20
Tao Baod096d7e2018-10-23 17:24:34 -070021#include <memory>
22
23#include <android-base/macros.h>
Tao Bao557fa1f2017-02-07 12:51:00 -080024#include <xf86drmMode.h>
25
26#include "graphics.h"
27#include "minui/minui.h"
28
29class GRSurfaceDrm : public GRSurface {
Tao Bao92bdb5a2018-10-21 12:12:37 -070030 public:
Tao Baod096d7e2018-10-23 17:24:34 -070031 explicit GRSurfaceDrm(int drm_fd) : drm_fd_(drm_fd) {}
32 ~GRSurfaceDrm() override;
33
34 // Creates a GRSurfaceDrm instance.
35 static std::unique_ptr<GRSurfaceDrm> Create(int drm_fd, int width, int height);
36
Tao Bao92bdb5a2018-10-21 12:12:37 -070037 uint8_t* data() override {
38 return mmapped_buffer_;
39 }
40
Tao Bao557fa1f2017-02-07 12:51:00 -080041 private:
Tao Bao92bdb5a2018-10-21 12:12:37 -070042 friend class MinuiBackendDrm;
43
Tao Baod096d7e2018-10-23 17:24:34 -070044 const int drm_fd_;
45
46 uint32_t fb_id{ 0 };
47 uint32_t handle{ 0 };
Tao Bao92bdb5a2018-10-21 12:12:37 -070048 uint8_t* mmapped_buffer_{ nullptr };
Tao Baod096d7e2018-10-23 17:24:34 -070049
50 DISALLOW_COPY_AND_ASSIGN(GRSurfaceDrm);
Tao Bao557fa1f2017-02-07 12:51:00 -080051};
52
53class MinuiBackendDrm : public MinuiBackend {
54 public:
Tao Baod096d7e2018-10-23 17:24:34 -070055 MinuiBackendDrm() = default;
56 ~MinuiBackendDrm() override;
57
Tao Bao557fa1f2017-02-07 12:51:00 -080058 GRSurface* Init() override;
59 GRSurface* Flip() override;
60 void Blank(bool) override;
Tao Bao557fa1f2017-02-07 12:51:00 -080061
62 private:
63 void DrmDisableCrtc(int drm_fd, drmModeCrtc* crtc);
Tao Baod096d7e2018-10-23 17:24:34 -070064 bool DrmEnableCrtc(int drm_fd, drmModeCrtc* crtc, const std::unique_ptr<GRSurfaceDrm>& surface);
Tao Bao557fa1f2017-02-07 12:51:00 -080065 void DisableNonMainCrtcs(int fd, drmModeRes* resources, drmModeCrtc* main_crtc);
66 drmModeConnector* FindMainMonitor(int fd, drmModeRes* resources, uint32_t* mode_index);
67
Tao Baod096d7e2018-10-23 17:24:34 -070068 std::unique_ptr<GRSurfaceDrm> GRSurfaceDrms[2];
69 int current_buffer{ 0 };
70 drmModeCrtc* main_monitor_crtc{ nullptr };
71 drmModeConnector* main_monitor_connector{ nullptr };
72 int drm_fd{ -1 };
Tao Bao557fa1f2017-02-07 12:51:00 -080073};