arkfb.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. arkfb - fbdev driver for ARK Logic chips
  2. ========================================
  3. Supported Hardware
  4. ==================
  5. ARK 2000PV chip
  6. ICS 5342 ramdac
  7. - only BIOS initialized VGA devices supported
  8. - probably not working on big endian
  9. Supported Features
  10. ==================
  11. * 4 bpp pseudocolor modes (with 18bit palette, two variants)
  12. * 8 bpp pseudocolor mode (with 18bit palette)
  13. * 16 bpp truecolor modes (RGB 555 and RGB 565)
  14. * 24 bpp truecolor mode (RGB 888)
  15. * 32 bpp truecolor mode (RGB 888)
  16. * text mode (activated by bpp = 0)
  17. * doublescan mode variant (not available in text mode)
  18. * panning in both directions
  19. * suspend/resume support
  20. Text mode is supported even in higher resolutions, but there is limitation to
  21. lower pixclocks (i got maximum about 70 MHz, it is dependent on specific
  22. hardware). This limitation is not enforced by driver. Text mode supports 8bit
  23. wide fonts only (hardware limitation) and 16bit tall fonts (driver
  24. limitation). Unfortunately character attributes (like color) in text mode are
  25. broken for unknown reason, so its usefulness is limited.
  26. There are two 4 bpp modes. First mode (selected if nonstd == 0) is mode with
  27. packed pixels, high nibble first. Second mode (selected if nonstd == 1) is mode
  28. with interleaved planes (1 byte interleave), MSB first. Both modes support
  29. 8bit wide fonts only (driver limitation).
  30. Suspend/resume works on systems that initialize video card during resume and
  31. if device is active (for example used by fbcon).
  32. Missing Features
  33. ================
  34. (alias TODO list)
  35. * secondary (not initialized by BIOS) device support
  36. * big endian support
  37. * DPMS support
  38. * MMIO support
  39. * interlaced mode variant
  40. * support for fontwidths != 8 in 4 bpp modes
  41. * support for fontheight != 16 in text mode
  42. * hardware cursor
  43. * vsync synchronization
  44. * feature connector support
  45. * acceleration support (8514-like 2D)
  46. Known bugs
  47. ==========
  48. * character attributes (and cursor) in text mode are broken
  49. --
  50. Ondrej Zajicek <santiago@crfreenet.org>