Lines Matching defs:vblank
204 DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe);
422 DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe);
435 int vblank = 0;
466 vblank++;
471 vblank++;
491 int vblank = 0;
524 /* The vblank interrupt gets enabled even if we didn't ask for
532 vblank++;
541 /* The vblank interrupt gets enabled even if we didn't ask for
549 vblank++;
758 u32 vblank;
761 vblank = DE_PIPEA_VBLANK;
763 vblank = DE_PIPEB_VBLANK;
765 if ((dev_priv->de_irq_enable_reg & vblank) == 0) {
766 igdng_enable_irq(dev_priv, vblank, 0);
767 dev_priv->de_irq_enable_reg |= vblank;
776 u32 vblank;
779 vblank = DE_PIPEA_VBLANK;
781 vblank = DE_PIPEB_VBLANK;
783 if ((dev_priv->de_irq_enable_reg & vblank) != 0) {
784 igdng_disable_irq(dev_priv, vblank, 0);
785 dev_priv->de_irq_enable_reg &= ~vblank;
829 /* Set the vblank monitor pipe
872 * from the kernel, then waited for vblank before continuing to perform
874 * up before it dispatched the vblank swap (since the lock has to be
877 * flicker would occur in addition to likely missing the vblank.
880 * of waiting for a vblank, then dispatching the swap on its own.
882 * meeting the requirements of vblank swapping.