1#ifndef _LINUX_FB_H
2#define _LINUX_FB_H
3
4#include <linux/kgdb.h>
5#include <uapi/linux/fb.h>
6
7#define FBIO_CURSOR _IOWR('F', 0x08, struct fb_cursor_user)
8
9#include <linux/fs.h>
10#include <linux/init.h>
11#include <linux/workqueue.h>
12#include <linux/notifier.h>
13#include <linux/list.h>
14#include <linux/backlight.h>
15#include <linux/slab.h>
16#include <asm/io.h>
17
18struct vm_area_struct;
19struct fb_info;
20struct device;
21struct file;
22
23
24#define FB_DPMS_ACTIVE_OFF 1
25#define FB_DPMS_SUSPEND 2
26#define FB_DPMS_STANDBY 4
27
28#define FB_DISP_DDI 1
29#define FB_DISP_ANA_700_300 2
30#define FB_DISP_ANA_714_286 4
31#define FB_DISP_ANA_1000_400 8
32#define FB_DISP_ANA_700_000 16
33
34#define FB_DISP_MONO 32
35#define FB_DISP_RGB 64
36#define FB_DISP_MULTI 128
37#define FB_DISP_UNKNOWN 256
38
39#define FB_SIGNAL_NONE 0
40#define FB_SIGNAL_BLANK_BLANK 1
41#define FB_SIGNAL_SEPARATE 2
42#define FB_SIGNAL_COMPOSITE 4
43#define FB_SIGNAL_SYNC_ON_GREEN 8
44#define FB_SIGNAL_SERRATION_ON 16
45
46#define FB_MISC_PRIM_COLOR 1
47#define FB_MISC_1ST_DETAIL 2
48struct fb_chroma {
49 __u32 redx;
50 __u32 greenx;
51 __u32 bluex;
52 __u32 whitex;
53 __u32 redy;
54 __u32 greeny;
55 __u32 bluey;
56 __u32 whitey;
57};
58
59struct fb_monspecs {
60 struct fb_chroma chroma;
61 struct fb_videomode *modedb;
62 __u8 manufacturer[4];
63 __u8 monitor[14];
64 __u8 serial_no[14];
65 __u8 ascii[14];
66 __u32 modedb_len;
67 __u32 model;
68 __u32 serial;
69 __u32 year;
70 __u32 week;
71 __u32 hfmin;
72 __u32 hfmax;
73 __u32 dclkmin;
74 __u32 dclkmax;
75 __u16 input;
76 __u16 dpms;
77 __u16 signal;
78 __u16 vfmin;
79 __u16 vfmax;
80 __u16 gamma;
81 __u16 gtf : 1;
82 __u16 misc;
83 __u8 version;
84 __u8 revision;
85 __u8 max_x;
86 __u8 max_y;
87};
88
89struct fb_cmap_user {
90 __u32 start;
91 __u32 len;
92 __u16 __user *red;
93 __u16 __user *green;
94 __u16 __user *blue;
95 __u16 __user *transp;
96};
97
98struct fb_image_user {
99 __u32 dx;
100 __u32 dy;
101 __u32 width;
102 __u32 height;
103 __u32 fg_color;
104 __u32 bg_color;
105 __u8 depth;
106 const char __user *data;
107 struct fb_cmap_user cmap;
108};
109
110struct fb_cursor_user {
111 __u16 set;
112 __u16 enable;
113 __u16 rop;
114 const char __user *mask;
115 struct fbcurpos hot;
116 struct fb_image_user image;
117};
118
119
120
121
122
123
124#define FB_EVENT_MODE_CHANGE 0x01
125
126
127
128#define FB_EVENT_SUSPEND 0x02
129
130
131
132#define FB_EVENT_RESUME 0x03
133
134#define FB_EVENT_MODE_DELETE 0x04
135
136#define FB_EVENT_FB_REGISTERED 0x05
137
138#define FB_EVENT_FB_UNREGISTERED 0x06
139
140#define FB_EVENT_GET_CONSOLE_MAP 0x07
141
142#define FB_EVENT_SET_CONSOLE_MAP 0x08
143
144#define FB_EVENT_BLANK 0x09
145
146#define FB_EVENT_NEW_MODELIST 0x0A
147
148
149#define FB_EVENT_MODE_CHANGE_ALL 0x0B
150
151#define FB_EVENT_CONBLANK 0x0C
152
153#define FB_EVENT_GET_REQ 0x0D
154
155#define FB_EVENT_FB_UNBIND 0x0E
156
157#define FB_EVENT_REMAP_ALL_CONSOLE 0x0F
158
159#define FB_EARLY_EVENT_BLANK 0x10
160
161#define FB_R_EARLY_EVENT_BLANK 0x11
162
163struct fb_event {
164 struct fb_info *info;
165 void *data;
166};
167
168struct fb_blit_caps {
169 u32 x;
170 u32 y;
171 u32 len;
172 u32 flags;
173};
174
175extern int fb_register_client(struct notifier_block *nb);
176extern int fb_unregister_client(struct notifier_block *nb);
177extern int fb_notifier_call_chain(unsigned long val, void *v);
178
179
180
181
182
183
184
185
186#define FB_PIXMAP_DEFAULT 1
187#define FB_PIXMAP_SYSTEM 2
188#define FB_PIXMAP_IO 4
189#define FB_PIXMAP_SYNC 256
190
191struct fb_pixmap {
192 u8 *addr;
193 u32 size;
194 u32 offset;
195 u32 buf_align;
196 u32 scan_align;
197 u32 access_align;
198 u32 flags;
199 u32 blit_x;
200 u32 blit_y;
201
202
203
204 void (*writeio)(struct fb_info *info, void __iomem *dst, void *src, unsigned int size);
205 void (*readio) (struct fb_info *info, void *dst, void __iomem *src, unsigned int size);
206};
207
208#ifdef CONFIG_FB_DEFERRED_IO
209struct fb_deferred_io {
210
211 unsigned long delay;
212 struct mutex lock;
213 struct list_head pagelist;
214
215 void (*first_io)(struct fb_info *info);
216 void (*deferred_io)(struct fb_info *info, struct list_head *pagelist);
217};
218#endif
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234struct fb_ops {
235
236 struct module *owner;
237 int (*fb_open)(struct fb_info *info, int user);
238 int (*fb_release)(struct fb_info *info, int user);
239
240
241
242
243 ssize_t (*fb_read)(struct fb_info *info, char __user *buf,
244 size_t count, loff_t *ppos);
245 ssize_t (*fb_write)(struct fb_info *info, const char __user *buf,
246 size_t count, loff_t *ppos);
247
248
249
250 int (*fb_check_var)(struct fb_var_screeninfo *var, struct fb_info *info);
251
252
253 int (*fb_set_par)(struct fb_info *info);
254
255
256 int (*fb_setcolreg)(unsigned regno, unsigned red, unsigned green,
257 unsigned blue, unsigned transp, struct fb_info *info);
258
259
260 int (*fb_setcmap)(struct fb_cmap *cmap, struct fb_info *info);
261
262
263 int (*fb_blank)(int blank, struct fb_info *info);
264
265
266 int (*fb_pan_display)(struct fb_var_screeninfo *var, struct fb_info *info);
267
268
269 void (*fb_fillrect) (struct fb_info *info, const struct fb_fillrect *rect);
270
271 void (*fb_copyarea) (struct fb_info *info, const struct fb_copyarea *region);
272
273 void (*fb_imageblit) (struct fb_info *info, const struct fb_image *image);
274
275
276 int (*fb_cursor) (struct fb_info *info, struct fb_cursor *cursor);
277
278
279 void (*fb_rotate)(struct fb_info *info, int angle);
280
281
282 int (*fb_sync)(struct fb_info *info);
283
284
285 int (*fb_ioctl)(struct fb_info *info, unsigned int cmd,
286 unsigned long arg);
287
288
289 int (*fb_compat_ioctl)(struct fb_info *info, unsigned cmd,
290 unsigned long arg);
291
292
293 int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma);
294
295
296 void (*fb_get_caps)(struct fb_info *info, struct fb_blit_caps *caps,
297 struct fb_var_screeninfo *var);
298
299
300 void (*fb_destroy)(struct fb_info *info);
301
302
303 int (*fb_debug_enter)(struct fb_info *info);
304 int (*fb_debug_leave)(struct fb_info *info);
305};
306
307#ifdef CONFIG_FB_TILEBLITTING
308#define FB_TILE_CURSOR_NONE 0
309#define FB_TILE_CURSOR_UNDERLINE 1
310#define FB_TILE_CURSOR_LOWER_THIRD 2
311#define FB_TILE_CURSOR_LOWER_HALF 3
312#define FB_TILE_CURSOR_TWO_THIRDS 4
313#define FB_TILE_CURSOR_BLOCK 5
314
315struct fb_tilemap {
316 __u32 width;
317 __u32 height;
318 __u32 depth;
319 __u32 length;
320 const __u8 *data;
321
322};
323
324struct fb_tilerect {
325 __u32 sx;
326 __u32 sy;
327 __u32 width;
328 __u32 height;
329 __u32 index;
330 __u32 fg;
331 __u32 bg;
332 __u32 rop;
333};
334
335struct fb_tilearea {
336 __u32 sx;
337 __u32 sy;
338 __u32 dx;
339 __u32 dy;
340 __u32 width;
341 __u32 height;
342};
343
344struct fb_tileblit {
345 __u32 sx;
346 __u32 sy;
347 __u32 width;
348 __u32 height;
349 __u32 fg;
350 __u32 bg;
351 __u32 length;
352 __u32 *indices;
353};
354
355struct fb_tilecursor {
356 __u32 sx;
357 __u32 sy;
358 __u32 mode;
359 __u32 shape;
360 __u32 fg;
361 __u32 bg;
362};
363
364struct fb_tile_ops {
365
366 void (*fb_settile)(struct fb_info *info, struct fb_tilemap *map);
367
368
369
370
371 void (*fb_tilecopy)(struct fb_info *info, struct fb_tilearea *area);
372
373 void (*fb_tilefill)(struct fb_info *info, struct fb_tilerect *rect);
374
375 void (*fb_tileblit)(struct fb_info *info, struct fb_tileblit *blit);
376
377 void (*fb_tilecursor)(struct fb_info *info,
378 struct fb_tilecursor *cursor);
379
380 int (*fb_get_tilemax)(struct fb_info *info);
381};
382#endif
383
384
385#define FBINFO_MODULE 0x0001
386#define FBINFO_HWACCEL_DISABLED 0x0002
387
388
389
390
391
392
393#define FBINFO_VIRTFB 0x0004
394#define FBINFO_PARTIAL_PAN_OK 0x0040
395#define FBINFO_READS_FAST 0x0080
396
397
398
399
400
401
402
403#define FBINFO_HWACCEL_NONE 0x0000
404#define FBINFO_HWACCEL_COPYAREA 0x0100
405#define FBINFO_HWACCEL_FILLRECT 0x0200
406#define FBINFO_HWACCEL_IMAGEBLIT 0x0400
407#define FBINFO_HWACCEL_ROTATE 0x0800
408#define FBINFO_HWACCEL_XPAN 0x1000
409#define FBINFO_HWACCEL_YPAN 0x2000
410#define FBINFO_HWACCEL_YWRAP 0x4000
411
412#define FBINFO_MISC_USEREVENT 0x10000
413
414#define FBINFO_MISC_TILEBLITTING 0x20000
415
416
417
418
419
420
421
422
423
424
425
426#define FBINFO_MISC_ALWAYS_SETPAR 0x40000
427
428
429#define FBINFO_MISC_FIRMWARE 0x80000
430
431
432
433#define FBINFO_FOREIGN_ENDIAN 0x100000
434
435
436
437
438
439#define FBINFO_BE_MATH 0x100000
440
441
442
443#define FBINFO_CAN_FORCE_OUTPUT 0x200000
444
445struct fb_info {
446 atomic_t count;
447 int node;
448 int flags;
449 struct mutex lock;
450 struct mutex mm_lock;
451 struct fb_var_screeninfo var;
452 struct fb_fix_screeninfo fix;
453 struct fb_monspecs monspecs;
454 struct work_struct queue;
455 struct fb_pixmap pixmap;
456 struct fb_pixmap sprite;
457 struct fb_cmap cmap;
458 struct list_head modelist;
459 struct fb_videomode *mode;
460
461#ifdef CONFIG_FB_BACKLIGHT
462
463
464
465 struct backlight_device *bl_dev;
466
467
468 struct mutex bl_curve_mutex;
469 u8 bl_curve[FB_BACKLIGHT_LEVELS];
470#endif
471#ifdef CONFIG_FB_DEFERRED_IO
472 struct delayed_work deferred_work;
473 struct fb_deferred_io *fbdefio;
474#endif
475
476 struct fb_ops *fbops;
477 struct device *device;
478 struct device *dev;
479 int class_flag;
480#ifdef CONFIG_FB_TILEBLITTING
481 struct fb_tile_ops *tileops;
482#endif
483 char __iomem *screen_base;
484 unsigned long screen_size;
485 void *pseudo_palette;
486#define FBINFO_STATE_RUNNING 0
487#define FBINFO_STATE_SUSPENDED 1
488 u32 state;
489 void *fbcon_par;
490
491 void *par;
492
493
494
495 struct apertures_struct {
496 unsigned int count;
497 struct aperture {
498 resource_size_t base;
499 resource_size_t size;
500 } ranges[0];
501 } *apertures;
502};
503
504static inline struct apertures_struct *alloc_apertures(unsigned int max_num) {
505 struct apertures_struct *a = kzalloc(sizeof(struct apertures_struct)
506 + max_num * sizeof(struct aperture), GFP_KERNEL);
507 if (!a)
508 return NULL;
509 a->count = max_num;
510 return a;
511}
512
513#ifdef MODULE
514#define FBINFO_DEFAULT FBINFO_MODULE
515#else
516#define FBINFO_DEFAULT 0
517#endif
518
519
520#define FBINFO_FLAG_MODULE FBINFO_MODULE
521#define FBINFO_FLAG_DEFAULT FBINFO_DEFAULT
522
523
524
525
526
527
528
529#define STUPID_ACCELF_TEXT_SHIT
530
531
532#if defined(__sparc__)
533
534
535
536
537
538
539#define fb_readb sbus_readb
540#define fb_readw sbus_readw
541#define fb_readl sbus_readl
542#define fb_readq sbus_readq
543#define fb_writeb sbus_writeb
544#define fb_writew sbus_writew
545#define fb_writel sbus_writel
546#define fb_writeq sbus_writeq
547#define fb_memset sbus_memset_io
548#define fb_memcpy_fromfb sbus_memcpy_fromio
549#define fb_memcpy_tofb sbus_memcpy_toio
550
551#elif defined(__i386__) || defined(__alpha__) || defined(__x86_64__) || defined(__hppa__) || defined(__sh__) || defined(__powerpc__) || defined(__avr32__) || defined(__bfin__)
552
553#define fb_readb __raw_readb
554#define fb_readw __raw_readw
555#define fb_readl __raw_readl
556#define fb_readq __raw_readq
557#define fb_writeb __raw_writeb
558#define fb_writew __raw_writew
559#define fb_writel __raw_writel
560#define fb_writeq __raw_writeq
561#define fb_memset memset_io
562#define fb_memcpy_fromfb memcpy_fromio
563#define fb_memcpy_tofb memcpy_toio
564
565#else
566
567#define fb_readb(addr) (*(volatile u8 *) (addr))
568#define fb_readw(addr) (*(volatile u16 *) (addr))
569#define fb_readl(addr) (*(volatile u32 *) (addr))
570#define fb_readq(addr) (*(volatile u64 *) (addr))
571#define fb_writeb(b,addr) (*(volatile u8 *) (addr) = (b))
572#define fb_writew(b,addr) (*(volatile u16 *) (addr) = (b))
573#define fb_writel(b,addr) (*(volatile u32 *) (addr) = (b))
574#define fb_writeq(b,addr) (*(volatile u64 *) (addr) = (b))
575#define fb_memset memset
576#define fb_memcpy_fromfb memcpy
577#define fb_memcpy_tofb memcpy
578
579#endif
580
581#define FB_LEFT_POS(p, bpp) (fb_be_math(p) ? (32 - (bpp)) : 0)
582#define FB_SHIFT_HIGH(p, val, bits) (fb_be_math(p) ? (val) >> (bits) : \
583 (val) << (bits))
584#define FB_SHIFT_LOW(p, val, bits) (fb_be_math(p) ? (val) << (bits) : \
585 (val) >> (bits))
586
587
588
589
590
591extern int fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var);
592extern int fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var);
593extern int fb_blank(struct fb_info *info, int blank);
594extern void cfb_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
595extern void cfb_copyarea(struct fb_info *info, const struct fb_copyarea *area);
596extern void cfb_imageblit(struct fb_info *info, const struct fb_image *image);
597
598
599
600extern void sys_fillrect(struct fb_info *info, const struct fb_fillrect *rect);
601extern void sys_copyarea(struct fb_info *info, const struct fb_copyarea *area);
602extern void sys_imageblit(struct fb_info *info, const struct fb_image *image);
603extern ssize_t fb_sys_read(struct fb_info *info, char __user *buf,
604 size_t count, loff_t *ppos);
605extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
606 size_t count, loff_t *ppos);
607
608
609extern int register_framebuffer(struct fb_info *fb_info);
610extern int unregister_framebuffer(struct fb_info *fb_info);
611extern int unlink_framebuffer(struct fb_info *fb_info);
612extern void remove_conflicting_framebuffers(struct apertures_struct *a,
613 const char *name, bool primary);
614extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
615extern int fb_show_logo(struct fb_info *fb_info, int rotate);
616extern char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size);
617extern void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx,
618 u32 height, u32 shift_high, u32 shift_low, u32 mod);
619extern void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height);
620extern void fb_set_suspend(struct fb_info *info, int state);
621extern int fb_get_color_depth(struct fb_var_screeninfo *var,
622 struct fb_fix_screeninfo *fix);
623extern int fb_get_options(char *name, char **option);
624extern int fb_new_modelist(struct fb_info *info);
625
626extern struct fb_info *registered_fb[FB_MAX];
627extern int num_registered_fb;
628extern struct class *fb_class;
629
630extern int lock_fb_info(struct fb_info *info);
631
632static inline void unlock_fb_info(struct fb_info *info)
633{
634 mutex_unlock(&info->lock);
635}
636
637static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch,
638 u8 *src, u32 s_pitch, u32 height)
639{
640 int i, j;
641
642 d_pitch -= s_pitch;
643
644 for (i = height; i--; ) {
645
646 for (j = 0; j < s_pitch; j++)
647 *dst++ = *src++;
648 dst += d_pitch;
649 }
650}
651
652
653extern void fb_deferred_io_init(struct fb_info *info);
654extern void fb_deferred_io_open(struct fb_info *info,
655 struct inode *inode,
656 struct file *file);
657extern void fb_deferred_io_cleanup(struct fb_info *info);
658extern int fb_deferred_io_fsync(struct file *file, loff_t start,
659 loff_t end, int datasync);
660
661static inline bool fb_be_math(struct fb_info *info)
662{
663#ifdef CONFIG_FB_FOREIGN_ENDIAN
664#if defined(CONFIG_FB_BOTH_ENDIAN)
665 return info->flags & FBINFO_BE_MATH;
666#elif defined(CONFIG_FB_BIG_ENDIAN)
667 return true;
668#elif defined(CONFIG_FB_LITTLE_ENDIAN)
669 return false;
670#endif
671#else
672#ifdef __BIG_ENDIAN
673 return true;
674#else
675 return false;
676#endif
677#endif
678}
679
680
681extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
682extern void framebuffer_release(struct fb_info *info);
683extern int fb_init_device(struct fb_info *fb_info);
684extern void fb_cleanup_device(struct fb_info *head);
685extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
686
687
688#define FB_MAXTIMINGS 0
689#define FB_VSYNCTIMINGS 1
690#define FB_HSYNCTIMINGS 2
691#define FB_DCLKTIMINGS 3
692#define FB_IGNOREMON 0x100
693
694#define FB_MODE_IS_UNKNOWN 0
695#define FB_MODE_IS_DETAILED 1
696#define FB_MODE_IS_STANDARD 2
697#define FB_MODE_IS_VESA 4
698#define FB_MODE_IS_CALCULATED 8
699#define FB_MODE_IS_FIRST 16
700#define FB_MODE_IS_FROM_VAR 32
701
702extern int fbmon_dpms(const struct fb_info *fb_info);
703extern int fb_get_mode(int flags, u32 val, struct fb_var_screeninfo *var,
704 struct fb_info *info);
705extern int fb_validate_mode(const struct fb_var_screeninfo *var,
706 struct fb_info *info);
707extern int fb_parse_edid(unsigned char *edid, struct fb_var_screeninfo *var);
708extern const unsigned char *fb_firmware_edid(struct device *device);
709extern void fb_edid_to_monspecs(unsigned char *edid,
710 struct fb_monspecs *specs);
711extern void fb_edid_add_monspecs(unsigned char *edid,
712 struct fb_monspecs *specs);
713extern void fb_destroy_modedb(struct fb_videomode *modedb);
714extern int fb_find_mode_cvt(struct fb_videomode *mode, int margins, int rb);
715extern unsigned char *fb_ddc_read(struct i2c_adapter *adapter);
716
717
718#define VESA_MODEDB_SIZE 34
719extern void fb_var_to_videomode(struct fb_videomode *mode,
720 const struct fb_var_screeninfo *var);
721extern void fb_videomode_to_var(struct fb_var_screeninfo *var,
722 const struct fb_videomode *mode);
723extern int fb_mode_is_equal(const struct fb_videomode *mode1,
724 const struct fb_videomode *mode2);
725extern int fb_add_videomode(const struct fb_videomode *mode,
726 struct list_head *head);
727extern void fb_delete_videomode(const struct fb_videomode *mode,
728 struct list_head *head);
729extern const struct fb_videomode *fb_match_mode(const struct fb_var_screeninfo *var,
730 struct list_head *head);
731extern const struct fb_videomode *fb_find_best_mode(const struct fb_var_screeninfo *var,
732 struct list_head *head);
733extern const struct fb_videomode *fb_find_nearest_mode(const struct fb_videomode *mode,
734 struct list_head *head);
735extern void fb_destroy_modelist(struct list_head *head);
736extern void fb_videomode_to_modelist(const struct fb_videomode *modedb, int num,
737 struct list_head *head);
738extern const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs,
739 struct list_head *head);
740
741
742extern int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp);
743extern int fb_alloc_cmap_gfp(struct fb_cmap *cmap, int len, int transp, gfp_t flags);
744extern void fb_dealloc_cmap(struct fb_cmap *cmap);
745extern int fb_copy_cmap(const struct fb_cmap *from, struct fb_cmap *to);
746extern int fb_cmap_to_user(const struct fb_cmap *from, struct fb_cmap_user *to);
747extern int fb_set_cmap(struct fb_cmap *cmap, struct fb_info *fb_info);
748extern int fb_set_user_cmap(struct fb_cmap_user *cmap, struct fb_info *fb_info);
749extern const struct fb_cmap *fb_default_cmap(int len);
750extern void fb_invert_cmaps(void);
751
752struct fb_videomode {
753 const char *name;
754 u32 refresh;
755 u32 xres;
756 u32 yres;
757 u32 pixclock;
758 u32 left_margin;
759 u32 right_margin;
760 u32 upper_margin;
761 u32 lower_margin;
762 u32 hsync_len;
763 u32 vsync_len;
764 u32 sync;
765 u32 vmode;
766 u32 flag;
767};
768
769extern const char *fb_mode_option;
770extern const struct fb_videomode vesa_modes[];
771extern const struct fb_videomode cea_modes[64];
772
773struct fb_modelist {
774 struct list_head list;
775 struct fb_videomode mode;
776};
777
778extern int fb_find_mode(struct fb_var_screeninfo *var,
779 struct fb_info *info, const char *mode_option,
780 const struct fb_videomode *db,
781 unsigned int dbsize,
782 const struct fb_videomode *default_mode,
783 unsigned int default_bpp);
784
785#endif
786