]> nv-tegra.nvidia Code Review - linux-2.6.git/commitdiff
Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
authorLinus Torvalds <torvalds@linux-foundation.org>
Thu, 4 Mar 2010 15:49:37 +0000 (07:49 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 4 Mar 2010 15:49:37 +0000 (07:49 -0800)
* 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6: (151 commits)
  vga_switcheroo: disable default y by new rules.
  drm/nouveau: fix *staging* driver build with switcheroo off.
  drm/radeon: fix typo in Makefile
  vga_switcheroo: fix build on platforms with no ACPI
  drm/radeon: Fix printf type warning in 64bit system.
  drm/radeon/kms: bump the KMS version number for square tiling support.
  vga_switcheroo: initial implementation (v15)
  drm/radeon/kms: do not disable audio engine twice
  Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730"
  drm/radeon/kms: do not preset audio stuff and start timer when not using audio
  drm/radeon: r100/r200 ums: block ability for userspace app to trash 0 page and beyond
  drm/ttm: fix function prototype to match implementation
  drm/radeon: use ALIGN instead of open coding it
  drm/radeon/kms: initialize set_surface_reg reg for rs600 asic
  drm/i915: Use a dmi quirk to skip a broken SDVO TV output.
  drm/i915: enable/disable LVDS port at DPMS time
  drm/i915: check for multiple write domains in pin_and_relocate
  drm/i915: clean-up i915_gem_flush_gpu_write_domain
  drm/i915: reuse i915_gpu_idle helper
  drm/i915: ensure lru ordering of fence_list
  ...

Fixed trivial conflicts in drivers/gpu/vga/Kconfig

1  2 
drivers/char/agp/intel-agp.c
drivers/gpu/drm/radeon/radeon_combios.c
drivers/gpu/vga/Kconfig

index 8a713f1e965351ef91a2d885485ec5fe4e96c719,c1c07a2ccb11c0c8fb5241daba93f98cc425ac23..919a28558d362fa152ae3e12d94babb1cecbfd60
@@@ -8,9 -8,11 +8,12 @@@
  #include <linux/kernel.h>
  #include <linux/pagemap.h>
  #include <linux/agp_backend.h>
 +#include <asm/smp.h>
  #include "agp.h"
  
+ int intel_agp_enabled;
+ EXPORT_SYMBOL(intel_agp_enabled);
  /*
   * If we have Intel graphics, we're not going to have anything other than
   * an Intel IOMMU. So make the correct use of the PCI DMA API contingent
index 0920492cea0a4af77d9ea6ec13c937a4f6ae60bc,34b08a6b0cbebccd06248b4c06fc865993a3e89f..61ab4daf0bbb9adb18190e1ff16617183bb5d1f0
@@@ -9,10 -9,14 +9,21 @@@ config VGA_AR
          see Documentation/vgaarbiter.txt for more details. Select this to
          enable VGA arbiter.
  
 -
 +config VGA_ARB_MAX_GPUS
 +      int "Maximum number of GPUs"
 +      default 16
 +      depends on VGA_ARB
 +      help
 +        Reserves space in the kernel to maintain resource locking for
 +        multiple GPUS.  The overhead for each GPU is very small.
++
+ config VGA_SWITCHEROO
+       bool "Laptop Hybrid Grapics - GPU switching support"
+       depends on X86
+       depends on ACPI
+       help
+         Many laptops released in 2008/9/10 have two gpus with a multiplxer
+         to switch between them. This adds support for dynamic switching when
+           X isn't running and delayed switching until the next logoff. This
+         features is called hybrid graphics, ATI PowerXpress, and Nvidia
+         HybridPower.