Kconfig 75 KB

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