Kconfig 71 KB

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