]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Merge branch 'drm-next' of git://people.freedesktop.org/~airlied/linux
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 8 Apr 2014 16:52:16 +0000 (09:52 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 8 Apr 2014 16:52:16 +0000 (09:52 -0700)
Pull drm updates from Dave Airlie:
 "Highlights:

   - drm:

     Generic display port aux features, primary plane support, drm
     master management fixes, logging cleanups, enforced locking checks
     (instead of docs), documentation improvements, minor number
     handling cleanup, pseudofs for shared inodes.

   - ttm:

     add ability to allocate from both ends

   - i915:

     broadwell features, power domain and runtime pm, per-process
     address space infrastructure (not enabled)

   - msm:

     power management, hdmi audio support

   - nouveau:

     ongoing GPU fault recovery, initial maxwell support, random fixes

   - exynos:

     refactored driver to clean up a lot of abstraction, DP support
     moved into drm, LVDS bridge support added, parallel panel support

   - gma500:

     SGX MMU support, SGX irq handling, asle irq work fixes

   - radeon:

     video engine bringup, ring handling fixes, use dp aux helpers

   - vmwgfx:

     add rendernode support"

* 'drm-next' of git://people.freedesktop.org/~airlied/linux: (849 commits)
  DRM: armada: fix corruption while loading cursors
  drm/dp_helper: don't return EPROTO for defers (v2)
  drm/bridge: export ptn3460_init function
  drm/exynos: remove MODULE_DEVICE_TABLE definitions
  ARM: dts: exynos4412-trats2: enable exynos/fimd node
  ARM: dts: exynos4210-trats: enable exynos/fimd node
  ARM: dts: exynos4412-trats2: add panel node
  ARM: dts: exynos4210-trats: add panel node
  ARM: dts: exynos4: add MIPI DSI Master node
  drm/panel: add S6E8AA0 driver
  ARM: dts: exynos4210-universal_c210: add proper panel node
  drm/panel: add ld9040 driver
  panel/ld9040: add DT bindings
  panel/s6e8aa0: add DT bindings
  drm/exynos: add DSIM driver
  exynos/dsim: add DT bindings
  drm/exynos: disallow fbdev initialization if no device is connected
  drm/mipi_dsi: create dsi devices only for nodes with reg property
  drm/mipi_dsi: add flags to DSI messages
  Skip intel_crt_init for Dell XPS 8700
  ...

14 files changed:
1  2 
MAINTAINERS
arch/arm/boot/dts/exynos4.dtsi
arch/arm/boot/dts/exynos4210-trats.dts
arch/arm/boot/dts/exynos4210-universal_c210.dts
arch/arm/boot/dts/exynos4412-trats2.dts
drivers/gpu/drm/drm_crtc_helper.c
drivers/gpu/drm/drm_fops.c
drivers/gpu/drm/drm_prime.c
drivers/gpu/drm/exynos/exynos_drm_drv.h
drivers/gpu/drm/gma500/mmu.c
drivers/staging/imx-drm/ipuv3-crtc.c
drivers/staging/imx-drm/ipuv3-plane.c
fs/dcache.c
include/drm/drm_fb_helper.h

diff --cc MAINTAINERS
Simple merge
Simple merge
index f7a81209beb38b92291e616b0171eb9d3f94fa62,1fbe8427c70e536bff5233c7cf81dba1355c0342..c43825e8f5c12c0ba4fd5e9b27181cfac8dfc4d0
@@@ -560,11 -565,8 +565,8 @@@ drm_crtc_helper_disable(struct drm_crt
   * drm_crtc_helper_set_config - set a new config from userspace
   * @set: mode set configuration
   *
-  * LOCKING:
-  * Caller must hold mode config lock.
-  *
   * Setup a new configuration, provided by the upper layers (either an ioctl call
 - * from userspace or internally e.g. from the fbdev suppport code) in @set, and
 + * from userspace or internally e.g. from the fbdev support code) in @set, and
   * enable it. This is the main helper functions for drivers that implement
   * kernel mode setting with the crtc helper functions and the assorted
   * ->prepare(), ->modeset() and ->commit() helper callbacks.
Simple merge
Simple merge
index c3e67ba94446d34a24b420c72804e029384948d7,3e14a9b3525286de73fffc3c82cb2af838a9ac79..0eaf11c199395573b3fd5c75df6431907cb964fa
@@@ -520,7 -478,8 +478,8 @@@ struct psb_mmu_driver *psb_mmu_driver_i
  
        driver->has_clflush = 0;
  
 -      if (boot_cpu_has(X86_FEATURE_CLFLSH)) {
+ #if defined(CONFIG_X86)
 +      if (boot_cpu_has(X86_FEATURE_CLFLUSH)) {
                uint32_t tfms, misc, cap0, cap4, clflush_size;
  
                /*
Simple merge
Simple merge
diff --cc fs/dcache.c
Simple merge
Simple merge