-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcommon.c
130 lines (108 loc) · 3.11 KB
/
common.c
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
123
124
125
126
127
128
129
/*
* common.c
*
* Author: Tomi Valkeinen <[email protected]>
* Copyright (C) 2009-2012 Tomi Valkeinen
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <getopt.h>
#include <time.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <linux/fb.h>
#include "common.h"
void fb_open(int fb_num, struct fb_info *fb_info)
{
char str[64];
int fd;
sprintf(str, "/dev/fb%d", fb_num);
fd = open(str, O_RDWR);
ASSERT(fd >= 0);
fb_info->fd = fd;
IOCTL1(fd, FBIOGET_VSCREENINFO, &fb_info->var);
IOCTL1(fd, FBIOGET_FSCREENINFO, &fb_info->fix);
printf("fb res %dx%d virtual %dx%d, line_len %d\n",
fb_info->var.xres, fb_info->var.yres,
fb_info->var.xres_virtual, fb_info->var.yres_virtual,
fb_info->fix.line_length);
printf("dim %dmm x %dmm\n", fb_info->var.width, fb_info->var.height);
void *ptr = mmap(0,
fb_info->var.yres_virtual * fb_info->fix.line_length,
PROT_WRITE | PROT_READ,
MAP_SHARED, fd, 0);
ASSERT(ptr != MAP_FAILED);
fb_info->ptr = ptr;
}
static void fb_clear_area(struct fb_info *fb_info, int x, int y, int w, int h)
{
int i = 0;
int loc;
char *fbuffer = (char *)fb_info->ptr;
struct fb_var_screeninfo *var = &fb_info->var;
struct fb_fix_screeninfo *fix = &fb_info->fix;
for (i = 0; i < h; i++) {
loc = (x + var->xoffset) * (var->bits_per_pixel / 8)
+ (y + i + var->yoffset) * fix->line_length;
memset(fbuffer + loc, 0, w * var->bits_per_pixel / 8);
}
}
static void fb_put_char(struct fb_info *fb_info, int x, int y, char c,
unsigned color)
{
int i, j, bits, loc;
unsigned short *p16;
unsigned int *p32;
struct fb_var_screeninfo *var = &fb_info->var;
struct fb_fix_screeninfo *fix = &fb_info->fix;
for (i = 0; i < 8; i++) {
bits = fontdata_8x8[8 * c + i];
for (j = 0; j < 8; j++) {
loc = (x + j + var->xoffset) * (var->bits_per_pixel / 8)
+ (y + i + var->yoffset) * fix->line_length;
if (loc >= 0 && loc < fix->smem_len &&
((bits >> (7 - j)) & 1)) {
switch (var->bits_per_pixel) {
case 16:
p16 = fb_info->ptr + loc;
*p16 = color;
break;
case 24:
case 32:
p32 = fb_info->ptr + loc;
*p32 = color;
break;
}
}
}
}
}
int fb_put_string(struct fb_info *fb_info, int x, int y, char *s, int maxlen,
int color, int clear, int clearlen)
{
int i;
int w = 0;
if (clear)
fb_clear_area(fb_info, x, y, clearlen * 8, 8);
for (i = 0; i < strlen(s) && i < maxlen; i++) {
fb_put_char(fb_info, (x + 8 * i), y, s[i], color);
w += 8;
}
return w;
}