Kconfig 46 KB

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