Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 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 Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 17 | #include "graphics_drm.h" |
| 18 | |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 20 | #include <poll.h> |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 23 | #include <sys/mman.h> |
| 24 | #include <sys/types.h> |
| 25 | #include <unistd.h> |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 26 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 27 | #include <memory> |
| 28 | |
| 29 | #include <android-base/macros.h> |
| 30 | #include <android-base/stringprintf.h> |
| 31 | #include <android-base/unique_fd.h> |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 32 | #include <drm_fourcc.h> |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 33 | #include <xf86drm.h> |
| 34 | #include <xf86drmMode.h> |
| 35 | |
Tao Bao | 0ecbd76 | 2017-01-16 21:16:58 -0800 | [diff] [blame] | 36 | #include "minui/minui.h" |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 37 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 38 | GRSurfaceDrm::~GRSurfaceDrm() { |
| 39 | if (mmapped_buffer_) { |
| 40 | munmap(mmapped_buffer_, row_bytes * height); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 41 | } |
Tianjie Xu | ccf00a2 | 2018-06-05 17:10:23 -0700 | [diff] [blame] | 42 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 43 | if (fb_id) { |
| 44 | if (drmModeRmFB(drm_fd_, fb_id) != 0) { |
| 45 | perror("Failed to drmModeRmFB"); |
| 46 | // Falling through to free other resources. |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 47 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 48 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 49 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 50 | if (handle) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 51 | drm_gem_close gem_close = {}; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 52 | gem_close.handle = handle; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 53 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 54 | if (drmIoctl(drm_fd_, DRM_IOCTL_GEM_CLOSE, &gem_close) != 0) { |
| 55 | perror("Failed to DRM_IOCTL_GEM_CLOSE"); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 56 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 57 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | static int drm_format_to_bpp(uint32_t format) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 61 | switch (format) { |
| 62 | case DRM_FORMAT_ABGR8888: |
| 63 | case DRM_FORMAT_BGRA8888: |
| 64 | case DRM_FORMAT_RGBX8888: |
Adrian Salido | cc7b7eb | 2019-12-12 20:18:09 -0800 | [diff] [blame] | 65 | case DRM_FORMAT_RGBA8888: |
| 66 | case DRM_FORMAT_ARGB8888: |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 67 | case DRM_FORMAT_BGRX8888: |
| 68 | case DRM_FORMAT_XBGR8888: |
| 69 | case DRM_FORMAT_XRGB8888: |
| 70 | return 32; |
| 71 | case DRM_FORMAT_RGB565: |
| 72 | return 16; |
| 73 | default: |
| 74 | printf("Unknown format %d\n", format); |
| 75 | return 32; |
| 76 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 79 | std::unique_ptr<GRSurfaceDrm> GRSurfaceDrm::Create(int drm_fd, int width, int height) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 80 | uint32_t format; |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 81 | PixelFormat pixel_format = gr_pixel_format(); |
tangrobin | 13bec76 | 2018-08-07 17:23:31 +0800 | [diff] [blame] | 82 | // PixelFormat comes in byte order, whereas DRM_FORMAT_* uses little-endian |
| 83 | // (external/libdrm/include/drm/drm_fourcc.h). Note that although drm_fourcc.h also defines a |
| 84 | // macro of DRM_FORMAT_BIG_ENDIAN, it doesn't seem to be actually supported (see the discussion |
| 85 | // in https://lists.freedesktop.org/archives/amd-gfx/2017-May/008560.html). |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 86 | if (pixel_format == PixelFormat::ABGR) { |
tangrobin | 13bec76 | 2018-08-07 17:23:31 +0800 | [diff] [blame] | 87 | format = DRM_FORMAT_RGBA8888; |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 88 | } else if (pixel_format == PixelFormat::BGRA) { |
tangrobin | 13bec76 | 2018-08-07 17:23:31 +0800 | [diff] [blame] | 89 | format = DRM_FORMAT_ARGB8888; |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 90 | } else if (pixel_format == PixelFormat::RGBX) { |
tangrobin | 13bec76 | 2018-08-07 17:23:31 +0800 | [diff] [blame] | 91 | format = DRM_FORMAT_XBGR8888; |
Adrian Salido | cc7b7eb | 2019-12-12 20:18:09 -0800 | [diff] [blame] | 92 | } else if (pixel_format == PixelFormat::ARGB) { |
| 93 | format = DRM_FORMAT_BGRA8888; |
Tao Bao | ed876a7 | 2018-07-31 21:32:50 -0700 | [diff] [blame] | 94 | } else { |
| 95 | format = DRM_FORMAT_RGB565; |
| 96 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 97 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 98 | drm_mode_create_dumb create_dumb = {}; |
| 99 | create_dumb.height = height; |
| 100 | create_dumb.width = width; |
| 101 | create_dumb.bpp = drm_format_to_bpp(format); |
| 102 | create_dumb.flags = 0; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 103 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 104 | if (drmIoctl(drm_fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb) != 0) { |
| 105 | perror("Failed to DRM_IOCTL_MODE_CREATE_DUMB"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 106 | return nullptr; |
| 107 | } |
Kelvin Zhang | 90f783f | 2021-03-30 08:59:19 -0400 | [diff] [blame] | 108 | printf("Allocating buffer with resolution %d x %d pitch: %d bpp: %d, size: %llu\n", width, height, |
| 109 | create_dumb.pitch, create_dumb.bpp, create_dumb.size); |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 110 | |
Tao Bao | 710bc53 | 2018-10-24 07:59:49 -0700 | [diff] [blame] | 111 | // Cannot use std::make_unique to access non-public ctor. |
| 112 | auto surface = std::unique_ptr<GRSurfaceDrm>(new GRSurfaceDrm( |
| 113 | width, height, create_dumb.pitch, create_dumb.bpp / 8, drm_fd, create_dumb.handle)); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 114 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 115 | uint32_t handles[4], pitches[4], offsets[4]; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 116 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 117 | handles[0] = surface->handle; |
| 118 | pitches[0] = create_dumb.pitch; |
| 119 | offsets[0] = 0; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 120 | if (drmModeAddFB2(drm_fd, width, height, format, handles, pitches, offsets, &surface->fb_id, 0) != |
| 121 | 0) { |
| 122 | perror("Failed to drmModeAddFB2"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 123 | return nullptr; |
| 124 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 125 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 126 | drm_mode_map_dumb map_dumb = {}; |
| 127 | map_dumb.handle = create_dumb.handle; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 128 | if (drmIoctl(drm_fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb) != 0) { |
| 129 | perror("Failed to DRM_IOCTL_MODE_MAP_DUMB"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 130 | return nullptr; |
| 131 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 132 | |
Kelvin Zhang | 90f783f | 2021-03-30 08:59:19 -0400 | [diff] [blame] | 133 | auto mmapped = |
| 134 | mmap(nullptr, create_dumb.size, PROT_READ | PROT_WRITE, MAP_SHARED, drm_fd, map_dumb.offset); |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 135 | if (mmapped == MAP_FAILED) { |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 136 | perror("Failed to mmap()"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 137 | return nullptr; |
| 138 | } |
Tao Bao | 92bdb5a | 2018-10-21 12:12:37 -0700 | [diff] [blame] | 139 | surface->mmapped_buffer_ = static_cast<uint8_t*>(mmapped); |
Kelvin Zhang | 90f783f | 2021-03-30 08:59:19 -0400 | [diff] [blame] | 140 | printf("Framebuffer of size %llu allocated @ %p\n", create_dumb.size, surface->mmapped_buffer_); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 141 | return surface; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 144 | void MinuiBackendDrm::DrmDisableCrtc(int drm_fd, drmModeCrtc* crtc) { |
| 145 | if (crtc) { |
| 146 | drmModeSetCrtc(drm_fd, crtc->crtc_id, |
| 147 | 0, // fb_id |
| 148 | 0, 0, // x,y |
| 149 | nullptr, // connectors |
| 150 | 0, // connector_count |
| 151 | nullptr); // mode |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | bool MinuiBackendDrm::DrmEnableCrtc(int drm_fd, drmModeCrtc* crtc, |
| 156 | const std::unique_ptr<GRSurfaceDrm>& surface) { |
| 157 | if (drmModeSetCrtc(drm_fd, crtc->crtc_id, surface->fb_id, 0, 0, // x,y |
| 158 | &main_monitor_connector->connector_id, |
| 159 | 1, // connector_count |
| 160 | &main_monitor_crtc->mode) != 0) { |
| 161 | perror("Failed to drmModeSetCrtc"); |
| 162 | return false; |
| 163 | } |
| 164 | return true; |
| 165 | } |
| 166 | |
| 167 | void MinuiBackendDrm::Blank(bool blank) { |
| 168 | if (blank) { |
| 169 | DrmDisableCrtc(drm_fd, main_monitor_crtc); |
| 170 | } else { |
| 171 | DrmEnableCrtc(drm_fd, main_monitor_crtc, GRSurfaceDrms[current_buffer]); |
| 172 | } |
| 173 | } |
| 174 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 175 | static drmModeCrtc* find_crtc_for_connector(int fd, drmModeRes* resources, |
| 176 | drmModeConnector* connector) { |
| 177 | // Find the encoder. If we already have one, just use it. |
| 178 | drmModeEncoder* encoder; |
| 179 | if (connector->encoder_id) { |
| 180 | encoder = drmModeGetEncoder(fd, connector->encoder_id); |
| 181 | } else { |
| 182 | encoder = nullptr; |
| 183 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 184 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 185 | int32_t crtc; |
| 186 | if (encoder && encoder->crtc_id) { |
| 187 | crtc = encoder->crtc_id; |
| 188 | drmModeFreeEncoder(encoder); |
| 189 | return drmModeGetCrtc(fd, crtc); |
| 190 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 191 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 192 | // Didn't find anything, try to find a crtc and encoder combo. |
| 193 | crtc = -1; |
| 194 | for (int i = 0; i < connector->count_encoders; i++) { |
| 195 | encoder = drmModeGetEncoder(fd, connector->encoders[i]); |
| 196 | |
| 197 | if (encoder) { |
| 198 | for (int j = 0; j < resources->count_crtcs; j++) { |
| 199 | if (!(encoder->possible_crtcs & (1 << j))) continue; |
| 200 | crtc = resources->crtcs[j]; |
| 201 | break; |
| 202 | } |
| 203 | if (crtc >= 0) { |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 204 | drmModeFreeEncoder(encoder); |
| 205 | return drmModeGetCrtc(fd, crtc); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 206 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 207 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 208 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 209 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 210 | return nullptr; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 213 | static drmModeConnector* find_used_connector_by_type(int fd, drmModeRes* resources, unsigned type) { |
| 214 | for (int i = 0; i < resources->count_connectors; i++) { |
| 215 | drmModeConnector* connector = drmModeGetConnector(fd, resources->connectors[i]); |
| 216 | if (connector) { |
| 217 | if ((connector->connector_type == type) && (connector->connection == DRM_MODE_CONNECTED) && |
| 218 | (connector->count_modes > 0)) { |
| 219 | return connector; |
| 220 | } |
| 221 | drmModeFreeConnector(connector); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 222 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 223 | } |
| 224 | return nullptr; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 225 | } |
| 226 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 227 | static drmModeConnector* find_first_connected_connector(int fd, drmModeRes* resources) { |
| 228 | for (int i = 0; i < resources->count_connectors; i++) { |
| 229 | drmModeConnector* connector; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 230 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 231 | connector = drmModeGetConnector(fd, resources->connectors[i]); |
| 232 | if (connector) { |
| 233 | if ((connector->count_modes > 0) && (connector->connection == DRM_MODE_CONNECTED)) |
| 234 | return connector; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 235 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 236 | drmModeFreeConnector(connector); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 237 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 238 | } |
| 239 | return nullptr; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 240 | } |
| 241 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 242 | drmModeConnector* MinuiBackendDrm::FindMainMonitor(int fd, drmModeRes* resources, |
| 243 | uint32_t* mode_index) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 244 | /* Look for LVDS/eDP/DSI connectors. Those are the main screens. */ |
| 245 | static constexpr unsigned kConnectorPriority[] = { |
| 246 | DRM_MODE_CONNECTOR_LVDS, |
| 247 | DRM_MODE_CONNECTOR_eDP, |
| 248 | DRM_MODE_CONNECTOR_DSI, |
| 249 | }; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 250 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 251 | drmModeConnector* main_monitor_connector = nullptr; |
| 252 | unsigned i = 0; |
| 253 | do { |
| 254 | main_monitor_connector = find_used_connector_by_type(fd, resources, kConnectorPriority[i]); |
| 255 | i++; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 256 | } while (!main_monitor_connector && i < arraysize(kConnectorPriority)); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 257 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 258 | /* If we didn't find a connector, grab the first one that is connected. */ |
| 259 | if (!main_monitor_connector) { |
| 260 | main_monitor_connector = find_first_connected_connector(fd, resources); |
| 261 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 262 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 263 | /* If we still didn't find a connector, give up and return. */ |
| 264 | if (!main_monitor_connector) return nullptr; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 265 | |
Kelvin Zhang | 90f783f | 2021-03-30 08:59:19 -0400 | [diff] [blame] | 266 | for (int modes = 0; modes < main_monitor_connector->count_modes; modes++) { |
| 267 | printf("Display Mode %d resolution: %d x %d @ %d FPS\n", modes, |
| 268 | main_monitor_connector->modes[modes].hdisplay, |
| 269 | main_monitor_connector->modes[modes].vdisplay, |
| 270 | main_monitor_connector->modes[modes].vrefresh); |
| 271 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 272 | *mode_index = 0; |
| 273 | for (int modes = 0; modes < main_monitor_connector->count_modes; modes++) { |
| 274 | if (main_monitor_connector->modes[modes].type & DRM_MODE_TYPE_PREFERRED) { |
Kelvin Zhang | 90f783f | 2021-03-30 08:59:19 -0400 | [diff] [blame] | 275 | printf("Choosing display mode #%d\n", modes); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 276 | *mode_index = modes; |
| 277 | break; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 278 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 279 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 280 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 281 | return main_monitor_connector; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 284 | void MinuiBackendDrm::DisableNonMainCrtcs(int fd, drmModeRes* resources, drmModeCrtc* main_crtc) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 285 | for (int i = 0; i < resources->count_connectors; i++) { |
| 286 | drmModeConnector* connector = drmModeGetConnector(fd, resources->connectors[i]); |
| 287 | drmModeCrtc* crtc = find_crtc_for_connector(fd, resources, connector); |
| 288 | if (crtc->crtc_id != main_crtc->crtc_id) { |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 289 | DrmDisableCrtc(fd, crtc); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 290 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 291 | drmModeFreeCrtc(crtc); |
| 292 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 293 | } |
| 294 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 295 | GRSurface* MinuiBackendDrm::Init() { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 296 | drmModeRes* res = nullptr; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 297 | drm_fd = -1; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 298 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 299 | /* Consider DRM devices in order. */ |
| 300 | for (int i = 0; i < DRM_MAX_MINOR; i++) { |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 301 | auto dev_name = android::base::StringPrintf(DRM_DEV_NAME, DRM_DIR_NAME, i); |
Tao Bao | b549243 | 2019-01-16 09:29:17 -0800 | [diff] [blame] | 302 | android::base::unique_fd fd(open(dev_name.c_str(), O_RDWR | O_CLOEXEC)); |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 303 | if (fd == -1) continue; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 304 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 305 | /* We need dumb buffers. */ |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 306 | if (uint64_t cap = 0; drmGetCap(fd.get(), DRM_CAP_DUMB_BUFFER, &cap) != 0 || cap == 0) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 307 | continue; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 310 | res = drmModeGetResources(fd.get()); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 311 | if (!res) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 312 | continue; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 315 | /* Use this device if it has at least one connected monitor. */ |
| 316 | if (res->count_crtcs > 0 && res->count_connectors > 0) { |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 317 | if (find_first_connected_connector(fd.get(), res)) { |
| 318 | drm_fd = fd.release(); |
| 319 | break; |
| 320 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 323 | drmModeFreeResources(res); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 324 | res = nullptr; |
| 325 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 326 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 327 | if (drm_fd == -1 || res == nullptr) { |
| 328 | perror("Failed to find/open a drm device"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 329 | return nullptr; |
| 330 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 331 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 332 | uint32_t selected_mode; |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 333 | main_monitor_connector = FindMainMonitor(drm_fd, res, &selected_mode); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 334 | if (!main_monitor_connector) { |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 335 | fprintf(stderr, "Failed to find main_monitor_connector\n"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 336 | drmModeFreeResources(res); |
| 337 | close(drm_fd); |
| 338 | return nullptr; |
| 339 | } |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 340 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 341 | main_monitor_crtc = find_crtc_for_connector(drm_fd, res, main_monitor_connector); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 342 | if (!main_monitor_crtc) { |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 343 | fprintf(stderr, "Failed to find main_monitor_crtc\n"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 344 | drmModeFreeResources(res); |
| 345 | close(drm_fd); |
| 346 | return nullptr; |
| 347 | } |
| 348 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 349 | DisableNonMainCrtcs(drm_fd, res, main_monitor_crtc); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 350 | |
| 351 | main_monitor_crtc->mode = main_monitor_connector->modes[selected_mode]; |
| 352 | |
| 353 | int width = main_monitor_crtc->mode.hdisplay; |
| 354 | int height = main_monitor_crtc->mode.vdisplay; |
| 355 | |
| 356 | drmModeFreeResources(res); |
| 357 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 358 | GRSurfaceDrms[0] = GRSurfaceDrm::Create(drm_fd, width, height); |
| 359 | GRSurfaceDrms[1] = GRSurfaceDrm::Create(drm_fd, width, height); |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 360 | if (!GRSurfaceDrms[0] || !GRSurfaceDrms[1]) { |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 361 | return nullptr; |
| 362 | } |
| 363 | |
| 364 | current_buffer = 0; |
| 365 | |
Tianjie Xu | ccf00a2 | 2018-06-05 17:10:23 -0700 | [diff] [blame] | 366 | // We will likely encounter errors in the backend functions (i.e. Flip) if EnableCrtc fails. |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 367 | if (!DrmEnableCrtc(drm_fd, main_monitor_crtc, GRSurfaceDrms[1])) { |
Tianjie Xu | ccf00a2 | 2018-06-05 17:10:23 -0700 | [diff] [blame] | 368 | return nullptr; |
| 369 | } |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 370 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 371 | return GRSurfaceDrms[0].get(); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 372 | } |
| 373 | |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 374 | static void page_flip_complete(__unused int fd, |
| 375 | __unused unsigned int sequence, |
| 376 | __unused unsigned int tv_sec, |
| 377 | __unused unsigned int tv_usec, |
| 378 | void *user_data) { |
| 379 | *static_cast<bool*>(user_data) = false; |
| 380 | } |
| 381 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 382 | GRSurface* MinuiBackendDrm::Flip() { |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 383 | bool ongoing_flip = true; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 384 | if (drmModePageFlip(drm_fd, main_monitor_crtc->crtc_id, GRSurfaceDrms[current_buffer]->fb_id, |
| 385 | DRM_MODE_PAGE_FLIP_EVENT, &ongoing_flip) != 0) { |
| 386 | perror("Failed to drmModePageFlip"); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 387 | return nullptr; |
| 388 | } |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 389 | |
| 390 | while (ongoing_flip) { |
| 391 | struct pollfd fds = { |
| 392 | .fd = drm_fd, |
| 393 | .events = POLLIN |
| 394 | }; |
| 395 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 396 | if (poll(&fds, 1, -1) == -1 || !(fds.revents & POLLIN)) { |
| 397 | perror("Failed to poll() on drm fd"); |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 398 | break; |
| 399 | } |
| 400 | |
| 401 | drmEventContext evctx = { |
| 402 | .version = DRM_EVENT_CONTEXT_VERSION, |
| 403 | .page_flip_handler = page_flip_complete |
| 404 | }; |
| 405 | |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 406 | if (drmHandleEvent(drm_fd, &evctx) != 0) { |
| 407 | perror("Failed to drmHandleEvent"); |
Jeremy Compostella | 955da1e | 2018-06-07 10:51:33 -0700 | [diff] [blame] | 408 | break; |
| 409 | } |
| 410 | } |
| 411 | |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 412 | current_buffer = 1 - current_buffer; |
Tao Bao | d096d7e | 2018-10-23 17:24:34 -0700 | [diff] [blame] | 413 | return GRSurfaceDrms[current_buffer].get(); |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Tao Bao | 557fa1f | 2017-02-07 12:51:00 -0800 | [diff] [blame] | 416 | MinuiBackendDrm::~MinuiBackendDrm() { |
| 417 | DrmDisableCrtc(drm_fd, main_monitor_crtc); |
Tao Bao | 76be34c | 2017-02-07 13:30:19 -0800 | [diff] [blame] | 418 | drmModeFreeCrtc(main_monitor_crtc); |
| 419 | drmModeFreeConnector(main_monitor_connector); |
| 420 | close(drm_fd); |
| 421 | drm_fd = -1; |
Stéphane Marchesin | 1a92c44 | 2015-06-29 20:05:48 -0700 | [diff] [blame] | 422 | } |