Kconfig 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540
  1. #
  2. # Video configuration
  3. #
  4. menu "Graphics support"
  5. config FB
  6. tristate "Support for frame buffer devices"
  7. ---help---
  8. The frame buffer device provides an abstraction for the graphics
  9. hardware. It represents the frame buffer of some video hardware and
  10. allows application software to access the graphics hardware through
  11. a well-defined interface, so the software doesn't need to know
  12. anything about the low-level (hardware register) stuff.
  13. Frame buffer devices work identically across the different
  14. architectures supported by Linux and make the implementation of
  15. application programs easier and more portable; at this point, an X
  16. server exists which uses the frame buffer device exclusively.
  17. On several non-X86 architectures, the frame buffer device is the
  18. only way to use the graphics hardware.
  19. The device is accessed through special device nodes, usually located
  20. in the /dev directory, i.e. /dev/fb*.
  21. You need an utility program called fbset to make full use of frame
  22. buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  23. and the Framebuffer-HOWTO at
  24. <http://www.tahallah.demon.co.uk/programming/prog.html> for more
  25. information.
  26. Say Y here and to the driver for your graphics board below if you
  27. are compiling a kernel for a non-x86 architecture.
  28. If you are compiling for the x86 architecture, you can say Y if you
  29. want to play with it, but it is not essential. Please note that
  30. running graphical applications that directly touch the hardware
  31. (e.g. an accelerated X server) and that are not frame buffer
  32. device-aware may cause unexpected results. If unsure, say N.
  33. config FB_CFB_FILLRECT
  34. tristate
  35. depends on FB
  36. default n
  37. ---help---
  38. Include the cfb_fillrect function for generic software rectangle
  39. filling. This is used by drivers that don't provide their own
  40. (accelerated) version.
  41. config FB_CFB_COPYAREA
  42. tristate
  43. depends on FB
  44. default n
  45. ---help---
  46. Include the cfb_copyarea function for generic software area copying.
  47. This is used by drivers that don't provide their own (accelerated)
  48. version.
  49. config FB_CFB_IMAGEBLIT
  50. tristate
  51. depends on FB
  52. default n
  53. ---help---
  54. Include the cfb_imageblit function for generic software image
  55. blitting. This is used by drivers that don't provide their own
  56. (accelerated) version.
  57. config FB_MACMODES
  58. tristate
  59. depends on FB
  60. default n
  61. config FB_FIRMWARE_EDID
  62. bool "Enable firmware EDID"
  63. depends on FB
  64. default y
  65. ---help---
  66. This enables access to the EDID transferred from the firmware.
  67. On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  68. transfers do not work for your driver and if you are using
  69. nvidiafb, i810fb or savagefb.
  70. In general, choosing Y for this option is safe. If you
  71. experience extremely long delays while booting before you get
  72. something on your display, try setting this to N. Matrox cards in
  73. combination with certain motherboards and monitors are known to
  74. suffer from this problem.
  75. config FB_MODE_HELPERS
  76. bool "Enable Video Mode Handling Helpers"
  77. depends on FB
  78. default n
  79. ---help---
  80. This enables functions for handling video modes using the
  81. Generalized Timing Formula and the EDID parser. A few drivers rely
  82. on this feature such as the radeonfb, rivafb, and the i810fb. If
  83. your driver does not take advantage of this feature, choosing Y will
  84. just increase the kernel size by about 5K.
  85. config FB_TILEBLITTING
  86. bool "Enable Tile Blitting Support"
  87. depends on FB
  88. default n
  89. ---help---
  90. This enables tile blitting. Tile blitting is a drawing technique
  91. where the screen is divided into rectangular sections (tiles), whereas
  92. the standard blitting divides the screen into pixels. Because the
  93. default drawing element is a tile, drawing functions will be passed
  94. parameters in terms of number of tiles instead of number of pixels.
  95. For example, to draw a single character, instead of using bitmaps,
  96. an index to an array of bitmaps will be used. To clear or move a
  97. rectangular section of a screen, the rectangle will be described in
  98. terms of number of tiles in the x- and y-axis.
  99. This is particularly important to one driver, matroxfb. If
  100. unsure, say N.
  101. config FB_CIRRUS
  102. tristate "Cirrus Logic support"
  103. depends on FB && (ZORRO || PCI)
  104. select FB_CFB_FILLRECT
  105. select FB_CFB_COPYAREA
  106. select FB_CFB_IMAGEBLIT
  107. ---help---
  108. This enables support for Cirrus Logic GD542x/543x based boards on
  109. Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  110. If you have a PCI-based system, this enables support for these
  111. chips: GD-543x, GD-544x, GD-5480.
  112. Please read the file <file:Documentation/fb/cirrusfb.txt>.
  113. Say N unless you have such a graphics board or plan to get one
  114. before you next recompile the kernel.
  115. config FB_PM2
  116. tristate "Permedia2 support"
  117. depends on FB && ((AMIGA && BROKEN) || PCI)
  118. select FB_CFB_FILLRECT
  119. select FB_CFB_COPYAREA
  120. select FB_CFB_IMAGEBLIT
  121. help
  122. This is the frame buffer device driver for the Permedia2 AGP frame
  123. buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
  124. product page at
  125. <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
  126. config FB_PM2_FIFO_DISCONNECT
  127. bool "enable FIFO disconnect feature"
  128. depends on FB_PM2 && PCI
  129. help
  130. Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
  131. config FB_ARMCLCD
  132. tristate "ARM PrimeCell PL110 support"
  133. depends on FB && ARM && ARM_AMBA
  134. select FB_CFB_FILLRECT
  135. select FB_CFB_COPYAREA
  136. select FB_CFB_IMAGEBLIT
  137. help
  138. This framebuffer device driver is for the ARM PrimeCell PL110
  139. Colour LCD controller. ARM PrimeCells provide the building
  140. blocks for System on a Chip devices.
  141. If you want to compile this as a module (=code which can be
  142. inserted into and removed from the running kernel), say M
  143. here and read <file:Documentation/modules.txt>. The module
  144. will be called amba-clcd.
  145. choice
  146. depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
  147. prompt "LCD Panel"
  148. default FB_ARMCLCD_SHARP_LQ035Q7DB02
  149. config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
  150. bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
  151. help
  152. This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
  153. color QVGA, HRTFT panel. The LogicPD device includes an
  154. an integrated HRTFT controller IC.
  155. The native resolution is 240x320.
  156. config FB_ARMCLCD_SHARP_LQ057Q3DC02
  157. bool "LogicPD LCD 5.7\" QVGA"
  158. help
  159. This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
  160. color QVGA, TFT panel. The LogicPD device includes an
  161. The native resolution is 320x240.
  162. config FB_ARMCLCD_SHARP_LQ64D343
  163. bool "LogicPD LCD 6.4\" VGA"
  164. help
  165. This is an implementation of the Sharp LQ64D343, a 6.4"
  166. color VGA, TFT panel. The LogicPD device includes an
  167. The native resolution is 640x480.
  168. config FB_ARMCLCD_SHARP_LQ10D368
  169. bool "LogicPD LCD 10.4\" VGA"
  170. help
  171. This is an implementation of the Sharp LQ10D368, a 10.4"
  172. color VGA, TFT panel. The LogicPD device includes an
  173. The native resolution is 640x480.
  174. config FB_ARMCLCD_SHARP_LQ121S1DG41
  175. bool "LogicPD LCD 12.1\" SVGA"
  176. help
  177. This is an implementation of the Sharp LQ121S1DG41, a 12.1"
  178. color SVGA, TFT panel. The LogicPD device includes an
  179. The native resolution is 800x600.
  180. This panel requires a clock rate may be an integer fraction
  181. of the base LCDCLK frequency. The driver will select the
  182. highest frequency available that is lower than the maximum
  183. allowed. The panel may flicker if the clock rate is
  184. slower than the recommended minimum.
  185. config FB_ARMCLCD_AUO_A070VW01_WIDE
  186. bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
  187. help
  188. This is an implementation of the AU Optronics, a 7.0"
  189. WIDE Color. The native resolution is 234x480.
  190. config FB_ARMCLCD_HITACHI
  191. bool "Hitachi Wide Screen 800x480"
  192. help
  193. This is an implementation of the Hitachi 800x480.
  194. endchoice
  195. config FB_ACORN
  196. bool "Acorn VIDC support"
  197. depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
  198. select FB_CFB_FILLRECT
  199. select FB_CFB_COPYAREA
  200. select FB_CFB_IMAGEBLIT
  201. help
  202. This is the frame buffer device driver for the Acorn VIDC graphics
  203. hardware found in Acorn RISC PCs and other ARM-based machines. If
  204. unsure, say N.
  205. config FB_CLPS711X
  206. bool "CLPS711X LCD support"
  207. depends on (FB = y) && ARM && ARCH_CLPS711X
  208. select FB_CFB_FILLRECT
  209. select FB_CFB_COPYAREA
  210. select FB_CFB_IMAGEBLIT
  211. help
  212. Say Y to enable the Framebuffer driver for the CLPS7111 and
  213. EP7212 processors.
  214. config FB_SA1100
  215. bool "SA-1100 LCD support"
  216. depends on (FB = y) && ARM && ARCH_SA1100
  217. select FB_CFB_FILLRECT
  218. select FB_CFB_COPYAREA
  219. select FB_CFB_IMAGEBLIT
  220. help
  221. This is a framebuffer device for the SA-1100 LCD Controller.
  222. See <http://www.linux-fbdev.org/> for information on framebuffer
  223. devices.
  224. If you plan to use the LCD display with your SA-1100 system, say
  225. Y here.
  226. config FB_IMX
  227. tristate "Motorola i.MX LCD support"
  228. depends on FB && ARM && ARCH_IMX
  229. select FB_CFB_FILLRECT
  230. select FB_CFB_COPYAREA
  231. select FB_CFB_IMAGEBLIT
  232. config FB_CYBER2000
  233. tristate "CyberPro 2000/2010/5000 support"
  234. depends on FB && PCI && (BROKEN || !SPARC64)
  235. select FB_CFB_FILLRECT
  236. select FB_CFB_COPYAREA
  237. select FB_CFB_IMAGEBLIT
  238. help
  239. This enables support for the Integraphics CyberPro 20x0 and 5000
  240. VGA chips used in the Rebel.com Netwinder and other machines.
  241. Say Y if you have a NetWinder or a graphics card containing this
  242. device, otherwise say N.
  243. config FB_APOLLO
  244. bool
  245. depends on (FB = y) && APOLLO
  246. default y
  247. select FB_CFB_FILLRECT
  248. select FB_CFB_IMAGEBLIT
  249. config FB_Q40
  250. bool
  251. depends on (FB = y) && Q40
  252. default y
  253. select FB_CFB_FILLRECT
  254. select FB_CFB_COPYAREA
  255. select FB_CFB_IMAGEBLIT
  256. config FB_AMIGA
  257. tristate "Amiga native chipset support"
  258. depends on FB && AMIGA
  259. help
  260. This is the frame buffer device driver for the builtin graphics
  261. chipset found in Amigas.
  262. To compile this driver as a module, choose M here: the
  263. module will be called amifb.
  264. config FB_AMIGA_OCS
  265. bool "Amiga OCS chipset support"
  266. depends on FB_AMIGA
  267. help
  268. This enables support for the original Agnus and Denise video chips,
  269. found in the Amiga 1000 and most A500's and A2000's. If you intend
  270. to run Linux on any of these systems, say Y; otherwise say N.
  271. config FB_AMIGA_ECS
  272. bool "Amiga ECS chipset support"
  273. depends on FB_AMIGA
  274. help
  275. This enables support for the Enhanced Chip Set, found in later
  276. A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  277. you intend to run Linux on any of these systems, say Y; otherwise
  278. say N.
  279. config FB_AMIGA_AGA
  280. bool "Amiga AGA chipset support"
  281. depends on FB_AMIGA
  282. help
  283. This enables support for the Advanced Graphics Architecture (also
  284. known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  285. and CD32. If you intend to run Linux on any of these systems, say Y;
  286. otherwise say N.
  287. config FB_CYBER
  288. tristate "Amiga CyberVision 64 support"
  289. depends on FB && ZORRO && BROKEN
  290. select FB_CFB_FILLRECT
  291. select FB_CFB_COPYAREA
  292. select FB_CFB_IMAGEBLIT
  293. help
  294. This enables support for the Cybervision 64 graphics card from
  295. Phase5. Please note that its use is not all that intuitive (i.e. if
  296. you have any questions, be sure to ask!). Say N unless you have a
  297. Cybervision 64 or plan to get one before you next recompile the
  298. kernel. Please note that this driver DOES NOT support the
  299. Cybervision 64/3D card, as they use incompatible video chips.
  300. config FB_VIRGE
  301. bool "Amiga CyberVision 64/3D support "
  302. depends on (FB = y) && ZORRO && BROKEN
  303. select FB_CFB_FILLRECT
  304. select FB_CFB_COPYAREA
  305. select FB_CFB_IMAGEBLIT
  306. help
  307. This enables support for the Cybervision 64/3D graphics card from
  308. Phase5. Please note that its use is not all that intuitive (i.e. if
  309. you have any questions, be sure to ask!). Say N unless you have a
  310. Cybervision 64/3D or plan to get one before you next recompile the
  311. kernel. Please note that this driver DOES NOT support the older
  312. Cybervision 64 card, as they use incompatible video chips.
  313. config FB_RETINAZ3
  314. tristate "Amiga Retina Z3 support"
  315. depends on (FB = y) && ZORRO && BROKEN
  316. help
  317. This enables support for the Retina Z3 graphics card. Say N unless
  318. you have a Retina Z3 or plan to get one before you next recompile
  319. the kernel.
  320. config FB_FM2
  321. bool "Amiga FrameMaster II/Rainbow II support"
  322. depends on (FB = y) && ZORRO
  323. select FB_CFB_FILLRECT
  324. select FB_CFB_COPYAREA
  325. select FB_CFB_IMAGEBLIT
  326. help
  327. This is the frame buffer device driver for the Amiga FrameMaster
  328. card from BSC (exhibited 1992 but not shipped as a CBM product).
  329. config FB_ARC
  330. tristate "Arc Monochrome LCD board support"
  331. depends on FB && X86
  332. select FB_CFB_FILLRECT
  333. select FB_CFB_COPYAREA
  334. select FB_CFB_IMAGEBLIT
  335. help
  336. This enables support for the Arc Monochrome LCD board. The board
  337. is based on the KS-108 lcd controller and is typically a matrix
  338. of 2*n chips. This driver was tested with a 128x64 panel. This
  339. driver supports it for use with x86 SBCs through a 16 bit GPIO
  340. interface (8 bit data, 8 bit control). If you anticpate using
  341. this driver, say Y or M; otherwise say N. You must specify the
  342. GPIO IO address to be used for setting control and data.
  343. config FB_ATARI
  344. bool "Atari native chipset support"
  345. depends on (FB = y) && ATARI && BROKEN
  346. help
  347. This is the frame buffer device driver for the builtin graphics
  348. chipset found in Ataris.
  349. config FB_OF
  350. bool "Open Firmware frame buffer device support"
  351. depends on (FB = y) && (PPC64 || PPC_OF)
  352. select FB_CFB_FILLRECT
  353. select FB_CFB_COPYAREA
  354. select FB_CFB_IMAGEBLIT
  355. select FB_MACMODES
  356. help
  357. Say Y if you want support with Open Firmware for your graphics
  358. board.
  359. config FB_CONTROL
  360. bool "Apple \"control\" display support"
  361. depends on (FB = y) && PPC_PMAC
  362. select FB_CFB_FILLRECT
  363. select FB_CFB_COPYAREA
  364. select FB_CFB_IMAGEBLIT
  365. select FB_MACMODES
  366. help
  367. This driver supports a frame buffer for the graphics adapter in the
  368. Power Macintosh 7300 and others.
  369. config FB_PLATINUM
  370. bool "Apple \"platinum\" display support"
  371. depends on (FB = y) && PPC_PMAC
  372. select FB_CFB_FILLRECT
  373. select FB_CFB_COPYAREA
  374. select FB_CFB_IMAGEBLIT
  375. select FB_MACMODES
  376. help
  377. This driver supports a frame buffer for the "platinum" graphics
  378. adapter in some Power Macintoshes.
  379. config FB_VALKYRIE
  380. bool "Apple \"valkyrie\" display support"
  381. depends on (FB = y) && (MAC || PPC_PMAC)
  382. select FB_CFB_FILLRECT
  383. select FB_CFB_COPYAREA
  384. select FB_CFB_IMAGEBLIT
  385. select FB_MACMODES
  386. help
  387. This driver supports a frame buffer for the "valkyrie" graphics
  388. adapter in some Power Macintoshes.
  389. config FB_CT65550
  390. bool "Chips 65550 display support"
  391. depends on (FB = y) && PPC
  392. select FB_CFB_FILLRECT
  393. select FB_CFB_COPYAREA
  394. select FB_CFB_IMAGEBLIT
  395. help
  396. This is the frame buffer device driver for the Chips & Technologies
  397. 65550 graphics chip in PowerBooks.
  398. config FB_ASILIANT
  399. bool "Asiliant (Chips) 69000 display support"
  400. depends on (FB = y) && PCI
  401. select FB_CFB_FILLRECT
  402. select FB_CFB_COPYAREA
  403. select FB_CFB_IMAGEBLIT
  404. help
  405. This is the frame buffer device driver for the Asiliant 69030 chipset
  406. config FB_IMSTT
  407. bool "IMS Twin Turbo display support"
  408. depends on (FB = y) && PCI
  409. select FB_CFB_IMAGEBLIT
  410. select FB_MACMODES if PPC
  411. help
  412. The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  413. many Macintosh and compatible computers.
  414. config FB_VGA16
  415. tristate "VGA 16-color graphics support"
  416. depends on FB && (X86 || PPC)
  417. select FB_CFB_FILLRECT
  418. select FB_CFB_COPYAREA
  419. select FB_CFB_IMAGEBLIT
  420. help
  421. This is the frame buffer device driver for VGA 16 color graphic
  422. cards. Say Y if you have such a card.
  423. To compile this driver as a module, choose M here: the
  424. module will be called vga16fb.
  425. config FB_STI
  426. tristate "HP STI frame buffer device support"
  427. depends on FB && PARISC
  428. select FB_CFB_FILLRECT
  429. select FB_CFB_COPYAREA
  430. select FB_CFB_IMAGEBLIT
  431. default y
  432. ---help---
  433. STI refers to the HP "Standard Text Interface" which is a set of
  434. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  435. Enabling this option will implement the linux framebuffer device
  436. using calls to the STI BIOS routines for initialisation.
  437. If you enable this option, you will get a planar framebuffer device
  438. /dev/fb which will work on the most common HP graphic cards of the
  439. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  440. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  441. It is safe to enable this option, so you should probably say "Y".
  442. config FB_MAC
  443. bool "Generic Macintosh display support"
  444. depends on (FB = y) && MAC
  445. select FB_CFB_FILLRECT
  446. select FB_CFB_COPYAREA
  447. select FB_CFB_IMAGEBLIT
  448. select FB_MACMODES
  449. # bool ' Apple DAFB display support' CONFIG_FB_DAFB
  450. config FB_HP300
  451. bool
  452. depends on (FB = y) && HP300
  453. select FB_CFB_FILLRECT
  454. select FB_CFB_IMAGEBLIT
  455. default y
  456. config FB_TGA
  457. tristate "TGA framebuffer support"
  458. depends on FB && ALPHA
  459. select FB_CFB_FILLRECT
  460. select FB_CFB_COPYAREA
  461. select FB_CFB_IMAGEBLIT
  462. help
  463. This is the frame buffer device driver for generic TGA graphic
  464. cards. Say Y if you have one of those.
  465. config FB_VESA
  466. bool "VESA VGA graphics support"
  467. depends on (FB = y) && X86
  468. select FB_CFB_FILLRECT
  469. select FB_CFB_COPYAREA
  470. select FB_CFB_IMAGEBLIT
  471. help
  472. This is the frame buffer device driver for generic VESA 2.0
  473. compliant graphic cards. The older VESA 1.2 cards are not supported.
  474. You will get a boot time penguin logo at no additional cost. Please
  475. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  476. config VIDEO_SELECT
  477. bool
  478. depends on FB_VESA
  479. default y
  480. config FB_HGA
  481. tristate "Hercules mono graphics support"
  482. depends on FB && X86
  483. select FB_CFB_FILLRECT
  484. select FB_CFB_COPYAREA
  485. select FB_CFB_IMAGEBLIT
  486. help
  487. Say Y here if you have a Hercules mono graphics card.
  488. To compile this driver as a module, choose M here: the
  489. module will be called hgafb.
  490. As this card technology is 15 years old, most people will answer N
  491. here.
  492. config FB_HGA_ACCEL
  493. bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  494. depends on FB_HGA && EXPERIMENTAL
  495. ---help---
  496. This will compile the Hercules mono graphics with
  497. acceleration functions.
  498. config VIDEO_SELECT
  499. bool
  500. depends on (FB = y) && X86
  501. default y
  502. config FB_SGIVW
  503. tristate "SGI Visual Workstation framebuffer support"
  504. depends on FB && X86_VISWS
  505. select FB_CFB_FILLRECT
  506. select FB_CFB_COPYAREA
  507. select FB_CFB_IMAGEBLIT
  508. help
  509. SGI Visual Workstation support for framebuffer graphics.
  510. config FB_GBE
  511. bool "SGI Graphics Backend frame buffer support"
  512. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  513. select FB_CFB_FILLRECT
  514. select FB_CFB_COPYAREA
  515. select FB_CFB_IMAGEBLIT
  516. help
  517. This is the frame buffer device driver for SGI Graphics Backend.
  518. This chip is used in SGI O2 and Visual Workstation 320/540.
  519. config FB_GBE_MEM
  520. int "Video memory size in MB"
  521. depends on FB_GBE
  522. default 4
  523. help
  524. This is the amount of memory reserved for the framebuffer,
  525. which can be any value between 1MB and 8MB.
  526. config FB_SUN3
  527. bool "Sun3 framebuffer support"
  528. depends on (FB = y) && (SUN3 || SUN3X) && BROKEN
  529. config FB_SBUS
  530. bool "SBUS and UPA framebuffers"
  531. depends on (FB = y) && SPARC
  532. help
  533. Say Y if you want support for SBUS or UPA based frame buffer device.
  534. config FB_BW2
  535. bool "BWtwo support"
  536. depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3)
  537. select FB_CFB_FILLRECT
  538. select FB_CFB_COPYAREA
  539. select FB_CFB_IMAGEBLIT
  540. help
  541. This is the frame buffer device driver for the BWtwo frame buffer.
  542. config FB_CG3
  543. bool "CGthree support"
  544. depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3)
  545. select FB_CFB_FILLRECT
  546. select FB_CFB_COPYAREA
  547. select FB_CFB_IMAGEBLIT
  548. help
  549. This is the frame buffer device driver for the CGthree frame buffer.
  550. config FB_CG6
  551. bool "CGsix (GX,TurboGX) support"
  552. depends on (FB = y) && (SPARC && FB_SBUS || (SUN3 || SUN3X) && FB_SUN3)
  553. select FB_CFB_COPYAREA
  554. select FB_CFB_IMAGEBLIT
  555. help
  556. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  557. frame buffer.
  558. config FB_PVR2
  559. tristate "NEC PowerVR 2 display support"
  560. depends on FB && SH_DREAMCAST
  561. select FB_CFB_FILLRECT
  562. select FB_CFB_COPYAREA
  563. select FB_CFB_IMAGEBLIT
  564. ---help---
  565. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  566. run linux on your Dreamcast, you will have to say Y here.
  567. This driver may or may not work on other PowerVR 2 cards, but is
  568. totally untested. Use at your own risk. If unsure, say N.
  569. To compile this driver as a module, choose M here: the
  570. module will be called pvr2fb.
  571. You can pass several parameters to the driver at boot time or at
  572. module load time. The parameters look like "video=pvr2:XXX", where
  573. the meaning of XXX can be found at the end of the main source file
  574. (<file:drivers/video/pvr2fb.c>). Please see the file
  575. <file:Documentation/fb/pvr2fb.txt>.
  576. config FB_EPSON1355
  577. bool "Epson 1355 framebuffer support"
  578. depends on (FB = y) && (SUPERH || ARCH_CEIVA)
  579. select FB_CFB_FILLRECT
  580. select FB_CFB_COPYAREA
  581. select FB_CFB_IMAGEBLIT
  582. help
  583. Build in support for the SED1355 Epson Research Embedded RAMDAC
  584. LCD/CRT Controller (since redesignated as the S1D13505) as a
  585. framebuffer. Product specs at
  586. <http://www.erd.epson.com/vdc/html/products.htm>.
  587. config FB_S1D13XXX
  588. tristate "Epson S1D13XXX framebuffer support"
  589. depends on FB
  590. select FB_CFB_FILLRECT
  591. select FB_CFB_COPYAREA
  592. select FB_CFB_IMAGEBLIT
  593. help
  594. Support for S1D13XXX framebuffer device family (currently only
  595. working with S1D13806). Product specs at
  596. <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  597. config FB_NVIDIA
  598. tristate "nVidia Framebuffer Support"
  599. depends on FB && PCI
  600. select I2C_ALGOBIT if FB_NVIDIA_I2C
  601. select I2C if FB_NVIDIA_I2C
  602. select FB_MODE_HELPERS
  603. select FB_CFB_FILLRECT
  604. select FB_CFB_COPYAREA
  605. select FB_CFB_IMAGEBLIT
  606. help
  607. This driver supports graphics boards with the nVidia chips, TNT
  608. and newer. For very old chipsets, such as the RIVA128, then use
  609. the rivafb.
  610. Say Y if you have such a graphics board.
  611. To compile this driver as a module, choose M here: the
  612. module will be called nvidiafb.
  613. config FB_NVIDIA_I2C
  614. bool "Enable DDC Support"
  615. depends on FB_NVIDIA
  616. help
  617. This enables I2C support for nVidia Chipsets. This is used
  618. only for getting EDID information from the attached display
  619. allowing for robust video mode handling and switching.
  620. Because fbdev-2.6 requires that drivers must be able to
  621. independently validate video mode parameters, you should say Y
  622. here.
  623. config FB_RIVA
  624. tristate "nVidia Riva support"
  625. depends on FB && PCI
  626. select I2C_ALGOBIT if FB_RIVA_I2C
  627. select I2C if FB_RIVA_I2C
  628. select FB_MODE_HELPERS
  629. select FB_CFB_FILLRECT
  630. select FB_CFB_COPYAREA
  631. select FB_CFB_IMAGEBLIT
  632. help
  633. This driver supports graphics boards with the nVidia Riva/Geforce
  634. chips.
  635. Say Y if you have such a graphics board.
  636. To compile this driver as a module, choose M here: the
  637. module will be called rivafb.
  638. config FB_RIVA_I2C
  639. bool "Enable DDC Support"
  640. depends on FB_RIVA
  641. help
  642. This enables I2C support for nVidia Chipsets. This is used
  643. only for getting EDID information from the attached display
  644. allowing for robust video mode handling and switching.
  645. Because fbdev-2.6 requires that drivers must be able to
  646. independently validate video mode parameters, you should say Y
  647. here.
  648. config FB_RIVA_DEBUG
  649. bool "Lots of debug output from Riva(nVidia) driver"
  650. depends on FB_RIVA
  651. default n
  652. help
  653. Say Y here if you want the Riva driver to output all sorts
  654. of debugging informations to provide to the maintainer when
  655. something goes wrong.
  656. config FB_I810
  657. tristate "Intel 810/815 support (EXPERIMENTAL)"
  658. depends on FB && EXPERIMENTAL && PCI && X86_32
  659. select AGP
  660. select AGP_INTEL
  661. select FB_MODE_HELPERS
  662. select FB_CFB_FILLRECT
  663. select FB_CFB_COPYAREA
  664. select FB_CFB_IMAGEBLIT
  665. help
  666. This driver supports the on-board graphics built in to the Intel 810
  667. and 815 chipsets. Say Y if you have and plan to use such a board.
  668. To compile this driver as a module, choose M here: the
  669. module will be called i810fb.
  670. For more information, please read
  671. <file:Documentation/fb/intel810.txt>
  672. config FB_I810_GTF
  673. bool "use VESA Generalized Timing Formula"
  674. depends on FB_I810
  675. help
  676. If you say Y, then the VESA standard, Generalized Timing Formula
  677. or GTF, will be used to calculate the required video timing values
  678. per video mode. Since the GTF allows nondiscrete timings
  679. (nondiscrete being a range of values as opposed to discrete being a
  680. set of values), you'll be able to use any combination of horizontal
  681. and vertical resolutions, and vertical refresh rates without having
  682. to specify your own timing parameters. This is especially useful
  683. to maximize the performance of an aging display, or if you just
  684. have a display with nonstandard dimensions. A VESA compliant
  685. monitor is recommended, but can still work with non-compliant ones.
  686. If you need or want this, then select this option. The timings may
  687. not be compliant with Intel's recommended values. Use at your own
  688. risk.
  689. If you say N, the driver will revert to discrete video timings
  690. using a set recommended by Intel in their documentation.
  691. If unsure, say N.
  692. config FB_I810_I2C
  693. bool "Enable DDC Support"
  694. depends on FB_I810 && FB_I810_GTF
  695. select I2C
  696. select I2C_ALGOBIT
  697. help
  698. config FB_INTEL
  699. tristate "Intel 830M/845G/852GM/855GM/865G support (EXPERIMENTAL)"
  700. depends on FB && EXPERIMENTAL && PCI && X86
  701. select AGP
  702. select AGP_INTEL
  703. select FB_MODE_HELPERS
  704. select FB_CFB_FILLRECT
  705. select FB_CFB_COPYAREA
  706. select FB_CFB_IMAGEBLIT
  707. help
  708. This driver supports the on-board graphics built in to the Intel
  709. 830M/845G/852GM/855GM/865G chipsets.
  710. Say Y if you have and plan to use such a board.
  711. To compile this driver as a module, choose M here: the
  712. module will be called intelfb.
  713. config FB_INTEL_DEBUG
  714. bool "Intel driver Debug Messages"
  715. depends on FB_INTEL
  716. ---help---
  717. Say Y here if you want the Intel driver to output all sorts
  718. of debugging informations to provide to the maintainer when
  719. something goes wrong.
  720. config FB_MATROX
  721. tristate "Matrox acceleration"
  722. depends on FB && PCI
  723. select FB_CFB_FILLRECT
  724. select FB_CFB_COPYAREA
  725. select FB_CFB_IMAGEBLIT
  726. select FB_TILEBLITTING
  727. select FB_MACMODES if PPC_PMAC
  728. ---help---
  729. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  730. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  731. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  732. Matrox G400, G450 or G550 card in your box.
  733. To compile this driver as a module, choose M here: the
  734. module will be called matroxfb.
  735. You can pass several parameters to the driver at boot time or at
  736. module load time. The parameters look like "video=matrox:XXX", and
  737. are described in <file:Documentation/fb/matroxfb.txt>.
  738. config FB_MATROX_MILLENIUM
  739. bool "Millennium I/II support"
  740. depends on FB_MATROX
  741. help
  742. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  743. video card. If you select "Advanced lowlevel driver options" below,
  744. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  745. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  746. also use font widths different from 8.
  747. config FB_MATROX_MYSTIQUE
  748. bool "Mystique support"
  749. depends on FB_MATROX
  750. help
  751. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  752. video card. If you select "Advanced lowlevel driver options" below,
  753. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  754. packed pixel and 32 bpp packed pixel. You can also use font widths
  755. different from 8.
  756. config FB_MATROX_G
  757. bool "G100/G200/G400/G450/G550 support"
  758. depends on FB_MATROX
  759. ---help---
  760. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  761. video card. If you select "Advanced lowlevel driver options", you
  762. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  763. pixel and 32 bpp packed pixel. You can also use font widths
  764. different from 8.
  765. If you need support for G400 secondary head, you must first say Y to
  766. "I2C support" in the character devices section, and then to
  767. "Matrox I2C support" and "G400 second head support" here in the
  768. framebuffer section. G450/G550 secondary head and digital output
  769. are supported without additional modules.
  770. The driver starts in monitor mode. You must use the matroxset tool
  771. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  772. swap primary and secondary head outputs, or to change output mode.
  773. Secondary head driver always start in 640x480 resolution and you
  774. must use fbset to change it.
  775. Do not forget that second head supports only 16 and 32 bpp
  776. packed pixels, so it is a good idea to compile them into the kernel
  777. too. You can use only some font widths, as the driver uses generic
  778. painting procedures (the secondary head does not use acceleration
  779. engine).
  780. G450/G550 hardware can display TV picture only from secondary CRTC,
  781. and it performs no scaling, so picture must have 525 or 625 lines.
  782. config FB_MATROX_I2C
  783. tristate "Matrox I2C support"
  784. depends on FB_MATROX && I2C
  785. select I2C_ALGOBIT
  786. ---help---
  787. This drivers creates I2C buses which are needed for accessing the
  788. DDC (I2C) bus present on all Matroxes, an I2C bus which
  789. interconnects Matrox optional devices, like MGA-TVO on G200 and
  790. G400, and the secondary head DDC bus, present on G400 only.
  791. You can say Y or M here if you want to experiment with monitor
  792. detection code. You must say Y or M here if you want to use either
  793. second head of G400 or MGA-TVO on G200 or G400.
  794. If you compile it as module, it will create a module named
  795. i2c-matroxfb.
  796. config FB_MATROX_MAVEN
  797. tristate "G400 second head support"
  798. depends on FB_MATROX_G && FB_MATROX_I2C
  799. ---help---
  800. WARNING !!! This support does not work with G450 !!!
  801. Say Y or M here if you want to use a secondary head (meaning two
  802. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  803. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  804. secondary head output is blanked while you are in X. With XFree
  805. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  806. the fbdev driver on first head and the fbdev driver on second head.
  807. If you compile it as module, two modules are created,
  808. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  809. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  810. also load i2c-matroxfb to get it to run.
  811. The driver starts in monitor mode and you must use the matroxset
  812. tool (available at
  813. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  814. PAL or NTSC or to swap primary and secondary head outputs.
  815. Secondary head driver also always start in 640x480 resolution, you
  816. must use fbset to change it.
  817. Also do not forget that second head supports only 16 and 32 bpp
  818. packed pixels, so it is a good idea to compile them into the kernel
  819. too. You can use only some font widths, as the driver uses generic
  820. painting procedures (the secondary head does not use acceleration
  821. engine).
  822. config FB_MATROX_MULTIHEAD
  823. bool "Multihead support"
  824. depends on FB_MATROX
  825. ---help---
  826. Say Y here if you have more than one (supported) Matrox device in
  827. your computer and you want to use all of them for different monitors
  828. ("multihead"). If you have only one device, you should say N because
  829. the driver compiled with Y is larger and a bit slower, especially on
  830. ia32 (ix86).
  831. If you said M to "Matrox unified accelerated driver" and N here, you
  832. will still be able to use several Matrox devices simultaneously:
  833. insert several instances of the module matroxfb into the kernel
  834. with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  835. for the different Matrox devices. This method is slightly faster but
  836. uses 40 KB of kernel memory per Matrox card.
  837. There is no need for enabling 'Matrox multihead support' if you have
  838. only one Matrox card in the box.
  839. config FB_RADEON
  840. tristate "ATI Radeon display support"
  841. depends on FB && PCI
  842. select I2C_ALGOBIT if FB_RADEON_I2C
  843. select I2C if FB_RADEON_I2C
  844. select FB_MODE_HELPERS
  845. select FB_CFB_FILLRECT
  846. select FB_CFB_COPYAREA
  847. select FB_CFB_IMAGEBLIT
  848. select FB_MACMODES if PPC_OF
  849. help
  850. Choose this option if you want to use an ATI Radeon graphics card as
  851. a framebuffer device. There are both PCI and AGP versions. You
  852. don't need to choose this to run the Radeon in plain VGA mode.
  853. If you say Y here and want DDC/I2C support you must first say Y to
  854. "I2C support" and "I2C bit-banging support" in the character devices
  855. section.
  856. If you say M here then "I2C support" and "I2C bit-banging support"
  857. can be build either as modules or built-in.
  858. There is a product page at
  859. http://apps.ati.com/ATIcompare/
  860. config FB_RADEON_I2C
  861. bool "DDC/I2C for ATI Radeon support"
  862. depends on FB_RADEON
  863. default y
  864. help
  865. Say Y here if you want DDC/I2C support for your Radeon board.
  866. config FB_RADEON_DEBUG
  867. bool "Lots of debug output from Radeon driver"
  868. depends on FB_RADEON
  869. default n
  870. help
  871. Say Y here if you want the Radeon driver to output all sorts
  872. of debugging informations to provide to the maintainer when
  873. something goes wrong.
  874. config FB_ATY128
  875. tristate "ATI Rage128 display support"
  876. depends on FB && PCI
  877. select FB_CFB_FILLRECT
  878. select FB_CFB_COPYAREA
  879. select FB_CFB_IMAGEBLIT
  880. select FB_MACMODES if PPC_PMAC
  881. help
  882. This driver supports graphics boards with the ATI Rage128 chips.
  883. Say Y if you have such a graphics board and read
  884. <file:Documentation/fb/aty128fb.txt>.
  885. To compile this driver as a module, choose M here: the
  886. module will be called aty128fb.
  887. config FB_ATY
  888. tristate "ATI Mach64 display support" if PCI || ATARI
  889. depends on FB && !SPARC32
  890. select FB_CFB_FILLRECT
  891. select FB_CFB_COPYAREA
  892. select FB_CFB_IMAGEBLIT
  893. select FB_MACMODES if PPC
  894. help
  895. This driver supports graphics boards with the ATI Mach64 chips.
  896. Say Y if you have such a graphics board.
  897. To compile this driver as a module, choose M here: the
  898. module will be called atyfb.
  899. config FB_ATY_CT
  900. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  901. depends on PCI && FB_ATY
  902. default y if SPARC64 && FB_PCI
  903. help
  904. Say Y here to support use of ATI's 64-bit Rage boards (or other
  905. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  906. framebuffer device. The ATI product support page for these boards
  907. is at <http://support.ati.com/products/pc/mach64/>.
  908. config FB_ATY_GENERIC_LCD
  909. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  910. depends on FB_ATY_CT
  911. help
  912. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  913. Rage XC, or Rage XL chipset.
  914. config FB_ATY_GX
  915. bool "Mach64 GX support" if PCI
  916. depends on FB_ATY
  917. default y if ATARI
  918. help
  919. Say Y here to support use of the ATI Mach64 Graphics Expression
  920. board (or other boards based on the Mach64 GX chipset) as a
  921. framebuffer device. The ATI product support page for these boards
  922. is at
  923. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  924. config FB_S3TRIO
  925. bool "S3 Trio display support"
  926. depends on (FB = y) && PPC && BROKEN
  927. help
  928. If you have a S3 Trio say Y. Say N for S3 Virge.
  929. config FB_SAVAGE
  930. tristate "S3 Savage support"
  931. depends on FB && PCI && EXPERIMENTAL
  932. select I2C_ALGOBIT if FB_SAVAGE_I2C
  933. select I2C if FB_SAVAGE_I2C
  934. select FB_MODE_HELPERS
  935. select FB_CFB_FILLRECT
  936. select FB_CFB_COPYAREA
  937. select FB_CFB_IMAGEBLIT
  938. help
  939. This driver supports notebooks and computers with S3 Savage PCI/AGP
  940. chips.
  941. Say Y if you have such a graphics card.
  942. To compile this driver as a module, choose M here; the module
  943. will be called savagefb.
  944. config FB_SAVAGE_I2C
  945. bool "Enable DDC2 Support"
  946. depends on FB_SAVAGE
  947. help
  948. This enables I2C support for S3 Savage Chipsets. This is used
  949. only for getting EDID information from the attached display
  950. allowing for robust video mode handling and switching.
  951. Because fbdev-2.6 requires that drivers must be able to
  952. independently validate video mode parameters, you should say Y
  953. here.
  954. config FB_SAVAGE_ACCEL
  955. bool "Enable Console Acceleration"
  956. depends on FB_SAVAGE
  957. default n
  958. help
  959. This option will compile in console acceleration support. If
  960. the resulting framebuffer console has bothersome glitches, then
  961. choose N here.
  962. config FB_SIS
  963. tristate "SiS/XGI display support"
  964. depends on FB && PCI
  965. select FB_CFB_FILLRECT
  966. select FB_CFB_COPYAREA
  967. select FB_CFB_IMAGEBLIT
  968. help
  969. This is the frame buffer device driver for the SiS 300, 315, 330
  970. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  971. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  972. To compile this driver as a module, choose M here; the module
  973. will be called sisfb.
  974. config FB_SIS_300
  975. bool "SiS 300 series support"
  976. depends on FB_SIS
  977. help
  978. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  979. config FB_SIS_315
  980. bool "SiS 315/330/340 series and XGI support"
  981. depends on FB_SIS
  982. help
  983. Say Y here to support use of the SiS 315, 330 and 340 series
  984. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  985. as XGI V3XT, V5, V8 and Z7.
  986. config FB_NEOMAGIC
  987. tristate "NeoMagic display support"
  988. depends on FB && PCI
  989. select FB_MODE_HELPERS
  990. select FB_CFB_FILLRECT
  991. select FB_CFB_COPYAREA
  992. select FB_CFB_IMAGEBLIT
  993. help
  994. This driver supports notebooks with NeoMagic PCI chips.
  995. Say Y if you have such a graphics card.
  996. To compile this driver as a module, choose M here: the
  997. module will be called neofb.
  998. config FB_KYRO
  999. tristate "IMG Kyro support"
  1000. depends on FB && PCI
  1001. select FB_CFB_FILLRECT
  1002. select FB_CFB_COPYAREA
  1003. select FB_CFB_IMAGEBLIT
  1004. help
  1005. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1006. graphics board.
  1007. To compile this driver as a module, choose M here: the
  1008. module will be called kyrofb.
  1009. config FB_3DFX
  1010. tristate "3Dfx Banshee/Voodoo3 display support"
  1011. depends on FB && PCI
  1012. select FB_CFB_IMAGEBLIT
  1013. select FB_CFB_FILLRECT
  1014. select FB_CFB_COPYAREA
  1015. help
  1016. This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
  1017. chips. Say Y if you have such a graphics board.
  1018. To compile this driver as a module, choose M here: the
  1019. module will be called tdfxfb.
  1020. config FB_3DFX_ACCEL
  1021. bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
  1022. depends on FB_3DFX && EXPERIMENTAL
  1023. ---help---
  1024. This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
  1025. with acceleration functions.
  1026. config FB_VOODOO1
  1027. tristate "3Dfx Voodoo Graphics (sst1) support"
  1028. depends on FB && PCI
  1029. select FB_CFB_FILLRECT
  1030. select FB_CFB_COPYAREA
  1031. select FB_CFB_IMAGEBLIT
  1032. ---help---
  1033. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1034. Voodoo2 (cvg) based graphics card.
  1035. To compile this driver as a module, choose M here: the
  1036. module will be called sstfb.
  1037. WARNING: Do not use any application that uses the 3D engine
  1038. (namely glide) while using this driver.
  1039. Please read the <file:Documentation/fb/README-sstfb.txt> for supported
  1040. options and other important info support.
  1041. config FB_CYBLA
  1042. tristate "Cyberblade/i1 support"
  1043. depends on FB && PCI && X86_32 && !64BIT
  1044. select FB_CFB_IMAGEBLIT
  1045. select VIDEO_SELECT
  1046. ---help---
  1047. This driver is supposed to support the Trident Cyberblade/i1
  1048. graphics core integrated in the VIA VT8601A North Bridge,
  1049. also known as VIA Apollo PLE133.
  1050. Status:
  1051. - Developed, tested and working on EPIA 5000 and EPIA 800.
  1052. - Does work reliable on all systems with CRT/LCD connected to
  1053. normal VGA ports.
  1054. - Should work on systems that do use the internal LCD port, but
  1055. this is absolutely not tested.
  1056. Character imageblit, copyarea and rectangle fill are hw accelerated,
  1057. ypan scrolling is used by default.
  1058. Please do read <file:Documentation/fb/cyblafb/*>.
  1059. To compile this driver as a module, choose M here: the
  1060. module will be called cyblafb.
  1061. config FB_TRIDENT
  1062. tristate "Trident support"
  1063. depends on FB && PCI
  1064. select FB_CFB_FILLRECT
  1065. select FB_CFB_COPYAREA
  1066. select FB_CFB_IMAGEBLIT
  1067. ---help---
  1068. This driver is supposed to support graphics boards with the
  1069. Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
  1070. but also on some motherboards. For more information, read
  1071. <file:Documentation/fb/tridentfb.txt>
  1072. Cyberblade/i1 support will be removed soon, use the cyblafb driver
  1073. instead.
  1074. Say Y if you have such a graphics board.
  1075. To compile this driver as a module, choose M here: the
  1076. module will be called tridentfb.
  1077. config FB_TRIDENT_ACCEL
  1078. bool "Trident Acceleration functions (EXPERIMENTAL)"
  1079. depends on FB_TRIDENT && EXPERIMENTAL
  1080. ---help---
  1081. This will compile the Trident frame buffer device with
  1082. acceleration functions.
  1083. config FB_PM3
  1084. tristate "Permedia3 support"
  1085. depends on FB && PCI && BROKEN
  1086. help
  1087. This is the frame buffer device driver for the 3DLabs Permedia3
  1088. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1089. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1090. and maybe other boards.
  1091. config FB_AU1100
  1092. bool "Au1100 LCD Driver"
  1093. depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y
  1094. config FB_AU1200
  1095. bool "Au1200 LCD Driver"
  1096. depends on FB && MIPS && SOC_AU1200
  1097. select FB_CFB_FILLRECT
  1098. select FB_CFB_COPYAREA
  1099. select FB_CFB_IMAGEBLIT
  1100. help
  1101. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1102. various panels and CRTs by passing in kernel cmd line option
  1103. au1200fb:panel=<name>.
  1104. source "drivers/video/geode/Kconfig"
  1105. config FB_FFB
  1106. bool "Creator/Creator3D/Elite3D support"
  1107. depends on FB_SBUS && SPARC64
  1108. select FB_CFB_COPYAREA
  1109. select FB_CFB_IMAGEBLIT
  1110. help
  1111. This is the frame buffer device driver for the Creator, Creator3D,
  1112. and Elite3D graphics boards.
  1113. config FB_TCX
  1114. bool "TCX (SS4/SS5 only) support"
  1115. depends on FB_SBUS
  1116. select FB_CFB_FILLRECT
  1117. select FB_CFB_COPYAREA
  1118. select FB_CFB_IMAGEBLIT
  1119. help
  1120. This is the frame buffer device driver for the TCX 24/8bit frame
  1121. buffer.
  1122. config FB_CG14
  1123. bool "CGfourteen (SX) support"
  1124. depends on FB_SBUS
  1125. select FB_CFB_FILLRECT
  1126. select FB_CFB_COPYAREA
  1127. select FB_CFB_IMAGEBLIT
  1128. help
  1129. This is the frame buffer device driver for the CGfourteen frame
  1130. buffer on Desktop SPARCsystems with the SX graphics option.
  1131. config FB_P9100
  1132. bool "P9100 (Sparcbook 3 only) support"
  1133. depends on FB_SBUS
  1134. select FB_CFB_FILLRECT
  1135. select FB_CFB_COPYAREA
  1136. select FB_CFB_IMAGEBLIT
  1137. help
  1138. This is the frame buffer device driver for the P9100 card
  1139. supported on Sparcbook 3 machines.
  1140. config FB_LEO
  1141. bool "Leo (ZX) support"
  1142. depends on FB_SBUS
  1143. select FB_CFB_FILLRECT
  1144. select FB_CFB_COPYAREA
  1145. select FB_CFB_IMAGEBLIT
  1146. help
  1147. This is the frame buffer device driver for the SBUS-based Sun ZX
  1148. (leo) frame buffer cards.
  1149. config FB_PCI
  1150. bool "PCI framebuffers"
  1151. depends on (FB = y) && PCI && SPARC
  1152. config FB_IGA
  1153. bool "IGA 168x display support"
  1154. depends on SPARC32 && FB_PCI
  1155. select FB_CFB_FILLRECT
  1156. select FB_CFB_COPYAREA
  1157. select FB_CFB_IMAGEBLIT
  1158. help
  1159. This is the framebuffer device for the INTERGRAPHICS 1680 and
  1160. successor frame buffer cards.
  1161. config FB_HIT
  1162. tristate "HD64461 Frame Buffer support"
  1163. depends on FB && HD64461
  1164. select FB_CFB_FILLRECT
  1165. select FB_CFB_COPYAREA
  1166. select FB_CFB_IMAGEBLIT
  1167. help
  1168. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1169. frame buffer card.
  1170. config FB_PMAG_AA
  1171. bool "PMAG-AA TURBOchannel framebuffer support"
  1172. depends on (FB = y) && TC
  1173. select FB_CFB_FILLRECT
  1174. select FB_CFB_COPYAREA
  1175. select FB_CFB_IMAGEBLIT
  1176. help
  1177. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1178. used mainly in the MIPS-based DECstation series.
  1179. config FB_PMAG_BA
  1180. bool "PMAG-BA TURBOchannel framebuffer support"
  1181. depends on (FB = y) && TC
  1182. select FB_CFB_FILLRECT
  1183. select FB_CFB_COPYAREA
  1184. select FB_CFB_IMAGEBLIT
  1185. help
  1186. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1187. used mainly in the MIPS-based DECstation series.
  1188. config FB_PMAGB_B
  1189. bool "PMAGB-B TURBOchannel framebuffer support"
  1190. depends on (FB = y) && TC
  1191. select FB_CFB_FILLRECT
  1192. select FB_CFB_COPYAREA
  1193. select FB_CFB_IMAGEBLIT
  1194. help
  1195. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1196. in the MIPS-based DECstation series. The card is currently only
  1197. supported in 1280x1024x8 mode.
  1198. config FB_MAXINE
  1199. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1200. depends on (FB = y) && MACH_DECSTATION
  1201. select FB_CFB_FILLRECT
  1202. select FB_CFB_COPYAREA
  1203. select FB_CFB_IMAGEBLIT
  1204. help
  1205. Support for the onboard framebuffer (1024x768x8) in the Personal
  1206. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1207. Codename "Maxine").
  1208. config FB_TX3912
  1209. bool "TMPTX3912/PR31700 frame buffer support"
  1210. depends on (FB = y) && NINO
  1211. select FB_CFB_FILLRECT
  1212. select FB_CFB_COPYAREA
  1213. select FB_CFB_IMAGEBLIT
  1214. help
  1215. The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
  1216. see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
  1217. Say Y here to enable kernel support for the on-board framebuffer.
  1218. config FB_G364
  1219. bool "G364 frame buffer support"
  1220. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1221. select FB_CFB_FILLRECT
  1222. select FB_CFB_COPYAREA
  1223. select FB_CFB_IMAGEBLIT
  1224. help
  1225. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1226. Olivetti M700-10 systems.
  1227. config FB_68328
  1228. bool "Motorola 68328 native frame buffer support"
  1229. depends on FB && (M68328 || M68EZ328 || M68VZ328)
  1230. select FB_CFB_FILLRECT
  1231. select FB_CFB_COPYAREA
  1232. select FB_CFB_IMAGEBLIT
  1233. help
  1234. Say Y here if you want to support the built-in frame buffer of
  1235. the Motorola 68328 CPU family.
  1236. config FB_PXA
  1237. tristate "PXA LCD framebuffer support"
  1238. depends on FB && ARCH_PXA
  1239. select FB_CFB_FILLRECT
  1240. select FB_CFB_COPYAREA
  1241. select FB_CFB_IMAGEBLIT
  1242. ---help---
  1243. Frame buffer driver for the built-in LCD controller in the Intel
  1244. PXA2x0 processor.
  1245. This driver is also available as a module ( = code which can be
  1246. inserted and removed from the running kernel whenever you want). The
  1247. module will be called pxafb. If you want to compile it as a module,
  1248. say M here and read <file:Documentation/modules.txt>.
  1249. If unsure, say N.
  1250. config FB_PXA_PARAMETERS
  1251. bool "PXA LCD command line parameters"
  1252. default n
  1253. depends on FB_PXA
  1254. ---help---
  1255. Enable the use of kernel command line or module parameters
  1256. to configure the physical properties of the LCD panel when
  1257. using the PXA LCD driver.
  1258. This option allows you to override the panel parameters
  1259. supplied by the platform in order to support multiple
  1260. different models of flatpanel. If you will only be using a
  1261. single model of flatpanel then you can safely leave this
  1262. option disabled.
  1263. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1264. config FB_W100
  1265. tristate "W100 frame buffer support"
  1266. depends on FB && PXA_SHARPSL
  1267. select FB_CFB_FILLRECT
  1268. select FB_CFB_COPYAREA
  1269. select FB_CFB_IMAGEBLIT
  1270. ---help---
  1271. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1272. This driver is also available as a module ( = code which can be
  1273. inserted and removed from the running kernel whenever you want). The
  1274. module will be called w100fb. If you want to compile it as a module,
  1275. say M here and read <file:Documentation/modules.txt>.
  1276. If unsure, say N.
  1277. config FB_S3C2410
  1278. tristate "S3C2410 LCD framebuffer support"
  1279. depends on FB && ARCH_S3C2410
  1280. select FB_CFB_FILLRECT
  1281. select FB_CFB_COPYAREA
  1282. select FB_CFB_IMAGEBLIT
  1283. ---help---
  1284. Frame buffer driver for the built-in LCD controller in the Samsung
  1285. S3C2410 processor.
  1286. This driver is also available as a module ( = code which can be
  1287. inserted and removed from the running kernel whenever you want). The
  1288. module will be called s3c2410fb. If you want to compile it as a module,
  1289. say M here and read <file:Documentation/modules.txt>.
  1290. If unsure, say N.
  1291. config FB_S3C2410_DEBUG
  1292. bool "S3C2410 lcd debug messages"
  1293. depends on FB_S3C2410
  1294. help
  1295. Turn on debugging messages. Note that you can set/unset at run time
  1296. through sysfs
  1297. config FB_VIRTUAL
  1298. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1299. depends on FB
  1300. select FB_CFB_FILLRECT
  1301. select FB_CFB_COPYAREA
  1302. select FB_CFB_IMAGEBLIT
  1303. ---help---
  1304. This is a `virtual' frame buffer device. It operates on a chunk of
  1305. unswappable kernel memory instead of on the memory of a graphics
  1306. board. This means you cannot see any output sent to this frame
  1307. buffer device, while it does consume precious memory. The main use
  1308. of this frame buffer device is testing and debugging the frame
  1309. buffer subsystem. Do NOT enable it for normal systems! To protect
  1310. the innocent, it has to be enabled explicitly at boot time using the
  1311. kernel option `video=vfb:'.
  1312. To compile this driver as a module, choose M here: the
  1313. module will be called vfb.
  1314. If unsure, say N.
  1315. if VT
  1316. source "drivers/video/console/Kconfig"
  1317. endif
  1318. if FB || SGI_NEWPORT_CONSOLE
  1319. source "drivers/video/logo/Kconfig"
  1320. endif
  1321. if FB && SYSFS
  1322. source "drivers/video/backlight/Kconfig"
  1323. endif
  1324. endmenu