modedb.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. modedb default video mode support
  2. Currently all frame buffer device drivers have their own video mode databases,
  3. which is a mess and a waste of resources. The main idea of modedb is to have
  4.   - one routine to probe for video modes, which can be used by all frame buffer
  5.     devices
  6.   - one generic video mode database with a fair amount of standard videomodes
  7.     (taken from XFree86)
  8.   - the possibility to supply your own mode database for graphics hardware that
  9.     needs non-standard modes, like amifb and Mac frame buffer drivers (which
  10.     use macmodes.c)
  11. When a frame buffer device receives a video= option it doesn't know, it should
  12. consider that to be a video mode option. If no frame buffer device is specified
  13. in a video= option, fbmem considers that to be a global video mode option.
  14. Valid mode specifiers (mode_option argument):
  15.     <xres>x<yres>[-<bpp>][@<refresh>]
  16.     <name>[-<bpp>][@<refresh>]
  17. with <xres>, <yres>, <bpp> and <refresh> decimal numbers and <name> a string.
  18. Things between square brackets are optional.
  19. To find a suitable video mode, you just call
  20. int __init fb_find_mode(struct fb_var_screeninfo *var,
  21.                         struct fb_info *info, const char *mode_option,
  22.                         const struct fb_videomode *db, unsigned int dbsize,
  23.                         const struct fb_videomode *default_mode,
  24.                         unsigned int default_bpp)
  25. with db/dbsize your non-standard video mode database, or NULL to use the
  26. standard video mode database.
  27. fb_find_mode() first tries the specified video mode (or any mode that matches,
  28. e.g. there can be multiple 640x480 modes, each of them is tried). If that
  29. fails, the default mode is tried. If that fails, it walks over all modes.
  30. To specify a video mode at bootup, use the following boot options:
  31.     video=<driver>:<xres>x<yres>[-<bpp>][@refresh]
  32. where <driver> is a name from the table below.  Valid default modes can be
  33. found in linux/drivers/video/modedb.c.  Check your driver's documentation.
  34. There may be more modes.
  35.     Drivers that support modedb boot options
  36.     Boot Name   Cards Supported
  37.     ami - Amiga chipset frame buffer
  38.     aty128fb - ATI Rage128 / Pro frame buffer
  39.     atyfb - ATI Mach64 frame buffer
  40.     tdfx - 3D Fx frame buffer
  41. BTW, only a few drivers use this at the moment. Others are to follow
  42. (feel free to send patches).