2 * linux/drivers/video/modedb.c -- Standard video mode database management
4 * Copyright (C) 1999 Geert Uytterhoeven
6 * 2001 - Documented with DocBook
7 * - Brad Douglas <brad@neruo.com>
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive for
14 #include <linux/module.h>
15 #include <linux/tty.h>
17 #include <linux/sched.h>
21 #define name_matches(v, s, l) \
22 ((v).name && !strncmp((s), (v).name, (l)) && strlen((v).name) == (l))
23 #define res_matches(v, x, y) \
24 ((v).xres == (x) && (v).yres == (y))
27 #define DPRINTK(fmt, args...) printk("modedb %s: " fmt, __FUNCTION__ , ## args)
29 #define DPRINTK(fmt, args...)
32 const char *global_mode_option;
35 * Standard video mode definitions (taken from XFree86)
38 #define DEFAULT_MODEDB_INDEX 0
40 static const struct fb_videomode modedb[] = {
42 /* 640x400 @ 70 Hz, 31.5 kHz hsync */
43 NULL, 70, 640, 400, 39721, 40, 24, 39, 9, 96, 2,
44 0, FB_VMODE_NONINTERLACED
46 /* 640x480 @ 60 Hz, 31.5 kHz hsync */
47 NULL, 60, 640, 480, 39721, 40, 24, 32, 11, 96, 2,
48 0, FB_VMODE_NONINTERLACED
50 /* 800x600 @ 56 Hz, 35.15 kHz hsync */
51 NULL, 56, 800, 600, 27777, 128, 24, 22, 1, 72, 2,
52 0, FB_VMODE_NONINTERLACED
54 /* 1024x768 @ 87 Hz interlaced, 35.5 kHz hsync */
55 NULL, 87, 1024, 768, 22271, 56, 24, 33, 8, 160, 8,
56 0, FB_VMODE_INTERLACED
58 /* 640x400 @ 85 Hz, 37.86 kHz hsync */
59 NULL, 85, 640, 400, 31746, 96, 32, 41, 1, 64, 3,
60 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
62 /* 640x480 @ 72 Hz, 36.5 kHz hsync */
63 NULL, 72, 640, 480, 31746, 144, 40, 30, 8, 40, 3,
64 0, FB_VMODE_NONINTERLACED
66 /* 640x480 @ 75 Hz, 37.50 kHz hsync */
67 NULL, 75, 640, 480, 31746, 120, 16, 16, 1, 64, 3,
68 0, FB_VMODE_NONINTERLACED
70 /* 800x600 @ 60 Hz, 37.8 kHz hsync */
71 NULL, 60, 800, 600, 25000, 88, 40, 23, 1, 128, 4,
72 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
74 /* 640x480 @ 85 Hz, 43.27 kHz hsync */
75 NULL, 85, 640, 480, 27777, 80, 56, 25, 1, 56, 3,
76 0, FB_VMODE_NONINTERLACED
78 /* 1152x864 @ 89 Hz interlaced, 44 kHz hsync */
79 NULL, 69, 1152, 864, 15384, 96, 16, 110, 1, 216, 10,
80 0, FB_VMODE_INTERLACED
82 /* 800x600 @ 72 Hz, 48.0 kHz hsync */
83 NULL, 72, 800, 600, 20000, 64, 56, 23, 37, 120, 6,
84 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
86 /* 1024x768 @ 60 Hz, 48.4 kHz hsync */
87 NULL, 60, 1024, 768, 15384, 168, 8, 29, 3, 144, 6,
88 0, FB_VMODE_NONINTERLACED
90 /* 640x480 @ 100 Hz, 53.01 kHz hsync */
91 NULL, 100, 640, 480, 21834, 96, 32, 36, 8, 96, 6,
92 0, FB_VMODE_NONINTERLACED
94 /* 1152x864 @ 60 Hz, 53.5 kHz hsync */
95 NULL, 60, 1152, 864, 11123, 208, 64, 16, 4, 256, 8,
96 0, FB_VMODE_NONINTERLACED
98 /* 800x600 @ 85 Hz, 55.84 kHz hsync */
99 NULL, 85, 800, 600, 16460, 160, 64, 36, 16, 64, 5,
100 0, FB_VMODE_NONINTERLACED
102 /* 1024x768 @ 70 Hz, 56.5 kHz hsync */
103 NULL, 70, 1024, 768, 13333, 144, 24, 29, 3, 136, 6,
104 0, FB_VMODE_NONINTERLACED
106 /* 1280x1024 @ 87 Hz interlaced, 51 kHz hsync */
107 NULL, 87, 1280, 1024, 12500, 56, 16, 128, 1, 216, 12,
108 0, FB_VMODE_INTERLACED
110 /* 800x600 @ 100 Hz, 64.02 kHz hsync */
111 NULL, 100, 800, 600, 14357, 160, 64, 30, 4, 64, 6,
112 0, FB_VMODE_NONINTERLACED
114 /* 1024x768 @ 76 Hz, 62.5 kHz hsync */
115 NULL, 76, 1024, 768, 11764, 208, 8, 36, 16, 120, 3,
116 0, FB_VMODE_NONINTERLACED
118 /* 1152x864 @ 70 Hz, 62.4 kHz hsync */
119 NULL, 70, 1152, 864, 10869, 106, 56, 20, 1, 160, 10,
120 0, FB_VMODE_NONINTERLACED
122 /* 1280x1024 @ 61 Hz, 64.2 kHz hsync */
123 NULL, 61, 1280, 1024, 9090, 200, 48, 26, 1, 184, 3,
124 0, FB_VMODE_NONINTERLACED
126 /* 1400x1050 @ 60Hz, 63.9 kHz hsync */
127 NULL, 68, 1400, 1050, 9259, 136, 40, 13, 1, 112, 3,
128 0, FB_VMODE_NONINTERLACED
130 /* 1400x1050 @ 75,107 Hz, 82,392 kHz +hsync +vsync*/
131 NULL, 75, 1400, 1050, 9271, 120, 56, 13, 0, 112, 3,
132 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
134 /* 1400x1050 @ 60 Hz, ? kHz +hsync +vsync*/
135 NULL, 60, 1400, 1050, 9259, 128, 40, 12, 0, 112, 3,
136 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
138 /* 1024x768 @ 85 Hz, 70.24 kHz hsync */
139 NULL, 85, 1024, 768, 10111, 192, 32, 34, 14, 160, 6,
140 0, FB_VMODE_NONINTERLACED
142 /* 1152x864 @ 78 Hz, 70.8 kHz hsync */
143 NULL, 78, 1152, 864, 9090, 228, 88, 32, 0, 84, 12,
144 0, FB_VMODE_NONINTERLACED
146 /* 1280x1024 @ 70 Hz, 74.59 kHz hsync */
147 NULL, 70, 1280, 1024, 7905, 224, 32, 28, 8, 160, 8,
148 0, FB_VMODE_NONINTERLACED
150 /* 1600x1200 @ 60Hz, 75.00 kHz hsync */
151 NULL, 60, 1600, 1200, 6172, 304, 64, 46, 1, 192, 3,
152 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
154 /* 1152x864 @ 84 Hz, 76.0 kHz hsync */
155 NULL, 84, 1152, 864, 7407, 184, 312, 32, 0, 128, 12,
156 0, FB_VMODE_NONINTERLACED
158 /* 1280x1024 @ 74 Hz, 78.85 kHz hsync */
159 NULL, 74, 1280, 1024, 7407, 256, 32, 34, 3, 144, 3,
160 0, FB_VMODE_NONINTERLACED
162 /* 1024x768 @ 100Hz, 80.21 kHz hsync */
163 NULL, 100, 1024, 768, 8658, 192, 32, 21, 3, 192, 10,
164 0, FB_VMODE_NONINTERLACED
166 /* 1280x1024 @ 76 Hz, 81.13 kHz hsync */
167 NULL, 76, 1280, 1024, 7407, 248, 32, 34, 3, 104, 3,
168 0, FB_VMODE_NONINTERLACED
170 /* 1600x1200 @ 70 Hz, 87.50 kHz hsync */
171 NULL, 70, 1600, 1200, 5291, 304, 64, 46, 1, 192, 3,
172 0, FB_VMODE_NONINTERLACED
174 /* 1152x864 @ 100 Hz, 89.62 kHz hsync */
175 NULL, 100, 1152, 864, 7264, 224, 32, 17, 2, 128, 19,
176 0, FB_VMODE_NONINTERLACED
178 /* 1280x1024 @ 85 Hz, 91.15 kHz hsync */
179 NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3,
180 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
182 /* 1600x1200 @ 75 Hz, 93.75 kHz hsync */
183 NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3,
184 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
186 /* 1600x1200 @ 85 Hz, 105.77 kHz hsync */
187 NULL, 85, 1600, 1200, 4545, 272, 16, 37, 4, 192, 3,
188 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
190 /* 1280x1024 @ 100 Hz, 107.16 kHz hsync */
191 NULL, 100, 1280, 1024, 5502, 256, 32, 26, 7, 128, 15,
192 0, FB_VMODE_NONINTERLACED
194 /* 1800x1440 @ 64Hz, 96.15 kHz hsync */
195 NULL, 64, 1800, 1440, 4347, 304, 96, 46, 1, 192, 3,
196 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
198 /* 1800x1440 @ 70Hz, 104.52 kHz hsync */
199 NULL, 70, 1800, 1440, 4000, 304, 96, 46, 1, 192, 3,
200 FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED
202 /* 512x384 @ 78 Hz, 31.50 kHz hsync */
203 NULL, 78, 512, 384, 49603, 48, 16, 16, 1, 64, 3,
204 0, FB_VMODE_NONINTERLACED
206 /* 512x384 @ 85 Hz, 34.38 kHz hsync */
207 NULL, 85, 512, 384, 45454, 48, 16, 16, 1, 64, 3,
208 0, FB_VMODE_NONINTERLACED
210 /* 320x200 @ 70 Hz, 31.5 kHz hsync, 8:5 aspect ratio */
211 NULL, 70, 320, 200, 79440, 16, 16, 20, 4, 48, 1,
214 /* 320x240 @ 60 Hz, 31.5 kHz hsync, 4:3 aspect ratio */
215 NULL, 60, 320, 240, 79440, 16, 16, 16, 5, 48, 1,
218 /* 320x240 @ 72 Hz, 36.5 kHz hsync */
219 NULL, 72, 320, 240, 63492, 16, 16, 16, 4, 48, 2,
222 /* 400x300 @ 56 Hz, 35.2 kHz hsync, 4:3 aspect ratio */
223 NULL, 56, 400, 300, 55555, 64, 16, 10, 1, 32, 1,
226 /* 400x300 @ 60 Hz, 37.8 kHz hsync */
227 NULL, 60, 400, 300, 50000, 48, 16, 11, 1, 64, 2,
230 /* 400x300 @ 72 Hz, 48.0 kHz hsync */
231 NULL, 72, 400, 300, 40000, 32, 24, 11, 19, 64, 3,
234 /* 480x300 @ 56 Hz, 35.2 kHz hsync, 8:5 aspect ratio */
235 NULL, 56, 480, 300, 46176, 80, 16, 10, 1, 40, 1,
238 /* 480x300 @ 60 Hz, 37.8 kHz hsync */
239 NULL, 60, 480, 300, 41858, 56, 16, 11, 1, 80, 2,
242 /* 480x300 @ 63 Hz, 39.6 kHz hsync */
243 NULL, 63, 480, 300, 40000, 56, 16, 11, 1, 80, 2,
246 /* 480x300 @ 72 Hz, 48.0 kHz hsync */
247 NULL, 72, 480, 300, 33386, 40, 24, 11, 19, 80, 3,
250 /* 1920x1200 @ 60 Hz, 74.5 Khz hsync */
251 NULL, 60, 1920, 1200, 5177, 128, 336, 1, 38, 208, 3,
252 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
253 FB_VMODE_NONINTERLACED
257 #ifdef CONFIG_FB_MODE_HELPERS
258 const struct fb_videomode vesa_modes[] = {
259 /* 0 640x350-85 VESA */
260 { NULL, 85, 640, 350, 31746, 96, 32, 60, 32, 64, 3,
261 FB_SYNC_HOR_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA},
262 /* 1 640x400-85 VESA */
263 { NULL, 85, 640, 400, 31746, 96, 32, 41, 01, 64, 3,
264 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
265 /* 2 720x400-85 VESA */
266 { NULL, 85, 721, 400, 28169, 108, 36, 42, 01, 72, 3,
267 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
268 /* 3 640x480-60 VESA */
269 { NULL, 60, 640, 480, 39682, 48, 16, 33, 10, 96, 2,
270 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
271 /* 4 640x480-72 VESA */
272 { NULL, 72, 640, 480, 31746, 128, 24, 29, 9, 40, 2,
273 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
274 /* 5 640x480-75 VESA */
275 { NULL, 75, 640, 480, 31746, 120, 16, 16, 01, 64, 3,
276 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
277 /* 6 640x480-85 VESA */
278 { NULL, 85, 640, 480, 27777, 80, 56, 25, 01, 56, 3,
279 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
280 /* 7 800x600-56 VESA */
281 { NULL, 56, 800, 600, 27777, 128, 24, 22, 01, 72, 2,
282 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
283 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
284 /* 8 800x600-60 VESA */
285 { NULL, 60, 800, 600, 25000, 88, 40, 23, 01, 128, 4,
286 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
287 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
288 /* 9 800x600-72 VESA */
289 { NULL, 72, 800, 600, 20000, 64, 56, 23, 37, 120, 6,
290 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
291 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
292 /* 10 800x600-75 VESA */
293 { NULL, 75, 800, 600, 20202, 160, 16, 21, 01, 80, 3,
294 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
295 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
296 /* 11 800x600-85 VESA */
297 { NULL, 85, 800, 600, 17761, 152, 32, 27, 01, 64, 3,
298 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
299 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
300 /* 12 1024x768i-43 VESA */
301 { NULL, 53, 1024, 768, 22271, 56, 8, 41, 0, 176, 8,
302 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
303 FB_VMODE_INTERLACED, FB_MODE_IS_VESA },
304 /* 13 1024x768-60 VESA */
305 { NULL, 60, 1024, 768, 15384, 160, 24, 29, 3, 136, 6,
306 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
307 /* 14 1024x768-70 VESA */
308 { NULL, 70, 1024, 768, 13333, 144, 24, 29, 3, 136, 6,
309 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
310 /* 15 1024x768-75 VESA */
311 { NULL, 75, 1024, 768, 12690, 176, 16, 28, 1, 96, 3,
312 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
313 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
314 /* 16 1024x768-85 VESA */
315 { NULL, 85, 1024, 768, 10582, 208, 48, 36, 1, 96, 3,
316 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
317 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
318 /* 17 1152x864-75 VESA */
319 { NULL, 75, 1153, 864, 9259, 256, 64, 32, 1, 128, 3,
320 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
321 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
322 /* 18 1280x960-60 VESA */
323 { NULL, 60, 1280, 960, 9259, 312, 96, 36, 1, 112, 3,
324 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
325 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
326 /* 19 1280x960-85 VESA */
327 { NULL, 85, 1280, 960, 6734, 224, 64, 47, 1, 160, 3,
328 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
329 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
330 /* 20 1280x1024-60 VESA */
331 { NULL, 60, 1280, 1024, 9259, 248, 48, 38, 1, 112, 3,
332 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
333 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
334 /* 21 1280x1024-75 VESA */
335 { NULL, 75, 1280, 1024, 7407, 248, 16, 38, 1, 144, 3,
336 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
337 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
338 /* 22 1280x1024-85 VESA */
339 { NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3,
340 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
341 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
342 /* 23 1600x1200-60 VESA */
343 { NULL, 60, 1600, 1200, 6172, 304, 64, 46, 1, 192, 3,
344 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
345 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
346 /* 24 1600x1200-65 VESA */
347 { NULL, 65, 1600, 1200, 5698, 304, 64, 46, 1, 192, 3,
348 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
349 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
350 /* 25 1600x1200-70 VESA */
351 { NULL, 70, 1600, 1200, 5291, 304, 64, 46, 1, 192, 3,
352 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
353 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
354 /* 26 1600x1200-75 VESA */
355 { NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3,
356 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
357 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
358 /* 27 1600x1200-85 VESA */
359 { NULL, 85, 1600, 1200, 4357, 304, 64, 46, 1, 192, 3,
360 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
361 FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
362 /* 28 1792x1344-60 VESA */
363 { NULL, 60, 1792, 1344, 4882, 328, 128, 46, 1, 200, 3,
364 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
365 /* 29 1792x1344-75 VESA */
366 { NULL, 75, 1792, 1344, 3831, 352, 96, 69, 1, 216, 3,
367 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
368 /* 30 1856x1392-60 VESA */
369 { NULL, 60, 1856, 1392, 4580, 352, 96, 43, 1, 224, 3,
370 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
371 /* 31 1856x1392-75 VESA */
372 { NULL, 75, 1856, 1392, 3472, 352, 128, 104, 1, 224, 3,
373 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
374 /* 32 1920x1440-60 VESA */
375 { NULL, 60, 1920, 1440, 4273, 344, 128, 56, 1, 200, 3,
376 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
377 /* 33 1920x1440-75 VESA */
378 { NULL, 60, 1920, 1440, 3367, 352, 144, 56, 1, 224, 3,
379 FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA },
381 EXPORT_SYMBOL(vesa_modes);
382 #endif /* CONFIG_FB_MODE_HELPERS */
384 static int my_atoi(const char *name)
391 val = 10*val+(*name-'0');
400 * fb_try_mode - test a video mode
401 * @var: frame buffer user defined part of display
402 * @info: frame buffer info structure
403 * @mode: frame buffer video mode structure
404 * @bpp: color depth in bits per pixel
406 * Tries a video mode to test it's validity for device @info.
408 * Returns 1 on success.
412 static int fb_try_mode(struct fb_var_screeninfo *var, struct fb_info *info,
413 const struct fb_videomode *mode, unsigned int bpp)
417 DPRINTK("Trying mode %s %dx%d-%d@%d\n", mode->name ? mode->name : "noname",
418 mode->xres, mode->yres, bpp, mode->refresh);
419 var->xres = mode->xres;
420 var->yres = mode->yres;
421 var->xres_virtual = mode->xres;
422 var->yres_virtual = mode->yres;
425 var->bits_per_pixel = bpp;
426 var->activate |= FB_ACTIVATE_TEST;
427 var->pixclock = mode->pixclock;
428 var->left_margin = mode->left_margin;
429 var->right_margin = mode->right_margin;
430 var->upper_margin = mode->upper_margin;
431 var->lower_margin = mode->lower_margin;
432 var->hsync_len = mode->hsync_len;
433 var->vsync_len = mode->vsync_len;
434 var->sync = mode->sync;
435 var->vmode = mode->vmode;
436 if (info->fbops->fb_check_var)
437 err = info->fbops->fb_check_var(var, info);
438 var->activate &= ~FB_ACTIVATE_TEST;
443 * fb_find_mode - finds a valid video mode
444 * @var: frame buffer user defined part of display
445 * @info: frame buffer info structure
446 * @mode_option: string video mode to find
447 * @db: video mode database
448 * @dbsize: size of @db
449 * @default_mode: default video mode to fall back to
450 * @default_bpp: default color depth in bits per pixel
452 * Finds a suitable video mode, starting with the specified mode
453 * in @mode_option with fallback to @default_mode. If
454 * @default_mode fails, all modes in the video mode database will
457 * Valid mode specifiers for @mode_option:
459 * <xres>x<yres>[M][R][-<bpp>][@<refresh>][i][m] or
460 * <name>[-<bpp>][@<refresh>]
462 * with <xres>, <yres>, <bpp> and <refresh> decimal numbers and
465 * If 'M' is present after yres (and before refresh/bpp if present),
466 * the function will compute the timings using VESA(tm) Coordinated
467 * Video Timings (CVT). If 'R' is present after 'M', will compute with
468 * reduced blanking (for flatpanels). If 'i' is present, compute
469 * interlaced mode. If 'm' is present, add margins equal to 1.8%
470 * of xres rounded down to 8 pixels, and 1.8% of yres. The char
471 * 'i' and 'm' must be after 'M' and 'R'. Example:
473 * 1024x768MR-8@60m - Reduced blank with margins at 60Hz.
475 * NOTE: The passed struct @var is _not_ cleared! This allows you
476 * to supply values for e.g. the grayscale and accel_flags fields.
478 * Returns zero for failure, 1 if using specified @mode_option,
479 * 2 if using specified @mode_option with an ignored refresh rate,
480 * 3 if default mode is used, 4 if fall back to any valid mode.
484 int fb_find_mode(struct fb_var_screeninfo *var,
485 struct fb_info *info, const char *mode_option,
486 const struct fb_videomode *db, unsigned int dbsize,
487 const struct fb_videomode *default_mode,
488 unsigned int default_bpp)
492 /* Set up defaults */
495 dbsize = sizeof(modedb)/sizeof(*modedb);
498 default_mode = &modedb[DEFAULT_MODEDB_INDEX];
502 /* Did the user specify a video mode? */
503 if (mode_option || (mode_option = global_mode_option)) {
504 const char *name = mode_option;
505 unsigned int namelen = strlen(name);
506 int res_specified = 0, bpp_specified = 0, refresh_specified = 0;
507 unsigned int xres = 0, yres = 0, bpp = default_bpp, refresh = 0;
508 int yres_specified = 0, cvt = 0, rb = 0, interlace = 0, margins = 0;
511 for (i = namelen-1; i >= 0; i--) {
515 if (!refresh_specified && !bpp_specified &&
517 refresh = my_atoi(&name[i+1]);
518 refresh_specified = 1;
526 if (!bpp_specified && !yres_specified) {
527 bpp = my_atoi(&name[i+1]);
535 if (!yres_specified) {
536 yres = my_atoi(&name[i+1]);
563 if (i < 0 && yres_specified) {
564 xres = my_atoi(name);
569 struct fb_videomode cvt_mode;
572 DPRINTK("CVT mode %dx%d@%dHz%s%s%s\n", xres, yres,
573 (refresh) ? refresh : 60, (rb) ? " reduced blanking" :
574 "", (margins) ? " with margins" : "", (interlace) ?
577 cvt_mode.xres = xres;
578 cvt_mode.yres = yres;
579 cvt_mode.refresh = (refresh) ? refresh : 60;
582 cvt_mode.vmode |= FB_VMODE_INTERLACED;
584 cvt_mode.vmode &= ~FB_VMODE_INTERLACED;
586 ret = fb_find_mode_cvt(&cvt_mode, margins, rb);
588 if (!ret && !fb_try_mode(var, info, &cvt_mode, bpp)) {
589 DPRINTK("modedb CVT: CVT mode ok\n");
593 DPRINTK("CVT mode invalid, getting mode from database\n");
596 DPRINTK("Trying specified video mode%s %ix%i\n",
597 refresh_specified ? "" : " (ignoring refresh rate)", xres, yres);
601 for (i = 0; i < dbsize; i++) {
602 if ((name_matches(db[i], name, namelen) &&
603 !fb_try_mode(var, info, &db[i], bpp)))
605 if (res_specified && res_matches(db[i], xres, yres)) {
606 if(!fb_try_mode(var, info, &db[i], bpp)) {
607 if(!refresh_specified || db[i].refresh == refresh)
610 if(diff > abs(db[i].refresh - refresh)) {
611 diff = abs(db[i].refresh - refresh);
619 fb_try_mode(var, info, &db[best], bpp);
625 DPRINTK("Trying best-fit modes\n");
626 for (i = 0; i < dbsize; i++) {
627 if (xres <= db[i].xres && yres <= db[i].yres) {
628 DPRINTK("Trying %ix%i\n", db[i].xres, db[i].yres);
629 if (!fb_try_mode(var, info, &db[i], bpp)) {
630 if (diff > (db[i].xres - xres) + (db[i].yres - yres)) {
631 diff = (db[i].xres - xres) + (db[i].yres - yres);
638 fb_try_mode(var, info, &db[best], bpp);
643 DPRINTK("Trying default video mode\n");
644 if (!fb_try_mode(var, info, default_mode, default_bpp))
647 DPRINTK("Trying all modes\n");
648 for (i = 0; i < dbsize; i++)
649 if (!fb_try_mode(var, info, &db[i], default_bpp))
652 DPRINTK("No valid mode found\n");
657 * fb_var_to_videomode - convert fb_var_screeninfo to fb_videomode
658 * @mode: pointer to struct fb_videomode
659 * @var: pointer to struct fb_var_screeninfo
661 void fb_var_to_videomode(struct fb_videomode *mode,
662 struct fb_var_screeninfo *var)
664 u32 pixclock, hfreq, htotal, vtotal;
667 mode->xres = var->xres;
668 mode->yres = var->yres;
669 mode->pixclock = var->pixclock;
670 mode->hsync_len = var->hsync_len;
671 mode->vsync_len = var->vsync_len;
672 mode->left_margin = var->left_margin;
673 mode->right_margin = var->right_margin;
674 mode->upper_margin = var->upper_margin;
675 mode->lower_margin = var->lower_margin;
676 mode->sync = var->sync;
677 mode->vmode = var->vmode & FB_VMODE_MASK;
678 mode->flag = FB_MODE_IS_FROM_VAR;
684 pixclock = PICOS2KHZ(var->pixclock) * 1000;
686 htotal = var->xres + var->right_margin + var->hsync_len +
688 vtotal = var->yres + var->lower_margin + var->vsync_len +
691 if (var->vmode & FB_VMODE_INTERLACED)
693 if (var->vmode & FB_VMODE_DOUBLE)
696 hfreq = pixclock/htotal;
697 mode->refresh = hfreq/vtotal;
701 * fb_videomode_to_var - convert fb_videomode to fb_var_screeninfo
702 * @var: pointer to struct fb_var_screeninfo
703 * @mode: pointer to struct fb_videomode
705 void fb_videomode_to_var(struct fb_var_screeninfo *var,
706 struct fb_videomode *mode)
708 var->xres = mode->xres;
709 var->yres = mode->yres;
710 var->pixclock = mode->pixclock;
711 var->left_margin = mode->left_margin;
712 var->hsync_len = mode->hsync_len;
713 var->vsync_len = mode->vsync_len;
714 var->right_margin = mode->right_margin;
715 var->upper_margin = mode->upper_margin;
716 var->lower_margin = mode->lower_margin;
717 var->sync = mode->sync;
718 var->vmode = mode->vmode & FB_VMODE_MASK;
722 * fb_mode_is_equal - compare 2 videomodes
723 * @mode1: first videomode
724 * @mode2: second videomode
727 * 1 if equal, 0 if not
729 int fb_mode_is_equal(struct fb_videomode *mode1,
730 struct fb_videomode *mode2)
732 return (mode1->xres == mode2->xres &&
733 mode1->yres == mode2->yres &&
734 mode1->pixclock == mode2->pixclock &&
735 mode1->hsync_len == mode2->hsync_len &&
736 mode1->vsync_len == mode2->vsync_len &&
737 mode1->left_margin == mode2->left_margin &&
738 mode1->right_margin == mode2->right_margin &&
739 mode1->upper_margin == mode2->upper_margin &&
740 mode1->lower_margin == mode2->lower_margin &&
741 mode1->sync == mode2->sync &&
742 mode1->vmode == mode2->vmode);
746 * fb_find_best_mode - find best matching videomode
747 * @var: pointer to struct fb_var_screeninfo
748 * @head: pointer to struct list_head of modelist
751 * struct fb_videomode, NULL if none found
754 * This function assumes that all modelist entries in
755 * info->modelist are valid.
758 * Finds best matching videomode which has an equal or greater dimension than
759 * var->xres and var->yres. If more than 1 videomode is found, will return
760 * the videomode with the highest refresh rate
762 struct fb_videomode *fb_find_best_mode(struct fb_var_screeninfo *var,
763 struct list_head *head)
765 struct list_head *pos;
766 struct fb_modelist *modelist;
767 struct fb_videomode *mode, *best = NULL;
770 list_for_each(pos, head) {
773 modelist = list_entry(pos, struct fb_modelist, list);
774 mode = &modelist->mode;
776 if (mode->xres >= var->xres && mode->yres >= var->yres) {
777 d = (mode->xres - var->xres) +
778 (mode->yres - var->yres);
782 } else if (diff == d && mode->refresh > best->refresh)
790 * fb_find_nearest_mode - find closest videomode
792 * @mode: pointer to struct fb_videomode
793 * @head: pointer to modelist
795 * Finds best matching videomode, smaller or greater in dimension.
796 * If more than 1 videomode is found, will return the videomode with
797 * the closest refresh rate.
799 struct fb_videomode *fb_find_nearest_mode(struct fb_videomode *mode,
800 struct list_head *head)
802 struct list_head *pos;
803 struct fb_modelist *modelist;
804 struct fb_videomode *cmode, *best = NULL;
805 u32 diff = -1, diff_refresh = -1;
807 list_for_each(pos, head) {
810 modelist = list_entry(pos, struct fb_modelist, list);
811 cmode = &modelist->mode;
813 d = abs(cmode->xres - mode->xres) +
814 abs(cmode->yres - mode->yres);
818 } else if (diff == d) {
819 d = abs(cmode->refresh - mode->refresh);
820 if (diff_refresh > d) {
831 * fb_match_mode - find a videomode which exactly matches the timings in var
832 * @var: pointer to struct fb_var_screeninfo
833 * @head: pointer to struct list_head of modelist
836 * struct fb_videomode, NULL if none found
838 struct fb_videomode *fb_match_mode(struct fb_var_screeninfo *var,
839 struct list_head *head)
841 struct list_head *pos;
842 struct fb_modelist *modelist;
843 struct fb_videomode *m, mode;
845 fb_var_to_videomode(&mode, var);
846 list_for_each(pos, head) {
847 modelist = list_entry(pos, struct fb_modelist, list);
849 if (fb_mode_is_equal(m, &mode))
856 * fb_add_videomode: adds videomode entry to modelist
857 * @mode: videomode to add
858 * @head: struct list_head of modelist
861 * Will only add unmatched mode entries
863 int fb_add_videomode(struct fb_videomode *mode, struct list_head *head)
865 struct list_head *pos;
866 struct fb_modelist *modelist;
867 struct fb_videomode *m;
870 list_for_each(pos, head) {
871 modelist = list_entry(pos, struct fb_modelist, list);
873 if (fb_mode_is_equal(m, mode)) {
879 modelist = kmalloc(sizeof(struct fb_modelist),
884 modelist->mode = *mode;
885 list_add(&modelist->list, head);
891 * fb_delete_videomode: removed videomode entry from modelist
892 * @mode: videomode to remove
893 * @head: struct list_head of modelist
896 * Will remove all matching mode entries
898 void fb_delete_videomode(struct fb_videomode *mode, struct list_head *head)
900 struct list_head *pos, *n;
901 struct fb_modelist *modelist;
902 struct fb_videomode *m;
904 list_for_each_safe(pos, n, head) {
905 modelist = list_entry(pos, struct fb_modelist, list);
907 if (fb_mode_is_equal(m, mode)) {
915 * fb_destroy_modelist: destroy modelist
916 * @head: struct list_head of modelist
918 void fb_destroy_modelist(struct list_head *head)
920 struct list_head *pos, *n;
922 list_for_each_safe(pos, n, head) {
929 * fb_videomode_to_modelist: convert mode array to mode list
930 * @modedb: array of struct fb_videomode
931 * @num: number of entries in array
932 * @head: struct list_head of modelist
934 void fb_videomode_to_modelist(struct fb_videomode *modedb, int num,
935 struct list_head *head)
939 INIT_LIST_HEAD(head);
941 for (i = 0; i < num; i++) {
942 if (fb_add_videomode(&modedb[i], head))
947 struct fb_videomode *fb_find_best_display(struct fb_monspecs *specs,
948 struct list_head *head)
950 struct list_head *pos;
951 struct fb_modelist *modelist;
952 struct fb_videomode *m, *m1 = NULL, *md = NULL, *best = NULL;
955 if (!head->prev || !head->next || list_empty(head))
958 /* get the first detailed mode and the very first mode */
959 list_for_each(pos, head) {
960 modelist = list_entry(pos, struct fb_modelist, list);
968 if (m->flag & FB_MODE_IS_FIRST) {
974 /* first detailed timing is preferred */
975 if (specs->misc & FB_MISC_1ST_DETAIL) {
980 /* find best mode based on display width and height */
981 if (specs->max_x && specs->max_y) {
982 struct fb_var_screeninfo var;
984 memset(&var, 0, sizeof(struct fb_var_screeninfo));
985 var.xres = (specs->max_x * 7200)/254;
986 var.yres = (specs->max_y * 7200)/254;
987 m = fb_find_best_mode(&var, head);
994 /* use first detailed mode */
1000 /* last resort, use the very first mode */
1005 EXPORT_SYMBOL(fb_find_best_display);
1007 EXPORT_SYMBOL(fb_videomode_to_var);
1008 EXPORT_SYMBOL(fb_var_to_videomode);
1009 EXPORT_SYMBOL(fb_mode_is_equal);
1010 EXPORT_SYMBOL(fb_add_videomode);
1011 EXPORT_SYMBOL(fb_delete_videomode);
1012 EXPORT_SYMBOL(fb_destroy_modelist);
1013 EXPORT_SYMBOL(fb_match_mode);
1014 EXPORT_SYMBOL(fb_find_best_mode);
1015 EXPORT_SYMBOL(fb_find_nearest_mode);
1016 EXPORT_SYMBOL(fb_videomode_to_modelist);
1017 EXPORT_SYMBOL(fb_find_mode);