intel_ringbuffer.h 9.6 KB
Newer Older
1 2 3
#ifndef _INTEL_RINGBUFFER_H_
#define _INTEL_RINGBUFFER_H_

4 5 6 7
#include <linux/hashtable.h>

#define I915_CMD_HASH_ORDER 9

8 9 10 11 12 13 14 15 16 17 18
/*
 * Gen2 BSpec "1. Programming Environment" / 1.4.4.6 "Ring Buffer Use"
 * Gen3 BSpec "vol1c Memory Interface Functions" / 2.3.4.5 "Ring Buffer Use"
 * Gen4+ BSpec "vol1c Memory Interface and Command Stream" / 5.3.4.5 "Ring Buffer Use"
 *
 * "If the Ring Buffer Head Pointer and the Tail Pointer are on the same
 * cacheline, the Head Pointer must not be greater than the Tail
 * Pointer."
 */
#define I915_RING_FREE_SPACE 64

19
struct  intel_hw_status_page {
20
	u32		*page_addr;
21
	unsigned int	gfx_addr;
22
	struct		drm_i915_gem_object *obj;
23 24
};

B
Ben Widawsky 已提交
25 26
#define I915_READ_TAIL(ring) I915_READ(RING_TAIL((ring)->mmio_base))
#define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL((ring)->mmio_base), val)
27

B
Ben Widawsky 已提交
28 29
#define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
#define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
30

B
Ben Widawsky 已提交
31 32
#define I915_READ_HEAD(ring)  I915_READ(RING_HEAD((ring)->mmio_base))
#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
33

B
Ben Widawsky 已提交
34 35
#define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
36

B
Ben Widawsky 已提交
37 38
#define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
#define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
39

40
#define I915_READ_MODE(ring) I915_READ(RING_MI_MODE((ring)->mmio_base))
41
#define I915_WRITE_MODE(ring, val) I915_WRITE(RING_MI_MODE((ring)->mmio_base), val)
42

43
enum intel_ring_hangcheck_action {
44
	HANGCHECK_IDLE = 0,
45 46 47 48 49
	HANGCHECK_WAIT,
	HANGCHECK_ACTIVE,
	HANGCHECK_KICK,
	HANGCHECK_HUNG,
};
50

51 52
#define HANGCHECK_SCORE_RING_HUNG 31

53
struct intel_ring_hangcheck {
54
	u64 acthd;
55
	u32 seqno;
56
	int score;
57
	enum intel_ring_hangcheck_action action;
58
	bool deadlock;
59 60
};

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
struct intel_ringbuffer {
	struct drm_i915_gem_object *obj;
	void __iomem *virtual_start;

	u32 head;
	u32 tail;
	int space;
	int size;
	int effective_size;

	/** We track the position of the requests in the ring buffer, and
	 * when each is retired we increment last_retired_head as the GPU
	 * must have finished processing the request and so we know we
	 * can advance the ringbuffer up to that position.
	 *
	 * last_retired_head is set to -1 after the value is consumed so
	 * we can detect new retirements.
	 */
	u32 last_retired_head;
};

82
struct  intel_engine_cs {
83
	const char	*name;
84
	enum intel_ring_id {
85 86 87
		RCS = 0x0,
		VCS,
		BCS,
88
		VECS,
89
		VCS2
90
	} id;
91
#define I915_NUM_RINGS 5
92
#define LAST_USER_RING (VECS + 1)
93
	u32		mmio_base;
94
	struct		drm_device *dev;
95
	struct intel_ringbuffer *buffer;
96 97 98

