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