Kconfig 56 KB

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