Kconfig 47 KB

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