blob: f958d62d4e8751ad0b7fe4ff7d857e1e5ae8a490 [file] [log] [blame]
Doug Zongker5290f202014-03-11 13:22:04 -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_fbdev.h"
18
Tao Baoacf4dd12017-02-07 14:32:05 -080019#include <fcntl.h>
20#include <linux/fb.h>
21#include <stdio.h>
Doug Zongker5290f202014-03-11 13:22:04 -070022#include <stdlib.h>
Elliott Hughescd3c55a2015-01-29 20:50:08 -080023#include <string.h>
Doug Zongker5290f202014-03-11 13:22:04 -070024#include <sys/ioctl.h>
25#include <sys/mman.h>
26#include <sys/types.h>
Tao Baoacf4dd12017-02-07 14:32:05 -080027#include <unistd.h>
Doug Zongker5290f202014-03-11 13:22:04 -070028
Tao Bao0ecbd762017-01-16 21:16:58 -080029#include "minui/minui.h"
Doug Zongker5290f202014-03-11 13:22:04 -070030
Tao Bao557fa1f2017-02-07 12:51:00 -080031MinuiBackendFbdev::MinuiBackendFbdev() : gr_draw(nullptr), fb_fd(-1) {}
Doug Zongker5290f202014-03-11 13:22:04 -070032
Tao Bao557fa1f2017-02-07 12:51:00 -080033void MinuiBackendFbdev::Blank(bool blank) {
Tao Baoacf4dd12017-02-07 14:32:05 -080034 int ret = ioctl(fb_fd, FBIOBLANK, blank ? FB_BLANK_POWERDOWN : FB_BLANK_UNBLANK);
Tao Bao557fa1f2017-02-07 12:51:00 -080035 if (ret < 0) perror("ioctl(): blank");
Doug Zongker5290f202014-03-11 13:22:04 -070036}
37
Tao Bao557fa1f2017-02-07 12:51:00 -080038void MinuiBackendFbdev::SetDisplayedFramebuffer(unsigned n) {
Tao Baoacf4dd12017-02-07 14:32:05 -080039 if (n > 1 || !double_buffered) return;
Doug Zongker5290f202014-03-11 13:22:04 -070040
Tao Baoacf4dd12017-02-07 14:32:05 -080041 vi.yres_virtual = gr_framebuffer[0].height * 2;
42 vi.yoffset = n * gr_framebuffer[0].height;
43 vi.bits_per_pixel = gr_framebuffer[0].pixel_bytes * 8;
44 if (ioctl(fb_fd, FBIOPUT_VSCREENINFO, &vi) < 0) {
45 perror("active fb swap failed");
46 }
47 displayed_buffer = n;
Doug Zongker5290f202014-03-11 13:22:04 -070048}
49
Tao Bao557fa1f2017-02-07 12:51:00 -080050GRSurface* MinuiBackendFbdev::Init() {
Tao Baoacf4dd12017-02-07 14:32:05 -080051 int fd = open("/dev/graphics/fb0", O_RDWR);
52 if (fd == -1) {
53 perror("cannot open fb0");
54 return nullptr;
55 }
56
57 fb_fix_screeninfo fi;
58 if (ioctl(fd, FBIOGET_FSCREENINFO, &fi) < 0) {
59 perror("failed to get fb0 info");
60 close(fd);
61 return nullptr;
62 }
63
64 if (ioctl(fd, FBIOGET_VSCREENINFO, &vi) < 0) {
65 perror("failed to get fb0 info");
66 close(fd);
67 return nullptr;
68 }
69
70 // We print this out for informational purposes only, but
71 // throughout we assume that the framebuffer device uses an RGBX
72 // pixel format. This is the case for every development device I
73 // have access to. For some of those devices (eg, hammerhead aka
74 // Nexus 5), FBIOGET_VSCREENINFO *reports* that it wants a
75 // different format (XBGR) but actually produces the correct
76 // results on the display when you write RGBX.
77 //
78 // If you have a device that actually *needs* another pixel format
79 // (ie, BGRX, or 565), patches welcome...
80
81 printf(
82 "fb0 reports (possibly inaccurate):\n"
83 " vi.bits_per_pixel = %d\n"
84 " vi.red.offset = %3d .length = %3d\n"
85 " vi.green.offset = %3d .length = %3d\n"
86 " vi.blue.offset = %3d .length = %3d\n",
87 vi.bits_per_pixel, vi.red.offset, vi.red.length, vi.green.offset, vi.green.length,
88 vi.blue.offset, vi.blue.length);
89
90 void* bits = mmap(0, fi.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
91 if (bits == MAP_FAILED) {
92 perror("failed to mmap framebuffer");
93 close(fd);
94 return nullptr;
95 }
96
97 memset(bits, 0, fi.smem_len);
98
99 gr_framebuffer[0].width = vi.xres;
100 gr_framebuffer[0].height = vi.yres;
101 gr_framebuffer[0].row_bytes = fi.line_length;
102 gr_framebuffer[0].pixel_bytes = vi.bits_per_pixel / 8;
Tao Bao92bdb5a2018-10-21 12:12:37 -0700103 gr_framebuffer[0].buffer_ = static_cast<uint8_t*>(bits);
104 memset(gr_framebuffer[0].buffer_, 0, gr_framebuffer[0].height * gr_framebuffer[0].row_bytes);
Tao Baoacf4dd12017-02-07 14:32:05 -0800105
106 /* check if we can use double buffering */
107 if (vi.yres * fi.line_length * 2 <= fi.smem_len) {
108 double_buffered = true;
109
Tao Bao92bdb5a2018-10-21 12:12:37 -0700110 gr_framebuffer[1] = gr_framebuffer[0];
111 gr_framebuffer[1].buffer_ =
112 gr_framebuffer[0].buffer_ + gr_framebuffer[0].height * gr_framebuffer[0].row_bytes;
Tao Baoacf4dd12017-02-07 14:32:05 -0800113
114 gr_draw = gr_framebuffer + 1;
115
116 } else {
117 double_buffered = false;
118
119 // Without double-buffering, we allocate RAM for a buffer to
120 // draw in, and then "flipping" the buffer consists of a
121 // memcpy from the buffer we allocated to the framebuffer.
122
Tao Bao92bdb5a2018-10-21 12:12:37 -0700123 gr_draw = new GRSurfaceFbdev;
124 *gr_draw = gr_framebuffer[0];
125 gr_draw->buffer_ = new uint8_t[gr_draw->height * gr_draw->row_bytes];
Tao Baoacf4dd12017-02-07 14:32:05 -0800126 }
Doug Zongker5290f202014-03-11 13:22:04 -0700127
Tao Bao92bdb5a2018-10-21 12:12:37 -0700128 memset(gr_draw->buffer_, 0, gr_draw->height * gr_draw->row_bytes);
Tao Baoacf4dd12017-02-07 14:32:05 -0800129 fb_fd = fd;
Tao Bao557fa1f2017-02-07 12:51:00 -0800130 SetDisplayedFramebuffer(0);
Doug Zongker5290f202014-03-11 13:22:04 -0700131
Tao Baoacf4dd12017-02-07 14:32:05 -0800132 printf("framebuffer: %d (%d x %d)\n", fb_fd, gr_draw->width, gr_draw->height);
Doug Zongker5290f202014-03-11 13:22:04 -0700133
Tao Bao557fa1f2017-02-07 12:51:00 -0800134 Blank(true);
135 Blank(false);
Doug Zongker5290f202014-03-11 13:22:04 -0700136
Tao Baoacf4dd12017-02-07 14:32:05 -0800137 return gr_draw;
Doug Zongker5290f202014-03-11 13:22:04 -0700138}
139
Tao Bao557fa1f2017-02-07 12:51:00 -0800140GRSurface* MinuiBackendFbdev::Flip() {
Tao Baoacf4dd12017-02-07 14:32:05 -0800141 if (double_buffered) {
142 // Change gr_draw to point to the buffer currently displayed,
143 // then flip the driver so we're displaying the other buffer
144 // instead.
145 gr_draw = gr_framebuffer + displayed_buffer;
Tao Bao557fa1f2017-02-07 12:51:00 -0800146 SetDisplayedFramebuffer(1 - displayed_buffer);
Tao Baoacf4dd12017-02-07 14:32:05 -0800147 } else {
148 // Copy from the in-memory surface to the framebuffer.
Tao Bao92bdb5a2018-10-21 12:12:37 -0700149 memcpy(gr_framebuffer[0].buffer_, gr_draw->buffer_, gr_draw->height * gr_draw->row_bytes);
Tao Baoacf4dd12017-02-07 14:32:05 -0800150 }
151 return gr_draw;
Doug Zongker5290f202014-03-11 13:22:04 -0700152}
153
Tao Bao557fa1f2017-02-07 12:51:00 -0800154MinuiBackendFbdev::~MinuiBackendFbdev() {
Tao Baoacf4dd12017-02-07 14:32:05 -0800155 close(fb_fd);
156 fb_fd = -1;
Doug Zongker5290f202014-03-11 13:22:04 -0700157
Tao Baoacf4dd12017-02-07 14:32:05 -0800158 if (!double_buffered && gr_draw) {
Tao Bao92bdb5a2018-10-21 12:12:37 -0700159 delete[] gr_draw->buffer_;
160 delete gr_draw;
Tao Baoacf4dd12017-02-07 14:32:05 -0800161 }
162 gr_draw = nullptr;
Doug Zongker5290f202014-03-11 13:22:04 -0700163}