Kconfig 72 KB

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