Home
last modified time | relevance | path

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

/drivers/gpu/drm/i915/
Di915_debugfs.c2712 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_open() local
2717 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
2719 if (pipe_crc->opened) { in i915_pipe_crc_open()
2720 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
2724 pipe_crc->opened = true; in i915_pipe_crc_open()
2727 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_open()
2736 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; in i915_pipe_crc_release() local
2738 spin_lock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
2739 pipe_crc->opened = false; in i915_pipe_crc_release()
2740 spin_unlock_irq(&pipe_crc->lock); in i915_pipe_crc_release()
[all …]
Di915_irq.c1893 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; in display_pipe_crc_irq_handler() local
1897 spin_lock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1899 if (!pipe_crc->entries) { in display_pipe_crc_irq_handler()
1900 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1905 head = pipe_crc->head; in display_pipe_crc_irq_handler()
1906 tail = pipe_crc->tail; in display_pipe_crc_irq_handler()
1909 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
1914 entry = &pipe_crc->entries[head]; in display_pipe_crc_irq_handler()
1924 pipe_crc->head = head; in display_pipe_crc_irq_handler()
1926 spin_unlock(&pipe_crc->lock); in display_pipe_crc_irq_handler()
[all …]
Di915_drv.h1566 struct intel_pipe_crc pipe_crc[I915_MAX_PIPES]; member