Kconfig revision 1.1
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.1Sriastrad	# we need shmfs for the swappable backing store, and in particular
91.1Sriastrad	# the shmem_readpage() which depends upon tmpfs
101.1Sriastrad	select SHMEM
111.1Sriastrad	select TMPFS
121.1Sriastrad	select DRM_KMS_HELPER
131.1Sriastrad	# i915 depends on ACPI_VIDEO when ACPI is enabled
141.1Sriastrad	# but for select to work, need to select ACPI_VIDEO's dependencies, ick
151.1Sriastrad	select BACKLIGHT_LCD_SUPPORT if ACPI
161.1Sriastrad	select BACKLIGHT_CLASS_DEVICE if ACPI
171.1Sriastrad	select INPUT if ACPI
181.1Sriastrad	select ACPI_VIDEO if ACPI
191.1Sriastrad	select ACPI_BUTTON if ACPI
201.1Sriastrad	help
211.1Sriastrad	  Choose this option if you have a system that has "Intel Graphics
221.1Sriastrad	  Media Accelerator" or "HD Graphics" integrated graphics,
231.1Sriastrad	  including 830M, 845G, 852GM, 855GM, 865G, 915G, 945G, 965G,
241.1Sriastrad	  G35, G41, G43, G45 chipsets and Celeron, Pentium, Core i3,
251.1Sriastrad	  Core i5, Core i7 as well as Atom CPUs with integrated graphics.
261.1Sriastrad	  If M is selected, the module will be called i915.  AGP support
271.1Sriastrad	  is required for this driver to work. This driver is used by
281.1Sriastrad	  the Intel driver in X.org 6.8 and XFree86 4.4 and above. It
291.1Sriastrad	  replaces the older i830 module that supported a subset of the
301.1Sriastrad	  hardware in older X.org releases.
311.1Sriastrad
321.1Sriastrad	  Note that the older i810/i815 chipsets require the use of the
331.1Sriastrad	  i810 driver instead, and the Atom z5xx series has an entirely
341.1Sriastrad	  different implementation.
351.1Sriastrad
361.1Sriastradconfig DRM_I915_KMS
371.1Sriastrad	bool "Enable modesetting on intel by default"
381.1Sriastrad	depends on DRM_I915
391.1Sriastrad	default y
401.1Sriastrad	help
411.1Sriastrad	  Choose this option if you want kernel modesetting enabled by default.
421.1Sriastrad
431.1Sriastrad	  If in doubt, say "Y".
441.1Sriastrad
451.1Sriastradconfig DRM_I915_FBDEV
461.1Sriastrad	bool "Enable legacy fbdev support for the modesetting intel driver"
471.1Sriastrad	depends on DRM_I915
481.1Sriastrad	select DRM_KMS_FB_HELPER
491.1Sriastrad	select FB_CFB_FILLRECT
501.1Sriastrad	select FB_CFB_COPYAREA
511.1Sriastrad	select FB_CFB_IMAGEBLIT
521.1Sriastrad	default y
531.1Sriastrad	help
541.1Sriastrad	  Choose this option if you have a need for the legacy fbdev
551.1Sriastrad	  support. Note that this support also provide the linux console
561.1Sriastrad	  support on top of the intel modesetting driver.
571.1Sriastrad
581.1Sriastrad	  If in doubt, say "Y".
591.1Sriastrad
601.1Sriastradconfig DRM_I915_PRELIMINARY_HW_SUPPORT
611.1Sriastrad	bool "Enable preliminary support for prerelease Intel hardware by default"
621.1Sriastrad	depends on DRM_I915
631.1Sriastrad	default n
641.1Sriastrad	help
651.1Sriastrad	  Choose this option if you have prerelease Intel hardware and want the
661.1Sriastrad	  i915 driver to support it by default.  You can enable such support at
671.1Sriastrad	  runtime with the module option i915.preliminary_hw_support=1; this
681.1Sriastrad	  option changes the default for that module option.
691.1Sriastrad
701.1Sriastrad	  If in doubt, say "N".
711.1Sriastrad
721.1Sriastradconfig DRM_I915_UMS
731.1Sriastrad	bool "Enable userspace modesetting on Intel hardware (DEPRECATED)"
741.1Sriastrad	depends on DRM_I915
751.1Sriastrad	default n
761.1Sriastrad	help
771.1Sriastrad	  Choose this option if you still need userspace modesetting.
781.1Sriastrad
791.1Sriastrad	  Userspace modesetting is deprecated for quite some time now, so
801.1Sriastrad	  enable this only if you have ancient versions of the DDX drivers.
811.1Sriastrad
821.1Sriastrad	  If in doubt, say "N".
83