Kconfig 62 KB

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