Kconfig 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316
  1. #
  2. # Video configuration
  3. #
  4. menu "Graphics support"
  5. depends on HAS_IOMEM
  6. config HAVE_FB_ATMEL
  7. bool
  8. config HAVE_FB_IMX
  9. bool
  10. source "drivers/char/agp/Kconfig"
  11. source "drivers/gpu/vga/Kconfig"
  12. source "drivers/gpu/drm/Kconfig"
  13. source "drivers/gpu/stub/Kconfig"
  14. config VGASTATE
  15. tristate
  16. default n
  17. config VIDEO_OUTPUT_CONTROL
  18. tristate "Lowlevel video output switch controls"
  19. help
  20. This framework adds support for low-level control of the video
  21. output switch.
  22. menuconfig FB
  23. tristate "Support for frame buffer devices"
  24. ---help---
  25. The frame buffer device provides an abstraction for the graphics
  26. hardware. It represents the frame buffer of some video hardware and
  27. allows application software to access the graphics hardware through
  28. a well-defined interface, so the software doesn't need to know
  29. anything about the low-level (hardware register) stuff.
  30. Frame buffer devices work identically across the different
  31. architectures supported by Linux and make the implementation of
  32. application programs easier and more portable; at this point, an X
  33. server exists which uses the frame buffer device exclusively.
  34. On several non-X86 architectures, the frame buffer device is the
  35. only way to use the graphics hardware.
  36. The device is accessed through special device nodes, usually located
  37. in the /dev directory, i.e. /dev/fb*.
  38. You need an utility program called fbset to make full use of frame
  39. buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  40. and the Framebuffer-HOWTO at
  41. <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more
  42. information.
  43. Say Y here and to the driver for your graphics board below if you
  44. are compiling a kernel for a non-x86 architecture.
  45. If you are compiling for the x86 architecture, you can say Y if you
  46. want to play with it, but it is not essential. Please note that
  47. running graphical applications that directly touch the hardware
  48. (e.g. an accelerated X server) and that are not frame buffer
  49. device-aware may cause unexpected results. If unsure, say N.
  50. config FIRMWARE_EDID
  51. bool "Enable firmware EDID"
  52. depends on FB
  53. default n
  54. ---help---
  55. This enables access to the EDID transferred from the firmware.
  56. On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  57. transfers do not work for your driver and if you are using
  58. nvidiafb, i810fb or savagefb.
  59. In general, choosing Y for this option is safe. If you
  60. experience extremely long delays while booting before you get
  61. something on your display, try setting this to N. Matrox cards in
  62. combination with certain motherboards and monitors are known to
  63. suffer from this problem.
  64. config FB_DDC
  65. tristate
  66. depends on FB
  67. select I2C_ALGOBIT
  68. select I2C
  69. default n
  70. config FB_BOOT_VESA_SUPPORT
  71. bool
  72. depends on FB
  73. default n
  74. ---help---
  75. If true, at least one selected framebuffer driver can take advantage
  76. of VESA video modes set at an early boot stage via the vga= parameter.
  77. config FB_CFB_FILLRECT
  78. tristate
  79. depends on FB
  80. default n
  81. ---help---
  82. Include the cfb_fillrect function for generic software rectangle
  83. filling. This is used by drivers that don't provide their own
  84. (accelerated) version.
  85. config FB_CFB_COPYAREA
  86. tristate
  87. depends on FB
  88. default n
  89. ---help---
  90. Include the cfb_copyarea function for generic software area copying.
  91. This is used by drivers that don't provide their own (accelerated)
  92. version.
  93. config FB_CFB_IMAGEBLIT
  94. tristate
  95. depends on FB
  96. default n
  97. ---help---
  98. Include the cfb_imageblit function for generic software image
  99. blitting. This is used by drivers that don't provide their own
  100. (accelerated) version.
  101. config FB_CFB_REV_PIXELS_IN_BYTE
  102. bool
  103. depends on FB
  104. default n
  105. ---help---
  106. Allow generic frame-buffer functions to work on displays with 1, 2
  107. and 4 bits per pixel depths which has opposite order of pixels in
  108. byte order to bytes in long order.
  109. config FB_SYS_FILLRECT
  110. tristate
  111. depends on FB
  112. default n
  113. ---help---
  114. Include the sys_fillrect function for generic software rectangle
  115. filling. This is used by drivers that don't provide their own
  116. (accelerated) version and the framebuffer is in system RAM.
  117. config FB_SYS_COPYAREA
  118. tristate
  119. depends on FB
  120. default n
  121. ---help---
  122. Include the sys_copyarea function for generic software area copying.
  123. This is used by drivers that don't provide their own (accelerated)
  124. version and the framebuffer is in system RAM.
  125. config FB_SYS_IMAGEBLIT
  126. tristate
  127. depends on FB
  128. default n
  129. ---help---
  130. Include the sys_imageblit function for generic software image
  131. blitting. This is used by drivers that don't provide their own
  132. (accelerated) version and the framebuffer is in system RAM.
  133. menuconfig FB_FOREIGN_ENDIAN
  134. bool "Framebuffer foreign endianness support"
  135. depends on FB
  136. ---help---
  137. This menu will let you enable support for the framebuffers with
  138. non-native endianness (e.g. Little-Endian framebuffer on a
  139. Big-Endian machine). Most probably you don't have such hardware,
  140. so it's safe to say "n" here.
  141. choice
  142. prompt "Choice endianness support"
  143. depends on FB_FOREIGN_ENDIAN
  144. config FB_BOTH_ENDIAN
  145. bool "Support for Big- and Little-Endian framebuffers"
  146. config FB_BIG_ENDIAN
  147. bool "Support for Big-Endian framebuffers only"
  148. config FB_LITTLE_ENDIAN
  149. bool "Support for Little-Endian framebuffers only"
  150. endchoice
  151. config FB_SYS_FOPS
  152. tristate
  153. depends on FB
  154. default n
  155. config FB_WMT_GE_ROPS
  156. tristate
  157. depends on FB
  158. default n
  159. ---help---
  160. Include functions for accelerated rectangle filling and area
  161. copying using WonderMedia Graphics Engine operations.
  162. config FB_DEFERRED_IO
  163. bool
  164. depends on FB
  165. config FB_HECUBA
  166. tristate
  167. depends on FB
  168. depends on FB_DEFERRED_IO
  169. config FB_SVGALIB
  170. tristate
  171. depends on FB
  172. default n
  173. ---help---
  174. Common utility functions useful to fbdev drivers of VGA-based
  175. cards.
  176. config FB_MACMODES
  177. tristate
  178. depends on FB
  179. default n
  180. config FB_BACKLIGHT
  181. bool
  182. depends on FB
  183. select BACKLIGHT_LCD_SUPPORT
  184. select BACKLIGHT_CLASS_DEVICE
  185. default n
  186. config FB_MODE_HELPERS
  187. bool "Enable Video Mode Handling Helpers"
  188. depends on FB
  189. default n
  190. ---help---
  191. This enables functions for handling video modes using the
  192. Generalized Timing Formula and the EDID parser. A few drivers rely
  193. on this feature such as the radeonfb, rivafb, and the i810fb. If
  194. your driver does not take advantage of this feature, choosing Y will
  195. just increase the kernel size by about 5K.
  196. config FB_TILEBLITTING
  197. bool "Enable Tile Blitting Support"
  198. depends on FB
  199. default n
  200. ---help---
  201. This enables tile blitting. Tile blitting is a drawing technique
  202. where the screen is divided into rectangular sections (tiles), whereas
  203. the standard blitting divides the screen into pixels. Because the
  204. default drawing element is a tile, drawing functions will be passed
  205. parameters in terms of number of tiles instead of number of pixels.
  206. For example, to draw a single character, instead of using bitmaps,
  207. an index to an array of bitmaps will be used. To clear or move a
  208. rectangular section of a screen, the rectangle will be described in
  209. terms of number of tiles in the x- and y-axis.
  210. This is particularly important to one driver, matroxfb. If
  211. unsure, say N.
  212. comment "Frame buffer hardware drivers"
  213. depends on FB
  214. config FB_CIRRUS
  215. tristate "Cirrus Logic support"
  216. depends on FB && (ZORRO || PCI)
  217. select FB_CFB_FILLRECT
  218. select FB_CFB_COPYAREA
  219. select FB_CFB_IMAGEBLIT
  220. ---help---
  221. This enables support for Cirrus Logic GD542x/543x based boards on
  222. Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  223. If you have a PCI-based system, this enables support for these
  224. chips: GD-543x, GD-544x, GD-5480.
  225. Please read the file <file:Documentation/fb/cirrusfb.txt>.
  226. Say N unless you have such a graphics board or plan to get one
  227. before you next recompile the kernel.
  228. config FB_PM2
  229. tristate "Permedia2 support"
  230. depends on FB && ((AMIGA && BROKEN) || PCI)
  231. select FB_CFB_FILLRECT
  232. select FB_CFB_COPYAREA
  233. select FB_CFB_IMAGEBLIT
  234. help
  235. This is the frame buffer device driver for cards based on
  236. the 3D Labs Permedia, Permedia 2 and Permedia 2V chips.
  237. The driver was tested on the following cards:
  238. Diamond FireGL 1000 PRO AGP
  239. ELSA Gloria Synergy PCI
  240. Appian Jeronimo PRO (both heads) PCI
  241. 3DLabs Oxygen ACX aka EONtronics Picasso P2 PCI
  242. Techsource Raptor GFX-8P (aka Sun PGX-32) on SPARC
  243. ASK Graphic Blaster Exxtreme AGP
  244. To compile this driver as a module, choose M here: the
  245. module will be called pm2fb.
  246. config FB_PM2_FIFO_DISCONNECT
  247. bool "enable FIFO disconnect feature"
  248. depends on FB_PM2 && PCI
  249. help
  250. Support the Permedia2 FIFO disconnect feature.
  251. config FB_ARMCLCD
  252. tristate "ARM PrimeCell PL110 support"
  253. depends on FB && ARM && ARM_AMBA
  254. select FB_CFB_FILLRECT
  255. select FB_CFB_COPYAREA
  256. select FB_CFB_IMAGEBLIT
  257. help
  258. This framebuffer device driver is for the ARM PrimeCell PL110
  259. Colour LCD controller. ARM PrimeCells provide the building
  260. blocks for System on a Chip devices.
  261. If you want to compile this as a module (=code which can be
  262. inserted into and removed from the running kernel), say M
  263. here and read <file:Documentation/kbuild/modules.txt>. The module
  264. will be called amba-clcd.
  265. choice
  266. depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
  267. prompt "LCD Panel"
  268. default FB_ARMCLCD_SHARP_LQ035Q7DB02
  269. config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
  270. bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
  271. help
  272. This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
  273. color QVGA, HRTFT panel. The LogicPD device includes
  274. an integrated HRTFT controller IC.
  275. The native resolution is 240x320.
  276. config FB_ARMCLCD_SHARP_LQ057Q3DC02
  277. bool "LogicPD LCD 5.7\" QVGA"
  278. help
  279. This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
  280. color QVGA, TFT panel. The LogicPD device includes an
  281. The native resolution is 320x240.
  282. config FB_ARMCLCD_SHARP_LQ64D343
  283. bool "LogicPD LCD 6.4\" VGA"
  284. help
  285. This is an implementation of the Sharp LQ64D343, a 6.4"
  286. color VGA, TFT panel. The LogicPD device includes an
  287. The native resolution is 640x480.
  288. config FB_ARMCLCD_SHARP_LQ10D368
  289. bool "LogicPD LCD 10.4\" VGA"
  290. help
  291. This is an implementation of the Sharp LQ10D368, a 10.4"
  292. color VGA, TFT panel. The LogicPD device includes an
  293. The native resolution is 640x480.
  294. config FB_ARMCLCD_SHARP_LQ121S1DG41
  295. bool "LogicPD LCD 12.1\" SVGA"
  296. help
  297. This is an implementation of the Sharp LQ121S1DG41, a 12.1"
  298. color SVGA, TFT panel. The LogicPD device includes an
  299. The native resolution is 800x600.
  300. This panel requires a clock rate may be an integer fraction
  301. of the base LCDCLK frequency. The driver will select the
  302. highest frequency available that is lower than the maximum
  303. allowed. The panel may flicker if the clock rate is
  304. slower than the recommended minimum.
  305. config FB_ARMCLCD_AUO_A070VW01_WIDE
  306. bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
  307. help
  308. This is an implementation of the AU Optronics, a 7.0"
  309. WIDE Color. The native resolution is 234x480.
  310. config FB_ARMCLCD_HITACHI
  311. bool "Hitachi Wide Screen 800x480"
  312. help
  313. This is an implementation of the Hitachi 800x480.
  314. endchoice
  315. config FB_ACORN
  316. bool "Acorn VIDC support"
  317. depends on (FB = y) && ARM && ARCH_ACORN
  318. select FB_CFB_FILLRECT
  319. select FB_CFB_COPYAREA
  320. select FB_CFB_IMAGEBLIT
  321. help
  322. This is the frame buffer device driver for the Acorn VIDC graphics
  323. hardware found in Acorn RISC PCs and other ARM-based machines. If
  324. unsure, say N.
  325. config FB_CLPS711X
  326. bool "CLPS711X LCD support"
  327. depends on (FB = y) && ARM && ARCH_CLPS711X
  328. select FB_CFB_FILLRECT
  329. select FB_CFB_COPYAREA
  330. select FB_CFB_IMAGEBLIT
  331. help
  332. Say Y to enable the Framebuffer driver for the CLPS7111 and
  333. EP7212 processors.
  334. config FB_SA1100
  335. bool "SA-1100 LCD support"
  336. depends on (FB = y) && ARM && ARCH_SA1100
  337. select FB_CFB_FILLRECT
  338. select FB_CFB_COPYAREA
  339. select FB_CFB_IMAGEBLIT
  340. help
  341. This is a framebuffer device for the SA-1100 LCD Controller.
  342. See <http://www.linux-fbdev.org/> for information on framebuffer
  343. devices.
  344. If you plan to use the LCD display with your SA-1100 system, say
  345. Y here.
  346. config FB_IMX
  347. tristate "Motorola i.MX LCD support"
  348. depends on FB && (HAVE_FB_IMX || ARCH_MX1 || ARCH_MX2)
  349. select FB_CFB_FILLRECT
  350. select FB_CFB_COPYAREA
  351. select FB_CFB_IMAGEBLIT
  352. config FB_CYBER2000
  353. tristate "CyberPro 2000/2010/5000 support"
  354. depends on FB && PCI && (BROKEN || !SPARC64)
  355. select FB_CFB_FILLRECT
  356. select FB_CFB_COPYAREA
  357. select FB_CFB_IMAGEBLIT
  358. help
  359. This enables support for the Integraphics CyberPro 20x0 and 5000
  360. VGA chips used in the Rebel.com Netwinder and other machines.
  361. Say Y if you have a NetWinder or a graphics card containing this
  362. device, otherwise say N.
  363. config FB_APOLLO
  364. bool
  365. depends on (FB = y) && APOLLO
  366. default y
  367. select FB_CFB_FILLRECT
  368. select FB_CFB_IMAGEBLIT
  369. config FB_Q40
  370. bool
  371. depends on (FB = y) && Q40
  372. default y
  373. select FB_CFB_FILLRECT
  374. select FB_CFB_COPYAREA
  375. select FB_CFB_IMAGEBLIT
  376. config FB_AMIGA
  377. tristate "Amiga native chipset support"
  378. depends on FB && AMIGA
  379. help
  380. This is the frame buffer device driver for the builtin graphics
  381. chipset found in Amigas.
  382. To compile this driver as a module, choose M here: the
  383. module will be called amifb.
  384. config FB_AMIGA_OCS
  385. bool "Amiga OCS chipset support"
  386. depends on FB_AMIGA
  387. help
  388. This enables support for the original Agnus and Denise video chips,
  389. found in the Amiga 1000 and most A500's and A2000's. If you intend
  390. to run Linux on any of these systems, say Y; otherwise say N.
  391. config FB_AMIGA_ECS
  392. bool "Amiga ECS chipset support"
  393. depends on FB_AMIGA
  394. help
  395. This enables support for the Enhanced Chip Set, found in later
  396. A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  397. you intend to run Linux on any of these systems, say Y; otherwise
  398. say N.
  399. config FB_AMIGA_AGA
  400. bool "Amiga AGA chipset support"
  401. depends on FB_AMIGA
  402. help
  403. This enables support for the Advanced Graphics Architecture (also
  404. known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  405. and CD32. If you intend to run Linux on any of these systems, say Y;
  406. otherwise say N.
  407. config FB_FM2
  408. bool "Amiga FrameMaster II/Rainbow II support"
  409. depends on (FB = y) && ZORRO
  410. select FB_CFB_FILLRECT
  411. select FB_CFB_COPYAREA
  412. select FB_CFB_IMAGEBLIT
  413. help
  414. This is the frame buffer device driver for the Amiga FrameMaster
  415. card from BSC (exhibited 1992 but not shipped as a CBM product).
  416. config FB_ARC
  417. tristate "Arc Monochrome LCD board support"
  418. depends on FB && X86
  419. select FB_SYS_FILLRECT
  420. select FB_SYS_COPYAREA
  421. select FB_SYS_IMAGEBLIT
  422. select FB_SYS_FOPS
  423. help
  424. This enables support for the Arc Monochrome LCD board. The board
  425. is based on the KS-108 lcd controller and is typically a matrix
  426. of 2*n chips. This driver was tested with a 128x64 panel. This
  427. driver supports it for use with x86 SBCs through a 16 bit GPIO
  428. interface (8 bit data, 8 bit control). If you anticipate using
  429. this driver, say Y or M; otherwise say N. You must specify the
  430. GPIO IO address to be used for setting control and data.
  431. config FB_ATARI
  432. bool "Atari native chipset support"
  433. depends on (FB = y) && ATARI
  434. select FB_CFB_FILLRECT
  435. select FB_CFB_COPYAREA
  436. select FB_CFB_IMAGEBLIT
  437. help
  438. This is the frame buffer device driver for the builtin graphics
  439. chipset found in Ataris.
  440. config FB_OF
  441. bool "Open Firmware frame buffer device support"
  442. depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
  443. select FB_CFB_FILLRECT
  444. select FB_CFB_COPYAREA
  445. select FB_CFB_IMAGEBLIT
  446. select FB_MACMODES
  447. help
  448. Say Y if you want support with Open Firmware for your graphics
  449. board.
  450. config FB_CONTROL
  451. bool "Apple \"control\" display support"
  452. depends on (FB = y) && PPC_PMAC && PPC32
  453. select FB_CFB_FILLRECT
  454. select FB_CFB_COPYAREA
  455. select FB_CFB_IMAGEBLIT
  456. select FB_MACMODES
  457. help
  458. This driver supports a frame buffer for the graphics adapter in the
  459. Power Macintosh 7300 and others.
  460. config FB_PLATINUM
  461. bool "Apple \"platinum\" display support"
  462. depends on (FB = y) && PPC_PMAC && PPC32
  463. select FB_CFB_FILLRECT
  464. select FB_CFB_COPYAREA
  465. select FB_CFB_IMAGEBLIT
  466. select FB_MACMODES
  467. help
  468. This driver supports a frame buffer for the "platinum" graphics
  469. adapter in some Power Macintoshes.
  470. config FB_VALKYRIE
  471. bool "Apple \"valkyrie\" display support"
  472. depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
  473. select FB_CFB_FILLRECT
  474. select FB_CFB_COPYAREA
  475. select FB_CFB_IMAGEBLIT
  476. select FB_MACMODES
  477. help
  478. This driver supports a frame buffer for the "valkyrie" graphics
  479. adapter in some Power Macintoshes.
  480. config FB_CT65550
  481. bool "Chips 65550 display support"
  482. depends on (FB = y) && PPC32 && PCI
  483. select FB_CFB_FILLRECT
  484. select FB_CFB_COPYAREA
  485. select FB_CFB_IMAGEBLIT
  486. help
  487. This is the frame buffer device driver for the Chips & Technologies
  488. 65550 graphics chip in PowerBooks.
  489. config FB_ASILIANT
  490. bool "Asiliant (Chips) 69000 display support"
  491. depends on (FB = y) && PCI
  492. select FB_CFB_FILLRECT
  493. select FB_CFB_COPYAREA
  494. select FB_CFB_IMAGEBLIT
  495. help
  496. This is the frame buffer device driver for the Asiliant 69030 chipset
  497. config FB_IMSTT
  498. bool "IMS Twin Turbo display support"
  499. depends on (FB = y) && PCI
  500. select FB_CFB_IMAGEBLIT
  501. select FB_MACMODES if PPC
  502. help
  503. The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  504. many Macintosh and compatible computers.
  505. config FB_VGA16
  506. tristate "VGA 16-color graphics support"
  507. depends on FB && (X86 || PPC)
  508. select FB_CFB_FILLRECT
  509. select FB_CFB_COPYAREA
  510. select FB_CFB_IMAGEBLIT
  511. select VGASTATE
  512. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  513. help
  514. This is the frame buffer device driver for VGA 16 color graphic
  515. cards. Say Y if you have such a card.
  516. To compile this driver as a module, choose M here: the
  517. module will be called vga16fb.
  518. config FB_BF54X_LQ043
  519. tristate "SHARP LQ043 TFT LCD (BF548 EZKIT)"
  520. depends on FB && (BF54x) && !BF542
  521. select FB_CFB_FILLRECT
  522. select FB_CFB_COPYAREA
  523. select FB_CFB_IMAGEBLIT
  524. help
  525. This is the framebuffer device driver for a SHARP LQ043T1DG01 TFT LCD
  526. config FB_BFIN_T350MCQB
  527. tristate "Varitronix COG-T350MCQB TFT LCD display (BF527 EZKIT)"
  528. depends on FB && BLACKFIN
  529. select BFIN_GPTIMERS
  530. select FB_CFB_FILLRECT
  531. select FB_CFB_COPYAREA
  532. select FB_CFB_IMAGEBLIT
  533. help
  534. This is the framebuffer device driver for a Varitronix VL-PS-COG-T350MCQB-01 display TFT LCD
  535. This display is a QVGA 320x240 24-bit RGB display interfaced by an 8-bit wide PPI
  536. It uses PPI[0..7] PPI_FS1, PPI_FS2 and PPI_CLK.
  537. config FB_BFIN_LQ035Q1
  538. tristate "SHARP LQ035Q1DH02 TFT LCD"
  539. depends on FB && BLACKFIN && SPI
  540. select FB_CFB_FILLRECT
  541. select FB_CFB_COPYAREA
  542. select FB_CFB_IMAGEBLIT
  543. select BFIN_GPTIMERS
  544. help
  545. This is the framebuffer device driver for a SHARP LQ035Q1DH02 TFT display found on
  546. the Blackfin Landscape LCD EZ-Extender Card.
  547. This display is a QVGA 320x240 18-bit RGB display interfaced by an 16-bit wide PPI
  548. It uses PPI[0..15] PPI_FS1, PPI_FS2 and PPI_CLK.
  549. To compile this driver as a module, choose M here: the
  550. module will be called bfin-lq035q1-fb.
  551. config FB_BF537_LQ035
  552. tristate "SHARP LQ035 TFT LCD (BF537 STAMP)"
  553. depends on FB && (BF534 || BF536 || BF537) && I2C_BLACKFIN_TWI
  554. select FB_CFB_FILLRECT
  555. select FB_CFB_COPYAREA
  556. select FB_CFB_IMAGEBLIT
  557. select BFIN_GPTIMERS
  558. help
  559. This is the framebuffer device for a SHARP LQ035Q7DB03 TFT LCD
  560. attached to a BF537.
  561. To compile this driver as a module, choose M here: the
  562. module will be called bf537-lq035.
  563. config FB_STI
  564. tristate "HP STI frame buffer device support"
  565. depends on FB && PARISC
  566. select FB_CFB_FILLRECT
  567. select FB_CFB_COPYAREA
  568. select FB_CFB_IMAGEBLIT
  569. select STI_CONSOLE
  570. select VT
  571. default y
  572. ---help---
  573. STI refers to the HP "Standard Text Interface" which is a set of
  574. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  575. Enabling this option will implement the linux framebuffer device
  576. using calls to the STI BIOS routines for initialisation.
  577. If you enable this option, you will get a planar framebuffer device
  578. /dev/fb which will work on the most common HP graphic cards of the
  579. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  580. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  581. It is safe to enable this option, so you should probably say "Y".
  582. config FB_MAC
  583. bool "Generic Macintosh display support"
  584. depends on (FB = y) && MAC
  585. select FB_CFB_FILLRECT
  586. select FB_CFB_COPYAREA
  587. select FB_CFB_IMAGEBLIT
  588. select FB_MACMODES
  589. config FB_HP300
  590. bool
  591. depends on (FB = y) && DIO
  592. select FB_CFB_IMAGEBLIT
  593. default y
  594. config FB_TGA
  595. tristate "TGA/SFB+ framebuffer support"
  596. depends on FB && (ALPHA || TC)
  597. select FB_CFB_FILLRECT
  598. select FB_CFB_COPYAREA
  599. select FB_CFB_IMAGEBLIT
  600. select BITREVERSE
  601. ---help---
  602. This is the frame buffer device driver for generic TGA and SFB+
  603. graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  604. also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  605. TURBOchannel cards, also known as PMAGD-A, -B and -C.
  606. Due to hardware limitations ZLX-E2 and E3 cards are not supported
  607. for DECstation 5000/200 systems. Additionally due to firmware
  608. limitations these cards may cause troubles with booting DECstation
  609. 5000/240 and /260 systems, but are fully supported under Linux if
  610. you manage to get it going. ;-)
  611. Say Y if you have one of those.
  612. config FB_UVESA
  613. tristate "Userspace VESA VGA graphics support"
  614. depends on FB && CONNECTOR
  615. select FB_CFB_FILLRECT
  616. select FB_CFB_COPYAREA
  617. select FB_CFB_IMAGEBLIT
  618. select FB_MODE_HELPERS
  619. help
  620. This is the frame buffer driver for generic VBE 2.0 compliant
  621. graphic cards. It can also take advantage of VBE 3.0 features,
  622. such as refresh rate adjustment.
  623. This driver generally provides more features than vesafb but
  624. requires a userspace helper application called 'v86d'. See
  625. <file:Documentation/fb/uvesafb.txt> for more information.
  626. If unsure, say N.
  627. config FB_VESA
  628. bool "VESA VGA graphics support"
  629. depends on (FB = y) && X86
  630. select FB_CFB_FILLRECT
  631. select FB_CFB_COPYAREA
  632. select FB_CFB_IMAGEBLIT
  633. select FB_BOOT_VESA_SUPPORT
  634. help
  635. This is the frame buffer device driver for generic VESA 2.0
  636. compliant graphic cards. The older VESA 1.2 cards are not supported.
  637. You will get a boot time penguin logo at no additional cost. Please
  638. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  639. config FB_EFI
  640. bool "EFI-based Framebuffer Support"
  641. depends on (FB = y) && X86 && EFI
  642. select FB_CFB_FILLRECT
  643. select FB_CFB_COPYAREA
  644. select FB_CFB_IMAGEBLIT
  645. help
  646. This is the EFI frame buffer device driver. If the firmware on
  647. your platform is EFI 1.10 or UEFI 2.0, select Y to add support for
  648. using the EFI framebuffer as your console.
  649. config FB_N411
  650. tristate "N411 Apollo/Hecuba devkit support"
  651. depends on FB && X86 && MMU
  652. select FB_SYS_FILLRECT
  653. select FB_SYS_COPYAREA
  654. select FB_SYS_IMAGEBLIT
  655. select FB_SYS_FOPS
  656. select FB_DEFERRED_IO
  657. select FB_HECUBA
  658. help
  659. This enables support for the Apollo display controller in its
  660. Hecuba form using the n411 devkit.
  661. config FB_HGA
  662. tristate "Hercules mono graphics support"
  663. depends on FB && X86
  664. select FB_CFB_FILLRECT
  665. select FB_CFB_COPYAREA
  666. select FB_CFB_IMAGEBLIT
  667. help
  668. Say Y here if you have a Hercules mono graphics card.
  669. To compile this driver as a module, choose M here: the
  670. module will be called hgafb.
  671. As this card technology is 15 years old, most people will answer N
  672. here.
  673. config FB_HGA_ACCEL
  674. bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  675. depends on FB_HGA && EXPERIMENTAL
  676. ---help---
  677. This will compile the Hercules mono graphics with
  678. acceleration functions.
  679. config FB_SGIVW
  680. tristate "SGI Visual Workstation framebuffer support"
  681. depends on FB && X86_VISWS
  682. select FB_CFB_FILLRECT
  683. select FB_CFB_COPYAREA
  684. select FB_CFB_IMAGEBLIT
  685. help
  686. SGI Visual Workstation support for framebuffer graphics.
  687. config FB_GBE
  688. bool "SGI Graphics Backend frame buffer support"
  689. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  690. select FB_CFB_FILLRECT
  691. select FB_CFB_COPYAREA
  692. select FB_CFB_IMAGEBLIT
  693. help
  694. This is the frame buffer device driver for SGI Graphics Backend.
  695. This chip is used in SGI O2 and Visual Workstation 320/540.
  696. config FB_GBE_MEM
  697. int "Video memory size in MB"
  698. depends on FB_GBE
  699. default 4
  700. help
  701. This is the amount of memory reserved for the framebuffer,
  702. which can be any value between 1MB and 8MB.
  703. config FB_SBUS
  704. bool "SBUS and UPA framebuffers"
  705. depends on (FB = y) && SPARC
  706. help
  707. Say Y if you want support for SBUS or UPA based frame buffer device.
  708. config FB_BW2
  709. bool "BWtwo support"
  710. depends on (FB = y) && (SPARC && FB_SBUS)
  711. select FB_CFB_FILLRECT
  712. select FB_CFB_COPYAREA
  713. select FB_CFB_IMAGEBLIT
  714. help
  715. This is the frame buffer device driver for the BWtwo frame buffer.
  716. config FB_CG3
  717. bool "CGthree support"
  718. depends on (FB = y) && (SPARC && FB_SBUS)
  719. select FB_CFB_FILLRECT
  720. select FB_CFB_COPYAREA
  721. select FB_CFB_IMAGEBLIT
  722. help
  723. This is the frame buffer device driver for the CGthree frame buffer.
  724. config FB_CG6
  725. bool "CGsix (GX,TurboGX) support"
  726. depends on (FB = y) && (SPARC && FB_SBUS)
  727. select FB_CFB_COPYAREA
  728. select FB_CFB_IMAGEBLIT
  729. help
  730. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  731. frame buffer.
  732. config FB_FFB
  733. bool "Creator/Creator3D/Elite3D support"
  734. depends on FB_SBUS && SPARC64
  735. select FB_CFB_COPYAREA
  736. select FB_CFB_IMAGEBLIT
  737. help
  738. This is the frame buffer device driver for the Creator, Creator3D,
  739. and Elite3D graphics boards.
  740. config FB_TCX
  741. bool "TCX (SS4/SS5 only) support"
  742. depends on FB_SBUS
  743. select FB_CFB_FILLRECT
  744. select FB_CFB_COPYAREA
  745. select FB_CFB_IMAGEBLIT
  746. help
  747. This is the frame buffer device driver for the TCX 24/8bit frame
  748. buffer.
  749. config FB_CG14
  750. bool "CGfourteen (SX) support"
  751. depends on FB_SBUS
  752. select FB_CFB_FILLRECT
  753. select FB_CFB_COPYAREA
  754. select FB_CFB_IMAGEBLIT
  755. help
  756. This is the frame buffer device driver for the CGfourteen frame
  757. buffer on Desktop SPARCsystems with the SX graphics option.
  758. config FB_P9100
  759. bool "P9100 (Sparcbook 3 only) support"
  760. depends on FB_SBUS
  761. select FB_CFB_FILLRECT
  762. select FB_CFB_COPYAREA
  763. select FB_CFB_IMAGEBLIT
  764. help
  765. This is the frame buffer device driver for the P9100 card
  766. supported on Sparcbook 3 machines.
  767. config FB_LEO
  768. bool "Leo (ZX) support"
  769. depends on FB_SBUS
  770. select FB_CFB_FILLRECT
  771. select FB_CFB_COPYAREA
  772. select FB_CFB_IMAGEBLIT
  773. help
  774. This is the frame buffer device driver for the SBUS-based Sun ZX
  775. (leo) frame buffer cards.
  776. config FB_IGA
  777. bool "IGA 168x display support"
  778. depends on (FB = y) && SPARC32
  779. select FB_CFB_FILLRECT
  780. select FB_CFB_COPYAREA
  781. select FB_CFB_IMAGEBLIT
  782. help
  783. This is the framebuffer device for the INTERGRAPHICS 1680 and
  784. successor frame buffer cards.
  785. config FB_XVR500
  786. bool "Sun XVR-500 3DLABS Wildcat support"
  787. depends on (FB = y) && PCI && SPARC64
  788. select FB_CFB_FILLRECT
  789. select FB_CFB_COPYAREA
  790. select FB_CFB_IMAGEBLIT
  791. help
  792. This is the framebuffer device for the Sun XVR-500 and similar
  793. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  794. only works on sparc64 systems where the system firmware has
  795. mostly initialized the card already. It is treated as a
  796. completely dumb framebuffer device.
  797. config FB_XVR2500
  798. bool "Sun XVR-2500 3DLABS Wildcat support"
  799. depends on (FB = y) && PCI && SPARC64
  800. select FB_CFB_FILLRECT
  801. select FB_CFB_COPYAREA
  802. select FB_CFB_IMAGEBLIT
  803. help
  804. This is the framebuffer device for the Sun XVR-2500 and similar
  805. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  806. only works on sparc64 systems where the system firmware has
  807. mostly initialized the card already. It is treated as a
  808. completely dumb framebuffer device.
  809. config FB_XVR1000
  810. bool "Sun XVR-1000 support"
  811. depends on (FB = y) && SPARC64
  812. select FB_CFB_FILLRECT
  813. select FB_CFB_COPYAREA
  814. select FB_CFB_IMAGEBLIT
  815. help
  816. This is the framebuffer device for the Sun XVR-1000 and similar
  817. graphics cards. The driver only works on sparc64 systems where
  818. the system firmware has mostly initialized the card already. It
  819. is treated as a completely dumb framebuffer device.
  820. config FB_PVR2
  821. tristate "NEC PowerVR 2 display support"
  822. depends on FB && SH_DREAMCAST
  823. select FB_CFB_FILLRECT
  824. select FB_CFB_COPYAREA
  825. select FB_CFB_IMAGEBLIT
  826. ---help---
  827. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  828. run linux on your Dreamcast, you will have to say Y here.
  829. This driver may or may not work on other PowerVR 2 cards, but is
  830. totally untested. Use at your own risk. If unsure, say N.
  831. To compile this driver as a module, choose M here: the
  832. module will be called pvr2fb.
  833. You can pass several parameters to the driver at boot time or at
  834. module load time. The parameters look like "video=pvr2:XXX", where
  835. the meaning of XXX can be found at the end of the main source file
  836. (<file:drivers/video/pvr2fb.c>). Please see the file
  837. <file:Documentation/fb/pvr2fb.txt>.
  838. config FB_EPSON1355
  839. bool "Epson 1355 framebuffer support"
  840. depends on (FB = y) && ARCH_CEIVA
  841. select FB_CFB_FILLRECT
  842. select FB_CFB_COPYAREA
  843. select FB_CFB_IMAGEBLIT
  844. help
  845. Build in support for the SED1355 Epson Research Embedded RAMDAC
  846. LCD/CRT Controller (since redesignated as the S1D13505) as a
  847. framebuffer. Product specs at
  848. <http://vdc.epson.com/>.
  849. config FB_S1D13XXX
  850. tristate "Epson S1D13XXX framebuffer support"
  851. depends on FB
  852. select FB_CFB_FILLRECT
  853. select FB_CFB_COPYAREA
  854. select FB_CFB_IMAGEBLIT
  855. help
  856. Support for S1D13XXX framebuffer device family (currently only
  857. working with S1D13806). Product specs at
  858. <http://vdc.epson.com/>
  859. config FB_ATMEL
  860. tristate "AT91/AT32 LCD Controller support"
  861. depends on FB && HAVE_FB_ATMEL
  862. select FB_CFB_FILLRECT
  863. select FB_CFB_COPYAREA
  864. select FB_CFB_IMAGEBLIT
  865. help
  866. This enables support for the AT91/AT32 LCD Controller.
  867. config FB_INTSRAM
  868. bool "Frame Buffer in internal SRAM"
  869. depends on FB_ATMEL && ARCH_AT91SAM9261
  870. help
  871. Say Y if you want to map Frame Buffer in internal SRAM. Say N if you want
  872. to let frame buffer in external SDRAM.
  873. config FB_ATMEL_STN
  874. bool "Use a STN display with AT91/AT32 LCD Controller"
  875. depends on FB_ATMEL && (MACH_AT91SAM9261EK || MACH_AT91SAM9G10EK)
  876. default n
  877. help
  878. Say Y if you want to connect a STN LCD display to the AT91/AT32 LCD
  879. Controller. Say N if you want to connect a TFT.
  880. If unsure, say N.
  881. config FB_NVIDIA
  882. tristate "nVidia Framebuffer Support"
  883. depends on FB && PCI
  884. select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  885. select FB_MODE_HELPERS
  886. select FB_CFB_FILLRECT
  887. select FB_CFB_COPYAREA
  888. select FB_CFB_IMAGEBLIT
  889. select BITREVERSE
  890. select VGASTATE
  891. help
  892. This driver supports graphics boards with the nVidia chips, TNT
  893. and newer. For very old chipsets, such as the RIVA128, then use
  894. the rivafb.
  895. Say Y if you have such a graphics board.
  896. To compile this driver as a module, choose M here: the
  897. module will be called nvidiafb.
  898. config FB_NVIDIA_I2C
  899. bool "Enable DDC Support"
  900. depends on FB_NVIDIA
  901. select FB_DDC
  902. help
  903. This enables I2C support for nVidia Chipsets. This is used
  904. only for getting EDID information from the attached display
  905. allowing for robust video mode handling and switching.
  906. Because fbdev-2.6 requires that drivers must be able to
  907. independently validate video mode parameters, you should say Y
  908. here.
  909. config FB_NVIDIA_DEBUG
  910. bool "Lots of debug output"
  911. depends on FB_NVIDIA
  912. default n
  913. help
  914. Say Y here if you want the nVidia driver to output all sorts
  915. of debugging information to provide to the maintainer when
  916. something goes wrong.
  917. config FB_NVIDIA_BACKLIGHT
  918. bool "Support for backlight control"
  919. depends on FB_NVIDIA
  920. default y
  921. help
  922. Say Y here if you want to control the backlight of your display.
  923. config FB_RIVA
  924. tristate "nVidia Riva support"
  925. depends on FB && PCI
  926. select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  927. select FB_MODE_HELPERS
  928. select FB_CFB_FILLRECT
  929. select FB_CFB_COPYAREA
  930. select FB_CFB_IMAGEBLIT
  931. select BITREVERSE
  932. select VGASTATE
  933. help
  934. This driver supports graphics boards with the nVidia Riva/Geforce
  935. chips.
  936. Say Y if you have such a graphics board.
  937. To compile this driver as a module, choose M here: the
  938. module will be called rivafb.
  939. config FB_RIVA_I2C
  940. bool "Enable DDC Support"
  941. depends on FB_RIVA
  942. select FB_DDC
  943. help
  944. This enables I2C support for nVidia Chipsets. This is used
  945. only for getting EDID information from the attached display
  946. allowing for robust video mode handling and switching.
  947. Because fbdev-2.6 requires that drivers must be able to
  948. independently validate video mode parameters, you should say Y
  949. here.
  950. config FB_RIVA_DEBUG
  951. bool "Lots of debug output"
  952. depends on FB_RIVA
  953. default n
  954. help
  955. Say Y here if you want the Riva driver to output all sorts
  956. of debugging information to provide to the maintainer when
  957. something goes wrong.
  958. config FB_RIVA_BACKLIGHT
  959. bool "Support for backlight control"
  960. depends on FB_RIVA
  961. default y
  962. help
  963. Say Y here if you want to control the backlight of your display.
  964. config FB_I810
  965. tristate "Intel 810/815 support (EXPERIMENTAL)"
  966. depends on EXPERIMENTAL && FB && PCI && X86_32 && AGP_INTEL
  967. select FB_MODE_HELPERS
  968. select FB_CFB_FILLRECT
  969. select FB_CFB_COPYAREA
  970. select FB_CFB_IMAGEBLIT
  971. select VGASTATE
  972. help
  973. This driver supports the on-board graphics built in to the Intel 810
  974. and 815 chipsets. Say Y if you have and plan to use such a board.
  975. To compile this driver as a module, choose M here: the
  976. module will be called i810fb.
  977. For more information, please read
  978. <file:Documentation/fb/intel810.txt>
  979. config FB_I810_GTF
  980. bool "use VESA Generalized Timing Formula"
  981. depends on FB_I810
  982. help
  983. If you say Y, then the VESA standard, Generalized Timing Formula
  984. or GTF, will be used to calculate the required video timing values
  985. per video mode. Since the GTF allows nondiscrete timings
  986. (nondiscrete being a range of values as opposed to discrete being a
  987. set of values), you'll be able to use any combination of horizontal
  988. and vertical resolutions, and vertical refresh rates without having
  989. to specify your own timing parameters. This is especially useful
  990. to maximize the performance of an aging display, or if you just
  991. have a display with nonstandard dimensions. A VESA compliant
  992. monitor is recommended, but can still work with non-compliant ones.
  993. If you need or want this, then select this option. The timings may
  994. not be compliant with Intel's recommended values. Use at your own
  995. risk.
  996. If you say N, the driver will revert to discrete video timings
  997. using a set recommended by Intel in their documentation.
  998. If unsure, say N.
  999. config FB_I810_I2C
  1000. bool "Enable DDC Support"
  1001. depends on FB_I810 && FB_I810_GTF
  1002. select FB_DDC
  1003. help
  1004. config FB_LE80578
  1005. tristate "Intel LE80578 (Vermilion) support"
  1006. depends on FB && PCI && X86
  1007. select FB_MODE_HELPERS
  1008. select FB_CFB_FILLRECT
  1009. select FB_CFB_COPYAREA
  1010. select FB_CFB_IMAGEBLIT
  1011. help
  1012. This driver supports the LE80578 (Vermilion Range) chipset
  1013. config FB_CARILLO_RANCH
  1014. tristate "Intel Carillo Ranch support"
  1015. depends on FB_LE80578 && FB && PCI && X86
  1016. help
  1017. This driver supports the LE80578 (Carillo Ranch) board
  1018. config FB_INTEL
  1019. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G/945GM/965G/965GM support (EXPERIMENTAL)"
  1020. depends on EXPERIMENTAL && FB && PCI && X86 && AGP_INTEL && EMBEDDED
  1021. select FB_MODE_HELPERS
  1022. select FB_CFB_FILLRECT
  1023. select FB_CFB_COPYAREA
  1024. select FB_CFB_IMAGEBLIT
  1025. select FB_BOOT_VESA_SUPPORT if FB_INTEL = y
  1026. depends on !DRM_I915
  1027. help
  1028. This driver supports the on-board graphics built in to the Intel
  1029. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM/965G/965GM chipsets.
  1030. Say Y if you have and plan to use such a board.
  1031. To make FB_INTELFB=Y work you need to say AGP_INTEL=y too.
  1032. To compile this driver as a module, choose M here: the
  1033. module will be called intelfb.
  1034. For more information, please read <file:Documentation/fb/intelfb.txt>
  1035. config FB_INTEL_DEBUG
  1036. bool "Intel driver Debug Messages"
  1037. depends on FB_INTEL
  1038. ---help---
  1039. Say Y here if you want the Intel driver to output all sorts
  1040. of debugging information to provide to the maintainer when
  1041. something goes wrong.
  1042. config FB_INTEL_I2C
  1043. bool "DDC/I2C for Intel framebuffer support"
  1044. depends on FB_INTEL
  1045. select FB_DDC
  1046. default y
  1047. help
  1048. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  1049. config FB_MATROX
  1050. tristate "Matrox acceleration"
  1051. depends on FB && PCI
  1052. select FB_CFB_FILLRECT
  1053. select FB_CFB_COPYAREA
  1054. select FB_CFB_IMAGEBLIT
  1055. select FB_TILEBLITTING
  1056. select FB_MACMODES if PPC_PMAC
  1057. ---help---
  1058. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  1059. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  1060. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  1061. Matrox G400, G450 or G550 card in your box.
  1062. To compile this driver as a module, choose M here: the
  1063. module will be called matroxfb.
  1064. You can pass several parameters to the driver at boot time or at
  1065. module load time. The parameters look like "video=matrox:XXX", and
  1066. are described in <file:Documentation/fb/matroxfb.txt>.
  1067. config FB_MATROX_MILLENIUM
  1068. bool "Millennium I/II support"
  1069. depends on FB_MATROX
  1070. help
  1071. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  1072. video card. If you select "Advanced lowlevel driver options" below,
  1073. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  1074. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  1075. also use font widths different from 8.
  1076. config FB_MATROX_MYSTIQUE
  1077. bool "Mystique support"
  1078. depends on FB_MATROX
  1079. help
  1080. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  1081. video card. If you select "Advanced lowlevel driver options" below,
  1082. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  1083. packed pixel and 32 bpp packed pixel. You can also use font widths
  1084. different from 8.
  1085. config FB_MATROX_G
  1086. bool "G100/G200/G400/G450/G550 support"
  1087. depends on FB_MATROX
  1088. ---help---
  1089. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  1090. video card. If you select "Advanced lowlevel driver options", you
  1091. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  1092. pixel and 32 bpp packed pixel. You can also use font widths
  1093. different from 8.
  1094. If you need support for G400 secondary head, you must say Y to
  1095. "Matrox I2C support" and "G400 second head support" right below.
  1096. G450/G550 secondary head and digital output are supported without
  1097. additional modules.
  1098. The driver starts in monitor mode. You must use the matroxset tool
  1099. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  1100. swap primary and secondary head outputs, or to change output mode.
  1101. Secondary head driver always start in 640x480 resolution and you
  1102. must use fbset to change it.
  1103. Do not forget that second head supports only 16 and 32 bpp
  1104. packed pixels, so it is a good idea to compile them into the kernel
  1105. too. You can use only some font widths, as the driver uses generic
  1106. painting procedures (the secondary head does not use acceleration
  1107. engine).
  1108. G450/G550 hardware can display TV picture only from secondary CRTC,
  1109. and it performs no scaling, so picture must have 525 or 625 lines.
  1110. config FB_MATROX_I2C
  1111. tristate "Matrox I2C support"
  1112. depends on FB_MATROX
  1113. select FB_DDC
  1114. ---help---
  1115. This drivers creates I2C buses which are needed for accessing the
  1116. DDC (I2C) bus present on all Matroxes, an I2C bus which
  1117. interconnects Matrox optional devices, like MGA-TVO on G200 and
  1118. G400, and the secondary head DDC bus, present on G400 only.
  1119. You can say Y or M here if you want to experiment with monitor
  1120. detection code. You must say Y or M here if you want to use either
  1121. second head of G400 or MGA-TVO on G200 or G400.
  1122. If you compile it as module, it will create a module named
  1123. i2c-matroxfb.
  1124. config FB_MATROX_MAVEN
  1125. tristate "G400 second head support"
  1126. depends on FB_MATROX_G && FB_MATROX_I2C
  1127. ---help---
  1128. WARNING !!! This support does not work with G450 !!!
  1129. Say Y or M here if you want to use a secondary head (meaning two
  1130. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  1131. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  1132. secondary head output is blanked while you are in X. With XFree
  1133. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  1134. the fbdev driver on first head and the fbdev driver on second head.
  1135. If you compile it as module, two modules are created,
  1136. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  1137. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  1138. also load i2c-matroxfb to get it to run.
  1139. The driver starts in monitor mode and you must use the matroxset
  1140. tool (available at
  1141. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  1142. PAL or NTSC or to swap primary and secondary head outputs.
  1143. Secondary head driver also always start in 640x480 resolution, you
  1144. must use fbset to change it.
  1145. Also do not forget that second head supports only 16 and 32 bpp
  1146. packed pixels, so it is a good idea to compile them into the kernel
  1147. too. You can use only some font widths, as the driver uses generic
  1148. painting procedures (the secondary head does not use acceleration
  1149. engine).
  1150. config FB_RADEON
  1151. tristate "ATI Radeon display support"
  1152. depends on FB && PCI
  1153. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  1154. select FB_MODE_HELPERS
  1155. select FB_CFB_FILLRECT
  1156. select FB_CFB_COPYAREA
  1157. select FB_CFB_IMAGEBLIT
  1158. select FB_MACMODES if PPC_OF
  1159. help
  1160. Choose this option if you want to use an ATI Radeon graphics card as
  1161. a framebuffer device. There are both PCI and AGP versions. You
  1162. don't need to choose this to run the Radeon in plain VGA mode.
  1163. There is a product page at
  1164. http://products.amd.com/en-us/GraphicCardResult.aspx
  1165. config FB_RADEON_I2C
  1166. bool "DDC/I2C for ATI Radeon support"
  1167. depends on FB_RADEON
  1168. select FB_DDC
  1169. default y
  1170. help
  1171. Say Y here if you want DDC/I2C support for your Radeon board.
  1172. config FB_RADEON_BACKLIGHT
  1173. bool "Support for backlight control"
  1174. depends on FB_RADEON
  1175. default y
  1176. help
  1177. Say Y here if you want to control the backlight of your display.
  1178. config FB_RADEON_DEBUG
  1179. bool "Lots of debug output from Radeon driver"
  1180. depends on FB_RADEON
  1181. default n
  1182. help
  1183. Say Y here if you want the Radeon driver to output all sorts
  1184. of debugging information to provide to the maintainer when
  1185. something goes wrong.
  1186. config FB_ATY128
  1187. tristate "ATI Rage128 display support"
  1188. depends on FB && PCI
  1189. select FB_CFB_FILLRECT
  1190. select FB_CFB_COPYAREA
  1191. select FB_CFB_IMAGEBLIT
  1192. select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  1193. select FB_MACMODES if PPC_PMAC
  1194. help
  1195. This driver supports graphics boards with the ATI Rage128 chips.
  1196. Say Y if you have such a graphics board and read
  1197. <file:Documentation/fb/aty128fb.txt>.
  1198. To compile this driver as a module, choose M here: the
  1199. module will be called aty128fb.
  1200. config FB_ATY128_BACKLIGHT
  1201. bool "Support for backlight control"
  1202. depends on FB_ATY128
  1203. default y
  1204. help
  1205. Say Y here if you want to control the backlight of your display.
  1206. config FB_ATY
  1207. tristate "ATI Mach64 display support" if PCI || ATARI
  1208. depends on FB && !SPARC32
  1209. select FB_CFB_FILLRECT
  1210. select FB_CFB_COPYAREA
  1211. select FB_CFB_IMAGEBLIT
  1212. select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  1213. select FB_MACMODES if PPC
  1214. help
  1215. This driver supports graphics boards with the ATI Mach64 chips.
  1216. Say Y if you have such a graphics board.
  1217. To compile this driver as a module, choose M here: the
  1218. module will be called atyfb.
  1219. config FB_ATY_CT
  1220. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  1221. depends on PCI && FB_ATY
  1222. default y if SPARC64 && PCI
  1223. help
  1224. Say Y here to support use of ATI's 64-bit Rage boards (or other
  1225. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1226. framebuffer device. The ATI product support page for these boards
  1227. is at <http://support.ati.com/products/pc/mach64/mach64.html>.
  1228. config FB_ATY_GENERIC_LCD
  1229. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1230. depends on FB_ATY_CT
  1231. help
  1232. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1233. Rage XC, or Rage XL chipset.
  1234. config FB_ATY_GX
  1235. bool "Mach64 GX support" if PCI
  1236. depends on FB_ATY
  1237. default y if ATARI
  1238. help
  1239. Say Y here to support use of the ATI Mach64 Graphics Expression
  1240. board (or other boards based on the Mach64 GX chipset) as a
  1241. framebuffer device. The ATI product support page for these boards
  1242. is at
  1243. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1244. config FB_ATY_BACKLIGHT
  1245. bool "Support for backlight control"
  1246. depends on FB_ATY
  1247. default y
  1248. help
  1249. Say Y here if you want to control the backlight of your display.
  1250. config FB_S3
  1251. tristate "S3 Trio/Virge support"
  1252. depends on FB && PCI
  1253. select FB_CFB_FILLRECT
  1254. select FB_CFB_COPYAREA
  1255. select FB_CFB_IMAGEBLIT
  1256. select FB_TILEBLITTING
  1257. select FB_SVGALIB
  1258. select VGASTATE
  1259. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1260. ---help---
  1261. Driver for graphics boards with S3 Trio / S3 Virge chip.
  1262. config FB_SAVAGE
  1263. tristate "S3 Savage support"
  1264. depends on FB && PCI && EXPERIMENTAL
  1265. select FB_MODE_HELPERS
  1266. select FB_CFB_FILLRECT
  1267. select FB_CFB_COPYAREA
  1268. select FB_CFB_IMAGEBLIT
  1269. select VGASTATE
  1270. help
  1271. This driver supports notebooks and computers with S3 Savage PCI/AGP
  1272. chips.
  1273. Say Y if you have such a graphics card.
  1274. To compile this driver as a module, choose M here; the module
  1275. will be called savagefb.
  1276. config FB_SAVAGE_I2C
  1277. bool "Enable DDC2 Support"
  1278. depends on FB_SAVAGE
  1279. select FB_DDC
  1280. help
  1281. This enables I2C support for S3 Savage Chipsets. This is used
  1282. only for getting EDID information from the attached display
  1283. allowing for robust video mode handling and switching.
  1284. Because fbdev-2.6 requires that drivers must be able to
  1285. independently validate video mode parameters, you should say Y
  1286. here.
  1287. config FB_SAVAGE_ACCEL
  1288. bool "Enable Console Acceleration"
  1289. depends on FB_SAVAGE
  1290. default n
  1291. help
  1292. This option will compile in console acceleration support. If
  1293. the resulting framebuffer console has bothersome glitches, then
  1294. choose N here.
  1295. config FB_SIS
  1296. tristate "SiS/XGI display support"
  1297. depends on FB && PCI
  1298. select FB_CFB_FILLRECT
  1299. select FB_CFB_COPYAREA
  1300. select FB_CFB_IMAGEBLIT
  1301. select FB_BOOT_VESA_SUPPORT if FB_SIS = y
  1302. help
  1303. This is the frame buffer device driver for the SiS 300, 315, 330
  1304. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1305. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1306. To compile this driver as a module, choose M here; the module
  1307. will be called sisfb.
  1308. config FB_SIS_300
  1309. bool "SiS 300 series support"
  1310. depends on FB_SIS
  1311. help
  1312. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1313. config FB_SIS_315
  1314. bool "SiS 315/330/340 series and XGI support"
  1315. depends on FB_SIS
  1316. help
  1317. Say Y here to support use of the SiS 315, 330 and 340 series
  1318. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1319. as XGI V3XT, V5, V8 and Z7.
  1320. config FB_VIA
  1321. tristate "VIA UniChrome (Pro) and Chrome9 display support"
  1322. depends on FB && PCI && X86
  1323. select FB_CFB_FILLRECT
  1324. select FB_CFB_COPYAREA
  1325. select FB_CFB_IMAGEBLIT
  1326. select I2C_ALGOBIT
  1327. select I2C
  1328. select GPIOLIB
  1329. help
  1330. This is the frame buffer device driver for Graphics chips of VIA
  1331. UniChrome (Pro) Family (CLE266,PM800/CN400,P4M800CE/P4M800Pro/
  1332. CN700/VN800,CX700/VX700,P4M890) and Chrome9 Family (K8M890,CN896
  1333. /P4M900,VX800)
  1334. Say Y if you have a VIA UniChrome graphics board.
  1335. To compile this driver as a module, choose M here: the
  1336. module will be called viafb.
  1337. if FB_VIA
  1338. config FB_VIA_DIRECT_PROCFS
  1339. bool "direct hardware access via procfs (DEPRECATED)(DANGEROUS)"
  1340. depends on FB_VIA
  1341. default n
  1342. help
  1343. Allow direct hardware access to some output registers via procfs.
  1344. This is dangerous but may provide the only chance to get the
  1345. correct output device configuration.
  1346. Its use is strongly discouraged.
  1347. endif
  1348. config FB_NEOMAGIC
  1349. tristate "NeoMagic display support"
  1350. depends on FB && PCI
  1351. select FB_MODE_HELPERS
  1352. select FB_CFB_FILLRECT
  1353. select FB_CFB_COPYAREA
  1354. select FB_CFB_IMAGEBLIT
  1355. select VGASTATE
  1356. help
  1357. This driver supports notebooks with NeoMagic PCI chips.
  1358. Say Y if you have such a graphics card.
  1359. To compile this driver as a module, choose M here: the
  1360. module will be called neofb.
  1361. config FB_KYRO
  1362. tristate "IMG Kyro support"
  1363. depends on FB && PCI
  1364. select FB_CFB_FILLRECT
  1365. select FB_CFB_COPYAREA
  1366. select FB_CFB_IMAGEBLIT
  1367. help
  1368. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1369. graphics board.
  1370. To compile this driver as a module, choose M here: the
  1371. module will be called kyrofb.
  1372. config FB_3DFX
  1373. tristate "3Dfx Banshee/Voodoo3/Voodoo5 display support"
  1374. depends on FB && PCI
  1375. select FB_CFB_IMAGEBLIT
  1376. select FB_CFB_FILLRECT
  1377. select FB_CFB_COPYAREA
  1378. select FB_MODE_HELPERS
  1379. help
  1380. This driver supports graphics boards with the 3Dfx Banshee,
  1381. Voodoo3 or VSA-100 (aka Voodoo4/5) chips. Say Y if you have
  1382. such a graphics board.
  1383. To compile this driver as a module, choose M here: the
  1384. module will be called tdfxfb.
  1385. config FB_3DFX_ACCEL
  1386. bool "3Dfx Acceleration functions (EXPERIMENTAL)"
  1387. depends on FB_3DFX && EXPERIMENTAL
  1388. ---help---
  1389. This will compile the 3Dfx Banshee/Voodoo3/VSA-100 frame buffer
  1390. device driver with acceleration functions.
  1391. config FB_3DFX_I2C
  1392. bool "Enable DDC/I2C support"
  1393. depends on FB_3DFX && EXPERIMENTAL
  1394. select FB_DDC
  1395. default y
  1396. help
  1397. Say Y here if you want DDC/I2C support for your 3dfx Voodoo3.
  1398. config FB_VOODOO1
  1399. tristate "3Dfx Voodoo Graphics (sst1) support"
  1400. depends on FB && PCI
  1401. select FB_CFB_FILLRECT
  1402. select FB_CFB_COPYAREA
  1403. select FB_CFB_IMAGEBLIT
  1404. ---help---
  1405. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1406. Voodoo2 (cvg) based graphics card.
  1407. To compile this driver as a module, choose M here: the
  1408. module will be called sstfb.
  1409. WARNING: Do not use any application that uses the 3D engine
  1410. (namely glide) while using this driver.
  1411. Please read the <file:Documentation/fb/sstfb.txt> for supported
  1412. options and other important info support.
  1413. config FB_VT8623
  1414. tristate "VIA VT8623 support"
  1415. depends on FB && PCI
  1416. select FB_CFB_FILLRECT
  1417. select FB_CFB_COPYAREA
  1418. select FB_CFB_IMAGEBLIT
  1419. select FB_TILEBLITTING
  1420. select FB_SVGALIB
  1421. select VGASTATE
  1422. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1423. ---help---
  1424. Driver for CastleRock integrated graphics core in the
  1425. VIA VT8623 [Apollo CLE266] chipset.
  1426. config FB_TRIDENT
  1427. tristate "Trident/CyberXXX/CyberBlade support"
  1428. depends on FB && PCI
  1429. select FB_CFB_FILLRECT
  1430. select FB_CFB_COPYAREA
  1431. select FB_CFB_IMAGEBLIT
  1432. ---help---
  1433. This is the frame buffer device driver for Trident PCI/AGP chipsets.
  1434. Supported chipset families are TGUI 9440/96XX, 3DImage, Blade3D
  1435. and Blade XP.
  1436. There are also integrated versions of these chips called CyberXXXX,
  1437. CyberImage or CyberBlade. These chips are mostly found in laptops
  1438. but also on some motherboards including early VIA EPIA motherboards.
  1439. For more information, read <file:Documentation/fb/tridentfb.txt>
  1440. Say Y if you have such a graphics board.
  1441. To compile this driver as a module, choose M here: the
  1442. module will be called tridentfb.
  1443. config FB_ARK
  1444. tristate "ARK 2000PV support"
  1445. depends on FB && PCI
  1446. select FB_CFB_FILLRECT
  1447. select FB_CFB_COPYAREA
  1448. select FB_CFB_IMAGEBLIT
  1449. select FB_TILEBLITTING
  1450. select FB_SVGALIB
  1451. select VGASTATE
  1452. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  1453. ---help---
  1454. Driver for PCI graphics boards with ARK 2000PV chip
  1455. and ICS 5342 RAMDAC.
  1456. config FB_PM3
  1457. tristate "Permedia3 support (EXPERIMENTAL)"
  1458. depends on FB && PCI && EXPERIMENTAL
  1459. select FB_CFB_FILLRECT
  1460. select FB_CFB_COPYAREA
  1461. select FB_CFB_IMAGEBLIT
  1462. help
  1463. This is the frame buffer device driver for the 3DLabs Permedia3
  1464. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1465. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1466. and maybe other boards.
  1467. config FB_CARMINE
  1468. tristate "Fujitsu carmine frame buffer support"
  1469. depends on FB && PCI
  1470. select FB_CFB_FILLRECT
  1471. select FB_CFB_COPYAREA
  1472. select FB_CFB_IMAGEBLIT
  1473. help
  1474. This is the frame buffer device driver for the Fujitsu Carmine chip.
  1475. The driver provides two independent frame buffer devices.
  1476. choice
  1477. depends on FB_CARMINE
  1478. prompt "DRAM timing"
  1479. default FB_CARMINE_DRAM_EVAL
  1480. config FB_CARMINE_DRAM_EVAL
  1481. bool "Eval board timings"
  1482. help
  1483. Use timings which work on the eval card.
  1484. config CARMINE_DRAM_CUSTOM
  1485. bool "Custom board timings"
  1486. help
  1487. Use custom board timings.
  1488. endchoice
  1489. config FB_AU1100
  1490. bool "Au1100 LCD Driver"
  1491. depends on (FB = y) && MIPS && SOC_AU1100
  1492. select FB_CFB_FILLRECT
  1493. select FB_CFB_COPYAREA
  1494. select FB_CFB_IMAGEBLIT
  1495. help
  1496. This is the framebuffer driver for the AMD Au1100 SOC. It can drive
  1497. various panels and CRTs by passing in kernel cmd line option
  1498. au1100fb:panel=<name>.
  1499. config FB_AU1200
  1500. bool "Au1200 LCD Driver"
  1501. depends on (FB = y) && MIPS && SOC_AU1200
  1502. select FB_CFB_FILLRECT
  1503. select FB_CFB_COPYAREA
  1504. select FB_CFB_IMAGEBLIT
  1505. help
  1506. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1507. various panels and CRTs by passing in kernel cmd line option
  1508. au1200fb:panel=<name>.
  1509. config FB_VT8500
  1510. bool "VT8500 LCD Driver"
  1511. depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_VT8500
  1512. select FB_WMT_GE_ROPS
  1513. select FB_SYS_IMAGEBLIT
  1514. help
  1515. This is the framebuffer driver for VIA VT8500 integrated LCD
  1516. controller.
  1517. config FB_WM8505
  1518. bool "WM8505 frame buffer support"
  1519. depends on (FB = y) && ARM && ARCH_VT8500 && VTWM_VERSION_WM8505
  1520. select FB_WMT_GE_ROPS
  1521. select FB_SYS_IMAGEBLIT
  1522. help
  1523. This is the framebuffer driver for WonderMedia WM8505
  1524. integrated LCD controller.
  1525. source "drivers/video/geode/Kconfig"
  1526. config FB_HIT
  1527. tristate "HD64461 Frame Buffer support"
  1528. depends on FB && HD64461
  1529. select FB_CFB_FILLRECT
  1530. select FB_CFB_COPYAREA
  1531. select FB_CFB_IMAGEBLIT
  1532. help
  1533. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1534. frame buffer card.
  1535. config FB_PMAG_AA
  1536. bool "PMAG-AA TURBOchannel framebuffer support"
  1537. depends on (FB = y) && TC
  1538. select FB_CFB_FILLRECT
  1539. select FB_CFB_COPYAREA
  1540. select FB_CFB_IMAGEBLIT
  1541. help
  1542. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1543. used mainly in the MIPS-based DECstation series.
  1544. config FB_PMAG_BA
  1545. tristate "PMAG-BA TURBOchannel framebuffer support"
  1546. depends on FB && TC
  1547. select FB_CFB_FILLRECT
  1548. select FB_CFB_COPYAREA
  1549. select FB_CFB_IMAGEBLIT
  1550. help
  1551. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1552. used mainly in the MIPS-based DECstation series.
  1553. config FB_PMAGB_B
  1554. tristate "PMAGB-B TURBOchannel framebuffer support"
  1555. depends on FB && TC
  1556. select FB_CFB_FILLRECT
  1557. select FB_CFB_COPYAREA
  1558. select FB_CFB_IMAGEBLIT
  1559. help
  1560. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1561. in the MIPS-based DECstation series. The card is currently only
  1562. supported in 1280x1024x8 mode.
  1563. config FB_MAXINE
  1564. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1565. depends on (FB = y) && MACH_DECSTATION
  1566. select FB_CFB_FILLRECT
  1567. select FB_CFB_COPYAREA
  1568. select FB_CFB_IMAGEBLIT
  1569. help
  1570. Support for the onboard framebuffer (1024x768x8) in the Personal
  1571. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1572. Codename "Maxine").
  1573. config FB_G364
  1574. bool "G364 frame buffer support"
  1575. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1576. select FB_CFB_FILLRECT
  1577. select FB_CFB_COPYAREA
  1578. select FB_CFB_IMAGEBLIT
  1579. help
  1580. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1581. Olivetti M700-10 systems.
  1582. config FB_68328
  1583. bool "Motorola 68328 native frame buffer support"
  1584. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1585. select FB_CFB_FILLRECT
  1586. select FB_CFB_COPYAREA
  1587. select FB_CFB_IMAGEBLIT
  1588. help
  1589. Say Y here if you want to support the built-in frame buffer of
  1590. the Motorola 68328 CPU family.
  1591. config FB_PXA168
  1592. tristate "PXA168/910 LCD framebuffer support"
  1593. depends on FB && (CPU_PXA168 || CPU_PXA910)
  1594. select FB_CFB_FILLRECT
  1595. select FB_CFB_COPYAREA
  1596. select FB_CFB_IMAGEBLIT
  1597. ---help---
  1598. Frame buffer driver for the built-in LCD controller in the Marvell
  1599. MMP processor.
  1600. config FB_PXA
  1601. tristate "PXA LCD framebuffer support"
  1602. depends on FB && ARCH_PXA
  1603. select FB_CFB_FILLRECT
  1604. select FB_CFB_COPYAREA
  1605. select FB_CFB_IMAGEBLIT
  1606. ---help---
  1607. Frame buffer driver for the built-in LCD controller in the Intel
  1608. PXA2x0 processor.
  1609. This driver is also available as a module ( = code which can be
  1610. inserted and removed from the running kernel whenever you want). The
  1611. module will be called pxafb. If you want to compile it as a module,
  1612. say M here and read <file:Documentation/kbuild/modules.txt>.
  1613. If unsure, say N.
  1614. config FB_PXA_OVERLAY
  1615. bool "Support PXA27x/PXA3xx Overlay(s) as framebuffer"
  1616. default n
  1617. depends on FB_PXA && (PXA27x || PXA3xx)
  1618. config FB_PXA_SMARTPANEL
  1619. bool "PXA Smartpanel LCD support"
  1620. default n
  1621. depends on FB_PXA
  1622. config FB_PXA_PARAMETERS
  1623. bool "PXA LCD command line parameters"
  1624. default n
  1625. depends on FB_PXA
  1626. ---help---
  1627. Enable the use of kernel command line or module parameters
  1628. to configure the physical properties of the LCD panel when
  1629. using the PXA LCD driver.
  1630. This option allows you to override the panel parameters
  1631. supplied by the platform in order to support multiple
  1632. different models of flatpanel. If you will only be using a
  1633. single model of flatpanel then you can safely leave this
  1634. option disabled.
  1635. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1636. config FB_MBX
  1637. tristate "2700G LCD framebuffer support"
  1638. depends on FB && ARCH_PXA
  1639. select FB_CFB_FILLRECT
  1640. select FB_CFB_COPYAREA
  1641. select FB_CFB_IMAGEBLIT
  1642. ---help---
  1643. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1644. Accelerator
  1645. config FB_MBX_DEBUG
  1646. bool "Enable debugging info via debugfs"
  1647. depends on FB_MBX && DEBUG_FS
  1648. default n
  1649. ---help---
  1650. Enable this if you want debugging information using the debug
  1651. filesystem (debugfs)
  1652. If unsure, say N.
  1653. config FB_FSL_DIU
  1654. tristate "Freescale DIU framebuffer support"
  1655. depends on FB && FSL_SOC
  1656. select FB_MODE_HELPERS
  1657. select FB_CFB_FILLRECT
  1658. select FB_CFB_COPYAREA
  1659. select FB_CFB_IMAGEBLIT
  1660. select PPC_LIB_RHEAP
  1661. ---help---
  1662. Framebuffer driver for the Freescale SoC DIU
  1663. config FB_W100
  1664. tristate "W100 frame buffer support"
  1665. depends on FB && ARCH_PXA
  1666. select FB_CFB_FILLRECT
  1667. select FB_CFB_COPYAREA
  1668. select FB_CFB_IMAGEBLIT
  1669. ---help---
  1670. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1671. It can also drive the w3220 chip found on iPAQ hx4700.
  1672. This driver is also available as a module ( = code which can be
  1673. inserted and removed from the running kernel whenever you want). The
  1674. module will be called w100fb. If you want to compile it as a module,
  1675. say M here and read <file:Documentation/kbuild/modules.txt>.
  1676. If unsure, say N.
  1677. config SH_MIPI_DSI
  1678. tristate
  1679. depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
  1680. config SH_LCD_MIPI_DSI
  1681. bool
  1682. config FB_SH_MOBILE_LCDC
  1683. tristate "SuperH Mobile LCDC framebuffer support"
  1684. depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
  1685. select FB_SYS_FILLRECT
  1686. select FB_SYS_COPYAREA
  1687. select FB_SYS_IMAGEBLIT
  1688. select FB_SYS_FOPS
  1689. select FB_DEFERRED_IO
  1690. select SH_MIPI_DSI if SH_LCD_MIPI_DSI
  1691. ---help---
  1692. Frame buffer driver for the on-chip SH-Mobile LCD controller.
  1693. config FB_SH_MOBILE_HDMI
  1694. tristate "SuperH Mobile HDMI controller support"
  1695. depends on FB_SH_MOBILE_LCDC
  1696. select FB_MODE_HELPERS
  1697. select SOUND
  1698. select SND
  1699. select SND_SOC
  1700. ---help---
  1701. Driver for the on-chip SH-Mobile HDMI controller.
  1702. config FB_TMIO
  1703. tristate "Toshiba Mobile IO FrameBuffer support"
  1704. depends on FB && MFD_CORE
  1705. select FB_CFB_FILLRECT
  1706. select FB_CFB_COPYAREA
  1707. select FB_CFB_IMAGEBLIT
  1708. ---help---
  1709. Frame buffer driver for the Toshiba Mobile IO integrated as found
  1710. on the Sharp SL-6000 series
  1711. This driver is also available as a module ( = code which can be
  1712. inserted and removed from the running kernel whenever you want). The
  1713. module will be called tmiofb. If you want to compile it as a module,
  1714. say M here and read <file:Documentation/kbuild/modules.txt>.
  1715. If unsure, say N.
  1716. config FB_TMIO_ACCELL
  1717. bool "tmiofb acceleration"
  1718. depends on FB_TMIO
  1719. default y
  1720. config FB_S3C
  1721. tristate "Samsung S3C framebuffer support"
  1722. depends on FB && S3C_DEV_FB
  1723. select FB_CFB_FILLRECT
  1724. select FB_CFB_COPYAREA
  1725. select FB_CFB_IMAGEBLIT
  1726. ---help---
  1727. Frame buffer driver for the built-in FB controller in the Samsung
  1728. SoC line from the S3C2443 onwards, including the S3C2416, S3C2450,
  1729. and the S3C64XX series such as the S3C6400 and S3C6410.
  1730. These chips all have the same basic framebuffer design with the
  1731. actual capabilities depending on the chip. For instance the S3C6400
  1732. and S3C6410 support 4 hardware windows whereas the S3C24XX series
  1733. currently only have two.
  1734. Currently the support is only for the S3C6400 and S3C6410 SoCs.
  1735. config FB_S3C_DEBUG_REGWRITE
  1736. bool "Debug register writes"
  1737. depends on FB_S3C
  1738. ---help---
  1739. Show all register writes via printk(KERN_DEBUG)
  1740. config FB_S3C2410
  1741. tristate "S3C2410 LCD framebuffer support"
  1742. depends on FB && ARCH_S3C2410
  1743. select FB_CFB_FILLRECT
  1744. select FB_CFB_COPYAREA
  1745. select FB_CFB_IMAGEBLIT
  1746. ---help---
  1747. Frame buffer driver for the built-in LCD controller in the Samsung
  1748. S3C2410 processor.
  1749. This driver is also available as a module ( = code which can be
  1750. inserted and removed from the running kernel whenever you want). The
  1751. module will be called s3c2410fb. If you want to compile it as a module,
  1752. say M here and read <file:Documentation/kbuild/modules.txt>.
  1753. If unsure, say N.
  1754. config FB_S3C2410_DEBUG
  1755. bool "S3C2410 lcd debug messages"
  1756. depends on FB_S3C2410
  1757. help
  1758. Turn on debugging messages. Note that you can set/unset at run time
  1759. through sysfs
  1760. config FB_NUC900
  1761. bool "NUC900 LCD framebuffer support"
  1762. depends on FB && ARCH_W90X900
  1763. select FB_CFB_FILLRECT
  1764. select FB_CFB_COPYAREA
  1765. select FB_CFB_IMAGEBLIT
  1766. ---help---
  1767. Frame buffer driver for the built-in LCD controller in the Nuvoton
  1768. NUC900 processor
  1769. config GPM1040A0_320X240
  1770. bool "Giantplus Technology GPM1040A0 320x240 Color TFT LCD"
  1771. depends on FB_NUC900
  1772. config FB_NUC900_DEBUG
  1773. bool "NUC900 lcd debug messages"
  1774. depends on FB_NUC900
  1775. help
  1776. Turn on debugging messages. Note that you can set/unset at run time
  1777. through sysfs
  1778. config FB_SM501
  1779. tristate "Silicon Motion SM501 framebuffer support"
  1780. depends on FB && MFD_SM501
  1781. select FB_CFB_FILLRECT
  1782. select FB_CFB_COPYAREA
  1783. select FB_CFB_IMAGEBLIT
  1784. ---help---
  1785. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1786. Motion SM501.
  1787. This driver is also available as a module ( = code which can be
  1788. inserted and removed from the running kernel whenever you want). The
  1789. module will be called sm501fb. If you want to compile it as a module,
  1790. say M here and read <file:Documentation/kbuild/modules.txt>.
  1791. If unsure, say N.
  1792. config FB_PNX4008_DUM
  1793. tristate "Display Update Module support on Philips PNX4008 board"
  1794. depends on FB && ARCH_PNX4008
  1795. ---help---
  1796. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1797. config FB_PNX4008_DUM_RGB
  1798. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1799. depends on FB_PNX4008_DUM
  1800. select FB_CFB_FILLRECT
  1801. select FB_CFB_COPYAREA
  1802. select FB_CFB_IMAGEBLIT
  1803. ---help---
  1804. Say Y here to enable support for PNX4008 RGB Framebuffer
  1805. config FB_IBM_GXT4500
  1806. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1807. depends on FB && PPC
  1808. select FB_CFB_FILLRECT
  1809. select FB_CFB_COPYAREA
  1810. select FB_CFB_IMAGEBLIT
  1811. ---help---
  1812. Say Y here to enable support for the IBM GXT4500P display
  1813. adaptor, found on some IBM System P (pSeries) machines.
  1814. config FB_PS3
  1815. tristate "PS3 GPU framebuffer driver"
  1816. depends on FB && PS3_PS3AV
  1817. select FB_SYS_FILLRECT
  1818. select FB_SYS_COPYAREA
  1819. select FB_SYS_IMAGEBLIT
  1820. select FB_SYS_FOPS
  1821. select VT_HW_CONSOLE_BINDING if FRAMEBUFFER_CONSOLE
  1822. ---help---
  1823. Include support for the virtual frame buffer in the PS3 platform.
  1824. config FB_PS3_DEFAULT_SIZE_M
  1825. int "PS3 default frame buffer size (in MiB)"
  1826. depends on FB_PS3
  1827. default 9
  1828. ---help---
  1829. This is the default size (in MiB) of the virtual frame buffer in
  1830. the PS3.
  1831. The default value can be overridden on the kernel command line
  1832. using the "ps3fb" option (e.g. "ps3fb=9M");
  1833. config FB_XILINX
  1834. tristate "Xilinx frame buffer support"
  1835. depends on FB && (XILINX_VIRTEX || MICROBLAZE)
  1836. select FB_CFB_FILLRECT
  1837. select FB_CFB_COPYAREA
  1838. select FB_CFB_IMAGEBLIT
  1839. ---help---
  1840. Include support for the Xilinx ML300/ML403 reference design
  1841. framebuffer. ML300 carries a 640*480 LCD display on the board,
  1842. ML403 uses a standard DB15 VGA connector.
  1843. config FB_COBALT
  1844. tristate "Cobalt server LCD frame buffer support"
  1845. depends on FB && MIPS_COBALT
  1846. config FB_SH7760
  1847. bool "SH7760/SH7763/SH7720/SH7721 LCDC support"
  1848. depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \
  1849. || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721)
  1850. select FB_CFB_FILLRECT
  1851. select FB_CFB_COPYAREA
  1852. select FB_CFB_IMAGEBLIT
  1853. ---help---
  1854. Support for the SH7760/SH7763/SH7720/SH7721 integrated
  1855. (D)STN/TFT LCD Controller.
  1856. Supports display resolutions up to 1024x1024 pixel, grayscale and
  1857. color operation, with depths ranging from 1 bpp to 8 bpp monochrome
  1858. and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
  1859. panels <= 320 pixel horizontal resolution.
  1860. config FB_DA8XX
  1861. tristate "DA8xx/OMAP-L1xx Framebuffer support"
  1862. depends on FB && ARCH_DAVINCI_DA8XX
  1863. select FB_CFB_FILLRECT
  1864. select FB_CFB_COPYAREA
  1865. select FB_CFB_IMAGEBLIT
  1866. ---help---
  1867. This is the frame buffer device driver for the TI LCD controller
  1868. found on DA8xx/OMAP-L1xx SoCs.
  1869. If unsure, say N.
  1870. config FB_VIRTUAL
  1871. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1872. depends on FB
  1873. select FB_SYS_FILLRECT
  1874. select FB_SYS_COPYAREA
  1875. select FB_SYS_IMAGEBLIT
  1876. select FB_SYS_FOPS
  1877. ---help---
  1878. This is a `virtual' frame buffer device. It operates on a chunk of
  1879. unswappable kernel memory instead of on the memory of a graphics
  1880. board. This means you cannot see any output sent to this frame
  1881. buffer device, while it does consume precious memory. The main use
  1882. of this frame buffer device is testing and debugging the frame
  1883. buffer subsystem. Do NOT enable it for normal systems! To protect
  1884. the innocent, it has to be enabled explicitly at boot time using the
  1885. kernel option `video=vfb:'.
  1886. To compile this driver as a module, choose M here: the
  1887. module will be called vfb. In order to load it, you must use
  1888. the vfb_enable=1 option.
  1889. If unsure, say N.
  1890. config XEN_FBDEV_FRONTEND
  1891. tristate "Xen virtual frame buffer support"
  1892. depends on FB && XEN
  1893. select FB_SYS_FILLRECT
  1894. select FB_SYS_COPYAREA
  1895. select FB_SYS_IMAGEBLIT
  1896. select FB_SYS_FOPS
  1897. select FB_DEFERRED_IO
  1898. select XEN_XENBUS_FRONTEND
  1899. default y
  1900. help
  1901. This driver implements the front-end of the Xen virtual
  1902. frame buffer driver. It communicates with a back-end
  1903. in another domain.
  1904. config FB_METRONOME
  1905. tristate "E-Ink Metronome/8track controller support"
  1906. depends on FB
  1907. select FB_SYS_FILLRECT
  1908. select FB_SYS_COPYAREA
  1909. select FB_SYS_IMAGEBLIT
  1910. select FB_SYS_FOPS
  1911. select FB_DEFERRED_IO
  1912. help
  1913. This driver implements support for the E-Ink Metronome
  1914. controller. The pre-release name for this device was 8track
  1915. and could also have been called by some vendors as PVI-nnnn.
  1916. config FB_MB862XX
  1917. tristate "Fujitsu MB862xx GDC support"
  1918. depends on FB
  1919. select FB_CFB_FILLRECT
  1920. select FB_CFB_COPYAREA
  1921. select FB_CFB_IMAGEBLIT
  1922. ---help---
  1923. Frame buffer driver for Fujitsu Carmine/Coral-P(A)/Lime controllers.
  1924. config FB_MB862XX_PCI_GDC
  1925. bool "Carmine/Coral-P(A) GDC"
  1926. depends on PCI && FB_MB862XX
  1927. ---help---
  1928. This enables framebuffer support for Fujitsu Carmine/Coral-P(A)
  1929. PCI graphics controller devices.
  1930. config FB_MB862XX_LIME
  1931. bool "Lime GDC"
  1932. depends on FB_MB862XX
  1933. depends on OF && !FB_MB862XX_PCI_GDC
  1934. depends on PPC
  1935. select FB_FOREIGN_ENDIAN
  1936. select FB_LITTLE_ENDIAN
  1937. ---help---
  1938. Framebuffer support for Fujitsu Lime GDC on host CPU bus.
  1939. config FB_EP93XX
  1940. tristate "EP93XX frame buffer support"
  1941. depends on FB && ARCH_EP93XX
  1942. select FB_CFB_FILLRECT
  1943. select FB_CFB_COPYAREA
  1944. select FB_CFB_IMAGEBLIT
  1945. ---help---
  1946. Framebuffer driver for the Cirrus Logic EP93XX series of processors.
  1947. This driver is also available as a module. The module will be called
  1948. ep93xx-fb.
  1949. config FB_PRE_INIT_FB
  1950. bool "Don't reinitialize, use bootloader's GDC/Display configuration"
  1951. depends on FB && FB_MB862XX_LIME
  1952. ---help---
  1953. Select this option if display contents should be inherited as set by
  1954. the bootloader.
  1955. config FB_MSM
  1956. tristate "MSM Framebuffer support"
  1957. depends on FB && ARCH_MSM
  1958. select FB_CFB_FILLRECT
  1959. select FB_CFB_COPYAREA
  1960. select FB_CFB_IMAGEBLIT
  1961. config FB_MX3
  1962. tristate "MX3 Framebuffer support"
  1963. depends on FB && MX3_IPU
  1964. select FB_CFB_FILLRECT
  1965. select FB_CFB_COPYAREA
  1966. select FB_CFB_IMAGEBLIT
  1967. default y
  1968. help
  1969. This is a framebuffer device for the i.MX31 LCD Controller. So
  1970. far only synchronous displays are supported. If you plan to use
  1971. an LCD display with your i.MX31 system, say Y here.
  1972. config FB_BROADSHEET
  1973. tristate "E-Ink Broadsheet/Epson S1D13521 controller support"
  1974. depends on FB
  1975. select FB_SYS_FILLRECT
  1976. select FB_SYS_COPYAREA
  1977. select FB_SYS_IMAGEBLIT
  1978. select FB_SYS_FOPS
  1979. select FB_DEFERRED_IO
  1980. help
  1981. This driver implements support for the E-Ink Broadsheet
  1982. controller. The release name for this device was Epson S1D13521
  1983. and could also have been called by other names when coupled with
  1984. a bridge adapter.
  1985. config FB_JZ4740
  1986. tristate "JZ4740 LCD framebuffer support"
  1987. depends on FB && MACH_JZ4740
  1988. select FB_SYS_FILLRECT
  1989. select FB_SYS_COPYAREA
  1990. select FB_SYS_IMAGEBLIT
  1991. help
  1992. Framebuffer support for the JZ4740 SoC.
  1993. source "drivers/video/omap/Kconfig"
  1994. source "drivers/video/omap2/Kconfig"
  1995. source "drivers/video/backlight/Kconfig"
  1996. source "drivers/video/display/Kconfig"
  1997. if VT
  1998. source "drivers/video/console/Kconfig"
  1999. endif
  2000. if FB || SGI_NEWPORT_CONSOLE
  2001. source "drivers/video/logo/Kconfig"
  2002. endif
  2003. endmenu