intel_ringbuffer.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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 gen8_semaphore_seqno_size sizeof(uint64_t)
  44. #define GEN8_SEMAPHORE_OFFSET(__from, __to) \
  45. (((__from) * I915_NUM_ENGINES + (__to)) * gen8_semaphore_seqno_size)
  46. #define GEN8_SIGNAL_OFFSET(__ring, to) \
  47. (i915_gem_obj_ggtt_offset(dev_priv->semaphore_obj) + \
  48. GEN8_SEMAPHORE_OFFSET((__ring)->id, (to)))
  49. #define GEN8_WAIT_OFFSET(__ring, from) \
  50. (i915_gem_obj_ggtt_offset(dev_priv->semaphore_obj) + \
  51. GEN8_SEMAPHORE_OFFSET(from, (__ring)->id))
  52. #define GEN8_RING_SEMAPHORE_INIT(e) do { \
  53. if (!dev_priv->semaphore_obj) { \
  54. break; \
  55. } \
  56. (e)->semaphore.signal_ggtt[RCS] = GEN8_SIGNAL_OFFSET((e), RCS); \
  57. (e)->semaphore.signal_ggtt[VCS] = GEN8_SIGNAL_OFFSET((e), VCS); \
  58. (e)->semaphore.signal_ggtt[BCS] = GEN8_SIGNAL_OFFSET((e), BCS); \
  59. (e)->semaphore.signal_ggtt[VECS] = GEN8_SIGNAL_OFFSET((e), VECS); \
  60. (e)->semaphore.signal_ggtt[VCS2] = GEN8_SIGNAL_OFFSET((e), VCS2); \
  61. (e)->semaphore.signal_ggtt[(e)->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_KICK,
  68. HANGCHECK_HUNG,
  69. };
  70. #define HANGCHECK_SCORE_RING_HUNG 31
  71. struct intel_ring_hangcheck {
  72. u64 acthd;
  73. u32 seqno;
  74. unsigned user_interrupts;
  75. int score;
  76. enum intel_ring_hangcheck_action action;
  77. int deadlock;
  78. u32 instdone[I915_NUM_INSTDONE_REG];
  79. };
  80. struct intel_ringbuffer {
  81. struct drm_i915_gem_object *obj;
  82. void __iomem *virtual_start;
  83. struct i915_vma *vma;
  84. struct intel_engine_cs *engine;
  85. struct list_head link;
  86. u32 head;
  87. u32 tail;
  88. int space;
  89. int size;
  90. int effective_size;
  91. /** We track the position of the requests in the ring buffer, and
  92. * when each is retired we increment last_retired_head as the GPU
  93. * must have finished processing the request and so we know we
  94. * can advance the ringbuffer up to that position.
  95. *
  96. * last_retired_head is set to -1 after the value is consumed so
  97. * we can detect new retirements.
  98. */
  99. u32 last_retired_head;
  100. };
  101. struct i915_gem_context;
  102. struct drm_i915_reg_table;
  103. /*
  104. * we use a single page to load ctx workarounds so all of these
  105. * values are referred in terms of dwords
  106. *
  107. * struct i915_wa_ctx_bb:
  108. * offset: specifies batch starting position, also helpful in case
  109. * if we want to have multiple batches at different offsets based on
  110. * some criteria. It is not a requirement at the moment but provides
  111. * an option for future use.
  112. * size: size of the batch in DWORDS
  113. */
  114. struct i915_ctx_workarounds {
  115. struct i915_wa_ctx_bb {
  116. u32 offset;
  117. u32 size;
  118. } indirect_ctx, per_ctx;
  119. struct drm_i915_gem_object *obj;
  120. };
  121. struct intel_engine_cs {
  122. struct drm_i915_private *i915;
  123. const char *name;
  124. enum intel_engine_id {
  125. RCS = 0,
  126. BCS,
  127. VCS,
  128. VCS2, /* Keep instances of the same type engine together. */
  129. VECS
  130. } id;
  131. #define I915_NUM_ENGINES 5
  132. #define _VCS(n) (VCS + (n))
  133. unsigned int exec_id;
  134. unsigned int hw_id;
  135. unsigned int guc_id; /* XXX same as hw_id? */
  136. u32 mmio_base;
  137. struct intel_ringbuffer *buffer;
  138. struct list_head buffers;
  139. /*
  140. * A pool of objects to use as shadow copies of client batch buffers
  141. * when the command parser is enabled. Prevents the client from
  142. * modifying the batch contents after software parsing.
  143. */
  144. struct i915_gem_batch_pool batch_pool;
  145. struct intel_hw_status_page status_page;
  146. struct i915_ctx_workarounds wa_ctx;
  147. unsigned irq_refcount; /* protected by dev_priv->irq_lock */
  148. u32 irq_enable_mask; /* bitmask to enable ring interrupt */
  149. struct drm_i915_gem_request *trace_irq_req;
  150. bool __must_check (*irq_get)(struct intel_engine_cs *ring);
  151. void (*irq_put)(struct intel_engine_cs *ring);
  152. int (*init_hw)(struct intel_engine_cs *ring);
  153. int (*init_context)(struct drm_i915_gem_request *req);
  154. void (*write_tail)(struct intel_engine_cs *ring,
  155. u32 value);
  156. int __must_check (*flush)(struct drm_i915_gem_request *req,
  157. u32 invalidate_domains,
  158. u32 flush_domains);
  159. int (*add_request)(struct drm_i915_gem_request *req);
  160. /* Some chipsets are not quite as coherent as advertised and need
  161. * an expensive kick to force a true read of the up-to-date seqno.
  162. * However, the up-to-date seqno is not always required and the last
  163. * seen value is good enough. Note that the seqno will always be
  164. * monotonic, even if not coherent.
  165. */
  166. void (*irq_seqno_barrier)(struct intel_engine_cs *ring);
  167. u32 (*get_seqno)(struct intel_engine_cs *ring);
  168. void (*set_seqno)(struct intel_engine_cs *ring,
  169. u32 seqno);
  170. int (*dispatch_execbuffer)(struct drm_i915_gem_request *req,
  171. u64 offset, u32 length,
  172. unsigned dispatch_flags);
  173. #define I915_DISPATCH_SECURE 0x1
  174. #define I915_DISPATCH_PINNED 0x2
  175. #define I915_DISPATCH_RS 0x4
  176. void (*cleanup)(struct intel_engine_cs *ring);
  177. /* GEN8 signal/wait table - never trust comments!
  178. * signal to signal to signal to signal to signal to
  179. * RCS VCS BCS VECS VCS2
  180. * --------------------------------------------------------------------
  181. * RCS | NOP (0x00) | VCS (0x08) | BCS (0x10) | VECS (0x18) | VCS2 (0x20) |
  182. * |-------------------------------------------------------------------
  183. * VCS | RCS (0x28) | NOP (0x30) | BCS (0x38) | VECS (0x40) | VCS2 (0x48) |
  184. * |-------------------------------------------------------------------
  185. * BCS | RCS (0x50) | VCS (0x58) | NOP (0x60) | VECS (0x68) | VCS2 (0x70) |
  186. * |-------------------------------------------------------------------
  187. * VECS | RCS (0x78) | VCS (0x80) | BCS (0x88) | NOP (0x90) | VCS2 (0x98) |
  188. * |-------------------------------------------------------------------
  189. * VCS2 | RCS (0xa0) | VCS (0xa8) | BCS (0xb0) | VECS (0xb8) | NOP (0xc0) |
  190. * |-------------------------------------------------------------------
  191. *
  192. * Generalization:
  193. * f(x, y) := (x->id * NUM_RINGS * seqno_size) + (seqno_size * y->id)
  194. * ie. transpose of g(x, y)
  195. *
  196. * sync from sync from sync from sync from sync from
  197. * RCS VCS BCS VECS VCS2
  198. * --------------------------------------------------------------------
  199. * RCS | NOP (0x00) | VCS (0x28) | BCS (0x50) | VECS (0x78) | VCS2 (0xa0) |
  200. * |-------------------------------------------------------------------
  201. * VCS | RCS (0x08) | NOP (0x30) | BCS (0x58) | VECS (0x80) | VCS2 (0xa8) |
  202. * |-------------------------------------------------------------------
  203. * BCS | RCS (0x10) | VCS (0x38) | NOP (0x60) | VECS (0x88) | VCS2 (0xb0) |
  204. * |-------------------------------------------------------------------
  205. * VECS | RCS (0x18) | VCS (0x40) | BCS (0x68) | NOP (0x90) | VCS2 (0xb8) |
  206. * |-------------------------------------------------------------------
  207. * VCS2 | RCS (0x20) | VCS (0x48) | BCS (0x70) | VECS (0x98) | NOP (0xc0) |
  208. * |-------------------------------------------------------------------
  209. *
  210. * Generalization:
  211. * g(x, y) := (y->id * NUM_RINGS * seqno_size) + (seqno_size * x->id)
  212. * ie. transpose of f(x, y)
  213. */
  214. struct {
  215. u32 sync_seqno[I915_NUM_ENGINES-1];
  216. union {
  217. struct {
  218. /* our mbox written by others */
  219. u32 wait[I915_NUM_ENGINES];
  220. /* mboxes this ring signals to */
  221. i915_reg_t signal[I915_NUM_ENGINES];
  222. } mbox;
  223. u64 signal_ggtt[I915_NUM_ENGINES];
  224. };
  225. /* AKA wait() */
  226. int (*sync_to)(struct drm_i915_gem_request *to_req,
  227. struct intel_engine_cs *from,
  228. u32 seqno);
  229. int (*signal)(struct drm_i915_gem_request *signaller_req,
  230. /* num_dwords needed by caller */
  231. unsigned int num_dwords);
  232. } semaphore;
  233. /* Execlists */
  234. struct tasklet_struct irq_tasklet;
  235. spinlock_t execlist_lock; /* used inside tasklet, use spin_lock_bh */
  236. struct list_head execlist_queue;
  237. unsigned int fw_domains;
  238. unsigned int next_context_status_buffer;
  239. unsigned int idle_lite_restore_wa;
  240. bool disable_lite_restore_wa;
  241. u32 ctx_desc_template;
  242. u32 irq_keep_mask; /* bitmask for interrupts that should not be masked */
  243. int (*emit_request)(struct drm_i915_gem_request *request);
  244. int (*emit_flush)(struct drm_i915_gem_request *request,
  245. u32 invalidate_domains,
  246. u32 flush_domains);
  247. int (*emit_bb_start)(struct drm_i915_gem_request *req,
  248. u64 offset, unsigned dispatch_flags);
  249. /**
  250. * List of objects currently involved in rendering from the
  251. * ringbuffer.
  252. *
  253. * Includes buffers having the contents of their GPU caches
  254. * flushed, not necessarily primitives. last_read_req
  255. * represents when the rendering involved will be completed.
  256. *
  257. * A reference is held on the buffer while on this list.
  258. */
  259. struct list_head active_list;
  260. /**
  261. * List of breadcrumbs associated with GPU requests currently
  262. * outstanding.
  263. */
  264. struct list_head request_list;
  265. /**
  266. * Seqno of request most recently submitted to request_list.
  267. * Used exclusively by hang checker to avoid grabbing lock while
  268. * inspecting request list.
  269. */
  270. u32 last_submitted_seqno;
  271. unsigned user_interrupts;
  272. bool gpu_caches_dirty;
  273. wait_queue_head_t irq_queue;
  274. struct i915_gem_context *last_context;
  275. struct intel_ring_hangcheck hangcheck;
  276. struct {
  277. struct drm_i915_gem_object *obj;
  278. u32 gtt_offset;
  279. volatile u32 *cpu_page;
  280. } scratch;
  281. bool needs_cmd_parser;
  282. /*
  283. * Table of commands the command parser needs to know about
  284. * for this ring.
  285. */
  286. DECLARE_HASHTABLE(cmd_hash, I915_CMD_HASH_ORDER);
  287. /*
  288. * Table of registers allowed in commands that read/write registers.
  289. */
  290. const struct drm_i915_reg_table *reg_tables;
  291. int reg_table_count;
  292. /*
  293. * Returns the bitmask for the length field of the specified command.
  294. * Return 0 for an unrecognized/invalid command.
  295. *
  296. * If the command parser finds an entry for a command in the ring's
  297. * cmd_tables, it gets the command's length based on the table entry.
  298. * If not, it calls this function to determine the per-ring length field
  299. * encoding for the command (i.e. certain opcode ranges use certain bits
  300. * to encode the command length in the header).
  301. */
  302. u32 (*get_cmd_length_mask)(u32 cmd_header);
  303. };
  304. static inline bool
  305. intel_engine_initialized(struct intel_engine_cs *engine)
  306. {
  307. return engine->i915 != NULL;
  308. }
  309. static inline unsigned
  310. intel_engine_flag(struct intel_engine_cs *engine)
  311. {
  312. return 1 << engine->id;
  313. }
  314. static inline u32
  315. intel_ring_sync_index(struct intel_engine_cs *engine,
  316. struct intel_engine_cs *other)
  317. {
  318. int idx;
  319. /*
  320. * rcs -> 0 = vcs, 1 = bcs, 2 = vecs, 3 = vcs2;
  321. * vcs -> 0 = bcs, 1 = vecs, 2 = vcs2, 3 = rcs;
  322. * bcs -> 0 = vecs, 1 = vcs2. 2 = rcs, 3 = vcs;
  323. * vecs -> 0 = vcs2, 1 = rcs, 2 = vcs, 3 = bcs;
  324. * vcs2 -> 0 = rcs, 1 = vcs, 2 = bcs, 3 = vecs;
  325. */
  326. idx = (other - engine) - 1;
  327. if (idx < 0)
  328. idx += I915_NUM_ENGINES;
  329. return idx;
  330. }
  331. static inline void
  332. intel_flush_status_page(struct intel_engine_cs *engine, int reg)
  333. {
  334. mb();
  335. clflush(&engine->status_page.page_addr[reg]);
  336. mb();
  337. }
  338. static inline u32
  339. intel_read_status_page(struct intel_engine_cs *engine, int reg)
  340. {
  341. /* Ensure that the compiler doesn't optimize away the load. */
  342. return READ_ONCE(engine->status_page.page_addr[reg]);
  343. }
  344. static inline void
  345. intel_write_status_page(struct intel_engine_cs *engine,
  346. int reg, u32 value)
  347. {
  348. engine->status_page.page_addr[reg] = value;
  349. }
  350. /*
  351. * Reads a dword out of the status page, which is written to from the command
  352. * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
  353. * MI_STORE_DATA_IMM.
  354. *
  355. * The following dwords have a reserved meaning:
  356. * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
  357. * 0x04: ring 0 head pointer
  358. * 0x05: ring 1 head pointer (915-class)
  359. * 0x06: ring 2 head pointer (915-class)
  360. * 0x10-0x1b: Context status DWords (GM45)
  361. * 0x1f: Last written status offset. (GM45)
  362. * 0x20-0x2f: Reserved (Gen6+)
  363. *
  364. * The area from dword 0x30 to 0x3ff is available for driver usage.
  365. */
  366. #define I915_GEM_HWS_INDEX 0x30
  367. #define I915_GEM_HWS_INDEX_ADDR (I915_GEM_HWS_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
  368. #define I915_GEM_HWS_SCRATCH_INDEX 0x40
  369. #define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT)
  370. struct intel_ringbuffer *
  371. intel_engine_create_ringbuffer(struct intel_engine_cs *engine, int size);
  372. int intel_pin_and_map_ringbuffer_obj(struct drm_i915_private *dev_priv,
  373. struct intel_ringbuffer *ringbuf);
  374. void intel_unpin_ringbuffer_obj(struct intel_ringbuffer *ringbuf);
  375. void intel_ringbuffer_free(struct intel_ringbuffer *ring);
  376. void intel_stop_engine(struct intel_engine_cs *engine);
  377. void intel_cleanup_engine(struct intel_engine_cs *engine);
  378. int intel_ring_alloc_request_extras(struct drm_i915_gem_request *request);
  379. int __must_check intel_ring_begin(struct drm_i915_gem_request *req, int n);
  380. int __must_check intel_ring_cacheline_align(struct drm_i915_gem_request *req);
  381. static inline void intel_ring_emit(struct intel_engine_cs *engine,
  382. u32 data)
  383. {
  384. struct intel_ringbuffer *ringbuf = engine->buffer;
  385. iowrite32(data, ringbuf->virtual_start + ringbuf->tail);
  386. ringbuf->tail += 4;
  387. }
  388. static inline void intel_ring_emit_reg(struct intel_engine_cs *engine,
  389. i915_reg_t reg)
  390. {
  391. intel_ring_emit(engine, i915_mmio_reg_offset(reg));
  392. }
  393. static inline void intel_ring_advance(struct intel_engine_cs *engine)
  394. {
  395. struct intel_ringbuffer *ringbuf = engine->buffer;
  396. ringbuf->tail &= ringbuf->size - 1;
  397. }
  398. int __intel_ring_space(int head, int tail, int size);
  399. void intel_ring_update_space(struct intel_ringbuffer *ringbuf);
  400. bool intel_engine_stopped(struct intel_engine_cs *engine);
  401. int __must_check intel_engine_idle(struct intel_engine_cs *engine);
  402. void intel_ring_init_seqno(struct intel_engine_cs *engine, u32 seqno);
  403. int intel_ring_flush_all_caches(struct drm_i915_gem_request *req);
  404. int intel_ring_invalidate_all_caches(struct drm_i915_gem_request *req);
  405. void intel_fini_pipe_control(struct intel_engine_cs *engine);
  406. int intel_init_pipe_control(struct intel_engine_cs *engine);
  407. int intel_init_render_ring_buffer(struct drm_device *dev);
  408. int intel_init_bsd_ring_buffer(struct drm_device *dev);
  409. int intel_init_bsd2_ring_buffer(struct drm_device *dev);
  410. int intel_init_blt_ring_buffer(struct drm_device *dev);
  411. int intel_init_vebox_ring_buffer(struct drm_device *dev);
  412. u64 intel_ring_get_active_head(struct intel_engine_cs *engine);
  413. int init_workarounds_ring(struct intel_engine_cs *engine);
  414. static inline u32 intel_ring_get_tail(struct intel_ringbuffer *ringbuf)
  415. {
  416. return ringbuf->tail;
  417. }
  418. /*
  419. * Arbitrary size for largest possible 'add request' sequence. The code paths
  420. * are complex and variable. Empirical measurement shows that the worst case
  421. * is BDW at 192 bytes (6 + 6 + 36 dwords), then ILK at 136 bytes. However,
  422. * we need to allocate double the largest single packet within that emission
  423. * to account for tail wraparound (so 6 + 6 + 72 dwords for BDW).
  424. */
  425. #define MIN_SPACE_FOR_ADD_REQUEST 336
  426. static inline u32 intel_hws_seqno_address(struct intel_engine_cs *engine)
  427. {
  428. return engine->status_page.gfx_addr + I915_GEM_HWS_INDEX_ADDR;
  429. }
  430. #endif /* _INTEL_RINGBUFFER_H_ */