Kconfig 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773
  1. #
  2. # Video configuration
  3. #
  4. menu "Graphics support"
  5. source "drivers/video/backlight/Kconfig"
  6. source "drivers/video/display/Kconfig"
  7. config VGASTATE
  8. tristate
  9. default n
  10. config FB
  11. tristate "Support for frame buffer devices"
  12. ---help---
  13. The frame buffer device provides an abstraction for the graphics
  14. hardware. It represents the frame buffer of some video hardware and
  15. allows application software to access the graphics hardware through
  16. a well-defined interface, so the software doesn't need to know
  17. anything about the low-level (hardware register) stuff.
  18. Frame buffer devices work identically across the different
  19. architectures supported by Linux and make the implementation of
  20. application programs easier and more portable; at this point, an X
  21. server exists which uses the frame buffer device exclusively.
  22. On several non-X86 architectures, the frame buffer device is the
  23. only way to use the graphics hardware.
  24. The device is accessed through special device nodes, usually located
  25. in the /dev directory, i.e. /dev/fb*.
  26. You need an utility program called fbset to make full use of frame
  27. buffer devices. Please read <file:Documentation/fb/framebuffer.txt>
  28. and the Framebuffer-HOWTO at
  29. <http://www.tahallah.demon.co.uk/programming/prog.html> for more
  30. information.
  31. Say Y here and to the driver for your graphics board below if you
  32. are compiling a kernel for a non-x86 architecture.
  33. If you are compiling for the x86 architecture, you can say Y if you
  34. want to play with it, but it is not essential. Please note that
  35. running graphical applications that directly touch the hardware
  36. (e.g. an accelerated X server) and that are not frame buffer
  37. device-aware may cause unexpected results. If unsure, say N.
  38. config FIRMWARE_EDID
  39. bool "Enable firmware EDID"
  40. depends on FB
  41. default n
  42. ---help---
  43. This enables access to the EDID transferred from the firmware.
  44. On the i386, this is from the Video BIOS. Enable this if DDC/I2C
  45. transfers do not work for your driver and if you are using
  46. nvidiafb, i810fb or savagefb.
  47. In general, choosing Y for this option is safe. If you
  48. experience extremely long delays while booting before you get
  49. something on your display, try setting this to N. Matrox cards in
  50. combination with certain motherboards and monitors are known to
  51. suffer from this problem.
  52. config FB_DDC
  53. tristate
  54. depends on FB
  55. select I2C_ALGOBIT
  56. select I2C
  57. default n
  58. config FB_CFB_FILLRECT
  59. tristate
  60. depends on FB
  61. default n
  62. ---help---
  63. Include the cfb_fillrect function for generic software rectangle
  64. filling. This is used by drivers that don't provide their own
  65. (accelerated) version.
  66. config FB_CFB_COPYAREA
  67. tristate
  68. depends on FB
  69. default n
  70. ---help---
  71. Include the cfb_copyarea function for generic software area copying.
  72. This is used by drivers that don't provide their own (accelerated)
  73. version.
  74. config FB_CFB_IMAGEBLIT
  75. tristate
  76. depends on FB
  77. default n
  78. ---help---
  79. Include the cfb_imageblit function for generic software image
  80. blitting. This is used by drivers that don't provide their own
  81. (accelerated) version.
  82. config FB_SYS_FILLRECT
  83. tristate
  84. depends on FB
  85. default n
  86. ---help---
  87. Include the sys_fillrect function for generic software rectangle
  88. filling. This is used by drivers that don't provide their own
  89. (accelerated) version and the framebuffer is in system RAM.
  90. config FB_SYS_COPYAREA
  91. tristate
  92. depends on FB
  93. default n
  94. ---help---
  95. Include the sys_copyarea function for generic software area copying.
  96. This is used by drivers that don't provide their own (accelerated)
  97. version and the framebuffer is in system RAM.
  98. config FB_SYS_IMAGEBLIT
  99. tristate
  100. depends on FB
  101. default n
  102. ---help---
  103. Include the sys_imageblit function for generic software image
  104. blitting. This is used by drivers that don't provide their own
  105. (accelerated) version and the framebuffer is in system RAM.
  106. config FB_SYS_FOPS
  107. tristate
  108. depends on FB
  109. default n
  110. config FB_DEFERRED_IO
  111. bool
  112. depends on FB
  113. default y
  114. config FB_SVGALIB
  115. tristate
  116. depends on FB
  117. default n
  118. ---help---
  119. Common utility functions useful to fbdev drivers of VGA-based
  120. cards.
  121. config FB_MACMODES
  122. tristate
  123. depends on FB
  124. default n
  125. config FB_BACKLIGHT
  126. bool
  127. depends on FB
  128. select BACKLIGHT_LCD_SUPPORT
  129. select BACKLIGHT_CLASS_DEVICE
  130. default n
  131. config FB_MODE_HELPERS
  132. bool "Enable Video Mode Handling Helpers"
  133. depends on FB
  134. default n
  135. ---help---
  136. This enables functions for handling video modes using the
  137. Generalized Timing Formula and the EDID parser. A few drivers rely
  138. on this feature such as the radeonfb, rivafb, and the i810fb. If
  139. your driver does not take advantage of this feature, choosing Y will
  140. just increase the kernel size by about 5K.
  141. config FB_TILEBLITTING
  142. bool "Enable Tile Blitting Support"
  143. depends on FB
  144. default n
  145. ---help---
  146. This enables tile blitting. Tile blitting is a drawing technique
  147. where the screen is divided into rectangular sections (tiles), whereas
  148. the standard blitting divides the screen into pixels. Because the
  149. default drawing element is a tile, drawing functions will be passed
  150. parameters in terms of number of tiles instead of number of pixels.
  151. For example, to draw a single character, instead of using bitmaps,
  152. an index to an array of bitmaps will be used. To clear or move a
  153. rectangular section of a screen, the rectangle will be described in
  154. terms of number of tiles in the x- and y-axis.
  155. This is particularly important to one driver, matroxfb. If
  156. unsure, say N.
  157. comment "Frame buffer hardware drivers"
  158. depends on FB
  159. config FB_CIRRUS
  160. tristate "Cirrus Logic support"
  161. depends on FB && (ZORRO || PCI)
  162. select FB_CFB_FILLRECT
  163. select FB_CFB_COPYAREA
  164. select FB_CFB_IMAGEBLIT
  165. ---help---
  166. This enables support for Cirrus Logic GD542x/543x based boards on
  167. Amiga: SD64, Piccolo, Picasso II/II+, Picasso IV, or EGS Spectrum.
  168. If you have a PCI-based system, this enables support for these
  169. chips: GD-543x, GD-544x, GD-5480.
  170. Please read the file <file:Documentation/fb/cirrusfb.txt>.
  171. Say N unless you have such a graphics board or plan to get one
  172. before you next recompile the kernel.
  173. config FB_PM2
  174. tristate "Permedia2 support"
  175. depends on FB && ((AMIGA && BROKEN) || PCI)
  176. select FB_CFB_FILLRECT
  177. select FB_CFB_COPYAREA
  178. select FB_CFB_IMAGEBLIT
  179. help
  180. This is the frame buffer device driver for the Permedia2 AGP frame
  181. buffer card from ASK, aka `Graphic Blaster Exxtreme'. There is a
  182. product page at
  183. <http://www.ask.com.hk/product/Permedia%202/permedia2.htm>.
  184. config FB_PM2_FIFO_DISCONNECT
  185. bool "enable FIFO disconnect feature"
  186. depends on FB_PM2 && PCI
  187. help
  188. Support the Permedia2 FIFO disconnect feature (see CONFIG_FB_PM2).
  189. config FB_ARMCLCD
  190. tristate "ARM PrimeCell PL110 support"
  191. depends on FB && ARM && ARM_AMBA
  192. select FB_CFB_FILLRECT
  193. select FB_CFB_COPYAREA
  194. select FB_CFB_IMAGEBLIT
  195. help
  196. This framebuffer device driver is for the ARM PrimeCell PL110
  197. Colour LCD controller. ARM PrimeCells provide the building
  198. blocks for System on a Chip devices.
  199. If you want to compile this as a module (=code which can be
  200. inserted into and removed from the running kernel), say M
  201. here and read <file:Documentation/kbuild/modules.txt>. The module
  202. will be called amba-clcd.
  203. choice
  204. depends on FB_ARMCLCD && (ARCH_LH7A40X || ARCH_LH7952X)
  205. prompt "LCD Panel"
  206. default FB_ARMCLCD_SHARP_LQ035Q7DB02
  207. config FB_ARMCLCD_SHARP_LQ035Q7DB02_HRTFT
  208. bool "LogicPD LCD 3.5\" QVGA w/HRTFT IC"
  209. help
  210. This is an implementation of the Sharp LQ035Q7DB02, a 3.5"
  211. color QVGA, HRTFT panel. The LogicPD device includes
  212. an integrated HRTFT controller IC.
  213. The native resolution is 240x320.
  214. config FB_ARMCLCD_SHARP_LQ057Q3DC02
  215. bool "LogicPD LCD 5.7\" QVGA"
  216. help
  217. This is an implementation of the Sharp LQ057Q3DC02, a 5.7"
  218. color QVGA, TFT panel. The LogicPD device includes an
  219. The native resolution is 320x240.
  220. config FB_ARMCLCD_SHARP_LQ64D343
  221. bool "LogicPD LCD 6.4\" VGA"
  222. help
  223. This is an implementation of the Sharp LQ64D343, a 6.4"
  224. color VGA, TFT panel. The LogicPD device includes an
  225. The native resolution is 640x480.
  226. config FB_ARMCLCD_SHARP_LQ10D368
  227. bool "LogicPD LCD 10.4\" VGA"
  228. help
  229. This is an implementation of the Sharp LQ10D368, a 10.4"
  230. color VGA, TFT panel. The LogicPD device includes an
  231. The native resolution is 640x480.
  232. config FB_ARMCLCD_SHARP_LQ121S1DG41
  233. bool "LogicPD LCD 12.1\" SVGA"
  234. help
  235. This is an implementation of the Sharp LQ121S1DG41, a 12.1"
  236. color SVGA, TFT panel. The LogicPD device includes an
  237. The native resolution is 800x600.
  238. This panel requires a clock rate may be an integer fraction
  239. of the base LCDCLK frequency. The driver will select the
  240. highest frequency available that is lower than the maximum
  241. allowed. The panel may flicker if the clock rate is
  242. slower than the recommended minimum.
  243. config FB_ARMCLCD_AUO_A070VW01_WIDE
  244. bool "AU Optronics A070VW01 LCD 7.0\" WIDE"
  245. help
  246. This is an implementation of the AU Optronics, a 7.0"
  247. WIDE Color. The native resolution is 234x480.
  248. config FB_ARMCLCD_HITACHI
  249. bool "Hitachi Wide Screen 800x480"
  250. help
  251. This is an implementation of the Hitachi 800x480.
  252. endchoice
  253. config FB_ACORN
  254. bool "Acorn VIDC support"
  255. depends on (FB = y) && ARM && (ARCH_ACORN || ARCH_CLPS7500)
  256. select FB_CFB_FILLRECT
  257. select FB_CFB_COPYAREA
  258. select FB_CFB_IMAGEBLIT
  259. help
  260. This is the frame buffer device driver for the Acorn VIDC graphics
  261. hardware found in Acorn RISC PCs and other ARM-based machines. If
  262. unsure, say N.
  263. config FB_CLPS711X
  264. bool "CLPS711X LCD support"
  265. depends on (FB = y) && ARM && ARCH_CLPS711X
  266. select FB_CFB_FILLRECT
  267. select FB_CFB_COPYAREA
  268. select FB_CFB_IMAGEBLIT
  269. help
  270. Say Y to enable the Framebuffer driver for the CLPS7111 and
  271. EP7212 processors.
  272. config FB_SA1100
  273. bool "SA-1100 LCD support"
  274. depends on (FB = y) && ARM && ARCH_SA1100
  275. select FB_CFB_FILLRECT
  276. select FB_CFB_COPYAREA
  277. select FB_CFB_IMAGEBLIT
  278. help
  279. This is a framebuffer device for the SA-1100 LCD Controller.
  280. See <http://www.linux-fbdev.org/> for information on framebuffer
  281. devices.
  282. If you plan to use the LCD display with your SA-1100 system, say
  283. Y here.
  284. config FB_IMX
  285. tristate "Motorola i.MX LCD support"
  286. depends on FB && ARM && ARCH_IMX
  287. select FB_CFB_FILLRECT
  288. select FB_CFB_COPYAREA
  289. select FB_CFB_IMAGEBLIT
  290. config FB_CYBER2000
  291. tristate "CyberPro 2000/2010/5000 support"
  292. depends on FB && PCI && (BROKEN || !SPARC64)
  293. select FB_CFB_FILLRECT
  294. select FB_CFB_COPYAREA
  295. select FB_CFB_IMAGEBLIT
  296. help
  297. This enables support for the Integraphics CyberPro 20x0 and 5000
  298. VGA chips used in the Rebel.com Netwinder and other machines.
  299. Say Y if you have a NetWinder or a graphics card containing this
  300. device, otherwise say N.
  301. config FB_APOLLO
  302. bool
  303. depends on (FB = y) && APOLLO
  304. default y
  305. select FB_CFB_FILLRECT
  306. select FB_CFB_IMAGEBLIT
  307. config FB_Q40
  308. bool
  309. depends on (FB = y) && Q40
  310. default y
  311. select FB_CFB_FILLRECT
  312. select FB_CFB_COPYAREA
  313. select FB_CFB_IMAGEBLIT
  314. config FB_AMIGA
  315. tristate "Amiga native chipset support"
  316. depends on FB && AMIGA
  317. help
  318. This is the frame buffer device driver for the builtin graphics
  319. chipset found in Amigas.
  320. To compile this driver as a module, choose M here: the
  321. module will be called amifb.
  322. config FB_AMIGA_OCS
  323. bool "Amiga OCS chipset support"
  324. depends on FB_AMIGA
  325. help
  326. This enables support for the original Agnus and Denise video chips,
  327. found in the Amiga 1000 and most A500's and A2000's. If you intend
  328. to run Linux on any of these systems, say Y; otherwise say N.
  329. config FB_AMIGA_ECS
  330. bool "Amiga ECS chipset support"
  331. depends on FB_AMIGA
  332. help
  333. This enables support for the Enhanced Chip Set, found in later
  334. A500's, later A2000's, the A600, the A3000, the A3000T and CDTV. If
  335. you intend to run Linux on any of these systems, say Y; otherwise
  336. say N.
  337. config FB_AMIGA_AGA
  338. bool "Amiga AGA chipset support"
  339. depends on FB_AMIGA
  340. help
  341. This enables support for the Advanced Graphics Architecture (also
  342. known as the AGA or AA) Chip Set, found in the A1200, A4000, A4000T
  343. and CD32. If you intend to run Linux on any of these systems, say Y;
  344. otherwise say N.
  345. config FB_FM2
  346. bool "Amiga FrameMaster II/Rainbow II support"
  347. depends on (FB = y) && ZORRO
  348. select FB_CFB_FILLRECT
  349. select FB_CFB_COPYAREA
  350. select FB_CFB_IMAGEBLIT
  351. help
  352. This is the frame buffer device driver for the Amiga FrameMaster
  353. card from BSC (exhibited 1992 but not shipped as a CBM product).
  354. config FB_ARC
  355. tristate "Arc Monochrome LCD board support"
  356. depends on FB && X86
  357. select FB_SYS_FILLRECT
  358. select FB_SYS_COPYAREA
  359. select FB_SYS_IMAGEBLIT
  360. select FB_SYS_FOPS
  361. help
  362. This enables support for the Arc Monochrome LCD board. The board
  363. is based on the KS-108 lcd controller and is typically a matrix
  364. of 2*n chips. This driver was tested with a 128x64 panel. This
  365. driver supports it for use with x86 SBCs through a 16 bit GPIO
  366. interface (8 bit data, 8 bit control). If you anticipate using
  367. this driver, say Y or M; otherwise say N. You must specify the
  368. GPIO IO address to be used for setting control and data.
  369. config FB_ATARI
  370. bool "Atari native chipset support"
  371. depends on (FB = y) && ATARI
  372. select FB_CFB_FILLRECT
  373. select FB_CFB_COPYAREA
  374. select FB_CFB_IMAGEBLIT
  375. help
  376. This is the frame buffer device driver for the builtin graphics
  377. chipset found in Ataris.
  378. config FB_OF
  379. bool "Open Firmware frame buffer device support"
  380. depends on (FB = y) && (PPC64 || PPC_OF) && (!PPC_PSERIES || PCI)
  381. select FB_CFB_FILLRECT
  382. select FB_CFB_COPYAREA
  383. select FB_CFB_IMAGEBLIT
  384. select FB_MACMODES
  385. help
  386. Say Y if you want support with Open Firmware for your graphics
  387. board.
  388. config FB_CONTROL
  389. bool "Apple \"control\" display support"
  390. depends on (FB = y) && PPC_PMAC && PPC32
  391. select FB_CFB_FILLRECT
  392. select FB_CFB_COPYAREA
  393. select FB_CFB_IMAGEBLIT
  394. select FB_MACMODES
  395. help
  396. This driver supports a frame buffer for the graphics adapter in the
  397. Power Macintosh 7300 and others.
  398. config FB_PLATINUM
  399. bool "Apple \"platinum\" display support"
  400. depends on (FB = y) && PPC_PMAC && PPC32
  401. select FB_CFB_FILLRECT
  402. select FB_CFB_COPYAREA
  403. select FB_CFB_IMAGEBLIT
  404. select FB_MACMODES
  405. help
  406. This driver supports a frame buffer for the "platinum" graphics
  407. adapter in some Power Macintoshes.
  408. config FB_VALKYRIE
  409. bool "Apple \"valkyrie\" display support"
  410. depends on (FB = y) && (MAC || (PPC_PMAC && PPC32))
  411. select FB_CFB_FILLRECT
  412. select FB_CFB_COPYAREA
  413. select FB_CFB_IMAGEBLIT
  414. select FB_MACMODES
  415. help
  416. This driver supports a frame buffer for the "valkyrie" graphics
  417. adapter in some Power Macintoshes.
  418. config FB_CT65550
  419. bool "Chips 65550 display support"
  420. depends on (FB = y) && PPC32
  421. select FB_CFB_FILLRECT
  422. select FB_CFB_COPYAREA
  423. select FB_CFB_IMAGEBLIT
  424. help
  425. This is the frame buffer device driver for the Chips & Technologies
  426. 65550 graphics chip in PowerBooks.
  427. config FB_ASILIANT
  428. bool "Asiliant (Chips) 69000 display support"
  429. depends on (FB = y) && PCI
  430. select FB_CFB_FILLRECT
  431. select FB_CFB_COPYAREA
  432. select FB_CFB_IMAGEBLIT
  433. help
  434. This is the frame buffer device driver for the Asiliant 69030 chipset
  435. config FB_IMSTT
  436. bool "IMS Twin Turbo display support"
  437. depends on (FB = y) && PCI
  438. select FB_CFB_IMAGEBLIT
  439. select FB_MACMODES if PPC
  440. help
  441. The IMS Twin Turbo is a PCI-based frame buffer card bundled with
  442. many Macintosh and compatible computers.
  443. config FB_VGA16
  444. tristate "VGA 16-color graphics support"
  445. depends on FB && (X86 || PPC)
  446. select FB_CFB_FILLRECT
  447. select FB_CFB_COPYAREA
  448. select FB_CFB_IMAGEBLIT
  449. select VGASTATE
  450. select FONT_8x16 if FRAMEBUFFER_CONSOLE
  451. help
  452. This is the frame buffer device driver for VGA 16 color graphic
  453. cards. Say Y if you have such a card.
  454. To compile this driver as a module, choose M here: the
  455. module will be called vga16fb.
  456. config FB_STI
  457. tristate "HP STI frame buffer device support"
  458. depends on FB && PARISC
  459. select FB_CFB_FILLRECT
  460. select FB_CFB_COPYAREA
  461. select FB_CFB_IMAGEBLIT
  462. default y
  463. ---help---
  464. STI refers to the HP "Standard Text Interface" which is a set of
  465. BIOS routines contained in a ROM chip in HP PA-RISC based machines.
  466. Enabling this option will implement the linux framebuffer device
  467. using calls to the STI BIOS routines for initialisation.
  468. If you enable this option, you will get a planar framebuffer device
  469. /dev/fb which will work on the most common HP graphic cards of the
  470. NGLE family, including the artist chips (in the 7xx and Bxxx series),
  471. HCRX, HCRX24, CRX, CRX24 and VisEG series.
  472. It is safe to enable this option, so you should probably say "Y".
  473. config FB_MAC
  474. bool "Generic Macintosh display support"
  475. depends on (FB = y) && MAC
  476. select FB_CFB_FILLRECT
  477. select FB_CFB_COPYAREA
  478. select FB_CFB_IMAGEBLIT
  479. select FB_MACMODES
  480. # bool ' Apple DAFB display support' CONFIG_FB_DAFB
  481. config FB_HP300
  482. bool
  483. depends on (FB = y) && HP300
  484. select FB_CFB_FILLRECT
  485. select FB_CFB_IMAGEBLIT
  486. default y
  487. config FB_TGA
  488. tristate "TGA/SFB+ framebuffer support"
  489. depends on FB && (ALPHA || TC)
  490. select FB_CFB_FILLRECT
  491. select FB_CFB_COPYAREA
  492. select FB_CFB_IMAGEBLIT
  493. select BITREVERSE
  494. ---help---
  495. This is the frame buffer device driver for generic TGA and SFB+
  496. graphic cards. These include DEC ZLXp-E1, -E2 and -E3 PCI cards,
  497. also known as PBXGA-A, -B and -C, and DEC ZLX-E1, -E2 and -E3
  498. TURBOchannel cards, also known as PMAGD-A, -B and -C.
  499. Due to hardware limitations ZLX-E2 and E3 cards are not supported
  500. for DECstation 5000/200 systems. Additionally due to firmware
  501. limitations these cards may cause troubles with booting DECstation
  502. 5000/240 and /260 systems, but are fully supported under Linux if
  503. you manage to get it going. ;-)
  504. Say Y if you have one of those.
  505. config FB_VESA
  506. bool "VESA VGA graphics support"
  507. depends on (FB = y) && X86
  508. select FB_CFB_FILLRECT
  509. select FB_CFB_COPYAREA
  510. select FB_CFB_IMAGEBLIT
  511. select VIDEO_SELECT
  512. help
  513. This is the frame buffer device driver for generic VESA 2.0
  514. compliant graphic cards. The older VESA 1.2 cards are not supported.
  515. You will get a boot time penguin logo at no additional cost. Please
  516. read <file:Documentation/fb/vesafb.txt>. If unsure, say Y.
  517. config FB_IMAC
  518. bool "Intel-based Macintosh Framebuffer Support"
  519. depends on (FB = y) && X86 && EFI
  520. select FB_CFB_FILLRECT
  521. select FB_CFB_COPYAREA
  522. select FB_CFB_IMAGEBLIT
  523. help
  524. This is the frame buffer device driver for the Intel-based Macintosh
  525. config FB_HECUBA
  526. tristate "Hecuba board support"
  527. depends on FB && X86 && MMU
  528. select FB_SYS_FILLRECT
  529. select FB_SYS_COPYAREA
  530. select FB_SYS_IMAGEBLIT
  531. select FB_SYS_FOPS
  532. select FB_DEFERRED_IO
  533. help
  534. This enables support for the Hecuba board. This driver was tested
  535. with an E-Ink 800x600 display and x86 SBCs through a 16 bit GPIO
  536. interface (8 bit data, 4 bit control). If you anticpate using
  537. this driver, say Y or M; otherwise say N. You must specify the
  538. GPIO IO address to be used for setting control and data.
  539. config FB_HGA
  540. tristate "Hercules mono graphics support"
  541. depends on FB && X86
  542. select FB_CFB_FILLRECT
  543. select FB_CFB_COPYAREA
  544. select FB_CFB_IMAGEBLIT
  545. help
  546. Say Y here if you have a Hercules mono graphics card.
  547. To compile this driver as a module, choose M here: the
  548. module will be called hgafb.
  549. As this card technology is 15 years old, most people will answer N
  550. here.
  551. config FB_HGA_ACCEL
  552. bool "Hercules mono Acceleration functions (EXPERIMENTAL)"
  553. depends on FB_HGA && EXPERIMENTAL
  554. ---help---
  555. This will compile the Hercules mono graphics with
  556. acceleration functions.
  557. config FB_SGIVW
  558. tristate "SGI Visual Workstation framebuffer support"
  559. depends on FB && X86_VISWS
  560. select FB_CFB_FILLRECT
  561. select FB_CFB_COPYAREA
  562. select FB_CFB_IMAGEBLIT
  563. help
  564. SGI Visual Workstation support for framebuffer graphics.
  565. config FB_GBE
  566. bool "SGI Graphics Backend frame buffer support"
  567. depends on (FB = y) && (SGI_IP32 || X86_VISWS)
  568. select FB_CFB_FILLRECT
  569. select FB_CFB_COPYAREA
  570. select FB_CFB_IMAGEBLIT
  571. help
  572. This is the frame buffer device driver for SGI Graphics Backend.
  573. This chip is used in SGI O2 and Visual Workstation 320/540.
  574. config FB_GBE_MEM
  575. int "Video memory size in MB"
  576. depends on FB_GBE
  577. default 4
  578. help
  579. This is the amount of memory reserved for the framebuffer,
  580. which can be any value between 1MB and 8MB.
  581. config FB_SBUS
  582. bool "SBUS and UPA framebuffers"
  583. depends on (FB = y) && SPARC
  584. help
  585. Say Y if you want support for SBUS or UPA based frame buffer device.
  586. config FB_BW2
  587. bool "BWtwo support"
  588. depends on (FB = y) && (SPARC && FB_SBUS)
  589. select FB_CFB_FILLRECT
  590. select FB_CFB_COPYAREA
  591. select FB_CFB_IMAGEBLIT
  592. help
  593. This is the frame buffer device driver for the BWtwo frame buffer.
  594. config FB_CG3
  595. bool "CGthree support"
  596. depends on (FB = y) && (SPARC && FB_SBUS)
  597. select FB_CFB_FILLRECT
  598. select FB_CFB_COPYAREA
  599. select FB_CFB_IMAGEBLIT
  600. help
  601. This is the frame buffer device driver for the CGthree frame buffer.
  602. config FB_CG6
  603. bool "CGsix (GX,TurboGX) support"
  604. depends on (FB = y) && (SPARC && FB_SBUS)
  605. select FB_CFB_COPYAREA
  606. select FB_CFB_IMAGEBLIT
  607. help
  608. This is the frame buffer device driver for the CGsix (GX, TurboGX)
  609. frame buffer.
  610. config FB_PVR2
  611. tristate "NEC PowerVR 2 display support"
  612. depends on FB && SH_DREAMCAST
  613. select FB_CFB_FILLRECT
  614. select FB_CFB_COPYAREA
  615. select FB_CFB_IMAGEBLIT
  616. ---help---
  617. Say Y here if you have a PowerVR 2 card in your box. If you plan to
  618. run linux on your Dreamcast, you will have to say Y here.
  619. This driver may or may not work on other PowerVR 2 cards, but is
  620. totally untested. Use at your own risk. If unsure, say N.
  621. To compile this driver as a module, choose M here: the
  622. module will be called pvr2fb.
  623. You can pass several parameters to the driver at boot time or at
  624. module load time. The parameters look like "video=pvr2:XXX", where
  625. the meaning of XXX can be found at the end of the main source file
  626. (<file:drivers/video/pvr2fb.c>). Please see the file
  627. <file:Documentation/fb/pvr2fb.txt>.
  628. config FB_EPSON1355
  629. bool "Epson 1355 framebuffer support"
  630. depends on (FB = y) && (SUPERH || ARCH_CEIVA)
  631. select FB_CFB_FILLRECT
  632. select FB_CFB_COPYAREA
  633. select FB_CFB_IMAGEBLIT
  634. help
  635. Build in support for the SED1355 Epson Research Embedded RAMDAC
  636. LCD/CRT Controller (since redesignated as the S1D13505) as a
  637. framebuffer. Product specs at
  638. <http://www.erd.epson.com/vdc/html/products.htm>.
  639. config FB_S1D13XXX
  640. tristate "Epson S1D13XXX framebuffer support"
  641. depends on FB
  642. select FB_CFB_FILLRECT
  643. select FB_CFB_COPYAREA
  644. select FB_CFB_IMAGEBLIT
  645. help
  646. Support for S1D13XXX framebuffer device family (currently only
  647. working with S1D13806). Product specs at
  648. <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm>
  649. config FB_NVIDIA
  650. tristate "nVidia Framebuffer Support"
  651. depends on FB && PCI
  652. select FB_BACKLIGHT if FB_NVIDIA_BACKLIGHT
  653. select FB_MODE_HELPERS
  654. select FB_CFB_FILLRECT
  655. select FB_CFB_COPYAREA
  656. select FB_CFB_IMAGEBLIT
  657. select BITREVERSE
  658. select VGASTATE
  659. help
  660. This driver supports graphics boards with the nVidia chips, TNT
  661. and newer. For very old chipsets, such as the RIVA128, then use
  662. the rivafb.
  663. Say Y if you have such a graphics board.
  664. To compile this driver as a module, choose M here: the
  665. module will be called nvidiafb.
  666. config FB_NVIDIA_I2C
  667. bool "Enable DDC Support"
  668. depends on FB_NVIDIA
  669. select FB_DDC
  670. help
  671. This enables I2C support for nVidia Chipsets. This is used
  672. only for getting EDID information from the attached display
  673. allowing for robust video mode handling and switching.
  674. Because fbdev-2.6 requires that drivers must be able to
  675. independently validate video mode parameters, you should say Y
  676. here.
  677. config FB_NVIDIA_BACKLIGHT
  678. bool "Support for backlight control"
  679. depends on FB_NVIDIA
  680. default y
  681. help
  682. Say Y here if you want to control the backlight of your display.
  683. config FB_RIVA
  684. tristate "nVidia Riva support"
  685. depends on FB && PCI
  686. select FB_BACKLIGHT if FB_RIVA_BACKLIGHT
  687. select FB_MODE_HELPERS
  688. select FB_CFB_FILLRECT
  689. select FB_CFB_COPYAREA
  690. select FB_CFB_IMAGEBLIT
  691. select BITREVERSE
  692. select VGASTATE
  693. help
  694. This driver supports graphics boards with the nVidia Riva/Geforce
  695. chips.
  696. Say Y if you have such a graphics board.
  697. To compile this driver as a module, choose M here: the
  698. module will be called rivafb.
  699. config FB_RIVA_I2C
  700. bool "Enable DDC Support"
  701. depends on FB_RIVA
  702. select FB_DDC
  703. help
  704. This enables I2C support for nVidia Chipsets. This is used
  705. only for getting EDID information from the attached display
  706. allowing for robust video mode handling and switching.
  707. Because fbdev-2.6 requires that drivers must be able to
  708. independently validate video mode parameters, you should say Y
  709. here.
  710. config FB_RIVA_DEBUG
  711. bool "Lots of debug output from Riva(nVidia) driver"
  712. depends on FB_RIVA
  713. default n
  714. help
  715. Say Y here if you want the Riva driver to output all sorts
  716. of debugging information to provide to the maintainer when
  717. something goes wrong.
  718. config FB_RIVA_BACKLIGHT
  719. bool "Support for backlight control"
  720. depends on FB_RIVA
  721. default y
  722. help
  723. Say Y here if you want to control the backlight of your display.
  724. config FB_I810
  725. tristate "Intel 810/815 support (EXPERIMENTAL)"
  726. depends on FB && EXPERIMENTAL && PCI && X86_32
  727. select AGP
  728. select AGP_INTEL
  729. select FB_MODE_HELPERS
  730. select FB_CFB_FILLRECT
  731. select FB_CFB_COPYAREA
  732. select FB_CFB_IMAGEBLIT
  733. select VGASTATE
  734. help
  735. This driver supports the on-board graphics built in to the Intel 810
  736. and 815 chipsets. Say Y if you have and plan to use such a board.
  737. To compile this driver as a module, choose M here: the
  738. module will be called i810fb.
  739. For more information, please read
  740. <file:Documentation/fb/intel810.txt>
  741. config FB_I810_GTF
  742. bool "use VESA Generalized Timing Formula"
  743. depends on FB_I810
  744. help
  745. If you say Y, then the VESA standard, Generalized Timing Formula
  746. or GTF, will be used to calculate the required video timing values
  747. per video mode. Since the GTF allows nondiscrete timings
  748. (nondiscrete being a range of values as opposed to discrete being a
  749. set of values), you'll be able to use any combination of horizontal
  750. and vertical resolutions, and vertical refresh rates without having
  751. to specify your own timing parameters. This is especially useful
  752. to maximize the performance of an aging display, or if you just
  753. have a display with nonstandard dimensions. A VESA compliant
  754. monitor is recommended, but can still work with non-compliant ones.
  755. If you need or want this, then select this option. The timings may
  756. not be compliant with Intel's recommended values. Use at your own
  757. risk.
  758. If you say N, the driver will revert to discrete video timings
  759. using a set recommended by Intel in their documentation.
  760. If unsure, say N.
  761. config FB_I810_I2C
  762. bool "Enable DDC Support"
  763. depends on FB_I810 && FB_I810_GTF
  764. select FB_DDC
  765. help
  766. config FB_INTEL
  767. tristate "Intel 830M/845G/852GM/855GM/865G/915G/945G support (EXPERIMENTAL)"
  768. depends on FB && EXPERIMENTAL && PCI && X86
  769. select AGP
  770. select AGP_INTEL
  771. select FB_MODE_HELPERS
  772. select FB_CFB_FILLRECT
  773. select FB_CFB_COPYAREA
  774. select FB_CFB_IMAGEBLIT
  775. help
  776. This driver supports the on-board graphics built in to the Intel
  777. 830M/845G/852GM/855GM/865G/915G/915GM/945G/945GM chipsets.
  778. Say Y if you have and plan to use such a board.
  779. If you say Y here and want DDC/I2C support you must first say Y to
  780. "I2C support" and "I2C bit-banging support" in the character devices
  781. section.
  782. If you say M here then "I2C support" and "I2C bit-banging support"
  783. can be build either as modules or built-in.
  784. To compile this driver as a module, choose M here: the
  785. module will be called intelfb.
  786. For more information, please read <file:Documentation/fb/intelfb.txt>
  787. config FB_INTEL_DEBUG
  788. bool "Intel driver Debug Messages"
  789. depends on FB_INTEL
  790. ---help---
  791. Say Y here if you want the Intel driver to output all sorts
  792. of debugging information to provide to the maintainer when
  793. something goes wrong.
  794. config FB_INTEL_I2C
  795. bool "DDC/I2C for Intel framebuffer support"
  796. depends on FB_INTEL
  797. select FB_DDC
  798. default y
  799. help
  800. Say Y here if you want DDC/I2C support for your on-board Intel graphics.
  801. config FB_MATROX
  802. tristate "Matrox acceleration"
  803. depends on FB && PCI
  804. select FB_CFB_FILLRECT
  805. select FB_CFB_COPYAREA
  806. select FB_CFB_IMAGEBLIT
  807. select FB_TILEBLITTING
  808. select FB_MACMODES if PPC_PMAC
  809. ---help---
  810. Say Y here if you have a Matrox Millennium, Matrox Millennium II,
  811. Matrox Mystique, Matrox Mystique 220, Matrox Productiva G100, Matrox
  812. Mystique G200, Matrox Millennium G200, Matrox Marvel G200 video,
  813. Matrox G400, G450 or G550 card in your box.
  814. To compile this driver as a module, choose M here: the
  815. module will be called matroxfb.
  816. You can pass several parameters to the driver at boot time or at
  817. module load time. The parameters look like "video=matrox:XXX", and
  818. are described in <file:Documentation/fb/matroxfb.txt>.
  819. config FB_MATROX_MILLENIUM
  820. bool "Millennium I/II support"
  821. depends on FB_MATROX
  822. help
  823. Say Y here if you have a Matrox Millennium or Matrox Millennium II
  824. video card. If you select "Advanced lowlevel driver options" below,
  825. you should check 4 bpp packed pixel, 8 bpp packed pixel, 16 bpp
  826. packed pixel, 24 bpp packed pixel and 32 bpp packed pixel. You can
  827. also use font widths different from 8.
  828. config FB_MATROX_MYSTIQUE
  829. bool "Mystique support"
  830. depends on FB_MATROX
  831. help
  832. Say Y here if you have a Matrox Mystique or Matrox Mystique 220
  833. video card. If you select "Advanced lowlevel driver options" below,
  834. you should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp
  835. packed pixel and 32 bpp packed pixel. You can also use font widths
  836. different from 8.
  837. config FB_MATROX_G
  838. bool "G100/G200/G400/G450/G550 support"
  839. depends on FB_MATROX
  840. ---help---
  841. Say Y here if you have a Matrox G100, G200, G400, G450 or G550 based
  842. video card. If you select "Advanced lowlevel driver options", you
  843. should check 8 bpp packed pixel, 16 bpp packed pixel, 24 bpp packed
  844. pixel and 32 bpp packed pixel. You can also use font widths
  845. different from 8.
  846. If you need support for G400 secondary head, you must first say Y to
  847. "I2C support" in the character devices section, and then to
  848. "Matrox I2C support" and "G400 second head support" here in the
  849. framebuffer section. G450/G550 secondary head and digital output
  850. are supported without additional modules.
  851. The driver starts in monitor mode. You must use the matroxset tool
  852. (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
  853. swap primary and secondary head outputs, or to change output mode.
  854. Secondary head driver always start in 640x480 resolution and you
  855. must use fbset to change it.
  856. Do not forget that second head supports only 16 and 32 bpp
  857. packed pixels, so it is a good idea to compile them into the kernel
  858. too. You can use only some font widths, as the driver uses generic
  859. painting procedures (the secondary head does not use acceleration
  860. engine).
  861. G450/G550 hardware can display TV picture only from secondary CRTC,
  862. and it performs no scaling, so picture must have 525 or 625 lines.
  863. config FB_MATROX_I2C
  864. tristate "Matrox I2C support"
  865. depends on FB_MATROX
  866. select FB_DDC
  867. ---help---
  868. This drivers creates I2C buses which are needed for accessing the
  869. DDC (I2C) bus present on all Matroxes, an I2C bus which
  870. interconnects Matrox optional devices, like MGA-TVO on G200 and
  871. G400, and the secondary head DDC bus, present on G400 only.
  872. You can say Y or M here if you want to experiment with monitor
  873. detection code. You must say Y or M here if you want to use either
  874. second head of G400 or MGA-TVO on G200 or G400.
  875. If you compile it as module, it will create a module named
  876. i2c-matroxfb.
  877. config FB_MATROX_MAVEN
  878. tristate "G400 second head support"
  879. depends on FB_MATROX_G && FB_MATROX_I2C
  880. ---help---
  881. WARNING !!! This support does not work with G450 !!!
  882. Say Y or M here if you want to use a secondary head (meaning two
  883. monitors in parallel) on G400 or MGA-TVO add-on on G200. Secondary
  884. head is not compatible with accelerated XFree 3.3.x SVGA servers -
  885. secondary head output is blanked while you are in X. With XFree
  886. 3.9.17 preview you can use both heads if you use SVGA over fbdev or
  887. the fbdev driver on first head and the fbdev driver on second head.
  888. If you compile it as module, two modules are created,
  889. matroxfb_crtc2 and matroxfb_maven. Matroxfb_maven is needed for
  890. both G200 and G400, matroxfb_crtc2 is needed only by G400. You must
  891. also load i2c-matroxfb to get it to run.
  892. The driver starts in monitor mode and you must use the matroxset
  893. tool (available at
  894. <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
  895. PAL or NTSC or to swap primary and secondary head outputs.
  896. Secondary head driver also always start in 640x480 resolution, you
  897. must use fbset to change it.
  898. Also do not forget that second head supports only 16 and 32 bpp
  899. packed pixels, so it is a good idea to compile them into the kernel
  900. too. You can use only some font widths, as the driver uses generic
  901. painting procedures (the secondary head does not use acceleration
  902. engine).
  903. config FB_MATROX_MULTIHEAD
  904. bool "Multihead support"
  905. depends on FB_MATROX
  906. ---help---
  907. Say Y here if you have more than one (supported) Matrox device in
  908. your computer and you want to use all of them for different monitors
  909. ("multihead"). If you have only one device, you should say N because
  910. the driver compiled with Y is larger and a bit slower, especially on
  911. ia32 (ix86).
  912. If you said M to "Matrox unified accelerated driver" and N here, you
  913. will still be able to use several Matrox devices simultaneously:
  914. insert several instances of the module matroxfb into the kernel
  915. with insmod, supplying the parameter "dev=N" where N is 0, 1, etc.
  916. for the different Matrox devices. This method is slightly faster but
  917. uses 40 KB of kernel memory per Matrox card.
  918. There is no need for enabling 'Matrox multihead support' if you have
  919. only one Matrox card in the box.
  920. config FB_RADEON
  921. tristate "ATI Radeon display support"
  922. depends on FB && PCI
  923. select FB_BACKLIGHT if FB_RADEON_BACKLIGHT
  924. select FB_MODE_HELPERS
  925. select FB_CFB_FILLRECT
  926. select FB_CFB_COPYAREA
  927. select FB_CFB_IMAGEBLIT
  928. select FB_MACMODES if PPC_OF
  929. help
  930. Choose this option if you want to use an ATI Radeon graphics card as
  931. a framebuffer device. There are both PCI and AGP versions. You
  932. don't need to choose this to run the Radeon in plain VGA mode.
  933. If you say Y here and want DDC/I2C support you must first say Y to
  934. "I2C support" and "I2C bit-banging support" in the character devices
  935. section.
  936. If you say M here then "I2C support" and "I2C bit-banging support"
  937. can be build either as modules or built-in.
  938. There is a product page at
  939. http://apps.ati.com/ATIcompare/
  940. config FB_RADEON_I2C
  941. bool "DDC/I2C for ATI Radeon support"
  942. depends on FB_RADEON
  943. select FB_DDC
  944. default y
  945. help
  946. Say Y here if you want DDC/I2C support for your Radeon board.
  947. config FB_RADEON_BACKLIGHT
  948. bool "Support for backlight control"
  949. depends on FB_RADEON
  950. default y
  951. help
  952. Say Y here if you want to control the backlight of your display.
  953. config FB_RADEON_DEBUG
  954. bool "Lots of debug output from Radeon driver"
  955. depends on FB_RADEON
  956. default n
  957. help
  958. Say Y here if you want the Radeon driver to output all sorts
  959. of debugging information to provide to the maintainer when
  960. something goes wrong.
  961. config FB_ATY128
  962. tristate "ATI Rage128 display support"
  963. depends on FB && PCI
  964. select FB_CFB_FILLRECT
  965. select FB_CFB_COPYAREA
  966. select FB_CFB_IMAGEBLIT
  967. select FB_BACKLIGHT if FB_ATY128_BACKLIGHT
  968. select FB_MACMODES if PPC_PMAC
  969. help
  970. This driver supports graphics boards with the ATI Rage128 chips.
  971. Say Y if you have such a graphics board and read
  972. <file:Documentation/fb/aty128fb.txt>.
  973. To compile this driver as a module, choose M here: the
  974. module will be called aty128fb.
  975. config FB_ATY128_BACKLIGHT
  976. bool "Support for backlight control"
  977. depends on FB_ATY128
  978. default y
  979. help
  980. Say Y here if you want to control the backlight of your display.
  981. config FB_ATY
  982. tristate "ATI Mach64 display support" if PCI || ATARI
  983. depends on FB && !SPARC32
  984. select FB_CFB_FILLRECT
  985. select FB_CFB_COPYAREA
  986. select FB_CFB_IMAGEBLIT
  987. select FB_BACKLIGHT if FB_ATY_BACKLIGHT
  988. select FB_MACMODES if PPC
  989. help
  990. This driver supports graphics boards with the ATI Mach64 chips.
  991. Say Y if you have such a graphics board.
  992. To compile this driver as a module, choose M here: the
  993. module will be called atyfb.
  994. config FB_ATY_CT
  995. bool "Mach64 CT/VT/GT/LT (incl. 3D RAGE) support"
  996. depends on PCI && FB_ATY
  997. default y if SPARC64 && FB_PCI
  998. help
  999. Say Y here to support use of ATI's 64-bit Rage boards (or other
  1000. boards based on the Mach64 CT, VT, GT, and LT chipsets) as a
  1001. framebuffer device. The ATI product support page for these boards
  1002. is at <http://support.ati.com/products/pc/mach64/>.
  1003. config FB_ATY_GENERIC_LCD
  1004. bool "Mach64 generic LCD support (EXPERIMENTAL)"
  1005. depends on FB_ATY_CT
  1006. help
  1007. Say Y if you have a laptop with an ATI Rage LT PRO, Rage Mobility,
  1008. Rage XC, or Rage XL chipset.
  1009. config FB_ATY_GX
  1010. bool "Mach64 GX support" if PCI
  1011. depends on FB_ATY
  1012. default y if ATARI
  1013. help
  1014. Say Y here to support use of the ATI Mach64 Graphics Expression
  1015. board (or other boards based on the Mach64 GX chipset) as a
  1016. framebuffer device. The ATI product support page for these boards
  1017. is at
  1018. <http://support.ati.com/products/pc/mach64/graphics_xpression.html>.
  1019. config FB_ATY_BACKLIGHT
  1020. bool "Support for backlight control"
  1021. depends on FB_ATY
  1022. default y
  1023. help
  1024. Say Y here if you want to control the backlight of your display.
  1025. config FB_S3
  1026. tristate "S3 Trio/Virge support"
  1027. depends on FB && PCI
  1028. select FB_CFB_FILLRECT
  1029. select FB_CFB_COPYAREA
  1030. select FB_CFB_IMAGEBLIT
  1031. select FB_TILEBLITTING
  1032. select FB_SVGALIB
  1033. select VGASTATE
  1034. ---help---
  1035. Driver for graphics boards with S3 Trio / S3 Virge chip.
  1036. config FB_SAVAGE
  1037. tristate "S3 Savage support"
  1038. depends on FB && PCI && EXPERIMENTAL
  1039. select FB_MODE_HELPERS
  1040. select FB_CFB_FILLRECT
  1041. select FB_CFB_COPYAREA
  1042. select FB_CFB_IMAGEBLIT
  1043. select VGASTATE
  1044. help
  1045. This driver supports notebooks and computers with S3 Savage PCI/AGP
  1046. chips.
  1047. Say Y if you have such a graphics card.
  1048. To compile this driver as a module, choose M here; the module
  1049. will be called savagefb.
  1050. config FB_SAVAGE_I2C
  1051. bool "Enable DDC2 Support"
  1052. depends on FB_SAVAGE
  1053. select FB_DDC
  1054. help
  1055. This enables I2C support for S3 Savage Chipsets. This is used
  1056. only for getting EDID information from the attached display
  1057. allowing for robust video mode handling and switching.
  1058. Because fbdev-2.6 requires that drivers must be able to
  1059. independently validate video mode parameters, you should say Y
  1060. here.
  1061. config FB_SAVAGE_ACCEL
  1062. bool "Enable Console Acceleration"
  1063. depends on FB_SAVAGE
  1064. default n
  1065. help
  1066. This option will compile in console acceleration support. If
  1067. the resulting framebuffer console has bothersome glitches, then
  1068. choose N here.
  1069. config FB_SIS
  1070. tristate "SiS/XGI display support"
  1071. depends on FB && PCI
  1072. select FB_CFB_FILLRECT
  1073. select FB_CFB_COPYAREA
  1074. select FB_CFB_IMAGEBLIT
  1075. help
  1076. This is the frame buffer device driver for the SiS 300, 315, 330
  1077. and 340 series as well as XGI V3XT, V5, V8, Z7 graphics chipsets.
  1078. Specs available at <http://www.sis.com> and <http://www.xgitech.com>.
  1079. To compile this driver as a module, choose M here; the module
  1080. will be called sisfb.
  1081. config FB_SIS_300
  1082. bool "SiS 300 series support"
  1083. depends on FB_SIS
  1084. help
  1085. Say Y here to support use of the SiS 300/305, 540, 630 and 730.
  1086. config FB_SIS_315
  1087. bool "SiS 315/330/340 series and XGI support"
  1088. depends on FB_SIS
  1089. help
  1090. Say Y here to support use of the SiS 315, 330 and 340 series
  1091. (315/H/PRO, 55x, 650, 651, 740, 330, 661, 741, 760, 761) as well
  1092. as XGI V3XT, V5, V8 and Z7.
  1093. config FB_NEOMAGIC
  1094. tristate "NeoMagic display support"
  1095. depends on FB && PCI
  1096. select FB_MODE_HELPERS
  1097. select FB_CFB_FILLRECT
  1098. select FB_CFB_COPYAREA
  1099. select FB_CFB_IMAGEBLIT
  1100. select VGASTATE
  1101. help
  1102. This driver supports notebooks with NeoMagic PCI chips.
  1103. Say Y if you have such a graphics card.
  1104. To compile this driver as a module, choose M here: the
  1105. module will be called neofb.
  1106. config FB_KYRO
  1107. tristate "IMG Kyro support"
  1108. depends on FB && PCI
  1109. select FB_CFB_FILLRECT
  1110. select FB_CFB_COPYAREA
  1111. select FB_CFB_IMAGEBLIT
  1112. help
  1113. Say Y here if you have a STG4000 / Kyro / PowerVR 3 based
  1114. graphics board.
  1115. To compile this driver as a module, choose M here: the
  1116. module will be called kyrofb.
  1117. config FB_3DFX
  1118. tristate "3Dfx Banshee/Voodoo3 display support"
  1119. depends on FB && PCI
  1120. select FB_CFB_IMAGEBLIT
  1121. select FB_CFB_FILLRECT
  1122. select FB_CFB_COPYAREA
  1123. help
  1124. This driver supports graphics boards with the 3Dfx Banshee/Voodoo3
  1125. chips. Say Y if you have such a graphics board.
  1126. To compile this driver as a module, choose M here: the
  1127. module will be called tdfxfb.
  1128. config FB_3DFX_ACCEL
  1129. bool "3Dfx Banshee/Voodoo3 Acceleration functions (EXPERIMENTAL)"
  1130. depends on FB_3DFX && EXPERIMENTAL
  1131. ---help---
  1132. This will compile the 3Dfx Banshee/Voodoo3 frame buffer device
  1133. with acceleration functions.
  1134. config FB_VOODOO1
  1135. tristate "3Dfx Voodoo Graphics (sst1) support"
  1136. depends on FB && PCI
  1137. select FB_CFB_FILLRECT
  1138. select FB_CFB_COPYAREA
  1139. select FB_CFB_IMAGEBLIT
  1140. ---help---
  1141. Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
  1142. Voodoo2 (cvg) based graphics card.
  1143. To compile this driver as a module, choose M here: the
  1144. module will be called sstfb.
  1145. WARNING: Do not use any application that uses the 3D engine
  1146. (namely glide) while using this driver.
  1147. Please read the <file:Documentation/fb/README-sstfb.txt> for supported
  1148. options and other important info support.
  1149. config FB_CYBLA
  1150. tristate "Cyberblade/i1 support"
  1151. depends on FB && PCI && X86_32 && !64BIT
  1152. select FB_CFB_IMAGEBLIT
  1153. select VIDEO_SELECT
  1154. ---help---
  1155. This driver is supposed to support the Trident Cyberblade/i1
  1156. graphics core integrated in the VIA VT8601A North Bridge,
  1157. also known as VIA Apollo PLE133.
  1158. Status:
  1159. - Developed, tested and working on EPIA 5000 and EPIA 800.
  1160. - Does work reliable on all systems with CRT/LCD connected to
  1161. normal VGA ports.
  1162. - Should work on systems that do use the internal LCD port, but
  1163. this is absolutely not tested.
  1164. Character imageblit, copyarea and rectangle fill are hw accelerated,
  1165. ypan scrolling is used by default.
  1166. Please do read <file:Documentation/fb/cyblafb/*>.
  1167. To compile this driver as a module, choose M here: the
  1168. module will be called cyblafb.
  1169. config FB_TRIDENT
  1170. tristate "Trident support"
  1171. depends on FB && PCI
  1172. select FB_CFB_FILLRECT
  1173. select FB_CFB_COPYAREA
  1174. select FB_CFB_IMAGEBLIT
  1175. ---help---
  1176. This driver is supposed to support graphics boards with the
  1177. Trident CyberXXXX/Image/CyberBlade chips mostly found in laptops
  1178. but also on some motherboards. For more information, read
  1179. <file:Documentation/fb/tridentfb.txt>
  1180. Cyberblade/i1 support will be removed soon, use the cyblafb driver
  1181. instead.
  1182. Say Y if you have such a graphics board.
  1183. To compile this driver as a module, choose M here: the
  1184. module will be called tridentfb.
  1185. config FB_TRIDENT_ACCEL
  1186. bool "Trident Acceleration functions (EXPERIMENTAL)"
  1187. depends on FB_TRIDENT && EXPERIMENTAL
  1188. ---help---
  1189. This will compile the Trident frame buffer device with
  1190. acceleration functions.
  1191. config FB_PM3
  1192. tristate "Permedia3 support"
  1193. depends on FB && PCI && BROKEN
  1194. help
  1195. This is the frame buffer device driver for the 3DLabs Permedia3
  1196. chipset, used in Formac ProFormance III, 3DLabs Oxygen VX1 &
  1197. similar boards, 3DLabs Permedia3 Create!, Appian Jeronimo 2000
  1198. and maybe other boards.
  1199. config FB_AU1100
  1200. bool "Au1100 LCD Driver"
  1201. depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y
  1202. config FB_AU1200
  1203. bool "Au1200 LCD Driver"
  1204. depends on (FB = y) && MIPS && SOC_AU1200
  1205. select FB_CFB_FILLRECT
  1206. select FB_CFB_COPYAREA
  1207. select FB_CFB_IMAGEBLIT
  1208. help
  1209. This is the framebuffer driver for the AMD Au1200 SOC. It can drive
  1210. various panels and CRTs by passing in kernel cmd line option
  1211. au1200fb:panel=<name>.
  1212. source "drivers/video/geode/Kconfig"
  1213. config FB_FFB
  1214. bool "Creator/Creator3D/Elite3D support"
  1215. depends on FB_SBUS && SPARC64
  1216. select FB_CFB_COPYAREA
  1217. select FB_CFB_IMAGEBLIT
  1218. help
  1219. This is the frame buffer device driver for the Creator, Creator3D,
  1220. and Elite3D graphics boards.
  1221. config FB_TCX
  1222. bool "TCX (SS4/SS5 only) support"
  1223. depends on FB_SBUS
  1224. select FB_CFB_FILLRECT
  1225. select FB_CFB_COPYAREA
  1226. select FB_CFB_IMAGEBLIT
  1227. help
  1228. This is the frame buffer device driver for the TCX 24/8bit frame
  1229. buffer.
  1230. config FB_CG14
  1231. bool "CGfourteen (SX) support"
  1232. depends on FB_SBUS
  1233. select FB_CFB_FILLRECT
  1234. select FB_CFB_COPYAREA
  1235. select FB_CFB_IMAGEBLIT
  1236. help
  1237. This is the frame buffer device driver for the CGfourteen frame
  1238. buffer on Desktop SPARCsystems with the SX graphics option.
  1239. config FB_P9100
  1240. bool "P9100 (Sparcbook 3 only) support"
  1241. depends on FB_SBUS
  1242. select FB_CFB_FILLRECT
  1243. select FB_CFB_COPYAREA
  1244. select FB_CFB_IMAGEBLIT
  1245. help
  1246. This is the frame buffer device driver for the P9100 card
  1247. supported on Sparcbook 3 machines.
  1248. config FB_LEO
  1249. bool "Leo (ZX) support"
  1250. depends on FB_SBUS
  1251. select FB_CFB_FILLRECT
  1252. select FB_CFB_COPYAREA
  1253. select FB_CFB_IMAGEBLIT
  1254. help
  1255. This is the frame buffer device driver for the SBUS-based Sun ZX
  1256. (leo) frame buffer cards.
  1257. config FB_XVR500
  1258. bool "Sun XVR-500 3DLABS Wildcat support"
  1259. depends on FB && PCI && SPARC64
  1260. select FB_CFB_FILLRECT
  1261. select FB_CFB_COPYAREA
  1262. select FB_CFB_IMAGEBLIT
  1263. help
  1264. This is the framebuffer device for the Sun XVR-500 and similar
  1265. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  1266. only works on sparc64 systems where the system firwmare has
  1267. mostly initialized the card already. It is treated as a
  1268. completely dumb framebuffer device.
  1269. config FB_XVR2500
  1270. bool "Sun XVR-2500 3DLABS Wildcat support"
  1271. depends on FB && PCI && SPARC64
  1272. select FB_CFB_FILLRECT
  1273. select FB_CFB_COPYAREA
  1274. select FB_CFB_IMAGEBLIT
  1275. help
  1276. This is the framebuffer device for the Sun XVR-2500 and similar
  1277. graphics cards based upon the 3DLABS Wildcat chipset. The driver
  1278. only works on sparc64 systems where the system firwmare has
  1279. mostly initialized the card already. It is treated as a
  1280. completely dumb framebuffer device.
  1281. config FB_PCI
  1282. bool "PCI framebuffers"
  1283. depends on (FB = y) && PCI && SPARC
  1284. config FB_IGA
  1285. bool "IGA 168x display support"
  1286. depends on SPARC32 && FB_PCI
  1287. select FB_CFB_FILLRECT
  1288. select FB_CFB_COPYAREA
  1289. select FB_CFB_IMAGEBLIT
  1290. help
  1291. This is the framebuffer device for the INTERGRAPHICS 1680 and
  1292. successor frame buffer cards.
  1293. config FB_HIT
  1294. tristate "HD64461 Frame Buffer support"
  1295. depends on FB && HD64461
  1296. select FB_CFB_FILLRECT
  1297. select FB_CFB_COPYAREA
  1298. select FB_CFB_IMAGEBLIT
  1299. help
  1300. This is the frame buffer device driver for the Hitachi HD64461 LCD
  1301. frame buffer card.
  1302. config FB_PMAG_AA
  1303. bool "PMAG-AA TURBOchannel framebuffer support"
  1304. depends on (FB = y) && TC
  1305. select FB_CFB_FILLRECT
  1306. select FB_CFB_COPYAREA
  1307. select FB_CFB_IMAGEBLIT
  1308. help
  1309. Support for the PMAG-AA TURBOchannel framebuffer card (1280x1024x1)
  1310. used mainly in the MIPS-based DECstation series.
  1311. config FB_PMAG_BA
  1312. tristate "PMAG-BA TURBOchannel framebuffer support"
  1313. depends on FB && TC
  1314. select FB_CFB_FILLRECT
  1315. select FB_CFB_COPYAREA
  1316. select FB_CFB_IMAGEBLIT
  1317. help
  1318. Support for the PMAG-BA TURBOchannel framebuffer card (1024x864x8)
  1319. used mainly in the MIPS-based DECstation series.
  1320. config FB_PMAGB_B
  1321. tristate "PMAGB-B TURBOchannel framebuffer support"
  1322. depends on TC
  1323. select FB_CFB_FILLRECT
  1324. select FB_CFB_COPYAREA
  1325. select FB_CFB_IMAGEBLIT
  1326. help
  1327. Support for the PMAGB-B TURBOchannel framebuffer card used mainly
  1328. in the MIPS-based DECstation series. The card is currently only
  1329. supported in 1280x1024x8 mode.
  1330. config FB_MAXINE
  1331. bool "Maxine (Personal DECstation) onboard framebuffer support"
  1332. depends on (FB = y) && MACH_DECSTATION
  1333. select FB_CFB_FILLRECT
  1334. select FB_CFB_COPYAREA
  1335. select FB_CFB_IMAGEBLIT
  1336. help
  1337. Support for the onboard framebuffer (1024x768x8) in the Personal
  1338. DECstation series (Personal DECstation 5000/20, /25, /33, /50,
  1339. Codename "Maxine").
  1340. config FB_TX3912
  1341. bool "TMPTX3912/PR31700 frame buffer support"
  1342. depends on (FB = y) && NINO
  1343. select FB_CFB_FILLRECT
  1344. select FB_CFB_COPYAREA
  1345. select FB_CFB_IMAGEBLIT
  1346. help
  1347. The TX3912 is a Toshiba RISC processor based on the MIPS 3900 core
  1348. see <http://www.toshiba.com/taec/components/Generic/risc/tx3912.htm>.
  1349. Say Y here to enable kernel support for the on-board framebuffer.
  1350. config FB_G364
  1351. bool "G364 frame buffer support"
  1352. depends on (FB = y) && (MIPS_MAGNUM_4000 || OLIVETTI_M700)
  1353. select FB_CFB_FILLRECT
  1354. select FB_CFB_COPYAREA
  1355. select FB_CFB_IMAGEBLIT
  1356. help
  1357. The G364 driver is the framebuffer used in MIPS Magnum 4000 and
  1358. Olivetti M700-10 systems.
  1359. config FB_68328
  1360. bool "Motorola 68328 native frame buffer support"
  1361. depends on (FB = y) && (M68328 || M68EZ328 || M68VZ328)
  1362. select FB_CFB_FILLRECT
  1363. select FB_CFB_COPYAREA
  1364. select FB_CFB_IMAGEBLIT
  1365. help
  1366. Say Y here if you want to support the built-in frame buffer of
  1367. the Motorola 68328 CPU family.
  1368. config FB_PXA
  1369. tristate "PXA LCD framebuffer support"
  1370. depends on FB && ARCH_PXA
  1371. select FB_CFB_FILLRECT
  1372. select FB_CFB_COPYAREA
  1373. select FB_CFB_IMAGEBLIT
  1374. ---help---
  1375. Frame buffer driver for the built-in LCD controller in the Intel
  1376. PXA2x0 processor.
  1377. This driver is also available as a module ( = code which can be
  1378. inserted and removed from the running kernel whenever you want). The
  1379. module will be called pxafb. If you want to compile it as a module,
  1380. say M here and read <file:Documentation/kbuild/modules.txt>.
  1381. If unsure, say N.
  1382. config FB_PXA_PARAMETERS
  1383. bool "PXA LCD command line parameters"
  1384. default n
  1385. depends on FB_PXA
  1386. ---help---
  1387. Enable the use of kernel command line or module parameters
  1388. to configure the physical properties of the LCD panel when
  1389. using the PXA LCD driver.
  1390. This option allows you to override the panel parameters
  1391. supplied by the platform in order to support multiple
  1392. different models of flatpanel. If you will only be using a
  1393. single model of flatpanel then you can safely leave this
  1394. option disabled.
  1395. <file:Documentation/fb/pxafb.txt> describes the available parameters.
  1396. config FB_MBX
  1397. tristate "2700G LCD framebuffer support"
  1398. depends on FB && ARCH_PXA
  1399. select FB_CFB_FILLRECT
  1400. select FB_CFB_COPYAREA
  1401. select FB_CFB_IMAGEBLIT
  1402. ---help---
  1403. Framebuffer driver for the Intel 2700G (Marathon) Graphics
  1404. Accelerator
  1405. config FB_MBX_DEBUG
  1406. bool "Enable debugging info via debugfs"
  1407. depends on FB_MBX && DEBUG_FS
  1408. default n
  1409. ---help---
  1410. Enable this if you want debugging information using the debug
  1411. filesystem (debugfs)
  1412. If unsure, say N.
  1413. config FB_W100
  1414. tristate "W100 frame buffer support"
  1415. depends on FB && PXA_SHARPSL
  1416. select FB_CFB_FILLRECT
  1417. select FB_CFB_COPYAREA
  1418. select FB_CFB_IMAGEBLIT
  1419. ---help---
  1420. Frame buffer driver for the w100 as found on the Sharp SL-Cxx series.
  1421. This driver is also available as a module ( = code which can be
  1422. inserted and removed from the running kernel whenever you want). The
  1423. module will be called w100fb. If you want to compile it as a module,
  1424. say M here and read <file:Documentation/kbuild/modules.txt>.
  1425. If unsure, say N.
  1426. config FB_S3C2410
  1427. tristate "S3C2410 LCD framebuffer support"
  1428. depends on FB && ARCH_S3C2410
  1429. select FB_CFB_FILLRECT
  1430. select FB_CFB_COPYAREA
  1431. select FB_CFB_IMAGEBLIT
  1432. ---help---
  1433. Frame buffer driver for the built-in LCD controller in the Samsung
  1434. S3C2410 processor.
  1435. This driver is also available as a module ( = code which can be
  1436. inserted and removed from the running kernel whenever you want). The
  1437. module will be called s3c2410fb. If you want to compile it as a module,
  1438. say M here and read <file:Documentation/kbuild/modules.txt>.
  1439. If unsure, say N.
  1440. config FB_S3C2410_DEBUG
  1441. bool "S3C2410 lcd debug messages"
  1442. depends on FB_S3C2410
  1443. help
  1444. Turn on debugging messages. Note that you can set/unset at run time
  1445. through sysfs
  1446. config FB_SM501
  1447. tristate "Silicon Motion SM501 framebuffer support"
  1448. depends on FB && MFD_SM501
  1449. select FB_CFB_FILLRECT
  1450. select FB_CFB_COPYAREA
  1451. select FB_CFB_IMAGEBLIT
  1452. ---help---
  1453. Frame buffer driver for the CRT and LCD controllers in the Silicon
  1454. Motion SM501.
  1455. This driver is also available as a module ( = code which can be
  1456. inserted and removed from the running kernel whenever you want). The
  1457. module will be called sm501fb. If you want to compile it as a module,
  1458. say M here and read <file:Documentation/modules.txt>.
  1459. If unsure, say N.
  1460. config FB_PNX4008_DUM
  1461. tristate "Display Update Module support on Philips PNX4008 board"
  1462. depends on FB && ARCH_PNX4008
  1463. ---help---
  1464. Say Y here to enable support for PNX4008 Display Update Module (DUM)
  1465. config FB_PNX4008_DUM_RGB
  1466. tristate "RGB Framebuffer support on Philips PNX4008 board"
  1467. depends on FB_PNX4008_DUM
  1468. select FB_CFB_FILLRECT
  1469. select FB_CFB_COPYAREA
  1470. select FB_CFB_IMAGEBLIT
  1471. ---help---
  1472. Say Y here to enable support for PNX4008 RGB Framebuffer
  1473. config FB_IBM_GXT4500
  1474. tristate "Framebuffer support for IBM GXT4500P adaptor"
  1475. depends on PPC
  1476. select FB_CFB_FILLRECT
  1477. select FB_CFB_COPYAREA
  1478. select FB_CFB_IMAGEBLIT
  1479. ---help---
  1480. Say Y here to enable support for the IBM GXT4500P display
  1481. adaptor, found on some IBM System P (pSeries) machines.
  1482. config FB_PS3
  1483. bool "PS3 GPU framebuffer driver"
  1484. depends on (FB = y) && PS3_PS3AV
  1485. select FB_CFB_FILLRECT
  1486. select FB_CFB_COPYAREA
  1487. select FB_CFB_IMAGEBLIT
  1488. ---help---
  1489. Include support for the virtual frame buffer in the PS3 platform.
  1490. config FB_PS3_DEFAULT_SIZE_M
  1491. int "PS3 default frame buffer size (in MiB)"
  1492. depends on FB_PS3
  1493. default 18
  1494. ---help---
  1495. This is the default size (in MiB) of the virtual frame buffer in
  1496. the PS3.
  1497. The default value can be overridden on the kernel command line
  1498. using the "ps3fb" option (e.g. "ps3fb=9M");
  1499. config FB_VIRTUAL
  1500. tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
  1501. depends on FB
  1502. select FB_SYS_FILLRECT
  1503. select FB_SYS_COPYAREA
  1504. select FB_SYS_IMAGEBLIT
  1505. select FB_SYS_FOPS
  1506. ---help---
  1507. This is a `virtual' frame buffer device. It operates on a chunk of
  1508. unswappable kernel memory instead of on the memory of a graphics
  1509. board. This means you cannot see any output sent to this frame
  1510. buffer device, while it does consume precious memory. The main use
  1511. of this frame buffer device is testing and debugging the frame
  1512. buffer subsystem. Do NOT enable it for normal systems! To protect
  1513. the innocent, it has to be enabled explicitly at boot time using the
  1514. kernel option `video=vfb:'.
  1515. To compile this driver as a module, choose M here: the
  1516. module will be called vfb. In order to load it, you must use
  1517. the vfb_enable=1 option.
  1518. If unsure, say N.
  1519. if VT
  1520. source "drivers/video/console/Kconfig"
  1521. endif
  1522. if FB || SGI_NEWPORT_CONSOLE
  1523. source "drivers/video/logo/Kconfig"
  1524. endif
  1525. endmenu