Kconfig 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  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.tahallah.demon.co.uk/programming/prog.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 && ARM && ARCH_IMX
  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 FB && EXPERIMENTAL && PCI && X86_32
  915. select AGP
  916. select AGP_INTEL
  917. select FB_MODE_HELPERS
  918. select FB_CFB_FILLRECT
  919. select FB_CFB_COPYAREA
  920. select FB_CFB_IMAGEBLIT
  921. select VGASTATE
  922. help
  923. This driver supports the on-board graphics built in to the Intel 810
  924. and 815 chipsets. Say Y if you have and plan to use such a board.
  925. To compile this driver as a module, choose M here: the
  926. module will be called i810fb.
  927. For more information, please read
  928. <file:Documentation/fb/intel810.txt>
  929. config FB_I810_GTF
  930. bool "use VESA Generalized Timing Formula"
  931. depends on FB_I810
  932. help
  933. If you say Y, then the VESA standard, Generalized Timing Formula
  934. or GTF, will be used to calculate the required video timing values
  935. per video mode. Since the GTF allows nondiscrete timings
  936. (nondiscrete being a range of values as opposed to discrete being a
  937. set of values), you'll be able to use any combination of horizontal
  938. and vertical resolutions, and vertical refresh rates without having
  939. to specify your own timing parameters. This is especially useful
  940. to maximize the performance of an aging display, or if you just
  941. have a display with nonstandard dimensions. A VESA compliant
  942. monitor is recommended, but can still work with non-compliant ones.
  943. If you need or want this, then select this option. The timings may
  944. not be compliant with Intel's recommended values. Use at your own
  945. risk.
  946. If you say N, the driver will revert to discrete video timings
  947. using a set recommended by Intel in their documentation.
  948. If unsure, say N.
  949. config FB_I810_I2C
  950. bool "Enable DDC Support"
  951. depends on FB_I810 && FB_I810_GTF
  952. select FB_DDC
  953. help
  954. config FB_LE80578
  955. tristate "Intel LE80578 (Vermilion) support"
  956. depends on FB && PCI && X86
  957. select FB_MODE_HELPERS
  958. select FB_CFB_FILLRECT
  959. select FB_CFB_COPYAREA
  960. select FB_CFB_IMAGEBLIT
  961. help
  962. This driver supports the LE80578 (Vermilion Range) chipset
  963. config FB_CARILLO_RANCH
  964. tristate "Intel Carillo Ranch support"
  965. depends on FB_LE80578 && FB && PCI && X86
  966. help
  967. This driver supports the LE80578 (Carillo Ranch) board
  968. config FB_INTEL
  969. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
  970. depends on FB && EXPERIMENTAL && PCI && X86
  971. select AGP
  972. select AGP_INTEL
  973. select FB_MODE_HELPERS
  974. select FB_CFB_FILLRECT
  975. select FB_CFB_COPYAREA
  976. select FB_CFB_IMAGEBLIT
  977. select FB_BOOT_VESA_SUPPORT
  978. help
  979. This driver supports the on-board graphics built in to the Intel
  980. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
  981. Say Y if you have and plan to use such a board.
  982. If you say Y here and want DDC/I2C support you must first say Y to
  983. "I2C support" and "I2C bit-banging support" in the character devices
  984. section.
  985. If you say M here then "I2C support" and "I2C bit-banging support"
  986. can be build either as modules or built-in.
  987. To compile this driver as a module, choose M here: the
  988. module will be called intelfb.
  989. For more information, please read <file:Documentation/fb/intelfb.txt>
  990. config FB_INTEL_DEBUG
  991. bool "Intel driver Debug Messages"
  992. depends on FB_INTEL
  993. ---help---
  994. Say Y here if you want the Intel driver to output all sorts
  995. of debugging information to provide to the maintainer when
  996. something goes wrong.
  997. config FB_INTEL_I2C
  998. bool "DDC/I2C for Intel framebuffer support"
  999. depends on FB_INTEL
  1000. select FB_DDC
  1001. default y
  1002. help
  1003. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  1004. config FB_MATROX
  1005. tristate "Matrox acceleration"
  1006. depends on FB && PCI
  1007. select FB_CFB_FILLRECT
  1008. select FB_CFB_COPYAREA
  1009. select FB_CFB_IMAGEBLIT
  1010. select FB_TILEBLITTING
  1011. select FB_MACMODES if PPC_PMAC
  1012. ---help---
  1013. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  1014. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  1015. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  1016. Matrox G400, G450 or G550 card in your box.
  1017. To compile this driver as a module, choose M here: the
  1018. module will be called matroxfb.
  1019. You can pass several parameters to the driver at boot time or at
  1020. module load time. The parameters look like "video=matrox:XXX", and
  1021. are described in <file:Documentation/fb/matroxfb.txt>.
  1022. config FB_MATROX_MILLENIUM
  1023. bool "Millennium I/II support"
  1024. depends on FB_MATROX
  1025. help
  1026. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  1027. video card. If you select "Advanced lowlevel driver options" below,
  1028. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  1029. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  1030. also use font widths different from 8.
  1031. config FB_MATROX_MYSTIQUE
  1032. bool "Mystique support"
  1033. depends on FB_MATROX
  1034. help
  1035. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  1036. video card. If you select "Advanced lowlevel driver options" below,
  1037. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  1038. packed pixel and 32 bpp packed pixel. You can also use font widths
  1039. different from 8.
  1040. config FB_MATROX_G
  1041. bool "G100/G200/G400/G450/G550 support"
  1042. depends on FB_MATROX
  1043. ---help---
  1044. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  1045. video card. If you select "Advanced lowlevel driver options", you
  1046. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  1047. pixel and 32 bpp packed pixel. You can also use font widths
  1048. different from 8.
  1049. If you need support for G400 secondary head, you must first say Y to
  1050. "I2C support" in the character devices section, and then to
  1051. "Matrox I2C support" and "G400 second head support" here in the
  1052. framebuffer section. G450/G550 secondary head and digital output
  1053. are supported without additional modules.
  1054. The driver starts in monitor mode. You must use the matroxset tool
  1055. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  1056. swap primary and secondary head outputs, or to change output mode.
  1057. Secondary head driver always start in 640x480 resolution and you
  1058. must use fbset to change it.
  1059. Do not forget that second head supports only 16 and 32 bpp
  1060. packed pixels, so it is a good idea to compile them into the kernel
  1061. too. You can use only some font widths, as the driver uses generic
  1062. painting procedures (the secondary head does not use acceleration
  1063. engine).
  1064. G450/G550 hardware can display TV picture only from secondary CRTC,
  1065. and it performs no scaling, so picture must have 525 or 625 lines.
  1066. config FB_MATROX_I2C
  1067. tristate "Matrox I2C support"
  1068. depends on FB_MATROX
  1069. select FB_DDC
  1070. ---help---
  1071. This drivers creates I2C buses which are needed for accessing the
  1072. DDC (I2C) bus present on all Matroxes, an I2C bus which
  1073. interconnects Matrox optional devices, like MGA-TVO on G200 and
  1074. G400, and the secondary head DDC bus, present on G400 only.
  1075. You can say Y or M here if you want to experiment with monitor
  1076. detection code. You must say Y or M here if you want to use either
  1077. second head of G400 or MGA-TVO on G200 or G400.
  1078. If you compile it as module, it will create a module named
  1079. i2c-matroxfb.
  1080. config FB_MATROX_MAVEN
  1081. tristate "G400 second head support"
  1082. depends on FB_MATROX_G && FB_MATROX_I2C
  1083. ---help---
  1084. WARNING !!! This support does not work with G450 !!!
  1085. Say Y or M here if you want to use a secondary head (meaning two
  1086. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1087. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1088. secondary head output is blanked while you are in X. With XFree
  1089. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1090. the fbdev driver on first head and the fbdev driver on second head.
  1091. If you compile it as module, two modules are created,
  1092. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1093. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1094. also load i2c-matroxfb to get it to run.
  1095. The driver starts in monitor mode and you must use the matroxset
  1096. tool (available at
  1097. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1098. PAL or NTSC or to swap primary and secondary head outputs.
  1099. Secondary head driver also always start in 640x480 resolution, you
  1100. must use fbset to change it.
  1101. Also do not forget that second head supports only 16 and 32 bpp
  1102. packed pixels, so it is a good idea to compile them into the kernel
  1103. too. You can use only some font widths, as the driver uses generic
  1104. painting procedures (the secondary head does not use acceleration
  1105. engine).
  1106. config FB_MATROX_MULTIHEAD
  1107. bool "Multihead support"
  1108. depends on FB_MATROX
  1109. ---help---
  1110. Say Y here if you have more than one (supported) Matrox device in
  1111. your computer and you want to use all of them for different monitors
  1112. ("multihead"). If you have only one device, you should say N because
  1113. the driver compiled with Y is larger and a bit slower, especially on
  1114. ia32 (ix86).
  1115. If you said M to "Matrox unified accelerated driver" and N here, you
  1116. will still be able to use several Matrox devices simultaneously:
  1117. insert several instances of the module matroxfb into the kernel
  1118. with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  1119. for the different Matrox devices. This method is slightly faster but
  1120. uses 40 KB of kernel memory per Matrox card.
  1121. There is no need for enabling 'Matrox multihead support' if you have
  1122. only one Matrox card in the box.
  1123. config FB_RADEON
  1124. tristate "ATI Radeon display support"
  1125. depends on FB && PCI
  1126. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1127. select FB_MODE_HELPERS
  1128. select FB_CFB_FILLRECT
  1129. select FB_CFB_COPYAREA
  1130. select FB_CFB_IMAGEBLIT
  1131. select FB_MACMODES if PPC_OF
  1132. help
  1133. Choose this option if you want to use an ATI Radeon graphics card as
  1134. a framebuffer device. There are both PCI and AGP versions. You
  1135. don't need to choose this to run the Radeon in plain VGA mode.
  1136. If you say Y here and want DDC/I2C support you must first say Y to
  1137. "I2C support" and "I2C bit-banging support" in the character devices
  1138. section.
  1139. If you say M here then "I2C support" and "I2C bit-banging support"
  1140. can be build either as modules or built-in.
  1141. There is a product page at
  1142. http://apps.ati.com/ATIcompare/
  1143. config FB_RADEON_I2C
  1144. bool "DDC/I2C for ATI Radeon support"
  1145. depends on FB_RADEON
  1146. select FB_DDC
  1147. default y
  1148. help
  1149. Say Y here if you want DDC/I2C support for your Radeon board.
  1150. config FB_RADEON_BACKLIGHT
  1151. bool "Support for backlight control"
  1152. depends on FB_RADEON
  1153. default y
  1154. help
  1155. Say Y here if you want to control the backlight of your display.
  1156. config FB_RADEON_DEBUG
  1157. bool "Lots of debug output from Radeon driver"
  1158. depends on FB_RADEON
  1159. default n
  1160. help
  1161. Say Y here if you want the Radeon driver to output all sorts
  1162. of debugging information to provide to the maintainer when
  1163. something goes wrong.
  1164. config FB_ATY128
  1165. tristate "ATI Rage128 display support"
  1166. depends on FB && PCI
  1167. select FB_CFB_FILLRECT
  1168. select FB_CFB_COPYAREA
  1169. select FB_CFB_IMAGEBLIT
  1170. select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  1171. select FB_MACMODES if PPC_PMAC
  1172. help
  1173. This driver supports graphics boards with the ATI Rage128 chips.
  1174. Say Y if you have such a graphics board and read
  1175. <file:Documentation/fb/aty128fb.txt>.
  1176. To compile this driver as a module, choose M here: the
  1177. module will be called aty128fb.
  1178. config FB_ATY128_BACKLIGHT
  1179. bool "Support for backlight control"
  1180. depends on FB_ATY128
  1181. default y
  1182. help
  1183. Say Y here if you want to control the backlight of your display.
  1184. config FB_ATY
  1185. tristate "ATI Mach64 display support" if PCI || ATARI
  1186. depends on FB && !SPARC32
  1187. select FB_CFB_FILLRECT
  1188. select FB_CFB_COPYAREA
  1189. select FB_CFB_IMAGEBLIT
  1190. select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  1191. select FB_MACMODES if PPC
  1192. help
  1193. This driver supports graphics boards with the ATI Mach64 chips.
  1194. Say Y if you have such a graphics board.
  1195. To compile this driver as a module, choose M here: the
  1196. module will be called atyfb.
  1197. config FB_ATY_CT
  1198. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  1199. depends on PCI && FB_ATY
  1200. default y if SPARC64 && PCI
  1201. help
  1202. Say Y here to support use of ATI's 64-bit Rage boards (or other
  1203. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1204. framebuffer device. The ATI product support page for these boards
  1205. is at <http://support.ati.com/products/pc/mach64/>.
  1206. config FB_ATY_GENERIC_LCD
  1207. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1208. depends on FB_ATY_CT
  1209. help
  1210. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1211. Rage XC, or Rage XL chipset.
  1212. config FB_ATY_GX
  1213. bool "Mach64 GX support" if PCI
  1214. depends on FB_ATY
  1215. default y if ATARI
  1216. help
  1217. Say Y here to support use of the ATI Mach64 Graphics Expression
  1218. board (or other boards based on the Mach64 GX chipset) as a
  1219. framebuffer device. The ATI product support page for these boards
  1220. is at
  1221. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1222. config FB_ATY_BACKLIGHT
  1223. bool "Support for backlight control"
  1224. depends on FB_ATY
  1225. default y
  1226. help
  1227. Say Y here if you want to control the backlight of your display.
  1228. config FB_S3
  1229. tristate "S3 Trio/Virge support"
  1230. depends on FB && PCI
  1231. select FB_CFB_FILLRECT
  1232. select FB_CFB_COPYAREA
  1233. select FB_CFB_IMAGEBLIT
  1234. select FB_TILEBLITTING
  1235. select FB_SVGALIB
  1236. select VGASTATE
  1237. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1238. ---help---
  1239. Driver for graphics boards with S3 Trio / S3 Virge chip.
  1240. config FB_SAVAGE
  1241. tristate "S3 Savage support"
  1242. depends on FB && PCI && EXPERIMENTAL
  1243. select FB_MODE_HELPERS
  1244. select FB_CFB_FILLRECT
  1245. select FB_CFB_COPYAREA
  1246. select FB_CFB_IMAGEBLIT
  1247. select VGASTATE
  1248. help
  1249. This driver supports notebooks and computers with S3 Savage PCI/AGP
  1250. chips.
  1251. Say Y if you have such a graphics card.
  1252. To compile this driver as a module, choose M here; the module
  1253. will be called savagefb.
  1254. config FB_SAVAGE_I2C
  1255. bool "Enable DDC2 Support"
  1256. depends on FB_SAVAGE
  1257. select FB_DDC
  1258. help
  1259. This enables I2C support for S3 Savage Chipsets. This is used
  1260. only for getting EDID information from the attached display
  1261. allowing for robust video mode handling and switching.
  1262. Because fbdev-2.6 requires that drivers must be able to
  1263. independently validate video mode parameters, you should say Y
  1264. here.
  1265. config FB_SAVAGE_ACCEL
  1266. bool "Enable Console Acceleration"
  1267. depends on FB_SAVAGE
  1268. default n
  1269. help
  1270. This option will compile in console acceleration support. If
  1271. the resulting framebuffer console has bothersome glitches, then
  1272. choose N here.
  1273. config FB_SIS
  1274. tristate "SiS/XGI display support"
  1275. depends on FB && PCI
  1276. select FB_CFB_FILLRECT
  1277. select FB_CFB_COPYAREA
  1278. select FB_CFB_IMAGEBLIT
  1279. select FB_BOOT_VESA_SUPPORT
  1280. help
  1281. This is the frame buffer device driver for the SiS 300, 315, 330
  1282. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1283. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1284. To compile this driver as a module, choose M here; the module
  1285. will be called sisfb.
  1286. config FB_SIS_300
  1287. bool "SiS 300 series support"
  1288. depends on FB_SIS
  1289. help
  1290. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1291. config FB_SIS_315
  1292. bool "SiS 315/330/340 series and XGI support"
  1293. depends on FB_SIS
  1294. help
  1295. Say Y here to support use of the SiS 315, 330 and 340 series
  1296. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1297. as XGI V3XT, V5, V8 and Z7.
  1298. config FB_VIA
  1299. tristate "VIA UniChrome (Pro) and Chrome9 display support"
  1300. depends on FB && PCI
  1301. select FB_CFB_FILLRECT
  1302. select FB_CFB_COPYAREA
  1303. select FB_CFB_IMAGEBLIT
  1304. select FB_SOFT_CURSOR
  1305. select I2C_ALGOBIT
  1306. select I2C
  1307. help
  1308. This is the frame buffer device driver for Graphics chips of VIA
  1309. UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
  1310. CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
  1311. /P4M900,VX800)
  1312. Say Y if you have a VIA UniChrome graphics board.
  1313. To compile this driver as a module, choose M here: the
  1314. module will be called viafb.
  1315. config FB_NEOMAGIC
  1316. tristate "NeoMagic display support"
  1317. depends on FB && PCI
  1318. select FB_MODE_HELPERS
  1319. select FB_CFB_FILLRECT
  1320. select FB_CFB_COPYAREA
  1321. select FB_CFB_IMAGEBLIT
  1322. select VGASTATE
  1323. help
  1324. This driver supports notebooks with NeoMagic PCI chips.
  1325. Say Y if you have such a graphics card.
  1326. To compile this driver as a module, choose M here: the
  1327. module will be called neofb.
  1328. config FB_KYRO
  1329. tristate "IMG Kyro support"
  1330. depends on FB && PCI
  1331. select FB_CFB_FILLRECT
  1332. select FB_CFB_COPYAREA
  1333. select FB_CFB_IMAGEBLIT
  1334. help
  1335. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1336. graphics board.
  1337. To compile this driver as a module, choose M here: the
  1338. module will be called kyrofb.
  1339. config FB_3DFX
  1340. tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
  1341. depends on FB && PCI
  1342. select FB_CFB_IMAGEBLIT
  1343. select FB_CFB_FILLRECT
  1344. select FB_CFB_COPYAREA
  1345. help
  1346. This driver supports graphics boards with the 3Dfx Banshee,
  1347. Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
  1348. such a graphics board.
  1349. To compile this driver as a module, choose M here: the
  1350. module will be called tdfxfb.
  1351. config FB_3DFX_ACCEL
  1352. bool "3Dfx Acceleration functions (EXPERIMENTAL)"
  1353. depends on FB_3DFX && EXPERIMENTAL
  1354. ---help---
  1355. This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
  1356. device driver with acceleration functions.
  1357. config FB_VOODOO1
  1358. tristate "3Dfx Voodoo Graphics (sst1) support"
  1359. depends on FB && PCI
  1360. select FB_CFB_FILLRECT
  1361. select FB_CFB_COPYAREA
  1362. select FB_CFB_IMAGEBLIT
  1363. ---help---
  1364. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1365. Voodoo2 (cvg) based graphics card.
  1366. To compile this driver as a module, choose M here: the
  1367. module will be called sstfb.
  1368. WARNING: Do not use any application that uses the 3D engine
  1369. (namely glide) while using this driver.
  1370. Please read the <file:Documentation/fb/sstfb.txt> for supported
  1371. options and other important info support.
  1372. config FB_VT8623
  1373. tristate "VIA VT8623 support"
  1374. depends on FB && PCI
  1375. select FB_CFB_FILLRECT
  1376. select FB_CFB_COPYAREA
  1377. select FB_CFB_IMAGEBLIT
  1378. select FB_TILEBLITTING
  1379. select FB_SVGALIB
  1380. select VGASTATE
  1381. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1382. ---help---
  1383. Driver for CastleRock integrated graphics core in the
  1384. VIA VT8623 [Apollo CLE266] chipset.
  1385. config FB_CYBLA
  1386. tristate "Cyberblade/i1 support"
  1387. depends on FB && PCI && X86_32 && !64BIT
  1388. select FB_CFB_IMAGEBLIT
  1389. ---help---
  1390. This driver is supposed to support the Trident Cyberblade/i1
  1391. graphics core integrated in the VIA VT8601A North Bridge,
  1392. also known as VIA Apollo PLE133.
  1393. Status:
  1394. - Developed, tested and working on EPIA 5000 and EPIA 800.
  1395. - Does work reliable on all systems with CRT/LCD connected to
  1396. normal VGA ports.
  1397. - Should work on systems that do use the internal LCD port, but
  1398. this is absolutely not tested.
  1399. Character imageblit, copyarea and rectangle fill are hw accelerated,
  1400. ypan scrolling is used by default.
  1401. Please do read <file:Documentation/fb/cyblafb/*>.
  1402. To compile this driver as a module, choose M here: the
  1403. module will be called cyblafb.
  1404. config FB_TRIDENT
  1405. tristate "Trident support"
  1406. depends on FB && PCI
  1407. select FB_CFB_FILLRECT
  1408. select FB_CFB_COPYAREA
  1409. select FB_CFB_IMAGEBLIT
  1410. ---help---
  1411. This is the frame buffer device driver for Trident PCI/AGP chipsets.
  1412. Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
  1413. and Blade XP.
  1414. There are also integrated versions of these chips called CyberXXXX,
  1415. CyberImage or CyberBlade. These chips are mostly found in laptops
  1416. but also on some motherboards. For more information, read
  1417. <file:Documentation/fb/tridentfb.txt>
  1418. Say Y if you have such a graphics board.
  1419. To compile this driver as a module, choose M here: the
  1420. module will be called tridentfb.
  1421. config FB_TRIDENT_ACCEL
  1422. bool "Trident Acceleration functions (EXPERIMENTAL)"
  1423. depends on FB_TRIDENT && EXPERIMENTAL
  1424. ---help---
  1425. This will compile the Trident frame buffer device with
  1426. acceleration functions.
  1427. config FB_ARK
  1428. tristate "ARK 2000PV support"
  1429. depends on FB && PCI
  1430. select FB_CFB_FILLRECT
  1431. select FB_CFB_COPYAREA
  1432. select FB_CFB_IMAGEBLIT
  1433. select FB_TILEBLITTING
  1434. select FB_SVGALIB
  1435. select VGASTATE
  1436. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1437. ---help---
  1438. Driver for PCI graphics boards with ARK 2000PV chip
  1439. and ICS 5342 RAMDAC.
  1440. config FB_PM3
  1441. tristate "Permedia3 support (EXPERIMENTAL)"
  1442. depends on FB && PCI && EXPERIMENTAL
  1443. select FB_CFB_FILLRECT
  1444. select FB_CFB_COPYAREA
  1445. select FB_CFB_IMAGEBLIT
  1446. help
  1447. This is the frame buffer device driver for the 3DLabs Permedia3
  1448. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1449. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1450. and maybe other boards.
  1451. config FB_CARMINE
  1452. tristate "Fujitsu carmine frame buffer support"
  1453. depends on FB && PCI
  1454. select FB_CFB_FILLRECT
  1455. select FB_CFB_COPYAREA
  1456. select FB_CFB_IMAGEBLIT
  1457. help
  1458. This is the frame buffer device driver for the Fujitsu Carmine chip.
  1459. The driver provides two independent frame buffer devices.
  1460. choice
  1461. depends on FB_CARMINE
  1462. prompt "DRAM timing"
  1463. default FB_CARMINE_DRAM_EVAL
  1464. config FB_CARMINE_DRAM_EVAL
  1465. bool "Eval board timings"
  1466. help
  1467. Use timings which work on the eval card.
  1468. config CARMINE_DRAM_CUSTOM
  1469. bool "Custom board timings"
  1470. help
  1471. Use custom board timings.
  1472. endchoice
  1473. config FB_AU1100
  1474. bool "Au1100 LCD Driver"
  1475. depends on (FB = y) && MIPS && SOC_AU1100
  1476. select FB_CFB_FILLRECT
  1477. select FB_CFB_COPYAREA
  1478. select FB_CFB_IMAGEBLIT
  1479. help
  1480. This is the framebuffer driver for the AMD Au1100 SOC. It can drive
  1481. various panels and CRTs by passing in kernel cmd line option
  1482. au1100fb:panel=<name>.
  1483. config FB_AU1200
  1484. bool "Au1200 LCD Driver"
  1485. depends on (FB = y) && MIPS && SOC_AU1200
  1486. select FB_CFB_FILLRECT
  1487. select FB_CFB_COPYAREA
  1488. select FB_CFB_IMAGEBLIT
  1489. help
  1490. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1491. various panels and CRTs by passing in kernel cmd line option
  1492. au1200fb:panel=<name>.
  1493. source "drivers/video/geode/Kconfig"
  1494. config FB_HIT
  1495. tristate "HD64461 Frame Buffer support"
  1496. depends on FB && HD64461
  1497. select FB_CFB_FILLRECT
  1498. select FB_CFB_COPYAREA
  1499. select FB_CFB_IMAGEBLIT
  1500. help
  1501. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1502. frame buffer card.
  1503. config FB_PMAG_AA
  1504. bool "PMAG-AA TURBOchannel framebuffer support"
  1505. depends on (FB = y) && TC
  1506. select FB_CFB_FILLRECT
  1507. select FB_CFB_COPYAREA
  1508. select FB_CFB_IMAGEBLIT
  1509. help
  1510. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1511. used mainly in the MIPS-based DECstation series.
  1512. config FB_PMAG_BA
  1513. tristate "PMAG-BA TURBOchannel framebuffer support"
  1514. depends on FB && TC
  1515. select FB_CFB_FILLRECT
  1516. select FB_CFB_COPYAREA
  1517. select FB_CFB_IMAGEBLIT
  1518. help
  1519. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1520. used mainly in the MIPS-based DECstation series.
  1521. config FB_PMAGB_B
  1522. tristate "PMAGB-B TURBOchannel framebuffer support"
  1523. depends on FB && TC
  1524. select FB_CFB_FILLRECT
  1525. select FB_CFB_COPYAREA
  1526. select FB_CFB_IMAGEBLIT
  1527. help
  1528. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1529. in the MIPS-based DECstation series. The card is currently only
  1530. supported in 1280x1024x8 mode.
  1531. config FB_MAXINE
  1532. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1533. depends on (FB = y) && MACH_DECSTATION
  1534. select FB_CFB_FILLRECT
  1535. select FB_CFB_COPYAREA
  1536. select FB_CFB_IMAGEBLIT
  1537. help
  1538. Support for the onboard framebuffer (1024x768x8) in the Personal
  1539. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1540. Codename "Maxine").
  1541. config FB_G364
  1542. bool "G364 frame buffer support"
  1543. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1544. select FB_CFB_FILLRECT
  1545. select FB_CFB_COPYAREA
  1546. select FB_CFB_IMAGEBLIT
  1547. help
  1548. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1549. Olivetti M700-10 systems.
  1550. config FB_68328
  1551. bool "Motorola 68328 native frame buffer support"
  1552. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1553. select FB_CFB_FILLRECT
  1554. select FB_CFB_COPYAREA
  1555. select FB_CFB_IMAGEBLIT
  1556. help
  1557. Say Y here if you want to support the built-in frame buffer of
  1558. the Motorola 68328 CPU family.
  1559. config FB_PXA
  1560. tristate "PXA LCD framebuffer support"
  1561. depends on FB && ARCH_PXA
  1562. select FB_CFB_FILLRECT
  1563. select FB_CFB_COPYAREA
  1564. select FB_CFB_IMAGEBLIT
  1565. ---help---
  1566. Frame buffer driver for the built-in LCD controller in the Intel
  1567. PXA2x0 processor.
  1568. This driver is also available as a module ( = code which can be
  1569. inserted and removed from the running kernel whenever you want). The
  1570. module will be called pxafb. If you want to compile it as a module,
  1571. say M here and read <file:Documentation/kbuild/modules.txt>.
  1572. If unsure, say N.
  1573. config FB_PXA_OVERLAY
  1574. bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
  1575. default n
  1576. depends on FB_PXA && (PXA27x || PXA3xx)
  1577. config FB_PXA_SMARTPANEL
  1578. bool "PXA Smartpanel LCD support"
  1579. default n
  1580. depends on FB_PXA
  1581. config FB_PXA_PARAMETERS
  1582. bool "PXA LCD command line parameters"
  1583. default n
  1584. depends on FB_PXA
  1585. ---help---
  1586. Enable the use of kernel command line or module parameters
  1587. to configure the physical properties of the LCD panel when
  1588. using the PXA LCD driver.
  1589. This option allows you to override the panel parameters
  1590. supplied by the platform in order to support multiple
  1591. different models of flatpanel. If you will only be using a
  1592. single model of flatpanel then you can safely leave this
  1593. option disabled.
  1594. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1595. config FB_MBX
  1596. tristate "2700G LCD framebuffer support"
  1597. depends on FB && ARCH_PXA
  1598. select FB_CFB_FILLRECT
  1599. select FB_CFB_COPYAREA
  1600. select FB_CFB_IMAGEBLIT
  1601. ---help---
  1602. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1603. Accelerator
  1604. config FB_MBX_DEBUG
  1605. bool "Enable debugging info via debugfs"
  1606. depends on FB_MBX && DEBUG_FS
  1607. default n
  1608. ---help---
  1609. Enable this if you want debugging information using the debug
  1610. filesystem (debugfs)
  1611. If unsure, say N.
  1612. config FB_FSL_DIU
  1613. tristate "Freescale DIU framebuffer support"
  1614. depends on FB && FSL_SOC
  1615. select FB_CFB_FILLRECT
  1616. select FB_CFB_COPYAREA
  1617. select FB_CFB_IMAGEBLIT
  1618. select PPC_LIB_RHEAP
  1619. ---help---
  1620. Framebuffer driver for the Freescale SoC DIU
  1621. config FB_W100
  1622. tristate "W100 frame buffer support"
  1623. depends on FB && ARCH_PXA
  1624. select FB_CFB_FILLRECT
  1625. select FB_CFB_COPYAREA
  1626. select FB_CFB_IMAGEBLIT
  1627. ---help---
  1628. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1629. It can also drive the w3220 chip found on iPAQ hx4700.
  1630. This driver is also available as a module ( = code which can be
  1631. inserted and removed from the running kernel whenever you want). The
  1632. module will be called w100fb. If you want to compile it as a module,
  1633. say M here and read <file:Documentation/kbuild/modules.txt>.
  1634. If unsure, say N.
  1635. config FB_SH_MOBILE_LCDC
  1636. tristate "SuperH Mobile LCDC framebuffer support"
  1637. depends on FB && SUPERH
  1638. select FB_SYS_FILLRECT
  1639. select FB_SYS_COPYAREA
  1640. select FB_SYS_IMAGEBLIT
  1641. select FB_SYS_FOPS
  1642. select FB_DEFERRED_IO
  1643. ---help---
  1644. Frame buffer driver for the on-chip SH-Mobile LCD controller.
  1645. config FB_TMIO
  1646. tristate "Toshiba Mobile IO FrameBuffer support"
  1647. depends on FB && MFD_CORE
  1648. select FB_CFB_FILLRECT
  1649. select FB_CFB_COPYAREA
  1650. select FB_CFB_IMAGEBLIT
  1651. ---help---
  1652. Frame buffer driver for the Toshiba Mobile IO integrated as found
  1653. on the Sharp SL-6000 series
  1654. This driver is also available as a module ( = code which can be
  1655. inserted and removed from the running kernel whenever you want). The
  1656. module will be called tmiofb. If you want to compile it as a module,
  1657. say M here and read <file:Documentation/kbuild/modules.txt>.
  1658. If unsure, say N.
  1659. config FB_TMIO_ACCELL
  1660. bool "tmiofb acceleration"
  1661. depends on FB_TMIO
  1662. default y
  1663. config FB_S3C2410
  1664. tristate "S3C2410 LCD framebuffer support"
  1665. depends on FB && ARCH_S3C2410
  1666. select FB_CFB_FILLRECT
  1667. select FB_CFB_COPYAREA
  1668. select FB_CFB_IMAGEBLIT
  1669. ---help---
  1670. Frame buffer driver for the built-in LCD controller in the Samsung
  1671. S3C2410 processor.
  1672. This driver is also available as a module ( = code which can be
  1673. inserted and removed from the running kernel whenever you want). The
  1674. module will be called s3c2410fb. If you want to compile it as a module,
  1675. say M here and read <file:Documentation/kbuild/modules.txt>.
  1676. If unsure, say N.
  1677. config FB_S3C2410_DEBUG
  1678. bool "S3C2410 lcd debug messages"
  1679. depends on FB_S3C2410
  1680. help
  1681. Turn on debugging messages. Note that you can set/unset at run time
  1682. through sysfs
  1683. config FB_SM501
  1684. tristate "Silicon Motion SM501 framebuffer support"
  1685. depends on FB && MFD_SM501
  1686. select FB_CFB_FILLRECT
  1687. select FB_CFB_COPYAREA
  1688. select FB_CFB_IMAGEBLIT
  1689. ---help---
  1690. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1691. Motion SM501.
  1692. This driver is also available as a module ( = code which can be
  1693. inserted and removed from the running kernel whenever you want). The
  1694. module will be called sm501fb. If you want to compile it as a module,
  1695. say M here and read <file:Documentation/kbuild/modules.txt>.
  1696. If unsure, say N.
  1697. config FB_PNX4008_DUM
  1698. tristate "Display Update Module support on Philips PNX4008 board"
  1699. depends on FB && ARCH_PNX4008
  1700. ---help---
  1701. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1702. config FB_PNX4008_DUM_RGB
  1703. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1704. depends on FB_PNX4008_DUM
  1705. select FB_CFB_FILLRECT
  1706. select FB_CFB_COPYAREA
  1707. select FB_CFB_IMAGEBLIT
  1708. ---help---
  1709. Say Y here to enable support for PNX4008 RGB Framebuffer
  1710. config FB_IBM_GXT4500
  1711. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1712. depends on FB && PPC
  1713. select FB_CFB_FILLRECT
  1714. select FB_CFB_COPYAREA
  1715. select FB_CFB_IMAGEBLIT
  1716. ---help---
  1717. Say Y here to enable support for the IBM GXT4500P display
  1718. adaptor, found on some IBM System P (pSeries) machines.
  1719. config FB_PS3
  1720. tristate "PS3 GPU framebuffer driver"
  1721. depends on FB && PS3_PS3AV
  1722. select FB_SYS_FILLRECT
  1723. select FB_SYS_COPYAREA
  1724. select FB_SYS_IMAGEBLIT
  1725. select FB_SYS_FOPS
  1726. select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1727. ---help---
  1728. Include support for the virtual frame buffer in the PS3 platform.
  1729. config FB_PS3_DEFAULT_SIZE_M
  1730. int "PS3 default frame buffer size (in MiB)"
  1731. depends on FB_PS3
  1732. default 9
  1733. ---help---
  1734. This is the default size (in MiB) of the virtual frame buffer in
  1735. the PS3.
  1736. The default value can be overridden on the kernel command line
  1737. using the "ps3fb" option (e.g. "ps3fb=9M");
  1738. config FB_XILINX
  1739. tristate "Xilinx frame buffer support"
  1740. depends on FB && XILINX_VIRTEX
  1741. select FB_CFB_FILLRECT
  1742. select FB_CFB_COPYAREA
  1743. select FB_CFB_IMAGEBLIT
  1744. ---help---
  1745. Include support for the Xilinx ML300/ML403 reference design
  1746. framebuffer. ML300 carries a 640*480 LCD display on the board,
  1747. ML403 uses a standard DB15 VGA connector.
  1748. config FB_COBALT
  1749. tristate "Cobalt server LCD frame buffer support"
  1750. depends on FB && MIPS_COBALT
  1751. config FB_SH7760
  1752. bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
  1753. depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
  1754. || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
  1755. select FB_CFB_FILLRECT
  1756. select FB_CFB_COPYAREA
  1757. select FB_CFB_IMAGEBLIT
  1758. ---help---
  1759. Support for the SH7760/SH7763/SH7720/SH7721 integrated
  1760. (D)STN/TFT LCD Controller.
  1761. Supports display resolutions up to 1024x1024 pixel, grayscale and
  1762. color operation, with depths ranging from 1 bpp to 8 bpp monochrome
  1763. and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
  1764. panels <= 320 pixel horizontal resolution.
  1765. config FB_VIRTUAL
  1766. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1767. depends on FB
  1768. select FB_SYS_FILLRECT
  1769. select FB_SYS_COPYAREA
  1770. select FB_SYS_IMAGEBLIT
  1771. select FB_SYS_FOPS
  1772. ---help---
  1773. This is a `virtual' frame buffer device. It operates on a chunk of
  1774. unswappable kernel memory instead of on the memory of a graphics
  1775. board. This means you cannot see any output sent to this frame
  1776. buffer device, while it does consume precious memory. The main use
  1777. of this frame buffer device is testing and debugging the frame
  1778. buffer subsystem. Do NOT enable it for normal systems! To protect
  1779. the innocent, it has to be enabled explicitly at boot time using the
  1780. kernel option `video=vfb:'.
  1781. To compile this driver as a module, choose M here: the
  1782. module will be called vfb. In order to load it, you must use
  1783. the vfb_enable=1 option.
  1784. If unsure, say N.
  1785. config XEN_FBDEV_FRONTEND
  1786. tristate "Xen virtual frame buffer support"
  1787. depends on FB && XEN
  1788. select FB_SYS_FILLRECT
  1789. select FB_SYS_COPYAREA
  1790. select FB_SYS_IMAGEBLIT
  1791. select FB_SYS_FOPS
  1792. select FB_DEFERRED_IO
  1793. default y
  1794. help
  1795. This driver implements the front-end of the Xen virtual
  1796. frame buffer driver. It communicates with a back-end
  1797. in another domain.
  1798. config FB_METRONOME
  1799. tristate "E-Ink Metronome/8track controller support"
  1800. depends on FB
  1801. select FB_SYS_FILLRECT
  1802. select FB_SYS_COPYAREA
  1803. select FB_SYS_IMAGEBLIT
  1804. select FB_SYS_FOPS
  1805. select FB_DEFERRED_IO
  1806. help
  1807. This driver implements support for the E-Ink Metronome
  1808. controller. The pre-release name for this device was 8track
  1809. and could also have been called by some vendors as PVI-nnnn.
  1810. config FB_MB862XX
  1811. tristate "Fujitsu MB862xx GDC support"
  1812. depends on FB
  1813. select FB_CFB_FILLRECT
  1814. select FB_CFB_COPYAREA
  1815. select FB_CFB_IMAGEBLIT
  1816. ---help---
  1817. Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
  1818. config FB_MB862XX_PCI_GDC
  1819. bool "Carmine/Coral-P(A) GDC"
  1820. depends on PCI && FB_MB862XX
  1821. ---help---
  1822. This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
  1823. PCI graphics controller devices.
  1824. config FB_MB862XX_LIME
  1825. bool "Lime GDC"
  1826. depends on FB_MB862XX
  1827. depends on OF && !FB_MB862XX_PCI_GDC
  1828. select FB_FOREIGN_ENDIAN
  1829. select FB_LITTLE_ENDIAN
  1830. ---help---
  1831. Framebuffer support for Fujitsu Lime GDC on host CPU bus.
  1832. config FB_PRE_INIT_FB
  1833. bool "Don't reinitialize, use bootloader's GDC/Display configuration"
  1834. depends on FB_MB862XX_LIME
  1835. ---help---
  1836. Select this option if display contents should be inherited as set by
  1837. the bootloader.
  1838. source "drivers/video/omap/Kconfig"
  1839. source "drivers/video/backlight/Kconfig"
  1840. source "drivers/video/display/Kconfig"
  1841. if VT
  1842. source "drivers/video/console/Kconfig"
  1843. endif
  1844. if FB || SGI_NEWPORT_CONSOLE
  1845. source "drivers/video/logo/Kconfig"
  1846. endif
  1847. endmenu