forked from andy-shev/fb-test-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfb-test.c
301 lines (259 loc) · 6.83 KB
/
fb-test.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
* test.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"
static struct fb_info fb_info;
static void draw_pixel(struct fb_info *fb_info, int x, int y, unsigned color)
{
void *fbmem;
fbmem = fb_info->ptr;
if (fb_info->var.bits_per_pixel == 8) {
unsigned char *p;
fbmem += fb_info->fix.line_length * y;
p = fbmem;
p += x;
*p = color;
} else if (fb_info->var.bits_per_pixel == 16) {
unsigned short c;
unsigned r = (color >> 16) & 0xff;
unsigned g = (color >> 8) & 0xff;
unsigned b = (color >> 0) & 0xff;
unsigned short *p;
r = r * 32 / 256;
g = g * 64 / 256;
b = b * 32 / 256;
c = (r << 11) | (g << 5) | (b << 0);
fbmem += fb_info->fix.line_length * y;
p = fbmem;
p += x;
*p = c;
} else if (fb_info->var.bits_per_pixel == 24) {
unsigned char *p;
p = (unsigned char *)fbmem + fb_info->fix.line_length * y + 3 * x;
*p++ = color;
*p++ = color >> 8;
*p = color >> 16;
} else {
unsigned int *p;
fbmem += fb_info->fix.line_length * y;
p = fbmem;
p += x;
*p = color;
}
}
static void fill_screen(struct fb_info *fb_info)
{
unsigned x, y;
unsigned h = fb_info->var.yres;
unsigned w = fb_info->var.xres;
for (y = 0; y < h; y++) {
for (x = 0; x < w; x++) {
if (x < 20 && y < 20)
draw_pixel(fb_info, x, y, 0xffffff);
else if (x < 20 && (y > 20 && y < h - 20))
draw_pixel(fb_info, x, y, 0xff);
else if (y < 20 && (x > 20 && x < w - 20))
draw_pixel(fb_info, x, y, 0xff00);
else if (x > w - 20 && (y > 20 && y < h - 20))
draw_pixel(fb_info, x, y, 0xff0000);
else if (y > h - 20 && (x > 20 && x < w - 20))
draw_pixel(fb_info, x, y, 0xffff00);
else if (x == 20 || x == w - 20 ||
y == 20 || y == h - 20)
draw_pixel(fb_info, x, y, 0xffffff);
else if (x == y || w - x == h - y)
draw_pixel(fb_info, x, y, 0xff00ff);
else if (w - x == y || x == h - y)
draw_pixel(fb_info, x, y, 0x00ffff);
else if (x > 20 && y > 20 && x < w - 20 && y < h - 20) {
int t = x * 3 / w;
unsigned r = 0, g = 0, b = 0;
unsigned c;
if (fb_info->var.bits_per_pixel == 16) {
if (t == 0)
b = (y % 32) * 256 / 32;
else if (t == 1)
g = (y % 64) * 256 / 64;
else if (t == 2)
r = (y % 32) * 256 / 32;
} else {
if (t == 0)
b = (y % 256);
else if (t == 1)
g = (y % 256);
else if (t == 2)
r = (y % 256);
}
c = (r << 16) | (g << 8) | (b << 0);
draw_pixel(fb_info, x, y, c);
} else {
draw_pixel(fb_info, x, y, 0);
}
}
}
fb_put_string(fb_info, w / 3 * 2, 30, "RED", 3, 0xffffff, 1, 3);
fb_put_string(fb_info, w / 3, 30, "GREEN", 5, 0xffffff, 1, 5);
fb_put_string(fb_info, 20, 30, "BLUE", 4, 0xffffff, 1, 4);
}
unsigned short rgb888_to_rgb565(unsigned int color)
{
unsigned b5 = (color >> 3) & 0x1f;
unsigned g6 = (color >> 10) & 0x3f;
unsigned r5 = (color >> 19) & 0x1f;
return b5 | (g6 << 5) | (r5 << 11);
}
void fill_screen_solid(struct fb_info *fb_info, unsigned int color)
{
unsigned x, y;
unsigned h = fb_info->var.yres;
unsigned w = fb_info->var.xres;
unsigned bits_per_pixel = fb_info->var.bits_per_pixel;
unsigned line_length = fb_info->fix.line_length;
unsigned char *line = fb_info->ptr;
if (bits_per_pixel == 8) {
for (y = 0; y < h; y++) {
memset(line, color, w);
line += line_length;
}
} else if (bits_per_pixel == 16) {
unsigned short rgb565 = rgb888_to_rgb565(color);
for (y = 0; y < h; y++) {
for (x = 0; x < w; x++)
((unsigned short *) line)[x] = rgb565;
line += line_length;
}
} else if (bits_per_pixel == 24) {
for (y = 0; y < h; y++) {
unsigned char *p = line;
for (x = 0; x < w; x++) {
*p++ = color;
*p++ = color >> 8;
*p++ = color >> 16;
}
line += line_length;
}
} else {
for (y = 0; y < h; y++) {
for (x = 0; x < w; x++)
((unsigned int *) line)[x] = color;
line += line_length;
}
}
}
void fill_screen_repeated_bytes(struct fb_info *fb_info, unsigned char byte)
{
// WARNING if bits_per_pixel == 32 we may write into transparency bits
unsigned x_bytes = fb_info->var.bits_per_pixel / 8 * fb_info->var.xres;
if (x_bytes == fb_info->fix.line_length) {
memset(fb_info->ptr, byte, x_bytes * fb_info->var.yres);
return;
}
unsigned char *line = fb_info->ptr;
unsigned y;
for (y = 0; y < fb_info->var.yres; y++) {
memset(line, byte, x_bytes);
line += fb_info->fix.line_length;
}
}
static void do_fill_screen(struct fb_info *fb_info, int pattern)
{
switch (pattern) {
case 1:
fill_screen_solid(fb_info, 0xff0000);
break;
case 2:
fill_screen_solid(fb_info, 0x00ff00);
break;
case 3:
fill_screen_solid(fb_info, 0x0000ff);
break;
case 4:
fill_screen_repeated_bytes(fb_info, 0xff);
break;
case 5:
fill_screen_repeated_bytes(fb_info, 0);
break;
case 0:
default:
fill_screen(fb_info);
break;
}
}
void show_help(void)
{
printf("Usage: fb-test -f fbnum -r -g -b -w -p pattern\n");
printf("Where -f fbnum = framebuffer device number\n");
printf(" -r = fill framebuffer with red\n");
printf(" -g = fill framebuffer with green\n");
printf(" -b = fill framebuffer with blue\n");
printf(" -w = fill framebuffer with white\n");
printf(" -k = fill framebuffer with black\n");
printf(" -p pattern = fill framebuffer with pattern number\n");
}
int main(int argc, char **argv)
{
int opt;
int req_fb = 0;
int req_pattern = 0;
printf("fb-test %d.%d.%d (%s)\n", VERSION, PATCHLEVEL, SUBLEVEL,
VERSION_NAME);
while ((opt = getopt(argc, argv, "hrgbwkp:f:")) != -1) {
switch (opt) {
case 'f':
req_fb = atoi(optarg);
break;
case 'p':
req_pattern = atoi(optarg);
break;
case 'r':
req_pattern = 1;
break;
case 'g':
req_pattern = 2;
break;
case 'b':
req_pattern = 3;
break;
case 'w':
req_pattern = 4;
break;
case 'k':
req_pattern = 5;
break;
case 'h':
show_help();
return 0;
default:
exit(EXIT_FAILURE);
}
}
fb_open(req_fb, &fb_info);
do_fill_screen(&fb_info, req_pattern);
return 0;
}