Kconfig 71 KB

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