Kconfig 47 KB

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