Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 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 | |
| 24 | #ifndef _INTEL_LRC_H_ |
| 25 | #define _INTEL_LRC_H_ |
| 26 | |
Oscar Mateo | dcb4c12 | 2014-11-13 10:28:10 +0000 | [diff] [blame] | 27 | #define GEN8_LR_CONTEXT_ALIGN 4096 |
| 28 | |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 29 | /* Execlists regs */ |
| 30 | #define RING_ELSP(ring) ((ring)->mmio_base+0x230) |
| 31 | #define RING_EXECLIST_STATUS(ring) ((ring)->mmio_base+0x234) |
| 32 | #define RING_CONTEXT_CONTROL(ring) ((ring)->mmio_base+0x244) |
Zhi Wang | 5baa22c5 | 2015-02-10 17:11:36 +0800 | [diff] [blame] | 33 | #define CTX_CTRL_INHIBIT_SYN_CTX_SWITCH (1 << 3) |
| 34 | #define CTX_CTRL_ENGINE_CTX_RESTORE_INHIBIT (1 << 0) |
Abdiel Janulgue | 6922528 | 2015-06-16 13:39:42 +0300 | [diff] [blame] | 35 | #define CTX_CTRL_RS_CTX_ENABLE (1 << 1) |
Oscar Mateo | 4ba70e4 | 2014-08-07 13:23:20 +0100 | [diff] [blame] | 36 | #define RING_CONTEXT_STATUS_BUF(ring) ((ring)->mmio_base+0x370) |
| 37 | #define RING_CONTEXT_STATUS_PTR(ring) ((ring)->mmio_base+0x3a0) |
| 38 | |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 39 | /* Logical Rings */ |
John Harrison | 40e895c | 2015-05-29 17:43:26 +0100 | [diff] [blame] | 40 | int intel_logical_ring_alloc_request_extras(struct drm_i915_gem_request *request); |
John Harrison | ccd98fe | 2015-05-29 17:44:09 +0100 | [diff] [blame] | 41 | int intel_logical_ring_reserve_space(struct drm_i915_gem_request *request); |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 42 | void intel_logical_ring_stop(struct intel_engine_cs *ring); |
| 43 | void intel_logical_ring_cleanup(struct intel_engine_cs *ring); |
| 44 | int intel_logical_rings_init(struct drm_device *dev); |
Peter Antoine | 3bbaba0 | 2015-07-10 20:13:11 +0300 | [diff] [blame] | 45 | int intel_logical_ring_begin(struct drm_i915_gem_request *req, int num_dwords); |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 46 | |
John Harrison | 4866d72 | 2015-05-29 17:43:55 +0100 | [diff] [blame] | 47 | int logical_ring_flush_all_caches(struct drm_i915_gem_request *req); |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 48 | /** |
| 49 | * intel_logical_ring_advance() - advance the ringbuffer tail |
| 50 | * @ringbuf: Ringbuffer to advance. |
| 51 | * |
| 52 | * The tail is only updated in our logical ringbuffer struct. |
| 53 | */ |
Oscar Mateo | 82e104c | 2014-07-24 17:04:26 +0100 | [diff] [blame] | 54 | static inline void intel_logical_ring_advance(struct intel_ringbuffer *ringbuf) |
| 55 | { |
| 56 | ringbuf->tail &= ringbuf->size - 1; |
| 57 | } |
Oscar Mateo | 73e4d07 | 2014-07-24 17:04:48 +0100 | [diff] [blame] | 58 | /** |
| 59 | * intel_logical_ring_emit() - write a DWORD to the ringbuffer. |
| 60 | * @ringbuf: Ringbuffer to write to. |
| 61 | * @data: DWORD to write. |
| 62 | */ |
Oscar Mateo | 82e104c | 2014-07-24 17:04:26 +0100 | [diff] [blame] | 63 | static inline void intel_logical_ring_emit(struct intel_ringbuffer *ringbuf, |
| 64 | u32 data) |
| 65 | { |
| 66 | iowrite32(data, ringbuf->virtual_start + ringbuf->tail); |
| 67 | ringbuf->tail += 4; |
| 68 | } |
Oscar Mateo | 82e104c | 2014-07-24 17:04:26 +0100 | [diff] [blame] | 69 | |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 70 | /* Logical Ring Contexts */ |
| 71 | void intel_lr_context_free(struct intel_context *ctx); |
| 72 | int intel_lr_context_deferred_create(struct intel_context *ctx, |
| 73 | struct intel_engine_cs *ring); |
Mika Kuoppala | 8ba319d | 2015-07-03 17:09:35 +0300 | [diff] [blame] | 74 | void intel_lr_context_unpin(struct drm_i915_gem_request *req); |
Thomas Daniel | 3e5b6f0 | 2015-02-16 16:12:53 +0000 | [diff] [blame] | 75 | void intel_lr_context_reset(struct drm_device *dev, |
| 76 | struct intel_context *ctx); |
Oscar Mateo | ede7d42 | 2014-07-24 17:04:12 +0100 | [diff] [blame] | 77 | |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 78 | /* Execlists */ |
| 79 | int intel_sanitize_enable_execlists(struct drm_device *dev, int enable_execlists); |
John Harrison | 5f19e2b | 2015-05-29 17:43:27 +0100 | [diff] [blame] | 80 | struct i915_execbuffer_params; |
| 81 | int intel_execlists_submission(struct i915_execbuffer_params *params, |
Oscar Mateo | 454afeb | 2014-07-24 17:04:22 +0100 | [diff] [blame] | 82 | struct drm_i915_gem_execbuffer2 *args, |
John Harrison | 5f19e2b | 2015-05-29 17:43:27 +0100 | [diff] [blame] | 83 | struct list_head *vmas); |
Ben Widawsky | 84b790f | 2014-07-24 17:04:36 +0100 | [diff] [blame] | 84 | u32 intel_execlists_ctx_id(struct drm_i915_gem_object *ctx_obj); |
Oscar Mateo | 127f100 | 2014-07-24 17:04:11 +0100 | [diff] [blame] | 85 | |
Daniel Vetter | 3f7531c | 2014-12-10 17:41:43 +0100 | [diff] [blame] | 86 | void intel_lrc_irq_handler(struct intel_engine_cs *ring); |
Thomas Daniel | c86ee3a9 | 2014-11-13 10:27:05 +0000 | [diff] [blame] | 87 | void intel_execlists_retire_requests(struct intel_engine_cs *ring); |
Thomas Daniel | e981e7b | 2014-07-24 17:04:39 +0100 | [diff] [blame] | 88 | |
Oscar Mateo | b20385f | 2014-07-24 17:04:10 +0100 | [diff] [blame] | 89 | #endif /* _INTEL_LRC_H_ */ |