blob: 0ed8fae39d925373ba91be7750b0284a5baf9406 [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 {
Rob Landleybc68cd12006-03-10 19:22:06 +000021 OPT_CHANGE = (1 << 0),
22 OPT_INFO = (1 << 1),
23 OPT_READMODE = (1 << 2),
Denis Vlasenko274b8c02006-09-30 16:22:59 +000024 OPT_ALL = (1 << 9),
Rob Landleybc68cd12006-03-10 19:22:06 +000025
Mark Whitley59ab0252001-01-23 22:30:04 +000026 CMD_FB = 1,
27 CMD_DB = 2,
28 CMD_GEOMETRY = 3,
29 CMD_TIMING = 4,
30 CMD_ACCEL = 5,
31 CMD_HSYNC = 6,
32 CMD_VSYNC = 7,
33 CMD_LACED = 8,
34 CMD_DOUBLE = 9,
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000035/* CMD_XCOMPAT = 10, */
Mark Whitley59ab0252001-01-23 22:30:04 +000036 CMD_ALL = 11,
37 CMD_INFO = 12,
38 CMD_CHANGE = 13,
Erik Andersen1c5b2581999-12-16 20:59:36 +000039
Denis Vlasenkoe3241842007-08-13 10:36:25 +000040#if ENABLE_FEATURE_FBSET_FANCY
Mark Whitley59ab0252001-01-23 22:30:04 +000041 CMD_XRES = 100,
42 CMD_YRES = 101,
43 CMD_VXRES = 102,
44 CMD_VYRES = 103,
45 CMD_DEPTH = 104,
46 CMD_MATCH = 105,
47 CMD_PIXCLOCK = 106,
48 CMD_LEFT = 107,
49 CMD_RIGHT = 108,
50 CMD_UPPER = 109,
51 CMD_LOWER = 110,
52 CMD_HSLEN = 111,
53 CMD_VSLEN = 112,
54 CMD_CSYNC = 113,
55 CMD_GSYNC = 114,
56 CMD_EXTSYNC = 115,
57 CMD_BCAST = 116,
58 CMD_RGBA = 117,
59 CMD_STEP = 118,
60 CMD_MOVE = 119,
Erik Andersen1c5b2581999-12-16 20:59:36 +000061#endif
Mark Whitley59ab0252001-01-23 22:30:04 +000062};
Erik Andersen1c5b2581999-12-16 20:59:36 +000063
Denis Vlasenko73464ce2007-01-03 00:45:05 +000064static unsigned g_options;
Erik Andersen1c5b2581999-12-16 20:59:36 +000065
Eric Andersenc873d612000-09-21 04:09:58 +000066/* Stuff stolen from the kernel's fb.h */
Denis Vlasenko274b8c02006-09-30 16:22:59 +000067#define FB_ACTIVATE_ALL 64
Rob Landleybc68cd12006-03-10 19:22:06 +000068enum {
69 FBIOGET_VSCREENINFO = 0x4600,
70 FBIOPUT_VSCREENINFO = 0x4601
71};
Eric Andersenc873d612000-09-21 04:09:58 +000072struct fb_bitfield {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000073 uint32_t offset; /* beginning of bitfield */
74 uint32_t length; /* length of bitfield */
75 uint32_t msb_right; /* !=0: Most significant bit is right */
Eric Andersenc873d612000-09-21 04:09:58 +000076};
77struct fb_var_screeninfo {
Denis Vlasenko39d551f2006-09-30 16:28:30 +000078 uint32_t xres; /* visible resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000079 uint32_t yres;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000080 uint32_t xres_virtual; /* virtual resolution */
Eric Andersen1eceb122003-07-14 19:32:40 +000081 uint32_t yres_virtual;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000082 uint32_t xoffset; /* offset from virtual to visible */
83 uint32_t yoffset; /* resolution */
Eric Andersenc873d612000-09-21 04:09:58 +000084
Denis Vlasenko39d551f2006-09-30 16:28:30 +000085 uint32_t bits_per_pixel;
86 uint32_t grayscale; /* !=0 Graylevels instead of colors */
Eric Andersenc873d612000-09-21 04:09:58 +000087
Denis Vlasenko39d551f2006-09-30 16:28:30 +000088 struct fb_bitfield red; /* bitfield in fb mem if true color, */
89 struct fb_bitfield green; /* else only length is significant */
Eric Andersenc873d612000-09-21 04:09:58 +000090 struct fb_bitfield blue;
Denis Vlasenko39d551f2006-09-30 16:28:30 +000091 struct fb_bitfield transp; /* transparency */
Eric Andersenc873d612000-09-21 04:09:58 +000092
Denis Vlasenko39d551f2006-09-30 16:28:30 +000093 uint32_t nonstd; /* !=0 Non standard pixel format */
Eric Andersenc873d612000-09-21 04:09:58 +000094
Denis Vlasenko39d551f2006-09-30 16:28:30 +000095 uint32_t activate; /* see FB_ACTIVATE_x */
Eric Andersenc873d612000-09-21 04:09:58 +000096
Denis Vlasenko39d551f2006-09-30 16:28:30 +000097 uint32_t height; /* height of picture in mm */
98 uint32_t width; /* width of picture in mm */
Eric Andersenc873d612000-09-21 04:09:58 +000099
Eric Andersen1eceb122003-07-14 19:32:40 +0000100 uint32_t accel_flags; /* acceleration flags (hints) */
Eric Andersenc873d612000-09-21 04:09:58 +0000101
102 /* Timing: All values in pixclocks, except pixclock (of course) */
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000103 uint32_t pixclock; /* pixel clock in ps (pico seconds) */
104 uint32_t left_margin; /* time from sync to picture */
105 uint32_t right_margin; /* time from picture to sync */
106 uint32_t upper_margin; /* time from sync to picture */
Eric Andersen1eceb122003-07-14 19:32:40 +0000107 uint32_t lower_margin;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000108 uint32_t hsync_len; /* length of horizontal sync */
109 uint32_t vsync_len; /* length of vertical sync */
110 uint32_t sync; /* see FB_SYNC_x */
111 uint32_t vmode; /* see FB_VMODE_x */
112 uint32_t reserved[6]; /* Reserved for future compatibility */
Eric Andersenc873d612000-09-21 04:09:58 +0000113};
114
115
"Vladimir N. Oleynik"b399a962006-02-01 12:41:35 +0000116static const struct cmdoptions_t {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000117 const char name[10];
Aaron Lehmann60694412002-08-13 04:19:23 +0000118 const unsigned char param_count;
119 const unsigned char code;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000120} g_cmdoptions[] = {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000121 { "-fb", 1, CMD_FB },
122 { "-db", 1, CMD_DB },
123 { "-a", 0, CMD_ALL },
124 { "-i", 0, CMD_INFO },
125 { "-g", 5, CMD_GEOMETRY },
126 { "-t", 7, CMD_TIMING },
127 { "-accel", 1, CMD_ACCEL },
128 { "-hsync", 1, CMD_HSYNC },
129 { "-vsync", 1, CMD_VSYNC },
130 { "-laced", 1, CMD_LACED },
131 { "-double", 1, CMD_DOUBLE },
132 { "-n", 0, CMD_CHANGE },
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000133#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000134 { "-all", 0, CMD_ALL },
135 { "-xres", 1, CMD_XRES },
136 { "-yres", 1, CMD_YRES },
137 { "-vxres", 1, CMD_VXRES },
138 { "-vyres", 1, CMD_VYRES },
139 { "-depth", 1, CMD_DEPTH },
140 { "-match", 0, CMD_MATCH },
141 { "-geometry", 5, CMD_GEOMETRY },
142 { "-pixclock", 1, CMD_PIXCLOCK },
143 { "-left", 1, CMD_LEFT },
144 { "-right", 1, CMD_RIGHT },
145 { "-upper", 1, CMD_UPPER },
146 { "-lower", 1, CMD_LOWER },
147 { "-hslen", 1, CMD_HSLEN },
148 { "-vslen", 1, CMD_VSLEN },
149 { "-timings", 7, CMD_TIMING },
150 { "-csync", 1, CMD_CSYNC },
151 { "-gsync", 1, CMD_GSYNC },
152 { "-extsync", 1, CMD_EXTSYNC },
153 { "-bcast", 1, CMD_BCAST },
154 { "-rgba", 1, CMD_RGBA },
155 { "-step", 1, CMD_STEP },
156 { "-move", 1, CMD_MOVE },
Erik Andersen1c5b2581999-12-16 20:59:36 +0000157#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000158 { "", 0, 0 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000159};
160
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000161#if ENABLE_FEATURE_FBSET_READMODE
Matt Kraai269e07c2000-10-28 16:56:32 +0000162/* taken from linux/fb.h */
Rob Landleybc68cd12006-03-10 19:22:06 +0000163enum {
164 FB_VMODE_INTERLACED = 1, /* interlaced */
165 FB_VMODE_DOUBLE = 2, /* double scan */
166 FB_SYNC_HOR_HIGH_ACT = 1, /* horizontal sync high active */
167 FB_SYNC_VERT_HIGH_ACT = 2, /* vertical sync high active */
168 FB_SYNC_EXT = 4, /* external sync */
169 FB_SYNC_COMP_HIGH_ACT = 8 /* composite sync high active */
170};
Matt Kraai269e07c2000-10-28 16:56:32 +0000171#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000172
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000173static void ss(uint32_t *x, uint32_t flag, char *buf, const char *what)
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000174{
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000175 if (strstr(buf, what))
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000176 *x &= ~flag;
177 else
178 *x |= flag;
179}
180
Denis Vlasenko85c24712008-03-17 09:04:04 +0000181#if ENABLE_FEATURE_FBSET_READMODE
Erik Andersen1c5b2581999-12-16 20:59:36 +0000182static int readmode(struct fb_var_screeninfo *base, const char *fn,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000183 const char *mode)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000184{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185 FILE *f;
186 char buf[256];
187 char *p = buf;
188
Denis Vlasenko5415c852008-07-21 23:05:26 +0000189 f = xfopen_for_read(fn);
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000190 while (fgets(buf, sizeof(buf), f)) {
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000191 p = strstr(buf, "mode ");
192 if (!p && !(p = strstr(buf, "mode\t")))
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000193 continue;
Denis Vlasenko6bef3d12007-11-06 03:05:54 +0000194 p = strstr(p + 5, mode);
195 if (!p)
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000196 continue;
197 p += strlen(mode);
198 if (!isspace(*p) && (*p != 0) && (*p != '"')
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000199 && (*p != '\r') && (*p != '\n')
200 ) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000201 continue; /* almost, but not quite */
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000202 }
Eric Andersen6f96e672000-07-12 23:01:04 +0000203
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000204 while (fgets(buf, sizeof(buf), f)) {
205 if ((p = strstr(buf, "geometry "))) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000206 p += 9;
207 /* FIXME: catastrophic on arches with 64bit ints */
208 sscanf(p, "%d %d %d %d %d",
209 &(base->xres), &(base->yres),
210 &(base->xres_virtual), &(base->yres_virtual),
211 &(base->bits_per_pixel));
212 } else if ((p = strstr(buf, "timings "))) {
213 p += 8;
214 sscanf(p, "%d %d %d %d %d %d %d",
215 &(base->pixclock),
216 &(base->left_margin), &(base->right_margin),
217 &(base->upper_margin), &(base->lower_margin),
218 &(base->hsync_len), &(base->vsync_len));
219 } else if ((p = strstr(buf, "laced "))) {
220 //p += 6;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000221 ss(&base->vmode, FB_VMODE_INTERLACED, buf, "false");
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000222 } else if ((p = strstr(buf, "double "))) {
223 //p += 7;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000224 ss(&base->vmode, FB_VMODE_DOUBLE, buf, "false");
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000225 } else if ((p = strstr(buf, "vsync "))) {
226 //p += 6;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000227 ss(&base->sync, FB_SYNC_VERT_HIGH_ACT, buf, "low");
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000228 } else if ((p = strstr(buf, "hsync "))) {
229 //p += 6;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000230 ss(&base->sync, FB_SYNC_HOR_HIGH_ACT, buf, "low");
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000231 } else if ((p = strstr(buf, "csync "))) {
232 //p += 6;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000233 ss(&base->sync, FB_SYNC_COMP_HIGH_ACT, buf, "low");
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000234 } else if ((p = strstr(buf, "extsync "))) {
235 //p += 8;
Denis Vlasenko09f5ecf2008-07-27 20:25:29 +0000236 ss(&base->sync, FB_SYNC_EXT, buf, "false");
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237 }
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000238
239 if (strstr(buf, "endmode"))
240 return 1;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000241 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000242 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000243 return 0;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000244}
Denis Vlasenko85c24712008-03-17 09:04:04 +0000245#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000246
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000247static void setmode(struct fb_var_screeninfo *base,
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 struct fb_var_screeninfo *set)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000249{
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000250 if ((int32_t) set->xres > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 base->xres = set->xres;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000252 if ((int32_t) set->yres > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000253 base->yres = set->yres;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000254 if ((int32_t) set->xres_virtual > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000255 base->xres_virtual = set->xres_virtual;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000256 if ((int32_t) set->yres_virtual > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000257 base->yres_virtual = set->yres_virtual;
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000258 if ((int32_t) set->bits_per_pixel > 0)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259 base->bits_per_pixel = set->bits_per_pixel;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000260}
261
Denis Vlasenko8d523cb2008-07-27 21:16:30 +0000262static void showmode(struct fb_var_screeninfo *v)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000263{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000264 double drate = 0, hrate = 0, vrate = 0;
265
266 if (v->pixclock) {
267 drate = 1e12 / v->pixclock;
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000268 hrate = drate / (v->left_margin + v->xres + v->right_margin + v->hsync_len);
269 vrate = hrate / (v->upper_margin + v->yres + v->lower_margin + v->vsync_len);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000270 }
Aaron Lehmann60694412002-08-13 04:19:23 +0000271 printf("\nmode \"%ux%u-%u\"\n"
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000272#if ENABLE_FEATURE_FBSET_FANCY
Aaron Lehmann60694412002-08-13 04:19:23 +0000273 "\t# D: %.3f MHz, H: %.3f kHz, V: %.3f Hz\n"
Erik Andersen1c5b2581999-12-16 20:59:36 +0000274#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000275 "\tgeometry %u %u %u %u %u\n"
276 "\ttimings %u %u %u %u %u %u %u\n"
277 "\taccel %s\n"
278 "\trgba %u/%u,%u/%u,%u/%u,%u/%u\n"
279 "endmode\n\n",
280 v->xres, v->yres, (int) (vrate + 0.5),
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000281#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000282 drate / 1e6, hrate / 1e3, vrate,
Aaron Lehmann60694412002-08-13 04:19:23 +0000283#endif
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000284 v->xres, v->yres, v->xres_virtual, v->yres_virtual, v->bits_per_pixel,
285 v->pixclock, v->left_margin, v->right_margin, v->upper_margin, v->lower_margin,
286 v->hsync_len, v->vsync_len,
287 (v->accel_flags > 0 ? "true" : "false"),
288 v->red.length, v->red.offset, v->green.length, v->green.offset,
289 v->blue.length, v->blue.offset, v->transp.length, v->transp.offset);
Erik Andersen1c5b2581999-12-16 20:59:36 +0000290}
291
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000292int fbset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +0000293int fbset_main(int argc, char **argv)
Erik Andersen1c5b2581999-12-16 20:59:36 +0000294{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000295 struct fb_var_screeninfo var, varset;
296 int fh, i;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000297 const char *fbdev = DEFAULTFBDEV;
298 const char *modefile = DEFAULTFBMODE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000299 char *thisarg, *mode = NULL;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000300
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 memset(&varset, 0xFF, sizeof(varset));
302
303 /* parse cmd args.... why do they have to make things so difficult? */
304 argv++;
305 argc--;
306 for (; argc > 0 && (thisarg = *argv); argc--, argv++) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000307 for (i = 0; g_cmdoptions[i].name[0]; i++) {
308 if (strcmp(thisarg, g_cmdoptions[i].name))
309 continue;
310 if (argc-1 < g_cmdoptions[i].param_count)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000311 bb_show_usage();
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000312
313 switch (g_cmdoptions[i].code) {
314 case CMD_FB:
315 fbdev = argv[1];
316 break;
317 case CMD_DB:
318 modefile = argv[1];
319 break;
320 case CMD_GEOMETRY:
Denis Vlasenko13858992006-10-08 12:49:22 +0000321 varset.xres = xatou32(argv[1]);
322 varset.yres = xatou32(argv[2]);
323 varset.xres_virtual = xatou32(argv[3]);
324 varset.yres_virtual = xatou32(argv[4]);
325 varset.bits_per_pixel = xatou32(argv[5]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000326 break;
327 case CMD_TIMING:
Denis Vlasenko13858992006-10-08 12:49:22 +0000328 varset.pixclock = xatou32(argv[1]);
329 varset.left_margin = xatou32(argv[2]);
330 varset.right_margin = xatou32(argv[3]);
331 varset.upper_margin = xatou32(argv[4]);
332 varset.lower_margin = xatou32(argv[5]);
333 varset.hsync_len = xatou32(argv[6]);
334 varset.vsync_len = xatou32(argv[7]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000335 break;
336 case CMD_ALL:
337 g_options |= OPT_ALL;
338 break;
339 case CMD_CHANGE:
340 g_options |= OPT_CHANGE;
341 break;
Denis Vlasenkoe3241842007-08-13 10:36:25 +0000342#if ENABLE_FEATURE_FBSET_FANCY
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000343 case CMD_XRES:
Denis Vlasenko13858992006-10-08 12:49:22 +0000344 varset.xres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000345 break;
346 case CMD_YRES:
Denis Vlasenko13858992006-10-08 12:49:22 +0000347 varset.yres = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000348 break;
349 case CMD_DEPTH:
Denis Vlasenko13858992006-10-08 12:49:22 +0000350 varset.bits_per_pixel = xatou32(argv[1]);
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000351 break;
352#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353 }
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000354 argc -= g_cmdoptions[i].param_count;
355 argv += g_cmdoptions[i].param_count;
356 break;
357 }
358 if (!g_cmdoptions[i].name[0]) {
359 if (argc != 1)
360 bb_show_usage();
361 mode = *argv;
362 g_options |= OPT_READMODE;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000363 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000364 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000365
Rob Landleyd921b2e2006-08-03 15:41:12 +0000366 fh = xopen(fbdev, O_RDONLY);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000367 xioctl(fh, FBIOGET_VSCREENINFO, &var);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000368 if (g_options & OPT_READMODE) {
Denis Vlasenko85c24712008-03-17 09:04:04 +0000369#if !ENABLE_FEATURE_FBSET_READMODE
370 bb_show_usage();
371#else
Erik Andersene49d5ec2000-02-08 19:58:47 +0000372 if (!readmode(&var, modefile, mode)) {
Denis Vlasenko39d551f2006-09-30 16:28:30 +0000373 bb_error_msg_and_die("unknown video mode '%s'", mode);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000374 }
Denis Vlasenko85c24712008-03-17 09:04:04 +0000375#endif
Erik Andersen1c5b2581999-12-16 20:59:36 +0000376 }
Erik Andersen1c5b2581999-12-16 20:59:36 +0000377
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 setmode(&var, &varset);
Denis Vlasenko274b8c02006-09-30 16:22:59 +0000379 if (g_options & OPT_CHANGE) {
380 if (g_options & OPT_ALL)
381 var.activate = FB_ACTIVATE_ALL;
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000382 xioctl(fh, FBIOPUT_VSCREENINFO, &var);
Denis Vlasenko274b8c02006-09-30 16:22:59 +0000383 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000384 showmode(&var);
Erik Andersen298854f2000-03-23 01:09:18 +0000385 /* Don't close the file, as exiting will take care of that */
386 /* close(fh); */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387
Matt Kraai3e856ce2000-12-01 02:55:13 +0000388 return EXIT_SUCCESS;
Erik Andersen1c5b2581999-12-16 20:59:36 +0000389}