Kconfig 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. #
  2. # Video configuration
  3. #
  4. menu "Graphics support"
  5. depends on HAS_IOMEM
  6. source "drivers/video/backlight/Kconfig"
  7. source "drivers/video/display/Kconfig"
  8. config VGASTATE
  9. tristate
  10. default n
  11. config VIDEO_OUTPUT_CONTROL
  12. tristate "Lowlevel video output switch controls"
  13. default m
  14. help
  15. This framework adds support for low-level control of the video
  16. output switch.
  17. config FB
  18. tristate "Support for frame buffer devices"
  19. ---help---
  20. The frame buffer device provides an abstraction for the graphics
  21. hardware. It represents the frame buffer of some video hardware and
  22. allows application software to access the graphics hardware through
  23. a well-defined interface, so the software doesn't need to know
  24. anything about the low-level (hardware register) stuff.
  25. Frame buffer devices work identically across the different
  26. architectures supported by Linux and make the implementation of
  27. application programs easier and more portable; at this point, an X
  28. server exists which uses the frame buffer device exclusively.
  29. On several non-X86 architectures, the frame buffer device is the
  30. only way to use the graphics hardware.
  31. The device is accessed through special device nodes, usually located
  32. in the /dev directory, i.e. /dev/fb*.
  33. You need an utility program called fbset to make full use of frame
  34. buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  35. and the Framebuffer-HOWTO at
  36. <http://www.tahallah.demon.co.uk/programming/prog.html> for more
  37. information.
  38. Say Y here and to the driver for your graphics board below if you
  39. are compiling a kernel for a non-x86 architecture.
  40. If you are compiling for the x86 architecture, you can say Y if you
  41. want to play with it, but it is not essential. Please note that
  42. running graphical applications that directly touch the hardware
  43. (e.g. an accelerated X server) and that are not frame buffer
  44. device-aware may cause unexpected results. If unsure, say N.
  45. config FIRMWARE_EDID
  46. bool "Enable firmware EDID"
  47. depends on FB
  48. default n
  49. ---help---
  50. This enables access to the EDID transferred from the firmware.
  51. On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  52. transfers do not work for your driver and if you are using
  53. nvidiafb, i810fb or savagefb.
  54. In general, choosing Y for this option is safe. If you
  55. experience extremely long delays while booting before you get
  56. something on your display, try setting this to N. Matrox cards in
  57. combination with certain motherboards and monitors are known to
  58. suffer from this problem.
  59. config FB_DDC
  60. tristate
  61. depends on FB
  62. select I2C_ALGOBIT
  63. select I2C
  64. default n
  65. config FB_CFB_FILLRECT
  66. tristate
  67. depends on FB
  68. default n
  69. ---help---
  70. Include the cfb_fillrect function for generic software rectangle
  71. filling. This is used by drivers that don't provide their own
  72. (accelerated) version.
  73. config FB_CFB_COPYAREA
  74. tristate
  75. depends on FB
  76. default n
  77. ---help---
  78. Include the cfb_copyarea function for generic software area copying.
  79. This is used by drivers that don't provide their own (accelerated)
  80. version.
  81. config FB_CFB_IMAGEBLIT
  82. tristate
  83. depends on FB
  84. default n
  85. ---help---
  86. Include the cfb_imageblit function for generic software image
  87. blitting. This is used by drivers that don't provide their own
  88. (accelerated) version.
  89. config FB_SYS_FILLRECT
  90. tristate
  91. depends on FB
  92. default n
  93. ---help---
  94. Include the sys_fillrect function for generic software rectangle
  95. filling. This is used by drivers that don't provide their own
  96. (accelerated) version and the framebuffer is in system RAM.
  97. config FB_SYS_COPYAREA
  98. tristate
  99. depends on FB
  100. default n
  101. ---help---
  102. Include the sys_copyarea function for generic software area copying.
  103. This is used by drivers that don't provide their own (accelerated)
  104. version and the framebuffer is in system RAM.
  105. config FB_SYS_IMAGEBLIT
  106. tristate
  107. depends on FB
  108. default n
  109. ---help---
  110. Include the sys_imageblit function for generic software image
  111. blitting. This is used by drivers that don't provide their own
  112. (accelerated) version and the framebuffer is in system RAM.
  113. config FB_SYS_FOPS
  114. tristate
  115. depends on FB
  116. default n
  117. config FB_DEFERRED_IO
  118. bool
  119. depends on FB
  120. default y
  121. config FB_SVGALIB
  122. tristate
  123. depends on FB
  124. default n
  125. ---help---
  126. Common utility functions useful to fbdev drivers of VGA-based
  127. cards.
  128. config FB_MACMODES
  129. tristate
  130. depends on FB
  131. default n
  132. config FB_BACKLIGHT
  133. bool
  134. depends on FB
  135. select BACKLIGHT_LCD_SUPPORT
  136. select BACKLIGHT_CLASS_DEVICE
  137. default n
  138. config FB_MODE_HELPERS
  139. bool "Enable Video Mode Handling Helpers"
  140. depends on FB
  141. default n
  142. ---help---
  143. This enables functions for handling video modes using the
  144. Generalized Timing Formula and the EDID parser. A few drivers rely
  145. on this feature such as the radeonfb, rivafb, and the i810fb. If
  146. your driver does not take advantage of this feature, choosing Y will
  147. just increase the kernel size by about 5K.
  148. config FB_TILEBLITTING
  149. bool "Enable Tile Blitting Support"
  150. depends on FB
  151. default n
  152. ---help---
  153. This enables tile blitting. Tile blitting is a drawing technique
  154. where the screen is divided into rectangular sections (tiles), whereas
  155. the standard blitting divides the screen into pixels. Because the
  156. default drawing element is a tile, drawing functions will be passed
  157. parameters in terms of number of tiles instead of number of pixels.
  158. For example, to draw a single character, instead of using bitmaps,
  159. an index to an array of bitmaps will be used. To clear or move a
  160. rectangular section of a screen, the rectangle will be described in
  161. terms of number of tiles in the x- and y-axis.
  162. This is particularly important to one driver, matroxfb. If
  163. unsure, say N.
  164. comment "Frame buffer hardware drivers"
  165. depends on FB
  166. config FB_CIRRUS
  167. tristate "Cirrus Logic support"
  168. depends on FB && (ZORRO || PCI)
  169. select FB_CFB_FILLRECT
  170. select FB_CFB_COPYAREA
  171. select FB_CFB_IMAGEBLIT
  172. ---help---
  173. This enables support for Cirrus Logic GD542x/543x based boards on
  174. Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  175. If you have a PCI-based system, this enables support for these
  176. chips: GD-543x, GD-544x, GD-5480.
  177. Please read the file <file:Documentation/fb/cirrusfb.txt>.
  178. Say N unless you have such a graphics board or plan to get one
  179. before you next recompile the kernel.
  180. config FB_PM2
  181. tristate "Permedia2 support"
  182. depends on FB && ((AMIGA && BROKEN) || PCI)
  183. select FB_CFB_FILLRECT
  184. select FB_CFB_COPYAREA
  185. select FB_CFB_IMAGEBLIT
  186. help
  187. This is the frame buffer device driver for the Permedia2 AGP frame
  188. buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
  189. product page at
  190. <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
  191. config FB_PM2_FIFO_DISCONNECT
  192. bool "enable FIFO disconnect feature"
  193. depends on FB_PM2 && PCI
  194. help
  195. Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
  196. config FB_ARMCLCD
  197. tristate "ARM PrimeCell PL110 support"
  198. depends on FB && ARM && ARM_AMBA
  199. select FB_CFB_FILLRECT
  200. select FB_CFB_COPYAREA
  201. select FB_CFB_IMAGEBLIT
  202. help
  203. This framebuffer device driver is for the ARM PrimeCell PL110
  204. Colour LCD controller. ARM PrimeCells provide the building
  205. blocks for System on a Chip devices.
  206. If you want to compile this as a module (=code which can be
  207. inserted into and removed from the running kernel), say M
  208. here and read <file:Documentation/kbuild/modules.txt>. The module
  209. will be called amba-clcd.
  210. choice
  211. depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
  212. prompt "LCD Panel"
  213. default FB_ARMCLCD_SHARP_LQ035Q7DB02
  214. config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
  215. bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
  216. help
  217. This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
  218. color QVGA, HRTFT panel. The LogicPD device includes
  219. an integrated HRTFT controller IC.
  220. The native resolution is 240x320.
  221. config FB_ARMCLCD_SHARP_LQ057Q3DC02
  222. bool "LogicPD LCD 5.7\" QVGA"
  223. help
  224. This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
  225. color QVGA, TFT panel. The LogicPD device includes an
  226. The native resolution is 320x240.
  227. config FB_ARMCLCD_SHARP_LQ64D343
  228. bool "LogicPD LCD 6.4\" VGA"
  229. help
  230. This is an implementation of the Sharp LQ64D343, a 6.4"
  231. color VGA, TFT panel. The LogicPD device includes an
  232. The native resolution is 640x480.
  233. config FB_ARMCLCD_SHARP_LQ10D368
  234. bool "LogicPD LCD 10.4\" VGA"
  235. help
  236. This is an implementation of the Sharp LQ10D368, a 10.4"
  237. color VGA, TFT panel. The LogicPD device includes an
  238. The native resolution is 640x480.
  239. config FB_ARMCLCD_SHARP_LQ121S1DG41
  240. bool "LogicPD LCD 12.1\" SVGA"
  241. help
  242. This is an implementation of the Sharp LQ121S1DG41, a 12.1"
  243. color SVGA, TFT panel. The LogicPD device includes an
  244. The native resolution is 800x600.
  245. This panel requires a clock rate may be an integer fraction
  246. of the base LCDCLK frequency. The driver will select the
  247. highest frequency available that is lower than the maximum
  248. allowed. The panel may flicker if the clock rate is
  249. slower than the recommended minimum.
  250. config FB_ARMCLCD_AUO_A070VW01_WIDE
  251. bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
  252. help
  253. This is an implementation of the AU Optronics, a 7.0"
  254. WIDE Color. The native resolution is 234x480.
  255. config FB_ARMCLCD_HITACHI
  256. bool "Hitachi Wide Screen 800x480"
  257. help
  258. This is an implementation of the Hitachi 800x480.
  259. endchoice
  260. config FB_ACORN
  261. bool "Acorn VIDC support"
  262. depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
  263. select FB_CFB_FILLRECT
  264. select FB_CFB_COPYAREA
  265. select FB_CFB_IMAGEBLIT
  266. help
  267. This is the frame buffer device driver for the Acorn VIDC graphics
  268. hardware found in Acorn RISC PCs and other ARM-based machines. If
  269. unsure, say N.
  270. config FB_CLPS711X
  271. bool "CLPS711X LCD support"
  272. depends on (FB = y) && ARM && ARCH_CLPS711X
  273. select FB_CFB_FILLRECT
  274. select FB_CFB_COPYAREA
  275. select FB_CFB_IMAGEBLIT
  276. help
  277. Say Y to enable the Framebuffer driver for the CLPS7111 and
  278. EP7212 processors.
  279. config FB_SA1100
  280. bool "SA-1100 LCD support"
  281. depends on (FB = y) && ARM && ARCH_SA1100
  282. select FB_CFB_FILLRECT
  283. select FB_CFB_COPYAREA
  284. select FB_CFB_IMAGEBLIT
  285. help
  286. This is a framebuffer device for the SA-1100 LCD Controller.
  287. See <http://www.linux-fbdev.org/> for information on framebuffer
  288. devices.
  289. If you plan to use the LCD display with your SA-1100 system, say
  290. Y here.
  291. config FB_IMX
  292. tristate "Motorola i.MX LCD support"
  293. depends on FB && ARM && ARCH_IMX
  294. select FB_CFB_FILLRECT
  295. select FB_CFB_COPYAREA
  296. select FB_CFB_IMAGEBLIT
  297. config FB_CYBER2000
  298. tristate "CyberPro 2000/2010/5000 support"
  299. depends on FB && PCI && (BROKEN || !SPARC64)
  300. select FB_CFB_FILLRECT
  301. select FB_CFB_COPYAREA
  302. select FB_CFB_IMAGEBLIT
  303. help
  304. This enables support for the Integraphics CyberPro 20x0 and 5000
  305. VGA chips used in the Rebel.com Netwinder and other machines.
  306. Say Y if you have a NetWinder or a graphics card containing this
  307. device, otherwise say N.
  308. config FB_APOLLO
  309. bool
  310. depends on (FB = y) && APOLLO
  311. default y
  312. select FB_CFB_FILLRECT
  313. select FB_CFB_IMAGEBLIT
  314. config FB_Q40
  315. bool
  316. depends on (FB = y) && Q40
  317. default y
  318. select FB_CFB_FILLRECT
  319. select FB_CFB_COPYAREA
  320. select FB_CFB_IMAGEBLIT
  321. config FB_AMIGA
  322. tristate "Amiga native chipset support"
  323. depends on FB && AMIGA
  324. help
  325. This is the frame buffer device driver for the builtin graphics
  326. chipset found in Amigas.
  327. To compile this driver as a module, choose M here: the
  328. module will be called amifb.
  329. config FB_AMIGA_OCS
  330. bool "Amiga OCS chipset support"
  331. depends on FB_AMIGA
  332. help
  333. This enables support for the original Agnus and Denise video chips,
  334. found in the Amiga 1000 and most A500's and A2000's. If you intend
  335. to run Linux on any of these systems, say Y; otherwise say N.
  336. config FB_AMIGA_ECS
  337. bool "Amiga ECS chipset support"
  338. depends on FB_AMIGA
  339. help
  340. This enables support for the Enhanced Chip Set, found in later
  341. A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  342. you intend to run Linux on any of these systems, say Y; otherwise
  343. say N.
  344. config FB_AMIGA_AGA
  345. bool "Amiga AGA chipset support"
  346. depends on FB_AMIGA
  347. help
  348. This enables support for the Advanced Graphics Architecture (also
  349. known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  350. and CD32. If you intend to run Linux on any of these systems, say Y;
  351. otherwise say N.
  352. config FB_FM2
  353. bool "Amiga FrameMaster II/Rainbow II support"
  354. depends on (FB = y) && ZORRO
  355. select FB_CFB_FILLRECT
  356. select FB_CFB_COPYAREA
  357. select FB_CFB_IMAGEBLIT
  358. help
  359. This is the frame buffer device driver for the Amiga FrameMaster
  360. card from BSC (exhibited 1992 but not shipped as a CBM product).
  361. config FB_ARC
  362. tristate "Arc Monochrome LCD board support"
  363. depends on FB && X86
  364. select FB_SYS_FILLRECT
  365. select FB_SYS_COPYAREA
  366. select FB_SYS_IMAGEBLIT
  367. select FB_SYS_FOPS
  368. help
  369. This enables support for the Arc Monochrome LCD board. The board
  370. is based on the KS-108 lcd controller and is typically a matrix
  371. of 2*n chips. This driver was tested with a 128x64 panel. This
  372. driver supports it for use with x86 SBCs through a 16 bit GPIO
  373. interface (8 bit data, 8 bit control). If you anticipate using
  374. this driver, say Y or M; otherwise say N. You must specify the
  375. GPIO IO address to be used for setting control and data.
  376. config FB_ATARI
  377. bool "Atari native chipset support"
  378. depends on (FB = y) && ATARI
  379. select FB_CFB_FILLRECT
  380. select FB_CFB_COPYAREA
  381. select FB_CFB_IMAGEBLIT
  382. help
  383. This is the frame buffer device driver for the builtin graphics
  384. chipset found in Ataris.
  385. config FB_OF
  386. bool "Open Firmware frame buffer device support"
  387. depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
  388. select FB_CFB_FILLRECT
  389. select FB_CFB_COPYAREA
  390. select FB_CFB_IMAGEBLIT
  391. select FB_MACMODES
  392. help
  393. Say Y if you want support with Open Firmware for your graphics
  394. board.
  395. config FB_CONTROL
  396. bool "Apple \"control\" display support"
  397. depends on (FB = y) && PPC_PMAC && PPC32
  398. select FB_CFB_FILLRECT
  399. select FB_CFB_COPYAREA
  400. select FB_CFB_IMAGEBLIT
  401. select FB_MACMODES
  402. help
  403. This driver supports a frame buffer for the graphics adapter in the
  404. Power Macintosh 7300 and others.
  405. config FB_PLATINUM
  406. bool "Apple \"platinum\" display support"
  407. depends on (FB = y) && PPC_PMAC && PPC32
  408. select FB_CFB_FILLRECT
  409. select FB_CFB_COPYAREA
  410. select FB_CFB_IMAGEBLIT
  411. select FB_MACMODES
  412. help
  413. This driver supports a frame buffer for the "platinum" graphics
  414. adapter in some Power Macintoshes.
  415. config FB_VALKYRIE
  416. bool "Apple \"valkyrie\" display support"
  417. depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
  418. select FB_CFB_FILLRECT
  419. select FB_CFB_COPYAREA
  420. select FB_CFB_IMAGEBLIT
  421. select FB_MACMODES
  422. help
  423. This driver supports a frame buffer for the "valkyrie" graphics
  424. adapter in some Power Macintoshes.
  425. config FB_CT65550
  426. bool "Chips 65550 display support"
  427. depends on (FB = y) && PPC32
  428. select FB_CFB_FILLRECT
  429. select FB_CFB_COPYAREA
  430. select FB_CFB_IMAGEBLIT
  431. help
  432. This is the frame buffer device driver for the Chips & Technologies
  433. 65550 graphics chip in PowerBooks.
  434. config FB_ASILIANT
  435. bool "Asiliant (Chips) 69000 display support"
  436. depends on (FB = y) && PCI
  437. select FB_CFB_FILLRECT
  438. select FB_CFB_COPYAREA
  439. select FB_CFB_IMAGEBLIT
  440. help
  441. This is the frame buffer device driver for the Asiliant 69030 chipset
  442. config FB_IMSTT
  443. bool "IMS Twin Turbo display support"
  444. depends on (FB = y) && PCI
  445. select FB_CFB_IMAGEBLIT
  446. select FB_MACMODES if PPC
  447. help
  448. The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  449. many Macintosh and compatible computers.
  450. config FB_VGA16
  451. tristate "VGA 16-color graphics support"
  452. depends on FB && (X86 || PPC)
  453. select FB_CFB_FILLRECT
  454. select FB_CFB_COPYAREA
  455. select FB_CFB_IMAGEBLIT
  456. select VGASTATE
  457. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  458. help
  459. This is the frame buffer device driver for VGA 16 color graphic
  460. cards. Say Y if you have such a card.
  461. To compile this driver as a module, choose M here: the
  462. module will be called vga16fb.
  463. config FB_STI
  464. tristate "HP STI frame buffer device support"
  465. depends on FB && PARISC
  466. select FB_CFB_FILLRECT
  467. select FB_CFB_COPYAREA
  468. select FB_CFB_IMAGEBLIT
  469. default y
  470. ---help---
  471. STI refers to the HP "Standard Text Interface" which is a set of
  472. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  473. Enabling this option will implement the linux framebuffer device
  474. using calls to the STI BIOS routines for initialisation.
  475. If you enable this option, you will get a planar framebuffer device
  476. /dev/fb which will work on the most common HP graphic cards of the
  477. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  478. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  479. It is safe to enable this option, so you should probably say "Y".
  480. config FB_MAC
  481. bool "Generic Macintosh display support"
  482. depends on (FB = y) && MAC
  483. select FB_CFB_FILLRECT
  484. select FB_CFB_COPYAREA
  485. select FB_CFB_IMAGEBLIT
  486. select FB_MACMODES
  487. # bool ' Apple DAFB display support' CONFIG_FB_DAFB
  488. config FB_HP300
  489. bool
  490. depends on (FB = y) && HP300
  491. select FB_CFB_FILLRECT
  492. select FB_CFB_IMAGEBLIT
  493. default y
  494. config FB_TGA
  495. tristate "TGA/SFB+ framebuffer support"
  496. depends on FB && (ALPHA || TC)
  497. select FB_CFB_FILLRECT
  498. select FB_CFB_COPYAREA
  499. select FB_CFB_IMAGEBLIT
  500. select BITREVERSE
  501. ---help---
  502. This is the frame buffer device driver for generic TGA and SFB+
  503. graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  504. also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  505. TURBOchannel cards, also known as PMAGD-A, -B and -C.
  506. Due to hardware limitations ZLX-E2 and E3 cards are not supported
  507. for DECstation 5000/200 systems. Additionally due to firmware
  508. limitations these cards may cause troubles with booting DECstation
  509. 5000/240 and /260 systems, but are fully supported under Linux if
  510. you manage to get it going. ;-)
  511. Say Y if you have one of those.
  512. config FB_VESA
  513. bool "VESA VGA graphics support"
  514. depends on (FB = y) && X86
  515. select FB_CFB_FILLRECT
  516. select FB_CFB_COPYAREA
  517. select FB_CFB_IMAGEBLIT
  518. select VIDEO_SELECT
  519. help
  520. This is the frame buffer device driver for generic VESA 2.0
  521. compliant graphic cards. The older VESA 1.2 cards are not supported.
  522. You will get a boot time penguin logo at no additional cost. Please
  523. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  524. config FB_IMAC
  525. bool "Intel-based Macintosh Framebuffer Support"
  526. depends on (FB = y) && X86 && EFI
  527. select FB_CFB_FILLRECT
  528. select FB_CFB_COPYAREA
  529. select FB_CFB_IMAGEBLIT
  530. help
  531. This is the frame buffer device driver for the Intel-based Macintosh
  532. config FB_HECUBA
  533. tristate "Hecuba board support"
  534. depends on FB && X86 && MMU
  535. select FB_SYS_FILLRECT
  536. select FB_SYS_COPYAREA
  537. select FB_SYS_IMAGEBLIT
  538. select FB_SYS_FOPS
  539. select FB_DEFERRED_IO
  540. help
  541. This enables support for the Hecuba board. This driver was tested
  542. with an E-Ink 800x600 display and x86 SBCs through a 16 bit GPIO
  543. interface (8 bit data, 4 bit control). If you anticpate using
  544. this driver, say Y or M; otherwise say N. You must specify the
  545. GPIO IO address to be used for setting control and data.
  546. config FB_HGA
  547. tristate "Hercules mono graphics support"
  548. depends on FB && X86
  549. select FB_CFB_FILLRECT
  550. select FB_CFB_COPYAREA
  551. select FB_CFB_IMAGEBLIT
  552. help
  553. Say Y here if you have a Hercules mono graphics card.
  554. To compile this driver as a module, choose M here: the
  555. module will be called hgafb.
  556. As this card technology is 15 years old, most people will answer N
  557. here.
  558. config FB_HGA_ACCEL
  559. bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  560. depends on FB_HGA && EXPERIMENTAL
  561. ---help---
  562. This will compile the Hercules mono graphics with
  563. acceleration functions.
  564. config FB_SGIVW
  565. tristate "SGI Visual Workstation framebuffer support"
  566. depends on FB && X86_VISWS
  567. select FB_CFB_FILLRECT
  568. select FB_CFB_COPYAREA
  569. select FB_CFB_IMAGEBLIT
  570. help
  571. SGI Visual Workstation support for framebuffer graphics.
  572. config FB_GBE
  573. bool "SGI Graphics Backend frame buffer support"
  574. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  575. select FB_CFB_FILLRECT
  576. select FB_CFB_COPYAREA
  577. select FB_CFB_IMAGEBLIT
  578. help
  579. This is the frame buffer device driver for SGI Graphics Backend.
  580. This chip is used in SGI O2 and Visual Workstation 320/540.
  581. config FB_GBE_MEM
  582. int "Video memory size in MB"
  583. depends on FB_GBE
  584. default 4
  585. help
  586. This is the amount of memory reserved for the framebuffer,
  587. which can be any value between 1MB and 8MB.
  588. config FB_SBUS
  589. bool "SBUS and UPA framebuffers"
  590. depends on (FB = y) && SPARC
  591. help
  592. Say Y if you want support for SBUS or UPA based frame buffer device.
  593. config FB_BW2
  594. bool "BWtwo support"
  595. depends on (FB = y) && (SPARC && FB_SBUS)
  596. select FB_CFB_FILLRECT
  597. select FB_CFB_COPYAREA
  598. select FB_CFB_IMAGEBLIT
  599. help
  600. This is the frame buffer device driver for the BWtwo frame buffer.
  601. config FB_CG3
  602. bool "CGthree support"
  603. depends on (FB = y) && (SPARC && FB_SBUS)
  604. select FB_CFB_FILLRECT
  605. select FB_CFB_COPYAREA
  606. select FB_CFB_IMAGEBLIT
  607. help
  608. This is the frame buffer device driver for the CGthree frame buffer.
  609. config FB_CG6
  610. bool "CGsix (GX,TurboGX) support"
  611. depends on (FB = y) && (SPARC && FB_SBUS)
  612. select FB_CFB_COPYAREA
  613. select FB_CFB_IMAGEBLIT
  614. help
  615. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  616. frame buffer.
  617. config FB_FFB
  618. bool "Creator/Creator3D/Elite3D support"
  619. depends on FB_SBUS && SPARC64
  620. select FB_CFB_COPYAREA
  621. select FB_CFB_IMAGEBLIT
  622. help
  623. This is the frame buffer device driver for the Creator, Creator3D,
  624. and Elite3D graphics boards.
  625. config FB_TCX
  626. bool "TCX (SS4/SS5 only) support"
  627. depends on FB_SBUS
  628. select FB_CFB_FILLRECT
  629. select FB_CFB_COPYAREA
  630. select FB_CFB_IMAGEBLIT
  631. help
  632. This is the frame buffer device driver for the TCX 24/8bit frame
  633. buffer.
  634. config FB_CG14
  635. bool "CGfourteen (SX) support"
  636. depends on FB_SBUS
  637. select FB_CFB_FILLRECT
  638. select FB_CFB_COPYAREA
  639. select FB_CFB_IMAGEBLIT
  640. help
  641. This is the frame buffer device driver for the CGfourteen frame
  642. buffer on Desktop SPARCsystems with the SX graphics option.
  643. config FB_P9100
  644. bool "P9100 (Sparcbook 3 only) support"
  645. depends on FB_SBUS
  646. select FB_CFB_FILLRECT
  647. select FB_CFB_COPYAREA
  648. select FB_CFB_IMAGEBLIT
  649. help
  650. This is the frame buffer device driver for the P9100 card
  651. supported on Sparcbook 3 machines.
  652. config FB_LEO
  653. bool "Leo (ZX) support"
  654. depends on FB_SBUS
  655. select FB_CFB_FILLRECT
  656. select FB_CFB_COPYAREA
  657. select FB_CFB_IMAGEBLIT
  658. help
  659. This is the frame buffer device driver for the SBUS-based Sun ZX
  660. (leo) frame buffer cards.
  661. config FB_IGA
  662. bool "IGA 168x display support"
  663. depends on (FB = y) && SPARC32
  664. select FB_CFB_FILLRECT
  665. select FB_CFB_COPYAREA
  666. select FB_CFB_IMAGEBLIT
  667. help
  668. This is the framebuffer device for the INTERGRAPHICS 1680 and
  669. successor frame buffer cards.
  670. config FB_XVR500
  671. bool "Sun XVR-500 3DLABS Wildcat support"
  672. depends on (FB = y) && PCI && SPARC64
  673. select FB_CFB_FILLRECT
  674. select FB_CFB_COPYAREA
  675. select FB_CFB_IMAGEBLIT
  676. help
  677. This is the framebuffer device for the Sun XVR-500 and similar
  678. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  679. only works on sparc64 systems where the system firwmare has
  680. mostly initialized the card already. It is treated as a
  681. completely dumb framebuffer device.
  682. config FB_XVR2500
  683. bool "Sun XVR-2500 3DLABS Wildcat support"
  684. depends on (FB = y) && PCI && SPARC64
  685. select FB_CFB_FILLRECT
  686. select FB_CFB_COPYAREA
  687. select FB_CFB_IMAGEBLIT
  688. help
  689. This is the framebuffer device for the Sun XVR-2500 and similar
  690. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  691. only works on sparc64 systems where the system firwmare has
  692. mostly initialized the card already. It is treated as a
  693. completely dumb framebuffer device.
  694. config FB_PVR2
  695. tristate "NEC PowerVR 2 display support"
  696. depends on FB && SH_DREAMCAST
  697. select FB_CFB_FILLRECT
  698. select FB_CFB_COPYAREA
  699. select FB_CFB_IMAGEBLIT
  700. ---help---
  701. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  702. run linux on your Dreamcast, you will have to say Y here.
  703. This driver may or may not work on other PowerVR 2 cards, but is
  704. totally untested. Use at your own risk. If unsure, say N.
  705. To compile this driver as a module, choose M here: the
  706. module will be called pvr2fb.
  707. You can pass several parameters to the driver at boot time or at
  708. module load time. The parameters look like "video=pvr2:XXX", where
  709. the meaning of XXX can be found at the end of the main source file
  710. (<file:drivers/video/pvr2fb.c>). Please see the file
  711. <file:Documentation/fb/pvr2fb.txt>.
  712. config FB_EPSON1355
  713. bool "Epson 1355 framebuffer support"
  714. depends on (FB = y) && ARCH_CEIVA
  715. select FB_CFB_FILLRECT
  716. select FB_CFB_COPYAREA
  717. select FB_CFB_IMAGEBLIT
  718. help
  719. Build in support for the SED1355 Epson Research Embedded RAMDAC
  720. LCD/CRT Controller (since redesignated as the S1D13505) as a
  721. framebuffer. Product specs at
  722. <http://www.erd.epson.com/vdc/html/products.htm>.
  723. config FB_S1D13XXX
  724. tristate "Epson S1D13XXX framebuffer support"
  725. depends on FB
  726. select FB_CFB_FILLRECT
  727. select FB_CFB_COPYAREA
  728. select FB_CFB_IMAGEBLIT
  729. help
  730. Support for S1D13XXX framebuffer device family (currently only
  731. working with S1D13806). Product specs at
  732. <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  733. config FB_ATMEL
  734. tristate "AT91/AT32 LCD Controller support"
  735. depends on FB && (ARCH_AT91SAM9261 || ARCH_AT91SAM9263 || AVR32)
  736. select FB_CFB_FILLRECT
  737. select FB_CFB_COPYAREA
  738. select FB_CFB_IMAGEBLIT
  739. help
  740. This enables support for the AT91/AT32 LCD Controller.
  741. config FB_INTSRAM
  742. bool "Frame Buffer in internal SRAM"
  743. depends on FB_ATMEL && ARCH_AT91SAM9261
  744. help
  745. Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
  746. to let frame buffer in external SDRAM.
  747. config FB_ATMEL_STN
  748. bool "Use a STN display with AT91/AT32 LCD Controller"
  749. depends on FB_ATMEL && MACH_AT91SAM9261EK
  750. default n
  751. help
  752. Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
  753. Controller. Say N if you want to connect a TFT.
  754. If unsure, say N.
  755. config FB_NVIDIA
  756. tristate "nVidia Framebuffer Support"
  757. depends on FB && PCI
  758. select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  759. select FB_MODE_HELPERS
  760. select FB_CFB_FILLRECT
  761. select FB_CFB_COPYAREA
  762. select FB_CFB_IMAGEBLIT
  763. select BITREVERSE
  764. select VGASTATE
  765. help
  766. This driver supports graphics boards with the nVidia chips, TNT
  767. and newer. For very old chipsets, such as the RIVA128, then use
  768. the rivafb.
  769. Say Y if you have such a graphics board.
  770. To compile this driver as a module, choose M here: the
  771. module will be called nvidiafb.
  772. config FB_NVIDIA_I2C
  773. bool "Enable DDC Support"
  774. depends on FB_NVIDIA
  775. select FB_DDC
  776. help
  777. This enables I2C support for nVidia Chipsets. This is used
  778. only for getting EDID information from the attached display
  779. allowing for robust video mode handling and switching.
  780. Because fbdev-2.6 requires that drivers must be able to
  781. independently validate video mode parameters, you should say Y
  782. here.
  783. config FB_NVIDIA_DEBUG
  784. bool "Lots of debug output"
  785. depends on FB_NVIDIA
  786. default n
  787. help
  788. Say Y here if you want the nVidia driver to output all sorts
  789. of debugging information to provide to the maintainer when
  790. something goes wrong.
  791. config FB_NVIDIA_BACKLIGHT
  792. bool "Support for backlight control"
  793. depends on FB_NVIDIA
  794. default y
  795. help
  796. Say Y here if you want to control the backlight of your display.
  797. config FB_RIVA
  798. tristate "nVidia Riva support"
  799. depends on FB && PCI
  800. select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  801. select FB_MODE_HELPERS
  802. select FB_CFB_FILLRECT
  803. select FB_CFB_COPYAREA
  804. select FB_CFB_IMAGEBLIT
  805. select BITREVERSE
  806. select VGASTATE
  807. help
  808. This driver supports graphics boards with the nVidia Riva/Geforce
  809. chips.
  810. Say Y if you have such a graphics board.
  811. To compile this driver as a module, choose M here: the
  812. module will be called rivafb.
  813. config FB_RIVA_I2C
  814. bool "Enable DDC Support"
  815. depends on FB_RIVA
  816. select FB_DDC
  817. help
  818. This enables I2C support for nVidia Chipsets. This is used
  819. only for getting EDID information from the attached display
  820. allowing for robust video mode handling and switching.
  821. Because fbdev-2.6 requires that drivers must be able to
  822. independently validate video mode parameters, you should say Y
  823. here.
  824. config FB_RIVA_DEBUG
  825. bool "Lots of debug output"
  826. depends on FB_RIVA
  827. default n
  828. help
  829. Say Y here if you want the Riva driver to output all sorts
  830. of debugging information to provide to the maintainer when
  831. something goes wrong.
  832. config FB_RIVA_BACKLIGHT
  833. bool "Support for backlight control"
  834. depends on FB_RIVA
  835. default y
  836. help
  837. Say Y here if you want to control the backlight of your display.
  838. config FB_I810
  839. tristate "Intel 810/815 support (EXPERIMENTAL)"
  840. depends on FB && EXPERIMENTAL && PCI && X86_32
  841. select AGP
  842. select AGP_INTEL
  843. select FB_MODE_HELPERS
  844. select FB_CFB_FILLRECT
  845. select FB_CFB_COPYAREA
  846. select FB_CFB_IMAGEBLIT
  847. select VGASTATE
  848. help
  849. This driver supports the on-board graphics built in to the Intel 810
  850. and 815 chipsets. Say Y if you have and plan to use such a board.
  851. To compile this driver as a module, choose M here: the
  852. module will be called i810fb.
  853. For more information, please read
  854. <file:Documentation/fb/intel810.txt>
  855. config FB_I810_GTF
  856. bool "use VESA Generalized Timing Formula"
  857. depends on FB_I810
  858. help
  859. If you say Y, then the VESA standard, Generalized Timing Formula
  860. or GTF, will be used to calculate the required video timing values
  861. per video mode. Since the GTF allows nondiscrete timings
  862. (nondiscrete being a range of values as opposed to discrete being a
  863. set of values), you'll be able to use any combination of horizontal
  864. and vertical resolutions, and vertical refresh rates without having
  865. to specify your own timing parameters. This is especially useful
  866. to maximize the performance of an aging display, or if you just
  867. have a display with nonstandard dimensions. A VESA compliant
  868. monitor is recommended, but can still work with non-compliant ones.
  869. If you need or want this, then select this option. The timings may
  870. not be compliant with Intel's recommended values. Use at your own
  871. risk.
  872. If you say N, the driver will revert to discrete video timings
  873. using a set recommended by Intel in their documentation.
  874. If unsure, say N.
  875. config FB_I810_I2C
  876. bool "Enable DDC Support"
  877. depends on FB_I810 && FB_I810_GTF
  878. select FB_DDC
  879. help
  880. config FB_LE80578
  881. tristate "Intel LE80578 (Vermilion) support"
  882. depends on FB && PCI && X86
  883. select FB_MODE_HELPERS
  884. select FB_CFB_FILLRECT
  885. select FB_CFB_COPYAREA
  886. select FB_CFB_IMAGEBLIT
  887. help
  888. This driver supports the LE80578 (Vermilion Range) chipset
  889. config FB_CARILLO_RANCH
  890. tristate "Intel Carillo Ranch support"
  891. depends on FB_LE80578 && FB && PCI && X86
  892. help
  893. This driver supports the LE80578 (Carillo Ranch) board
  894. config FB_INTEL
  895. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
  896. depends on FB && EXPERIMENTAL && PCI && X86
  897. select AGP
  898. select AGP_INTEL
  899. select FB_MODE_HELPERS
  900. select FB_CFB_FILLRECT
  901. select FB_CFB_COPYAREA
  902. select FB_CFB_IMAGEBLIT
  903. help
  904. This driver supports the on-board graphics built in to the Intel
  905. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
  906. Say Y if you have and plan to use such a board.
  907. If you say Y here and want DDC/I2C support you must first say Y to
  908. "I2C support" and "I2C bit-banging support" in the character devices
  909. section.
  910. If you say M here then "I2C support" and "I2C bit-banging support"
  911. can be build either as modules or built-in.
  912. To compile this driver as a module, choose M here: the
  913. module will be called intelfb.
  914. For more information, please read <file:Documentation/fb/intelfb.txt>
  915. config FB_INTEL_DEBUG
  916. bool "Intel driver Debug Messages"
  917. depends on FB_INTEL
  918. ---help---
  919. Say Y here if you want the Intel driver to output all sorts
  920. of debugging information to provide to the maintainer when
  921. something goes wrong.
  922. config FB_INTEL_I2C
  923. bool "DDC/I2C for Intel framebuffer support"
  924. depends on FB_INTEL
  925. select FB_DDC
  926. default y
  927. help
  928. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  929. config FB_MATROX
  930. tristate "Matrox acceleration"
  931. depends on FB && PCI
  932. select FB_CFB_FILLRECT
  933. select FB_CFB_COPYAREA
  934. select FB_CFB_IMAGEBLIT
  935. select FB_TILEBLITTING
  936. select FB_MACMODES if PPC_PMAC
  937. ---help---
  938. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  939. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  940. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  941. Matrox G400, G450 or G550 card in your box.
  942. To compile this driver as a module, choose M here: the
  943. module will be called matroxfb.
  944. You can pass several parameters to the driver at boot time or at
  945. module load time. The parameters look like "video=matrox:XXX", and
  946. are described in <file:Documentation/fb/matroxfb.txt>.
  947. config FB_MATROX_MILLENIUM
  948. bool "Millennium I/II support"
  949. depends on FB_MATROX
  950. help
  951. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  952. video card. If you select "Advanced lowlevel driver options" below,
  953. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  954. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  955. also use font widths different from 8.
  956. config FB_MATROX_MYSTIQUE
  957. bool "Mystique support"
  958. depends on FB_MATROX
  959. help
  960. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  961. video card. If you select "Advanced lowlevel driver options" below,
  962. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  963. packed pixel and 32 bpp packed pixel. You can also use font widths
  964. different from 8.
  965. config FB_MATROX_G
  966. bool "G100/G200/G400/G450/G550 support"
  967. depends on FB_MATROX
  968. ---help---
  969. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  970. video card. If you select "Advanced lowlevel driver options", you
  971. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  972. pixel and 32 bpp packed pixel. You can also use font widths
  973. different from 8.
  974. If you need support for G400 secondary head, you must first say Y to
  975. "I2C support" in the character devices section, and then to
  976. "Matrox I2C support" and "G400 second head support" here in the
  977. framebuffer section. G450/G550 secondary head and digital output
  978. are supported without additional modules.
  979. The driver starts in monitor mode. You must use the matroxset tool
  980. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  981. swap primary and secondary head outputs, or to change output mode.
  982. Secondary head driver always start in 640x480 resolution and you
  983. must use fbset to change it.
  984. Do not forget that second head supports only 16 and 32 bpp
  985. packed pixels, so it is a good idea to compile them into the kernel
  986. too. You can use only some font widths, as the driver uses generic
  987. painting procedures (the secondary head does not use acceleration
  988. engine).
  989. G450/G550 hardware can display TV picture only from secondary CRTC,
  990. and it performs no scaling, so picture must have 525 or 625 lines.
  991. config FB_MATROX_I2C
  992. tristate "Matrox I2C support"
  993. depends on FB_MATROX
  994. select FB_DDC
  995. ---help---
  996. This drivers creates I2C buses which are needed for accessing the
  997. DDC (I2C) bus present on all Matroxes, an I2C bus which
  998. interconnects Matrox optional devices, like MGA-TVO on G200 and
  999. G400, and the secondary head DDC bus, present on G400 only.
  1000. You can say Y or M here if you want to experiment with monitor
  1001. detection code. You must say Y or M here if you want to use either
  1002. second head of G400 or MGA-TVO on G200 or G400.
  1003. If you compile it as module, it will create a module named
  1004. i2c-matroxfb.
  1005. config FB_MATROX_MAVEN
  1006. tristate "G400 second head support"
  1007. depends on FB_MATROX_G && FB_MATROX_I2C
  1008. ---help---
  1009. WARNING !!! This support does not work with G450 !!!
  1010. Say Y or M here if you want to use a secondary head (meaning two
  1011. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1012. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1013. secondary head output is blanked while you are in X. With XFree
  1014. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1015. the fbdev driver on first head and the fbdev driver on second head.
  1016. If you compile it as module, two modules are created,
  1017. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1018. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1019. also load i2c-matroxfb to get it to run.
  1020. The driver starts in monitor mode and you must use the matroxset
  1021. tool (available at
  1022. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1023. PAL or NTSC or to swap primary and secondary head outputs.
  1024. Secondary head driver also always start in 640x480 resolution, you
  1025. must use fbset to change it.
  1026. Also do not forget that second head supports only 16 and 32 bpp
  1027. packed pixels, so it is a good idea to compile them into the kernel
  1028. too. You can use only some font widths, as the driver uses generic
  1029. painting procedures (the secondary head does not use acceleration
  1030. engine).
  1031. config FB_MATROX_MULTIHEAD
  1032. bool "Multihead support"
  1033. depends on FB_MATROX
  1034. ---help---
  1035. Say Y here if you have more than one (supported) Matrox device in
  1036. your computer and you want to use all of them for different monitors
  1037. ("multihead"). If you have only one device, you should say N because
  1038. the driver compiled with Y is larger and a bit slower, especially on
  1039. ia32 (ix86).
  1040. If you said M to "Matrox unified accelerated driver" and N here, you
  1041. will still be able to use several Matrox devices simultaneously:
  1042. insert several instances of the module matroxfb into the kernel
  1043. with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  1044. for the different Matrox devices. This method is slightly faster but
  1045. uses 40 KB of kernel memory per Matrox card.
  1046. There is no need for enabling 'Matrox multihead support' if you have
  1047. only one Matrox card in the box.
  1048. config FB_RADEON
  1049. tristate "ATI Radeon display support"
  1050. depends on FB && PCI
  1051. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1052. select FB_MODE_HELPERS
  1053. select FB_CFB_FILLRECT
  1054. select FB_CFB_COPYAREA
  1055. select FB_CFB_IMAGEBLIT
  1056. select FB_MACMODES if PPC_OF
  1057. help
  1058. Choose this option if you want to use an ATI Radeon graphics card as
  1059. a framebuffer device. There are both PCI and AGP versions. You
  1060. don't need to choose this to run the Radeon in plain VGA mode.
  1061. If you say Y here and want DDC/I2C support you must first say Y to
  1062. "I2C support" and "I2C bit-banging support" in the character devices
  1063. section.
  1064. If you say M here then "I2C support" and "I2C bit-banging support"
  1065. can be build either as modules or built-in.
  1066. There is a product page at
  1067. http://apps.ati.com/ATIcompare/
  1068. config FB_RADEON_I2C
  1069. bool "DDC/I2C for ATI Radeon support"
  1070. depends on FB_RADEON
  1071. select FB_DDC
  1072. default y
  1073. help
  1074. Say Y here if you want DDC/I2C support for your Radeon board.
  1075. config FB_RADEON_BACKLIGHT
  1076. bool "Support for backlight control"
  1077. depends on FB_RADEON
  1078. default y
  1079. help
  1080. Say Y here if you want to control the backlight of your display.
  1081. config FB_RADEON_DEBUG
  1082. bool "Lots of debug output from Radeon driver"
  1083. depends on FB_RADEON
  1084. default n
  1085. help
  1086. Say Y here if you want the Radeon driver to output all sorts
  1087. of debugging information to provide to the maintainer when
  1088. something goes wrong.
  1089. config FB_ATY128
  1090. tristate "ATI Rage128 display support"
  1091. depends on FB && PCI
  1092. select FB_CFB_FILLRECT
  1093. select FB_CFB_COPYAREA
  1094. select FB_CFB_IMAGEBLIT
  1095. select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  1096. select FB_MACMODES if PPC_PMAC
  1097. help
  1098. This driver supports graphics boards with the ATI Rage128 chips.
  1099. Say Y if you have such a graphics board and read
  1100. <file:Documentation/fb/aty128fb.txt>.
  1101. To compile this driver as a module, choose M here: the
  1102. module will be called aty128fb.
  1103. config FB_ATY128_BACKLIGHT
  1104. bool "Support for backlight control"
  1105. depends on FB_ATY128
  1106. default y
  1107. help
  1108. Say Y here if you want to control the backlight of your display.
  1109. config FB_ATY
  1110. tristate "ATI Mach64 display support" if PCI || ATARI
  1111. depends on FB && !SPARC32
  1112. select FB_CFB_FILLRECT
  1113. select FB_CFB_COPYAREA
  1114. select FB_CFB_IMAGEBLIT
  1115. select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  1116. select FB_MACMODES if PPC
  1117. help
  1118. This driver supports graphics boards with the ATI Mach64 chips.
  1119. Say Y if you have such a graphics board.
  1120. To compile this driver as a module, choose M here: the
  1121. module will be called atyfb.
  1122. config FB_ATY_CT
  1123. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  1124. depends on PCI && FB_ATY
  1125. default y if SPARC64 && PCI
  1126. help
  1127. Say Y here to support use of ATI's 64-bit Rage boards (or other
  1128. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1129. framebuffer device. The ATI product support page for these boards
  1130. is at <http://support.ati.com/products/pc/mach64/>.
  1131. config FB_ATY_GENERIC_LCD
  1132. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1133. depends on FB_ATY_CT
  1134. help
  1135. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1136. Rage XC, or Rage XL chipset.
  1137. config FB_ATY_GX
  1138. bool "Mach64 GX support" if PCI
  1139. depends on FB_ATY
  1140. default y if ATARI
  1141. help
  1142. Say Y here to support use of the ATI Mach64 Graphics Expression
  1143. board (or other boards based on the Mach64 GX chipset) as a
  1144. framebuffer device. The ATI product support page for these boards
  1145. is at
  1146. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1147. config FB_ATY_BACKLIGHT
  1148. bool "Support for backlight control"
  1149. depends on FB_ATY
  1150. default y
  1151. help
  1152. Say Y here if you want to control the backlight of your display.
  1153. config FB_S3
  1154. tristate "S3 Trio/Virge support"
  1155. depends on FB && PCI
  1156. select FB_CFB_FILLRECT
  1157. select FB_CFB_COPYAREA
  1158. select FB_CFB_IMAGEBLIT
  1159. select FB_TILEBLITTING
  1160. select FB_SVGALIB
  1161. select VGASTATE
  1162. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1163. ---help---
  1164. Driver for graphics boards with S3 Trio / S3 Virge chip.
  1165. config FB_SAVAGE
  1166. tristate "S3 Savage support"
  1167. depends on FB && PCI && EXPERIMENTAL
  1168. select FB_MODE_HELPERS
  1169. select FB_CFB_FILLRECT
  1170. select FB_CFB_COPYAREA
  1171. select FB_CFB_IMAGEBLIT
  1172. select VGASTATE
  1173. help
  1174. This driver supports notebooks and computers with S3 Savage PCI/AGP
  1175. chips.
  1176. Say Y if you have such a graphics card.
  1177. To compile this driver as a module, choose M here; the module
  1178. will be called savagefb.
  1179. config FB_SAVAGE_I2C
  1180. bool "Enable DDC2 Support"
  1181. depends on FB_SAVAGE
  1182. select FB_DDC
  1183. help
  1184. This enables I2C support for S3 Savage Chipsets. This is used
  1185. only for getting EDID information from the attached display
  1186. allowing for robust video mode handling and switching.
  1187. Because fbdev-2.6 requires that drivers must be able to
  1188. independently validate video mode parameters, you should say Y
  1189. here.
  1190. config FB_SAVAGE_ACCEL
  1191. bool "Enable Console Acceleration"
  1192. depends on FB_SAVAGE
  1193. default n
  1194. help
  1195. This option will compile in console acceleration support. If
  1196. the resulting framebuffer console has bothersome glitches, then
  1197. choose N here.
  1198. config FB_SIS
  1199. tristate "SiS/XGI display support"
  1200. depends on FB && PCI
  1201. select FB_CFB_FILLRECT
  1202. select FB_CFB_COPYAREA
  1203. select FB_CFB_IMAGEBLIT
  1204. help
  1205. This is the frame buffer device driver for the SiS 300, 315, 330
  1206. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1207. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1208. To compile this driver as a module, choose M here; the module
  1209. will be called sisfb.
  1210. config FB_SIS_300
  1211. bool "SiS 300 series support"
  1212. depends on FB_SIS
  1213. help
  1214. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1215. config FB_SIS_315
  1216. bool "SiS 315/330/340 series and XGI support"
  1217. depends on FB_SIS
  1218. help
  1219. Say Y here to support use of the SiS 315, 330 and 340 series
  1220. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1221. as XGI V3XT, V5, V8 and Z7.
  1222. config FB_NEOMAGIC
  1223. tristate "NeoMagic display support"
  1224. depends on FB && PCI
  1225. select FB_MODE_HELPERS
  1226. select FB_CFB_FILLRECT
  1227. select FB_CFB_COPYAREA
  1228. select FB_CFB_IMAGEBLIT
  1229. select VGASTATE
  1230. help
  1231. This driver supports notebooks with NeoMagic PCI chips.
  1232. Say Y if you have such a graphics card.
  1233. To compile this driver as a module, choose M here: the
  1234. module will be called neofb.
  1235. config FB_KYRO
  1236. tristate "IMG Kyro support"
  1237. depends on FB && PCI
  1238. select FB_CFB_FILLRECT
  1239. select FB_CFB_COPYAREA
  1240. select FB_CFB_IMAGEBLIT
  1241. help
  1242. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1243. graphics board.
  1244. To compile this driver as a module, choose M here: the
  1245. module will be called kyrofb.
  1246. config FB_3DFX
  1247. tristate "3Dfx Banshee/Voodoo3 display support"
  1248. depends on FB && PCI
  1249. select FB_CFB_IMAGEBLIT
  1250. select FB_CFB_FILLRECT
  1251. select FB_CFB_COPYAREA
  1252. help
  1253. This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
  1254. chips. Say Y if you have such a graphics board.
  1255. To compile this driver as a module, choose M here: the
  1256. module will be called tdfxfb.
  1257. config FB_3DFX_ACCEL
  1258. bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
  1259. depends on FB_3DFX && EXPERIMENTAL
  1260. ---help---
  1261. This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
  1262. with acceleration functions.
  1263. config FB_VOODOO1
  1264. tristate "3Dfx Voodoo Graphics (sst1) support"
  1265. depends on FB && PCI
  1266. select FB_CFB_FILLRECT
  1267. select FB_CFB_COPYAREA
  1268. select FB_CFB_IMAGEBLIT
  1269. ---help---
  1270. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1271. Voodoo2 (cvg) based graphics card.
  1272. To compile this driver as a module, choose M here: the
  1273. module will be called sstfb.
  1274. WARNING: Do not use any application that uses the 3D engine
  1275. (namely glide) while using this driver.
  1276. Please read the <file:Documentation/fb/README-sstfb.txt> for supported
  1277. options and other important info support.
  1278. config FB_VT8623
  1279. tristate "VIA VT8623 support"
  1280. depends on FB && PCI
  1281. select FB_CFB_FILLRECT
  1282. select FB_CFB_COPYAREA
  1283. select FB_CFB_IMAGEBLIT
  1284. select FB_TILEBLITTING
  1285. select FB_SVGALIB
  1286. select VGASTATE
  1287. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1288. ---help---
  1289. Driver for CastleRock integrated graphics core in the
  1290. VIA VT8623 [Apollo CLE266] chipset.
  1291. config FB_CYBLA
  1292. tristate "Cyberblade/i1 support"
  1293. depends on FB && PCI && X86_32 && !64BIT
  1294. select FB_CFB_IMAGEBLIT
  1295. select VIDEO_SELECT
  1296. ---help---
  1297. This driver is supposed to support the Trident Cyberblade/i1
  1298. graphics core integrated in the VIA VT8601A North Bridge,
  1299. also known as VIA Apollo PLE133.
  1300. Status:
  1301. - Developed, tested and working on EPIA 5000 and EPIA 800.
  1302. - Does work reliable on all systems with CRT/LCD connected to
  1303. normal VGA ports.
  1304. - Should work on systems that do use the internal LCD port, but
  1305. this is absolutely not tested.
  1306. Character imageblit, copyarea and rectangle fill are hw accelerated,
  1307. ypan scrolling is used by default.
  1308. Please do read <file:Documentation/fb/cyblafb/*>.
  1309. To compile this driver as a module, choose M here: the
  1310. module will be called cyblafb.
  1311. config FB_TRIDENT
  1312. tristate "Trident support"
  1313. depends on FB && PCI
  1314. select FB_CFB_FILLRECT
  1315. select FB_CFB_COPYAREA
  1316. select FB_CFB_IMAGEBLIT
  1317. ---help---
  1318. This driver is supposed to support graphics boards with the
  1319. Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
  1320. but also on some motherboards. For more information, read
  1321. <file:Documentation/fb/tridentfb.txt>
  1322. Cyberblade/i1 support will be removed soon, use the cyblafb driver
  1323. instead.
  1324. Say Y if you have such a graphics board.
  1325. To compile this driver as a module, choose M here: the
  1326. module will be called tridentfb.
  1327. config FB_TRIDENT_ACCEL
  1328. bool "Trident Acceleration functions (EXPERIMENTAL)"
  1329. depends on FB_TRIDENT && EXPERIMENTAL
  1330. ---help---
  1331. This will compile the Trident frame buffer device with
  1332. acceleration functions.
  1333. config FB_ARK
  1334. tristate "ARK 2000PV support"
  1335. depends on FB && PCI
  1336. select FB_CFB_FILLRECT
  1337. select FB_CFB_COPYAREA
  1338. select FB_CFB_IMAGEBLIT
  1339. select FB_TILEBLITTING
  1340. select FB_SVGALIB
  1341. select VGASTATE
  1342. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1343. ---help---
  1344. Driver for PCI graphics boards with ARK 2000PV chip
  1345. and ICS 5342 RAMDAC.
  1346. config FB_PM3
  1347. tristate "Permedia3 support (EXPERIMENTAL)"
  1348. depends on FB && PCI && EXPERIMENTAL
  1349. select FB_CFB_FILLRECT
  1350. select FB_CFB_COPYAREA
  1351. select FB_CFB_IMAGEBLIT
  1352. help
  1353. This is the frame buffer device driver for the 3DLabs Permedia3
  1354. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1355. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1356. and maybe other boards.
  1357. config FB_AU1100
  1358. bool "Au1100 LCD Driver"
  1359. depends on (FB = y) && MIPS && SOC_AU1100
  1360. select FB_CFB_FILLRECT
  1361. select FB_CFB_COPYAREA
  1362. select FB_CFB_IMAGEBLIT
  1363. help
  1364. This is the framebuffer driver for the AMD Au1100 SOC. It can drive
  1365. various panels and CRTs by passing in kernel cmd line option
  1366. au1100fb:panel=<name>.
  1367. config FB_AU1200
  1368. bool "Au1200 LCD Driver"
  1369. depends on (FB = y) && MIPS && SOC_AU1200
  1370. select FB_CFB_FILLRECT
  1371. select FB_CFB_COPYAREA
  1372. select FB_CFB_IMAGEBLIT
  1373. help
  1374. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1375. various panels and CRTs by passing in kernel cmd line option
  1376. au1200fb:panel=<name>.
  1377. source "drivers/video/geode/Kconfig"
  1378. config FB_HIT
  1379. tristate "HD64461 Frame Buffer support"
  1380. depends on FB && HD64461
  1381. select FB_CFB_FILLRECT
  1382. select FB_CFB_COPYAREA
  1383. select FB_CFB_IMAGEBLIT
  1384. help
  1385. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1386. frame buffer card.
  1387. config FB_PMAG_AA
  1388. bool "PMAG-AA TURBOchannel framebuffer support"
  1389. depends on (FB = y) && TC
  1390. select FB_CFB_FILLRECT
  1391. select FB_CFB_COPYAREA
  1392. select FB_CFB_IMAGEBLIT
  1393. help
  1394. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1395. used mainly in the MIPS-based DECstation series.
  1396. config FB_PMAG_BA
  1397. tristate "PMAG-BA TURBOchannel framebuffer support"
  1398. depends on FB && TC
  1399. select FB_CFB_FILLRECT
  1400. select FB_CFB_COPYAREA
  1401. select FB_CFB_IMAGEBLIT
  1402. help
  1403. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1404. used mainly in the MIPS-based DECstation series.
  1405. config FB_PMAGB_B
  1406. tristate "PMAGB-B TURBOchannel framebuffer support"
  1407. depends on TC
  1408. select FB_CFB_FILLRECT
  1409. select FB_CFB_COPYAREA
  1410. select FB_CFB_IMAGEBLIT
  1411. help
  1412. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1413. in the MIPS-based DECstation series. The card is currently only
  1414. supported in 1280x1024x8 mode.
  1415. config FB_MAXINE
  1416. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1417. depends on (FB = y) && MACH_DECSTATION
  1418. select FB_CFB_FILLRECT
  1419. select FB_CFB_COPYAREA
  1420. select FB_CFB_IMAGEBLIT
  1421. help
  1422. Support for the onboard framebuffer (1024x768x8) in the Personal
  1423. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1424. Codename "Maxine").
  1425. config FB_TX3912
  1426. bool "TMPTX3912/PR31700 frame buffer support"
  1427. depends on (FB = y) && NINO
  1428. select FB_CFB_FILLRECT
  1429. select FB_CFB_COPYAREA
  1430. select FB_CFB_IMAGEBLIT
  1431. help
  1432. The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
  1433. see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
  1434. Say Y here to enable kernel support for the on-board framebuffer.
  1435. config FB_G364
  1436. bool "G364 frame buffer support"
  1437. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1438. select FB_CFB_FILLRECT
  1439. select FB_CFB_COPYAREA
  1440. select FB_CFB_IMAGEBLIT
  1441. help
  1442. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1443. Olivetti M700-10 systems.
  1444. config FB_68328
  1445. bool "Motorola 68328 native frame buffer support"
  1446. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1447. select FB_CFB_FILLRECT
  1448. select FB_CFB_COPYAREA
  1449. select FB_CFB_IMAGEBLIT
  1450. help
  1451. Say Y here if you want to support the built-in frame buffer of
  1452. the Motorola 68328 CPU family.
  1453. config FB_PXA
  1454. tristate "PXA LCD framebuffer support"
  1455. depends on FB && ARCH_PXA
  1456. select FB_CFB_FILLRECT
  1457. select FB_CFB_COPYAREA
  1458. select FB_CFB_IMAGEBLIT
  1459. ---help---
  1460. Frame buffer driver for the built-in LCD controller in the Intel
  1461. PXA2x0 processor.
  1462. This driver is also available as a module ( = code which can be
  1463. inserted and removed from the running kernel whenever you want). The
  1464. module will be called pxafb. If you want to compile it as a module,
  1465. say M here and read <file:Documentation/kbuild/modules.txt>.
  1466. If unsure, say N.
  1467. config FB_PXA_PARAMETERS
  1468. bool "PXA LCD command line parameters"
  1469. default n
  1470. depends on FB_PXA
  1471. ---help---
  1472. Enable the use of kernel command line or module parameters
  1473. to configure the physical properties of the LCD panel when
  1474. using the PXA LCD driver.
  1475. This option allows you to override the panel parameters
  1476. supplied by the platform in order to support multiple
  1477. different models of flatpanel. If you will only be using a
  1478. single model of flatpanel then you can safely leave this
  1479. option disabled.
  1480. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1481. config FB_MBX
  1482. tristate "2700G LCD framebuffer support"
  1483. depends on FB && ARCH_PXA
  1484. select FB_CFB_FILLRECT
  1485. select FB_CFB_COPYAREA
  1486. select FB_CFB_IMAGEBLIT
  1487. ---help---
  1488. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1489. Accelerator
  1490. config FB_MBX_DEBUG
  1491. bool "Enable debugging info via debugfs"
  1492. depends on FB_MBX && DEBUG_FS
  1493. default n
  1494. ---help---
  1495. Enable this if you want debugging information using the debug
  1496. filesystem (debugfs)
  1497. If unsure, say N.
  1498. config FB_W100
  1499. tristate "W100 frame buffer support"
  1500. depends on FB && PXA_SHARPSL
  1501. select FB_CFB_FILLRECT
  1502. select FB_CFB_COPYAREA
  1503. select FB_CFB_IMAGEBLIT
  1504. ---help---
  1505. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1506. This driver is also available as a module ( = code which can be
  1507. inserted and removed from the running kernel whenever you want). The
  1508. module will be called w100fb. If you want to compile it as a module,
  1509. say M here and read <file:Documentation/kbuild/modules.txt>.
  1510. If unsure, say N.
  1511. config FB_S3C2410
  1512. tristate "S3C2410 LCD framebuffer support"
  1513. depends on FB && ARCH_S3C2410
  1514. select FB_CFB_FILLRECT
  1515. select FB_CFB_COPYAREA
  1516. select FB_CFB_IMAGEBLIT
  1517. ---help---
  1518. Frame buffer driver for the built-in LCD controller in the Samsung
  1519. S3C2410 processor.
  1520. This driver is also available as a module ( = code which can be
  1521. inserted and removed from the running kernel whenever you want). The
  1522. module will be called s3c2410fb. If you want to compile it as a module,
  1523. say M here and read <file:Documentation/kbuild/modules.txt>.
  1524. If unsure, say N.
  1525. config FB_S3C2410_DEBUG
  1526. bool "S3C2410 lcd debug messages"
  1527. depends on FB_S3C2410
  1528. help
  1529. Turn on debugging messages. Note that you can set/unset at run time
  1530. through sysfs
  1531. config FB_SM501
  1532. tristate "Silicon Motion SM501 framebuffer support"
  1533. depends on FB && MFD_SM501
  1534. select FB_CFB_FILLRECT
  1535. select FB_CFB_COPYAREA
  1536. select FB_CFB_IMAGEBLIT
  1537. ---help---
  1538. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1539. Motion SM501.
  1540. This driver is also available as a module ( = code which can be
  1541. inserted and removed from the running kernel whenever you want). The
  1542. module will be called sm501fb. If you want to compile it as a module,
  1543. say M here and read <file:Documentation/modules.txt>.
  1544. If unsure, say N.
  1545. config FB_PNX4008_DUM
  1546. tristate "Display Update Module support on Philips PNX4008 board"
  1547. depends on FB && ARCH_PNX4008
  1548. ---help---
  1549. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1550. config FB_PNX4008_DUM_RGB
  1551. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1552. depends on FB_PNX4008_DUM
  1553. select FB_CFB_FILLRECT
  1554. select FB_CFB_COPYAREA
  1555. select FB_CFB_IMAGEBLIT
  1556. ---help---
  1557. Say Y here to enable support for PNX4008 RGB Framebuffer
  1558. config FB_IBM_GXT4500
  1559. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1560. depends on PPC
  1561. select FB_CFB_FILLRECT
  1562. select FB_CFB_COPYAREA
  1563. select FB_CFB_IMAGEBLIT
  1564. ---help---
  1565. Say Y here to enable support for the IBM GXT4500P display
  1566. adaptor, found on some IBM System P (pSeries) machines.
  1567. config FB_PS3
  1568. tristate "PS3 GPU framebuffer driver"
  1569. depends on FB && PS3_PS3AV
  1570. select FB_SYS_FILLRECT
  1571. select FB_SYS_COPYAREA
  1572. select FB_SYS_IMAGEBLIT
  1573. select FB_SYS_FOPS
  1574. select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1575. ---help---
  1576. Include support for the virtual frame buffer in the PS3 platform.
  1577. config FB_PS3_DEFAULT_SIZE_M
  1578. int "PS3 default frame buffer size (in MiB)"
  1579. depends on FB_PS3
  1580. default 9
  1581. ---help---
  1582. This is the default size (in MiB) of the virtual frame buffer in
  1583. the PS3.
  1584. The default value can be overridden on the kernel command line
  1585. using the "ps3fb" option (e.g. "ps3fb=9M");
  1586. config FB_XILINX
  1587. tristate "Xilinx frame buffer support"
  1588. depends on FB && XILINX_VIRTEX
  1589. select FB_CFB_FILLRECT
  1590. select FB_CFB_COPYAREA
  1591. select FB_CFB_IMAGEBLIT
  1592. ---help---
  1593. Include support for the Xilinx ML300/ML403 reference design
  1594. framebuffer. ML300 carries a 640*480 LCD display on the board,
  1595. ML403 uses a standard DB15 VGA connector.
  1596. if ARCH_OMAP
  1597. source "drivers/video/omap/Kconfig"
  1598. endif
  1599. config FB_VIRTUAL
  1600. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1601. depends on FB
  1602. select FB_SYS_FILLRECT
  1603. select FB_SYS_COPYAREA
  1604. select FB_SYS_IMAGEBLIT
  1605. select FB_SYS_FOPS
  1606. ---help---
  1607. This is a `virtual' frame buffer device. It operates on a chunk of
  1608. unswappable kernel memory instead of on the memory of a graphics
  1609. board. This means you cannot see any output sent to this frame
  1610. buffer device, while it does consume precious memory. The main use
  1611. of this frame buffer device is testing and debugging the frame
  1612. buffer subsystem. Do NOT enable it for normal systems! To protect
  1613. the innocent, it has to be enabled explicitly at boot time using the
  1614. kernel option `video=vfb:'.
  1615. To compile this driver as a module, choose M here: the
  1616. module will be called vfb. In order to load it, you must use
  1617. the vfb_enable=1 option.
  1618. If unsure, say N.
  1619. if VT
  1620. source "drivers/video/console/Kconfig"
  1621. endif
  1622. if FB || SGI_NEWPORT_CONSOLE
  1623. source "drivers/video/logo/Kconfig"
  1624. endif
  1625. endmenu