	struct intel_hw_status_page status_page;

99
	unsigned irq_refcount; /* protected by dev_priv->irq_lock */
D
Daniel Vetter 已提交
100
	u32		irq_enable_mask;	/* bitmask to enable ring interrupt */
C
Chris Wilson 已提交
101
	u32		trace_irq_seqno;
102 103
	bool __must_check (*irq_get)(struct intel_engine_cs *ring);
	void		(*irq_put)(struct intel_engine_cs *ring);
104

105
	int		(*init)(struct intel_engine_cs *ring);
106

107
	void		(*write_tail)(struct intel_engine_cs *ring,
108
				      u32 value);
109
	int __must_check (*flush)(struct intel_engine_cs *ring,
110 111
				  u32	invalidate_domains,
				  u32	flush_domains);
112
	int		(*add_request)(struct intel_engine_cs *ring);
113 114 115 116 117 118
	/* Some chipsets are not quite as coherent as advertised and need
	 * an expensive kick to force a true read of the up-to-date seqno.
	 * However, the up-to-date seqno is not always required and the last
	 * seen value is good enough. Note that the seqno will always be
	 * monotonic, even if not coherent.
	 */
119
	u32		(*get_seqno)(struct intel_engine_cs *ring,
120
				     bool lazy_coherency);
121
	void		(*set_seqno)(struct intel_engine_cs *ring,
M
Mika Kuoppala 已提交
122
				     u32 seqno);
123
	int		(*dispatch_execbuffer)(struct intel_engine_cs *ring,
B
Ben Widawsky 已提交
124
					       u64 offset, u32 length,
125 126
					       unsigned flags);
#define I915_DISPATCH_SECURE 0x1
127
#define I915_DISPATCH_PINNED 0x2
128
	void		(*cleanup)(struct intel_engine_cs *ring);
129 130 131

	struct {
		u32	sync_seqno[I915_NUM_RINGS-1];
132

133 134 135 136 137 138
		struct {
			/* our mbox written by others */
			u32		wait[I915_NUM_RINGS];
			/* mboxes this ring signals to */
			u32		signal[I915_NUM_RINGS];
		} mbox;
139 140

		/* AKA wait() */
141 142
		int	(*sync_to)(struct intel_engine_cs *ring,
				   struct intel_engine_cs *to,
143
				   u32 seqno);
144
		int	(*signal)(struct intel_engine_cs *signaller,
145 146
				  /* num_dwords needed by caller */
				  unsigned int num_dwords);
147
	} semaphore;
148

149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	/**
	 * List of objects currently involved in rendering from the
	 * ringbuffer.
	 *
	 * Includes buffers having the contents of their GPU caches
	 * flushed, not necessarily primitives.  last_rendering_seqno
	 * represents when the rendering involved will be completed.
	 *
	 * A reference is held on the buffer while on this list.
	 */
	struct list_head active_list;

	/**
	 * List of breadcrumbs associated with GPU requests currently
	 * outstanding.
	 */
	struct list_head request_list;

167 168 169
	/**
	 * Do we have some not yet emitted requests outstanding?
	 */
170
	struct drm_i915_gem_request *preallocated_lazy_request;
171
	u32 outstanding_lazy_seqno;
172
	bool gpu_caches_dirty;
173
	bool fbc_dirty;
174

175
	wait_queue_head_t irq_queue;
Z
Zou Nan hai 已提交
176

177
	struct i915_hw_context *default_context;
178
	struct i915_hw_context *last_context;
179

180 181
	struct intel_ring_hangcheck hangcheck;

182 183 184 185 186
	struct {
		struct drm_i915_gem_object *obj;
		u32 gtt_offset;
		volatile u32 *cpu_page;
	} scratch;
187

188 189
	bool needs_cmd_parser;

190
	/*
191
	 * Table of commands the command parser needs to know about
192 193
	 * for this ring.
	 */
194
	DECLARE_HASHTABLE(cmd_hash, I915_CMD_HASH_ORDER);
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

	/*
	 * Table of registers allowed in commands that read/write registers.
	 */
	const u32 *reg_table;
	int reg_count;

	/*
	 * Table of registers allowed in commands that read/write registers, but
	 * only from the DRM master.
	 */
	const u32 *master_reg_table;
	int master_reg_count;

	/*
	 * Returns the bitmask for the length field of the specified command.
	 * Return 0 for an unrecognized/invalid command.
	 *
	 * If the command parser finds an entry for a command in the ring's
	 * cmd_tables, it gets the command's length based on the table entry.
	 * If not, it calls this function to determine the per-ring length field
	 * encoding for the command (i.e. certain opcode ranges use certain bits
	 * to encode the command length in the header).
	 */
	u32 (*get_cmd_length_mask)(u32 cmd_header);
220 221
};

222
static inline bool
223
intel_ring_initialized(struct intel_engine_cs *ring)
224
{
225
	return ring->buffer && ring->buffer->obj;
226 227
}

228
static inline unsigned
229
intel_ring_flag(struct intel_engine_cs *ring)
230 231 232 233
{
	return 1 << ring->id;
}

