Kconfig 68 KB

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