Author: rnoland
Date: Tue Jun 23 16:14:08 2009
New Revision: 194737
URL: http://svn.freebsd.org/changeset/base/194737

Log:
  Merge 194540 from HEAD
  
  The G45 docs indicate that all G4X chips use the new framecount register.
  
  Intel agrees with my reading of the docs, make it so for all G4X chips.
  
  The new register also has a 32 bit width as opposed to 24 bits.  Fix
  things up so that the counters roll over properly.

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/drm/i915_dma.c
  stable/7/sys/dev/drm/i915_drv.h
  stable/7/sys/dev/drm/i915_irq.c

Modified: stable/7/sys/dev/drm/i915_dma.c
==============================================================================
--- stable/7/sys/dev/drm/i915_dma.c     Tue Jun 23 16:12:40 2009        
(r194736)
+++ stable/7/sys/dev/drm/i915_dma.c     Tue Jun 23 16:14:08 2009        
(r194737)
@@ -871,10 +871,13 @@ int i915_driver_load(struct drm_device *
        ret = drm_addmap(dev, base, size, _DRM_REGISTERS,
            _DRM_KERNEL | _DRM_DRIVER, &dev_priv->mmio_map);
 
-       if (IS_GM45(dev))
-               dev->driver->get_vblank_counter = gm45_get_vblank_counter;
-       else
+       if (IS_G4X(dev)) {
+               dev->driver->get_vblank_counter = g45_get_vblank_counter;
+               dev->max_vblank_count = 0xffffffff; /* 32 bits of frame count */
+       } else {
                dev->driver->get_vblank_counter = i915_get_vblank_counter;
+               dev->max_vblank_count = 0x00ffffff; /* 24 bits of frame count */
+       }
 
 #ifdef I915_HAVE_GEM
        i915_gem_load(dev);

Modified: stable/7/sys/dev/drm/i915_drv.h
==============================================================================
--- stable/7/sys/dev/drm/i915_drv.h     Tue Jun 23 16:12:40 2009        
(r194736)
+++ stable/7/sys/dev/drm/i915_drv.h     Tue Jun 23 16:14:08 2009        
(r194737)
@@ -453,7 +453,7 @@ extern int i915_vblank_pipe_get(struct d
 extern int i915_enable_vblank(struct drm_device *dev, int crtc);
 extern void i915_disable_vblank(struct drm_device *dev, int crtc);
 extern u32 i915_get_vblank_counter(struct drm_device *dev, int crtc);
-extern u32 gm45_get_vblank_counter(struct drm_device *dev, int crtc);
+extern u32 g45_get_vblank_counter(struct drm_device *dev, int crtc);
 extern int i915_vblank_swap(struct drm_device *dev, void *data,
                            struct drm_file *file_priv);
 

Modified: stable/7/sys/dev/drm/i915_irq.c
==============================================================================
--- stable/7/sys/dev/drm/i915_irq.c     Tue Jun 23 16:12:40 2009        
(r194736)
+++ stable/7/sys/dev/drm/i915_irq.c     Tue Jun 23 16:14:08 2009        
(r194737)
@@ -177,7 +177,7 @@ u32 i915_get_vblank_counter(struct drm_d
        return count;
 }
 
-u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
+u32 g45_get_vblank_counter(struct drm_device *dev, int pipe)
 {
        drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
        int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45;
@@ -516,8 +516,6 @@ int i915_driver_irq_postinstall(struct d
 
        dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B;
 
-       dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
-
        /* Unmask the interrupts that we always want on. */
        dev_priv->irq_mask_reg = ~I915_INTERRUPT_ENABLE_FIX;
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to