Kconfig 46 KB

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