blob: 153b87f67aaeb5d8ee8d6ceca3be6c8179cb77bd [file] [log] [blame]
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001#ifndef _INTEL_RINGBUFFER_H_
2#define _INTEL_RINGBUFFER_H_
3
Ville Syrjälä633cf8f2012-12-03 18:43:32 +02004/*
5 * Gen2 BSpec "1. Programming Environment" / 1.4.4.6 "Ring Buffer Use"
6 * Gen3 BSpec "vol1c Memory Interface Functions" / 2.3.4.5 "Ring Buffer Use"
7 * Gen4+ BSpec "vol1c Memory Interface and Command Stream" / 5.3.4.5 "Ring Buffer Use"
8 *
9 * "If the Ring Buffer Head Pointer and the Tail Pointer are on the same
10 * cacheline, the Head Pointer must not be greater than the Tail
11 * Pointer."
12 */
13#define I915_RING_FREE_SPACE 64
14
Zou Nan hai8187a2b2010-05-21 09:08:55 +080015struct intel_hw_status_page {
Daniel Vetter4225d0f2012-04-26 23:28:16 +020016 u32 *page_addr;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080017 unsigned int gfx_addr;
Chris Wilson05394f32010-11-08 19:18:58 +000018 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080019};
20
Ben Widawskyb7287d82011-04-25 11:22:22 -070021#define I915_READ_TAIL(ring) I915_READ(RING_TAIL((ring)->mmio_base))
22#define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080023
Ben Widawskyb7287d82011-04-25 11:22:22 -070024#define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
25#define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080026
Ben Widawskyb7287d82011-04-25 11:22:22 -070027#define I915_READ_HEAD(ring) I915_READ(RING_HEAD((ring)->mmio_base))
28#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080029
Ben Widawskyb7287d82011-04-25 11:22:22 -070030#define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
31#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080032
Ben Widawskyb7287d82011-04-25 11:22:22 -070033#define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
34#define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
Daniel Vetter870e86d2010-08-02 16:29:44 +020035
Ben Widawskyb7287d82011-04-25 11:22:22 -070036#define I915_READ_NOPID(ring) I915_READ(RING_NOPID((ring)->mmio_base))
37#define I915_READ_SYNC_0(ring) I915_READ(RING_SYNC_0((ring)->mmio_base))
38#define I915_READ_SYNC_1(ring) I915_READ(RING_SYNC_1((ring)->mmio_base))
Chris Wilson1ec14ad2010-12-04 11:30:53 +000039
Mika Kuoppala92cab732013-05-24 17:16:07 +030040struct intel_ring_hangcheck {
41 u32 seqno;
42};
43
Zou Nan hai8187a2b2010-05-21 09:08:55 +080044struct intel_ring_buffer {
45 const char *name;
Chris Wilson92204342010-09-18 11:02:01 +010046 enum intel_ring_id {
Daniel Vetter96154f22011-12-14 13:57:00 +010047 RCS = 0x0,
48 VCS,
49 BCS,
Ben Widawsky4a3dd192013-05-28 19:22:19 -070050 VECS,
Chris Wilson92204342010-09-18 11:02:01 +010051 } id;
Ben Widawsky4a3dd192013-05-28 19:22:19 -070052#define I915_NUM_RINGS 4
Daniel Vetter333e9fe2010-08-02 16:24:01 +020053 u32 mmio_base;
Chris Wilson311bd682011-01-13 19:06:50 +000054 void __iomem *virtual_start;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080055 struct drm_device *dev;
Chris Wilson05394f32010-11-08 19:18:58 +000056 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080057
Chris Wilson8c0a6bf2010-12-09 12:56:37 +000058 u32 head;
59 u32 tail;
Chris Wilson780f0ca2010-09-23 17:45:39 +010060 int space;
Chris Wilsonc2c347a92010-10-27 15:11:53 +010061 int size;
Chris Wilson55249ba2010-12-22 14:04:47 +000062 int effective_size;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080063 struct intel_hw_status_page status_page;
64
Chris Wilsona71d8d92012-02-15 11:25:36 +000065 /** We track the position of the requests in the ring buffer, and
66 * when each is retired we increment last_retired_head as the GPU
67 * must have finished processing the request and so we know we
68 * can advance the ringbuffer up to that position.
69 *
70 * last_retired_head is set to -1 after the value is consumed so
71 * we can detect new retirements.
72 */
73 u32 last_retired_head;
74
Ben Widawskyaeb06592013-05-28 19:22:28 -070075 struct {
76 u32 gt;
77 } irq_refcount; /* protected by dev_priv->irq_lock */
Daniel Vetter6a848cc2012-04-11 22:12:46 +020078 u32 irq_enable_mask; /* bitmask to enable ring interrupt */
Chris Wilsondb53a302011-02-03 11:57:46 +000079 u32 trace_irq_seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000080 u32 sync_seqno[I915_NUM_RINGS-1];
Chris Wilsonb13c2b92010-12-13 16:54:50 +000081 bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +000082 void (*irq_put)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080083
Chris Wilson78501ea2010-10-27 12:18:21 +010084 int (*init)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080085
Chris Wilson78501ea2010-10-27 12:18:21 +010086 void (*write_tail)(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +010087 u32 value);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000088 int __must_check (*flush)(struct intel_ring_buffer *ring,
89 u32 invalidate_domains,
90 u32 flush_domains);
Chris Wilson9d7730912012-11-27 16:22:52 +000091 int (*add_request)(struct intel_ring_buffer *ring);
Chris Wilsonb2eadbc2012-08-09 10:58:30 +010092 /* Some chipsets are not quite as coherent as advertised and need
93 * an expensive kick to force a true read of the up-to-date seqno.
94 * However, the up-to-date seqno is not always required and the last
95 * seen value is good enough. Note that the seqno will always be
96 * monotonic, even if not coherent.
97 */
98 u32 (*get_seqno)(struct intel_ring_buffer *ring,
99 bool lazy_coherency);
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200100 void (*set_seqno)(struct intel_ring_buffer *ring,
101 u32 seqno);
Chris Wilson78501ea2010-10-27 12:18:21 +0100102 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
Chris Wilsond7d4eed2012-10-17 12:09:54 +0100103 u32 offset, u32 length,
104 unsigned flags);
105#define I915_DISPATCH_SECURE 0x1
Daniel Vetterb45305f2012-12-17 16:21:27 +0100106#define I915_DISPATCH_PINNED 0x2
Zou Nan hai8d192152010-11-02 16:31:01 +0800107 void (*cleanup)(struct intel_ring_buffer *ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -0700108 int (*sync_to)(struct intel_ring_buffer *ring,
109 struct intel_ring_buffer *to,
110 u32 seqno);
Ben Widawskyad776f82013-05-28 19:22:18 -0700111
Ben Widawsky55861812013-05-28 19:22:17 -0700112 /* our mbox written by others */
113 u32 semaphore_register[I915_NUM_RINGS];
Ben Widawskyad776f82013-05-28 19:22:18 -0700114 /* mboxes this ring signals to */
115 u32 signal_mbox[I915_NUM_RINGS];
116
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800117 /**
118 * List of objects currently involved in rendering from the
119 * ringbuffer.
120 *
121 * Includes buffers having the contents of their GPU caches
122 * flushed, not necessarily primitives. last_rendering_seqno
123 * represents when the rendering involved will be completed.
124 *
125 * A reference is held on the buffer while on this list.
126 */
127 struct list_head active_list;
128
129 /**
130 * List of breadcrumbs associated with GPU requests currently
131 * outstanding.
132 */
133 struct list_head request_list;
134
Chris Wilsona56ba562010-09-28 10:07:56 +0100135 /**
136 * Do we have some not yet emitted requests outstanding?
137 */
Chris Wilson5d97eb62010-11-10 20:40:02 +0000138 u32 outstanding_lazy_request;
Daniel Vettercc889e02012-06-13 20:45:19 +0200139 bool gpu_caches_dirty;
Chris Wilsona56ba562010-09-28 10:07:56 +0100140
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800141 wait_queue_head_t irq_queue;
Zou Nan hai8d192152010-11-02 16:31:01 +0800142
Ben Widawsky12b02862012-06-04 14:42:50 -0700143 /**
144 * Do an explicit TLB flush before MI_SET_CONTEXT
145 */
146 bool itlb_before_ctx_switch;
Ben Widawsky40521052012-06-04 14:42:43 -0700147 struct i915_hw_context *default_context;
Chris Wilson112522f2013-05-02 16:48:07 +0300148 struct i915_hw_context *last_context;
Ben Widawsky40521052012-06-04 14:42:43 -0700149
Mika Kuoppala92cab732013-05-24 17:16:07 +0300150 struct intel_ring_hangcheck hangcheck;
151
Zou Nan hai8d192152010-11-02 16:31:01 +0800152 void *private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800153};
154
Chris Wilsonb4519512012-05-11 14:29:30 +0100155static inline bool
156intel_ring_initialized(struct intel_ring_buffer *ring)
157{
158 return ring->obj != NULL;
159}
160
Daniel Vetter96154f22011-12-14 13:57:00 +0100161static inline unsigned
162intel_ring_flag(struct intel_ring_buffer *ring)
163{
164 return 1 << ring->id;
165}
166
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800167static inline u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000168intel_ring_sync_index(struct intel_ring_buffer *ring,
169 struct intel_ring_buffer *other)
170{
171 int idx;
172
173 /*
174 * cs -> 0 = vcs, 1 = bcs
175 * vcs -> 0 = bcs, 1 = cs,
176 * bcs -> 0 = cs, 1 = vcs.
177 */
178
179 idx = (other - ring) - 1;
180 if (idx < 0)
181 idx += I915_NUM_RINGS;
182
183 return idx;
184}
185
186static inline u32
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800187intel_read_status_page(struct intel_ring_buffer *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +0100188 int reg)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800189{
Daniel Vetter4225d0f2012-04-26 23:28:16 +0200190 /* Ensure that the compiler doesn't optimize away the load. */
191 barrier();
192 return ring->status_page.page_addr[reg];
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800193}
194
Mika Kuoppalab70ec5b2012-12-19 11:13:05 +0200195static inline void
196intel_write_status_page(struct intel_ring_buffer *ring,
197 int reg, u32 value)
198{
199 ring->status_page.page_addr[reg] = value;
200}
201
Chris Wilson311bd682011-01-13 19:06:50 +0000202/**
203 * Reads a dword out of the status page, which is written to from the command
204 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
205 * MI_STORE_DATA_IMM.
206 *
207 * The following dwords have a reserved meaning:
208 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
209 * 0x04: ring 0 head pointer
210 * 0x05: ring 1 head pointer (915-class)
211 * 0x06: ring 2 head pointer (915-class)
212 * 0x10-0x1b: Context status DWords (GM45)
213 * 0x1f: Last written status offset. (GM45)
214 *
215 * The area from dword 0x20 to 0x3ff is available for driver usage.
216 */
Chris Wilson311bd682011-01-13 19:06:50 +0000217#define I915_GEM_HWS_INDEX 0x20
Jesse Barnes9a289772012-10-26 09:42:42 -0700218#define I915_GEM_HWS_SCRATCH_INDEX 0x30
219#define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
Chris Wilson311bd682011-01-13 19:06:50 +0000220
Chris Wilson78501ea2010-10-27 12:18:21 +0100221void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700222
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100223int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
Chris Wilson78501ea2010-10-27 12:18:21 +0100224static inline void intel_ring_emit(struct intel_ring_buffer *ring,
225 u32 data)
Chris Wilsone898cd22010-08-04 15:18:14 +0100226{
Chris Wilson78501ea2010-10-27 12:18:21 +0100227 iowrite32(data, ring->virtual_start + ring->tail);
Chris Wilsone898cd22010-08-04 15:18:14 +0100228 ring->tail += 4;
229}
Chris Wilson78501ea2010-10-27 12:18:21 +0100230void intel_ring_advance(struct intel_ring_buffer *ring);
Chris Wilson3e960502012-11-27 16:22:54 +0000231int __must_check intel_ring_idle(struct intel_ring_buffer *ring);
Mika Kuoppalaf7e98ad2012-12-19 11:13:06 +0200232void intel_ring_init_seqno(struct intel_ring_buffer *ring, u32 seqno);
Chris Wilsona7b97612012-07-20 12:41:08 +0100233int intel_ring_flush_all_caches(struct intel_ring_buffer *ring);
234int intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800235
Xiang, Haihao5c1143b2010-09-16 10:43:11 +0800236int intel_init_render_ring_buffer(struct drm_device *dev);
237int intel_init_bsd_ring_buffer(struct drm_device *dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100238int intel_init_blt_ring_buffer(struct drm_device *dev);
Ben Widawsky9a8a2212013-05-28 19:22:23 -0700239int intel_init_vebox_ring_buffer(struct drm_device *dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800240
Chris Wilson78501ea2010-10-27 12:18:21 +0100241u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
242void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
Daniel Vetter79f321b2010-09-24 21:20:10 +0200243
Chris Wilsona71d8d92012-02-15 11:25:36 +0000244static inline u32 intel_ring_get_tail(struct intel_ring_buffer *ring)
245{
246 return ring->tail;
247}
248
Chris Wilson9d7730912012-11-27 16:22:52 +0000249static inline u32 intel_ring_get_seqno(struct intel_ring_buffer *ring)
250{
251 BUG_ON(ring->outstanding_lazy_request == 0);
252 return ring->outstanding_lazy_request;
253}
254
Chris Wilsondb53a302011-02-03 11:57:46 +0000255static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno)
256{
257 if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
258 ring->trace_irq_seqno = seqno;
259}
260
Chris Wilsone8616b62011-01-20 09:57:11 +0000261/* DRI warts */
262int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
263
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800264#endif /* _INTEL_RINGBUFFER_H_ */