]> Pileus Git - ~andy/linux/commitdiff
Merge tag 'v3.12' into drm-intel-next
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 4 Nov 2013 15:28:47 +0000 (16:28 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 4 Nov 2013 15:28:52 +0000 (16:28 +0100)
I want to merge in the new Broadwell support as a late hw enabling
pull request. But since the internal branch was based upon our
drm-intel-nightly integration branch I need to resolve all the
oustanding conflicts in drm/i915 with a backmerge to make the 60+
patches apply properly.

We'll propably have some fun because Linus will come up with a
slightly different merge solution.

Conflicts:
drivers/gpu/drm/i915/i915_dma.c
drivers/gpu/drm/i915/i915_drv.c
drivers/gpu/drm/i915/intel_crt.c
drivers/gpu/drm/i915/intel_ddi.c
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_dp.c
drivers/gpu/drm/i915/intel_drv.h

All rather simple adjacent lines changed or partial backports from
-next to -fixes, with the exception of the thaw code in i915_dma.c.
That one needed a bit of shuffling to restore the intent.

Oh and the massive header file reordering in intel_drv.h is a bit
trouble. But not much.

v2: Also don't forget the fixup for the silent conflict that results
in compile fail ...

Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
13 files changed:
1  2 
drivers/gpu/drm/drm_drv.c
drivers/gpu/drm/drm_fb_helper.c
drivers/gpu/drm/i915/i915_dma.c
drivers/gpu/drm/i915/i915_drv.c
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_gem_gtt.c
drivers/gpu/drm/i915/i915_reg.h
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_dp.c
drivers/gpu/drm/i915/intel_lvds.c
drivers/gpu/drm/i915/intel_pm.c
drivers/gpu/drm/radeon/radeon_drv.c
include/uapi/drm/drm_mode.h

Simple merge
Simple merge
index 6eecce70fa7206ec33dca5d62c7fb742067ac7c9,d5c784d486714d4cc5b9e1a45c8b17fe13d51871..0cab2d045135b66d0462c88d390e43eff3df7b20
@@@ -1314,11 -1311,6 +1311,8 @@@ static int i915_load_modeset_init(struc
        if (ret)
                goto cleanup_gem_stolen;
  
-       /* Keep VGA alive until i915_disable_vga_mem() */
-       intel_display_power_get(dev, POWER_DOMAIN_VGA);
 +      intel_power_domains_init_hw(dev);
 +
        /* Important: The output setup functions called by modeset_init need
         * working irqs for e.g. gmbus and dp aux transfers. */
        intel_modeset_init(dev);
index 1041644030b7ec01234d1069ed779cabc20c7737,2ad27880cd047bc93cf119784895040eeafc3bae..a0804fa1e3065015effc26a85d610504cefaa4af
@@@ -656,7 -642,20 +658,10 @@@ static int __i915_drm_thaw(struct drm_d
  
  static int i915_drm_thaw(struct drm_device *dev)
  {
 -      int error = 0;
 -
 -      intel_uncore_sanitize(dev);
 -
 -      if (drm_core_check_feature(dev, DRIVER_MODESET)) {
 -              mutex_lock(&dev->struct_mutex);
 -              i915_gem_restore_gtt_mappings(dev);
 -              mutex_unlock(&dev->struct_mutex);
 -      } else if (drm_core_check_feature(dev, DRIVER_MODESET))
++      if (drm_core_check_feature(dev, DRIVER_MODESET))
+               i915_check_and_clear_faults(dev);
 -      __i915_drm_thaw(dev);
 -
 -      return error;
 +      return __i915_drm_thaw(dev, true);
  }
  
  int i915_resume(struct drm_device *dev)
Simple merge
Simple merge
Simple merge
index 40a8f59fa4182a41a94be7fdaa40dd73f06a49b4,d78d33f9337d993472b22f82f3e2749d28a3e38e..f34252d134b62bcd8cc72eecdbb592cc3761e543
@@@ -10498,36 -10082,9 +10495,9 @@@ static void i915_disable_vga(struct drm
        POSTING_READ(vga_reg);
  }
  
- static void i915_enable_vga_mem(struct drm_device *dev)
- {
-       /* Enable VGA memory on Intel HD */
-       if (HAS_PCH_SPLIT(dev)) {
-               vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
-               outb(inb(VGA_MSR_READ) | VGA_MSR_MEM_EN, VGA_MSR_WRITE);
-               vga_set_legacy_decoding(dev->pdev, VGA_RSRC_LEGACY_IO |
-                                                  VGA_RSRC_LEGACY_MEM |
-                                                  VGA_RSRC_NORMAL_IO |
-                                                  VGA_RSRC_NORMAL_MEM);
-               vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
-       }
- }
- void i915_disable_vga_mem(struct drm_device *dev)
- {
-       /* Disable VGA memory on Intel HD */
-       if (HAS_PCH_SPLIT(dev)) {
-               vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
-               outb(inb(VGA_MSR_READ) & ~VGA_MSR_MEM_EN, VGA_MSR_WRITE);
-               vga_set_legacy_decoding(dev->pdev, VGA_RSRC_LEGACY_IO |
-                                                  VGA_RSRC_NORMAL_IO |
-                                                  VGA_RSRC_NORMAL_MEM);
-               vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
-       }
- }
  void intel_modeset_init_hw(struct drm_device *dev)
  {
 -      intel_init_power_well(dev);
 +      struct drm_i915_private *dev_priv = dev->dev_private;
  
        intel_prepare_ddi(dev);
  
@@@ -10807,10 -10357,9 +10777,9 @@@ void i915_redisable_vga(struct drm_devi
            (I915_READ(HSW_PWR_WELL_DRIVER) & HSW_PWR_WELL_STATE_ENABLED) == 0)
                return;
  
 -      if (I915_READ(vga_reg) != VGA_DISP_DISABLE) {
 +      if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
                DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
                i915_disable_vga(dev);
-               i915_disable_vga_mem(dev);
        }
  }
  
index 68357777e74f8923ff28f02f516d694ee0413896,1a431377d83b76ad22bccf795db770ab3b40bd3e..7619eae35b25626c8001f7415ec2631ad7dd53b5
@@@ -1477,20 -1402,31 +1477,40 @@@ static void intel_dp_get_config(struct 
                        pipe_config->port_clock = 270000;
        }
  
 +      dotclock = intel_dotclock_calculate(pipe_config->port_clock,
 +                                          &pipe_config->dp_m_n);
 +
 +      if (HAS_PCH_SPLIT(dev_priv->dev) && port != PORT_A)
 +              ironlake_check_encoder_dotclock(pipe_config, dotclock);
 +
 +      pipe_config->adjusted_mode.crtc_clock = dotclock;
++
+       if (is_edp(intel_dp) && dev_priv->vbt.edp_bpp &&
+           pipe_config->pipe_bpp > dev_priv->vbt.edp_bpp) {
+               /*
+                * This is a big fat ugly hack.
+                *
+                * Some machines in UEFI boot mode provide us a VBT that has 18
+                * bpp and 1.62 GHz link bandwidth for eDP, which for reasons
+                * unknown we fail to light up. Yet the same BIOS boots up with
+                * 24 bpp and 2.7 GHz link. Use the same bpp as the BIOS uses as
+                * max, not what it tells us to use.
+                *
+                * Note: This will still be broken if the eDP panel is not lit
+                * up by the BIOS, and thus we can't get the mode at module
+                * load.
+                */
+               DRM_DEBUG_KMS("pipe has %d bpp for eDP panel, overriding BIOS-provided max %d bpp\n",
+                             pipe_config->pipe_bpp, dev_priv->vbt.edp_bpp);
+               dev_priv->vbt.edp_bpp = pipe_config->pipe_bpp;
+       }
  }
  
 -static bool is_edp_psr(struct intel_dp *intel_dp)
 +static bool is_edp_psr(struct drm_device *dev)
  {
 -      return is_edp(intel_dp) &&
 -              intel_dp->psr_dpcd[0] & DP_PSR_IS_SUPPORTED;
 +      struct drm_i915_private *dev_priv = dev->dev_private;
 +
 +      return dev_priv->psr.sink_support;
  }
  
  static bool intel_edp_is_psr_enabled(struct drm_device *dev)
@@@ -1550,8 -1486,8 +1570,8 @@@ static void intel_edp_psr_setup(struct 
        intel_edp_psr_write_vsc(intel_dp, &psr_vsc);
  
        /* Avoid continuous PSR exit by masking memup and hpd */
 -      I915_WRITE(EDP_PSR_DEBUG_CTL, EDP_PSR_DEBUG_MASK_MEMUP |
 +      I915_WRITE(EDP_PSR_DEBUG_CTL(dev), EDP_PSR_DEBUG_MASK_MEMUP |
-                  EDP_PSR_DEBUG_MASK_HPD);
+                  EDP_PSR_DEBUG_MASK_HPD | EDP_PSR_DEBUG_MASK_LPSP);
  
        intel_dp->psr_setup_done = true;
  }
Simple merge
Simple merge
Simple merge
Simple merge