Kconfig 49 KB

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