blob: 75d41b88223d1b5aff0d9dc07df49162c936c030 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen1c5b2581999-12-16 20:59:36 +00002/*
3 * Mini fbset implementation for busybox
4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersen1c5b2581999-12-16 20:59:36 +00008 *
9 * This is a from-scratch implementation of fbset; but the de facto fbset
10 * implementation was a good reference. fbset (original) is released under
Eric Andersenc7bda1c2004-03-15 08:29:22 +000011 * the GPL, and is (c) 1995-1999 by:
Erik Andersen1c5b2581999-12-16 20:59:36 +000012 * Geert Uytterhoeven (Geert.Uytterhoeven@cs.kuleuven.ac.be)
13 */
14
Pere Orga5bc8c002011-04-11 03:29:49 +020015//usage:#define fbset_trivial_usage
16//usage: "[OPTIONS] [MODE]"
17//usage:#define fbset_full_usage "\n\n"
18//usage: "Show and modify frame buffer settings"
19//usage:
20//usage:#define fbset_example_usage
21//usage: "$ fbset\n"
22//usage: "mode \"1024x768-76\"\n"
23//usage: " # D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz\n"
24//usage: " geometry 1024 768 1024 768 16\n"
25//usage: " timings 12714 128 32 16 4 128 4\n"
26//usage: " accel false\n"
27//usage: " rgba 5/11,6/5,5/0,0/0\n"
28//usage: "endmode\n"
29
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000030#include "libbb.h"
Erik Andersen1c5b2581999-12-16 20:59:36 +000031
Eric Andersen5f284552003-11-14 03:11:29 +000032#define DEFAULTFBDEV FB_0
Erik Andersen1c5b2581999-12-16 20:59:36 +000033#define DEFAULTFBMODE "/etc/fb.modes"
34
Eric Andersenc873d612000-09-21 04:09:58 +000035/* Stuff stolen from the kernel's fb.h */
Denis Vlasenko274b8c02006-09-30 16:22:59 +000036#define FB_ACTIVATE_ALL 64
Rob Landleybc68cd12006-03-10 19:22:06 +000037enum {
38 FBIOGET_VSCREENINFO = 0x4600,
39 FBIOPUT_VSCREENINFO = 0x4601
40};
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +010041
Eric Andersenc873d612000-09-21 04:09:58 +000042struct fb_bitfield {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000043 uint32_t offset; /* beginning of bitfield */
Denys Vlasenkofb132e42010-10-29 11:46:52 +020044 uint32_t length; /* length of bitfield */
Denis Vlasenko39d551f2006-09-30 16:28:30 +000045 uint32_t msb_right; /* !=0: Most significant bit is right */
Eric Andersenc873d612000-09-21 04:09:58 +000046};
47struct fb_var_screeninfo {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000048 uint32_t xres; /* visible resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000049 uint32_t yres;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000050 uint32_t xres_virtual; /* virtual resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000051 uint32_t yres_virtual;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000052 uint32_t xoffset; /* offset from virtual to visible */
53 uint32_t yoffset; /* resolution */
Eric Andersenc873d612000-09-21 04:09:58 +000054
Denis Vlasenko39d551f2006-09-30 16:28:30 +000055 uint32_t bits_per_pixel;
56 uint32_t grayscale; /* !=0 Graylevels instead of colors */
Eric Andersenc873d612000-09-21 04:09:58 +000057
Denis Vlasenko39d551f2006-09-30 16:28:30 +000058 struct fb_bitfield red; /* bitfield in fb mem if true color, */
59 struct fb_bitfield green; /* else only length is significant */
Eric Andersenc873d612000-09-21 04:09:58 +000060 struct fb_bitfield blue;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000061 struct fb_bitfield transp; /* transparency */
Eric Andersenc873d612000-09-21 04:09:58 +000062
Denis Vlasenko39d551f2006-09-30 16:28:30 +000063 uint32_t nonstd; /* !=0 Non standard pixel format */
Eric Andersenc873d612000-09-21 04:09:58 +000064
Denis Vlasenko39d551f2006-09-30 16:28:30 +000065 uint32_t activate; /* see FB_ACTIVATE_x */
Eric Andersenc873d612000-09-21 04:09:58 +000066
Denis Vlasenko39d551f2006-09-30 16:28:30 +000067 uint32_t height; /* height of picture in mm */
68 uint32_t width; /* width of picture in mm */
Eric Andersenc873d612000-09-21 04:09:58 +000069
Denys Vlasenkofb132e42010-10-29 11:46:52 +020070 uint32_t accel_flags; /* acceleration flags (hints) */
Eric Andersenc873d612000-09-21 04:09:58 +000071
72 /* Timing: All values in pixclocks, except pixclock (of course) */
Denis Vlasenko39d551f2006-09-30 16:28:30 +000073 uint32_t pixclock; /* pixel clock in ps (pico seconds) */
74 uint32_t left_margin; /* time from sync to picture */
75 uint32_t right_margin; /* time from picture to sync */
76 uint32_t upper_margin; /* time from sync to picture */
Eric Andersen1eceb122003-07-14 19:32:40 +000077 uint32_t lower_margin;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000078 uint32_t hsync_len; /* length of horizontal sync */
79 uint32_t vsync_len; /* length of vertical sync */
80 uint32_t sync; /* see FB_SYNC_x */
81 uint32_t vmode; /* see FB_VMODE_x */
82 uint32_t reserved[6]; /* Reserved for future compatibility */
Eric Andersenc873d612000-09-21 04:09:58 +000083};
84
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +010085static void copy_if_gt0(uint32_t *src, uint32_t *dst, unsigned cnt)
86{
87 do {
88 if ((int32_t) *src > 0)
89 *dst = *src;
90 src++;
91 dst++;
92 } while (--cnt);
93}
94
95static NOINLINE void copy_changed_values(
96 struct fb_var_screeninfo *base,
97 struct fb_var_screeninfo *set)
98{
99 //if ((int32_t) set->xres > 0) base->xres = set->xres;
100 //if ((int32_t) set->yres > 0) base->yres = set->yres;
101 //if ((int32_t) set->xres_virtual > 0) base->xres_virtual = set->xres_virtual;
102 //if ((int32_t) set->yres_virtual > 0) base->yres_virtual = set->yres_virtual;
103 copy_if_gt0(&set->xres, &base->xres, 4);
104
105 if ((int32_t) set->bits_per_pixel > 0) base->bits_per_pixel = set->bits_per_pixel;
106 //copy_if_gt0(&set->bits_per_pixel, &base->bits_per_pixel, 1);
107
108 //if ((int32_t) set->pixclock > 0) base->pixclock = set->pixclock;
109 //if ((int32_t) set->left_margin > 0) base->left_margin = set->left_margin;
110 //if ((int32_t) set->right_margin > 0) base->right_margin = set->right_margin;
111 //if ((int32_t) set->upper_margin > 0) base->upper_margin = set->upper_margin;
112 //if ((int32_t) set->lower_margin > 0) base->lower_margin = set->lower_margin;
113 //if ((int32_t) set->hsync_len > 0) base->hsync_len = set->hsync_len;
114 //if ((int32_t) set->vsync_len > 0) base->vsync_len = set->vsync_len;
115 //if ((int32_t) set->sync > 0) base->sync = set->sync;
116 //if ((int32_t) set->vmode > 0) base->vmode = set->vmode;
117 copy_if_gt0(&set->pixclock, &base->pixclock, 9);
118}
119
120
121enum {
122 CMD_FB = 1,
123 CMD_DB = 2,
124 CMD_GEOMETRY = 3,
125 CMD_TIMING = 4,
126 CMD_ACCEL = 5,
127 CMD_HSYNC = 6,
128 CMD_VSYNC = 7,
129 CMD_LACED = 8,
130 CMD_DOUBLE = 9,
131/* CMD_XCOMPAT = 10, */
132 CMD_ALL = 11,
133 CMD_INFO = 12,
134 CMD_SHOW = 13,
135 CMD_CHANGE = 14,
136
137#if ENABLE_FEATURE_FBSET_FANCY
138 CMD_XRES = 100,
139 CMD_YRES = 101,
140 CMD_VXRES = 102,
141 CMD_VYRES = 103,
142 CMD_DEPTH = 104,
143 CMD_MATCH = 105,
144 CMD_PIXCLOCK = 106,
145 CMD_LEFT = 107,
146 CMD_RIGHT = 108,
147 CMD_UPPER = 109,
148 CMD_LOWER = 110,
149 CMD_HSLEN = 111,
150 CMD_VSLEN = 112,
151 CMD_CSYNC = 113,
152 CMD_GSYNC = 114,
153 CMD_EXTSYNC = 115,
154 CMD_BCAST = 116,
155 CMD_RGBA = 117,
156 CMD_STEP = 118,
157 CMD_MOVE = 119,
158#endif
159};
Eric Andersenc873d612000-09-21 04:09:58 +0000160
"Vladimir N. Oleynik"b399a962006-02-01 12:41:35 +0000161static const struct cmdoptions_t {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000162 const char name[9];
Aaron Lehmann60694412002-08-13 04:19:23 +0000163 const unsigned char param_count;
164 const unsigned char code;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000165} g_cmdoptions[] = {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000166 /*"12345678" + NUL */
167 { "fb" , 1, CMD_FB },
168 { "db" , 1, CMD_DB },
169 { "a" , 0, CMD_ALL },
170 { "i" , 0, CMD_INFO },
171 { "g" , 5, CMD_GEOMETRY },
172 { "t" , 7, CMD_TIMING },
173 { "accel" , 1, CMD_ACCEL },
174 { "hsync" , 1, CMD_HSYNC },
175 { "vsync" , 1, CMD_VSYNC },
176 { "laced" , 1, CMD_LACED },
177 { "double" , 1, CMD_DOUBLE },
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000178 { "show" , 0, CMD_SHOW },
179 { "s" , 0, CMD_SHOW },
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000180#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000181 { "all" , 0, CMD_ALL },
182 { "xres" , 1, CMD_XRES },
183 { "yres" , 1, CMD_YRES },
184 { "vxres" , 1, CMD_VXRES },
185 { "vyres" , 1, CMD_VYRES },
186 { "depth" , 1, CMD_DEPTH },
187 { "match" , 0, CMD_MATCH },
188 { "geometry", 5, CMD_GEOMETRY },
189 { "pixclock", 1, CMD_PIXCLOCK },
190 { "left" , 1, CMD_LEFT },
191 { "right" , 1, CMD_RIGHT },
192 { "upper" , 1, CMD_UPPER },
193 { "lower" , 1, CMD_LOWER },
194 { "hslen" , 1, CMD_HSLEN },
195 { "vslen" , 1, CMD_VSLEN },
196 { "timings" , 7, CMD_TIMING },
197 { "csync" , 1, CMD_CSYNC },
198 { "gsync" , 1, CMD_GSYNC },
199 { "extsync" , 1, CMD_EXTSYNC },
200 { "bcast" , 1, CMD_BCAST },
201 { "rgba" , 1, CMD_RGBA },
202 { "step" , 1, CMD_STEP },
203 { "move" , 1, CMD_MOVE },
Erik Andersen1c5b2581999-12-16 20:59:36 +0000204#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000205};
206
Matt Kraai269e07c2000-10-28 16:56:32 +0000207/* taken from linux/fb.h */
Rob Landleybc68cd12006-03-10 19:22:06 +0000208enum {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000209 FB_SYNC_HOR_HIGH_ACT = 1, /* horizontal sync high active */
210 FB_SYNC_VERT_HIGH_ACT = 2, /* vertical sync high active */
Denys Vlasenko6b01b712010-01-24 22:52:21 +0100211#if ENABLE_FEATURE_FBSET_READMODE
212 FB_VMODE_INTERLACED = 1, /* interlaced */
213 FB_VMODE_DOUBLE = 2, /* double scan */
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000214 FB_SYNC_EXT = 4, /* external sync */
215 FB_SYNC_COMP_HIGH_ACT = 8, /* composite sync high active */
Matt Kraai269e07c2000-10-28 16:56:32 +0000216#endif
Denys Vlasenko6b01b712010-01-24 22:52:21 +0100217};
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000218
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000219#if ENABLE_FEATURE_FBSET_READMODE
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000220static void ss(uint32_t *x, uint32_t flag, char *buf, const char *what)
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000221{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000222 if (strcmp(buf, what) == 0)
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000223 *x &= ~flag;
224 else
225 *x |= flag;
226}
227
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100228/* Mode db file contains mode definitions like this:
229 * mode "800x600-48-lace"
230 * # D: 36.00 MHz, H: 33.835 kHz, V: 96.39 Hz
231 * geometry 800 600 800 600 8
232 * timings 27778 56 80 79 11 128 12
233 * laced true
234 * hsync high
235 * vsync high
236 * endmode
237 */
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000238static int read_mode_db(struct fb_var_screeninfo *base, const char *fn,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000239 const char *mode)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000240{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000241 char *token[2], *p, *s;
242 parser_t *parser = config_open(fn);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000244 while (config_read(parser, token, 2, 1, "# \t\r", PARSE_NORMAL)) {
245 if (strcmp(token[0], "mode") != 0 || !token[1])
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000246 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000247 p = strstr(token[1], mode);
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000248 if (!p)
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000249 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000250 s = p + strlen(mode);
251 //bb_info_msg("CHECK[%s][%s][%d]", mode, p-1, *s);
252 /* exact match? */
253 if (((!*s || isspace(*s)) && '"' != s[-1]) /* end-of-token */
254 || ('"' == *s && '"' == p[-1]) /* ends with " but starts with " too! */
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000255 ) {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000256 //bb_info_msg("FOUND[%s][%s][%s][%d]", token[1], p, mode, isspace(*s));
257 break;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000258 }
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000259 }
Eric Andersen6f96e672000-07-12 23:01:04 +0000260
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000261 if (!token[0])
262 return 0;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000263
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000264 while (config_read(parser, token, 2, 1, "# \t", PARSE_NORMAL)) {
265 int i;
266
267//bb_info_msg("???[%s][%s]", token[0], token[1]);
268 if (strcmp(token[0], "endmode") == 0) {
269//bb_info_msg("OK[%s]", mode);
270 return 1;
271 }
272 p = token[1];
273 i = index_in_strings(
274 "geometry\0timings\0interlaced\0double\0vsync\0hsync\0csync\0extsync\0",
275 token[0]);
276 switch (i) {
277 case 0:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100278 if (sizeof(int) == sizeof(base->xres)) {
279 sscanf(p, "%d %d %d %d %d",
280 &base->xres, &base->yres,
281 &base->xres_virtual, &base->yres_virtual,
282 &base->bits_per_pixel);
283 } else {
284 int base_xres, base_yres;
285 int base_xres_virtual, base_yres_virtual;
286 int base_bits_per_pixel;
287 sscanf(p, "%d %d %d %d %d",
288 &base_xres, &base_yres,
289 &base_xres_virtual, &base_yres_virtual,
290 &base_bits_per_pixel);
291 base->xres = base_xres;
292 base->yres = base_yres;
293 base->xres_virtual = base_xres_virtual;
294 base->yres_virtual = base_yres_virtual;
295 base->bits_per_pixel = base_bits_per_pixel;
296 }
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000297//bb_info_msg("GEO[%s]", p);
298 break;
299 case 1:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100300 if (sizeof(int) == sizeof(base->xres)) {
301 sscanf(p, "%d %d %d %d %d %d %d",
302 &base->pixclock,
303 &base->left_margin, &base->right_margin,
304 &base->upper_margin, &base->lower_margin,
305 &base->hsync_len, &base->vsync_len);
306 } else {
307 int base_pixclock;
308 int base_left_margin, base_right_margin;
309 int base_upper_margin, base_lower_margin;
310 int base_hsync_len, base_vsync_len;
311 sscanf(p, "%d %d %d %d %d %d %d",
312 &base_pixclock,
313 &base_left_margin, &base_right_margin,
314 &base_upper_margin, &base_lower_margin,
315 &base_hsync_len, &base_vsync_len);
316 base->pixclock = base_pixclock;
317 base->left_margin = base_left_margin;
318 base->right_margin = base_right_margin;
319 base->upper_margin = base_upper_margin;
320 base->lower_margin = base_lower_margin;
321 base->hsync_len = base_hsync_len;
322 base->vsync_len = base_vsync_len;
323 }
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000324//bb_info_msg("TIM[%s]", p);
325 break;
326 case 2:
327 case 3: {
328 static const uint32_t syncs[] = {FB_VMODE_INTERLACED, FB_VMODE_DOUBLE};
329 ss(&base->vmode, syncs[i-2], p, "false");
330//bb_info_msg("VMODE[%s]", p);
331 break;
332 }
333 case 4:
334 case 5:
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200335 case 6: {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000336 static const uint32_t syncs[] = {FB_SYNC_VERT_HIGH_ACT, FB_SYNC_HOR_HIGH_ACT, FB_SYNC_COMP_HIGH_ACT};
337 ss(&base->sync, syncs[i-4], p, "low");
338//bb_info_msg("SYNC[%s]", p);
339 break;
340 }
341 case 7:
342 ss(&base->sync, FB_SYNC_EXT, p, "false");
343//bb_info_msg("EXTSYNC[%s]", p);
344 break;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000345 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000346 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000347 return 0;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000348}
Denis Vlasenko85c24712008-03-17 09:04:04 +0000349#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000350
Denys Vlasenkoef5bc2c2009-10-08 14:54:18 +0200351static NOINLINE void showmode(struct fb_var_screeninfo *v)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000352{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353 double drate = 0, hrate = 0, vrate = 0;
354
355 if (v->pixclock) {
356 drate = 1e12 / v->pixclock;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000357 hrate = drate / (v->left_margin + v->xres + v->right_margin + v->hsync_len);
358 vrate = hrate / (v->upper_margin + v->yres + v->lower_margin + v->vsync_len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 }
Aaron Lehmann60694412002-08-13 04:19:23 +0000360 printf("\nmode \"%ux%u-%u\"\n"
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000361#if ENABLE_FEATURE_FBSET_FANCY
Aaron Lehmann60694412002-08-13 04:19:23 +0000362 "\t# D: %.3f MHz, H: %.3f kHz, V: %.3f Hz\n"
Erik Andersen1c5b2581999-12-16 20:59:36 +0000363#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000364 "\tgeometry %u %u %u %u %u\n"
365 "\ttimings %u %u %u %u %u %u %u\n"
366 "\taccel %s\n"
367 "\trgba %u/%u,%u/%u,%u/%u,%u/%u\n"
368 "endmode\n\n",
369 v->xres, v->yres, (int) (vrate + 0.5),
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000370#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000371 drate / 1e6, hrate / 1e3, vrate,
Aaron Lehmann60694412002-08-13 04:19:23 +0000372#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000373 v->xres, v->yres, v->xres_virtual, v->yres_virtual, v->bits_per_pixel,
374 v->pixclock, v->left_margin, v->right_margin, v->upper_margin, v->lower_margin,
375 v->hsync_len, v->vsync_len,
376 (v->accel_flags > 0 ? "true" : "false"),
377 v->red.length, v->red.offset, v->green.length, v->green.offset,
378 v->blue.length, v->blue.offset, v->transp.length, v->transp.offset);
Erik Andersen1c5b2581999-12-16 20:59:36 +0000379}
380
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000381int fbset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000382int fbset_main(int argc, char **argv)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000383{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000384 enum {
385 OPT_CHANGE = (1 << 0),
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000386 OPT_SHOW = (1 << 1),
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000387 OPT_READMODE = (1 << 2),
388 OPT_ALL = (1 << 9),
389 };
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100390 struct fb_var_screeninfo var_old, var_set;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000391 int fh, i;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000392 unsigned options = 0;
393
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000394 const char *fbdev = DEFAULTFBDEV;
395 const char *modefile = DEFAULTFBMODE;
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100396 char *thisarg;
397 char *mode = mode; /* for compiler */
Erik Andersen1c5b2581999-12-16 20:59:36 +0000398
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100399 memset(&var_set, 0xff, sizeof(var_set)); /* set all to -1 */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000400
401 /* parse cmd args.... why do they have to make things so difficult? */
402 argv++;
403 argc--;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000404 for (; argc > 0 && (thisarg = *argv) != NULL; argc--, argv++) {
405 if (thisarg[0] == '-') for (i = 0; i < ARRAY_SIZE(g_cmdoptions); i++) {
406 if (strcmp(thisarg + 1, g_cmdoptions[i].name) != 0)
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000407 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000408 if (argc <= g_cmdoptions[i].param_count)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000409 bb_show_usage();
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000410
411 switch (g_cmdoptions[i].code) {
412 case CMD_FB:
413 fbdev = argv[1];
414 break;
415 case CMD_DB:
416 modefile = argv[1];
417 break;
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000418 case CMD_ALL:
419 options |= OPT_ALL;
420 break;
421 case CMD_SHOW:
422 options |= OPT_SHOW;
423 break;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000424 case CMD_GEOMETRY:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100425 var_set.xres = xatou32(argv[1]);
426 var_set.yres = xatou32(argv[2]);
427 var_set.xres_virtual = xatou32(argv[3]);
428 var_set.yres_virtual = xatou32(argv[4]);
429 var_set.bits_per_pixel = xatou32(argv[5]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000430 break;
431 case CMD_TIMING:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100432 var_set.pixclock = xatou32(argv[1]);
433 var_set.left_margin = xatou32(argv[2]);
434 var_set.right_margin = xatou32(argv[3]);
435 var_set.upper_margin = xatou32(argv[4]);
436 var_set.lower_margin = xatou32(argv[5]);
437 var_set.hsync_len = xatou32(argv[6]);
438 var_set.vsync_len = xatou32(argv[7]);
439 break;
440 case CMD_ACCEL:
441 break;
442 case CMD_HSYNC:
443 var_set.sync |= FB_SYNC_HOR_HIGH_ACT;
444 break;
445 case CMD_VSYNC:
446 var_set.sync |= FB_SYNC_VERT_HIGH_ACT;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000447 break;
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000448#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000449 case CMD_XRES:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100450 var_set.xres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000451 break;
452 case CMD_YRES:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100453 var_set.yres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000454 break;
455 case CMD_DEPTH:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100456 var_set.bits_per_pixel = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000457 break;
458#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000459 }
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000460 switch (g_cmdoptions[i].code) {
461 case CMD_FB:
462 case CMD_DB:
463 case CMD_ALL:
464 case CMD_SHOW:
465 break;
466 default:
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100467 /* other commands imply changes */
468 options |= OPT_CHANGE;
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000469 }
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000470 argc -= g_cmdoptions[i].param_count;
471 argv += g_cmdoptions[i].param_count;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000472 goto contin;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000473 }
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100474 if (!ENABLE_FEATURE_FBSET_READMODE || argc != 1)
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000475 bb_show_usage();
476 mode = *argv;
477 options |= OPT_READMODE;
478 contin: ;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000479 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000480
Rob Landleyd921b2e2006-08-03 15:41:12 +0000481 fh = xopen(fbdev, O_RDONLY);
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100482 xioctl(fh, FBIOGET_VSCREENINFO, &var_old);
483
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000484 if (options & OPT_READMODE) {
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100485#if ENABLE_FEATURE_FBSET_READMODE
486 if (!read_mode_db(&var_old, modefile, mode)) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000487 bb_error_msg_and_die("unknown video mode '%s'", mode);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000488 }
Denis Vlasenko85c24712008-03-17 09:04:04 +0000489#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000490 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000491
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000492 if (options & OPT_CHANGE) {
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100493 copy_changed_values(&var_old, &var_set);
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000494 if (options & OPT_ALL)
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100495 var_old.activate = FB_ACTIVATE_ALL;
496 xioctl(fh, FBIOPUT_VSCREENINFO, &var_old);
Denis Vlasenko274b8c02006-09-30 16:22:59 +0000497 }
Michael Grzeschik24dc9ab2010-01-23 03:40:28 +0100498
499 if (options == 0 || (options & OPT_SHOW))
500 showmode(&var_old);
501
502 if (ENABLE_FEATURE_CLEAN_UP)
503 close(fh);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000504
Matt Kraai3e856ce2000-12-01 02:55:13 +0000505 return EXIT_SUCCESS;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000506}