Kconfig revision 1.2
11.1Sriastradconfig DRM_I915
21.1Sriastrad	tristate "Intel 8xx/9xx/G3x/G4x/HD Graphics"
31.1Sriastrad	depends on DRM
41.1Sriastrad	depends on X86 && PCI
51.1Sriastrad	depends on (AGP || AGP=n)
61.1Sriastrad	select INTEL_GTT
71.1Sriastrad	select AGP_INTEL if AGP
81.2Sriastrad	select INTERVAL_TREE
91.1Sriastrad	# we need shmfs for the swappable backing store, and in particular
101.1Sriastrad	# the shmem_readpage() which depends upon tmpfs
111.1Sriastrad	select SHMEM
121.1Sriastrad	select TMPFS
131.1Sriastrad	select DRM_KMS_HELPER
141.2Sriastrad	select DRM_PANEL
151.2Sriastrad	select DRM_MIPI_DSI
161.1Sriastrad	# i915 depends on ACPI_VIDEO when ACPI is enabled
171.1Sriastrad	# but for select to work, need to select ACPI_VIDEO's dependencies, ick
181.1Sriastrad	select BACKLIGHT_LCD_SUPPORT if ACPI
191.1Sriastrad	select BACKLIGHT_CLASS_DEVICE if ACPI
201.1Sriastrad	select INPUT if ACPI
211.1Sriastrad	select ACPI_VIDEO if ACPI
221.1Sriastrad	select ACPI_BUTTON if ACPI
231.1Sriastrad	help
241.1Sriastrad	  Choose this option if you have a system that has "Intel Graphics
251.1Sriastrad	  Media Accelerator" or "HD Graphics" integrated graphics,
261.1Sriastrad	  including 830M, 845G, 852GM, 855GM, 865G, 915G, 945G, 965G,
271.1Sriastrad	  G35, G41, G43, G45 chipsets and Celeron, Pentium, Core i3,
281.1Sriastrad	  Core i5, Core i7 as well as Atom CPUs with integrated graphics.
291.1Sriastrad	  If M is selected, the module will be called i915.  AGP support
301.1Sriastrad	  is required for this driver to work. This driver is used by
311.1Sriastrad	  the Intel driver in X.org 6.8 and XFree86 4.4 and above. It
321.1Sriastrad	  replaces the older i830 module that supported a subset of the
331.1Sriastrad	  hardware in older X.org releases.
341.1Sriastrad
351.1Sriastrad	  Note that the older i810/i815 chipsets require the use of the
361.1Sriastrad	  i810 driver instead, and the Atom z5xx series has an entirely
371.1Sriastrad	  different implementation.
381.1Sriastrad
391.1Sriastradconfig DRM_I915_PRELIMINARY_HW_SUPPORT
401.1Sriastrad	bool "Enable preliminary support for prerelease Intel hardware by default"
411.1Sriastrad	depends on DRM_I915
421.1Sriastrad	default n
431.1Sriastrad	help
441.1Sriastrad	  Choose this option if you have prerelease Intel hardware and want the
451.1Sriastrad	  i915 driver to support it by default.  You can enable such support at
461.1Sriastrad	  runtime with the module option i915.preliminary_hw_support=1; this
471.1Sriastrad	  option changes the default for that module option.
481.1Sriastrad
491.1Sriastrad	  If in doubt, say "N".
50