Kconfig 71 KB

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