Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1 | #ifndef _INTEL_RINGBUFFER_H_ |
| 2 | #define _INTEL_RINGBUFFER_H_ |
| 3 | |
Ville Syrjälä | 633cf8f | 2012-12-03 18:43:32 +0200 | [diff] [blame] | 4 | /* |
| 5 | * Gen2 BSpec "1. Programming Environment" / 1.4.4.6 "Ring Buffer Use" |
| 6 | * Gen3 BSpec "vol1c Memory Interface Functions" / 2.3.4.5 "Ring Buffer Use" |
| 7 | * Gen4+ BSpec "vol1c Memory Interface and Command Stream" / 5.3.4.5 "Ring Buffer Use" |
| 8 | * |
| 9 | * "If the Ring Buffer Head Pointer and the Tail Pointer are on the same |
| 10 | * cacheline, the Head Pointer must not be greater than the Tail |
| 11 | * Pointer." |
| 12 | */ |
| 13 | #define I915_RING_FREE_SPACE 64 |
| 14 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 15 | struct intel_hw_status_page { |
Daniel Vetter | 4225d0f | 2012-04-26 23:28:16 +0200 | [diff] [blame] | 16 | u32 *page_addr; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 17 | unsigned int gfx_addr; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 18 | struct drm_i915_gem_object *obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 19 | }; |
| 20 | |
Ben Widawsky | b7287d8 | 2011-04-25 11:22:22 -0700 | [diff] [blame] | 21 | #define I915_READ_TAIL(ring) I915_READ(RING_TAIL((ring)->mmio_base)) |
| 22 | #define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL((ring)->mmio_base), val) |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 23 | |
Ben Widawsky | b7287d8 | 2011-04-25 11:22:22 -0700 | [diff] [blame] | 24 | #define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base)) |
| 25 | #define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val) |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 26 | |
Ben Widawsky | b7287d8 | 2011-04-25 11:22:22 -0700 | [diff] [blame] | 27 | #define I915_READ_HEAD(ring) I915_READ(RING_HEAD((ring)->mmio_base)) |
| 28 | #define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val) |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 29 | |
Ben Widawsky | b7287d8 | 2011-04-25 11:22:22 -0700 | [diff] [blame] | 30 | #define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base)) |
| 31 | #define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val) |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 32 | |
Ben Widawsky | b7287d8 | 2011-04-25 11:22:22 -0700 | [diff] [blame] | 33 | #define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base)) |
| 34 | #define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val) |
Daniel Vetter | 870e86d | 2010-08-02 16:29:44 +0200 | [diff] [blame] | 35 | |
Jani Nikula | f2f4d82 | 2013-08-11 12:44:01 +0300 | [diff] [blame] | 36 | enum intel_ring_hangcheck_action { |
| 37 | HANGCHECK_WAIT, |
| 38 | HANGCHECK_ACTIVE, |
| 39 | HANGCHECK_KICK, |
| 40 | HANGCHECK_HUNG, |
| 41 | }; |
Mika Kuoppala | ad8beae | 2013-06-12 12:35:32 +0300 | [diff] [blame] | 42 | |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 43 | struct intel_ring_hangcheck { |
Chris Wilson | 6274f21 | 2013-06-10 11:20:21 +0100 | [diff] [blame] | 44 | bool deadlock; |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 45 | u32 seqno; |
Mika Kuoppala | 05407ff | 2013-05-30 09:04:29 +0300 | [diff] [blame] | 46 | u32 acthd; |
| 47 | int score; |
Mika Kuoppala | ad8beae | 2013-06-12 12:35:32 +0300 | [diff] [blame] | 48 | enum intel_ring_hangcheck_action action; |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 49 | }; |
| 50 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 51 | struct intel_ring_buffer { |
| 52 | const char *name; |
Chris Wilson | 9220434 | 2010-09-18 11:02:01 +0100 | [diff] [blame] | 53 | enum intel_ring_id { |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 54 | RCS = 0x0, |
| 55 | VCS, |
| 56 | BCS, |
Ben Widawsky | 4a3dd19 | 2013-05-28 19:22:19 -0700 | [diff] [blame] | 57 | VECS, |
Chris Wilson | 9220434 | 2010-09-18 11:02:01 +0100 | [diff] [blame] | 58 | } id; |
Ben Widawsky | 4a3dd19 | 2013-05-28 19:22:19 -0700 | [diff] [blame] | 59 | #define I915_NUM_RINGS 4 |
Daniel Vetter | 333e9fe | 2010-08-02 16:24:01 +0200 | [diff] [blame] | 60 | u32 mmio_base; |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 61 | void __iomem *virtual_start; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 62 | struct drm_device *dev; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 63 | struct drm_i915_gem_object *obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 64 | |
Chris Wilson | 8c0a6bf | 2010-12-09 12:56:37 +0000 | [diff] [blame] | 65 | u32 head; |
| 66 | u32 tail; |
Chris Wilson | 780f0ca | 2010-09-23 17:45:39 +0100 | [diff] [blame] | 67 | int space; |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 68 | int size; |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 69 | int effective_size; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 70 | struct intel_hw_status_page status_page; |
| 71 | |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 72 | /** We track the position of the requests in the ring buffer, and |
| 73 | * when each is retired we increment last_retired_head as the GPU |
| 74 | * must have finished processing the request and so we know we |
| 75 | * can advance the ringbuffer up to that position. |
| 76 | * |
| 77 | * last_retired_head is set to -1 after the value is consumed so |
| 78 | * we can detect new retirements. |
| 79 | */ |
| 80 | u32 last_retired_head; |
| 81 | |
Daniel Vetter | c7113cc | 2013-07-04 23:35:29 +0200 | [diff] [blame] | 82 | unsigned irq_refcount; /* protected by dev_priv->irq_lock */ |
Daniel Vetter | 6a848cc | 2012-04-11 22:12:46 +0200 | [diff] [blame] | 83 | u32 irq_enable_mask; /* bitmask to enable ring interrupt */ |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 84 | u32 trace_irq_seqno; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 85 | u32 sync_seqno[I915_NUM_RINGS-1]; |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 86 | bool __must_check (*irq_get)(struct intel_ring_buffer *ring); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 87 | void (*irq_put)(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 88 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 89 | int (*init)(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 90 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 91 | void (*write_tail)(struct intel_ring_buffer *ring, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 92 | u32 value); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 93 | int __must_check (*flush)(struct intel_ring_buffer *ring, |
| 94 | u32 invalidate_domains, |
| 95 | u32 flush_domains); |
Chris Wilson | 9d773091 | 2012-11-27 16:22:52 +0000 | [diff] [blame] | 96 | int (*add_request)(struct intel_ring_buffer *ring); |
Chris Wilson | b2eadbc | 2012-08-09 10:58:30 +0100 | [diff] [blame] | 97 | /* Some chipsets are not quite as coherent as advertised and need |
| 98 | * an expensive kick to force a true read of the up-to-date seqno. |
| 99 | * However, the up-to-date seqno is not always required and the last |
| 100 | * seen value is good enough. Note that the seqno will always be |
| 101 | * monotonic, even if not coherent. |
| 102 | */ |
| 103 | u32 (*get_seqno)(struct intel_ring_buffer *ring, |
| 104 | bool lazy_coherency); |
Mika Kuoppala | b70ec5b | 2012-12-19 11:13:05 +0200 | [diff] [blame] | 105 | void (*set_seqno)(struct intel_ring_buffer *ring, |
| 106 | u32 seqno); |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 107 | int (*dispatch_execbuffer)(struct intel_ring_buffer *ring, |
Chris Wilson | d7d4eed | 2012-10-17 12:09:54 +0100 | [diff] [blame] | 108 | u32 offset, u32 length, |
| 109 | unsigned flags); |
| 110 | #define I915_DISPATCH_SECURE 0x1 |
Daniel Vetter | b45305f | 2012-12-17 16:21:27 +0100 | [diff] [blame] | 111 | #define I915_DISPATCH_PINNED 0x2 |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 112 | void (*cleanup)(struct intel_ring_buffer *ring); |
Ben Widawsky | c8c99b0 | 2011-09-14 20:32:47 -0700 | [diff] [blame] | 113 | int (*sync_to)(struct intel_ring_buffer *ring, |
| 114 | struct intel_ring_buffer *to, |
| 115 | u32 seqno); |
Ben Widawsky | ad776f8 | 2013-05-28 19:22:18 -0700 | [diff] [blame] | 116 | |
Ben Widawsky | 5586181 | 2013-05-28 19:22:17 -0700 | [diff] [blame] | 117 | /* our mbox written by others */ |
| 118 | u32 semaphore_register[I915_NUM_RINGS]; |
Ben Widawsky | ad776f8 | 2013-05-28 19:22:18 -0700 | [diff] [blame] | 119 | /* mboxes this ring signals to */ |
| 120 | u32 signal_mbox[I915_NUM_RINGS]; |
| 121 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 122 | /** |
| 123 | * List of objects currently involved in rendering from the |
| 124 | * ringbuffer. |
| 125 | * |
| 126 | * Includes buffers having the contents of their GPU caches |
| 127 | * flushed, not necessarily primitives. last_rendering_seqno |
| 128 | * represents when the rendering involved will be completed. |
| 129 | * |
| 130 | * A reference is held on the buffer while on this list. |
| 131 | */ |
| 132 | struct list_head active_list; |
| 133 | |
| 134 | /** |
| 135 | * List of breadcrumbs associated with GPU requests currently |
| 136 | * outstanding. |
| 137 | */ |
| 138 | struct list_head request_list; |
| 139 | |
Chris Wilson | a56ba56 | 2010-09-28 10:07:56 +0100 | [diff] [blame] | 140 | /** |
| 141 | * Do we have some not yet emitted requests outstanding? |
| 142 | */ |
Chris Wilson | 1823521 | 2013-09-04 10:45:51 +0100 | [diff] [blame^] | 143 | u32 outstanding_lazy_seqno; |
Daniel Vetter | cc889e0 | 2012-06-13 20:45:19 +0200 | [diff] [blame] | 144 | bool gpu_caches_dirty; |
Chris Wilson | c65355b | 2013-06-06 16:53:41 -0300 | [diff] [blame] | 145 | bool fbc_dirty; |
Chris Wilson | a56ba56 | 2010-09-28 10:07:56 +0100 | [diff] [blame] | 146 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 147 | wait_queue_head_t irq_queue; |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 148 | |
Ben Widawsky | 12b0286 | 2012-06-04 14:42:50 -0700 | [diff] [blame] | 149 | /** |
| 150 | * Do an explicit TLB flush before MI_SET_CONTEXT |
| 151 | */ |
| 152 | bool itlb_before_ctx_switch; |
Ben Widawsky | 4052105 | 2012-06-04 14:42:43 -0700 | [diff] [blame] | 153 | struct i915_hw_context *default_context; |
Chris Wilson | 112522f | 2013-05-02 16:48:07 +0300 | [diff] [blame] | 154 | struct i915_hw_context *last_context; |
Ben Widawsky | 4052105 | 2012-06-04 14:42:43 -0700 | [diff] [blame] | 155 | |
Mika Kuoppala | 92cab73 | 2013-05-24 17:16:07 +0300 | [diff] [blame] | 156 | struct intel_ring_hangcheck hangcheck; |
| 157 | |
Chris Wilson | 0d1aaca | 2013-08-26 20:58:11 +0100 | [diff] [blame] | 158 | struct { |
| 159 | struct drm_i915_gem_object *obj; |
| 160 | u32 gtt_offset; |
| 161 | volatile u32 *cpu_page; |
| 162 | } scratch; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 163 | }; |
| 164 | |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 165 | static inline bool |
| 166 | intel_ring_initialized(struct intel_ring_buffer *ring) |
| 167 | { |
| 168 | return ring->obj != NULL; |
| 169 | } |
| 170 | |
Daniel Vetter | 96154f2 | 2011-12-14 13:57:00 +0100 | [diff] [blame] | 171 | static inline unsigned |
| 172 | intel_ring_flag(struct intel_ring_buffer *ring) |
| 173 | { |
| 174 | return 1 << ring->id; |
| 175 | } |
| 176 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 177 | static inline u32 |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 178 | intel_ring_sync_index(struct intel_ring_buffer *ring, |
| 179 | struct intel_ring_buffer *other) |
| 180 | { |
| 181 | int idx; |
| 182 | |
| 183 | /* |
| 184 | * cs -> 0 = vcs, 1 = bcs |
| 185 | * vcs -> 0 = bcs, 1 = cs, |
| 186 | * bcs -> 0 = cs, 1 = vcs. |
| 187 | */ |
| 188 | |
| 189 | idx = (other - ring) - 1; |
| 190 | if (idx < 0) |
| 191 | idx += I915_NUM_RINGS; |
| 192 | |
| 193 | return idx; |
| 194 | } |
| 195 | |
| 196 | static inline u32 |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 197 | intel_read_status_page(struct intel_ring_buffer *ring, |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 198 | int reg) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 199 | { |
Daniel Vetter | 4225d0f | 2012-04-26 23:28:16 +0200 | [diff] [blame] | 200 | /* Ensure that the compiler doesn't optimize away the load. */ |
| 201 | barrier(); |
| 202 | return ring->status_page.page_addr[reg]; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 203 | } |
| 204 | |
Mika Kuoppala | b70ec5b | 2012-12-19 11:13:05 +0200 | [diff] [blame] | 205 | static inline void |
| 206 | intel_write_status_page(struct intel_ring_buffer *ring, |
| 207 | int reg, u32 value) |
| 208 | { |
| 209 | ring->status_page.page_addr[reg] = value; |
| 210 | } |
| 211 | |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 212 | /** |
| 213 | * Reads a dword out of the status page, which is written to from the command |
| 214 | * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or |
| 215 | * MI_STORE_DATA_IMM. |
| 216 | * |
| 217 | * The following dwords have a reserved meaning: |
| 218 | * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes. |
| 219 | * 0x04: ring 0 head pointer |
| 220 | * 0x05: ring 1 head pointer (915-class) |
| 221 | * 0x06: ring 2 head pointer (915-class) |
| 222 | * 0x10-0x1b: Context status DWords (GM45) |
| 223 | * 0x1f: Last written status offset. (GM45) |
| 224 | * |
| 225 | * The area from dword 0x20 to 0x3ff is available for driver usage. |
| 226 | */ |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 227 | #define I915_GEM_HWS_INDEX 0x20 |
Jesse Barnes | 9a28977 | 2012-10-26 09:42:42 -0700 | [diff] [blame] | 228 | #define I915_GEM_HWS_SCRATCH_INDEX 0x30 |
| 229 | #define I915_GEM_HWS_SCRATCH_ADDR (I915_GEM_HWS_SCRATCH_INDEX << MI_STORE_DWORD_INDEX_SHIFT) |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 230 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 231 | void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring); |
Ben Widawsky | 96f298a | 2011-03-19 18:14:27 -0700 | [diff] [blame] | 232 | |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 233 | int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n); |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 234 | static inline void intel_ring_emit(struct intel_ring_buffer *ring, |
| 235 | u32 data) |
Chris Wilson | e898cd2 | 2010-08-04 15:18:14 +0100 | [diff] [blame] | 236 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 237 | iowrite32(data, ring->virtual_start + ring->tail); |
Chris Wilson | e898cd2 | 2010-08-04 15:18:14 +0100 | [diff] [blame] | 238 | ring->tail += 4; |
| 239 | } |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 240 | void intel_ring_advance(struct intel_ring_buffer *ring); |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 241 | int __must_check intel_ring_idle(struct intel_ring_buffer *ring); |
Mika Kuoppala | f7e98ad | 2012-12-19 11:13:06 +0200 | [diff] [blame] | 242 | void intel_ring_init_seqno(struct intel_ring_buffer *ring, u32 seqno); |
Chris Wilson | a7b9761 | 2012-07-20 12:41:08 +0100 | [diff] [blame] | 243 | int intel_ring_flush_all_caches(struct intel_ring_buffer *ring); |
| 244 | int intel_ring_invalidate_all_caches(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 245 | |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 246 | int intel_init_render_ring_buffer(struct drm_device *dev); |
| 247 | int intel_init_bsd_ring_buffer(struct drm_device *dev); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 248 | int intel_init_blt_ring_buffer(struct drm_device *dev); |
Ben Widawsky | 9a8a221 | 2013-05-28 19:22:23 -0700 | [diff] [blame] | 249 | int intel_init_vebox_ring_buffer(struct drm_device *dev); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 250 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 251 | u32 intel_ring_get_active_head(struct intel_ring_buffer *ring); |
| 252 | void intel_ring_setup_status_page(struct intel_ring_buffer *ring); |
Daniel Vetter | 79f321b | 2010-09-24 21:20:10 +0200 | [diff] [blame] | 253 | |
Chris Wilson | a71d8d9 | 2012-02-15 11:25:36 +0000 | [diff] [blame] | 254 | static inline u32 intel_ring_get_tail(struct intel_ring_buffer *ring) |
| 255 | { |
| 256 | return ring->tail; |
| 257 | } |
| 258 | |
Chris Wilson | 9d773091 | 2012-11-27 16:22:52 +0000 | [diff] [blame] | 259 | static inline u32 intel_ring_get_seqno(struct intel_ring_buffer *ring) |
| 260 | { |
Chris Wilson | 1823521 | 2013-09-04 10:45:51 +0100 | [diff] [blame^] | 261 | BUG_ON(ring->outstanding_lazy_seqno == 0); |
| 262 | return ring->outstanding_lazy_seqno; |
Chris Wilson | 9d773091 | 2012-11-27 16:22:52 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Chris Wilson | db53a30 | 2011-02-03 11:57:46 +0000 | [diff] [blame] | 265 | static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno) |
| 266 | { |
| 267 | if (ring->trace_irq_seqno == 0 && ring->irq_get(ring)) |
| 268 | ring->trace_irq_seqno = seqno; |
| 269 | } |
| 270 | |
Chris Wilson | e8616b6 | 2011-01-20 09:57:11 +0000 | [diff] [blame] | 271 | /* DRI warts */ |
| 272 | int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size); |
| 273 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 274 | #endif /* _INTEL_RINGBUFFER_H_ */ |