Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_LX
  11. tristate "AMD Geode LX framebuffer support (EXPERIMENTAL)"
  12. depends on FB && FB_GEODE
  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 LX processors.
  19. To compile this driver as a module, choose M here: the module will
  20. be called lxfb.
  21. If unsure, say N.
  22. config FB_GEODE_GX
  23. tristate "AMD Geode GX framebuffer support (EXPERIMENTAL)"
  24. depends on FB && FB_GEODE && EXPERIMENTAL
  25. select FB_CFB_FILLRECT
  26. select FB_CFB_COPYAREA
  27. select FB_CFB_IMAGEBLIT
  28. ---help---
  29. Framebuffer driver for the display controller integrated into the
  30. AMD Geode GX processors.
  31. To compile this driver as a module, choose M here: the module will be
  32. called gxfb.
  33. If unsure, say N.
  34. config FB_GEODE_GX_SET_FBSIZE
  35. bool "Manually specify the Geode GX framebuffer size"
  36. depends on FB_GEODE_GX
  37. default n
  38. ---help---
  39. If you want to manually specify the size of your GX framebuffer,
  40. say Y here, otherwise say N to dynamically probe it.
  41. Say N unless you know what you are doing.
  42. config FB_GEODE_GX_FBSIZE
  43. hex "Size of the GX framebuffer, in bytes"
  44. depends on FB_GEODE_GX_SET_FBSIZE
  45. default "0x1600000"
  46. ---help---
  47. Specify the size of the GX framebuffer. Normally, you will
  48. want this to be MB aligned. Common values are 0x80000 (8MB)
  49. and 0x1600000 (16MB). Don't change this unless you know what
  50. you are doing
  51. config FB_GEODE_GX1
  52. tristate "AMD Geode GX1 framebuffer support (EXPERIMENTAL)"
  53. depends on FB && FB_GEODE && EXPERIMENTAL
  54. select FB_CFB_FILLRECT
  55. select FB_CFB_COPYAREA
  56. select FB_CFB_IMAGEBLIT
  57. ---help---
  58. Framebuffer driver for the display controller integrated into the
  59. AMD Geode GX1 processor.
  60. To compile this driver as a module, choose M here: the module will be
  61. called gx1fb.
  62. If unsure, say N.