Kconfig 47 KB

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