Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 1 | #ifndef _INTEL_RINGBUFFER_H_ |
| 2 | #define _INTEL_RINGBUFFER_H_ |
| 3 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 4 | enum { |
| 5 | RCS = 0x0, |
| 6 | VCS, |
| 7 | BCS, |
| 8 | I915_NUM_RINGS, |
| 9 | }; |
| 10 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 11 | struct intel_hw_status_page { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 12 | u32 __iomem *page_addr; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 13 | unsigned int gfx_addr; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 14 | struct drm_i915_gem_object *obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 15 | }; |
| 16 | |
Zou Nan hai | cae5852 | 2010-11-09 17:17:32 +0800 | [diff] [blame] | 17 | #define I915_RING_READ(reg) i915_safe_read(dev_priv, reg) |
| 18 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 19 | #define I915_READ_TAIL(ring) I915_RING_READ(RING_TAIL((ring)->mmio_base)) |
| 20 | #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] | 21 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 22 | #define I915_READ_START(ring) I915_RING_READ(RING_START((ring)->mmio_base)) |
| 23 | #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] | 24 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 25 | #define I915_READ_HEAD(ring) I915_RING_READ(RING_HEAD((ring)->mmio_base)) |
| 26 | #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] | 27 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 28 | #define I915_READ_CTL(ring) I915_RING_READ(RING_CTL((ring)->mmio_base)) |
| 29 | #define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val) |
Daniel Vetter | 870e86d | 2010-08-02 16:29:44 +0200 | [diff] [blame] | 30 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 31 | #define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val) |
| 32 | #define I915_READ_IMR(ring) I915_RING_READ(RING_IMR((ring)->mmio_base)) |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 33 | |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame^] | 34 | #define I915_READ_NOPID(ring) I915_RING_READ(RING_NOPID((ring)->mmio_base)) |
| 35 | #define I915_READ_SYNC_0(ring) I915_RING_READ(RING_SYNC_0((ring)->mmio_base)) |
| 36 | #define I915_READ_SYNC_1(ring) I915_RING_READ(RING_SYNC_1((ring)->mmio_base)) |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 37 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 38 | struct intel_ring_buffer { |
| 39 | const char *name; |
Chris Wilson | 9220434 | 2010-09-18 11:02:01 +0100 | [diff] [blame] | 40 | enum intel_ring_id { |
| 41 | RING_RENDER = 0x1, |
| 42 | RING_BSD = 0x2, |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 43 | RING_BLT = 0x4, |
Chris Wilson | 9220434 | 2010-09-18 11:02:01 +0100 | [diff] [blame] | 44 | } id; |
Daniel Vetter | 333e9fe | 2010-08-02 16:24:01 +0200 | [diff] [blame] | 45 | u32 mmio_base; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 46 | void *virtual_start; |
| 47 | struct drm_device *dev; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 48 | struct drm_i915_gem_object *obj; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 49 | |
Chris Wilson | 8c0a6bf | 2010-12-09 12:56:37 +0000 | [diff] [blame] | 50 | u32 actual_head; |
| 51 | u32 head; |
| 52 | u32 tail; |
Chris Wilson | 780f0ca | 2010-09-23 17:45:39 +0100 | [diff] [blame] | 53 | int space; |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 54 | int size; |
Chris Wilson | 55249ba | 2010-12-22 14:04:47 +0000 | [diff] [blame] | 55 | int effective_size; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 56 | struct intel_hw_status_page status_page; |
| 57 | |
Chris Wilson | 0f46832 | 2011-01-04 17:35:21 +0000 | [diff] [blame] | 58 | u32 irq_mask; |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 59 | u32 irq_seqno; /* last seq seem at irq time */ |
| 60 | u32 waiting_seqno; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 61 | u32 sync_seqno[I915_NUM_RINGS-1]; |
Chris Wilson | b13c2b9 | 2010-12-13 16:54:50 +0000 | [diff] [blame] | 62 | atomic_t irq_refcount; |
| 63 | bool __must_check (*irq_get)(struct intel_ring_buffer *ring); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 64 | void (*irq_put)(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 65 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 66 | int (*init)(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 67 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 68 | void (*write_tail)(struct intel_ring_buffer *ring, |
Chris Wilson | 297b0c5 | 2010-10-22 17:02:41 +0100 | [diff] [blame] | 69 | u32 value); |
Chris Wilson | b72f3ac | 2011-01-04 17:34:02 +0000 | [diff] [blame] | 70 | int __must_check (*flush)(struct intel_ring_buffer *ring, |
| 71 | u32 invalidate_domains, |
| 72 | u32 flush_domains); |
Chris Wilson | 3cce469 | 2010-10-27 16:11:02 +0100 | [diff] [blame] | 73 | int (*add_request)(struct intel_ring_buffer *ring, |
| 74 | u32 *seqno); |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 75 | u32 (*get_seqno)(struct intel_ring_buffer *ring); |
| 76 | int (*dispatch_execbuffer)(struct intel_ring_buffer *ring, |
Chris Wilson | c4e7a41 | 2010-11-30 14:10:25 +0000 | [diff] [blame] | 77 | u32 offset, u32 length); |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 78 | void (*cleanup)(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 79 | |
| 80 | /** |
| 81 | * List of objects currently involved in rendering from the |
| 82 | * ringbuffer. |
| 83 | * |
| 84 | * Includes buffers having the contents of their GPU caches |
| 85 | * flushed, not necessarily primitives. last_rendering_seqno |
| 86 | * represents when the rendering involved will be completed. |
| 87 | * |
| 88 | * A reference is held on the buffer while on this list. |
| 89 | */ |
| 90 | struct list_head active_list; |
| 91 | |
| 92 | /** |
| 93 | * List of breadcrumbs associated with GPU requests currently |
| 94 | * outstanding. |
| 95 | */ |
| 96 | struct list_head request_list; |
| 97 | |
Chris Wilson | a56ba56 | 2010-09-28 10:07:56 +0100 | [diff] [blame] | 98 | /** |
Chris Wilson | 6419340 | 2010-10-24 12:38:05 +0100 | [diff] [blame] | 99 | * List of objects currently pending a GPU write flush. |
| 100 | * |
| 101 | * All elements on this list will belong to either the |
| 102 | * active_list or flushing_list, last_rendering_seqno can |
| 103 | * be used to differentiate between the two elements. |
| 104 | */ |
| 105 | struct list_head gpu_write_list; |
| 106 | |
| 107 | /** |
Chris Wilson | a56ba56 | 2010-09-28 10:07:56 +0100 | [diff] [blame] | 108 | * Do we have some not yet emitted requests outstanding? |
| 109 | */ |
Chris Wilson | 5d97eb6 | 2010-11-10 20:40:02 +0000 | [diff] [blame] | 110 | u32 outstanding_lazy_request; |
Chris Wilson | a56ba56 | 2010-09-28 10:07:56 +0100 | [diff] [blame] | 111 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 112 | wait_queue_head_t irq_queue; |
| 113 | drm_local_map_t map; |
Zou Nan hai | 8d19215 | 2010-11-02 16:31:01 +0800 | [diff] [blame] | 114 | |
| 115 | void *private; |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | static inline u32 |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 119 | intel_ring_sync_index(struct intel_ring_buffer *ring, |
| 120 | struct intel_ring_buffer *other) |
| 121 | { |
| 122 | int idx; |
| 123 | |
| 124 | /* |
| 125 | * cs -> 0 = vcs, 1 = bcs |
| 126 | * vcs -> 0 = bcs, 1 = cs, |
| 127 | * bcs -> 0 = cs, 1 = vcs. |
| 128 | */ |
| 129 | |
| 130 | idx = (other - ring) - 1; |
| 131 | if (idx < 0) |
| 132 | idx += I915_NUM_RINGS; |
| 133 | |
| 134 | return idx; |
| 135 | } |
| 136 | |
| 137 | static inline u32 |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 138 | intel_read_status_page(struct intel_ring_buffer *ring, |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 139 | int reg) |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 140 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 141 | return ioread32(ring->status_page.page_addr + reg); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 142 | } |
| 143 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 144 | void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring); |
Chris Wilson | e1f99ce | 2010-10-27 12:45:26 +0100 | [diff] [blame] | 145 | int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n); |
| 146 | int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n); |
Chris Wilson | e898cd2 | 2010-08-04 15:18:14 +0100 | [diff] [blame] | 147 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 148 | static inline void intel_ring_emit(struct intel_ring_buffer *ring, |
| 149 | u32 data) |
Chris Wilson | e898cd2 | 2010-08-04 15:18:14 +0100 | [diff] [blame] | 150 | { |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 151 | iowrite32(data, ring->virtual_start + ring->tail); |
Chris Wilson | e898cd2 | 2010-08-04 15:18:14 +0100 | [diff] [blame] | 152 | ring->tail += 4; |
| 153 | } |
| 154 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 155 | void intel_ring_advance(struct intel_ring_buffer *ring); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 156 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 157 | u32 intel_ring_get_seqno(struct intel_ring_buffer *ring); |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 158 | int intel_ring_sync(struct intel_ring_buffer *ring, |
| 159 | struct intel_ring_buffer *to, |
| 160 | u32 seqno); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 161 | |
Xiang, Haihao | 5c1143b | 2010-09-16 10:43:11 +0800 | [diff] [blame] | 162 | int intel_init_render_ring_buffer(struct drm_device *dev); |
| 163 | int intel_init_bsd_ring_buffer(struct drm_device *dev); |
Chris Wilson | 549f736 | 2010-10-19 11:19:32 +0100 | [diff] [blame] | 164 | int intel_init_blt_ring_buffer(struct drm_device *dev); |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 165 | |
Chris Wilson | 78501ea | 2010-10-27 12:18:21 +0100 | [diff] [blame] | 166 | u32 intel_ring_get_active_head(struct intel_ring_buffer *ring); |
| 167 | void intel_ring_setup_status_page(struct intel_ring_buffer *ring); |
Daniel Vetter | 79f321b | 2010-09-24 21:20:10 +0200 | [diff] [blame] | 168 | |
Zou Nan hai | 8187a2b | 2010-05-21 09:08:55 +0800 | [diff] [blame] | 169 | #endif /* _INTEL_RINGBUFFER_H_ */ |