intel_lrc.h 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #ifndef _INTEL_LRC_H_
  24. #define _INTEL_LRC_H_
  25. #include "intel_ringbuffer.h"
  26. #define GEN8_LR_CONTEXT_ALIGN I915_GTT_MIN_ALIGNMENT
  27. /* Execlists regs */
  28. #define RING_ELSP(engine) _MMIO((engine)->mmio_base + 0x230)
  29. #define RING_EXECLIST_STATUS_LO(engine) _MMIO((engine)->mmio_base + 0x234)
  30. #define RING_EXECLIST_STATUS_HI(engine) _MMIO((engine)->mmio_base + 0x234 + 4)
  31. #define RING_CONTEXT_CONTROL(engine) _MMIO((engine)->mmio_base + 0x244)
  32. #define CTX_CTRL_INHIBIT_SYN_CTX_SWITCH (1 << 3)
  33. #define CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT (1 << 0)
  34. #define CTX_CTRL_RS_CTX_ENABLE (1 << 1)
  35. #define RING_CONTEXT_STATUS_BUF_BASE(engine) _MMIO((engine)->mmio_base + 0x370)
  36. #define RING_CONTEXT_STATUS_BUF_LO(engine, i) _MMIO((engine)->mmio_base + 0x370 + (i) * 8)
  37. #define RING_CONTEXT_STATUS_BUF_HI(engine, i) _MMIO((engine)->mmio_base + 0x370 + (i) * 8 + 4)
  38. #define RING_CONTEXT_STATUS_PTR(engine) _MMIO((engine)->mmio_base + 0x3a0)
  39. /* The docs specify that the write pointer wraps around after 5h, "After status
  40. * is written out to the last available status QW at offset 5h, this pointer
  41. * wraps to 0."
  42. *
  43. * Therefore, one must infer than even though there are 3 bits available, 6 and
  44. * 7 appear to be * reserved.
  45. */
  46. #define GEN8_CSB_ENTRIES 6
  47. #define GEN8_CSB_PTR_MASK 0x7
  48. #define GEN8_CSB_READ_PTR_MASK (GEN8_CSB_PTR_MASK << 8)
  49. #define GEN8_CSB_WRITE_PTR_MASK (GEN8_CSB_PTR_MASK << 0)
  50. #define GEN8_CSB_WRITE_PTR(csb_status) \
  51. (((csb_status) & GEN8_CSB_WRITE_PTR_MASK) >> 0)
  52. #define GEN8_CSB_READ_PTR(csb_status) \
  53. (((csb_status) & GEN8_CSB_READ_PTR_MASK) >> 8)
  54. enum {
  55. INTEL_CONTEXT_SCHEDULE_IN = 0,
  56. INTEL_CONTEXT_SCHEDULE_OUT,
  57. };
  58. /* Logical Rings */
  59. void intel_logical_ring_stop(struct intel_engine_cs *engine);
  60. void intel_logical_ring_cleanup(struct intel_engine_cs *engine);
  61. int logical_render_ring_init(struct intel_engine_cs *engine);
  62. int logical_xcs_ring_init(struct intel_engine_cs *engine);
  63. int intel_engines_init(struct drm_i915_private *dev_priv);
  64. /* Logical Ring Contexts */
  65. /* One extra page is added before LRC for GuC as shared data */
  66. #define LRC_GUCSHR_PN (0)
  67. #define LRC_PPHWSP_PN (LRC_GUCSHR_PN + 1)
  68. #define LRC_STATE_PN (LRC_PPHWSP_PN + 1)
  69. struct drm_i915_private;
  70. struct i915_gem_context;
  71. uint32_t intel_lr_context_size(struct intel_engine_cs *engine);
  72. void intel_lr_context_resume(struct drm_i915_private *dev_priv);
  73. uint64_t intel_lr_context_descriptor(struct i915_gem_context *ctx,
  74. struct intel_engine_cs *engine);
  75. /* Execlists */
  76. int intel_sanitize_enable_execlists(struct drm_i915_private *dev_priv,
  77. int enable_execlists);
  78. void intel_execlists_enable_submission(struct drm_i915_private *dev_priv);
  79. bool intel_execlists_idle(struct drm_i915_private *dev_priv);
  80. #endif /* _INTEL_LRC_H_ */