Kconfig 74 KB

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