diff options
| author | James Simmons <jsimmons@kozmo.(none)> | 2003-04-09 21:20:26 -0700 |
|---|---|---|
| committer | James Simmons <jsimmons@kozmo.(none)> | 2003-04-09 21:20:26 -0700 |
| commit | f31521dd9b824bb4635c2f5bf689b18fc6c0f2d6 (patch) | |
| tree | 6fda1d1a95ebeda3bee9e958145d0515b53638d2 /include/linux | |
| parent | 32f5ad40c868b3e3a6a4ee65340ced6f899e3fe0 (diff) | |
[FBDEV] EDID support from OpenFirmware on PPC platoforms and from the BIOS on intel platforms.
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fb.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index 5815d65d630b..654e85f12a16 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h @@ -504,6 +504,15 @@ extern int fb_get_mode(int flags, u32 val, struct fb_var_screeninfo *var, struct fb_info *info); extern int fb_validate_mode(struct fb_var_screeninfo *var, struct fb_info *info); +extern int parse_edid(unsigned char *edid, struct fb_var_screeninfo *var); +extern int fb_get_monitor_limits(unsigned char *edid, struct fb_monspecs *specs); +extern struct fb_videomode *fb_create_modedb(unsigned char *edid, int *dbsize); +extern void fb_destroy_modedb(struct fb_videomode *modedb); +extern void show_edid(unsigned char *edid); + +/* drivers/video/modedb.c */ +#define VESA_MODEDB_SIZE 34 +extern const struct fb_videomode vesa_modes[]; /* drivers/video/fbcmap.c */ extern int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp); |
