Home
last modified time | relevance | path

Searched refs:pipe_crc (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/gpu/drm/i915/
Di915_debugfs.c3313 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_open() local
3318 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3320 if (pipe_crc->opened) { in i915_pipe_crc_open()
3321 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3325 pipe_crc->opened = true; in i915_pipe_crc_open()
3328 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3337 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_release() local
3339 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
3340 pipe_crc->opened = false; in i915_pipe_crc_release()
3341 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
[all …]
Di915_irq.c1496 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; in display_pipe_crc_irq_handler() local
1500 spin_lock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1502 if (!pipe_crc->entries) { in display_pipe_crc_irq_handler()
1503 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1508 head = pipe_crc->head; in display_pipe_crc_irq_handler()
1509 tail = pipe_crc->tail; in display_pipe_crc_irq_handler()
1512 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1517 entry = &pipe_crc->entries[head]; in display_pipe_crc_irq_handler()
1527 pipe_crc->head = head; in display_pipe_crc_irq_handler()
1529 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
[all …]
Di915_drv.h1839 struct intel_pipe_crc pipe_crc[I915_MAX_PIPES]; member