pvr2fb.txt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. $Id: pvr2fb.txt,v 1.1 2001/05/24 05:09:16 mrbrown Exp $
  2. What is pvr2fb?
  3. ===============
  4. This is a driver for PowerVR 2 based graphics frame buffers, such as the
  5. one found in the Dreamcast.
  6. Advantages:
  7. * It provides a nice large console (128 cols + 48 lines with 1024x768)
  8. without using tiny, unreadable fonts (NOT on the Dreamcast)
  9. * You can run XF86_FBDev on top of /dev/fb0
  10. * Most important: boot logo :-)
  11. Disadvantages:
  12. * Driver is largely untested on non-Dreamcast systems.
  13. Configuration
  14. =============
  15. You can pass kernel command line options to pvr2fb with
  16. `video=pvr2fb:option1,option2:value2,option3' (multiple options should be
  17. separated by comma, values are separated from options by `:').
  18. Accepted options:
  19. font:X - default font to use. All fonts are supported, including the
  20. SUN12x22 font which is very nice at high resolutions.
  21. mode:X - default video mode with format [xres]x[yres]-<bpp>@<refresh rate>
  22. The following video modes are supported:
  23. 640x640-16@60, 640x480-24@60, 640x480-32@60. The Dreamcast
  24. defaults to 640x480-16@60. At the time of writing the
  25. 24bpp and 32bpp modes function poorly. Work to fix that is
  26. ongoing
  27. Note: the 640x240 mode is currently broken, and should not be
  28. used for any reason. It is only mentioned here as a reference.
  29. inverse - invert colors on screen (for LCD displays)
  30. nomtrr - disables write combining on frame buffer. This slows down driver
  31. but there is reported minor incompatibility between GUS DMA and
  32. XFree under high loads if write combining is enabled (sound
  33. dropouts). MTRR is enabled by default on systems that have it
  34. configured and that support it.
  35. cable:X - cable type. This can be any of the following: vga, rgb, and
  36. composite. If none is specified, we guess.
  37. output:X - output type. This can be any of the following: pal, ntsc, and
  38. vga. If none is specified, we guess.
  39. X11
  40. ===
  41. XF86_FBDev has been shown to work on the Dreamcast in the past - though not yet
  42. on any 2.6 series kernel.
  43. --
  44. Paul Mundt <lethal@linuxdc.org>
  45. Updated by Adrian McMenamin <adrian@mcmen.demon.co.uk>