Kconfig 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  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_BFIN_LQ035Q1
  528. tristate "SHARP LQ035Q1DH02 TFT LCD"
  529. depends on FB && BLACKFIN && SPI
  530. select FB_CFB_FILLRECT
  531. select FB_CFB_COPYAREA
  532. select FB_CFB_IMAGEBLIT
  533. select BFIN_GPTIMERS
  534. help
  535. This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
  536. the Blackfin Landscape LCD EZ-Extender Card.
  537. This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
  538. It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
  539. To compile this driver as a module, choose M here: the
  540. module will be called bfin-lq035q1-fb.
  541. config FB_STI
  542. tristate "HP STI frame buffer device support"
  543. depends on FB && PARISC
  544. select FB_CFB_FILLRECT
  545. select FB_CFB_COPYAREA
  546. select FB_CFB_IMAGEBLIT
  547. select STI_CONSOLE
  548. select VT
  549. default y
  550. ---help---
  551. STI refers to the HP "Standard Text Interface" which is a set of
  552. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  553. Enabling this option will implement the linux framebuffer device
  554. using calls to the STI BIOS routines for initialisation.
  555. If you enable this option, you will get a planar framebuffer device
  556. /dev/fb which will work on the most common HP graphic cards of the
  557. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  558. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  559. It is safe to enable this option, so you should probably say "Y".
  560. config FB_MAC
  561. bool "Generic Macintosh display support"
  562. depends on (FB = y) && MAC
  563. select FB_CFB_FILLRECT
  564. select FB_CFB_COPYAREA
  565. select FB_CFB_IMAGEBLIT
  566. select FB_MACMODES
  567. config FB_HP300
  568. bool
  569. depends on (FB = y) && DIO
  570. select FB_CFB_IMAGEBLIT
  571. default y
  572. config FB_TGA
  573. tristate "TGA/SFB+ framebuffer support"
  574. depends on FB && (ALPHA || TC)
  575. select FB_CFB_FILLRECT
  576. select FB_CFB_COPYAREA
  577. select FB_CFB_IMAGEBLIT
  578. select BITREVERSE
  579. ---help---
  580. This is the frame buffer device driver for generic TGA and SFB+
  581. graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  582. also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  583. TURBOchannel cards, also known as PMAGD-A, -B and -C.
  584. Due to hardware limitations ZLX-E2 and E3 cards are not supported
  585. for DECstation 5000/200 systems. Additionally due to firmware
  586. limitations these cards may cause troubles with booting DECstation
  587. 5000/240 and /260 systems, but are fully supported under Linux if
  588. you manage to get it going. ;-)
  589. Say Y if you have one of those.
  590. config FB_UVESA
  591. tristate "Userspace VESA VGA graphics support"
  592. depends on FB && CONNECTOR
  593. select FB_CFB_FILLRECT
  594. select FB_CFB_COPYAREA
  595. select FB_CFB_IMAGEBLIT
  596. select FB_MODE_HELPERS
  597. help
  598. This is the frame buffer driver for generic VBE 2.0 compliant
  599. graphic cards. It can also take advantage of VBE 3.0 features,
  600. such as refresh rate adjustment.
  601. This driver generally provides more features than vesafb but
  602. requires a userspace helper application called 'v86d'. See
  603. <file:Documentation/fb/uvesafb.txt> for more information.
  604. If unsure, say N.
  605. config FB_VESA
  606. bool "VESA VGA graphics support"
  607. depends on (FB = y) && X86
  608. select FB_CFB_FILLRECT
  609. select FB_CFB_COPYAREA
  610. select FB_CFB_IMAGEBLIT
  611. select FB_BOOT_VESA_SUPPORT
  612. help
  613. This is the frame buffer device driver for generic VESA 2.0
  614. compliant graphic cards. The older VESA 1.2 cards are not supported.
  615. You will get a boot time penguin logo at no additional cost. Please
  616. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  617. config FB_EFI
  618. bool "EFI-based Framebuffer Support"
  619. depends on (FB = y) && X86 && EFI
  620. select FB_CFB_FILLRECT
  621. select FB_CFB_COPYAREA
  622. select FB_CFB_IMAGEBLIT
  623. help
  624. This is the EFI frame buffer device driver. If the firmware on
  625. your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
  626. using the EFI framebuffer as your console.
  627. config FB_N411
  628. tristate "N411 Apollo/Hecuba devkit support"
  629. depends on FB && X86 && MMU
  630. select FB_SYS_FILLRECT
  631. select FB_SYS_COPYAREA
  632. select FB_SYS_IMAGEBLIT
  633. select FB_SYS_FOPS
  634. select FB_DEFERRED_IO
  635. select FB_HECUBA
  636. help
  637. This enables support for the Apollo display controller in its
  638. Hecuba form using the n411 devkit.
  639. config FB_HGA
  640. tristate "Hercules mono graphics support"
  641. depends on FB && X86
  642. select FB_CFB_FILLRECT
  643. select FB_CFB_COPYAREA
  644. select FB_CFB_IMAGEBLIT
  645. help
  646. Say Y here if you have a Hercules mono graphics card.
  647. To compile this driver as a module, choose M here: the
  648. module will be called hgafb.
  649. As this card technology is 15 years old, most people will answer N
  650. here.
  651. config FB_HGA_ACCEL
  652. bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  653. depends on FB_HGA && EXPERIMENTAL
  654. ---help---
  655. This will compile the Hercules mono graphics with
  656. acceleration functions.
  657. config FB_SGIVW
  658. tristate "SGI Visual Workstation framebuffer support"
  659. depends on FB && X86_VISWS
  660. select FB_CFB_FILLRECT
  661. select FB_CFB_COPYAREA
  662. select FB_CFB_IMAGEBLIT
  663. help
  664. SGI Visual Workstation support for framebuffer graphics.
  665. config FB_GBE
  666. bool "SGI Graphics Backend frame buffer support"
  667. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  668. select FB_CFB_FILLRECT
  669. select FB_CFB_COPYAREA
  670. select FB_CFB_IMAGEBLIT
  671. help
  672. This is the frame buffer device driver for SGI Graphics Backend.
  673. This chip is used in SGI O2 and Visual Workstation 320/540.
  674. config FB_GBE_MEM
  675. int "Video memory size in MB"
  676. depends on FB_GBE
  677. default 4
  678. help
  679. This is the amount of memory reserved for the framebuffer,
  680. which can be any value between 1MB and 8MB.
  681. config FB_SBUS
  682. bool "SBUS and UPA framebuffers"
  683. depends on (FB = y) && SPARC
  684. help
  685. Say Y if you want support for SBUS or UPA based frame buffer device.
  686. config FB_BW2
  687. bool "BWtwo support"
  688. depends on (FB = y) && (SPARC && FB_SBUS)
  689. select FB_CFB_FILLRECT
  690. select FB_CFB_COPYAREA
  691. select FB_CFB_IMAGEBLIT
  692. help
  693. This is the frame buffer device driver for the BWtwo frame buffer.
  694. config FB_CG3
  695. bool "CGthree support"
  696. depends on (FB = y) && (SPARC && FB_SBUS)
  697. select FB_CFB_FILLRECT
  698. select FB_CFB_COPYAREA
  699. select FB_CFB_IMAGEBLIT
  700. help
  701. This is the frame buffer device driver for the CGthree frame buffer.
  702. config FB_CG6
  703. bool "CGsix (GX,TurboGX) support"
  704. depends on (FB = y) && (SPARC && FB_SBUS)
  705. select FB_CFB_COPYAREA
  706. select FB_CFB_IMAGEBLIT
  707. help
  708. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  709. frame buffer.
  710. config FB_FFB
  711. bool "Creator/Creator3D/Elite3D support"
  712. depends on FB_SBUS && SPARC64
  713. select FB_CFB_COPYAREA
  714. select FB_CFB_IMAGEBLIT
  715. help
  716. This is the frame buffer device driver for the Creator, Creator3D,
  717. and Elite3D graphics boards.
  718. config FB_TCX
  719. bool "TCX (SS4/SS5 only) support"
  720. depends on FB_SBUS
  721. select FB_CFB_FILLRECT
  722. select FB_CFB_COPYAREA
  723. select FB_CFB_IMAGEBLIT
  724. help
  725. This is the frame buffer device driver for the TCX 24/8bit frame
  726. buffer.
  727. config FB_CG14
  728. bool "CGfourteen (SX) support"
  729. depends on FB_SBUS
  730. select FB_CFB_FILLRECT
  731. select FB_CFB_COPYAREA
  732. select FB_CFB_IMAGEBLIT
  733. help
  734. This is the frame buffer device driver for the CGfourteen frame
  735. buffer on Desktop SPARCsystems with the SX graphics option.
  736. config FB_P9100
  737. bool "P9100 (Sparcbook 3 only) support"
  738. depends on FB_SBUS
  739. select FB_CFB_FILLRECT
  740. select FB_CFB_COPYAREA
  741. select FB_CFB_IMAGEBLIT
  742. help
  743. This is the frame buffer device driver for the P9100 card
  744. supported on Sparcbook 3 machines.
  745. config FB_LEO
  746. bool "Leo (ZX) support"
  747. depends on FB_SBUS
  748. select FB_CFB_FILLRECT
  749. select FB_CFB_COPYAREA
  750. select FB_CFB_IMAGEBLIT
  751. help
  752. This is the frame buffer device driver for the SBUS-based Sun ZX
  753. (leo) frame buffer cards.
  754. config FB_IGA
  755. bool "IGA 168x display support"
  756. depends on (FB = y) && SPARC32
  757. select FB_CFB_FILLRECT
  758. select FB_CFB_COPYAREA
  759. select FB_CFB_IMAGEBLIT
  760. help
  761. This is the framebuffer device for the INTERGRAPHICS 1680 and
  762. successor frame buffer cards.
  763. config FB_XVR500
  764. bool "Sun XVR-500 3DLABS Wildcat support"
  765. depends on (FB = y) && PCI && SPARC64
  766. select FB_CFB_FILLRECT
  767. select FB_CFB_COPYAREA
  768. select FB_CFB_IMAGEBLIT
  769. help
  770. This is the framebuffer device for the Sun XVR-500 and similar
  771. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  772. only works on sparc64 systems where the system firmware has
  773. mostly initialized the card already. It is treated as a
  774. completely dumb framebuffer device.
  775. config FB_XVR2500
  776. bool "Sun XVR-2500 3DLABS Wildcat support"
  777. depends on (FB = y) && PCI && SPARC64
  778. select FB_CFB_FILLRECT
  779. select FB_CFB_COPYAREA
  780. select FB_CFB_IMAGEBLIT
  781. help
  782. This is the framebuffer device for the Sun XVR-2500 and similar
  783. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  784. only works on sparc64 systems where the system firmware has
  785. mostly initialized the card already. It is treated as a
  786. completely dumb framebuffer device.
  787. config FB_XVR1000
  788. bool "Sun XVR-1000 support"
  789. depends on SPARC64
  790. select FB_CFB_FILLRECT
  791. select FB_CFB_COPYAREA
  792. select FB_CFB_IMAGEBLIT
  793. help
  794. This is the framebuffer device for the Sun XVR-1000 and similar
  795. graphics cards. The driver only works on sparc64 systems where
  796. the system firmware has mostly initialized the card already. It
  797. is treated as a completely dumb framebuffer device.
  798. config FB_PVR2
  799. tristate "NEC PowerVR 2 display support"
  800. depends on FB && SH_DREAMCAST
  801. select FB_CFB_FILLRECT
  802. select FB_CFB_COPYAREA
  803. select FB_CFB_IMAGEBLIT
  804. ---help---
  805. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  806. run linux on your Dreamcast, you will have to say Y here.
  807. This driver may or may not work on other PowerVR 2 cards, but is
  808. totally untested. Use at your own risk. If unsure, say N.
  809. To compile this driver as a module, choose M here: the
  810. module will be called pvr2fb.
  811. You can pass several parameters to the driver at boot time or at
  812. module load time. The parameters look like "video=pvr2:XXX", where
  813. the meaning of XXX can be found at the end of the main source file
  814. (<file:drivers/video/pvr2fb.c>). Please see the file
  815. <file:Documentation/fb/pvr2fb.txt>.
  816. config FB_EPSON1355
  817. bool "Epson 1355 framebuffer support"
  818. depends on (FB = y) && ARCH_CEIVA
  819. select FB_CFB_FILLRECT
  820. select FB_CFB_COPYAREA
  821. select FB_CFB_IMAGEBLIT
  822. help
  823. Build in support for the SED1355 Epson Research Embedded RAMDAC
  824. LCD/CRT Controller (since redesignated as the S1D13505) as a
  825. framebuffer. Product specs at
  826. <http://www.erd.epson.com/vdc/html/products.htm>.
  827. config FB_S1D13XXX
  828. tristate "Epson S1D13XXX framebuffer support"
  829. depends on FB
  830. select FB_CFB_FILLRECT
  831. select FB_CFB_COPYAREA
  832. select FB_CFB_IMAGEBLIT
  833. help
  834. Support for S1D13XXX framebuffer device family (currently only
  835. working with S1D13806). Product specs at
  836. <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  837. config FB_ATMEL
  838. tristate "AT91/AT32 LCD Controller support"
  839. depends on FB && HAVE_FB_ATMEL
  840. select FB_CFB_FILLRECT
  841. select FB_CFB_COPYAREA
  842. select FB_CFB_IMAGEBLIT
  843. help
  844. This enables support for the AT91/AT32 LCD Controller.
  845. config FB_INTSRAM
  846. bool "Frame Buffer in internal SRAM"
  847. depends on FB_ATMEL && ARCH_AT91SAM9261
  848. help
  849. Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
  850. to let frame buffer in external SDRAM.
  851. config FB_ATMEL_STN
  852. bool "Use a STN display with AT91/AT32 LCD Controller"
  853. depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
  854. default n
  855. help
  856. Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
  857. Controller. Say N if you want to connect a TFT.
  858. If unsure, say N.
  859. config FB_NVIDIA
  860. tristate "nVidia Framebuffer Support"
  861. depends on FB && PCI
  862. select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  863. select FB_MODE_HELPERS
  864. select FB_CFB_FILLRECT
  865. select FB_CFB_COPYAREA
  866. select FB_CFB_IMAGEBLIT
  867. select BITREVERSE
  868. select VGASTATE
  869. help
  870. This driver supports graphics boards with the nVidia chips, TNT
  871. and newer. For very old chipsets, such as the RIVA128, then use
  872. the rivafb.
  873. Say Y if you have such a graphics board.
  874. To compile this driver as a module, choose M here: the
  875. module will be called nvidiafb.
  876. config FB_NVIDIA_I2C
  877. bool "Enable DDC Support"
  878. depends on FB_NVIDIA
  879. select FB_DDC
  880. help
  881. This enables I2C support for nVidia Chipsets. This is used
  882. only for getting EDID information from the attached display
  883. allowing for robust video mode handling and switching.
  884. Because fbdev-2.6 requires that drivers must be able to
  885. independently validate video mode parameters, you should say Y
  886. here.
  887. config FB_NVIDIA_DEBUG
  888. bool "Lots of debug output"
  889. depends on FB_NVIDIA
  890. default n
  891. help
  892. Say Y here if you want the nVidia driver to output all sorts
  893. of debugging information to provide to the maintainer when
  894. something goes wrong.
  895. config FB_NVIDIA_BACKLIGHT
  896. bool "Support for backlight control"
  897. depends on FB_NVIDIA
  898. default y
  899. help
  900. Say Y here if you want to control the backlight of your display.
  901. config FB_RIVA
  902. tristate "nVidia Riva support"
  903. depends on FB && PCI
  904. select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  905. select FB_MODE_HELPERS
  906. select FB_CFB_FILLRECT
  907. select FB_CFB_COPYAREA
  908. select FB_CFB_IMAGEBLIT
  909. select BITREVERSE
  910. select VGASTATE
  911. help
  912. This driver supports graphics boards with the nVidia Riva/Geforce
  913. chips.
  914. Say Y if you have such a graphics board.
  915. To compile this driver as a module, choose M here: the
  916. module will be called rivafb.
  917. config FB_RIVA_I2C
  918. bool "Enable DDC Support"
  919. depends on FB_RIVA
  920. select FB_DDC
  921. help
  922. This enables I2C support for nVidia Chipsets. This is used
  923. only for getting EDID information from the attached display
  924. allowing for robust video mode handling and switching.
  925. Because fbdev-2.6 requires that drivers must be able to
  926. independently validate video mode parameters, you should say Y
  927. here.
  928. config FB_RIVA_DEBUG
  929. bool "Lots of debug output"
  930. depends on FB_RIVA
  931. default n
  932. help
  933. Say Y here if you want the Riva driver to output all sorts
  934. of debugging information to provide to the maintainer when
  935. something goes wrong.
  936. config FB_RIVA_BACKLIGHT
  937. bool "Support for backlight control"
  938. depends on FB_RIVA
  939. default y
  940. help
  941. Say Y here if you want to control the backlight of your display.
  942. config FB_I810
  943. tristate "Intel 810/815 support (EXPERIMENTAL)"
  944. depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
  945. select FB_MODE_HELPERS
  946. select FB_CFB_FILLRECT
  947. select FB_CFB_COPYAREA
  948. select FB_CFB_IMAGEBLIT
  949. select VGASTATE
  950. help
  951. This driver supports the on-board graphics built in to the Intel 810
  952. and 815 chipsets. Say Y if you have and plan to use such a board.
  953. To compile this driver as a module, choose M here: the
  954. module will be called i810fb.
  955. For more information, please read
  956. <file:Documentation/fb/intel810.txt>
  957. config FB_I810_GTF
  958. bool "use VESA Generalized Timing Formula"
  959. depends on FB_I810
  960. help
  961. If you say Y, then the VESA standard, Generalized Timing Formula
  962. or GTF, will be used to calculate the required video timing values
  963. per video mode. Since the GTF allows nondiscrete timings
  964. (nondiscrete being a range of values as opposed to discrete being a
  965. set of values), you'll be able to use any combination of horizontal
  966. and vertical resolutions, and vertical refresh rates without having
  967. to specify your own timing parameters. This is especially useful
  968. to maximize the performance of an aging display, or if you just
  969. have a display with nonstandard dimensions. A VESA compliant
  970. monitor is recommended, but can still work with non-compliant ones.
  971. If you need or want this, then select this option. The timings may
  972. not be compliant with Intel's recommended values. Use at your own
  973. risk.
  974. If you say N, the driver will revert to discrete video timings
  975. using a set recommended by Intel in their documentation.
  976. If unsure, say N.
  977. config FB_I810_I2C
  978. bool "Enable DDC Support"
  979. depends on FB_I810 && FB_I810_GTF
  980. select FB_DDC
  981. help
  982. config FB_LE80578
  983. tristate "Intel LE80578 (Vermilion) support"
  984. depends on FB && PCI && X86
  985. select FB_MODE_HELPERS
  986. select FB_CFB_FILLRECT
  987. select FB_CFB_COPYAREA
  988. select FB_CFB_IMAGEBLIT
  989. help
  990. This driver supports the LE80578 (Vermilion Range) chipset
  991. config FB_CARILLO_RANCH
  992. tristate "Intel Carillo Ranch support"
  993. depends on FB_LE80578 && FB && PCI && X86
  994. help
  995. This driver supports the LE80578 (Carillo Ranch) board
  996. config FB_INTEL
  997. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
  998. depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EMBEDDED
  999. select FB_MODE_HELPERS
  1000. select FB_CFB_FILLRECT
  1001. select FB_CFB_COPYAREA
  1002. select FB_CFB_IMAGEBLIT
  1003. select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
  1004. depends on !DRM_I915
  1005. help
  1006. This driver supports the on-board graphics built in to the Intel
  1007. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
  1008. Say Y if you have and plan to use such a board.
  1009. To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
  1010. To compile this driver as a module, choose M here: the
  1011. module will be called intelfb.
  1012. For more information, please read <file:Documentation/fb/intelfb.txt>
  1013. config FB_INTEL_DEBUG
  1014. bool "Intel driver Debug Messages"
  1015. depends on FB_INTEL
  1016. ---help---
  1017. Say Y here if you want the Intel driver to output all sorts
  1018. of debugging information to provide to the maintainer when
  1019. something goes wrong.
  1020. config FB_INTEL_I2C
  1021. bool "DDC/I2C for Intel framebuffer support"
  1022. depends on FB_INTEL
  1023. select FB_DDC
  1024. default y
  1025. help
  1026. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  1027. config FB_MATROX
  1028. tristate "Matrox acceleration"
  1029. depends on FB && PCI
  1030. select FB_CFB_FILLRECT
  1031. select FB_CFB_COPYAREA
  1032. select FB_CFB_IMAGEBLIT
  1033. select FB_TILEBLITTING
  1034. select FB_MACMODES if PPC_PMAC
  1035. ---help---
  1036. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  1037. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  1038. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  1039. Matrox G400, G450 or G550 card in your box.
  1040. To compile this driver as a module, choose M here: the
  1041. module will be called matroxfb.
  1042. You can pass several parameters to the driver at boot time or at
  1043. module load time. The parameters look like "video=matrox:XXX", and
  1044. are described in <file:Documentation/fb/matroxfb.txt>.
  1045. config FB_MATROX_MILLENIUM
  1046. bool "Millennium I/II support"
  1047. depends on FB_MATROX
  1048. help
  1049. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  1050. video card. If you select "Advanced lowlevel driver options" below,
  1051. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  1052. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  1053. also use font widths different from 8.
  1054. config FB_MATROX_MYSTIQUE
  1055. bool "Mystique support"
  1056. depends on FB_MATROX
  1057. help
  1058. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  1059. video card. If you select "Advanced lowlevel driver options" below,
  1060. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  1061. packed pixel and 32 bpp packed pixel. You can also use font widths
  1062. different from 8.
  1063. config FB_MATROX_G
  1064. bool "G100/G200/G400/G450/G550 support"
  1065. depends on FB_MATROX
  1066. ---help---
  1067. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  1068. video card. If you select "Advanced lowlevel driver options", you
  1069. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  1070. pixel and 32 bpp packed pixel. You can also use font widths
  1071. different from 8.
  1072. If you need support for G400 secondary head, you must say Y to
  1073. "Matrox I2C support" and "G400 second head support" right below.
  1074. G450/G550 secondary head and digital output are supported without
  1075. additional modules.
  1076. The driver starts in monitor mode. You must use the matroxset tool
  1077. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  1078. swap primary and secondary head outputs, or to change output mode.
  1079. Secondary head driver always start in 640x480 resolution and you
  1080. must use fbset to change it.
  1081. Do not forget that second head supports only 16 and 32 bpp
  1082. packed pixels, so it is a good idea to compile them into the kernel
  1083. too. You can use only some font widths, as the driver uses generic
  1084. painting procedures (the secondary head does not use acceleration
  1085. engine).
  1086. G450/G550 hardware can display TV picture only from secondary CRTC,
  1087. and it performs no scaling, so picture must have 525 or 625 lines.
  1088. config FB_MATROX_I2C
  1089. tristate "Matrox I2C support"
  1090. depends on FB_MATROX
  1091. select FB_DDC
  1092. ---help---
  1093. This drivers creates I2C buses which are needed for accessing the
  1094. DDC (I2C) bus present on all Matroxes, an I2C bus which
  1095. interconnects Matrox optional devices, like MGA-TVO on G200 and
  1096. G400, and the secondary head DDC bus, present on G400 only.
  1097. You can say Y or M here if you want to experiment with monitor
  1098. detection code. You must say Y or M here if you want to use either
  1099. second head of G400 or MGA-TVO on G200 or G400.
  1100. If you compile it as module, it will create a module named
  1101. i2c-matroxfb.
  1102. config FB_MATROX_MAVEN
  1103. tristate "G400 second head support"
  1104. depends on FB_MATROX_G && FB_MATROX_I2C
  1105. ---help---
  1106. WARNING !!! This support does not work with G450 !!!
  1107. Say Y or M here if you want to use a secondary head (meaning two
  1108. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1109. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1110. secondary head output is blanked while you are in X. With XFree
  1111. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1112. the fbdev driver on first head and the fbdev driver on second head.
  1113. If you compile it as module, two modules are created,
  1114. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1115. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1116. also load i2c-matroxfb to get it to run.
  1117. The driver starts in monitor mode and you must use the matroxset
  1118. tool (available at
  1119. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1120. PAL or NTSC or to swap primary and secondary head outputs.
  1121. Secondary head driver also always start in 640x480 resolution, you
  1122. must use fbset to change it.
  1123. Also do not forget that second head supports only 16 and 32 bpp
  1124. packed pixels, so it is a good idea to compile them into the kernel
  1125. too. You can use only some font widths, as the driver uses generic
  1126. painting procedures (the secondary head does not use acceleration
  1127. engine).
  1128. config FB_RADEON
  1129. tristate "ATI Radeon display support"
  1130. depends on FB && PCI
  1131. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1132. select FB_MODE_HELPERS
  1133. select FB_CFB_FILLRECT
  1134. select FB_CFB_COPYAREA
  1135. select FB_CFB_IMAGEBLIT
  1136. select FB_MACMODES if PPC_OF
  1137. help
  1138. Choose this option if you want to use an ATI Radeon graphics card as
  1139. a framebuffer device. There are both PCI and AGP versions. You
  1140. don't need to choose this to run the Radeon in plain VGA mode.
  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 if FB_SIS = y
  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. select FB_MODE_HELPERS
  1346. help
  1347. This driver supports graphics boards with the 3Dfx Banshee,
  1348. Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
  1349. such a graphics board.
  1350. To compile this driver as a module, choose M here: the
  1351. module will be called tdfxfb.
  1352. config FB_3DFX_ACCEL
  1353. bool "3Dfx Acceleration functions (EXPERIMENTAL)"
  1354. depends on FB_3DFX && EXPERIMENTAL
  1355. ---help---
  1356. This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
  1357. device driver with acceleration functions.
  1358. config FB_3DFX_I2C
  1359. bool "Enable DDC/I2C support"
  1360. depends on FB_3DFX && EXPERIMENTAL
  1361. select FB_DDC
  1362. default y
  1363. help
  1364. Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
  1365. config FB_VOODOO1
  1366. tristate "3Dfx Voodoo Graphics (sst1) support"
  1367. depends on FB && PCI
  1368. select FB_CFB_FILLRECT
  1369. select FB_CFB_COPYAREA
  1370. select FB_CFB_IMAGEBLIT
  1371. ---help---
  1372. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1373. Voodoo2 (cvg) based graphics card.
  1374. To compile this driver as a module, choose M here: the
  1375. module will be called sstfb.
  1376. WARNING: Do not use any application that uses the 3D engine
  1377. (namely glide) while using this driver.
  1378. Please read the <file:Documentation/fb/sstfb.txt> for supported
  1379. options and other important info support.
  1380. config FB_VT8623
  1381. tristate "VIA VT8623 support"
  1382. depends on FB && PCI
  1383. select FB_CFB_FILLRECT
  1384. select FB_CFB_COPYAREA
  1385. select FB_CFB_IMAGEBLIT
  1386. select FB_TILEBLITTING
  1387. select FB_SVGALIB
  1388. select VGASTATE
  1389. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1390. ---help---
  1391. Driver for CastleRock integrated graphics core in the
  1392. VIA VT8623 [Apollo CLE266] chipset.
  1393. config FB_TRIDENT
  1394. tristate "Trident/CyberXXX/CyberBlade support"
  1395. depends on FB && PCI
  1396. select FB_CFB_FILLRECT
  1397. select FB_CFB_COPYAREA
  1398. select FB_CFB_IMAGEBLIT
  1399. ---help---
  1400. This is the frame buffer device driver for Trident PCI/AGP chipsets.
  1401. Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
  1402. and Blade XP.
  1403. There are also integrated versions of these chips called CyberXXXX,
  1404. CyberImage or CyberBlade. These chips are mostly found in laptops
  1405. but also on some motherboards including early VIA EPIA motherboards.
  1406. For more information, read <file:Documentation/fb/tridentfb.txt>
  1407. Say Y if you have such a graphics board.
  1408. To compile this driver as a module, choose M here: the
  1409. module will be called tridentfb.
  1410. config FB_ARK
  1411. tristate "ARK 2000PV support"
  1412. depends on FB && PCI
  1413. select FB_CFB_FILLRECT
  1414. select FB_CFB_COPYAREA
  1415. select FB_CFB_IMAGEBLIT
  1416. select FB_TILEBLITTING
  1417. select FB_SVGALIB
  1418. select VGASTATE
  1419. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1420. ---help---
  1421. Driver for PCI graphics boards with ARK 2000PV chip
  1422. and ICS 5342 RAMDAC.
  1423. config FB_PM3
  1424. tristate "Permedia3 support (EXPERIMENTAL)"
  1425. depends on FB && PCI && EXPERIMENTAL
  1426. select FB_CFB_FILLRECT
  1427. select FB_CFB_COPYAREA
  1428. select FB_CFB_IMAGEBLIT
  1429. help
  1430. This is the frame buffer device driver for the 3DLabs Permedia3
  1431. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1432. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1433. and maybe other boards.
  1434. config FB_CARMINE
  1435. tristate "Fujitsu carmine frame buffer support"
  1436. depends on FB && PCI
  1437. select FB_CFB_FILLRECT
  1438. select FB_CFB_COPYAREA
  1439. select FB_CFB_IMAGEBLIT
  1440. help
  1441. This is the frame buffer device driver for the Fujitsu Carmine chip.
  1442. The driver provides two independent frame buffer devices.
  1443. choice
  1444. depends on FB_CARMINE
  1445. prompt "DRAM timing"
  1446. default FB_CARMINE_DRAM_EVAL
  1447. config FB_CARMINE_DRAM_EVAL
  1448. bool "Eval board timings"
  1449. help
  1450. Use timings which work on the eval card.
  1451. config CARMINE_DRAM_CUSTOM
  1452. bool "Custom board timings"
  1453. help
  1454. Use custom board timings.
  1455. endchoice
  1456. config FB_AU1100
  1457. bool "Au1100 LCD Driver"
  1458. depends on (FB = y) && MIPS && SOC_AU1100
  1459. select FB_CFB_FILLRECT
  1460. select FB_CFB_COPYAREA
  1461. select FB_CFB_IMAGEBLIT
  1462. help
  1463. This is the framebuffer driver for the AMD Au1100 SOC. It can drive
  1464. various panels and CRTs by passing in kernel cmd line option
  1465. au1100fb:panel=<name>.
  1466. config FB_AU1200
  1467. bool "Au1200 LCD Driver"
  1468. depends on (FB = y) && MIPS && SOC_AU1200
  1469. select FB_CFB_FILLRECT
  1470. select FB_CFB_COPYAREA
  1471. select FB_CFB_IMAGEBLIT
  1472. help
  1473. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1474. various panels and CRTs by passing in kernel cmd line option
  1475. au1200fb:panel=<name>.
  1476. source "drivers/video/geode/Kconfig"
  1477. config FB_HIT
  1478. tristate "HD64461 Frame Buffer support"
  1479. depends on FB && HD64461
  1480. select FB_CFB_FILLRECT
  1481. select FB_CFB_COPYAREA
  1482. select FB_CFB_IMAGEBLIT
  1483. help
  1484. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1485. frame buffer card.
  1486. config FB_PMAG_AA
  1487. bool "PMAG-AA TURBOchannel framebuffer support"
  1488. depends on (FB = y) && TC
  1489. select FB_CFB_FILLRECT
  1490. select FB_CFB_COPYAREA
  1491. select FB_CFB_IMAGEBLIT
  1492. help
  1493. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1494. used mainly in the MIPS-based DECstation series.
  1495. config FB_PMAG_BA
  1496. tristate "PMAG-BA TURBOchannel framebuffer support"
  1497. depends on FB && TC
  1498. select FB_CFB_FILLRECT
  1499. select FB_CFB_COPYAREA
  1500. select FB_CFB_IMAGEBLIT
  1501. help
  1502. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1503. used mainly in the MIPS-based DECstation series.
  1504. config FB_PMAGB_B
  1505. tristate "PMAGB-B TURBOchannel framebuffer support"
  1506. depends on FB && TC
  1507. select FB_CFB_FILLRECT
  1508. select FB_CFB_COPYAREA
  1509. select FB_CFB_IMAGEBLIT
  1510. help
  1511. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1512. in the MIPS-based DECstation series. The card is currently only
  1513. supported in 1280x1024x8 mode.
  1514. config FB_MAXINE
  1515. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1516. depends on (FB = y) && MACH_DECSTATION
  1517. select FB_CFB_FILLRECT
  1518. select FB_CFB_COPYAREA
  1519. select FB_CFB_IMAGEBLIT
  1520. help
  1521. Support for the onboard framebuffer (1024x768x8) in the Personal
  1522. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1523. Codename "Maxine").
  1524. config FB_G364
  1525. bool "G364 frame buffer support"
  1526. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1527. select FB_CFB_FILLRECT
  1528. select FB_CFB_COPYAREA
  1529. select FB_CFB_IMAGEBLIT
  1530. help
  1531. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1532. Olivetti M700-10 systems.
  1533. config FB_68328
  1534. bool "Motorola 68328 native frame buffer support"
  1535. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1536. select FB_CFB_FILLRECT
  1537. select FB_CFB_COPYAREA
  1538. select FB_CFB_IMAGEBLIT
  1539. help
  1540. Say Y here if you want to support the built-in frame buffer of
  1541. the Motorola 68328 CPU family.
  1542. config FB_PXA168
  1543. tristate "PXA168/910 LCD framebuffer support"
  1544. depends on FB && (CPU_PXA168 || CPU_PXA910)
  1545. select FB_CFB_FILLRECT
  1546. select FB_CFB_COPYAREA
  1547. select FB_CFB_IMAGEBLIT
  1548. ---help---
  1549. Frame buffer driver for the built-in LCD controller in the Marvell
  1550. MMP processor.
  1551. config FB_PXA
  1552. tristate "PXA LCD framebuffer support"
  1553. depends on FB && ARCH_PXA
  1554. select FB_CFB_FILLRECT
  1555. select FB_CFB_COPYAREA
  1556. select FB_CFB_IMAGEBLIT
  1557. ---help---
  1558. Frame buffer driver for the built-in LCD controller in the Intel
  1559. PXA2x0 processor.
  1560. This driver is also available as a module ( = code which can be
  1561. inserted and removed from the running kernel whenever you want). The
  1562. module will be called pxafb. If you want to compile it as a module,
  1563. say M here and read <file:Documentation/kbuild/modules.txt>.
  1564. If unsure, say N.
  1565. config FB_PXA_OVERLAY
  1566. bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
  1567. default n
  1568. depends on FB_PXA && (PXA27x || PXA3xx)
  1569. config FB_PXA_SMARTPANEL
  1570. bool "PXA Smartpanel LCD support"
  1571. default n
  1572. depends on FB_PXA
  1573. config FB_PXA_PARAMETERS
  1574. bool "PXA LCD command line parameters"
  1575. default n
  1576. depends on FB_PXA
  1577. ---help---
  1578. Enable the use of kernel command line or module parameters
  1579. to configure the physical properties of the LCD panel when
  1580. using the PXA LCD driver.
  1581. This option allows you to override the panel parameters
  1582. supplied by the platform in order to support multiple
  1583. different models of flatpanel. If you will only be using a
  1584. single model of flatpanel then you can safely leave this
  1585. option disabled.
  1586. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1587. config FB_MBX
  1588. tristate "2700G LCD framebuffer support"
  1589. depends on FB && ARCH_PXA
  1590. select FB_CFB_FILLRECT
  1591. select FB_CFB_COPYAREA
  1592. select FB_CFB_IMAGEBLIT
  1593. ---help---
  1594. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1595. Accelerator
  1596. config FB_MBX_DEBUG
  1597. bool "Enable debugging info via debugfs"
  1598. depends on FB_MBX && DEBUG_FS
  1599. default n
  1600. ---help---
  1601. Enable this if you want debugging information using the debug
  1602. filesystem (debugfs)
  1603. If unsure, say N.
  1604. config FB_FSL_DIU
  1605. tristate "Freescale DIU framebuffer support"
  1606. depends on FB && FSL_SOC
  1607. select FB_CFB_FILLRECT
  1608. select FB_CFB_COPYAREA
  1609. select FB_CFB_IMAGEBLIT
  1610. select PPC_LIB_RHEAP
  1611. ---help---
  1612. Framebuffer driver for the Freescale SoC DIU
  1613. config FB_W100
  1614. tristate "W100 frame buffer support"
  1615. depends on FB && ARCH_PXA
  1616. select FB_CFB_FILLRECT
  1617. select FB_CFB_COPYAREA
  1618. select FB_CFB_IMAGEBLIT
  1619. ---help---
  1620. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1621. It can also drive the w3220 chip found on iPAQ hx4700.
  1622. This driver is also available as a module ( = code which can be
  1623. inserted and removed from the running kernel whenever you want). The
  1624. module will be called w100fb. If you want to compile it as a module,
  1625. say M here and read <file:Documentation/kbuild/modules.txt>.
  1626. If unsure, say N.
  1627. config FB_SH_MOBILE_LCDC
  1628. tristate "SuperH Mobile LCDC framebuffer support"
  1629. depends on FB && SUPERH && HAVE_CLK
  1630. select FB_SYS_FILLRECT
  1631. select FB_SYS_COPYAREA
  1632. select FB_SYS_IMAGEBLIT
  1633. select FB_SYS_FOPS
  1634. select FB_DEFERRED_IO
  1635. ---help---
  1636. Frame buffer driver for the on-chip SH-Mobile LCD controller.
  1637. config FB_TMIO
  1638. tristate "Toshiba Mobile IO FrameBuffer support"
  1639. depends on FB && MFD_CORE
  1640. select FB_CFB_FILLRECT
  1641. select FB_CFB_COPYAREA
  1642. select FB_CFB_IMAGEBLIT
  1643. ---help---
  1644. Frame buffer driver for the Toshiba Mobile IO integrated as found
  1645. on the Sharp SL-6000 series
  1646. This driver is also available as a module ( = code which can be
  1647. inserted and removed from the running kernel whenever you want). The
  1648. module will be called tmiofb. If you want to compile it as a module,
  1649. say M here and read <file:Documentation/kbuild/modules.txt>.
  1650. If unsure, say N.
  1651. config FB_TMIO_ACCELL
  1652. bool "tmiofb acceleration"
  1653. depends on FB_TMIO
  1654. default y
  1655. config FB_S3C
  1656. tristate "Samsung S3C framebuffer support"
  1657. depends on FB && ARCH_S3C64XX
  1658. select FB_CFB_FILLRECT
  1659. select FB_CFB_COPYAREA
  1660. select FB_CFB_IMAGEBLIT
  1661. ---help---
  1662. Frame buffer driver for the built-in FB controller in the Samsung
  1663. SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
  1664. and the S3C64XX series such as the S3C6400 and S3C6410.
  1665. These chips all have the same basic framebuffer design with the
  1666. actual capabilities depending on the chip. For instance the S3C6400
  1667. and S3C6410 support 4 hardware windows whereas the S3C24XX series
  1668. currently only have two.
  1669. Currently the support is only for the S3C6400 and S3C6410 SoCs.
  1670. config FB_S3C_DEBUG_REGWRITE
  1671. bool "Debug register writes"
  1672. depends on FB_S3C
  1673. ---help---
  1674. Show all register writes via printk(KERN_DEBUG)
  1675. config FB_S3C2410
  1676. tristate "S3C2410 LCD framebuffer support"
  1677. depends on FB && ARCH_S3C2410
  1678. select FB_CFB_FILLRECT
  1679. select FB_CFB_COPYAREA
  1680. select FB_CFB_IMAGEBLIT
  1681. ---help---
  1682. Frame buffer driver for the built-in LCD controller in the Samsung
  1683. S3C2410 processor.
  1684. This driver is also available as a module ( = code which can be
  1685. inserted and removed from the running kernel whenever you want). The
  1686. module will be called s3c2410fb. If you want to compile it as a module,
  1687. say M here and read <file:Documentation/kbuild/modules.txt>.
  1688. If unsure, say N.
  1689. config FB_S3C2410_DEBUG
  1690. bool "S3C2410 lcd debug messages"
  1691. depends on FB_S3C2410
  1692. help
  1693. Turn on debugging messages. Note that you can set/unset at run time
  1694. through sysfs
  1695. config FB_SM501
  1696. tristate "Silicon Motion SM501 framebuffer support"
  1697. depends on FB && MFD_SM501
  1698. select FB_CFB_FILLRECT
  1699. select FB_CFB_COPYAREA
  1700. select FB_CFB_IMAGEBLIT
  1701. ---help---
  1702. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1703. Motion SM501.
  1704. This driver is also available as a module ( = code which can be
  1705. inserted and removed from the running kernel whenever you want). The
  1706. module will be called sm501fb. If you want to compile it as a module,
  1707. say M here and read <file:Documentation/kbuild/modules.txt>.
  1708. If unsure, say N.
  1709. config FB_PNX4008_DUM
  1710. tristate "Display Update Module support on Philips PNX4008 board"
  1711. depends on FB && ARCH_PNX4008
  1712. ---help---
  1713. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1714. config FB_PNX4008_DUM_RGB
  1715. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1716. depends on FB_PNX4008_DUM
  1717. select FB_CFB_FILLRECT
  1718. select FB_CFB_COPYAREA
  1719. select FB_CFB_IMAGEBLIT
  1720. ---help---
  1721. Say Y here to enable support for PNX4008 RGB Framebuffer
  1722. config FB_IBM_GXT4500
  1723. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1724. depends on FB && PPC
  1725. select FB_CFB_FILLRECT
  1726. select FB_CFB_COPYAREA
  1727. select FB_CFB_IMAGEBLIT
  1728. ---help---
  1729. Say Y here to enable support for the IBM GXT4500P display
  1730. adaptor, found on some IBM System P (pSeries) machines.
  1731. config FB_PS3
  1732. tristate "PS3 GPU framebuffer driver"
  1733. depends on FB && PS3_PS3AV
  1734. select FB_SYS_FILLRECT
  1735. select FB_SYS_COPYAREA
  1736. select FB_SYS_IMAGEBLIT
  1737. select FB_SYS_FOPS
  1738. select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1739. ---help---
  1740. Include support for the virtual frame buffer in the PS3 platform.
  1741. config FB_PS3_DEFAULT_SIZE_M
  1742. int "PS3 default frame buffer size (in MiB)"
  1743. depends on FB_PS3
  1744. default 9
  1745. ---help---
  1746. This is the default size (in MiB) of the virtual frame buffer in
  1747. the PS3.
  1748. The default value can be overridden on the kernel command line
  1749. using the "ps3fb" option (e.g. "ps3fb=9M");
  1750. config FB_XILINX
  1751. tristate "Xilinx frame buffer support"
  1752. depends on FB && (XILINX_VIRTEX || MICROBLAZE)
  1753. select FB_CFB_FILLRECT
  1754. select FB_CFB_COPYAREA
  1755. select FB_CFB_IMAGEBLIT
  1756. ---help---
  1757. Include support for the Xilinx ML300/ML403 reference design
  1758. framebuffer. ML300 carries a 640*480 LCD display on the board,
  1759. ML403 uses a standard DB15 VGA connector.
  1760. config FB_COBALT
  1761. tristate "Cobalt server LCD frame buffer support"
  1762. depends on FB && MIPS_COBALT
  1763. config FB_SH7760
  1764. bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
  1765. depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
  1766. || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
  1767. select FB_CFB_FILLRECT
  1768. select FB_CFB_COPYAREA
  1769. select FB_CFB_IMAGEBLIT
  1770. ---help---
  1771. Support for the SH7760/SH7763/SH7720/SH7721 integrated
  1772. (D)STN/TFT LCD Controller.
  1773. Supports display resolutions up to 1024x1024 pixel, grayscale and
  1774. color operation, with depths ranging from 1 bpp to 8 bpp monochrome
  1775. and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
  1776. panels <= 320 pixel horizontal resolution.
  1777. config FB_DA8XX
  1778. tristate "DA8xx/OMAP-L1xx Framebuffer support"
  1779. depends on FB && ARCH_DAVINCI_DA8XX
  1780. select FB_CFB_FILLRECT
  1781. select FB_CFB_COPYAREA
  1782. select FB_CFB_IMAGEBLIT
  1783. ---help---
  1784. This is the frame buffer device driver for the TI LCD controller
  1785. found on DA8xx/OMAP-L1xx SoCs.
  1786. If unsure, say N.
  1787. config FB_VIRTUAL
  1788. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1789. depends on FB
  1790. select FB_SYS_FILLRECT
  1791. select FB_SYS_COPYAREA
  1792. select FB_SYS_IMAGEBLIT
  1793. select FB_SYS_FOPS
  1794. ---help---
  1795. This is a `virtual' frame buffer device. It operates on a chunk of
  1796. unswappable kernel memory instead of on the memory of a graphics
  1797. board. This means you cannot see any output sent to this frame
  1798. buffer device, while it does consume precious memory. The main use
  1799. of this frame buffer device is testing and debugging the frame
  1800. buffer subsystem. Do NOT enable it for normal systems! To protect
  1801. the innocent, it has to be enabled explicitly at boot time using the
  1802. kernel option `video=vfb:'.
  1803. To compile this driver as a module, choose M here: the
  1804. module will be called vfb. In order to load it, you must use
  1805. the vfb_enable=1 option.
  1806. If unsure, say N.
  1807. config XEN_FBDEV_FRONTEND
  1808. tristate "Xen virtual frame buffer support"
  1809. depends on FB && XEN
  1810. select FB_SYS_FILLRECT
  1811. select FB_SYS_COPYAREA
  1812. select FB_SYS_IMAGEBLIT
  1813. select FB_SYS_FOPS
  1814. select FB_DEFERRED_IO
  1815. select XEN_XENBUS_FRONTEND
  1816. default y
  1817. help
  1818. This driver implements the front-end of the Xen virtual
  1819. frame buffer driver. It communicates with a back-end
  1820. in another domain.
  1821. config FB_METRONOME
  1822. tristate "E-Ink Metronome/8track controller support"
  1823. depends on FB
  1824. select FB_SYS_FILLRECT
  1825. select FB_SYS_COPYAREA
  1826. select FB_SYS_IMAGEBLIT
  1827. select FB_SYS_FOPS
  1828. select FB_DEFERRED_IO
  1829. help
  1830. This driver implements support for the E-Ink Metronome
  1831. controller. The pre-release name for this device was 8track
  1832. and could also have been called by some vendors as PVI-nnnn.
  1833. config FB_MB862XX
  1834. tristate "Fujitsu MB862xx GDC support"
  1835. depends on FB
  1836. select FB_CFB_FILLRECT
  1837. select FB_CFB_COPYAREA
  1838. select FB_CFB_IMAGEBLIT
  1839. ---help---
  1840. Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
  1841. config FB_MB862XX_PCI_GDC
  1842. bool "Carmine/Coral-P(A) GDC"
  1843. depends on PCI && FB_MB862XX
  1844. ---help---
  1845. This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
  1846. PCI graphics controller devices.
  1847. config FB_MB862XX_LIME
  1848. bool "Lime GDC"
  1849. depends on FB_MB862XX
  1850. depends on OF && !FB_MB862XX_PCI_GDC
  1851. depends on PPC
  1852. select FB_FOREIGN_ENDIAN
  1853. select FB_LITTLE_ENDIAN
  1854. ---help---
  1855. Framebuffer support for Fujitsu Lime GDC on host CPU bus.
  1856. config FB_EP93XX
  1857. tristate "EP93XX frame buffer support"
  1858. depends on FB && ARCH_EP93XX
  1859. select FB_CFB_FILLRECT
  1860. select FB_CFB_COPYAREA
  1861. select FB_CFB_IMAGEBLIT
  1862. ---help---
  1863. Framebuffer driver for the Cirrus Logic EP93XX series of processors.
  1864. This driver is also available as a module. The module will be called
  1865. ep93xx-fb.
  1866. config FB_PRE_INIT_FB
  1867. bool "Don't reinitialize, use bootloader's GDC/Display configuration"
  1868. depends on FB && FB_MB862XX_LIME
  1869. ---help---
  1870. Select this option if display contents should be inherited as set by
  1871. the bootloader.
  1872. config FB_MSM
  1873. tristate "MSM Framebuffer support"
  1874. depends on FB && ARCH_MSM
  1875. select FB_CFB_FILLRECT
  1876. select FB_CFB_COPYAREA
  1877. select FB_CFB_IMAGEBLIT
  1878. default y
  1879. config FB_MX3
  1880. tristate "MX3 Framebuffer support"
  1881. depends on FB && MX3_IPU
  1882. select FB_CFB_FILLRECT
  1883. select FB_CFB_COPYAREA
  1884. select FB_CFB_IMAGEBLIT
  1885. default y
  1886. help
  1887. This is a framebuffer device for the i.MX31 LCD Controller. So
  1888. far only synchronous displays are supported. If you plan to use
  1889. an LCD display with your i.MX31 system, say Y here.
  1890. config FB_BROADSHEET
  1891. tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
  1892. depends on FB
  1893. select FB_SYS_FILLRECT
  1894. select FB_SYS_COPYAREA
  1895. select FB_SYS_IMAGEBLIT
  1896. select FB_SYS_FOPS
  1897. select FB_DEFERRED_IO
  1898. help
  1899. This driver implements support for the E-Ink Broadsheet
  1900. controller. The release name for this device was Epson S1D13521
  1901. and could also have been called by other names when coupled with
  1902. a bridge adapter.
  1903. source "drivers/video/omap/Kconfig"
  1904. source "drivers/video/omap2/Kconfig"
  1905. source "drivers/video/backlight/Kconfig"
  1906. source "drivers/video/display/Kconfig"
  1907. if VT
  1908. source "drivers/video/console/Kconfig"
  1909. endif
  1910. if FB || SGI_NEWPORT_CONSOLE
  1911. source "drivers/video/logo/Kconfig"
  1912. endif
  1913. endmenu