234
static inline u32
235 236
intel_ring_sync_index(struct intel_engine_cs *ring,
		      struct intel_engine_cs *other)
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
{
	int idx;

	/*
	 * cs -> 0 = vcs, 1 = bcs
	 * vcs -> 0 = bcs, 1 = cs,
	 * bcs -> 0 = cs, 1 = vcs.
	 */

	idx = (other - ring) - 1;
	if (idx < 0)
		idx += I915_NUM_RINGS;

	return idx;
}

253
static inline u32
254
intel_read_status_page(struct intel_engine_cs *ring,
255
		       int reg)
256
{
257 258 259
	/* Ensure that the compiler doesn't optimize away the load. */
	barrier();
	return ring->status_page.page_addr[reg];
260 261
}

M
Mika Kuoppala 已提交
262
static inline void
263
intel_write_status_page(struct intel_engine_cs *ring,
M
Mika Kuoppala 已提交
264 265 266 267 268
			int reg, u32 value)
{
	ring->status_page.page_addr[reg] = value;
}

C
Chris Wilson 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
/**
 * Reads a dword out of the status page, which is written to from the command
 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
 * MI_STORE_DATA_IMM.
 *
 * The following dwords have a reserved meaning:
 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
 * 0x04: ring 0 head pointer
 * 0x05: ring 1 head pointer (915-class)
 * 0x06: ring 2 head pointer (915-class)
 * 0x10-0x1b: Context status DWords (GM45)
 * 0x1f: Last written status offset. (GM45)
 *
 * The area from dword 0x20 to 0x3ff is available for driver usage.
 */
#define I915_GEM_HWS_INDEX		0x20
285 286
#define I915_GEM_HWS_SCRATCH_INDEX	0x30
#define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
C
Chris Wilson 已提交
287

288 289
void intel_stop_ring_buffer(struct intel_engine_cs *ring);
void intel_cleanup_ring_buffer(struct intel_engine_cs *ring);
290

291 292 293
int __must_check intel_ring_begin(struct intel_engine_cs *ring, int n);
int __must_check intel_ring_cacheline_align(struct intel_engine_cs *ring);
static inline void intel_ring_emit(struct intel_engine_cs *ring,
294
				   u32 data)
295
{
296 297
	iowrite32(data, ring->buffer->virtual_start + ring->buffer->tail);
	ring->buffer->tail += 4;
298
}
299
static inline void intel_ring_advance(struct intel_engine_cs *ring)
300
{
301
	ring->buffer->tail &= ring->buffer->size - 1;
302
}
303
void __intel_ring_advance(struct intel_engine_cs *ring);
304

305 306 307 308
int __must_check intel_ring_idle(struct intel_engine_cs *ring);
void intel_ring_init_seqno(struct intel_engine_cs *ring, u32 seqno);
int intel_ring_flush_all_caches(struct intel_engine_cs *ring);
int intel_ring_invalidate_all_caches(struct intel_engine_cs *ring);
309

310 311
int intel_init_render_ring_buffer(struct drm_device *dev);
int intel_init_bsd_ring_buffer(struct drm_device *dev);
312
int intel_init_bsd2_ring_buffer(struct drm_device *dev);
313
int intel_init_blt_ring_buffer(struct drm_device *dev);
B
Ben Widawsky 已提交
314
int intel_init_vebox_ring_buffer(struct drm_device *dev);
315

316 317
u64 intel_ring_get_active_head(struct intel_engine_cs *ring);
void intel_ring_setup_status_page(struct intel_engine_cs *ring);
318

319
static inline u32 intel_ring_get_tail(struct intel_engine_cs *ring)
320
{
321
	return ring->buffer->tail;
322 323
}

324
static inline u32 intel_ring_get_seqno(struct intel_engine_cs *ring)
325
{
326 327
	BUG_ON(ring->outstanding_lazy_seqno == 0);
	return ring->outstanding_lazy_seqno;
328 329
}

330
static inline void i915_trace_irq_get(struct intel_engine_cs *ring, u32 seqno)
C
Chris Wilson 已提交
331 332 333 334 335
{
	if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
		ring->trace_irq_seqno = seqno;
}

336 337 338
/* DRI warts */
int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);

339
#endif /* _INTEL_RINGBUFFER_H_ */