Kconfig 70 KB

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