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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/*
* V4L2 Codec decoding example application
* Kamil Debski <k.debski@samsung.com>
*
* Framebuffer operations
*
* Copyright 2012 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <linux/fb.h>
#include "common.h"
#include "fb.h"
int fb_open(struct instance *i, char *name)
{
struct fb_var_screeninfo fbinfo;
int ret;
i->fb.fd = open(name, O_RDWR);
if (i->fb.fd < 0) {
err("Failed to open frame buffer: %s", name);
return -1;
}
ret = ioctl(i->fb.fd, FBIOGET_VSCREENINFO, &fbinfo);
if (ret != 0) {
err("Failed to get frame buffer properties");
return -1;
}
dbg("Framebuffer properties: xres=%d, yres=%d, bpp=%d",
fbinfo.xres, fbinfo.yres, fbinfo.bits_per_pixel);
dbg("Virtual resolution: vxres=%d vyres=%d",
fbinfo.xres_virtual, fbinfo.yres_virtual);
i->fimc.width = i->fb.width = fbinfo.xres;
i->fimc.height = i->fb.height = fbinfo.yres;
i->fb.virt_width = fbinfo.xres_virtual;
i->fb.virt_height = fbinfo.yres_virtual;
i->fimc.bpp = i->fb.bpp = fbinfo.bits_per_pixel;
i->fimc.stride = i->fb.stride = i->fb.virt_width * i->fb.bpp / 8;
i->fb.full_size = i->fb.stride * i->fb.virt_height;
i->fimc.size = i->fb.size = i->fb.stride * fbinfo.yres;
i->fb.p[0] = mmap(0, i->fb.full_size, PROT_WRITE | PROT_READ,
MAP_SHARED, i->fb.fd, 0);
i->fb.buffers = 1;
if (i->fimc.double_buf) {
i->fb.p[1] = i->fb.p[0] + i->fb.size;
i->fb.buffers = 2;
}
i->fimc.buffers = i->fb.buffers;
i->fimc.p[0] = i->fb.p[0];
i->fimc.p[1] = i->fb.p[1];
return fb_set_virt_y_offset(i, 0);
}
int fb_set_virt_y_offset(struct instance *i, int yoffs)
{
struct fb_var_screeninfo var;
int ret;
ret = ioctl(i->fb.fd, FBIOGET_VSCREENINFO, &var);
if (ret != 0) {
err("Failed to get frame buffer screen information");
return -1;
}
var.yoffset = yoffs;
ret = ioctl(i->fb.fd, FBIOPAN_DISPLAY, &var);
if (ret != 0) {
err("Failed to set y_offset of frame buffer");
return -1;
}
return 0;
}
int fb_wait_for_vsync(struct instance *i)
{
int ret;
unsigned long temp;
ret = ioctl(i->fb.fd, FBIO_WAITFORVSYNC, &temp);
if (ret < 0) {
err("Wait for vsync failed");
return -1;
}
return 0;
}
void fb_close(struct instance *i)
{
fb_set_virt_y_offset(i, 0);
munmap(i->fb.p[0], i->fb.full_size);
close(i->fb.fd);
}
|