Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/gpu/drm/i915/
Di915_debugfs.c3023 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_open() local
3028 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3030 if (pipe_crc->opened) { in i915_pipe_crc_open()
3031 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3035 pipe_crc->opened = true; in i915_pipe_crc_open()
3038 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
3047 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_release() local
3049 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
3050 pipe_crc->opened = false; in i915_pipe_crc_release()
3051 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
[all …]
Di915_irq.c1548 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; in display_pipe_crc_irq_handler() local
1552 spin_lock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1554 if (!pipe_crc->entries) { in display_pipe_crc_irq_handler()
1555 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1560 head = pipe_crc->head; in display_pipe_crc_irq_handler()
1561 tail = pipe_crc->tail; in display_pipe_crc_irq_handler()
1564 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1569 entry = &pipe_crc->entries[head]; in display_pipe_crc_irq_handler()
1579 pipe_crc->head = head; in display_pipe_crc_irq_handler()
1581 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
[all …]
Di915_drv.h1704 struct intel_pipe_crc pipe_crc[I915_MAX_PIPES]; member