Kconfig 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577
  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_I810_I2C
  661. bool "Enable DDC Support"
  662. depends on FB_I810 && I2C && FB_I810_GTF
  663. select I2C_ALGOBIT
  664. help
  665. config FB_INTEL
  666. tristate "Intel 830M/845G/852GM/855GM/865G support (EXPERIMENTAL)"
  667. depends on FB && EXPERIMENTAL && PCI && X86 && !X86_64
  668. select AGP
  669. select AGP_INTEL
  670. select FB_MODE_HELPERS
  671. select FB_CFB_FILLRECT
  672. select FB_CFB_COPYAREA
  673. select FB_CFB_IMAGEBLIT
  674. help
  675. This driver supports the on-board graphics built in to the Intel
  676. 830M/845G/852GM/855GM/865G chipsets.
  677. Say Y if you have and plan to use such a board.
  678. To compile this driver as a module, choose M here: the
  679. module will be called intelfb.
  680. config FB_INTEL_DEBUG
  681. bool "Intel driver Debug Messages"
  682. depends on FB_INTEL
  683. ---help---
  684. Say Y here if you want the Intel driver to output all sorts
  685. of debugging informations to provide to the maintainer when
  686. something goes wrong.
  687. config FB_MATROX
  688. tristate "Matrox acceleration"
  689. depends on FB && PCI
  690. select FB_CFB_FILLRECT
  691. select FB_CFB_COPYAREA
  692. select FB_CFB_IMAGEBLIT
  693. select FB_SOFT_CURSOR
  694. select FB_TILEBLITTING
  695. select FB_MACMODES if PPC_PMAC
  696. ---help---
  697. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  698. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  699. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  700. Matrox G400, G450 or G550 card in your box.
  701. To compile this driver as a module, choose M here: the
  702. module will be called matroxfb.
  703. You can pass several parameters to the driver at boot time or at
  704. module load time. The parameters look like "video=matrox:XXX", and
  705. are described in <file:Documentation/fb/matroxfb.txt>.
  706. config FB_MATROX_MILLENIUM
  707. bool "Millennium I/II support"
  708. depends on FB_MATROX
  709. help
  710. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  711. video card. If you select "Advanced lowlevel driver options" below,
  712. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  713. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  714. also use font widths different from 8.
  715. config FB_MATROX_MYSTIQUE
  716. bool "Mystique support"
  717. depends on FB_MATROX
  718. help
  719. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  720. video card. If you select "Advanced lowlevel driver options" below,
  721. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  722. packed pixel and 32 bpp packed pixel. You can also use font widths
  723. different from 8.
  724. config FB_MATROX_G
  725. bool "G100/G200/G400/G450/G550 support"
  726. depends on FB_MATROX
  727. ---help---
  728. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  729. video card. If you select "Advanced lowlevel driver options", you
  730. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  731. pixel and 32 bpp packed pixel. You can also use font widths
  732. different from 8.
  733. If you need support for G400 secondary head, you must first say Y to
  734. "I2C support" in the character devices section, and then to
  735. "Matrox I2C support" and "G400 second head support" here in the
  736. framebuffer section. G450/G550 secondary head and digital output
  737. are supported without additional modules.
  738. The driver starts in monitor mode. You must use the matroxset tool
  739. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  740. swap primary and secondary head outputs, or to change output mode.
  741. Secondary head driver always start in 640x480 resolution and you
  742. must use fbset to change it.
  743. Do not forget that second head supports only 16 and 32 bpp
  744. packed pixels, so it is a good idea to compile them into the kernel
  745. too. You can use only some font widths, as the driver uses generic
  746. painting procedures (the secondary head does not use acceleration
  747. engine).
  748. G450/G550 hardware can display TV picture only from secondary CRTC,
  749. and it performs no scaling, so picture must have 525 or 625 lines.
  750. config FB_MATROX_I2C
  751. tristate "Matrox I2C support"
  752. depends on FB_MATROX && I2C
  753. select I2C_ALGOBIT
  754. ---help---
  755. This drivers creates I2C buses which are needed for accessing the
  756. DDC (I2C) bus present on all Matroxes, an I2C bus which
  757. interconnects Matrox optional devices, like MGA-TVO on G200 and
  758. G400, and the secondary head DDC bus, present on G400 only.
  759. You can say Y or M here if you want to experiment with monitor
  760. detection code. You must say Y or M here if you want to use either
  761. second head of G400 or MGA-TVO on G200 or G400.
  762. If you compile it as module, it will create a module named
  763. i2c-matroxfb.
  764. config FB_MATROX_MAVEN
  765. tristate "G400 second head support"
  766. depends on FB_MATROX_G && FB_MATROX_I2C
  767. ---help---
  768. WARNING !!! This support does not work with G450 !!!
  769. Say Y or M here if you want to use a secondary head (meaning two
  770. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  771. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  772. secondary head output is blanked while you are in X. With XFree
  773. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  774. the fbdev driver on first head and the fbdev driver on second head.
  775. If you compile it as module, two modules are created,
  776. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  777. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  778. also load i2c-matroxfb to get it to run.
  779. The driver starts in monitor mode and you must use the matroxset
  780. tool (available at
  781. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  782. PAL or NTSC or to swap primary and secondary head outputs.
  783. Secondary head driver also always start in 640x480 resolution, you
  784. must use fbset to change it.
  785. Also do not forget that second head supports only 16 and 32 bpp
  786. packed pixels, so it is a good idea to compile them into the kernel
  787. too. You can use only some font widths, as the driver uses generic
  788. painting procedures (the secondary head does not use acceleration
  789. engine).
  790. config FB_MATROX_MULTIHEAD
  791. bool "Multihead support"
  792. depends on FB_MATROX
  793. ---help---
  794. Say Y here if you have more than one (supported) Matrox device in
  795. your computer and you want to use all of them for different monitors
  796. ("multihead"). If you have only one device, you should say N because
  797. the driver compiled with Y is larger and a bit slower, especially on
  798. ia32 (ix86).
  799. If you said M to "Matrox unified accelerated driver" and N here, you
  800. will still be able to use several Matrox devices simultaneously:
  801. insert several instances of the module matroxfb into the kernel
  802. with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  803. for the different Matrox devices. This method is slightly faster but
  804. uses 40 KB of kernel memory per Matrox card.
  805. There is no need for enabling 'Matrox multihead support' if you have
  806. only one Matrox card in the box.
  807. config FB_RADEON_OLD
  808. tristate "ATI Radeon display support (Old driver)"
  809. depends on FB && PCI
  810. select FB_CFB_FILLRECT
  811. select FB_CFB_COPYAREA
  812. select FB_CFB_IMAGEBLIT
  813. select FB_SOFT_CURSOR
  814. select FB_MACMODES if PPC
  815. help
  816. Choose this option if you want to use an ATI Radeon graphics card as
  817. a framebuffer device. There are both PCI and AGP versions. You
  818. don't need to choose this to run the Radeon in plain VGA mode.
  819. There is a product page at
  820. <http://www.ati.com/na/pages/products/pc/radeon32/index.html>.
  821. config FB_RADEON
  822. tristate "ATI Radeon display support"
  823. depends on FB && PCI
  824. select I2C_ALGOBIT if FB_RADEON_I2C
  825. select I2C if FB_RADEON_I2C
  826. select FB_MODE_HELPERS
  827. select FB_CFB_FILLRECT
  828. select FB_CFB_COPYAREA
  829. select FB_CFB_IMAGEBLIT
  830. select FB_SOFT_CURSOR
  831. select FB_MACMODES if PPC_OF
  832. help
  833. Choose this option if you want to use an ATI Radeon graphics card as
  834. a framebuffer device. There are both PCI and AGP versions. You
  835. don't need to choose this to run the Radeon in plain VGA mode.
  836. If you say Y here and want DDC/I2C support you must first say Y to
  837. "I2C support" and "I2C bit-banging support" in the character devices
  838. section.
  839. If you say M here then "I2C support" and "I2C bit-banging support"
  840. can be build either as modules or built-in.
  841. There is a product page at
  842. http://apps.ati.com/ATIcompare/
  843. config FB_RADEON_I2C
  844. bool "DDC/I2C for ATI Radeon support"
  845. depends on FB_RADEON
  846. default y
  847. help
  848. Say Y here if you want DDC/I2C support for your Radeon board.
  849. config FB_RADEON_DEBUG
  850. bool "Lots of debug output from Radeon driver"
  851. depends on FB_RADEON
  852. default n
  853. help
  854. Say Y here if you want the Radeon driver to output all sorts
  855. of debugging informations to provide to the maintainer when
  856. something goes wrong.
  857. config FB_ATY128
  858. tristate "ATI Rage128 display support"
  859. depends on FB && PCI
  860. select FB_CFB_FILLRECT
  861. select FB_CFB_COPYAREA
  862. select FB_CFB_IMAGEBLIT
  863. select FB_SOFT_CURSOR
  864. select FB_MACMODES if PPC_PMAC
  865. help
  866. This driver supports graphics boards with the ATI Rage128 chips.
  867. Say Y if you have such a graphics board and read
  868. <file:Documentation/fb/aty128fb.txt>.
  869. To compile this driver as a module, choose M here: the
  870. module will be called aty128fb.
  871. config FB_ATY
  872. tristate "ATI Mach64 display support" if PCI || ATARI
  873. depends on FB
  874. select FB_CFB_FILLRECT
  875. select FB_CFB_COPYAREA
  876. select FB_CFB_IMAGEBLIT
  877. select FB_SOFT_CURSOR
  878. select FB_MACMODES if PPC
  879. help
  880. This driver supports graphics boards with the ATI Mach64 chips.
  881. Say Y if you have such a graphics board.
  882. To compile this driver as a module, choose M here: the
  883. module will be called atyfb.
  884. config FB_ATY_CT
  885. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  886. depends on PCI && FB_ATY
  887. default y if SPARC64 && FB_PCI
  888. help
  889. Say Y here to support use of ATI's 64-bit Rage boards (or other
  890. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  891. framebuffer device. The ATI product support page for these boards
  892. is at <http://support.ati.com/products/pc/mach64/>.
  893. config FB_ATY_GENERIC_LCD
  894. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  895. depends on FB_ATY_CT
  896. help
  897. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  898. Rage XC, or Rage XL chipset.
  899. config FB_ATY_XL_INIT
  900. bool "Rage XL No-BIOS Init support"
  901. depends on FB_ATY_CT
  902. help
  903. Say Y here to support booting a Rage XL without BIOS support.
  904. config FB_ATY_GX
  905. bool "Mach64 GX support" if PCI
  906. depends on FB_ATY
  907. default y if ATARI
  908. help
  909. Say Y here to support use of the ATI Mach64 Graphics Expression
  910. board (or other boards based on the Mach64 GX chipset) as a
  911. framebuffer device. The ATI product support page for these boards
  912. is at
  913. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  914. config FB_SAVAGE
  915. tristate "S3 Savage support"
  916. depends on FB && PCI && EXPERIMENTAL
  917. select I2C_ALGOBIT if FB_SAVAGE_I2C
  918. select I2C if FB_SAVAGE_I2C
  919. select FB_MODE_HELPERS
  920. select FB_CFB_FILLRECT
  921. select FB_CFB_COPYAREA
  922. select FB_CFB_IMAGEBLIT
  923. select FB_SOFT_CURSOR
  924. help
  925. This driver supports notebooks and computers with S3 Savage PCI/AGP
  926. chips.
  927. Say Y if you have such a graphics card.
  928. To compile this driver as a module, choose M here; the module
  929. will be called savagefb.
  930. config FB_SAVAGE_I2C
  931. bool "Enable DDC2 Support"
  932. depends on FB_SAVAGE
  933. help
  934. This enables I2C support for S3 Savage Chipsets. This is used
  935. only for getting EDID information from the attached display
  936. allowing for robust video mode handling and switching.
  937. Because fbdev-2.6 requires that drivers must be able to
  938. independently validate video mode parameters, you should say Y
  939. here.
  940. config FB_SAVAGE_ACCEL
  941. bool "Enable Console Acceleration"
  942. depends on FB_SAVAGE
  943. default n
  944. help
  945. This option will compile in console acceleration support. If
  946. the resulting framebuffer console has bothersome glitches, then
  947. choose N here.
  948. config FB_SIS
  949. tristate "SiS/XGI display support"
  950. depends on FB && PCI
  951. select FB_CFB_FILLRECT
  952. select FB_CFB_COPYAREA
  953. select FB_CFB_IMAGEBLIT
  954. select FB_SOFT_CURSOR
  955. help
  956. This is the frame buffer device driver for the SiS 300, 315, 330
  957. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  958. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  959. To compile this driver as a module, choose M here; the module
  960. will be called sisfb.
  961. config FB_SIS_300
  962. bool "SiS 300 series support"
  963. depends on FB_SIS
  964. help
  965. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  966. config FB_SIS_315
  967. bool "SiS 315/330/340 series and XGI support"
  968. depends on FB_SIS
  969. help
  970. Say Y here to support use of the SiS 315, 330 and 340 series
  971. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  972. as XGI V3XT, V5, V8 and Z7.
  973. config FB_NEOMAGIC
  974. tristate "NeoMagic display support"
  975. depends on FB && PCI
  976. select FB_MODE_HELPERS
  977. select FB_CFB_FILLRECT
  978. select FB_CFB_COPYAREA
  979. select FB_CFB_IMAGEBLIT
  980. select FB_SOFT_CURSOR
  981. help
  982. This driver supports notebooks with NeoMagic PCI chips.
  983. Say Y if you have such a graphics card.
  984. To compile this driver as a module, choose M here: the
  985. module will be called neofb.
  986. config FB_KYRO
  987. tristate "IMG Kyro support"
  988. depends on FB && PCI
  989. select FB_CFB_FILLRECT
  990. select FB_CFB_COPYAREA
  991. select FB_CFB_IMAGEBLIT
  992. select FB_SOFT_CURSOR
  993. help
  994. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  995. graphics board.
  996. To compile this driver as a module, choose M here: the
  997. module will be called kyrofb.
  998. config FB_3DFX
  999. tristate "3Dfx Banshee/Voodoo3 display support"
  1000. depends on FB && PCI
  1001. select FB_CFB_IMAGEBLIT
  1002. select FB_CFB_FILLRECT
  1003. select FB_CFB_COPYAREA
  1004. select FB_SOFT_CURSOR
  1005. help
  1006. This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
  1007. chips. Say Y if you have such a graphics board.
  1008. To compile this driver as a module, choose M here: the
  1009. module will be called tdfxfb.
  1010. config FB_3DFX_ACCEL
  1011. bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
  1012. depends on FB_3DFX && EXPERIMENTAL
  1013. ---help---
  1014. This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
  1015. with acceleration functions.
  1016. config FB_VOODOO1
  1017. tristate "3Dfx Voodoo Graphics (sst1) support"
  1018. depends on FB && PCI
  1019. select FB_CFB_FILLRECT
  1020. select FB_CFB_COPYAREA
  1021. select FB_CFB_IMAGEBLIT
  1022. select FB_SOFT_CURSOR
  1023. ---help---
  1024. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1025. Voodoo2 (cvg) based graphics card.
  1026. To compile this driver as a module, choose M here: the
  1027. module will be called sstfb.
  1028. WARNING: Do not use any application that uses the 3D engine
  1029. (namely glide) while using this driver.
  1030. Please read the <file:Documentation/fb/README-sstfb.txt> for supported
  1031. options and other important info support.
  1032. config FB_CYBLA
  1033. tristate "Cyberblade/i1 support"
  1034. depends on FB && PCI
  1035. select FB_CFB_IMAGEBLIT
  1036. select FB_SOFT_CURSOR
  1037. select VIDEO_SELECT
  1038. ---help---
  1039. This driver is supposed to support the Trident Cyberblade/i1
  1040. graphics core integrated in the VIA VT8601A North Bridge,
  1041. also known as VIA Apollo PLE133.
  1042. Status:
  1043. - Developed, tested and working on EPIA 5000 and EPIA 800.
  1044. - Does work reliable on all systems with CRT/LCD connected to
  1045. normal VGA ports.
  1046. - Should work on systems that do use the internal LCD port, but
  1047. this is absolutely not tested.
  1048. Character imageblit, copyarea and rectangle fill are hw accelerated,
  1049. ypan scrolling is used by default.
  1050. Please do read <file:Documentation/fb/cyblafb/*>.
  1051. To compile this driver as a module, choose M here: the
  1052. module will be called cyblafb.
  1053. config FB_TRIDENT
  1054. tristate "Trident support"
  1055. depends on FB && PCI
  1056. select FB_CFB_FILLRECT
  1057. select FB_CFB_COPYAREA
  1058. select FB_CFB_IMAGEBLIT
  1059. select FB_SOFT_CURSOR
  1060. ---help---
  1061. This driver is supposed to support graphics boards with the
  1062. Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
  1063. but also on some motherboards. For more information, read
  1064. <file:Documentation/fb/tridentfb.txt>
  1065. Cyberblade/i1 support will be removed soon, use the cyblafb driver
  1066. instead.
  1067. Say Y if you have such a graphics board.
  1068. To compile this driver as a module, choose M here: the
  1069. module will be called tridentfb.
  1070. config FB_TRIDENT_ACCEL
  1071. bool "Trident Acceleration functions (EXPERIMENTAL)"
  1072. depends on FB_TRIDENT && EXPERIMENTAL
  1073. ---help---
  1074. This will compile the Trident frame buffer device with
  1075. acceleration functions.
  1076. config FB_PM3
  1077. tristate "Permedia3 support"
  1078. depends on FB && PCI && BROKEN
  1079. help
  1080. This is the frame buffer device driver for the 3DLabs Permedia3
  1081. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1082. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1083. and maybe other boards.
  1084. config FB_E1356
  1085. tristate "Epson SED1356 framebuffer support"
  1086. depends on FB && EXPERIMENTAL && PCI && MIPS
  1087. config PB1000_CRT
  1088. bool "Use CRT on Pb1000 (J65)"
  1089. depends on MIPS_PB1000=y && FB_E1356
  1090. config PB1000_NTSC
  1091. bool "Use Compsite NTSC on Pb1000 (J63)"
  1092. depends on MIPS_PB1000=y && FB_E1356
  1093. config PB1000_TFT
  1094. bool "Use TFT Panel on Pb1000 (J64)"
  1095. depends on MIPS_PB1000=y && FB_E1356
  1096. config PB1500_CRT
  1097. bool "Use CRT on Pb1500 " if MIPS_PB1500=y
  1098. depends on FB_E1356
  1099. config PB1500_CRT
  1100. prompt "Use CRT on Pb1100 "
  1101. depends on FB_E1356 && MIPS_PB1100=y
  1102. config PB1500_TFT
  1103. bool "Use TFT Panel on Pb1500 " if MIPS_PB1500=y
  1104. depends on FB_E1356
  1105. config PB1500_TFT
  1106. prompt "Use TFT Panel on Pb1100 "
  1107. depends on FB_E1356 && MIPS_PB1100=y
  1108. config FB_AU1100
  1109. bool "Au1100 LCD Driver"
  1110. depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y
  1111. source "drivers/video/geode/Kconfig"
  1112. config FB_SBUS
  1113. bool "SBUS and UPA framebuffers"
  1114. depends on (FB = y) && (SPARC32 || SPARC64)
  1115. help
  1116. Say Y if you want support for SBUS or UPA based frame buffer device.
  1117. config FB_FFB
  1118. bool "Creator/Creator3D/Elite3D support"
  1119. depends on FB_SBUS && SPARC64
  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 Creator, Creator3D,
  1125. and Elite3D graphics boards.
  1126. config FB_TCX
  1127. bool "TCX (SS4/SS5 only) 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 TCX 24/8bit frame
  1135. buffer.
  1136. config FB_CG14
  1137. bool "CGfourteen (SX) support"
  1138. depends on FB_SBUS
  1139. select FB_CFB_FILLRECT
  1140. select FB_CFB_COPYAREA
  1141. select FB_CFB_IMAGEBLIT
  1142. select FB_SOFT_CURSOR
  1143. help
  1144. This is the frame buffer device driver for the CGfourteen frame
  1145. buffer on Desktop SPARCsystems with the SX graphics option.
  1146. config FB_P9100
  1147. bool "P9100 (Sparcbook 3 only) support"
  1148. depends on FB_SBUS
  1149. select FB_CFB_FILLRECT
  1150. select FB_CFB_COPYAREA
  1151. select FB_CFB_IMAGEBLIT
  1152. select FB_SOFT_CURSOR
  1153. help
  1154. This is the frame buffer device driver for the P9100 card
  1155. supported on Sparcbook 3 machines.
  1156. config FB_LEO
  1157. bool "Leo (ZX) support"
  1158. depends on FB_SBUS
  1159. select FB_CFB_FILLRECT
  1160. select FB_CFB_COPYAREA
  1161. select FB_CFB_IMAGEBLIT
  1162. select FB_SOFT_CURSOR
  1163. help
  1164. This is the frame buffer device driver for the SBUS-based Sun ZX
  1165. (leo) frame buffer cards.
  1166. config FB_PCI
  1167. bool "PCI framebuffers"
  1168. depends on (FB = y) && PCI && (SPARC64 || SPARC32)
  1169. config FB_IGA
  1170. bool "IGA 168x display support"
  1171. depends on SPARC32 && FB_PCI
  1172. select FB_CFB_FILLRECT
  1173. select FB_CFB_COPYAREA
  1174. select FB_CFB_IMAGEBLIT
  1175. select FB_SOFT_CURSOR
  1176. help
  1177. This is the framebuffer device for the INTERGRAPHICS 1680 and
  1178. successor frame buffer cards.
  1179. config FB_HIT
  1180. tristate "HD64461 Frame Buffer support"
  1181. depends on FB && HD64461
  1182. select FB_CFB_FILLRECT
  1183. select FB_CFB_COPYAREA
  1184. select FB_CFB_IMAGEBLIT
  1185. select FB_SOFT_CURSOR
  1186. help
  1187. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1188. frame buffer card.
  1189. config FB_PMAG_AA
  1190. bool "PMAG-AA TURBOchannel framebuffer support"
  1191. depends on (FB = y) && MACH_DECSTATION && TC
  1192. select FB_CFB_FILLRECT
  1193. select FB_CFB_COPYAREA
  1194. select FB_CFB_IMAGEBLIT
  1195. select FB_SOFT_CURSOR
  1196. help
  1197. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1198. used mainly in the MIPS-based DECstation series.
  1199. config FB_PMAG_BA
  1200. bool "PMAG-BA TURBOchannel framebuffer support"
  1201. depends on (FB = y) && MACH_DECSTATION && TC
  1202. select FB_CFB_FILLRECT
  1203. select FB_CFB_COPYAREA
  1204. select FB_CFB_IMAGEBLIT
  1205. select FB_SOFT_CURSOR
  1206. help
  1207. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1208. used mainly in the MIPS-based DECstation series.
  1209. config FB_PMAGB_B
  1210. bool "PMAGB-B TURBOchannel framebuffer support"
  1211. depends on (FB = y) && MACH_DECSTATION && TC
  1212. select FB_CFB_FILLRECT
  1213. select FB_CFB_COPYAREA
  1214. select FB_CFB_IMAGEBLIT
  1215. select FB_SOFT_CURSOR
  1216. help
  1217. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1218. in the MIPS-based DECstation series. The card is currently only
  1219. supported in 1280x1024x8 mode.
  1220. config FB_MAXINE
  1221. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1222. depends on (FB = y) && MACH_DECSTATION && TC
  1223. select FB_CFB_FILLRECT
  1224. select FB_CFB_COPYAREA
  1225. select FB_CFB_IMAGEBLIT
  1226. select FB_SOFT_CURSOR
  1227. help
  1228. Support for the onboard framebuffer (1024x768x8) in the Personal
  1229. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1230. Codename "Maxine").
  1231. config FB_TX3912
  1232. bool "TMPTX3912/PR31700 frame buffer support"
  1233. depends on (FB = y) && NINO
  1234. select FB_CFB_FILLRECT
  1235. select FB_CFB_COPYAREA
  1236. select FB_CFB_IMAGEBLIT
  1237. select FB_SOFT_CURSOR
  1238. help
  1239. The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
  1240. see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
  1241. Say Y here to enable kernel support for the on-board framebuffer.
  1242. config FB_G364
  1243. bool "G364 frame buffer support"
  1244. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1245. select FB_CFB_FILLRECT
  1246. select FB_CFB_COPYAREA
  1247. select FB_CFB_IMAGEBLIT
  1248. select FB_SOFT_CURSOR
  1249. help
  1250. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1251. Olivetti M700-10 systems.
  1252. config FB_68328
  1253. bool "Motorola 68328 native frame buffer support"
  1254. depends on FB && (M68328 || M68EZ328 || M68VZ328)
  1255. select FB_CFB_FILLRECT
  1256. select FB_CFB_COPYAREA
  1257. select FB_CFB_IMAGEBLIT
  1258. select FB_SOFT_CURSOR
  1259. help
  1260. Say Y here if you want to support the built-in frame buffer of
  1261. the Motorola 68328 CPU family.
  1262. config FB_PXA
  1263. tristate "PXA LCD framebuffer support"
  1264. depends on FB && ARCH_PXA
  1265. select FB_CFB_FILLRECT
  1266. select FB_CFB_COPYAREA
  1267. select FB_CFB_IMAGEBLIT
  1268. select FB_SOFT_CURSOR
  1269. ---help---
  1270. Frame buffer driver for the built-in LCD controller in the Intel
  1271. PXA2x0 processor.
  1272. This driver is also available as a module ( = code which can be
  1273. inserted and removed from the running kernel whenever you want). The
  1274. module will be called vfb. If you want to compile it as a module,
  1275. say M here and read <file:Documentation/modules.txt>.
  1276. If unsure, say N.
  1277. config FB_W100
  1278. tristate "W100 frame buffer support"
  1279. depends on FB && PXA_SHARPSL
  1280. select FB_CFB_FILLRECT
  1281. select FB_CFB_COPYAREA
  1282. select FB_CFB_IMAGEBLIT
  1283. select FB_SOFT_CURSOR
  1284. ---help---
  1285. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1286. This driver is also available as a module ( = code which can be
  1287. inserted and removed from the running kernel whenever you want). The
  1288. module will be called vfb. If you want to compile it as a module,
  1289. say M here and read <file:Documentation/modules.txt>.
  1290. If unsure, say N.
  1291. config FB_PXA_PARAMETERS
  1292. bool "PXA LCD command line parameters"
  1293. default n
  1294. depends on FB_PXA
  1295. ---help---
  1296. Enable the use of kernel command line or module parameters
  1297. to configure the physical properties of the LCD panel when
  1298. using the PXA LCD driver.
  1299. This option allows you to override the panel parameters
  1300. supplied by the platform in order to support multiple
  1301. different models of flatpanel. If you will only be using a
  1302. single model of flatpanel then you can safely leave this
  1303. option disabled.
  1304. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1305. config FB_S1D13XXX
  1306. tristate "Epson S1D13XXX framebuffer support"
  1307. depends on FB
  1308. select FB_CFB_FILLRECT
  1309. select FB_CFB_COPYAREA
  1310. select FB_CFB_IMAGEBLIT
  1311. select FB_SOFT_CURSOR
  1312. help
  1313. Support for S1D13XXX framebuffer device family (currently only
  1314. working with S1D13806). Product specs at
  1315. <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  1316. config FB_S3C2410
  1317. tristate "S3C2410 LCD framebuffer support"
  1318. depends on FB && ARCH_S3C2410
  1319. select FB_CFB_FILLRECT
  1320. select FB_CFB_COPYAREA
  1321. select FB_CFB_IMAGEBLIT
  1322. select FB_SOFT_CURSOR
  1323. ---help---
  1324. Frame buffer driver for the built-in LCD controller in the Samsung
  1325. S3C2410 processor.
  1326. This driver is also available as a module ( = code which can be
  1327. inserted and removed from the running kernel whenever you want). The
  1328. module will be called s3c2410fb. If you want to compile it as a module,
  1329. say M here and read <file:Documentation/modules.txt>.
  1330. If unsure, say N.
  1331. config FB_S3C2410_DEBUG
  1332. bool "S3C2410 lcd debug messages"
  1333. depends on FB_S3C2410
  1334. help
  1335. Turn on debugging messages. Note that you can set/unset at run time
  1336. through sysfs
  1337. config FB_VIRTUAL
  1338. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1339. depends on FB
  1340. select FB_CFB_FILLRECT
  1341. select FB_CFB_COPYAREA
  1342. select FB_CFB_IMAGEBLIT
  1343. select FB_SOFT_CURSOR
  1344. ---help---
  1345. This is a `virtual' frame buffer device. It operates on a chunk of
  1346. unswappable kernel memory instead of on the memory of a graphics
  1347. board. This means you cannot see any output sent to this frame
  1348. buffer device, while it does consume precious memory. The main use
  1349. of this frame buffer device is testing and debugging the frame
  1350. buffer subsystem. Do NOT enable it for normal systems! To protect
  1351. the innocent, it has to be enabled explicitly at boot time using the
  1352. kernel option `video=vfb:'.
  1353. To compile this driver as a module, choose M here: the
  1354. module will be called vfb.
  1355. If unsure, say N.
  1356. if VT
  1357. source "drivers/video/console/Kconfig"
  1358. endif
  1359. if FB || SGI_NEWPORT_CONSOLE
  1360. source "drivers/video/logo/Kconfig"
  1361. endif
  1362. if FB && SYSFS
  1363. source "drivers/video/backlight/Kconfig"
  1364. endif
  1365. endmenu