Kconfig 74 KB

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