Kconfig 65 KB

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