Kconfig 61 KB

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