xref: /linux/drivers/char/agp/Kconfig (revision b24413180f5600bcb3bb70fbed5cf186b60864bd)
1*b2441318SGreg Kroah-Hartman# SPDX-License-Identifier: GPL-2.0
2179b025fSRandy Dunlapmenuconfig AGP
3dcc1a66aSRoman Zippel	tristate "/dev/agpgart (AGP Support)"
408a64368SKyle McMartin	depends on ALPHA || IA64 || PARISC || PPC || X86
5adf8a287SDave Jones	depends on PCI
61da177e4SLinus Torvalds	---help---
71da177e4SLinus Torvalds	  AGP (Accelerated Graphics Port) is a bus system mainly used to
81da177e4SLinus Torvalds	  connect graphics cards to the rest of the system.
91da177e4SLinus Torvalds
101da177e4SLinus Torvalds	  If you have an AGP system and you say Y here, it will be possible to
111da177e4SLinus Torvalds	  use the AGP features of your 3D rendering video card. This code acts
121da177e4SLinus Torvalds	  as a sort of "AGP driver" for the motherboard's chipset.
131da177e4SLinus Torvalds
141da177e4SLinus Torvalds	  If you need more texture memory than you can get with the AGP GART
151da177e4SLinus Torvalds	  (theoretically up to 256 MB, but in practice usually 64 or 128 MB
161da177e4SLinus Torvalds	  due to kernel allocation issues), you could use PCI accesses
171da177e4SLinus Torvalds	  and have up to a couple gigs of texture space.
181da177e4SLinus Torvalds
191311c24fSAdrian Bunk	  Note that this is the only means to have X/GLX use
201da177e4SLinus Torvalds	  write-combining with MTRR support on the AGP bus. Without it, OpenGL
211da177e4SLinus Torvalds	  direct rendering will be a lot slower but still faster than PIO.
221da177e4SLinus Torvalds
231da177e4SLinus Torvalds	  To compile this driver as a module, choose M here: the
241da177e4SLinus Torvalds	  module will be called agpgart.
251da177e4SLinus Torvalds
261311c24fSAdrian Bunk	  You should say Y here if you want to use GLX or DRI.
271311c24fSAdrian Bunk
281311c24fSAdrian Bunk	  If unsure, say N.
291311c24fSAdrian Bunk
301da177e4SLinus Torvaldsconfig AGP_ALI
311da177e4SLinus Torvalds	tristate "ALI chipset support"
320d078f6fSBrian Gerst	depends on AGP && X86_32
331da177e4SLinus Torvalds	---help---
341da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
351311c24fSAdrian Bunk	  X on the following ALi chipsets.  The supported chipsets
361da177e4SLinus Torvalds	  include M1541, M1621, M1631, M1632, M1641,M1647,and M1651.
371da177e4SLinus Torvalds	  For the ALi-chipset question, ALi suggests you refer to
38631dd1a8SJustin P. Mattock	  <http://www.ali.com.tw/>.
391da177e4SLinus Torvalds
401da177e4SLinus Torvalds	  The M1541 chipset can do AGP 1x and 2x, but note that there is an
411da177e4SLinus Torvalds	  acknowledged incompatibility with Matrox G200 cards. Due to
421da177e4SLinus Torvalds	  timing issues, this chipset cannot do AGP 2x with the G200.
431da177e4SLinus Torvalds	  This is a hardware limitation. AGP 1x seems to be fine, though.
441da177e4SLinus Torvalds
451da177e4SLinus Torvaldsconfig AGP_ATI
461da177e4SLinus Torvalds	tristate "ATI chipset support"
470d078f6fSBrian Gerst	depends on AGP && X86_32
481da177e4SLinus Torvalds	---help---
491da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
501311c24fSAdrian Bunk	  X on the ATI RadeonIGP family of chipsets.
511da177e4SLinus Torvalds
521da177e4SLinus Torvaldsconfig AGP_AMD
531da177e4SLinus Torvalds	tristate "AMD Irongate, 761, and 762 chipset support"
54cecd1455SMatt Turner	depends on AGP && X86_32
551da177e4SLinus Torvalds	help
561da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
571311c24fSAdrian Bunk	  X on AMD Irongate, 761, and 762 chipsets.
581da177e4SLinus Torvalds
591da177e4SLinus Torvaldsconfig AGP_AMD64
604f65ae36SPavel Vasilyev	tristate "AMD Opteron/Athlon64 on-CPU GART support"
6123ac4ae8SAndreas Herrmann	depends on AGP && X86 && AMD_NB
621da177e4SLinus Torvalds	help
631da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
641311c24fSAdrian Bunk	  X using the on-CPU northbridge of the AMD Athlon64/Opteron CPUs.
651da177e4SLinus Torvalds	  You still need an external AGP bridge like the AMD 8151, VIA
661da177e4SLinus Torvalds          K8T400M, SiS755. It may also support other AGP bridges when loaded
671da177e4SLinus Torvalds	  with agp_try_unsupported=1.
681da177e4SLinus Torvalds
691da177e4SLinus Torvaldsconfig AGP_INTEL
701da177e4SLinus Torvalds	tristate "Intel 440LX/BX/GX, I8xx and E7x05 chipset support"
711da177e4SLinus Torvalds	depends on AGP && X86
7200fe639aSVille Syrjälä	select INTEL_GTT
731da177e4SLinus Torvalds	help
741311c24fSAdrian Bunk	  This option gives you AGP support for the GLX component of X
751da177e4SLinus Torvalds	  on Intel 440LX/BX/GX, 815, 820, 830, 840, 845, 850, 860, 875,
761311c24fSAdrian Bunk	  E7205 and E7505 chipsets and full support for the 810, 815, 830M,
771311c24fSAdrian Bunk	  845G, 852GM, 855GM, 865G and I915 integrated graphics chipsets.
781da177e4SLinus Torvalds
791311c24fSAdrian Bunk
801da177e4SLinus Torvalds
811da177e4SLinus Torvaldsconfig AGP_NVIDIA
821da177e4SLinus Torvalds	tristate "NVIDIA nForce/nForce2 chipset support"
830d078f6fSBrian Gerst	depends on AGP && X86_32
841da177e4SLinus Torvalds	help
851da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
861311c24fSAdrian Bunk	  X on NVIDIA chipsets including nForce and nForce2
871da177e4SLinus Torvalds
881da177e4SLinus Torvaldsconfig AGP_SIS
891da177e4SLinus Torvalds	tristate "SiS chipset support"
900cfea5ddSMatthew Wilcox	depends on AGP && X86
911da177e4SLinus Torvalds	help
921da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
931311c24fSAdrian Bunk	  X on Silicon Integrated Systems [SiS] chipsets.
941da177e4SLinus Torvalds
951da177e4SLinus Torvalds	  Note that 5591/5592 AGP chipsets are NOT supported.
961da177e4SLinus Torvalds
971da177e4SLinus Torvalds
981da177e4SLinus Torvaldsconfig AGP_SWORKS
991da177e4SLinus Torvalds	tristate "Serverworks LE/HE chipset support"
1000d078f6fSBrian Gerst	depends on AGP && X86_32
1011da177e4SLinus Torvalds	help
1021da177e4SLinus Torvalds	  Say Y here to support the Serverworks AGP card.  See
1031da177e4SLinus Torvalds	  <http://www.serverworks.com/> for product descriptions and images.
1041da177e4SLinus Torvalds
1051da177e4SLinus Torvaldsconfig AGP_VIA
1061da177e4SLinus Torvalds	tristate "VIA chipset support"
1070cfea5ddSMatthew Wilcox	depends on AGP && X86
1081da177e4SLinus Torvalds	help
1091da177e4SLinus Torvalds	  This option gives you AGP support for the GLX component of
1101311c24fSAdrian Bunk	  X on VIA MVP3/Apollo Pro chipsets.
1111da177e4SLinus Torvalds
1121da177e4SLinus Torvaldsconfig AGP_I460
1131da177e4SLinus Torvalds	tristate "Intel 460GX chipset support"
1141da177e4SLinus Torvalds	depends on AGP && (IA64_DIG || IA64_GENERIC)
1151da177e4SLinus Torvalds	help
1161da177e4SLinus Torvalds	  This option gives you AGP GART support for the Intel 460GX chipset
1171da177e4SLinus Torvalds	  for IA64 processors.
1181da177e4SLinus Torvalds
1191da177e4SLinus Torvaldsconfig AGP_HP_ZX1
1201da177e4SLinus Torvalds	tristate "HP ZX1 chipset AGP support"
1211da177e4SLinus Torvalds	depends on AGP && (IA64_HP_ZX1 || IA64_HP_ZX1_SWIOTLB || IA64_GENERIC)
1221da177e4SLinus Torvalds	help
1231da177e4SLinus Torvalds	  This option gives you AGP GART support for the HP ZX1 chipset
1241da177e4SLinus Torvalds	  for IA64 processors.
1251da177e4SLinus Torvalds
12608a64368SKyle McMartinconfig AGP_PARISC
12708a64368SKyle McMartin	tristate "HP Quicksilver AGP support"
12808a64368SKyle McMartin	depends on AGP && PARISC && 64BIT
12908a64368SKyle McMartin	help
13008a64368SKyle McMartin	  This option gives you AGP GART support for the HP Quicksilver
13108a64368SKyle McMartin	  AGP bus adapter on HP PA-RISC machines (Ok, just on the C8000
13208a64368SKyle McMartin	  workstation...)
13308a64368SKyle McMartin
1341da177e4SLinus Torvaldsconfig AGP_ALPHA_CORE
1351da177e4SLinus Torvalds	tristate "Alpha AGP support"
1361da177e4SLinus Torvalds	depends on AGP && (ALPHA_GENERIC || ALPHA_TITAN || ALPHA_MARVEL)
1371da177e4SLinus Torvalds	default AGP
1381da177e4SLinus Torvalds
1391da177e4SLinus Torvaldsconfig AGP_UNINORTH
1401da177e4SLinus Torvalds	tristate "Apple UniNorth & U3 AGP support"
1411da177e4SLinus Torvalds	depends on AGP && PPC_PMAC
1421da177e4SLinus Torvalds	help
1431da177e4SLinus Torvalds	  This option gives you AGP support for Apple machines with a
1441da177e4SLinus Torvalds	  UniNorth or U3 (Apple G5) bridge.
1451da177e4SLinus Torvalds
1461da177e4SLinus Torvaldsconfig AGP_EFFICEON
1471da177e4SLinus Torvalds	tristate "Transmeta Efficeon support"
1480d078f6fSBrian Gerst	depends on AGP && X86_32
1491da177e4SLinus Torvalds	help
1501da177e4SLinus Torvalds	  This option gives you AGP support for the Transmeta Efficeon
1511da177e4SLinus Torvalds	  series processors with integrated northbridges.
1521da177e4SLinus Torvalds
1531da177e4SLinus Torvaldsconfig AGP_SGI_TIOCA
1541da177e4SLinus Torvalds        tristate "SGI TIO chipset AGP support"
1551da177e4SLinus Torvalds        depends on AGP && (IA64_SGI_SN2 || IA64_GENERIC)
1561da177e4SLinus Torvalds        help
1571da177e4SLinus Torvalds          This option gives you AGP GART support for the SGI TIO chipset
1581da177e4SLinus Torvalds          for IA64 processors.
1591da177e4SLinus Torvalds
16000fe639aSVille Syrjäläconfig INTEL_GTT
16100fe639aSVille Syrjälä	tristate
16200fe639aSVille Syrjälä	depends on X86 && PCI
16300fe639aSVille Syrjälä
164