blob: 6e497c6eaa0f7cafe833b6ed93d9edc4a64f56a3 [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 *
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Erik Andersen1c5b2581999-12-16 20:59:36 +000016
Eric Andersen5f284552003-11-14 03:11:29 +000017#define DEFAULTFBDEV FB_0
Erik Andersen1c5b2581999-12-16 20:59:36 +000018#define DEFAULTFBMODE "/etc/fb.modes"
19
Mark Whitley59ab0252001-01-23 22:30:04 +000020enum {
Mark Whitley59ab0252001-01-23 22:30:04 +000021 CMD_FB = 1,
22 CMD_DB = 2,
23 CMD_GEOMETRY = 3,
24 CMD_TIMING = 4,
25 CMD_ACCEL = 5,
26 CMD_HSYNC = 6,
27 CMD_VSYNC = 7,
28 CMD_LACED = 8,
29 CMD_DOUBLE = 9,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000030/* CMD_XCOMPAT = 10, */
Mark Whitley59ab0252001-01-23 22:30:04 +000031 CMD_ALL = 11,
32 CMD_INFO = 12,
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +000033 CMD_SHOW = 13,
34 CMD_CHANGE = 14,
Erik Andersen1c5b2581999-12-16 20:59:36 +000035
Denis Vlasenkoe3241842007-08-13 10:36:25 +000036#if ENABLE_FEATURE_FBSET_FANCY
Mark Whitley59ab0252001-01-23 22:30:04 +000037 CMD_XRES = 100,
38 CMD_YRES = 101,
39 CMD_VXRES = 102,
40 CMD_VYRES = 103,
41 CMD_DEPTH = 104,
42 CMD_MATCH = 105,
43 CMD_PIXCLOCK = 106,
44 CMD_LEFT = 107,
45 CMD_RIGHT = 108,
46 CMD_UPPER = 109,
47 CMD_LOWER = 110,
48 CMD_HSLEN = 111,
49 CMD_VSLEN = 112,
50 CMD_CSYNC = 113,
51 CMD_GSYNC = 114,
52 CMD_EXTSYNC = 115,
53 CMD_BCAST = 116,
54 CMD_RGBA = 117,
55 CMD_STEP = 118,
56 CMD_MOVE = 119,
Erik Andersen1c5b2581999-12-16 20:59:36 +000057#endif
Mark Whitley59ab0252001-01-23 22:30:04 +000058};
Erik Andersen1c5b2581999-12-16 20:59:36 +000059
Eric Andersenc873d612000-09-21 04:09:58 +000060/* Stuff stolen from the kernel's fb.h */
Denis Vlasenko274b8c02006-09-30 16:22:59 +000061#define FB_ACTIVATE_ALL 64
Rob Landleybc68cd12006-03-10 19:22:06 +000062enum {
63 FBIOGET_VSCREENINFO = 0x4600,
64 FBIOPUT_VSCREENINFO = 0x4601
65};
Eric Andersenc873d612000-09-21 04:09:58 +000066struct fb_bitfield {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000067 uint32_t offset; /* beginning of bitfield */
68 uint32_t length; /* length of bitfield */
69 uint32_t msb_right; /* !=0: Most significant bit is right */
Eric Andersenc873d612000-09-21 04:09:58 +000070};
71struct fb_var_screeninfo {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000072 uint32_t xres; /* visible resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000073 uint32_t yres;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000074 uint32_t xres_virtual; /* virtual resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000075 uint32_t yres_virtual;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000076 uint32_t xoffset; /* offset from virtual to visible */
77 uint32_t yoffset; /* resolution */
Eric Andersenc873d612000-09-21 04:09:58 +000078
Denis Vlasenko39d551f2006-09-30 16:28:30 +000079 uint32_t bits_per_pixel;
80 uint32_t grayscale; /* !=0 Graylevels instead of colors */
Eric Andersenc873d612000-09-21 04:09:58 +000081
Denis Vlasenko39d551f2006-09-30 16:28:30 +000082 struct fb_bitfield red; /* bitfield in fb mem if true color, */
83 struct fb_bitfield green; /* else only length is significant */
Eric Andersenc873d612000-09-21 04:09:58 +000084 struct fb_bitfield blue;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000085 struct fb_bitfield transp; /* transparency */
Eric Andersenc873d612000-09-21 04:09:58 +000086
Denis Vlasenko39d551f2006-09-30 16:28:30 +000087 uint32_t nonstd; /* !=0 Non standard pixel format */
Eric Andersenc873d612000-09-21 04:09:58 +000088
Denis Vlasenko39d551f2006-09-30 16:28:30 +000089 uint32_t activate; /* see FB_ACTIVATE_x */
Eric Andersenc873d612000-09-21 04:09:58 +000090
Denis Vlasenko39d551f2006-09-30 16:28:30 +000091 uint32_t height; /* height of picture in mm */
92 uint32_t width; /* width of picture in mm */
Eric Andersenc873d612000-09-21 04:09:58 +000093
Denis Vlasenko551ffdc2009-04-01 19:48:05 +000094 uint32_t accel_flags; /* acceleration flags (hints) */
Eric Andersenc873d612000-09-21 04:09:58 +000095
96 /* Timing: All values in pixclocks, except pixclock (of course) */
Denis Vlasenko39d551f2006-09-30 16:28:30 +000097 uint32_t pixclock; /* pixel clock in ps (pico seconds) */
98 uint32_t left_margin; /* time from sync to picture */
99 uint32_t right_margin; /* time from picture to sync */
100 uint32_t upper_margin; /* time from sync to picture */
Eric Andersen1eceb122003-07-14 19:32:40 +0000101 uint32_t lower_margin;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000102 uint32_t hsync_len; /* length of horizontal sync */
103 uint32_t vsync_len; /* length of vertical sync */
104 uint32_t sync; /* see FB_SYNC_x */
105 uint32_t vmode; /* see FB_VMODE_x */
106 uint32_t reserved[6]; /* Reserved for future compatibility */
Eric Andersenc873d612000-09-21 04:09:58 +0000107};
108
109
"Vladimir N. Oleynik"b399a962006-02-01 12:41:35 +0000110static const struct cmdoptions_t {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000111 const char name[9];
Aaron Lehmann60694412002-08-13 04:19:23 +0000112 const unsigned char param_count;
113 const unsigned char code;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000114} g_cmdoptions[] = {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000115 /*"12345678" + NUL */
116 { "fb" , 1, CMD_FB },
117 { "db" , 1, CMD_DB },
118 { "a" , 0, CMD_ALL },
119 { "i" , 0, CMD_INFO },
120 { "g" , 5, CMD_GEOMETRY },
121 { "t" , 7, CMD_TIMING },
122 { "accel" , 1, CMD_ACCEL },
123 { "hsync" , 1, CMD_HSYNC },
124 { "vsync" , 1, CMD_VSYNC },
125 { "laced" , 1, CMD_LACED },
126 { "double" , 1, CMD_DOUBLE },
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000127 { "show" , 0, CMD_SHOW },
128 { "s" , 0, CMD_SHOW },
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000129#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000130 { "all" , 0, CMD_ALL },
131 { "xres" , 1, CMD_XRES },
132 { "yres" , 1, CMD_YRES },
133 { "vxres" , 1, CMD_VXRES },
134 { "vyres" , 1, CMD_VYRES },
135 { "depth" , 1, CMD_DEPTH },
136 { "match" , 0, CMD_MATCH },
137 { "geometry", 5, CMD_GEOMETRY },
138 { "pixclock", 1, CMD_PIXCLOCK },
139 { "left" , 1, CMD_LEFT },
140 { "right" , 1, CMD_RIGHT },
141 { "upper" , 1, CMD_UPPER },
142 { "lower" , 1, CMD_LOWER },
143 { "hslen" , 1, CMD_HSLEN },
144 { "vslen" , 1, CMD_VSLEN },
145 { "timings" , 7, CMD_TIMING },
146 { "csync" , 1, CMD_CSYNC },
147 { "gsync" , 1, CMD_GSYNC },
148 { "extsync" , 1, CMD_EXTSYNC },
149 { "bcast" , 1, CMD_BCAST },
150 { "rgba" , 1, CMD_RGBA },
151 { "step" , 1, CMD_STEP },
152 { "move" , 1, CMD_MOVE },
Erik Andersen1c5b2581999-12-16 20:59:36 +0000153#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000154};
155
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000156#if ENABLE_FEATURE_FBSET_READMODE
Matt Kraai269e07c2000-10-28 16:56:32 +0000157/* taken from linux/fb.h */
Rob Landleybc68cd12006-03-10 19:22:06 +0000158enum {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000159 FB_VMODE_INTERLACED = 1, /* interlaced */
160 FB_VMODE_DOUBLE = 2, /* double scan */
161 FB_SYNC_HOR_HIGH_ACT = 1, /* horizontal sync high active */
162 FB_SYNC_VERT_HIGH_ACT = 2, /* vertical sync high active */
163 FB_SYNC_EXT = 4, /* external sync */
164 FB_SYNC_COMP_HIGH_ACT = 8, /* composite sync high active */
Rob Landleybc68cd12006-03-10 19:22:06 +0000165};
Matt Kraai269e07c2000-10-28 16:56:32 +0000166#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000167
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000168#if ENABLE_FEATURE_FBSET_READMODE
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000169static void ss(uint32_t *x, uint32_t flag, char *buf, const char *what)
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000170{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000171 if (strcmp(buf, what) == 0)
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000172 *x &= ~flag;
173 else
174 *x |= flag;
175}
176
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000177static int read_mode_db(struct fb_var_screeninfo *base, const char *fn,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000178 const char *mode)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000179{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000180 char *token[2], *p, *s;
181 parser_t *parser = config_open(fn);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000182
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000183 while (config_read(parser, token, 2, 1, "# \t\r", PARSE_NORMAL)) {
184 if (strcmp(token[0], "mode") != 0 || !token[1])
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000185 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000186 p = strstr(token[1], mode);
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000187 if (!p)
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000188 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000189 s = p + strlen(mode);
190 //bb_info_msg("CHECK[%s][%s][%d]", mode, p-1, *s);
191 /* exact match? */
192 if (((!*s || isspace(*s)) && '"' != s[-1]) /* end-of-token */
193 || ('"' == *s && '"' == p[-1]) /* ends with " but starts with " too! */
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000194 ) {
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000195 //bb_info_msg("FOUND[%s][%s][%s][%d]", token[1], p, mode, isspace(*s));
196 break;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000197 }
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000198 }
Eric Andersen6f96e672000-07-12 23:01:04 +0000199
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000200 if (!token[0])
201 return 0;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000202
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000203 while (config_read(parser, token, 2, 1, "# \t", PARSE_NORMAL)) {
204 int i;
205
206//bb_info_msg("???[%s][%s]", token[0], token[1]);
207 if (strcmp(token[0], "endmode") == 0) {
208//bb_info_msg("OK[%s]", mode);
209 return 1;
210 }
211 p = token[1];
212 i = index_in_strings(
213 "geometry\0timings\0interlaced\0double\0vsync\0hsync\0csync\0extsync\0",
214 token[0]);
215 switch (i) {
216 case 0:
217 /* FIXME: catastrophic on arches with 64bit ints */
218 sscanf(p, "%d %d %d %d %d",
219 &(base->xres), &(base->yres),
220 &(base->xres_virtual), &(base->yres_virtual),
221 &(base->bits_per_pixel));
222//bb_info_msg("GEO[%s]", p);
223 break;
224 case 1:
225 sscanf(p, "%d %d %d %d %d %d %d",
226 &(base->pixclock),
227 &(base->left_margin), &(base->right_margin),
228 &(base->upper_margin), &(base->lower_margin),
229 &(base->hsync_len), &(base->vsync_len));
230//bb_info_msg("TIM[%s]", p);
231 break;
232 case 2:
233 case 3: {
234 static const uint32_t syncs[] = {FB_VMODE_INTERLACED, FB_VMODE_DOUBLE};
235 ss(&base->vmode, syncs[i-2], p, "false");
236//bb_info_msg("VMODE[%s]", p);
237 break;
238 }
239 case 4:
240 case 5:
241 case 6: {
242 static const uint32_t syncs[] = {FB_SYNC_VERT_HIGH_ACT, FB_SYNC_HOR_HIGH_ACT, FB_SYNC_COMP_HIGH_ACT};
243 ss(&base->sync, syncs[i-4], p, "low");
244//bb_info_msg("SYNC[%s]", p);
245 break;
246 }
247 case 7:
248 ss(&base->sync, FB_SYNC_EXT, p, "false");
249//bb_info_msg("EXTSYNC[%s]", p);
250 break;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000251 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000252 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000253 return 0;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000254}
Denis Vlasenko85c24712008-03-17 09:04:04 +0000255#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000256
Denys Vlasenko90a99042009-09-06 02:36:23 +0200257static void setfbmode(struct fb_var_screeninfo *base,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258 struct fb_var_screeninfo *set)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000259{
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000260 if ((int32_t) set->xres > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000261 base->xres = set->xres;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000262 if ((int32_t) set->yres > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 base->yres = set->yres;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000264 if ((int32_t) set->xres_virtual > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000265 base->xres_virtual = set->xres_virtual;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000266 if ((int32_t) set->yres_virtual > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000267 base->yres_virtual = set->yres_virtual;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000268 if ((int32_t) set->bits_per_pixel > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000269 base->bits_per_pixel = set->bits_per_pixel;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000270}
271
Denys Vlasenkoef5bc2c2009-10-08 14:54:18 +0200272static NOINLINE void showmode(struct fb_var_screeninfo *v)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000273{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000274 double drate = 0, hrate = 0, vrate = 0;
275
276 if (v->pixclock) {
277 drate = 1e12 / v->pixclock;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000278 hrate = drate / (v->left_margin + v->xres + v->right_margin + v->hsync_len);
279 vrate = hrate / (v->upper_margin + v->yres + v->lower_margin + v->vsync_len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000280 }
Aaron Lehmann60694412002-08-13 04:19:23 +0000281 printf("\nmode \"%ux%u-%u\"\n"
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000282#if ENABLE_FEATURE_FBSET_FANCY
Aaron Lehmann60694412002-08-13 04:19:23 +0000283 "\t# D: %.3f MHz, H: %.3f kHz, V: %.3f Hz\n"
Erik Andersen1c5b2581999-12-16 20:59:36 +0000284#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000285 "\tgeometry %u %u %u %u %u\n"
286 "\ttimings %u %u %u %u %u %u %u\n"
287 "\taccel %s\n"
288 "\trgba %u/%u,%u/%u,%u/%u,%u/%u\n"
289 "endmode\n\n",
290 v->xres, v->yres, (int) (vrate + 0.5),
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000291#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000292 drate / 1e6, hrate / 1e3, vrate,
Aaron Lehmann60694412002-08-13 04:19:23 +0000293#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000294 v->xres, v->yres, v->xres_virtual, v->yres_virtual, v->bits_per_pixel,
295 v->pixclock, v->left_margin, v->right_margin, v->upper_margin, v->lower_margin,
296 v->hsync_len, v->vsync_len,
297 (v->accel_flags > 0 ? "true" : "false"),
298 v->red.length, v->red.offset, v->green.length, v->green.offset,
299 v->blue.length, v->blue.offset, v->transp.length, v->transp.offset);
Erik Andersen1c5b2581999-12-16 20:59:36 +0000300}
301
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000302int fbset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000303int fbset_main(int argc, char **argv)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000304{
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000305 enum {
306 OPT_CHANGE = (1 << 0),
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000307 OPT_SHOW = (1 << 1),
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000308 OPT_READMODE = (1 << 2),
309 OPT_ALL = (1 << 9),
310 };
Erik Andersene49d5ec2000-02-08 19:58:47 +0000311 struct fb_var_screeninfo var, varset;
312 int fh, i;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000313 unsigned options = 0;
314
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000315 const char *fbdev = DEFAULTFBDEV;
316 const char *modefile = DEFAULTFBMODE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000317 char *thisarg, *mode = NULL;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000318
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000319 memset(&varset, 0xff, sizeof(varset));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000320
321 /* parse cmd args.... why do they have to make things so difficult? */
322 argv++;
323 argc--;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000324 for (; argc > 0 && (thisarg = *argv) != NULL; argc--, argv++) {
325 if (thisarg[0] == '-') for (i = 0; i < ARRAY_SIZE(g_cmdoptions); i++) {
326 if (strcmp(thisarg + 1, g_cmdoptions[i].name) != 0)
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000327 continue;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000328 if (argc <= g_cmdoptions[i].param_count)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000329 bb_show_usage();
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000330
331 switch (g_cmdoptions[i].code) {
332 case CMD_FB:
333 fbdev = argv[1];
334 break;
335 case CMD_DB:
336 modefile = argv[1];
337 break;
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000338 case CMD_ALL:
339 options |= OPT_ALL;
340 break;
341 case CMD_SHOW:
342 options |= OPT_SHOW;
343 break;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000344 case CMD_GEOMETRY:
Denis Vlasenko13858992006-10-08 12:49:22 +0000345 varset.xres = xatou32(argv[1]);
346 varset.yres = xatou32(argv[2]);
347 varset.xres_virtual = xatou32(argv[3]);
348 varset.yres_virtual = xatou32(argv[4]);
349 varset.bits_per_pixel = xatou32(argv[5]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000350 break;
351 case CMD_TIMING:
Denis Vlasenko13858992006-10-08 12:49:22 +0000352 varset.pixclock = xatou32(argv[1]);
353 varset.left_margin = xatou32(argv[2]);
354 varset.right_margin = xatou32(argv[3]);
355 varset.upper_margin = xatou32(argv[4]);
356 varset.lower_margin = xatou32(argv[5]);
357 varset.hsync_len = xatou32(argv[6]);
358 varset.vsync_len = xatou32(argv[7]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000359 break;
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000360#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000361 case CMD_XRES:
Denis Vlasenko13858992006-10-08 12:49:22 +0000362 varset.xres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000363 break;
364 case CMD_YRES:
Denis Vlasenko13858992006-10-08 12:49:22 +0000365 varset.yres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000366 break;
367 case CMD_DEPTH:
Denis Vlasenko13858992006-10-08 12:49:22 +0000368 varset.bits_per_pixel = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000369 break;
370#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000371 }
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000372 switch (g_cmdoptions[i].code) {
373 case CMD_FB:
374 case CMD_DB:
375 case CMD_ALL:
376 case CMD_SHOW:
377 break;
378 default:
379 options |= OPT_CHANGE; /* the other commands imply changes */
380 }
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000381 argc -= g_cmdoptions[i].param_count;
382 argv += g_cmdoptions[i].param_count;
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000383 goto contin;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000384 }
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000385 if (argc != 1)
386 bb_show_usage();
387 mode = *argv;
388 options |= OPT_READMODE;
389 contin: ;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000390 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000391
Rob Landleyd921b2e2006-08-03 15:41:12 +0000392 fh = xopen(fbdev, O_RDONLY);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000393 xioctl(fh, FBIOGET_VSCREENINFO, &var);
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000394 if (options & OPT_READMODE) {
Denis Vlasenko85c24712008-03-17 09:04:04 +0000395#if !ENABLE_FEATURE_FBSET_READMODE
396 bb_show_usage();
397#else
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000398 if (!read_mode_db(&var, modefile, mode)) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000399 bb_error_msg_and_die("unknown video mode '%s'", mode);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000400 }
Denis Vlasenko85c24712008-03-17 09:04:04 +0000401#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000402 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000403
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000404 if (options & OPT_CHANGE) {
Denys Vlasenko90a99042009-09-06 02:36:23 +0200405 setfbmode(&var, &varset);
Denis Vlasenkob66d16a2008-08-24 16:25:40 +0000406 if (options & OPT_ALL)
Denis Vlasenko274b8c02006-09-30 16:22:59 +0000407 var.activate = FB_ACTIVATE_ALL;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000408 xioctl(fh, FBIOPUT_VSCREENINFO, &var);
Denis Vlasenko274b8c02006-09-30 16:22:59 +0000409 }
Bernhard Reutner-Fischer7307e062009-02-18 15:28:43 +0000410 if (options == 0 || options & OPT_SHOW)
411 showmode(&var);
Erik Andersen298854f2000-03-23 01:09:18 +0000412 /* Don't close the file, as exiting will take care of that */
413 /* close(fh); */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000414
Matt Kraai3e856ce2000-12-01 02:55:13 +0000415 return EXIT_SUCCESS;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000416}