diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/char/drm/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/char/drm/Kconfig')
-rw-r--r-- | drivers/char/drm/Kconfig | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/drivers/char/drm/Kconfig b/drivers/char/drm/Kconfig new file mode 100644 index 000000000000..d9a029934678 --- /dev/null +++ b/drivers/char/drm/Kconfig | |||
@@ -0,0 +1,98 @@ | |||
1 | # | ||
2 | # Drm device configuration | ||
3 | # | ||
4 | # This driver provides support for the | ||
5 | # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher. | ||
6 | # | ||
7 | config DRM | ||
8 | tristate "Direct Rendering Manager (XFree86 4.1.0 and higher DRI support)" | ||
9 | depends on AGP || AGP=n | ||
10 | help | ||
11 | Kernel-level support for the Direct Rendering Infrastructure (DRI) | ||
12 | introduced in XFree86 4.0. If you say Y here, you need to select | ||
13 | the module that's right for your graphics card from the list below. | ||
14 | These modules provide support for synchronization, security, and | ||
15 | DMA transfers. Please see <http://dri.sourceforge.net/> for more | ||
16 | details. You should also select and configure AGP | ||
17 | (/dev/agpgart) support. | ||
18 | |||
19 | config DRM_TDFX | ||
20 | tristate "3dfx Banshee/Voodoo3+" | ||
21 | depends on DRM && PCI | ||
22 | help | ||
23 | Choose this option if you have a 3dfx Banshee or Voodoo3 (or later), | ||
24 | graphics card. If M is selected, the module will be called tdfx. | ||
25 | |||
26 | config DRM_GAMMA | ||
27 | tristate "3dlabs GMX 2000" | ||
28 | depends on DRM && BROKEN | ||
29 | help | ||
30 | This is the old gamma driver, please tell me if it might actually | ||
31 | work. | ||
32 | |||
33 | config DRM_R128 | ||
34 | tristate "ATI Rage 128" | ||
35 | depends on DRM && PCI | ||
36 | help | ||
37 | Choose this option if you have an ATI Rage 128 graphics card. If M | ||
38 | is selected, the module will be called r128. AGP support for | ||
39 | this card is strongly suggested (unless you have a PCI version). | ||
40 | |||
41 | config DRM_RADEON | ||
42 | tristate "ATI Radeon" | ||
43 | depends on DRM && PCI | ||
44 | help | ||
45 | Choose this option if you have an ATI Radeon graphics card. There | ||
46 | are both PCI and AGP versions. You don't need to choose this to | ||
47 | run the Radeon in plain VGA mode. There is a product page at | ||
48 | <http://www.ati.com/na/pages/products/pc/radeon32/index.html>. | ||
49 | If M is selected, the module will be called radeon. | ||
50 | |||
51 | config DRM_I810 | ||
52 | tristate "Intel I810" | ||
53 | depends on DRM && AGP && AGP_INTEL | ||
54 | help | ||
55 | Choose this option if you have an Intel I810 graphics card. If M is | ||
56 | selected, the module will be called i810. AGP support is required | ||
57 | for this driver to work. | ||
58 | |||
59 | choice | ||
60 | prompt "Intel 830M, 845G, 852GM, 855GM, 865G" | ||
61 | depends on DRM && AGP && AGP_INTEL | ||
62 | optional | ||
63 | |||
64 | config DRM_I830 | ||
65 | tristate "i830 driver" | ||
66 | help | ||
67 | Choose this option if you have a system that has Intel 830M, 845G, | ||
68 | 852GM, 855GM or 865G integrated graphics. If M is selected, the | ||
69 | module will be called i830. AGP support is required for this driver | ||
70 | to work. This driver will eventually be replaced by the i915 one. | ||
71 | |||
72 | config DRM_I915 | ||
73 | tristate "i915 driver" | ||
74 | help | ||
75 | Choose this option if you have a system that has Intel 830M, 845G, | ||
76 | 852GM, 855GM 865G or 915G integrated graphics. If M is selected, the | ||
77 | module will be called i915. AGP support is required for this driver | ||
78 | to work. This driver will eventually replace the I830 driver, when | ||
79 | later release of X start to use the new DDX and DRI. | ||
80 | |||
81 | endchoice | ||
82 | |||
83 | config DRM_MGA | ||
84 | tristate "Matrox g200/g400" | ||
85 | depends on DRM && AGP | ||
86 | help | ||
87 | Choose this option if you have a Matrox G200, G400 or G450 graphics | ||
88 | card. If M is selected, the module will be called mga. AGP | ||
89 | support is required for this driver to work. | ||
90 | |||
91 | config DRM_SIS | ||
92 | tristate "SiS video cards" | ||
93 | depends on DRM && AGP | ||
94 | help | ||
95 | Choose this option if you have a SiS 630 or compatible video | ||
96 | chipset. If M is selected the module will be called sis. AGP | ||
97 | support is required for this driver to work. | ||
98 | |||