Kconfig 71 KB

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