Kconfig 66 KB

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