Kconfig 69 KB

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