Kconfig 49 KB

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