blob: a59df00c613cfb15cd3fabc36354b5b1b991a9e5 [file] [log] [blame]
Greg Hackmann41909dd2014-04-25 10:39:50 -07001/*
2 * Copyright (C) 2014 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 Bao557fa1f2017-02-07 12:51:00 -080017#include "graphics_adf.h"
18
Greg Hackmann41909dd2014-04-25 10:39:50 -070019#include <errno.h>
20#include <fcntl.h>
Greg Hackmann41909dd2014-04-25 10:39:50 -070021#include <stdio.h>
22#include <stdlib.h>
Greg Hackmann41909dd2014-04-25 10:39:50 -070023#include <sys/mman.h>
Tao Bao8f0e21b2017-02-07 13:00:18 -080024#include <unistd.h>
Greg Hackmann41909dd2014-04-25 10:39:50 -070025
26#include <adf/adf.h>
xinglong.zhuc4fa2c22016-08-05 14:52:22 +080027#include <sync/sync.h>
Greg Hackmann41909dd2014-04-25 10:39:50 -070028
Tao Bao557fa1f2017-02-07 12:51:00 -080029#include "minui/minui.h"
Greg Hackmann41909dd2014-04-25 10:39:50 -070030
Alistair Strachan4697d8b2017-04-28 15:05:33 -070031MinuiBackendAdf::MinuiBackendAdf()
32 : intf_fd(-1), dev(), current_surface(0), n_surfaces(0), surfaces() {}
Greg Hackmann41909dd2014-04-25 10:39:50 -070033
Tao Bao557fa1f2017-02-07 12:51:00 -080034int MinuiBackendAdf::SurfaceInit(const drm_mode_modeinfo* mode, GRSurfaceAdf* surf) {
Tao Bao8f0e21b2017-02-07 13:00:18 -080035 *surf = {};
36 surf->fence_fd = -1;
Tao Bao557fa1f2017-02-07 12:51:00 -080037 surf->fd = adf_interface_simple_buffer_alloc(intf_fd, mode->hdisplay, mode->vdisplay, format,
38 &surf->offset, &surf->pitch);
Tao Bao8f0e21b2017-02-07 13:00:18 -080039 if (surf->fd < 0) {
40 return surf->fd;
41 }
Greg Hackmann41909dd2014-04-25 10:39:50 -070042
Tao Bao557fa1f2017-02-07 12:51:00 -080043 surf->width = mode->hdisplay;
44 surf->height = mode->vdisplay;
45 surf->row_bytes = surf->pitch;
46 surf->pixel_bytes = (format == DRM_FORMAT_RGB565) ? 2 : 4;
Greg Hackmann41909dd2014-04-25 10:39:50 -070047
Tao Bao557fa1f2017-02-07 12:51:00 -080048 surf->data = static_cast<uint8_t*>(
49 mmap(nullptr, surf->pitch * surf->height, PROT_WRITE, MAP_SHARED, surf->fd, surf->offset));
50 if (surf->data == MAP_FAILED) {
Tao Baof04592b2017-02-09 12:59:19 -080051 int saved_errno = errno;
Tao Bao8f0e21b2017-02-07 13:00:18 -080052 close(surf->fd);
Tao Baof04592b2017-02-09 12:59:19 -080053 return -saved_errno;
Tao Bao8f0e21b2017-02-07 13:00:18 -080054 }
Greg Hackmann41909dd2014-04-25 10:39:50 -070055
Tao Bao8f0e21b2017-02-07 13:00:18 -080056 return 0;
Greg Hackmann41909dd2014-04-25 10:39:50 -070057}
58
Tao Bao557fa1f2017-02-07 12:51:00 -080059int MinuiBackendAdf::InterfaceInit() {
Tao Bao8f0e21b2017-02-07 13:00:18 -080060 adf_interface_data intf_data;
Tao Bao557fa1f2017-02-07 12:51:00 -080061 int err = adf_get_interface_data(intf_fd, &intf_data);
Tao Bao8f0e21b2017-02-07 13:00:18 -080062 if (err < 0) return err;
Greg Hackmann41909dd2014-04-25 10:39:50 -070063
Tao Bao8f0e21b2017-02-07 13:00:18 -080064 int ret = 0;
Tao Bao557fa1f2017-02-07 12:51:00 -080065 err = SurfaceInit(&intf_data.current_mode, &surfaces[0]);
Tao Bao8f0e21b2017-02-07 13:00:18 -080066 if (err < 0) {
67 fprintf(stderr, "allocating surface 0 failed: %s\n", strerror(-err));
68 ret = err;
69 goto done;
70 }
Greg Hackmann41909dd2014-04-25 10:39:50 -070071
Tao Bao557fa1f2017-02-07 12:51:00 -080072 err = SurfaceInit(&intf_data.current_mode, &surfaces[1]);
Tao Bao8f0e21b2017-02-07 13:00:18 -080073 if (err < 0) {
74 fprintf(stderr, "allocating surface 1 failed: %s\n", strerror(-err));
Tao Bao557fa1f2017-02-07 12:51:00 -080075 surfaces[1] = {};
76 n_surfaces = 1;
Tao Bao8f0e21b2017-02-07 13:00:18 -080077 } else {
Tao Bao557fa1f2017-02-07 12:51:00 -080078 n_surfaces = 2;
Tao Bao8f0e21b2017-02-07 13:00:18 -080079 }
Greg Hackmann41909dd2014-04-25 10:39:50 -070080
81done:
Tao Bao8f0e21b2017-02-07 13:00:18 -080082 adf_free_interface_data(&intf_data);
83 return ret;
Greg Hackmann41909dd2014-04-25 10:39:50 -070084}
85
Tao Bao557fa1f2017-02-07 12:51:00 -080086int MinuiBackendAdf::DeviceInit(adf_device* dev) {
Tao Bao8f0e21b2017-02-07 13:00:18 -080087 adf_id_t intf_id;
Tao Bao557fa1f2017-02-07 12:51:00 -080088 int err = adf_find_simple_post_configuration(dev, &format, 1, &intf_id, &eng_id);
Tao Bao8f0e21b2017-02-07 13:00:18 -080089 if (err < 0) return err;
Greg Hackmann41909dd2014-04-25 10:39:50 -070090
Tao Bao557fa1f2017-02-07 12:51:00 -080091 err = adf_device_attach(dev, eng_id, intf_id);
Tao Bao8f0e21b2017-02-07 13:00:18 -080092 if (err < 0 && err != -EALREADY) return err;
Greg Hackmann41909dd2014-04-25 10:39:50 -070093
Tao Bao557fa1f2017-02-07 12:51:00 -080094 intf_fd = adf_interface_open(dev, intf_id, O_RDWR);
95 if (intf_fd < 0) return intf_fd;
Greg Hackmann41909dd2014-04-25 10:39:50 -070096
Tao Bao557fa1f2017-02-07 12:51:00 -080097 err = InterfaceInit();
Tao Bao8f0e21b2017-02-07 13:00:18 -080098 if (err < 0) {
Tao Bao557fa1f2017-02-07 12:51:00 -080099 close(intf_fd);
100 intf_fd = -1;
Tao Bao8f0e21b2017-02-07 13:00:18 -0800101 }
Greg Hackmann41909dd2014-04-25 10:39:50 -0700102
Tao Bao8f0e21b2017-02-07 13:00:18 -0800103 return err;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700104}
105
Tao Bao557fa1f2017-02-07 12:51:00 -0800106GRSurface* MinuiBackendAdf::Init() {
Tony Kuofd778e32015-02-05 21:25:56 +0800107#if defined(RECOVERY_ABGR)
Tao Bao557fa1f2017-02-07 12:51:00 -0800108 format = DRM_FORMAT_ABGR8888;
Tony Kuofd778e32015-02-05 21:25:56 +0800109#elif defined(RECOVERY_BGRA)
Tao Bao557fa1f2017-02-07 12:51:00 -0800110 format = DRM_FORMAT_BGRA8888;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700111#elif defined(RECOVERY_RGBX)
Tao Bao557fa1f2017-02-07 12:51:00 -0800112 format = DRM_FORMAT_RGBX8888;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700113#else
Tao Bao557fa1f2017-02-07 12:51:00 -0800114 format = DRM_FORMAT_RGB565;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700115#endif
116
Tao Bao8f0e21b2017-02-07 13:00:18 -0800117 adf_id_t* dev_ids = nullptr;
118 ssize_t n_dev_ids = adf_devices(&dev_ids);
119 if (n_dev_ids == 0) {
120 return nullptr;
121 } else if (n_dev_ids < 0) {
122 fprintf(stderr, "enumerating adf devices failed: %s\n", strerror(-n_dev_ids));
123 return nullptr;
124 }
125
Tao Bao557fa1f2017-02-07 12:51:00 -0800126 intf_fd = -1;
Tao Bao8f0e21b2017-02-07 13:00:18 -0800127
Tao Bao557fa1f2017-02-07 12:51:00 -0800128 for (ssize_t i = 0; i < n_dev_ids && intf_fd < 0; i++) {
129 int err = adf_device_open(dev_ids[i], O_RDWR, &dev);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800130 if (err < 0) {
131 fprintf(stderr, "opening adf device %u failed: %s\n", dev_ids[i], strerror(-err));
132 continue;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700133 }
134
Tao Bao557fa1f2017-02-07 12:51:00 -0800135 err = DeviceInit(&dev);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800136 if (err < 0) {
137 fprintf(stderr, "initializing adf device %u failed: %s\n", dev_ids[i], strerror(-err));
Tao Bao557fa1f2017-02-07 12:51:00 -0800138 adf_device_close(&dev);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800139 }
140 }
Greg Hackmann41909dd2014-04-25 10:39:50 -0700141
Tao Bao8f0e21b2017-02-07 13:00:18 -0800142 free(dev_ids);
Greg Hackmann41909dd2014-04-25 10:39:50 -0700143
Tao Bao557fa1f2017-02-07 12:51:00 -0800144 if (intf_fd < 0) return nullptr;
Greg Hackmann41909dd2014-04-25 10:39:50 -0700145
Tao Bao557fa1f2017-02-07 12:51:00 -0800146 GRSurface* ret = Flip();
Tao Bao8f0e21b2017-02-07 13:00:18 -0800147
Tao Bao557fa1f2017-02-07 12:51:00 -0800148 Blank(true);
149 Blank(false);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800150
151 return ret;
152}
153
Tao Bao557fa1f2017-02-07 12:51:00 -0800154void MinuiBackendAdf::Sync(GRSurfaceAdf* surf) {
Tao Bao8f0e21b2017-02-07 13:00:18 -0800155 static constexpr unsigned int warningTimeout = 3000;
156
157 if (surf == nullptr) return;
158
159 if (surf->fence_fd >= 0) {
160 int err = sync_wait(surf->fence_fd, warningTimeout);
161 if (err < 0) {
162 perror("adf sync fence wait error\n");
Greg Hackmann41909dd2014-04-25 10:39:50 -0700163 }
164
xinglong.zhuc4fa2c22016-08-05 14:52:22 +0800165 close(surf->fence_fd);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800166 surf->fence_fd = -1;
167 }
Greg Hackmann41909dd2014-04-25 10:39:50 -0700168}
169
Tao Bao557fa1f2017-02-07 12:51:00 -0800170GRSurface* MinuiBackendAdf::Flip() {
171 GRSurfaceAdf* surf = &surfaces[current_surface];
Greg Hackmann41909dd2014-04-25 10:39:50 -0700172
Tao Bao557fa1f2017-02-07 12:51:00 -0800173 int fence_fd = adf_interface_simple_post(intf_fd, eng_id, surf->width, surf->height, format,
174 surf->fd, surf->offset, surf->pitch, -1);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800175 if (fence_fd >= 0) surf->fence_fd = fence_fd;
176
Tao Bao557fa1f2017-02-07 12:51:00 -0800177 current_surface = (current_surface + 1) % n_surfaces;
178 Sync(&surfaces[current_surface]);
179 return &surfaces[current_surface];
Greg Hackmann41909dd2014-04-25 10:39:50 -0700180}
181
Tao Bao557fa1f2017-02-07 12:51:00 -0800182void MinuiBackendAdf::Blank(bool blank) {
183 adf_interface_blank(intf_fd, blank ? DRM_MODE_DPMS_OFF : DRM_MODE_DPMS_ON);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800184}
Greg Hackmann41909dd2014-04-25 10:39:50 -0700185
Tao Bao557fa1f2017-02-07 12:51:00 -0800186void MinuiBackendAdf::SurfaceDestroy(GRSurfaceAdf* surf) {
187 munmap(surf->data, surf->pitch * surf->height);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800188 close(surf->fence_fd);
189 close(surf->fd);
190}
191
Tao Bao557fa1f2017-02-07 12:51:00 -0800192MinuiBackendAdf::~MinuiBackendAdf() {
193 adf_device_close(&dev);
194 for (unsigned int i = 0; i < n_surfaces; i++) {
195 SurfaceDestroy(&surfaces[i]);
Tao Bao8f0e21b2017-02-07 13:00:18 -0800196 }
Tao Bao557fa1f2017-02-07 12:51:00 -0800197 if (intf_fd >= 0) close(intf_fd);
Greg Hackmann41909dd2014-04-25 10:39:50 -0700198}