drm/i915: Propagate errors from writing to ringbuffer
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_ringbuffer.h
CommitLineData
8187a2b7
ZN
1#ifndef _INTEL_RINGBUFFER_H_
2#define _INTEL_RINGBUFFER_H_
3
4struct intel_hw_status_page {
78501eac 5 u32 __iomem *page_addr;
8187a2b7
ZN
6 unsigned int gfx_addr;
7 struct drm_gem_object *obj;
8};
9
870e86dd
DV
10#define I915_READ_TAIL(ring) I915_READ(RING_TAIL(ring->mmio_base))
11#define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL(ring->mmio_base), val)
6c0e1c55
DV
12#define I915_READ_START(ring) I915_READ(RING_START(ring->mmio_base))
13#define I915_WRITE_START(ring, val) I915_WRITE(RING_START(ring->mmio_base), val)
570ef608
DV
14#define I915_READ_HEAD(ring) I915_READ(RING_HEAD(ring->mmio_base))
15#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD(ring->mmio_base), val)
7f2ab699
DV
16#define I915_READ_CTL(ring) I915_READ(RING_CTL(ring->mmio_base))
17#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL(ring->mmio_base), val)
870e86dd 18
8187a2b7
ZN
19struct drm_i915_gem_execbuffer2;
20struct intel_ring_buffer {
21 const char *name;
9220434a
CW
22 enum intel_ring_id {
23 RING_RENDER = 0x1,
24 RING_BSD = 0x2,
549f7365 25 RING_BLT = 0x4,
9220434a 26 } id;
333e9fe9 27 u32 mmio_base;
8187a2b7 28 unsigned long size;
8187a2b7
ZN
29 void *virtual_start;
30 struct drm_device *dev;
31 struct drm_gem_object *gem_object;
32
33 unsigned int head;
34 unsigned int tail;
780f0ca3 35 int space;
8187a2b7
ZN
36 struct intel_hw_status_page status_page;
37
38 u32 irq_gem_seqno; /* last seq seem at irq time */
39 u32 waiting_gem_seqno;
40 int user_irq_refcount;
78501eac
CW
41 void (*user_irq_get)(struct intel_ring_buffer *ring);
42 void (*user_irq_put)(struct intel_ring_buffer *ring);
8187a2b7 43
78501eac 44 int (*init)(struct intel_ring_buffer *ring);
8187a2b7 45
78501eac 46 void (*write_tail)(struct intel_ring_buffer *ring,
297b0c5b 47 u32 value);
78501eac
CW
48 void (*flush)(struct intel_ring_buffer *ring,
49 u32 invalidate_domains,
50 u32 flush_domains);
51 u32 (*add_request)(struct intel_ring_buffer *ring,
52 u32 flush_domains);
53 u32 (*get_seqno)(struct intel_ring_buffer *ring);
54 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
55 struct drm_i915_gem_execbuffer2 *exec,
56 struct drm_clip_rect *cliprects,
57 uint64_t exec_offset);
8187a2b7
ZN
58
59 /**
60 * List of objects currently involved in rendering from the
61 * ringbuffer.
62 *
63 * Includes buffers having the contents of their GPU caches
64 * flushed, not necessarily primitives. last_rendering_seqno
65 * represents when the rendering involved will be completed.
66 *
67 * A reference is held on the buffer while on this list.
68 */
69 struct list_head active_list;
70
71 /**
72 * List of breadcrumbs associated with GPU requests currently
73 * outstanding.
74 */
75 struct list_head request_list;
76
64193406
CW
77 /**
78 * List of objects currently pending a GPU write flush.
79 *
80 * All elements on this list will belong to either the
81 * active_list or flushing_list, last_rendering_seqno can
82 * be used to differentiate between the two elements.
83 */
84 struct list_head gpu_write_list;
85
a56ba56c
CW
86 /**
87 * Do we have some not yet emitted requests outstanding?
88 */
89 bool outstanding_lazy_request;
90
8187a2b7
ZN
91 wait_queue_head_t irq_queue;
92 drm_local_map_t map;
93};
94
95static inline u32
96intel_read_status_page(struct intel_ring_buffer *ring,
78501eac 97 int reg)
8187a2b7 98{
78501eac 99 return ioread32(ring->status_page.page_addr + reg);
8187a2b7
ZN
100}
101
78501eac 102void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
e1f99ce6
CW
103int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
104int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
78501eac
CW
105
106static inline void intel_ring_emit(struct intel_ring_buffer *ring,
107 u32 data)
e898cd22 108{
78501eac 109 iowrite32(data, ring->virtual_start + ring->tail);
e898cd22
CW
110 ring->tail += 4;
111}
112
78501eac 113void intel_ring_advance(struct intel_ring_buffer *ring);
8187a2b7 114
78501eac 115u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
8187a2b7 116
5c1143bb
XH
117int intel_init_render_ring_buffer(struct drm_device *dev);
118int intel_init_bsd_ring_buffer(struct drm_device *dev);
549f7365 119int intel_init_blt_ring_buffer(struct drm_device *dev);
8187a2b7 120
78501eac
CW
121u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
122void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
79f321b7 123
8187a2b7 124#endif /* _INTEL_RINGBUFFER_H_ */
This page took 0.059359 seconds and 5 git commands to generate.