Kconfig 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. #
  2. # Video configuration
  3. #
  4. menu "Graphics support"
  5. depends on HAS_IOMEM
  6. config HAVE_FB_ATMEL
  7. bool
  8. config SH_MIPI_DSI
  9. tristate
  10. depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
  11. config SH_LCD_MIPI_DSI
  12. bool
  13. source "drivers/char/agp/Kconfig"
  14. source "drivers/gpu/vga/Kconfig"
  15. source "drivers/gpu/drm/Kconfig"
  16. source "drivers/gpu/stub/Kconfig"
  17. source "drivers/gpu/ion/Kconfig"
  18. config VGASTATE
  19. tristate
  20. default n
  21. config VIDEO_OUTPUT_CONTROL
  22. tristate "Lowlevel video output switch controls"
  23. help
  24. This framework adds support for low-level control of the video
  25. output switch.
  26. menuconfig FB
  27. tristate "Support for frame buffer devices"
  28. ---help---
  29. The frame buffer device provides an abstraction for the graphics
  30. hardware. It represents the frame buffer of some video hardware and
  31. allows application software to access the graphics hardware through
  32. a well-defined interface, so the software doesn't need to know
  33. anything about the low-level (hardware register) stuff.
  34. Frame buffer devices work identically across the different
  35. architectures supported by Linux and make the implementation of
  36. application programs easier and more portable; at this point, an X
  37. server exists which uses the frame buffer device exclusively.
  38. On several non-X86 architectures, the frame buffer device is the
  39. only way to use the graphics hardware.
  40. The device is accessed through special device nodes, usually located
  41. in the /dev directory, i.e. /dev/fb*.
  42. You need an utility program called fbset to make full use of frame
  43. buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  44. and the Framebuffer-HOWTO at
  45. <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
  46. information.
  47. Say Y here and to the driver for your graphics board below if you
  48. are compiling a kernel for a non-x86 architecture.
  49. If you are compiling for the x86 architecture, you can say Y if you
  50. want to play with it, but it is not essential. Please note that
  51. running graphical applications that directly touch the hardware
  52. (e.g. an accelerated X server) and that are not frame buffer
  53. device-aware may cause unexpected results. If unsure, say N.
  54. config FIRMWARE_EDID
  55. bool "Enable firmware EDID"
  56. depends on FB
  57. default n
  58. ---help---
  59. This enables access to the EDID transferred from the firmware.
  60. On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  61. transfers do not work for your driver and if you are using
  62. nvidiafb, i810fb or savagefb.
  63. In general, choosing Y for this option is safe. If you
  64. experience extremely long delays while booting before you get
  65. something on your display, try setting this to N. Matrox cards in
  66. combination with certain motherboards and monitors are known to
  67. suffer from this problem.
  68. config FB_DDC
  69. tristate
  70. depends on FB
  71. select I2C_ALGOBIT
  72. select I2C
  73. default n
  74. config FB_BOOT_VESA_SUPPORT
  75. bool
  76. depends on FB
  77. default n
  78. ---help---
  79. If true, at least one selected framebuffer driver can take advantage
  80. of VESA video modes set at an early boot stage via the vga= parameter.
  81. config FB_CFB_FILLRECT
  82. tristate
  83. depends on FB
  84. default n
  85. ---help---
  86. Include the cfb_fillrect function for generic software rectangle
  87. filling. This is used by drivers that don't provide their own
  88. (accelerated) version.
  89. config FB_CFB_COPYAREA
  90. tristate
  91. depends on FB
  92. default n
  93. ---help---
  94. Include the cfb_copyarea function for generic software area copying.
  95. This is used by drivers that don't provide their own (accelerated)
  96. version.
  97. config FB_CFB_IMAGEBLIT
  98. tristate
  99. depends on FB
  100. default n
  101. ---help---
  102. Include the cfb_imageblit function for generic software image
  103. blitting. This is used by drivers that don't provide their own
  104. (accelerated) version.
  105. config FB_CFB_REV_PIXELS_IN_BYTE
  106. bool
  107. depends on FB
  108. default n
  109. ---help---
  110. Allow generic frame-buffer functions to work on displays with 1, 2
  111. and 4 bits per pixel depths which has opposite order of pixels in
  112. byte order to bytes in long order.
  113. config FB_SYS_FILLRECT
  114. tristate
  115. depends on FB
  116. default n
  117. ---help---
  118. Include the sys_fillrect function for generic software rectangle
  119. filling. This is used by drivers that don't provide their own
  120. (accelerated) version and the framebuffer is in system RAM.
  121. config FB_SYS_COPYAREA
  122. tristate
  123. depends on FB
  124. default n
  125. ---help---
  126. Include the sys_copyarea function for generic software area copying.
  127. This is used by drivers that don't provide their own (accelerated)
  128. version and the framebuffer is in system RAM.
  129. config FB_SYS_IMAGEBLIT
  130. tristate
  131. depends on FB
  132. default n
  133. ---help---
  134. Include the sys_imageblit function for generic software image
  135. blitting. This is used by drivers that don't provide their own
  136. (accelerated) version and the framebuffer is in system RAM.
  137. menuconfig FB_FOREIGN_ENDIAN
  138. bool "Framebuffer foreign endianness support"
  139. depends on FB
  140. ---help---
  141. This menu will let you enable support for the framebuffers with
  142. non-native endianness (e.g. Little-Endian framebuffer on a
  143. Big-Endian machine). Most probably you don't have such hardware,
  144. so it's safe to say "n" here.
  145. choice
  146. prompt "Choice endianness support"
  147. depends on FB_FOREIGN_ENDIAN
  148. config FB_BOTH_ENDIAN
  149. bool "Support for Big- and Little-Endian framebuffers"
  150. config FB_BIG_ENDIAN
  151. bool "Support for Big-Endian framebuffers only"
  152. config FB_LITTLE_ENDIAN
  153. bool "Support for Little-Endian framebuffers only"
  154. endchoice
  155. config FB_SYS_FOPS
  156. tristate
  157. depends on FB
  158. default n
  159. config FB_WMT_GE_ROPS
  160. tristate
  161. depends on FB
  162. default n
  163. ---help---
  164. Include functions for accelerated rectangle filling and area
  165. copying using WonderMedia Graphics Engine operations.
  166. config FB_DEFERRED_IO
  167. bool
  168. depends on FB
  169. config FB_HECUBA
  170. tristate
  171. depends on FB
  172. depends on FB_DEFERRED_IO
  173. config FB_SVGALIB
  174. tristate
  175. depends on FB
  176. default n
  177. ---help---
  178. Common utility functions useful to fbdev drivers of VGA-based
  179. cards.
  180. config FB_MACMODES
  181. tristate
  182. depends on FB
  183. default n
  184. config FB_BACKLIGHT
  185. bool
  186. depends on FB
  187. select BACKLIGHT_LCD_SUPPORT
  188. select BACKLIGHT_CLASS_DEVICE
  189. default n
  190. config FB_MODE_HELPERS
  191. bool "Enable Video Mode Handling Helpers"
  192. depends on FB
  193. default n
  194. ---help---
  195. This enables functions for handling video modes using the
  196. Generalized Timing Formula and the EDID parser. A few drivers rely
  197. on this feature such as the radeonfb, rivafb, and the i810fb. If
  198. your driver does not take advantage of this feature, choosing Y will
  199. just increase the kernel size by about 5K.
  200. config FB_TILEBLITTING
  201. bool "Enable Tile Blitting Support"
  202. depends on FB
  203. default n
  204. ---help---
  205. This enables tile blitting. Tile blitting is a drawing technique
  206. where the screen is divided into rectangular sections (tiles), whereas
  207. the standard blitting divides the screen into pixels. Because the
  208. default drawing element is a tile, drawing functions will be passed
  209. parameters in terms of number of tiles instead of number of pixels.
  210. For example, to draw a single character, instead of using bitmaps,
  211. an index to an array of bitmaps will be used. To clear or move a
  212. rectangular section of a screen, the rectangle will be described in
  213. terms of number of tiles in the x- and y-axis.
  214. This is particularly important to one driver, matroxfb. If
  215. unsure, say N.
  216. comment "Frame buffer hardware drivers"
  217. depends on FB
  218. config FB_CIRRUS
  219. tristate "Cirrus Logic support"
  220. depends on FB && (ZORRO || PCI)
  221. select FB_CFB_FILLRECT
  222. select FB_CFB_COPYAREA
  223. select FB_CFB_IMAGEBLIT
  224. ---help---
  225. This enables support for Cirrus Logic GD542x/543x based boards on
  226. Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  227. If you have a PCI-based system, this enables support for these
  228. chips: GD-543x, GD-544x, GD-5480.
  229. Please read the file <file:Documentation/fb/cirrusfb.txt>.
  230. Say N unless you have such a graphics board or plan to get one
  231. before you next recompile the kernel.
  232. config FB_PM2
  233. tristate "Permedia2 support"
  234. depends on FB && ((AMIGA && BROKEN) || PCI)
  235. select FB_CFB_FILLRECT
  236. select FB_CFB_COPYAREA
  237. select FB_CFB_IMAGEBLIT
  238. help
  239. This is the frame buffer device driver for cards based on
  240. the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
  241. The driver was tested on the following cards:
  242. Diamond FireGL 1000 PRO AGP
  243. ELSA Gloria Synergy PCI
  244. Appian Jeronimo PRO (both heads) PCI
  245. 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
  246. Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
  247. ASK Graphic Blaster Exxtreme AGP
  248. To compile this driver as a module, choose M here: the
  249. module will be called pm2fb.
  250. config FB_PM2_FIFO_DISCONNECT
  251. bool "enable FIFO disconnect feature"
  252. depends on FB_PM2 && PCI
  253. help
  254. Support the Permedia2 FIFO disconnect feature.
  255. config FB_ARMCLCD
  256. tristate "ARM PrimeCell PL110 support"
  257. depends on FB && ARM && ARM_AMBA
  258. select FB_CFB_FILLRECT
  259. select FB_CFB_COPYAREA
  260. select FB_CFB_IMAGEBLIT
  261. help
  262. This framebuffer device driver is for the ARM PrimeCell PL110
  263. Colour LCD controller. ARM PrimeCells provide the building
  264. blocks for System on a Chip devices.
  265. If you want to compile this as a module (=code which can be
  266. inserted into and removed from the running kernel), say M
  267. here and read <file:Documentation/kbuild/modules.txt>. The module
  268. will be called amba-clcd.
  269. config FB_ACORN
  270. bool "Acorn VIDC support"
  271. depends on (FB = y) && ARM && ARCH_ACORN
  272. select FB_CFB_FILLRECT
  273. select FB_CFB_COPYAREA
  274. select FB_CFB_IMAGEBLIT
  275. help
  276. This is the frame buffer device driver for the Acorn VIDC graphics
  277. hardware found in Acorn RISC PCs and other ARM-based machines. If
  278. unsure, say N.
  279. config FB_CLPS711X
  280. bool "CLPS711X LCD support"
  281. depends on (FB = y) && ARM && ARCH_CLPS711X
  282. select FB_CFB_FILLRECT
  283. select FB_CFB_COPYAREA
  284. select FB_CFB_IMAGEBLIT
  285. help
  286. Say Y to enable the Framebuffer driver for the CLPS7111 and
  287. EP7212 processors.
  288. config FB_SA1100
  289. bool "SA-1100 LCD support"
  290. depends on (FB = y) && ARM && ARCH_SA1100
  291. select FB_CFB_FILLRECT
  292. select FB_CFB_COPYAREA
  293. select FB_CFB_IMAGEBLIT
  294. help
  295. This is a framebuffer device for the SA-1100 LCD Controller.
  296. See <http://www.linux-fbdev.org/> for information on framebuffer
  297. devices.
  298. If you plan to use the LCD display with your SA-1100 system, say
  299. Y here.
  300. config FB_IMX
  301. tristate "Freescale i.MX LCD support"
  302. depends on FB && IMX_HAVE_PLATFORM_IMX_FB
  303. select FB_CFB_FILLRECT
  304. select FB_CFB_COPYAREA
  305. select FB_CFB_IMAGEBLIT
  306. config FB_CYBER2000
  307. tristate "CyberPro 2000/2010/5000 support"
  308. depends on FB && PCI && (BROKEN || !SPARC64)
  309. select FB_CFB_FILLRECT
  310. select FB_CFB_COPYAREA
  311. select FB_CFB_IMAGEBLIT
  312. help
  313. This enables support for the Integraphics CyberPro 20x0 and 5000
  314. VGA chips used in the Rebel.com Netwinder and other machines.
  315. Say Y if you have a NetWinder or a graphics card containing this
  316. device, otherwise say N.
  317. config FB_CYBER2000_DDC
  318. bool "DDC for CyberPro support"
  319. depends on FB_CYBER2000
  320. select FB_DDC
  321. default y
  322. help
  323. Say Y here if you want DDC support for your CyberPro graphics
  324. card. This is only I2C bus support, driver does not use EDID.
  325. config FB_CYBER2000_I2C
  326. bool "CyberPro 2000/2010/5000 I2C support"
  327. depends on FB_CYBER2000 && I2C && ARCH_NETWINDER
  328. select I2C_ALGOBIT
  329. help
  330. Enable support for the I2C video decoder interface on the
  331. Integraphics CyberPro 20x0 and 5000 VGA chips. This is used
  332. on the Netwinder machines for the SAA7111 video capture.
  333. config FB_APOLLO
  334. bool
  335. depends on (FB = y) && APOLLO
  336. default y
  337. select FB_CFB_FILLRECT
  338. select FB_CFB_IMAGEBLIT
  339. config FB_Q40
  340. bool
  341. depends on (FB = y) && Q40
  342. default y
  343. select FB_CFB_FILLRECT
  344. select FB_CFB_COPYAREA
  345. select FB_CFB_IMAGEBLIT
  346. config FB_AMIGA
  347. tristate "Amiga native chipset support"
  348. depends on FB && AMIGA
  349. help
  350. This is the frame buffer device driver for the builtin graphics
  351. chipset found in Amigas.
  352. To compile this driver as a module, choose M here: the
  353. module will be called amifb.
  354. config FB_AMIGA_OCS
  355. bool "Amiga OCS chipset support"
  356. depends on FB_AMIGA
  357. help
  358. This enables support for the original Agnus and Denise video chips,
  359. found in the Amiga 1000 and most A500's and A2000's. If you intend
  360. to run Linux on any of these systems, say Y; otherwise say N.
  361. config FB_AMIGA_ECS
  362. bool "Amiga ECS chipset support"
  363. depends on FB_AMIGA
  364. help
  365. This enables support for the Enhanced Chip Set, found in later
  366. A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  367. you intend to run Linux on any of these systems, say Y; otherwise
  368. say N.
  369. config FB_AMIGA_AGA
  370. bool "Amiga AGA chipset support"
  371. depends on FB_AMIGA
  372. help
  373. This enables support for the Advanced Graphics Architecture (also
  374. known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  375. and CD32. If you intend to run Linux on any of these systems, say Y;
  376. otherwise say N.
  377. config FB_FM2
  378. bool "Amiga FrameMaster II/Rainbow II support"
  379. depends on (FB = y) && ZORRO
  380. select FB_CFB_FILLRECT
  381. select FB_CFB_COPYAREA
  382. select FB_CFB_IMAGEBLIT
  383. help
  384. This is the frame buffer device driver for the Amiga FrameMaster
  385. card from BSC (exhibited 1992 but not shipped as a CBM product).
  386. config FB_ARC
  387. tristate "Arc Monochrome LCD board support"
  388. depends on FB && X86
  389. select FB_SYS_FILLRECT
  390. select FB_SYS_COPYAREA
  391. select FB_SYS_IMAGEBLIT
  392. select FB_SYS_FOPS
  393. help
  394. This enables support for the Arc Monochrome LCD board. The board
  395. is based on the KS-108 lcd controller and is typically a matrix
  396. of 2*n chips. This driver was tested with a 128x64 panel. This
  397. driver supports it for use with x86 SBCs through a 16 bit GPIO
  398. interface (8 bit data, 8 bit control). If you anticipate using
  399. this driver, say Y or M; otherwise say N. You must specify the
  400. GPIO IO address to be used for setting control and data.
  401. config FB_ATARI
  402. bool "Atari native chipset support"
  403. depends on (FB = y) && ATARI
  404. select FB_CFB_FILLRECT
  405. select FB_CFB_COPYAREA
  406. select FB_CFB_IMAGEBLIT
  407. help
  408. This is the frame buffer device driver for the builtin graphics
  409. chipset found in Ataris.
  410. config FB_OF
  411. bool "Open Firmware frame buffer device support"
  412. depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
  413. select FB_CFB_FILLRECT
  414. select FB_CFB_COPYAREA
  415. select FB_CFB_IMAGEBLIT
  416. select FB_MACMODES
  417. help
  418. Say Y if you want support with Open Firmware for your graphics
  419. board.
  420. config FB_CONTROL
  421. bool "Apple \"control\" display support"
  422. depends on (FB = y) && PPC_PMAC && PPC32
  423. select FB_CFB_FILLRECT
  424. select FB_CFB_COPYAREA
  425. select FB_CFB_IMAGEBLIT
  426. select FB_MACMODES
  427. help
  428. This driver supports a frame buffer for the graphics adapter in the
  429. Power Macintosh 7300 and others.
  430. config FB_PLATINUM
  431. bool "Apple \"platinum\" display support"
  432. depends on (FB = y) && PPC_PMAC && PPC32
  433. select FB_CFB_FILLRECT
  434. select FB_CFB_COPYAREA
  435. select FB_CFB_IMAGEBLIT
  436. select FB_MACMODES
  437. help
  438. This driver supports a frame buffer for the "platinum" graphics
  439. adapter in some Power Macintoshes.
  440. config FB_VALKYRIE
  441. bool "Apple \"valkyrie\" display support"
  442. depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
  443. select FB_CFB_FILLRECT
  444. select FB_CFB_COPYAREA
  445. select FB_CFB_IMAGEBLIT
  446. select FB_MACMODES
  447. help
  448. This driver supports a frame buffer for the "valkyrie" graphics
  449. adapter in some Power Macintoshes.
  450. config FB_CT65550
  451. bool "Chips 65550 display support"
  452. depends on (FB = y) && PPC32 && PCI
  453. select FB_CFB_FILLRECT
  454. select FB_CFB_COPYAREA
  455. select FB_CFB_IMAGEBLIT
  456. help
  457. This is the frame buffer device driver for the Chips & Technologies
  458. 65550 graphics chip in PowerBooks.
  459. config FB_ASILIANT
  460. bool "Asiliant (Chips) 69000 display support"
  461. depends on (FB = y) && PCI
  462. select FB_CFB_FILLRECT
  463. select FB_CFB_COPYAREA
  464. select FB_CFB_IMAGEBLIT
  465. help
  466. This is the frame buffer device driver for the Asiliant 69030 chipset
  467. config FB_IMSTT
  468. bool "IMS Twin Turbo display support"
  469. depends on (FB = y) && PCI
  470. select FB_CFB_IMAGEBLIT
  471. select FB_MACMODES if PPC
  472. help
  473. The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  474. many Macintosh and compatible computers.
  475. config FB_VGA16
  476. tristate "VGA 16-color graphics support"
  477. depends on FB && (X86 || PPC)
  478. select FB_CFB_FILLRECT
  479. select FB_CFB_COPYAREA
  480. select FB_CFB_IMAGEBLIT
  481. select VGASTATE
  482. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  483. help
  484. This is the frame buffer device driver for VGA 16 color graphic
  485. cards. Say Y if you have such a card.
  486. To compile this driver as a module, choose M here: the
  487. module will be called vga16fb.
  488. config FB_BF54X_LQ043
  489. tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
  490. depends on FB && (BF54x) && !BF542
  491. select FB_CFB_FILLRECT
  492. select FB_CFB_COPYAREA
  493. select FB_CFB_IMAGEBLIT
  494. help
  495. This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
  496. config FB_BFIN_T350MCQB
  497. tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
  498. depends on FB && BLACKFIN
  499. select BFIN_GPTIMERS
  500. select FB_CFB_FILLRECT
  501. select FB_CFB_COPYAREA
  502. select FB_CFB_IMAGEBLIT
  503. help
  504. This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
  505. This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
  506. It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
  507. config FB_BFIN_LQ035Q1
  508. tristate "SHARP LQ035Q1DH02 TFT LCD"
  509. depends on FB && BLACKFIN && SPI
  510. select FB_CFB_FILLRECT
  511. select FB_CFB_COPYAREA
  512. select FB_CFB_IMAGEBLIT
  513. select BFIN_GPTIMERS
  514. help
  515. This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
  516. the Blackfin Landscape LCD EZ-Extender Card.
  517. This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
  518. It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
  519. To compile this driver as a module, choose M here: the
  520. module will be called bfin-lq035q1-fb.
  521. config FB_BF537_LQ035
  522. tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
  523. depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
  524. select FB_CFB_FILLRECT
  525. select FB_CFB_COPYAREA
  526. select FB_CFB_IMAGEBLIT
  527. select BFIN_GPTIMERS
  528. help
  529. This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
  530. attached to a BF537.
  531. To compile this driver as a module, choose M here: the
  532. module will be called bf537-lq035.
  533. config FB_BFIN_7393
  534. tristate "Blackfin ADV7393 Video encoder"
  535. depends on FB && BLACKFIN
  536. select I2C
  537. select FB_CFB_FILLRECT
  538. select FB_CFB_COPYAREA
  539. select FB_CFB_IMAGEBLIT
  540. help
  541. This is the framebuffer device for a ADV7393 video encoder
  542. attached to a Blackfin on the PPI port.
  543. If your Blackfin board has a ADV7393 select Y.
  544. To compile this driver as a module, choose M here: the
  545. module will be called bfin_adv7393fb.
  546. choice
  547. prompt "Video mode support"
  548. depends on FB_BFIN_7393
  549. default NTSC
  550. config NTSC
  551. bool 'NTSC 720x480'
  552. config PAL
  553. bool 'PAL 720x576'
  554. config NTSC_640x480
  555. bool 'NTSC 640x480 (Experimental)'
  556. config PAL_640x480
  557. bool 'PAL 640x480 (Experimental)'
  558. config NTSC_YCBCR
  559. bool 'NTSC 720x480 YCbCR input'
  560. config PAL_YCBCR
  561. bool 'PAL 720x576 YCbCR input'
  562. endchoice
  563. choice
  564. prompt "Size of ADV7393 frame buffer memory Single/Double Size"
  565. depends on (FB_BFIN_7393)
  566. default ADV7393_1XMEM
  567. config ADV7393_1XMEM
  568. bool 'Single'
  569. config ADV7393_2XMEM
  570. bool 'Double'
  571. endchoice
  572. config FB_STI
  573. tristate "HP STI frame buffer device support"
  574. depends on FB && PARISC
  575. select FB_CFB_FILLRECT
  576. select FB_CFB_COPYAREA
  577. select FB_CFB_IMAGEBLIT
  578. select STI_CONSOLE
  579. select VT
  580. default y
  581. ---help---
  582. STI refers to the HP "Standard Text Interface" which is a set of
  583. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  584. Enabling this option will implement the linux framebuffer device
  585. using calls to the STI BIOS routines for initialisation.
  586. If you enable this option, you will get a planar framebuffer device
  587. /dev/fb which will work on the most common HP graphic cards of the
  588. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  589. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  590. It is safe to enable this option, so you should probably say "Y".
  591. config FB_MAC
  592. bool "Generic Macintosh display support"
  593. depends on (FB = y) && MAC
  594. select FB_CFB_FILLRECT
  595. select FB_CFB_COPYAREA
  596. select FB_CFB_IMAGEBLIT
  597. select FB_MACMODES
  598. config FB_HP300
  599. bool
  600. depends on (FB = y) && DIO
  601. select FB_CFB_IMAGEBLIT
  602. default y
  603. config FB_TGA
  604. tristate "TGA/SFB+ framebuffer support"
  605. depends on FB && (ALPHA || TC)
  606. select FB_CFB_FILLRECT
  607. select FB_CFB_COPYAREA
  608. select FB_CFB_IMAGEBLIT
  609. select BITREVERSE
  610. ---help---
  611. This is the frame buffer device driver for generic TGA and SFB+
  612. graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  613. also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  614. TURBOchannel cards, also known as PMAGD-A, -B and -C.
  615. Due to hardware limitations ZLX-E2 and E3 cards are not supported
  616. for DECstation 5000/200 systems. Additionally due to firmware
  617. limitations these cards may cause troubles with booting DECstation
  618. 5000/240 and /260 systems, but are fully supported under Linux if
  619. you manage to get it going. ;-)
  620. Say Y if you have one of those.
  621. config FB_UVESA
  622. tristate "Userspace VESA VGA graphics support"
  623. depends on FB && CONNECTOR
  624. select FB_CFB_FILLRECT
  625. select FB_CFB_COPYAREA
  626. select FB_CFB_IMAGEBLIT
  627. select FB_MODE_HELPERS
  628. help
  629. This is the frame buffer driver for generic VBE 2.0 compliant
  630. graphic cards. It can also take advantage of VBE 3.0 features,
  631. such as refresh rate adjustment.
  632. This driver generally provides more features than vesafb but
  633. requires a userspace helper application called 'v86d'. See
  634. <file:Documentation/fb/uvesafb.txt> for more information.
  635. If unsure, say N.
  636. config FB_VESA
  637. bool "VESA VGA graphics support"
  638. depends on (FB = y) && X86
  639. select FB_CFB_FILLRECT
  640. select FB_CFB_COPYAREA
  641. select FB_CFB_IMAGEBLIT
  642. select FB_BOOT_VESA_SUPPORT
  643. help
  644. This is the frame buffer device driver for generic VESA 2.0
  645. compliant graphic cards. The older VESA 1.2 cards are not supported.
  646. You will get a boot time penguin logo at no additional cost. Please
  647. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  648. config FB_EFI
  649. bool "EFI-based Framebuffer Support"
  650. depends on (FB = y) && X86 && EFI
  651. select FB_CFB_FILLRECT
  652. select FB_CFB_COPYAREA
  653. select FB_CFB_IMAGEBLIT
  654. help
  655. This is the EFI frame buffer device driver. If the firmware on
  656. your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
  657. using the EFI framebuffer as your console.
  658. config FB_N411
  659. tristate "N411 Apollo/Hecuba devkit support"
  660. depends on FB && X86 && MMU
  661. select FB_SYS_FILLRECT
  662. select FB_SYS_COPYAREA
  663. select FB_SYS_IMAGEBLIT
  664. select FB_SYS_FOPS
  665. select FB_DEFERRED_IO
  666. select FB_HECUBA
  667. help
  668. This enables support for the Apollo display controller in its
  669. Hecuba form using the n411 devkit.
  670. config FB_HGA
  671. tristate "Hercules mono graphics support"
  672. depends on FB && X86
  673. help
  674. Say Y here if you have a Hercules mono graphics card.
  675. To compile this driver as a module, choose M here: the
  676. module will be called hgafb.
  677. As this card technology is at least 25 years old,
  678. most people will answer N here.
  679. config FB_SGIVW
  680. tristate "SGI Visual Workstation framebuffer support"
  681. depends on FB && X86_VISWS
  682. select FB_CFB_FILLRECT
  683. select FB_CFB_COPYAREA
  684. select FB_CFB_IMAGEBLIT
  685. help
  686. SGI Visual Workstation support for framebuffer graphics.
  687. config FB_GBE
  688. bool "SGI Graphics Backend frame buffer support"
  689. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  690. select FB_CFB_FILLRECT
  691. select FB_CFB_COPYAREA
  692. select FB_CFB_IMAGEBLIT
  693. help
  694. This is the frame buffer device driver for SGI Graphics Backend.
  695. This chip is used in SGI O2 and Visual Workstation 320/540.
  696. config FB_GBE_MEM
  697. int "Video memory size in MB"
  698. depends on FB_GBE
  699. default 4
  700. help
  701. This is the amount of memory reserved for the framebuffer,
  702. which can be any value between 1MB and 8MB.
  703. config FB_SBUS
  704. bool "SBUS and UPA framebuffers"
  705. depends on (FB = y) && SPARC
  706. help
  707. Say Y if you want support for SBUS or UPA based frame buffer device.
  708. config FB_BW2
  709. bool "BWtwo support"
  710. depends on (FB = y) && (SPARC && FB_SBUS)
  711. select FB_CFB_FILLRECT
  712. select FB_CFB_COPYAREA
  713. select FB_CFB_IMAGEBLIT
  714. help
  715. This is the frame buffer device driver for the BWtwo frame buffer.
  716. config FB_CG3
  717. bool "CGthree support"
  718. depends on (FB = y) && (SPARC && FB_SBUS)
  719. select FB_CFB_FILLRECT
  720. select FB_CFB_COPYAREA
  721. select FB_CFB_IMAGEBLIT
  722. help
  723. This is the frame buffer device driver for the CGthree frame buffer.
  724. config FB_CG6
  725. bool "CGsix (GX,TurboGX) support"
  726. depends on (FB = y) && (SPARC && FB_SBUS)
  727. select FB_CFB_COPYAREA
  728. select FB_CFB_IMAGEBLIT
  729. help
  730. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  731. frame buffer.
  732. config FB_FFB
  733. bool "Creator/Creator3D/Elite3D support"
  734. depends on FB_SBUS && SPARC64
  735. select FB_CFB_COPYAREA
  736. select FB_CFB_IMAGEBLIT
  737. help
  738. This is the frame buffer device driver for the Creator, Creator3D,
  739. and Elite3D graphics boards.
  740. config FB_TCX
  741. bool "TCX (SS4/SS5 only) support"
  742. depends on FB_SBUS
  743. select FB_CFB_FILLRECT
  744. select FB_CFB_COPYAREA
  745. select FB_CFB_IMAGEBLIT
  746. help
  747. This is the frame buffer device driver for the TCX 24/8bit frame
  748. buffer.
  749. config FB_CG14
  750. bool "CGfourteen (SX) support"
  751. depends on FB_SBUS
  752. select FB_CFB_FILLRECT
  753. select FB_CFB_COPYAREA
  754. select FB_CFB_IMAGEBLIT
  755. help
  756. This is the frame buffer device driver for the CGfourteen frame
  757. buffer on Desktop SPARCsystems with the SX graphics option.
  758. config FB_P9100
  759. bool "P9100 (Sparcbook 3 only) support"
  760. depends on FB_SBUS
  761. select FB_CFB_FILLRECT
  762. select FB_CFB_COPYAREA
  763. select FB_CFB_IMAGEBLIT
  764. help
  765. This is the frame buffer device driver for the P9100 card
  766. supported on Sparcbook 3 machines.
  767. config FB_LEO
  768. bool "Leo (ZX) support"
  769. depends on FB_SBUS
  770. select FB_CFB_FILLRECT
  771. select FB_CFB_COPYAREA
  772. select FB_CFB_IMAGEBLIT
  773. help
  774. This is the frame buffer device driver for the SBUS-based Sun ZX
  775. (leo) frame buffer cards.
  776. config FB_IGA
  777. bool "IGA 168x display support"
  778. depends on (FB = y) && SPARC32
  779. select FB_CFB_FILLRECT
  780. select FB_CFB_COPYAREA
  781. select FB_CFB_IMAGEBLIT
  782. help
  783. This is the framebuffer device for the INTERGRAPHICS 1680 and
  784. successor frame buffer cards.
  785. config FB_XVR500
  786. bool "Sun XVR-500 3DLABS Wildcat support"
  787. depends on (FB = y) && PCI && SPARC64
  788. select FB_CFB_FILLRECT
  789. select FB_CFB_COPYAREA
  790. select FB_CFB_IMAGEBLIT
  791. help
  792. This is the framebuffer device for the Sun XVR-500 and similar
  793. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  794. only works on sparc64 systems where the system firmware has
  795. mostly initialized the card already. It is treated as a
  796. completely dumb framebuffer device.
  797. config FB_XVR2500
  798. bool "Sun XVR-2500 3DLABS Wildcat support"
  799. depends on (FB = y) && PCI && SPARC64
  800. select FB_CFB_FILLRECT
  801. select FB_CFB_COPYAREA
  802. select FB_CFB_IMAGEBLIT
  803. help
  804. This is the framebuffer device for the Sun XVR-2500 and similar
  805. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  806. only works on sparc64 systems where the system firmware has
  807. mostly initialized the card already. It is treated as a
  808. completely dumb framebuffer device.
  809. config FB_XVR1000
  810. bool "Sun XVR-1000 support"
  811. depends on (FB = y) && SPARC64
  812. select FB_CFB_FILLRECT
  813. select FB_CFB_COPYAREA
  814. select FB_CFB_IMAGEBLIT
  815. help
  816. This is the framebuffer device for the Sun XVR-1000 and similar
  817. graphics cards. The driver only works on sparc64 systems where
  818. the system firmware has mostly initialized the card already. It
  819. is treated as a completely dumb framebuffer device.
  820. config FB_PVR2
  821. tristate "NEC PowerVR 2 display support"
  822. depends on FB && SH_DREAMCAST
  823. select FB_CFB_FILLRECT
  824. select FB_CFB_COPYAREA
  825. select FB_CFB_IMAGEBLIT
  826. ---help---
  827. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  828. run linux on your Dreamcast, you will have to say Y here.
  829. This driver may or may not work on other PowerVR 2 cards, but is
  830. totally untested. Use at your own risk. If unsure, say N.
  831. To compile this driver as a module, choose M here: the
  832. module will be called pvr2fb.
  833. You can pass several parameters to the driver at boot time or at
  834. module load time. The parameters look like "video=pvr2:XXX", where
  835. the meaning of XXX can be found at the end of the main source file
  836. (<file:drivers/video/pvr2fb.c>). Please see the file
  837. <file:Documentation/fb/pvr2fb.txt>.
  838. config FB_EPSON1355
  839. bool "Epson 1355 framebuffer support"
  840. depends on (FB = y) && ARCH_CEIVA
  841. select FB_CFB_FILLRECT
  842. select FB_CFB_COPYAREA
  843. select FB_CFB_IMAGEBLIT
  844. help
  845. Build in support for the SED1355 Epson Research Embedded RAMDAC
  846. LCD/CRT Controller (since redesignated as the S1D13505) as a
  847. framebuffer. Product specs at
  848. <http://vdc.epson.com/>.
  849. config FB_S1D13XXX
  850. tristate "Epson S1D13XXX framebuffer support"
  851. depends on FB
  852. select FB_CFB_FILLRECT
  853. select FB_CFB_COPYAREA
  854. select FB_CFB_IMAGEBLIT
  855. help
  856. Support for S1D13XXX framebuffer device family (currently only
  857. working with S1D13806). Product specs at
  858. <http://vdc.epson.com/>
  859. config FB_ATMEL
  860. tristate "AT91/AT32 LCD Controller support"
  861. depends on FB && HAVE_FB_ATMEL
  862. select FB_CFB_FILLRECT
  863. select FB_CFB_COPYAREA
  864. select FB_CFB_IMAGEBLIT
  865. help
  866. This enables support for the AT91/AT32 LCD Controller.
  867. config FB_INTSRAM
  868. bool "Frame Buffer in internal SRAM"
  869. depends on FB_ATMEL && ARCH_AT91SAM9261
  870. help
  871. Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
  872. to let frame buffer in external SDRAM.
  873. config FB_ATMEL_STN
  874. bool "Use a STN display with AT91/AT32 LCD Controller"
  875. depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
  876. default n
  877. help
  878. Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
  879. Controller. Say N if you want to connect a TFT.
  880. If unsure, say N.
  881. config FB_NVIDIA
  882. tristate "nVidia Framebuffer Support"
  883. depends on FB && PCI
  884. select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  885. select FB_MODE_HELPERS
  886. select FB_CFB_FILLRECT
  887. select FB_CFB_COPYAREA
  888. select FB_CFB_IMAGEBLIT
  889. select BITREVERSE
  890. select VGASTATE
  891. help
  892. This driver supports graphics boards with the nVidia chips, TNT
  893. and newer. For very old chipsets, such as the RIVA128, then use
  894. the rivafb.
  895. Say Y if you have such a graphics board.
  896. To compile this driver as a module, choose M here: the
  897. module will be called nvidiafb.
  898. config FB_NVIDIA_I2C
  899. bool "Enable DDC Support"
  900. depends on FB_NVIDIA
  901. select FB_DDC
  902. help
  903. This enables I2C support for nVidia Chipsets. This is used
  904. only for getting EDID information from the attached display
  905. allowing for robust video mode handling and switching.
  906. Because fbdev-2.6 requires that drivers must be able to
  907. independently validate video mode parameters, you should say Y
  908. here.
  909. config FB_NVIDIA_DEBUG
  910. bool "Lots of debug output"
  911. depends on FB_NVIDIA
  912. default n
  913. help
  914. Say Y here if you want the nVidia driver to output all sorts
  915. of debugging information to provide to the maintainer when
  916. something goes wrong.
  917. config FB_NVIDIA_BACKLIGHT
  918. bool "Support for backlight control"
  919. depends on FB_NVIDIA
  920. default y
  921. help
  922. Say Y here if you want to control the backlight of your display.
  923. config FB_RIVA
  924. tristate "nVidia Riva support"
  925. depends on FB && PCI
  926. select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  927. select FB_MODE_HELPERS
  928. select FB_CFB_FILLRECT
  929. select FB_CFB_COPYAREA
  930. select FB_CFB_IMAGEBLIT
  931. select BITREVERSE
  932. select VGASTATE
  933. help
  934. This driver supports graphics boards with the nVidia Riva/Geforce
  935. chips.
  936. Say Y if you have such a graphics board.
  937. To compile this driver as a module, choose M here: the
  938. module will be called rivafb.
  939. config FB_RIVA_I2C
  940. bool "Enable DDC Support"
  941. depends on FB_RIVA
  942. select FB_DDC
  943. help
  944. This enables I2C support for nVidia Chipsets. This is used
  945. only for getting EDID information from the attached display
  946. allowing for robust video mode handling and switching.
  947. Because fbdev-2.6 requires that drivers must be able to
  948. independently validate video mode parameters, you should say Y
  949. here.
  950. config FB_RIVA_DEBUG
  951. bool "Lots of debug output"
  952. depends on FB_RIVA
  953. default n
  954. help
  955. Say Y here if you want the Riva driver to output all sorts
  956. of debugging information to provide to the maintainer when
  957. something goes wrong.
  958. config FB_RIVA_BACKLIGHT
  959. bool "Support for backlight control"
  960. depends on FB_RIVA
  961. default y
  962. help
  963. Say Y here if you want to control the backlight of your display.
  964. config FB_I810
  965. tristate "Intel 810/815 support (EXPERIMENTAL)"
  966. depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
  967. select FB_MODE_HELPERS
  968. select FB_CFB_FILLRECT
  969. select FB_CFB_COPYAREA
  970. select FB_CFB_IMAGEBLIT
  971. select VGASTATE
  972. help
  973. This driver supports the on-board graphics built in to the Intel 810
  974. and 815 chipsets. Say Y if you have and plan to use such a board.
  975. To compile this driver as a module, choose M here: the
  976. module will be called i810fb.
  977. For more information, please read
  978. <file:Documentation/fb/intel810.txt>
  979. config FB_I810_GTF
  980. bool "use VESA Generalized Timing Formula"
  981. depends on FB_I810
  982. help
  983. If you say Y, then the VESA standard, Generalized Timing Formula
  984. or GTF, will be used to calculate the required video timing values
  985. per video mode. Since the GTF allows nondiscrete timings
  986. (nondiscrete being a range of values as opposed to discrete being a
  987. set of values), you'll be able to use any combination of horizontal
  988. and vertical resolutions, and vertical refresh rates without having
  989. to specify your own timing parameters. This is especially useful
  990. to maximize the performance of an aging display, or if you just
  991. have a display with nonstandard dimensions. A VESA compliant
  992. monitor is recommended, but can still work with non-compliant ones.
  993. If you need or want this, then select this option. The timings may
  994. not be compliant with Intel's recommended values. Use at your own
  995. risk.
  996. If you say N, the driver will revert to discrete video timings
  997. using a set recommended by Intel in their documentation.
  998. If unsure, say N.
  999. config FB_I810_I2C
  1000. bool "Enable DDC Support"
  1001. depends on FB_I810 && FB_I810_GTF
  1002. select FB_DDC
  1003. help
  1004. config FB_LE80578
  1005. tristate "Intel LE80578 (Vermilion) support"
  1006. depends on FB && PCI && X86
  1007. select FB_MODE_HELPERS
  1008. select FB_CFB_FILLRECT
  1009. select FB_CFB_COPYAREA
  1010. select FB_CFB_IMAGEBLIT
  1011. help
  1012. This driver supports the LE80578 (Vermilion Range) chipset
  1013. config FB_CARILLO_RANCH
  1014. tristate "Intel Carillo Ranch support"
  1015. depends on FB_LE80578 && FB && PCI && X86
  1016. help
  1017. This driver supports the LE80578 (Carillo Ranch) board
  1018. config FB_INTEL
  1019. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
  1020. depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EXPERT
  1021. select FB_MODE_HELPERS
  1022. select FB_CFB_FILLRECT
  1023. select FB_CFB_COPYAREA
  1024. select FB_CFB_IMAGEBLIT
  1025. select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
  1026. depends on !DRM_I915
  1027. help
  1028. This driver supports the on-board graphics built in to the Intel
  1029. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
  1030. Say Y if you have and plan to use such a board.
  1031. To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
  1032. To compile this driver as a module, choose M here: the
  1033. module will be called intelfb.
  1034. For more information, please read <file:Documentation/fb/intelfb.txt>
  1035. config FB_INTEL_DEBUG
  1036. bool "Intel driver Debug Messages"
  1037. depends on FB_INTEL
  1038. ---help---
  1039. Say Y here if you want the Intel driver to output all sorts
  1040. of debugging information to provide to the maintainer when
  1041. something goes wrong.
  1042. config FB_INTEL_I2C
  1043. bool "DDC/I2C for Intel framebuffer support"
  1044. depends on FB_INTEL
  1045. select FB_DDC
  1046. default y
  1047. help
  1048. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  1049. config FB_MATROX
  1050. tristate "Matrox acceleration"
  1051. depends on FB && PCI
  1052. select FB_CFB_FILLRECT
  1053. select FB_CFB_COPYAREA
  1054. select FB_CFB_IMAGEBLIT
  1055. select FB_TILEBLITTING
  1056. select FB_MACMODES if PPC_PMAC
  1057. ---help---
  1058. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  1059. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  1060. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  1061. Matrox G400, G450 or G550 card in your box.
  1062. To compile this driver as a module, choose M here: the
  1063. module will be called matroxfb.
  1064. You can pass several parameters to the driver at boot time or at
  1065. module load time. The parameters look like "video=matroxfb:XXX", and
  1066. are described in <file:Documentation/fb/matroxfb.txt>.
  1067. config FB_MATROX_MILLENIUM
  1068. bool "Millennium I/II support"
  1069. depends on FB_MATROX
  1070. help
  1071. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  1072. video card. If you select "Advanced lowlevel driver options" below,
  1073. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  1074. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  1075. also use font widths different from 8.
  1076. config FB_MATROX_MYSTIQUE
  1077. bool "Mystique support"
  1078. depends on FB_MATROX
  1079. help
  1080. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  1081. video card. If you select "Advanced lowlevel driver options" below,
  1082. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  1083. packed pixel and 32 bpp packed pixel. You can also use font widths
  1084. different from 8.
  1085. config FB_MATROX_G
  1086. bool "G100/G200/G400/G450/G550 support"
  1087. depends on FB_MATROX
  1088. ---help---
  1089. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  1090. video card. If you select "Advanced lowlevel driver options", you
  1091. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  1092. pixel and 32 bpp packed pixel. You can also use font widths
  1093. different from 8.
  1094. If you need support for G400 secondary head, you must say Y to
  1095. "Matrox I2C support" and "G400 second head support" right below.
  1096. G450/G550 secondary head and digital output are supported without
  1097. additional modules.
  1098. The driver starts in monitor mode. You must use the matroxset tool
  1099. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  1100. swap primary and secondary head outputs, or to change output mode.
  1101. Secondary head driver always start in 640x480 resolution and you
  1102. must use fbset to change it.
  1103. Do not forget that second head supports only 16 and 32 bpp
  1104. packed pixels, so it is a good idea to compile them into the kernel
  1105. too. You can use only some font widths, as the driver uses generic
  1106. painting procedures (the secondary head does not use acceleration
  1107. engine).
  1108. G450/G550 hardware can display TV picture only from secondary CRTC,
  1109. and it performs no scaling, so picture must have 525 or 625 lines.
  1110. config FB_MATROX_I2C
  1111. tristate "Matrox I2C support"
  1112. depends on FB_MATROX
  1113. select FB_DDC
  1114. ---help---
  1115. This drivers creates I2C buses which are needed for accessing the
  1116. DDC (I2C) bus present on all Matroxes, an I2C bus which
  1117. interconnects Matrox optional devices, like MGA-TVO on G200 and
  1118. G400, and the secondary head DDC bus, present on G400 only.
  1119. You can say Y or M here if you want to experiment with monitor
  1120. detection code. You must say Y or M here if you want to use either
  1121. second head of G400 or MGA-TVO on G200 or G400.
  1122. If you compile it as module, it will create a module named
  1123. i2c-matroxfb.
  1124. config FB_MATROX_MAVEN
  1125. tristate "G400 second head support"
  1126. depends on FB_MATROX_G && FB_MATROX_I2C
  1127. ---help---
  1128. WARNING !!! This support does not work with G450 !!!
  1129. Say Y or M here if you want to use a secondary head (meaning two
  1130. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1131. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1132. secondary head output is blanked while you are in X. With XFree
  1133. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1134. the fbdev driver on first head and the fbdev driver on second head.
  1135. If you compile it as module, two modules are created,
  1136. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1137. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1138. also load i2c-matroxfb to get it to run.
  1139. The driver starts in monitor mode and you must use the matroxset
  1140. tool (available at
  1141. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1142. PAL or NTSC or to swap primary and secondary head outputs.
  1143. Secondary head driver also always start in 640x480 resolution, you
  1144. must use fbset to change it.
  1145. Also do not forget that second head supports only 16 and 32 bpp
  1146. packed pixels, so it is a good idea to compile them into the kernel
  1147. too. You can use only some font widths, as the driver uses generic
  1148. painting procedures (the secondary head does not use acceleration
  1149. engine).
  1150. config FB_RADEON
  1151. tristate "ATI Radeon display support"
  1152. depends on FB && PCI
  1153. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1154. select FB_MODE_HELPERS
  1155. select FB_CFB_FILLRECT
  1156. select FB_CFB_COPYAREA
  1157. select FB_CFB_IMAGEBLIT
  1158. select FB_MACMODES if PPC_OF
  1159. help
  1160. Choose this option if you want to use an ATI Radeon graphics card as
  1161. a framebuffer device. There are both PCI and AGP versions. You
  1162. don't need to choose this to run the Radeon in plain VGA mode.
  1163. There is a product page at
  1164. http://products.amd.com/en-us/GraphicCardResult.aspx
  1165. config FB_RADEON_I2C
  1166. bool "DDC/I2C for ATI Radeon support"
  1167. depends on FB_RADEON
  1168. select FB_DDC
  1169. default y
  1170. help
  1171. Say Y here if you want DDC/I2C support for your Radeon board.
  1172. config FB_RADEON_BACKLIGHT
  1173. bool "Support for backlight control"
  1174. depends on FB_RADEON
  1175. default y
  1176. help
  1177. Say Y here if you want to control the backlight of your display.
  1178. config FB_RADEON_DEBUG
  1179. bool "Lots of debug output from Radeon driver"
  1180. depends on FB_RADEON
  1181. default n
  1182. help
  1183. Say Y here if you want the Radeon driver to output all sorts
  1184. of debugging information to provide to the maintainer when
  1185. something goes wrong.
  1186. config FB_ATY128
  1187. tristate "ATI Rage128 display support"
  1188. depends on FB && PCI
  1189. select FB_CFB_FILLRECT
  1190. select FB_CFB_COPYAREA
  1191. select FB_CFB_IMAGEBLIT
  1192. select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  1193. select FB_MACMODES if PPC_PMAC
  1194. help
  1195. This driver supports graphics boards with the ATI Rage128 chips.
  1196. Say Y if you have such a graphics board and read
  1197. <file:Documentation/fb/aty128fb.txt>.
  1198. To compile this driver as a module, choose M here: the
  1199. module will be called aty128fb.
  1200. config FB_ATY128_BACKLIGHT
  1201. bool "Support for backlight control"
  1202. depends on FB_ATY128
  1203. default y
  1204. help
  1205. Say Y here if you want to control the backlight of your display.
  1206. config FB_ATY
  1207. tristate "ATI Mach64 display support" if PCI || ATARI
  1208. depends on FB && !SPARC32
  1209. select FB_CFB_FILLRECT
  1210. select FB_CFB_COPYAREA
  1211. select FB_CFB_IMAGEBLIT
  1212. select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  1213. select FB_MACMODES if PPC
  1214. help
  1215. This driver supports graphics boards with the ATI Mach64 chips.
  1216. Say Y if you have such a graphics board.
  1217. To compile this driver as a module, choose M here: the
  1218. module will be called atyfb.
  1219. config FB_ATY_CT
  1220. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  1221. depends on PCI && FB_ATY
  1222. default y if SPARC64 && PCI
  1223. help
  1224. Say Y here to support use of ATI's 64-bit Rage boards (or other
  1225. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1226. framebuffer device. The ATI product support page for these boards
  1227. is at <http://support.ati.com/products/pc/mach64/mach64.html>.
  1228. config FB_ATY_GENERIC_LCD
  1229. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1230. depends on FB_ATY_CT
  1231. help
  1232. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1233. Rage XC, or Rage XL chipset.
  1234. config FB_ATY_GX
  1235. bool "Mach64 GX support" if PCI
  1236. depends on FB_ATY
  1237. default y if ATARI
  1238. help
  1239. Say Y here to support use of the ATI Mach64 Graphics Expression
  1240. board (or other boards based on the Mach64 GX chipset) as a
  1241. framebuffer device. The ATI product support page for these boards
  1242. is at
  1243. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1244. config FB_ATY_BACKLIGHT
  1245. bool "Support for backlight control"
  1246. depends on FB_ATY
  1247. default y
  1248. help
  1249. Say Y here if you want to control the backlight of your display.
  1250. config FB_S3
  1251. tristate "S3 Trio/Virge support"
  1252. depends on FB && PCI
  1253. select FB_CFB_FILLRECT
  1254. select FB_CFB_COPYAREA
  1255. select FB_CFB_IMAGEBLIT
  1256. select FB_TILEBLITTING
  1257. select FB_SVGALIB
  1258. select VGASTATE
  1259. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1260. ---help---
  1261. Driver for graphics boards with S3 Trio / S3 Virge chip.
  1262. config FB_S3_DDC
  1263. bool "DDC for S3 support"
  1264. depends on FB_S3
  1265. select FB_DDC
  1266. default y
  1267. help
  1268. Say Y here if you want DDC support for your S3 graphics card.
  1269. config FB_SAVAGE
  1270. tristate "S3 Savage support"
  1271. depends on FB && PCI && EXPERIMENTAL
  1272. select FB_MODE_HELPERS
  1273. select FB_CFB_FILLRECT
  1274. select FB_CFB_COPYAREA
  1275. select FB_CFB_IMAGEBLIT
  1276. select VGASTATE
  1277. help
  1278. This driver supports notebooks and computers with S3 Savage PCI/AGP
  1279. chips.
  1280. Say Y if you have such a graphics card.
  1281. To compile this driver as a module, choose M here; the module
  1282. will be called savagefb.
  1283. config FB_SAVAGE_I2C
  1284. bool "Enable DDC2 Support"
  1285. depends on FB_SAVAGE
  1286. select FB_DDC
  1287. help
  1288. This enables I2C support for S3 Savage Chipsets. This is used
  1289. only for getting EDID information from the attached display
  1290. allowing for robust video mode handling and switching.
  1291. Because fbdev-2.6 requires that drivers must be able to
  1292. independently validate video mode parameters, you should say Y
  1293. here.
  1294. config FB_SAVAGE_ACCEL
  1295. bool "Enable Console Acceleration"
  1296. depends on FB_SAVAGE
  1297. default n
  1298. help
  1299. This option will compile in console acceleration support. If
  1300. the resulting framebuffer console has bothersome glitches, then
  1301. choose N here.
  1302. config FB_SIS
  1303. tristate "SiS/XGI display support"
  1304. depends on FB && PCI
  1305. select FB_CFB_FILLRECT
  1306. select FB_CFB_COPYAREA
  1307. select FB_CFB_IMAGEBLIT
  1308. select FB_BOOT_VESA_SUPPORT if FB_SIS = y
  1309. help
  1310. This is the frame buffer device driver for the SiS 300, 315, 330
  1311. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1312. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1313. To compile this driver as a module, choose M here; the module
  1314. will be called sisfb.
  1315. config FB_SIS_300
  1316. bool "SiS 300 series support"
  1317. depends on FB_SIS
  1318. help
  1319. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1320. config FB_SIS_315
  1321. bool "SiS 315/330/340 series and XGI support"
  1322. depends on FB_SIS
  1323. help
  1324. Say Y here to support use of the SiS 315, 330 and 340 series
  1325. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1326. as XGI V3XT, V5, V8 and Z7.
  1327. config FB_VIA
  1328. tristate "VIA UniChrome (Pro) and Chrome9 display support"
  1329. depends on FB && PCI && X86
  1330. select FB_CFB_FILLRECT
  1331. select FB_CFB_COPYAREA
  1332. select FB_CFB_IMAGEBLIT
  1333. select I2C_ALGOBIT
  1334. select I2C
  1335. select GPIOLIB
  1336. help
  1337. This is the frame buffer device driver for Graphics chips of VIA
  1338. UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
  1339. CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
  1340. /P4M900,VX800)
  1341. Say Y if you have a VIA UniChrome graphics board.
  1342. To compile this driver as a module, choose M here: the
  1343. module will be called viafb.
  1344. if FB_VIA
  1345. config FB_VIA_DIRECT_PROCFS
  1346. bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
  1347. depends on FB_VIA
  1348. default n
  1349. help
  1350. Allow direct hardware access to some output registers via procfs.
  1351. This is dangerous but may provide the only chance to get the
  1352. correct output device configuration.
  1353. Its use is strongly discouraged.
  1354. config FB_VIA_X_COMPATIBILITY
  1355. bool "X server compatibility"
  1356. depends on FB_VIA
  1357. default n
  1358. help
  1359. This option reduces the functionality (power saving, ...) of the
  1360. framebuffer to avoid negative impact on the OpenChrome X server.
  1361. If you use any X server other than fbdev you should enable this
  1362. otherwise it should be safe to disable it and allow using all
  1363. features.
  1364. endif
  1365. config FB_NEOMAGIC
  1366. tristate "NeoMagic display support"
  1367. depends on FB && PCI
  1368. select FB_MODE_HELPERS
  1369. select FB_CFB_FILLRECT
  1370. select FB_CFB_COPYAREA
  1371. select FB_CFB_IMAGEBLIT
  1372. select VGASTATE
  1373. help
  1374. This driver supports notebooks with NeoMagic PCI chips.
  1375. Say Y if you have such a graphics card.
  1376. To compile this driver as a module, choose M here: the
  1377. module will be called neofb.
  1378. config FB_KYRO
  1379. tristate "IMG Kyro support"
  1380. depends on FB && PCI
  1381. select FB_CFB_FILLRECT
  1382. select FB_CFB_COPYAREA
  1383. select FB_CFB_IMAGEBLIT
  1384. help
  1385. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1386. graphics board.
  1387. To compile this driver as a module, choose M here: the
  1388. module will be called kyrofb.
  1389. config FB_3DFX
  1390. tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
  1391. depends on FB && PCI
  1392. select FB_CFB_IMAGEBLIT
  1393. select FB_CFB_FILLRECT
  1394. select FB_CFB_COPYAREA
  1395. select FB_MODE_HELPERS
  1396. help
  1397. This driver supports graphics boards with the 3Dfx Banshee,
  1398. Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
  1399. such a graphics board.
  1400. To compile this driver as a module, choose M here: the
  1401. module will be called tdfxfb.
  1402. config FB_3DFX_ACCEL
  1403. bool "3Dfx Acceleration functions (EXPERIMENTAL)"
  1404. depends on FB_3DFX && EXPERIMENTAL
  1405. ---help---
  1406. This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
  1407. device driver with acceleration functions.
  1408. config FB_3DFX_I2C
  1409. bool "Enable DDC/I2C support"
  1410. depends on FB_3DFX && EXPERIMENTAL
  1411. select FB_DDC
  1412. default y
  1413. help
  1414. Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
  1415. config FB_VOODOO1
  1416. tristate "3Dfx Voodoo Graphics (sst1) support"
  1417. depends on FB && PCI
  1418. select FB_CFB_FILLRECT
  1419. select FB_CFB_COPYAREA
  1420. select FB_CFB_IMAGEBLIT
  1421. ---help---
  1422. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1423. Voodoo2 (cvg) based graphics card.
  1424. To compile this driver as a module, choose M here: the
  1425. module will be called sstfb.
  1426. WARNING: Do not use any application that uses the 3D engine
  1427. (namely glide) while using this driver.
  1428. Please read the <file:Documentation/fb/sstfb.txt> for supported
  1429. options and other important info support.
  1430. config FB_VT8623
  1431. tristate "VIA VT8623 support"
  1432. depends on FB && PCI
  1433. select FB_CFB_FILLRECT
  1434. select FB_CFB_COPYAREA
  1435. select FB_CFB_IMAGEBLIT
  1436. select FB_TILEBLITTING
  1437. select FB_SVGALIB
  1438. select VGASTATE
  1439. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1440. ---help---
  1441. Driver for CastleRock integrated graphics core in the
  1442. VIA VT8623 [Apollo CLE266] chipset.
  1443. config FB_TRIDENT
  1444. tristate "Trident/CyberXXX/CyberBlade support"
  1445. depends on FB && PCI
  1446. select FB_CFB_FILLRECT
  1447. select FB_CFB_COPYAREA
  1448. select FB_CFB_IMAGEBLIT
  1449. ---help---
  1450. This is the frame buffer device driver for Trident PCI/AGP chipsets.
  1451. Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
  1452. and Blade XP.
  1453. There are also integrated versions of these chips called CyberXXXX,
  1454. CyberImage or CyberBlade. These chips are mostly found in laptops
  1455. but also on some motherboards including early VIA EPIA motherboards.
  1456. For more information, read <file:Documentation/fb/tridentfb.txt>
  1457. Say Y if you have such a graphics board.
  1458. To compile this driver as a module, choose M here: the
  1459. module will be called tridentfb.
  1460. config FB_ARK
  1461. tristate "ARK 2000PV support"
  1462. depends on FB && PCI
  1463. select FB_CFB_FILLRECT
  1464. select FB_CFB_COPYAREA
  1465. select FB_CFB_IMAGEBLIT
  1466. select FB_TILEBLITTING
  1467. select FB_SVGALIB
  1468. select VGASTATE
  1469. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1470. ---help---
  1471. Driver for PCI graphics boards with ARK 2000PV chip
  1472. and ICS 5342 RAMDAC.
  1473. config FB_PM3
  1474. tristate "Permedia3 support (EXPERIMENTAL)"
  1475. depends on FB && PCI && EXPERIMENTAL
  1476. select FB_CFB_FILLRECT
  1477. select FB_CFB_COPYAREA
  1478. select FB_CFB_IMAGEBLIT
  1479. help
  1480. This is the frame buffer device driver for the 3DLabs Permedia3
  1481. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1482. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1483. and maybe other boards.
  1484. config FB_CARMINE
  1485. tristate "Fujitsu carmine frame buffer support"
  1486. depends on FB && PCI
  1487. select FB_CFB_FILLRECT
  1488. select FB_CFB_COPYAREA
  1489. select FB_CFB_IMAGEBLIT
  1490. help
  1491. This is the frame buffer device driver for the Fujitsu Carmine chip.
  1492. The driver provides two independent frame buffer devices.
  1493. choice
  1494. depends on FB_CARMINE
  1495. prompt "DRAM timing"
  1496. default FB_CARMINE_DRAM_EVAL
  1497. config FB_CARMINE_DRAM_EVAL
  1498. bool "Eval board timings"
  1499. help
  1500. Use timings which work on the eval card.
  1501. config CARMINE_DRAM_CUSTOM
  1502. bool "Custom board timings"
  1503. help
  1504. Use custom board timings.
  1505. endchoice
  1506. config FB_AU1100
  1507. bool "Au1100 LCD Driver"
  1508. depends on (FB = y) && MIPS && SOC_AU1100
  1509. select FB_CFB_FILLRECT
  1510. select FB_CFB_COPYAREA
  1511. select FB_CFB_IMAGEBLIT
  1512. help
  1513. This is the framebuffer driver for the AMD Au1100 SOC. It can drive
  1514. various panels and CRTs by passing in kernel cmd line option
  1515. au1100fb:panel=<name>.
  1516. config FB_AU1200
  1517. bool "Au1200 LCD Driver"
  1518. depends on (FB = y) && MIPS && SOC_AU1200
  1519. select FB_CFB_FILLRECT
  1520. select FB_CFB_COPYAREA
  1521. select FB_CFB_IMAGEBLIT
  1522. help
  1523. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1524. various panels and CRTs by passing in kernel cmd line option
  1525. au1200fb:panel=<name>.
  1526. config FB_VT8500
  1527. bool "VT8500 LCD Driver"
  1528. depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
  1529. select FB_WMT_GE_ROPS
  1530. select FB_SYS_IMAGEBLIT
  1531. help
  1532. This is the framebuffer driver for VIA VT8500 integrated LCD
  1533. controller.
  1534. config FB_WM8505
  1535. bool "WM8505 frame buffer support"
  1536. depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
  1537. select FB_WMT_GE_ROPS
  1538. select FB_SYS_IMAGEBLIT
  1539. help
  1540. This is the framebuffer driver for WonderMedia WM8505
  1541. integrated LCD controller.
  1542. source "drivers/video/geode/Kconfig"
  1543. config FB_HIT
  1544. tristate "HD64461 Frame Buffer support"
  1545. depends on FB && HD64461
  1546. select FB_CFB_FILLRECT
  1547. select FB_CFB_COPYAREA
  1548. select FB_CFB_IMAGEBLIT
  1549. help
  1550. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1551. frame buffer card.
  1552. config FB_PMAG_AA
  1553. bool "PMAG-AA TURBOchannel framebuffer support"
  1554. depends on (FB = y) && TC
  1555. select FB_CFB_FILLRECT
  1556. select FB_CFB_COPYAREA
  1557. select FB_CFB_IMAGEBLIT
  1558. help
  1559. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1560. used mainly in the MIPS-based DECstation series.
  1561. config FB_PMAG_BA
  1562. tristate "PMAG-BA TURBOchannel framebuffer support"
  1563. depends on FB && TC
  1564. select FB_CFB_FILLRECT
  1565. select FB_CFB_COPYAREA
  1566. select FB_CFB_IMAGEBLIT
  1567. help
  1568. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1569. used mainly in the MIPS-based DECstation series.
  1570. config FB_PMAGB_B
  1571. tristate "PMAGB-B TURBOchannel framebuffer support"
  1572. depends on FB && TC
  1573. select FB_CFB_FILLRECT
  1574. select FB_CFB_COPYAREA
  1575. select FB_CFB_IMAGEBLIT
  1576. help
  1577. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1578. in the MIPS-based DECstation series. The card is currently only
  1579. supported in 1280x1024x8 mode.
  1580. config FB_MAXINE
  1581. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1582. depends on (FB = y) && MACH_DECSTATION
  1583. select FB_CFB_FILLRECT
  1584. select FB_CFB_COPYAREA
  1585. select FB_CFB_IMAGEBLIT
  1586. help
  1587. Support for the onboard framebuffer (1024x768x8) in the Personal
  1588. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1589. Codename "Maxine").
  1590. config FB_G364
  1591. bool "G364 frame buffer support"
  1592. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1593. select FB_CFB_FILLRECT
  1594. select FB_CFB_COPYAREA
  1595. select FB_CFB_IMAGEBLIT
  1596. help
  1597. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1598. Olivetti M700-10 systems.
  1599. config FB_68328
  1600. bool "Motorola 68328 native frame buffer support"
  1601. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1602. select FB_CFB_FILLRECT
  1603. select FB_CFB_COPYAREA
  1604. select FB_CFB_IMAGEBLIT
  1605. help
  1606. Say Y here if you want to support the built-in frame buffer of
  1607. the Motorola 68328 CPU family.
  1608. config FB_PXA168
  1609. tristate "PXA168/910 LCD framebuffer support"
  1610. depends on FB && (CPU_PXA168 || CPU_PXA910)
  1611. select FB_CFB_FILLRECT
  1612. select FB_CFB_COPYAREA
  1613. select FB_CFB_IMAGEBLIT
  1614. ---help---
  1615. Frame buffer driver for the built-in LCD controller in the Marvell
  1616. MMP processor.
  1617. config FB_PXA
  1618. tristate "PXA LCD framebuffer support"
  1619. depends on FB && ARCH_PXA
  1620. select FB_CFB_FILLRECT
  1621. select FB_CFB_COPYAREA
  1622. select FB_CFB_IMAGEBLIT
  1623. ---help---
  1624. Frame buffer driver for the built-in LCD controller in the Intel
  1625. PXA2x0 processor.
  1626. This driver is also available as a module ( = code which can be
  1627. inserted and removed from the running kernel whenever you want). The
  1628. module will be called pxafb. If you want to compile it as a module,
  1629. say M here and read <file:Documentation/kbuild/modules.txt>.
  1630. If unsure, say N.
  1631. config FB_PXA_OVERLAY
  1632. bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
  1633. default n
  1634. depends on FB_PXA && (PXA27x || PXA3xx)
  1635. config FB_PXA_SMARTPANEL
  1636. bool "PXA Smartpanel LCD support"
  1637. default n
  1638. depends on FB_PXA
  1639. config FB_PXA_PARAMETERS
  1640. bool "PXA LCD command line parameters"
  1641. default n
  1642. depends on FB_PXA
  1643. ---help---
  1644. Enable the use of kernel command line or module parameters
  1645. to configure the physical properties of the LCD panel when
  1646. using the PXA LCD driver.
  1647. This option allows you to override the panel parameters
  1648. supplied by the platform in order to support multiple
  1649. different models of flatpanel. If you will only be using a
  1650. single model of flatpanel then you can safely leave this
  1651. option disabled.
  1652. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1653. config PXA3XX_GCU
  1654. tristate "PXA3xx 2D graphics accelerator driver"
  1655. depends on FB_PXA
  1656. help
  1657. Kernelspace driver for the 2D graphics controller unit (GCU)
  1658. found on PXA3xx processors. There is a counterpart driver in the
  1659. DirectFB suite, see http://www.directfb.org/
  1660. If you compile this as a module, it will be called pxa3xx_gcu.
  1661. config FB_MBX
  1662. tristate "2700G LCD framebuffer support"
  1663. depends on FB && ARCH_PXA
  1664. select FB_CFB_FILLRECT
  1665. select FB_CFB_COPYAREA
  1666. select FB_CFB_IMAGEBLIT
  1667. ---help---
  1668. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1669. Accelerator
  1670. config FB_MBX_DEBUG
  1671. bool "Enable debugging info via debugfs"
  1672. depends on FB_MBX && DEBUG_FS
  1673. default n
  1674. ---help---
  1675. Enable this if you want debugging information using the debug
  1676. filesystem (debugfs)
  1677. If unsure, say N.
  1678. config FB_FSL_DIU
  1679. tristate "Freescale DIU framebuffer support"
  1680. depends on FB && FSL_SOC
  1681. select FB_MODE_HELPERS
  1682. select FB_CFB_FILLRECT
  1683. select FB_CFB_COPYAREA
  1684. select FB_CFB_IMAGEBLIT
  1685. select PPC_LIB_RHEAP
  1686. ---help---
  1687. Framebuffer driver for the Freescale SoC DIU
  1688. config FB_W100
  1689. tristate "W100 frame buffer support"
  1690. depends on FB && ARCH_PXA
  1691. select FB_CFB_FILLRECT
  1692. select FB_CFB_COPYAREA
  1693. select FB_CFB_IMAGEBLIT
  1694. ---help---
  1695. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1696. It can also drive the w3220 chip found on iPAQ hx4700.
  1697. This driver is also available as a module ( = code which can be
  1698. inserted and removed from the running kernel whenever you want). The
  1699. module will be called w100fb. If you want to compile it as a module,
  1700. say M here and read <file:Documentation/kbuild/modules.txt>.
  1701. If unsure, say N.
  1702. config FB_SH_MOBILE_LCDC
  1703. tristate "SuperH Mobile LCDC framebuffer support"
  1704. depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
  1705. select FB_SYS_FILLRECT
  1706. select FB_SYS_COPYAREA
  1707. select FB_SYS_IMAGEBLIT
  1708. select FB_SYS_FOPS
  1709. select FB_DEFERRED_IO
  1710. select FB_BACKLIGHT
  1711. select SH_MIPI_DSI if SH_LCD_MIPI_DSI
  1712. ---help---
  1713. Frame buffer driver for the on-chip SH-Mobile LCD controller.
  1714. config FB_SH_MOBILE_HDMI
  1715. tristate "SuperH Mobile HDMI controller support"
  1716. depends on FB_SH_MOBILE_LCDC
  1717. select FB_MODE_HELPERS
  1718. select SOUND
  1719. select SND
  1720. select SND_SOC
  1721. ---help---
  1722. Driver for the on-chip SH-Mobile HDMI controller.
  1723. config FB_SH_MOBILE_MERAM
  1724. tristate "SuperH Mobile MERAM read ahead support for LCDC"
  1725. depends on FB_SH_MOBILE_LCDC
  1726. default y
  1727. ---help---
  1728. Enable MERAM support for the SH-Mobile LCD controller.
  1729. This will allow for caching of the framebuffer to provide more
  1730. reliable access under heavy main memory bus traffic situations.
  1731. Up to 4 memory channels can be configured, allowing 4 RGB or
  1732. 2 YCbCr framebuffers to be configured.
  1733. config FB_TMIO
  1734. tristate "Toshiba Mobile IO FrameBuffer support"
  1735. depends on FB && MFD_CORE
  1736. select FB_CFB_FILLRECT
  1737. select FB_CFB_COPYAREA
  1738. select FB_CFB_IMAGEBLIT
  1739. ---help---
  1740. Frame buffer driver for the Toshiba Mobile IO integrated as found
  1741. on the Sharp SL-6000 series
  1742. This driver is also available as a module ( = code which can be
  1743. inserted and removed from the running kernel whenever you want). The
  1744. module will be called tmiofb. If you want to compile it as a module,
  1745. say M here and read <file:Documentation/kbuild/modules.txt>.
  1746. If unsure, say N.
  1747. config FB_TMIO_ACCELL
  1748. bool "tmiofb acceleration"
  1749. depends on FB_TMIO
  1750. default y
  1751. config FB_S3C
  1752. tristate "Samsung S3C framebuffer support"
  1753. depends on FB && S3C_DEV_FB
  1754. select FB_CFB_FILLRECT
  1755. select FB_CFB_COPYAREA
  1756. select FB_CFB_IMAGEBLIT
  1757. ---help---
  1758. Frame buffer driver for the built-in FB controller in the Samsung
  1759. SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
  1760. and the S3C64XX series such as the S3C6400 and S3C6410.
  1761. These chips all have the same basic framebuffer design with the
  1762. actual capabilities depending on the chip. For instance the S3C6400
  1763. and S3C6410 support 4 hardware windows whereas the S3C24XX series
  1764. currently only have two.
  1765. Currently the support is only for the S3C6400 and S3C6410 SoCs.
  1766. config FB_S3C_DEBUG_REGWRITE
  1767. bool "Debug register writes"
  1768. depends on FB_S3C
  1769. ---help---
  1770. Show all register writes via printk(KERN_DEBUG)
  1771. config FB_S3C2410
  1772. tristate "S3C2410 LCD framebuffer support"
  1773. depends on FB && ARCH_S3C2410
  1774. select FB_CFB_FILLRECT
  1775. select FB_CFB_COPYAREA
  1776. select FB_CFB_IMAGEBLIT
  1777. ---help---
  1778. Frame buffer driver for the built-in LCD controller in the Samsung
  1779. S3C2410 processor.
  1780. This driver is also available as a module ( = code which can be
  1781. inserted and removed from the running kernel whenever you want). The
  1782. module will be called s3c2410fb. If you want to compile it as a module,
  1783. say M here and read <file:Documentation/kbuild/modules.txt>.
  1784. If unsure, say N.
  1785. config FB_S3C2410_DEBUG
  1786. bool "S3C2410 lcd debug messages"
  1787. depends on FB_S3C2410
  1788. help
  1789. Turn on debugging messages. Note that you can set/unset at run time
  1790. through sysfs
  1791. config FB_NUC900
  1792. bool "NUC900 LCD framebuffer support"
  1793. depends on FB && ARCH_W90X900
  1794. select FB_CFB_FILLRECT
  1795. select FB_CFB_COPYAREA
  1796. select FB_CFB_IMAGEBLIT
  1797. ---help---
  1798. Frame buffer driver for the built-in LCD controller in the Nuvoton
  1799. NUC900 processor
  1800. config GPM1040A0_320X240
  1801. bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
  1802. depends on FB_NUC900
  1803. config FB_NUC900_DEBUG
  1804. bool "NUC900 lcd debug messages"
  1805. depends on FB_NUC900
  1806. help
  1807. Turn on debugging messages. Note that you can set/unset at run time
  1808. through sysfs
  1809. config FB_SM501
  1810. tristate "Silicon Motion SM501 framebuffer support"
  1811. depends on FB && MFD_SM501
  1812. select FB_CFB_FILLRECT
  1813. select FB_CFB_COPYAREA
  1814. select FB_CFB_IMAGEBLIT
  1815. ---help---
  1816. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1817. Motion SM501.
  1818. This driver is also available as a module ( = code which can be
  1819. inserted and removed from the running kernel whenever you want). The
  1820. module will be called sm501fb. If you want to compile it as a module,
  1821. say M here and read <file:Documentation/kbuild/modules.txt>.
  1822. If unsure, say N.
  1823. config FB_UDL
  1824. tristate "Displaylink USB Framebuffer support"
  1825. depends on FB && USB
  1826. select FB_MODE_HELPERS
  1827. select FB_SYS_FILLRECT
  1828. select FB_SYS_COPYAREA
  1829. select FB_SYS_IMAGEBLIT
  1830. select FB_SYS_FOPS
  1831. select FB_DEFERRED_IO
  1832. ---help---
  1833. This is a kernel framebuffer driver for DisplayLink USB devices.
  1834. Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
  1835. mplayer -vo fbdev. Supports all USB 2.0 era DisplayLink devices.
  1836. To compile as a module, choose M here: the module name is udlfb.
  1837. config FB_PNX4008_DUM
  1838. tristate "Display Update Module support on Philips PNX4008 board"
  1839. depends on FB && ARCH_PNX4008
  1840. ---help---
  1841. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1842. config FB_PNX4008_DUM_RGB
  1843. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1844. depends on FB_PNX4008_DUM
  1845. select FB_CFB_FILLRECT
  1846. select FB_CFB_COPYAREA
  1847. select FB_CFB_IMAGEBLIT
  1848. ---help---
  1849. Say Y here to enable support for PNX4008 RGB Framebuffer
  1850. config FB_IBM_GXT4500
  1851. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1852. depends on FB && PPC
  1853. select FB_CFB_FILLRECT
  1854. select FB_CFB_COPYAREA
  1855. select FB_CFB_IMAGEBLIT
  1856. ---help---
  1857. Say Y here to enable support for the IBM GXT4500P display
  1858. adaptor, found on some IBM System P (pSeries) machines.
  1859. config FB_PS3
  1860. tristate "PS3 GPU framebuffer driver"
  1861. depends on FB && PS3_PS3AV
  1862. select FB_SYS_FILLRECT
  1863. select FB_SYS_COPYAREA
  1864. select FB_SYS_IMAGEBLIT
  1865. select FB_SYS_FOPS
  1866. select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1867. ---help---
  1868. Include support for the virtual frame buffer in the PS3 platform.
  1869. config FB_PS3_DEFAULT_SIZE_M
  1870. int "PS3 default frame buffer size (in MiB)"
  1871. depends on FB_PS3
  1872. default 9
  1873. ---help---
  1874. This is the default size (in MiB) of the virtual frame buffer in
  1875. the PS3.
  1876. The default value can be overridden on the kernel command line
  1877. using the "ps3fb" option (e.g. "ps3fb=9M");
  1878. config FB_XILINX
  1879. tristate "Xilinx frame buffer support"
  1880. depends on FB && (XILINX_VIRTEX || MICROBLAZE)
  1881. select FB_CFB_FILLRECT
  1882. select FB_CFB_COPYAREA
  1883. select FB_CFB_IMAGEBLIT
  1884. ---help---
  1885. Include support for the Xilinx ML300/ML403 reference design
  1886. framebuffer. ML300 carries a 640*480 LCD display on the board,
  1887. ML403 uses a standard DB15 VGA connector.
  1888. config FB_COBALT
  1889. tristate "Cobalt server LCD frame buffer support"
  1890. depends on FB && MIPS_COBALT
  1891. config FB_SH7760
  1892. bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
  1893. depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
  1894. || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
  1895. select FB_CFB_FILLRECT
  1896. select FB_CFB_COPYAREA
  1897. select FB_CFB_IMAGEBLIT
  1898. ---help---
  1899. Support for the SH7760/SH7763/SH7720/SH7721 integrated
  1900. (D)STN/TFT LCD Controller.
  1901. Supports display resolutions up to 1024x1024 pixel, grayscale and
  1902. color operation, with depths ranging from 1 bpp to 8 bpp monochrome
  1903. and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
  1904. panels <= 320 pixel horizontal resolution.
  1905. config FB_DA8XX
  1906. tristate "DA8xx/OMAP-L1xx Framebuffer support"
  1907. depends on FB && ARCH_DAVINCI_DA8XX
  1908. select FB_CFB_FILLRECT
  1909. select FB_CFB_COPYAREA
  1910. select FB_CFB_IMAGEBLIT
  1911. ---help---
  1912. This is the frame buffer device driver for the TI LCD controller
  1913. found on DA8xx/OMAP-L1xx SoCs.
  1914. If unsure, say N.
  1915. config FB_VIRTUAL
  1916. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1917. depends on FB
  1918. select FB_SYS_FILLRECT
  1919. select FB_SYS_COPYAREA
  1920. select FB_SYS_IMAGEBLIT
  1921. select FB_SYS_FOPS
  1922. ---help---
  1923. This is a `virtual' frame buffer device. It operates on a chunk of
  1924. unswappable kernel memory instead of on the memory of a graphics
  1925. board. This means you cannot see any output sent to this frame
  1926. buffer device, while it does consume precious memory. The main use
  1927. of this frame buffer device is testing and debugging the frame
  1928. buffer subsystem. Do NOT enable it for normal systems! To protect
  1929. the innocent, it has to be enabled explicitly at boot time using the
  1930. kernel option `video=vfb:'.
  1931. To compile this driver as a module, choose M here: the
  1932. module will be called vfb. In order to load it, you must use
  1933. the vfb_enable=1 option.
  1934. If unsure, say N.
  1935. config XEN_FBDEV_FRONTEND
  1936. tristate "Xen virtual frame buffer support"
  1937. depends on FB && XEN
  1938. select FB_SYS_FILLRECT
  1939. select FB_SYS_COPYAREA
  1940. select FB_SYS_IMAGEBLIT
  1941. select FB_SYS_FOPS
  1942. select FB_DEFERRED_IO
  1943. select XEN_XENBUS_FRONTEND
  1944. default y
  1945. help
  1946. This driver implements the front-end of the Xen virtual
  1947. frame buffer driver. It communicates with a back-end
  1948. in another domain.
  1949. config FB_METRONOME
  1950. tristate "E-Ink Metronome/8track controller support"
  1951. depends on FB
  1952. select FB_SYS_FILLRECT
  1953. select FB_SYS_COPYAREA
  1954. select FB_SYS_IMAGEBLIT
  1955. select FB_SYS_FOPS
  1956. select FB_DEFERRED_IO
  1957. help
  1958. This driver implements support for the E-Ink Metronome
  1959. controller. The pre-release name for this device was 8track
  1960. and could also have been called by some vendors as PVI-nnnn.
  1961. config FB_MB862XX
  1962. tristate "Fujitsu MB862xx GDC support"
  1963. depends on FB
  1964. depends on PCI || (OF && PPC)
  1965. select FB_CFB_FILLRECT
  1966. select FB_CFB_COPYAREA
  1967. select FB_CFB_IMAGEBLIT
  1968. ---help---
  1969. Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
  1970. choice
  1971. prompt "GDC variant"
  1972. depends on FB_MB862XX
  1973. config FB_MB862XX_PCI_GDC
  1974. bool "Carmine/Coral-P(A) GDC"
  1975. depends on PCI
  1976. ---help---
  1977. This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
  1978. PCI graphics controller devices.
  1979. config FB_MB862XX_LIME
  1980. bool "Lime GDC"
  1981. depends on OF && PPC
  1982. select FB_FOREIGN_ENDIAN
  1983. select FB_LITTLE_ENDIAN
  1984. ---help---
  1985. Framebuffer support for Fujitsu Lime GDC on host CPU bus.
  1986. endchoice
  1987. config FB_MB862XX_I2C
  1988. bool "Support I2C bus on MB862XX GDC"
  1989. depends on FB_MB862XX && I2C
  1990. default y
  1991. help
  1992. Selecting this option adds Coral-P(A)/Lime GDC I2C bus adapter
  1993. driver to support accessing I2C devices on controller's I2C bus.
  1994. These are usually some video decoder chips.
  1995. config FB_EP93XX
  1996. tristate "EP93XX frame buffer support"
  1997. depends on FB && ARCH_EP93XX
  1998. select FB_CFB_FILLRECT
  1999. select FB_CFB_COPYAREA
  2000. select FB_CFB_IMAGEBLIT
  2001. ---help---
  2002. Framebuffer driver for the Cirrus Logic EP93XX series of processors.
  2003. This driver is also available as a module. The module will be called
  2004. ep93xx-fb.
  2005. config FB_PRE_INIT_FB
  2006. bool "Don't reinitialize, use bootloader's GDC/Display configuration"
  2007. depends on FB && FB_MB862XX_LIME
  2008. ---help---
  2009. Select this option if display contents should be inherited as set by
  2010. the bootloader.
  2011. config FB_MSM
  2012. tristate "MSM Framebuffer support"
  2013. depends on FB && ARCH_MSM
  2014. select FB_CFB_FILLRECT
  2015. select FB_CFB_COPYAREA
  2016. select FB_CFB_IMAGEBLIT
  2017. config FB_MX3
  2018. tristate "MX3 Framebuffer support"
  2019. depends on FB && MX3_IPU
  2020. select FB_CFB_FILLRECT
  2021. select FB_CFB_COPYAREA
  2022. select FB_CFB_IMAGEBLIT
  2023. default y
  2024. help
  2025. This is a framebuffer device for the i.MX31 LCD Controller. So
  2026. far only synchronous displays are supported. If you plan to use
  2027. an LCD display with your i.MX31 system, say Y here.
  2028. config FB_BROADSHEET
  2029. tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
  2030. depends on FB
  2031. select FB_SYS_FILLRECT
  2032. select FB_SYS_COPYAREA
  2033. select FB_SYS_IMAGEBLIT
  2034. select FB_SYS_FOPS
  2035. select FB_DEFERRED_IO
  2036. help
  2037. This driver implements support for the E-Ink Broadsheet
  2038. controller. The release name for this device was Epson S1D13521
  2039. and could also have been called by other names when coupled with
  2040. a bridge adapter.
  2041. config FB_JZ4740
  2042. tristate "JZ4740 LCD framebuffer support"
  2043. depends on FB && MACH_JZ4740
  2044. select FB_SYS_FILLRECT
  2045. select FB_SYS_COPYAREA
  2046. select FB_SYS_IMAGEBLIT
  2047. help
  2048. Framebuffer support for the JZ4740 SoC.
  2049. config FB_MXS
  2050. tristate "MXS LCD framebuffer support"
  2051. depends on FB && ARCH_MXS
  2052. select FB_CFB_FILLRECT
  2053. select FB_CFB_COPYAREA
  2054. select FB_CFB_IMAGEBLIT
  2055. help
  2056. Framebuffer support for the MXS SoC.
  2057. config FB_PUV3_UNIGFX
  2058. tristate "PKUnity v3 Unigfx framebuffer support"
  2059. depends on FB && UNICORE32 && ARCH_PUV3
  2060. select FB_SYS_FILLRECT
  2061. select FB_SYS_COPYAREA
  2062. select FB_SYS_IMAGEBLIT
  2063. select FB_SYS_FOPS
  2064. help
  2065. Choose this option if you want to use the Unigfx device as a
  2066. framebuffer device. Without the support of PCI & AGP.
  2067. source "drivers/video/omap/Kconfig"
  2068. source "drivers/video/omap2/Kconfig"
  2069. source "drivers/video/backlight/Kconfig"
  2070. source "drivers/video/display/Kconfig"
  2071. if VT
  2072. source "drivers/video/console/Kconfig"
  2073. endif
  2074. if FB || SGI_NEWPORT_CONSOLE
  2075. source "drivers/video/logo/Kconfig"
  2076. endif
  2077. endmenu