blob: 4a7cd67742da3e5e4eacab22bf246918c5c8227e [file] [log] [blame]
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001#ifndef _INTEL_RINGBUFFER_H_
2#define _INTEL_RINGBUFFER_H_
3
4struct intel_hw_status_page {
Daniel Vetter4225d0f2012-04-26 23:28:16 +02005 u32 *page_addr;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08006 unsigned int gfx_addr;
Chris Wilson05394f32010-11-08 19:18:58 +00007 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08008};
9
Ben Widawskyb7287d82011-04-25 11:22:22 -070010#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)
Zou Nan haicae58522010-11-09 17:17:32 +080012
Ben Widawskyb7287d82011-04-25 11:22:22 -070013#define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
14#define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080015
Ben Widawskyb7287d82011-04-25 11:22:22 -070016#define I915_READ_HEAD(ring) I915_READ(RING_HEAD((ring)->mmio_base))
17#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080018
Ben Widawskyb7287d82011-04-25 11:22:22 -070019#define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
20#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080021
Ben Widawskyb7287d82011-04-25 11:22:22 -070022#define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
23#define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
Daniel Vetter870e86d2010-08-02 16:29:44 +020024
Ben Widawskyb7287d82011-04-25 11:22:22 -070025#define I915_READ_NOPID(ring) I915_READ(RING_NOPID((ring)->mmio_base))
26#define I915_READ_SYNC_0(ring) I915_READ(RING_SYNC_0((ring)->mmio_base))
27#define I915_READ_SYNC_1(ring) I915_READ(RING_SYNC_1((ring)->mmio_base))
Chris Wilson1ec14ad2010-12-04 11:30:53 +000028
Zou Nan hai8187a2b2010-05-21 09:08:55 +080029struct intel_ring_buffer {
30 const char *name;
Chris Wilson92204342010-09-18 11:02:01 +010031 enum intel_ring_id {
Daniel Vetter96154f22011-12-14 13:57:00 +010032 RCS = 0x0,
33 VCS,
34 BCS,
Chris Wilson92204342010-09-18 11:02:01 +010035 } id;
Daniel Vetter96154f22011-12-14 13:57:00 +010036#define I915_NUM_RINGS 3
Daniel Vetter333e9fe2010-08-02 16:24:01 +020037 u32 mmio_base;
Chris Wilson311bd682011-01-13 19:06:50 +000038 void __iomem *virtual_start;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080039 struct drm_device *dev;
Chris Wilson05394f32010-11-08 19:18:58 +000040 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080041
Chris Wilson8c0a6bf2010-12-09 12:56:37 +000042 u32 head;
43 u32 tail;
Chris Wilson780f0ca2010-09-23 17:45:39 +010044 int space;
Chris Wilsonc2c347a92010-10-27 15:11:53 +010045 int size;
Chris Wilson55249ba2010-12-22 14:04:47 +000046 int effective_size;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080047 struct intel_hw_status_page status_page;
48
Chris Wilsona71d8d92012-02-15 11:25:36 +000049 /** We track the position of the requests in the ring buffer, and
50 * when each is retired we increment last_retired_head as the GPU
51 * must have finished processing the request and so we know we
52 * can advance the ringbuffer up to that position.
53 *
54 * last_retired_head is set to -1 after the value is consumed so
55 * we can detect new retirements.
56 */
57 u32 last_retired_head;
58
Chris Wilson7338aef2012-04-24 21:48:47 +010059 u32 irq_refcount; /* protected by dev_priv->irq_lock */
Daniel Vetter6a848cc2012-04-11 22:12:46 +020060 u32 irq_enable_mask; /* bitmask to enable ring interrupt */
Chris Wilsondb53a302011-02-03 11:57:46 +000061 u32 trace_irq_seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000062 u32 sync_seqno[I915_NUM_RINGS-1];
Chris Wilsonb13c2b92010-12-13 16:54:50 +000063 bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +000064 void (*irq_put)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080065
Chris Wilson78501ea2010-10-27 12:18:21 +010066 int (*init)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080067
Chris Wilson78501ea2010-10-27 12:18:21 +010068 void (*write_tail)(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +010069 u32 value);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000070 int __must_check (*flush)(struct intel_ring_buffer *ring,
71 u32 invalidate_domains,
72 u32 flush_domains);
Chris Wilson9d7730912012-11-27 16:22:52 +000073 int (*add_request)(struct intel_ring_buffer *ring);
Chris Wilsonb2eadbc2012-08-09 10:58:30 +010074 /* Some chipsets are not quite as coherent as advertised and need
75 * an expensive kick to force a true read of the up-to-date seqno.
76 * However, the up-to-date seqno is not always required and the last
77 * seen value is good enough. Note that the seqno will always be
78 * monotonic, even if not coherent.
79 */
80 u32 (*get_seqno)(struct intel_ring_buffer *ring,
81 bool lazy_coherency);
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +020082 void (*set_seqno)(struct intel_ring_buffer *ring,
83 u32 seqno);
Chris Wilson78501ea2010-10-27 12:18:21 +010084 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +010085 u32 offset, u32 length,
86 unsigned flags);
87#define I915_DISPATCH_SECURE 0x1
Zou Nan hai8d192152010-11-02 16:31:01 +080088 void (*cleanup)(struct intel_ring_buffer *ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -070089 int (*sync_to)(struct intel_ring_buffer *ring,
90 struct intel_ring_buffer *to,
91 u32 seqno);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080092
Ben Widawskyc8c99b02011-09-14 20:32:47 -070093 u32 semaphore_register[3]; /*our mbox written by others */
94 u32 signal_mbox[2]; /* mboxes this ring signals to */
Zou Nan hai8187a2b2010-05-21 09:08:55 +080095 /**
96 * List of objects currently involved in rendering from the
97 * ringbuffer.
98 *
99 * Includes buffers having the contents of their GPU caches
100 * flushed, not necessarily primitives. last_rendering_seqno
101 * represents when the rendering involved will be completed.
102 *
103 * A reference is held on the buffer while on this list.
104 */
105 struct list_head active_list;
106
107 /**
108 * List of breadcrumbs associated with GPU requests currently
109 * outstanding.
110 */
111 struct list_head request_list;
112
Chris Wilsona56ba562010-09-28 10:07:56 +0100113 /**
114 * Do we have some not yet emitted requests outstanding?
115 */
Chris Wilson5d97eb62010-11-10 20:40:02 +0000116 u32 outstanding_lazy_request;
Daniel Vettercc889e02012-06-13 20:45:19 +0200117 bool gpu_caches_dirty;
Chris Wilsona56ba562010-09-28 10:07:56 +0100118
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800119 wait_queue_head_t irq_queue;
Zou Nan hai8d192152010-11-02 16:31:01 +0800120
Ben Widawsky12b02862012-06-04 14:42:50 -0700121 /**
122 * Do an explicit TLB flush before MI_SET_CONTEXT
123 */
124 bool itlb_before_ctx_switch;
Ben Widawsky40521052012-06-04 14:42:43 -0700125 struct i915_hw_context *default_context;
Ben Widawskye0556842012-06-04 14:42:46 -0700126 struct drm_i915_gem_object *last_context_obj;
Ben Widawsky40521052012-06-04 14:42:43 -0700127
Zou Nan hai8d192152010-11-02 16:31:01 +0800128 void *private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800129};
130
Chris Wilsonb4519512012-05-11 14:29:30 +0100131static inline bool
132intel_ring_initialized(struct intel_ring_buffer *ring)
133{
134 return ring->obj != NULL;
135}
136
Daniel Vetter96154f22011-12-14 13:57:00 +0100137static inline unsigned
138intel_ring_flag(struct intel_ring_buffer *ring)
139{
140 return 1 << ring->id;
141}
142
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800143static inline u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000144intel_ring_sync_index(struct intel_ring_buffer *ring,
145 struct intel_ring_buffer *other)
146{
147 int idx;
148
149 /*
150 * cs -> 0 = vcs, 1 = bcs
151 * vcs -> 0 = bcs, 1 = cs,
152 * bcs -> 0 = cs, 1 = vcs.
153 */
154
155 idx = (other - ring) - 1;
156 if (idx < 0)
157 idx += I915_NUM_RINGS;
158
159 return idx;
160}
161
162static inline u32
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800163intel_read_status_page(struct intel_ring_buffer *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +0100164 int reg)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800165{
Daniel Vetter4225d0f2012-04-26 23:28:16 +0200166 /* Ensure that the compiler doesn't optimize away the load. */
167 barrier();
168 return ring->status_page.page_addr[reg];
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800169}
170
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200171static inline void
172intel_write_status_page(struct intel_ring_buffer *ring,
173 int reg, u32 value)
174{
175 ring->status_page.page_addr[reg] = value;
176}
177
Chris Wilson311bd682011-01-13 19:06:50 +0000178/**
179 * Reads a dword out of the status page, which is written to from the command
180 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
181 * MI_STORE_DATA_IMM.
182 *
183 * The following dwords have a reserved meaning:
184 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
185 * 0x04: ring 0 head pointer
186 * 0x05: ring 1 head pointer (915-class)
187 * 0x06: ring 2 head pointer (915-class)
188 * 0x10-0x1b: Context status DWords (GM45)
189 * 0x1f: Last written status offset. (GM45)
190 *
191 * The area from dword 0x20 to 0x3ff is available for driver usage.
192 */
Chris Wilson311bd682011-01-13 19:06:50 +0000193#define I915_GEM_HWS_INDEX 0x20
Jesse Barnes9a289772012-10-26 09:42:42 -0700194#define I915_GEM_HWS_SCRATCH_INDEX 0x30
195#define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
Chris Wilson311bd682011-01-13 19:06:50 +0000196
Chris Wilson78501ea2010-10-27 12:18:21 +0100197void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700198
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100199int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
Chris Wilson78501ea2010-10-27 12:18:21 +0100200static inline void intel_ring_emit(struct intel_ring_buffer *ring,
201 u32 data)
Chris Wilsone898cd22010-08-04 15:18:14 +0100202{
Chris Wilson78501ea2010-10-27 12:18:21 +0100203 iowrite32(data, ring->virtual_start + ring->tail);
Chris Wilsone898cd22010-08-04 15:18:14 +0100204 ring->tail += 4;
205}
Chris Wilson78501ea2010-10-27 12:18:21 +0100206void intel_ring_advance(struct intel_ring_buffer *ring);
Chris Wilson3e960502012-11-27 16:22:54 +0000207int __must_check intel_ring_idle(struct intel_ring_buffer *ring);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +0200208int __must_check intel_ring_handle_seqno_wrap(struct intel_ring_buffer *ring);
Chris Wilsona7b97612012-07-20 12:41:08 +0100209int intel_ring_flush_all_caches(struct intel_ring_buffer *ring);
210int intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800211
Xiang, Haihao5c1143b2010-09-16 10:43:11 +0800212int intel_init_render_ring_buffer(struct drm_device *dev);
213int intel_init_bsd_ring_buffer(struct drm_device *dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100214int intel_init_blt_ring_buffer(struct drm_device *dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800215
Chris Wilson78501ea2010-10-27 12:18:21 +0100216u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
217void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
Daniel Vetter79f321b2010-09-24 21:20:10 +0200218
Chris Wilsona71d8d92012-02-15 11:25:36 +0000219static inline u32 intel_ring_get_tail(struct intel_ring_buffer *ring)
220{
221 return ring->tail;
222}
223
Chris Wilson9d7730912012-11-27 16:22:52 +0000224static inline u32 intel_ring_get_seqno(struct intel_ring_buffer *ring)
225{
226 BUG_ON(ring->outstanding_lazy_request == 0);
227 return ring->outstanding_lazy_request;
228}
229
Chris Wilsondb53a302011-02-03 11:57:46 +0000230static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno)
231{
232 if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
233 ring->trace_irq_seqno = seqno;
234}
235
Chris Wilsone8616b62011-01-20 09:57:11 +0000236/* DRI warts */
237int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
238
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800239#endif /* _INTEL_RINGBUFFER_H_ */