Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # Geode family framebuffer configuration
  3. #
  4. config FB_GEODE
  5. bool "AMD Geode family framebuffer support (EXPERIMENTAL)"
  6. depends on FB && PCI && EXPERIMENTAL && X86
  7. ---help---
  8. Say 'Y' here to allow you to select framebuffer drivers for
  9. the AMD Geode family of processors.
  10. config FB_GEODE_GX
  11. tristate "AMD Geode GX framebuffer support (EXPERIMENTAL)"
  12. depends on FB && FB_GEODE && EXPERIMENTAL
  13. select FB_CFB_FILLRECT
  14. select FB_CFB_COPYAREA
  15. select FB_CFB_IMAGEBLIT
  16. ---help---
  17. Framebuffer driver for the display controller integrated into the
  18. AMD Geode GX processors.
  19. To compile this driver as a module, choose M here: the module will be
  20. called gxfb.
  21. If unsure, say N.
  22. config FB_GEODE_GX_SET_FBSIZE
  23. bool "Manually specify the Geode GX framebuffer size"
  24. depends on FB_GEODE_GX
  25. default n
  26. ---help---
  27. If you want to manually specify the size of your GX framebuffer,
  28. say Y here, otherwise say N to dynamically probe it.
  29. Say N unless you know what you are doing.
  30. config FB_GEODE_GX_FBSIZE
  31. hex "Size of the GX framebuffer, in bytes"
  32. depends on FB_GEODE_GX_SET_FBSIZE
  33. default "0x1600000"
  34. ---help---
  35. Specify the size of the GX framebuffer. Normally, you will
  36. want this to be MB aligned. Common values are 0x80000 (8MB)
  37. and 0x1600000 (16MB). Don't change this unless you know what
  38. you are doing
  39. config FB_GEODE_GX1
  40. tristate "AMD Geode GX1 framebuffer support (EXPERIMENTAL)"
  41. depends on FB && FB_GEODE && EXPERIMENTAL
  42. select FB_CFB_FILLRECT
  43. select FB_CFB_COPYAREA
  44. select FB_CFB_IMAGEBLIT
  45. ---help---
  46. Framebuffer driver for the display controller integrated into the
  47. AMD Geode GX1 processor.
  48. To compile this driver as a module, choose M here: the module will be
  49. called gx1fb.
  50. If unsure, say N.