vt8623fb.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. vt8623fb - fbdev driver for graphics core in VIA VT8623 chipset
  2. ===============================================================
  3. Supported Hardware
  4. ==================
  5. VIA VT8623 [CLE266] chipset and its graphics core
  6. (known as CastleRock or Unichrome)
  7. I tested vt8623fb on VIA EPIA ML-6000
  8. Supported Features
  9. ==================
  10. * 4 bpp pseudocolor modes (with 18bit palette, two variants)
  11. * 8 bpp pseudocolor mode (with 18bit palette)
  12. * 16 bpp truecolor mode (RGB 565)
  13. * 32 bpp truecolor mode (RGB 888)
  14. * text mode (activated by bpp = 0)
  15. * doublescan mode variant (not available in text mode)
  16. * panning in both directions
  17. * suspend/resume support
  18. * DPMS support
  19. Text mode is supported even in higher resolutions, but there is limitation to
  20. lower pixclocks (maximum about 100 MHz). This limitation is not enforced by
  21. driver. Text mode supports 8bit wide fonts only (hardware limitation) and
  22. 16bit tall fonts (driver limitation).
  23. There are two 4 bpp modes. First mode (selected if nonstd == 0) is mode with
  24. packed pixels, high nibble first. Second mode (selected if nonstd == 1) is mode
  25. with interleaved planes (1 byte interleave), MSB first. Both modes support
  26. 8bit wide fonts only (driver limitation).
  27. Suspend/resume works on systems that initialize video card during resume and
  28. if device is active (for example used by fbcon).
  29. Missing Features
  30. ================
  31. (alias TODO list)
  32. * secondary (not initialized by BIOS) device support
  33. * MMIO support
  34. * interlaced mode variant
  35. * support for fontwidths != 8 in 4 bpp modes
  36. * support for fontheight != 16 in text mode
  37. * hardware cursor
  38. * video overlay support
  39. * vsync synchronization
  40. * acceleration support (8514-like 2D, busmaster transfers)
  41. Known bugs
  42. ==========
  43. * cursor disable in text mode doesn't work
  44. --
  45. Ondrej Zajicek <santiago@crfreenet.org>