blob: 68281c96c558c9b3c9ec8a8624080c70c3ff5213 [file] [log] [blame]
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001#ifndef _INTEL_RINGBUFFER_H_
2#define _INTEL_RINGBUFFER_H_
3
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004enum {
Akshay Joshi0206e352011-08-16 15:34:10 -04005 RCS = 0x0,
6 VCS,
7 BCS,
8 I915_NUM_RINGS,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00009};
10
Zou Nan hai8187a2b2010-05-21 09:08:55 +080011struct intel_hw_status_page {
Chris Wilson78501ea2010-10-27 12:18:21 +010012 u32 __iomem *page_addr;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080013 unsigned int gfx_addr;
Chris Wilson05394f32010-11-08 19:18:58 +000014 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080015};
16
Ben Widawskyb7287d82011-04-25 11:22:22 -070017#define I915_READ_TAIL(ring) I915_READ(RING_TAIL((ring)->mmio_base))
18#define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080019
Ben Widawskyb7287d82011-04-25 11:22:22 -070020#define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
21#define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080022
Ben Widawskyb7287d82011-04-25 11:22:22 -070023#define I915_READ_HEAD(ring) I915_READ(RING_HEAD((ring)->mmio_base))
24#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080025
Ben Widawskyb7287d82011-04-25 11:22:22 -070026#define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
27#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080028
Ben Widawskyb7287d82011-04-25 11:22:22 -070029#define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
30#define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
Daniel Vetter870e86d2010-08-02 16:29:44 +020031
Ben Widawskyb7287d82011-04-25 11:22:22 -070032#define I915_READ_NOPID(ring) I915_READ(RING_NOPID((ring)->mmio_base))
33#define I915_READ_SYNC_0(ring) I915_READ(RING_SYNC_0((ring)->mmio_base))
34#define I915_READ_SYNC_1(ring) I915_READ(RING_SYNC_1((ring)->mmio_base))
Chris Wilson1ec14ad2010-12-04 11:30:53 +000035
Zou Nan hai8187a2b2010-05-21 09:08:55 +080036struct intel_ring_buffer {
37 const char *name;
Chris Wilson92204342010-09-18 11:02:01 +010038 enum intel_ring_id {
39 RING_RENDER = 0x1,
40 RING_BSD = 0x2,
Chris Wilson549f7362010-10-19 11:19:32 +010041 RING_BLT = 0x4,
Chris Wilson92204342010-09-18 11:02:01 +010042 } id;
Daniel Vetter333e9fe2010-08-02 16:24:01 +020043 u32 mmio_base;
Chris Wilson311bd682011-01-13 19:06:50 +000044 void __iomem *virtual_start;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080045 struct drm_device *dev;
Chris Wilson05394f32010-11-08 19:18:58 +000046 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080047
Chris Wilson8c0a6bf2010-12-09 12:56:37 +000048 u32 head;
49 u32 tail;
Chris Wilson780f0ca2010-09-23 17:45:39 +010050 int space;
Chris Wilsonc2c347a92010-10-27 15:11:53 +010051 int size;
Chris Wilson55249ba2010-12-22 14:04:47 +000052 int effective_size;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080053 struct intel_hw_status_page status_page;
54
Chris Wilson0dc79fb2011-01-05 10:32:24 +000055 spinlock_t irq_lock;
Chris Wilson01a03332011-01-04 22:22:56 +000056 u32 irq_refcount;
Chris Wilson0f468322011-01-04 17:35:21 +000057 u32 irq_mask;
Chris Wilsonb2223492010-10-27 15:27:33 +010058 u32 irq_seqno; /* last seq seem at irq time */
Chris Wilsondb53a302011-02-03 11:57:46 +000059 u32 trace_irq_seqno;
Chris Wilsonb2223492010-10-27 15:27:33 +010060 u32 waiting_seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000061 u32 sync_seqno[I915_NUM_RINGS-1];
Chris Wilsonb13c2b92010-12-13 16:54:50 +000062 bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +000063 void (*irq_put)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080064
Chris Wilson78501ea2010-10-27 12:18:21 +010065 int (*init)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080066
Chris Wilson78501ea2010-10-27 12:18:21 +010067 void (*write_tail)(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +010068 u32 value);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000069 int __must_check (*flush)(struct intel_ring_buffer *ring,
70 u32 invalidate_domains,
71 u32 flush_domains);
Chris Wilson3cce4692010-10-27 16:11:02 +010072 int (*add_request)(struct intel_ring_buffer *ring,
73 u32 *seqno);
Chris Wilson78501ea2010-10-27 12:18:21 +010074 u32 (*get_seqno)(struct intel_ring_buffer *ring);
75 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +000076 u32 offset, u32 length);
Zou Nan hai8d192152010-11-02 16:31:01 +080077 void (*cleanup)(struct intel_ring_buffer *ring);
Ben Widawskyc8c99b02011-09-14 20:32:47 -070078 int (*sync_to)(struct intel_ring_buffer *ring,
79 struct intel_ring_buffer *to,
80 u32 seqno);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080081
Ben Widawskyc8c99b02011-09-14 20:32:47 -070082 u32 semaphore_register[3]; /*our mbox written by others */
83 u32 signal_mbox[2]; /* mboxes this ring signals to */
Zou Nan hai8187a2b2010-05-21 09:08:55 +080084 /**
85 * List of objects currently involved in rendering from the
86 * ringbuffer.
87 *
88 * Includes buffers having the contents of their GPU caches
89 * flushed, not necessarily primitives. last_rendering_seqno
90 * represents when the rendering involved will be completed.
91 *
92 * A reference is held on the buffer while on this list.
93 */
94 struct list_head active_list;
95
96 /**
97 * List of breadcrumbs associated with GPU requests currently
98 * outstanding.
99 */
100 struct list_head request_list;
101
Chris Wilsona56ba562010-09-28 10:07:56 +0100102 /**
Chris Wilson64193402010-10-24 12:38:05 +0100103 * List of objects currently pending a GPU write flush.
104 *
105 * All elements on this list will belong to either the
106 * active_list or flushing_list, last_rendering_seqno can
107 * be used to differentiate between the two elements.
108 */
109 struct list_head gpu_write_list;
110
111 /**
Chris Wilsona56ba562010-09-28 10:07:56 +0100112 * Do we have some not yet emitted requests outstanding?
113 */
Chris Wilson5d97eb62010-11-10 20:40:02 +0000114 u32 outstanding_lazy_request;
Chris Wilsona56ba562010-09-28 10:07:56 +0100115
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800116 wait_queue_head_t irq_queue;
117 drm_local_map_t map;
Zou Nan hai8d192152010-11-02 16:31:01 +0800118
119 void *private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800120};
121
122static inline u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000123intel_ring_sync_index(struct intel_ring_buffer *ring,
124 struct intel_ring_buffer *other)
125{
126 int idx;
127
128 /*
129 * cs -> 0 = vcs, 1 = bcs
130 * vcs -> 0 = bcs, 1 = cs,
131 * bcs -> 0 = cs, 1 = vcs.
132 */
133
134 idx = (other - ring) - 1;
135 if (idx < 0)
136 idx += I915_NUM_RINGS;
137
138 return idx;
139}
140
141static inline u32
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800142intel_read_status_page(struct intel_ring_buffer *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +0100143 int reg)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800144{
Chris Wilson78501ea2010-10-27 12:18:21 +0100145 return ioread32(ring->status_page.page_addr + reg);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800146}
147
Chris Wilson311bd682011-01-13 19:06:50 +0000148/**
149 * Reads a dword out of the status page, which is written to from the command
150 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
151 * MI_STORE_DATA_IMM.
152 *
153 * The following dwords have a reserved meaning:
154 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
155 * 0x04: ring 0 head pointer
156 * 0x05: ring 1 head pointer (915-class)
157 * 0x06: ring 2 head pointer (915-class)
158 * 0x10-0x1b: Context status DWords (GM45)
159 * 0x1f: Last written status offset. (GM45)
160 *
161 * The area from dword 0x20 to 0x3ff is available for driver usage.
162 */
163#define READ_HWSP(dev_priv, reg) intel_read_status_page(LP_RING(dev_priv), reg)
164#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
165#define I915_GEM_HWS_INDEX 0x20
166#define I915_BREADCRUMB_INDEX 0x21
167
Chris Wilson78501ea2010-10-27 12:18:21 +0100168void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700169
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100170int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700171static inline int intel_wait_ring_idle(struct intel_ring_buffer *ring)
172{
Chris Wilsona94919e2011-07-12 18:03:29 +0100173 return intel_wait_ring_buffer(ring, ring->size - 8);
Ben Widawsky96f298a2011-03-19 18:14:27 -0700174}
175
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100176int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
Chris Wilsone898cd22010-08-04 15:18:14 +0100177
Chris Wilson78501ea2010-10-27 12:18:21 +0100178static inline void intel_ring_emit(struct intel_ring_buffer *ring,
179 u32 data)
Chris Wilsone898cd22010-08-04 15:18:14 +0100180{
Chris Wilson78501ea2010-10-27 12:18:21 +0100181 iowrite32(data, ring->virtual_start + ring->tail);
Chris Wilsone898cd22010-08-04 15:18:14 +0100182 ring->tail += 4;
183}
184
Chris Wilson78501ea2010-10-27 12:18:21 +0100185void intel_ring_advance(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800186
Chris Wilson78501ea2010-10-27 12:18:21 +0100187u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800188
Xiang, Haihao5c1143b2010-09-16 10:43:11 +0800189int intel_init_render_ring_buffer(struct drm_device *dev);
190int intel_init_bsd_ring_buffer(struct drm_device *dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100191int intel_init_blt_ring_buffer(struct drm_device *dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800192
Chris Wilson78501ea2010-10-27 12:18:21 +0100193u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
194void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
Daniel Vetter79f321b2010-09-24 21:20:10 +0200195
Chris Wilsondb53a302011-02-03 11:57:46 +0000196static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno)
197{
198 if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
199 ring->trace_irq_seqno = seqno;
200}
201
Chris Wilsone8616b62011-01-20 09:57:11 +0000202/* DRI warts */
203int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
204
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800205#endif /* _INTEL_RINGBUFFER_H_ */