intel_ringbuffer.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. #ifndef _INTEL_RINGBUFFER_H_
  2. #define _INTEL_RINGBUFFER_H_
  3. #include <linux/hashtable.h>
  4. #include "i915_gem_batch_pool.h"
  5. #define I915_CMD_HASH_ORDER 9
  6. /* Early gen2 devices have a cacheline of just 32 bytes, using 64 is overkill,
  7. * but keeps the logic simple. Indeed, the whole purpose of this macro is just
  8. * to give some inclination as to some of the magic values used in the various
  9. * workarounds!
  10. */
  11. #define CACHELINE_BYTES 64
  12. #define CACHELINE_DWORDS (CACHELINE_BYTES / sizeof(uint32_t))
  13. /*
  14. * Gen2 BSpec "1. Programming Environment" / 1.4.4.6 "Ring Buffer Use"
  15. * Gen3 BSpec "vol1c Memory Interface Functions" / 2.3.4.5 "Ring Buffer Use"
  16. * Gen4+ BSpec "vol1c Memory Interface and Command Stream" / 5.3.4.5 "Ring Buffer Use"
  17. *
  18. * "If the Ring Buffer Head Pointer and the Tail Pointer are on the same
  19. * cacheline, the Head Pointer must not be greater than the Tail
  20. * Pointer."
  21. */
  22. #define I915_RING_FREE_SPACE 64
  23. struct intel_hw_status_page {
  24. u32 *page_addr;
  25. unsigned int gfx_addr;
  26. struct drm_i915_gem_object *obj;
  27. };
  28. #define I915_READ_TAIL(ring) I915_READ(RING_TAIL((ring)->mmio_base))
  29. #define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL((ring)->mmio_base), val)
  30. #define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
  31. #define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
  32. #define I915_READ_HEAD(ring) I915_READ(RING_HEAD((ring)->mmio_base))
  33. #define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
  34. #define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
  35. #define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
  36. #define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
  37. #define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
  38. #define I915_READ_MODE(ring) I915_READ(RING_MI_MODE((ring)->mmio_base))
  39. #define I915_WRITE_MODE(ring, val) I915_WRITE(RING_MI_MODE((ring)->mmio_base), val)
  40. /* seqno size is actually only a uint32, but since we plan to use MI_FLUSH_DW to
  41. * do the writes, and that must have qw aligned offsets, simply pretend it's 8b.
  42. */
  43. #define i915_semaphore_seqno_size sizeof(uint64_t)
  44. #define GEN8_SIGNAL_OFFSET(__ring, to) \
  45. (i915_gem_obj_ggtt_offset(dev_priv->semaphore_obj) + \
  46. ((__ring)->id * I915_NUM_RINGS * i915_semaphore_seqno_size) + \
  47. (i915_semaphore_seqno_size * (to)))
  48. #define GEN8_WAIT_OFFSET(__ring, from) \
  49. (i915_gem_obj_ggtt_offset(dev_priv->semaphore_obj) + \
  50. ((from) * I915_NUM_RINGS * i915_semaphore_seqno_size) + \
  51. (i915_semaphore_seqno_size * (__ring)->id))
  52. #define GEN8_RING_SEMAPHORE_INIT do { \
  53. if (!dev_priv->semaphore_obj) { \
  54. break; \
  55. } \
  56. ring->semaphore.signal_ggtt[RCS] = GEN8_SIGNAL_OFFSET(ring, RCS); \
  57. ring->semaphore.signal_ggtt[VCS] = GEN8_SIGNAL_OFFSET(ring, VCS); \
  58. ring->semaphore.signal_ggtt[BCS] = GEN8_SIGNAL_OFFSET(ring, BCS); \
  59. ring->semaphore.signal_ggtt[VECS] = GEN8_SIGNAL_OFFSET(ring, VECS); \
  60. ring->semaphore.signal_ggtt[VCS2] = GEN8_SIGNAL_OFFSET(ring, VCS2); \
  61. ring->semaphore.signal_ggtt[ring->id] = MI_SEMAPHORE_SYNC_INVALID; \
  62. } while(0)
  63. enum intel_ring_hangcheck_action {
  64. HANGCHECK_IDLE = 0,
  65. HANGCHECK_WAIT,
  66. HANGCHECK_ACTIVE,
  67. HANGCHECK_ACTIVE_LOOP,
  68. HANGCHECK_KICK,
  69. HANGCHECK_HUNG,
  70. };
  71. #define HANGCHECK_SCORE_RING_HUNG 31
  72. struct intel_ring_hangcheck {
  73. u64 acthd;
  74. u64 max_acthd;
  75. u32 seqno;
  76. int score;
  77. enum intel_ring_hangcheck_action action;
  78. int deadlock;
  79. };
  80. struct intel_ringbuffer {
  81. struct drm_i915_gem_object *obj;
  82. void __iomem *virtual_start;
  83. struct intel_engine_cs *ring;
  84. u32 head;
  85. u32 tail;
  86. int space;
  87. int size;
  88. int effective_size;
  89. int reserved_size;
  90. int reserved_tail;
  91. bool reserved_in_use;
  92. /** We track the position of the requests in the ring buffer, and
  93. * when each is retired we increment last_retired_head as the GPU
  94. * must have finished processing the request and so we know we
  95. * can advance the ringbuffer up to that position.
  96. *
  97. * last_retired_head is set to -1 after the value is consumed so
  98. * we can detect new retirements.
  99. */
  100. u32 last_retired_head;
  101. };
  102. struct intel_context;
  103. struct drm_i915_reg_descriptor;
  104. /*
  105. * we use a single page to load ctx workarounds so all of these
  106. * values are referred in terms of dwords
  107. *
  108. * struct i915_wa_ctx_bb:
  109. * offset: specifies batch starting position, also helpful in case
  110. * if we want to have multiple batches at different offsets based on
  111. * some criteria. It is not a requirement at the moment but provides
  112. * an option for future use.
  113. * size: size of the batch in DWORDS
  114. */
  115. struct i915_ctx_workarounds {
  116. struct i915_wa_ctx_bb {
  117. u32 offset;
  118. u32 size;
  119. } indirect_ctx, per_ctx;
  120. struct drm_i915_gem_object *obj;
  121. };
  122. struct intel_engine_cs {
  123. const char *name;
  124. enum intel_ring_id {
  125. RCS = 0x0,
  126. VCS,
  127. BCS,
  128. VECS,
  129. VCS2
  130. } id;
  131. #define I915_NUM_RINGS 5
  132. #define LAST_USER_RING (VECS + 1)
  133. u32 mmio_base;
  134. struct drm_device *dev;
  135. struct intel_ringbuffer *buffer;
  136. /*
  137. * A pool of objects to use as shadow copies of client batch buffers
  138. * when the command parser is enabled. Prevents the client from
  139. * modifying the batch contents after software parsing.
  140. */
  141. struct i915_gem_batch_pool batch_pool;
  142. struct intel_hw_status_page status_page;
  143. struct i915_ctx_workarounds wa_ctx;
  144. unsigned irq_refcount; /* protected by dev_priv->irq_lock */
  145. u32 irq_enable_mask; /* bitmask to enable ring interrupt */
  146. struct drm_i915_gem_request *trace_irq_req;
  147. bool __must_check (*irq_get)(struct intel_engine_cs *ring);
  148. void (*irq_put)(struct intel_engine_cs *ring);
  149. int (*init_hw)(struct intel_engine_cs *ring);
  150. int (*init_context)(struct drm_i915_gem_request *req);
  151. void (*write_tail)(struct intel_engine_cs *ring,
  152. u32 value);
  153. int __must_check (*flush)(struct drm_i915_gem_request *req,
  154. u32 invalidate_domains,
  155. u32 flush_domains);
  156. int (*add_request)(struct drm_i915_gem_request *req);
  157. /* Some chipsets are not quite as coherent as advertised and need
  158. * an expensive kick to force a true read of the up-to-date seqno.
  159. * However, the up-to-date seqno is not always required and the last
  160. * seen value is good enough. Note that the seqno will always be
  161. * monotonic, even if not coherent.
  162. */
  163. u32 (*get_seqno)(struct intel_engine_cs *ring,
  164. bool lazy_coherency);
  165. void (*set_seqno)(struct intel_engine_cs *ring,
  166. u32 seqno);
  167. int (*dispatch_execbuffer)(struct intel_engine_cs *ring,
  168. u64 offset, u32 length,
  169. unsigned dispatch_flags);
  170. #define I915_DISPATCH_SECURE 0x1
  171. #define I915_DISPATCH_PINNED 0x2
  172. void (*cleanup)(struct intel_engine_cs *ring);
  173. /* GEN8 signal/wait table - never trust comments!
  174. * signal to signal to signal to signal to signal to
  175. * RCS VCS BCS VECS VCS2
  176. * --------------------------------------------------------------------
  177. * RCS | NOP (0x00) | VCS (0x08) | BCS (0x10) | VECS (0x18) | VCS2 (0x20) |
  178. * |-------------------------------------------------------------------
  179. * VCS | RCS (0x28) | NOP (0x30) | BCS (0x38) | VECS (0x40) | VCS2 (0x48) |
  180. * |-------------------------------------------------------------------
  181. * BCS | RCS (0x50) | VCS (0x58) | NOP (0x60) | VECS (0x68) | VCS2 (0x70) |
  182. * |-------------------------------------------------------------------
  183. * VECS | RCS (0x78) | VCS (0x80) | BCS (0x88) | NOP (0x90) | VCS2 (0x98) |
  184. * |-------------------------------------------------------------------
  185. * VCS2 | RCS (0xa0) | VCS (0xa8) | BCS (0xb0) | VECS (0xb8) | NOP (0xc0) |
  186. * |-------------------------------------------------------------------
  187. *
  188. * Generalization:
  189. * f(x, y) := (x->id * NUM_RINGS * seqno_size) + (seqno_size * y->id)
  190. * ie. transpose of g(x, y)
  191. *
  192. * sync from sync from sync from sync from sync from
  193. * RCS VCS BCS VECS VCS2
  194. * --------------------------------------------------------------------
  195. * RCS | NOP (0x00) | VCS (0x28) | BCS (0x50) | VECS (0x78) | VCS2 (0xa0) |
  196. * |-------------------------------------------------------------------
  197. * VCS | RCS (0x08) | NOP (0x30) | BCS (0x58) | VECS (0x80) | VCS2 (0xa8) |
  198. * |-------------------------------------------------------------------
  199. * BCS | RCS (0x10) | VCS (0x38) | NOP (0x60) | VECS (0x88) | VCS2 (0xb0) |
  200. * |-------------------------------------------------------------------
  201. * VECS | RCS (0x18) | VCS (0x40) | BCS (0x68) | NOP (0x90) | VCS2 (0xb8) |
  202. * |-------------------------------------------------------------------
  203. * VCS2 | RCS (0x20) | VCS (0x48) | BCS (0x70) | VECS (0x98) | NOP (0xc0) |
  204. * |-------------------------------------------------------------------
  205. *
  206. * Generalization:
  207. * g(x, y) := (y->id * NUM_RINGS * seqno_size) + (seqno_size * x->id)
  208. * ie. transpose of f(x, y)
  209. */
  210. struct {
  211. u32 sync_seqno[I915_NUM_RINGS-1];
  212. union {
  213. struct {
  214. /* our mbox written by others */
  215. u32 wait[I915_NUM_RINGS];
  216. /* mboxes this ring signals to */
  217. u32 signal[I915_NUM_RINGS];
  218. } mbox;
  219. u64 signal_ggtt[I915_NUM_RINGS];
  220. };
  221. /* AKA wait() */
  222. int (*sync_to)(struct intel_engine_cs *ring,
  223. struct intel_engine_cs *to,
  224. u32 seqno);
  225. int (*signal)(struct intel_engine_cs *signaller,
  226. /* num_dwords needed by caller */
  227. unsigned int num_dwords);
  228. } semaphore;
  229. /* Execlists */
  230. spinlock_t execlist_lock;
  231. struct list_head execlist_queue;
  232. struct list_head execlist_retired_req_list;
  233. u8 next_context_status_buffer;
  234. u32 irq_keep_mask; /* bitmask for interrupts that should not be masked */
  235. int (*emit_request)(struct intel_ringbuffer *ringbuf,
  236. struct drm_i915_gem_request *request);
  237. int (*emit_flush)(struct drm_i915_gem_request *request,
  238. u32 invalidate_domains,
  239. u32 flush_domains);
  240. int (*emit_bb_start)(struct intel_ringbuffer *ringbuf,
  241. struct intel_context *ctx,
  242. u64 offset, unsigned dispatch_flags);
  243. /**
  244. * List of objects currently involved in rendering from the
  245. * ringbuffer.
  246. *
  247. * Includes buffers having the contents of their GPU caches
  248. * flushed, not necessarily primitives. last_read_req
  249. * represents when the rendering involved will be completed.
  250. *
  251. * A reference is held on the buffer while on this list.
  252. */
  253. struct list_head active_list;
  254. /**
  255. * List of breadcrumbs associated with GPU requests currently
  256. * outstanding.
  257. */
  258. struct list_head request_list;
  259. /**
  260. * Do we have some not yet emitted requests outstanding?
  261. */
  262. struct drm_i915_gem_request *outstanding_lazy_request;
  263. bool gpu_caches_dirty;
  264. wait_queue_head_t irq_queue;
  265. struct intel_context *default_context;
  266. struct intel_context *last_context;
  267. struct intel_ring_hangcheck hangcheck;
  268. struct {
  269. struct drm_i915_gem_object *obj;
  270. u32 gtt_offset;
  271. volatile u32 *cpu_page;
  272. } scratch;
  273. bool needs_cmd_parser;
  274. /*
  275. * Table of commands the command parser needs to know about
  276. * for this ring.
  277. */
  278. DECLARE_HASHTABLE(cmd_hash, I915_CMD_HASH_ORDER);
  279. /*
  280. * Table of registers allowed in commands that read/write registers.
  281. */
  282. const struct drm_i915_reg_descriptor *reg_table;
  283. int reg_count;
  284. /*
  285. * Table of registers allowed in commands that read/write registers, but
  286. * only from the DRM master.
  287. */
  288. const struct drm_i915_reg_descriptor *master_reg_table;
  289. int master_reg_count;
  290. /*
  291. * Returns the bitmask for the length field of the specified command.
  292. * Return 0 for an unrecognized/invalid command.
  293. *
  294. * If the command parser finds an entry for a command in the ring's
  295. * cmd_tables, it gets the command's length based on the table entry.
  296. * If not, it calls this function to determine the per-ring length field
  297. * encoding for the command (i.e. certain opcode ranges use certain bits
  298. * to encode the command length in the header).
  299. */
  300. u32 (*get_cmd_length_mask)(u32 cmd_header);
  301. };
  302. bool intel_ring_initialized(struct intel_engine_cs *ring);
  303. static inline unsigned
  304. intel_ring_flag(struct intel_engine_cs *ring)
  305. {
  306. return 1 << ring->id;
  307. }
  308. static inline u32
  309. intel_ring_sync_index(struct intel_engine_cs *ring,
  310. struct intel_engine_cs *other)
  311. {
  312. int idx;
  313. /*
  314. * rcs -> 0 = vcs, 1 = bcs, 2 = vecs, 3 = vcs2;
  315. * vcs -> 0 = bcs, 1 = vecs, 2 = vcs2, 3 = rcs;
  316. * bcs -> 0 = vecs, 1 = vcs2. 2 = rcs, 3 = vcs;
  317. * vecs -> 0 = vcs2, 1 = rcs, 2 = vcs, 3 = bcs;
  318. * vcs2 -> 0 = rcs, 1 = vcs, 2 = bcs, 3 = vecs;
  319. */
  320. idx = (other - ring) - 1;
  321. if (idx < 0)
  322. idx += I915_NUM_RINGS;
  323. return idx;
  324. }
  325. static inline u32
  326. intel_read_status_page(struct intel_engine_cs *ring,
  327. int reg)
  328. {
  329. /* Ensure that the compiler doesn't optimize away the load. */
  330. barrier();
  331. return ring->status_page.page_addr[reg];
  332. }
  333. static inline void
  334. intel_write_status_page(struct intel_engine_cs *ring,
  335. int reg, u32 value)
  336. {
  337. ring->status_page.page_addr[reg] = value;
  338. }
  339. /**
  340. * Reads a dword out of the status page, which is written to from the command
  341. * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
  342. * MI_STORE_DATA_IMM.
  343. *
  344. * The following dwords have a reserved meaning:
  345. * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
  346. * 0x04: ring 0 head pointer
  347. * 0x05: ring 1 head pointer (915-class)
  348. * 0x06: ring 2 head pointer (915-class)
  349. * 0x10-0x1b: Context status DWords (GM45)
  350. * 0x1f: Last written status offset. (GM45)
  351. * 0x20-0x2f: Reserved (Gen6+)
  352. *
  353. * The area from dword 0x30 to 0x3ff is available for driver usage.
  354. */
  355. #define I915_GEM_HWS_INDEX 0x30
  356. #define I915_GEM_HWS_SCRATCH_INDEX 0x40
  357. #define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
  358. void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf);
  359. int intel_pin_and_map_ringbuffer_obj(struct drm_device *dev,
  360. struct intel_ringbuffer *ringbuf);
  361. void intel_destroy_ringbuffer_obj(struct intel_ringbuffer *ringbuf);
  362. int intel_alloc_ringbuffer_obj(struct drm_device *dev,
  363. struct intel_ringbuffer *ringbuf);
  364. void intel_stop_ring_buffer(struct intel_engine_cs *ring);
  365. void intel_cleanup_ring_buffer(struct intel_engine_cs *ring);
  366. int intel_ring_alloc_request_extras(struct drm_i915_gem_request *request);
  367. int __must_check intel_ring_begin(struct intel_engine_cs *ring, int n);
  368. int __must_check intel_ring_cacheline_align(struct intel_engine_cs *ring);
  369. static inline void intel_ring_emit(struct intel_engine_cs *ring,
  370. u32 data)
  371. {
  372. struct intel_ringbuffer *ringbuf = ring->buffer;
  373. iowrite32(data, ringbuf->virtual_start + ringbuf->tail);
  374. ringbuf->tail += 4;
  375. }
  376. static inline void intel_ring_advance(struct intel_engine_cs *ring)
  377. {
  378. struct intel_ringbuffer *ringbuf = ring->buffer;
  379. ringbuf->tail &= ringbuf->size - 1;
  380. }
  381. int __intel_ring_space(int head, int tail, int size);
  382. void intel_ring_update_space(struct intel_ringbuffer *ringbuf);
  383. int intel_ring_space(struct intel_ringbuffer *ringbuf);
  384. bool intel_ring_stopped(struct intel_engine_cs *ring);
  385. int __must_check intel_ring_idle(struct intel_engine_cs *ring);
  386. void intel_ring_init_seqno(struct intel_engine_cs *ring, u32 seqno);
  387. int intel_ring_flush_all_caches(struct drm_i915_gem_request *req);
  388. int intel_ring_invalidate_all_caches(struct drm_i915_gem_request *req);
  389. void intel_fini_pipe_control(struct intel_engine_cs *ring);
  390. int intel_init_pipe_control(struct intel_engine_cs *ring);
  391. int intel_init_render_ring_buffer(struct drm_device *dev);
  392. int intel_init_bsd_ring_buffer(struct drm_device *dev);
  393. int intel_init_bsd2_ring_buffer(struct drm_device *dev);
  394. int intel_init_blt_ring_buffer(struct drm_device *dev);
  395. int intel_init_vebox_ring_buffer(struct drm_device *dev);
  396. u64 intel_ring_get_active_head(struct intel_engine_cs *ring);
  397. int init_workarounds_ring(struct intel_engine_cs *ring);
  398. static inline u32 intel_ring_get_tail(struct intel_ringbuffer *ringbuf)
  399. {
  400. return ringbuf->tail;
  401. }
  402. static inline struct drm_i915_gem_request *
  403. intel_ring_get_request(struct intel_engine_cs *ring)
  404. {
  405. BUG_ON(ring->outstanding_lazy_request == NULL);
  406. return ring->outstanding_lazy_request;
  407. }
  408. /*
  409. * Arbitrary size for largest possible 'add request' sequence. The code paths
  410. * are complex and variable. Empirical measurement shows that the worst case
  411. * is ILK at 136 words. Reserving too much is better than reserving too little
  412. * as that allows for corner cases that might have been missed. So the figure
  413. * has been rounded up to 160 words.
  414. */
  415. #define MIN_SPACE_FOR_ADD_REQUEST 160
  416. /*
  417. * Reserve space in the ring to guarantee that the i915_add_request() call
  418. * will always have sufficient room to do its stuff. The request creation
  419. * code calls this automatically.
  420. */
  421. void intel_ring_reserved_space_reserve(struct intel_ringbuffer *ringbuf, int size);
  422. /* Cancel the reservation, e.g. because the request is being discarded. */
  423. void intel_ring_reserved_space_cancel(struct intel_ringbuffer *ringbuf);
  424. /* Use the reserved space - for use by i915_add_request() only. */
  425. void intel_ring_reserved_space_use(struct intel_ringbuffer *ringbuf);
  426. /* Finish with the reserved space - for use by i915_add_request() only. */
  427. void intel_ring_reserved_space_end(struct intel_ringbuffer *ringbuf);
  428. #endif /* _INTEL_RINGBUFFER_H_ */