blob: 34306865a5df936bad131c41eae47118146b1f52 [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 {
5 RCS = 0x0,
6 VCS,
7 BCS,
8 I915_NUM_RINGS,
9};
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
Chris Wilson91355832011-03-04 19:22:40 +000017#define I915_RING_READ(reg) i915_gt_read(dev_priv, reg)
18#define I915_RING_WRITE(reg, val) i915_gt_write(dev_priv, reg, val)
Zou Nan haicae58522010-11-09 17:17:32 +080019
Chris Wilson9862e602011-01-04 22:22:17 +000020#define I915_READ_TAIL(ring) I915_RING_READ(RING_TAIL((ring)->mmio_base))
Chris Wilson91355832011-03-04 19:22:40 +000021#define I915_WRITE_TAIL(ring, val) I915_RING_WRITE(RING_TAIL((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080022
Chris Wilson9862e602011-01-04 22:22:17 +000023#define I915_READ_START(ring) I915_RING_READ(RING_START((ring)->mmio_base))
Chris Wilson91355832011-03-04 19:22:40 +000024#define I915_WRITE_START(ring, val) I915_RING_WRITE(RING_START((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080025
Chris Wilson9862e602011-01-04 22:22:17 +000026#define I915_READ_HEAD(ring) I915_RING_READ(RING_HEAD((ring)->mmio_base))
Chris Wilson91355832011-03-04 19:22:40 +000027#define I915_WRITE_HEAD(ring, val) I915_RING_WRITE(RING_HEAD((ring)->mmio_base), val)
Zou Nan haicae58522010-11-09 17:17:32 +080028
Chris Wilson9862e602011-01-04 22:22:17 +000029#define I915_READ_CTL(ring) I915_RING_READ(RING_CTL((ring)->mmio_base))
Chris Wilson91355832011-03-04 19:22:40 +000030#define I915_WRITE_CTL(ring, val) I915_RING_WRITE(RING_CTL((ring)->mmio_base), val)
Daniel Vetter870e86d2010-08-02 16:29:44 +020031
Chris Wilson9862e602011-01-04 22:22:17 +000032#define I915_READ_IMR(ring) I915_RING_READ(RING_IMR((ring)->mmio_base))
Chris Wilson91355832011-03-04 19:22:40 +000033#define I915_WRITE_IMR(ring, val) I915_RING_WRITE(RING_IMR((ring)->mmio_base), val)
Chris Wilson0f468322011-01-04 17:35:21 +000034
Chris Wilson9862e602011-01-04 22:22:17 +000035#define I915_READ_NOPID(ring) I915_RING_READ(RING_NOPID((ring)->mmio_base))
36#define I915_READ_SYNC_0(ring) I915_RING_READ(RING_SYNC_0((ring)->mmio_base))
37#define I915_READ_SYNC_1(ring) I915_RING_READ(RING_SYNC_1((ring)->mmio_base))
Chris Wilson1ec14ad2010-12-04 11:30:53 +000038
Zou Nan hai8187a2b2010-05-21 09:08:55 +080039struct intel_ring_buffer {
40 const char *name;
Chris Wilson92204342010-09-18 11:02:01 +010041 enum intel_ring_id {
42 RING_RENDER = 0x1,
43 RING_BSD = 0x2,
Chris Wilson549f7362010-10-19 11:19:32 +010044 RING_BLT = 0x4,
Chris Wilson92204342010-09-18 11:02:01 +010045 } id;
Daniel Vetter333e9fe2010-08-02 16:24:01 +020046 u32 mmio_base;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080047 void *virtual_start;
48 struct drm_device *dev;
Chris Wilson05394f32010-11-08 19:18:58 +000049 struct drm_i915_gem_object *obj;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080050
Chris Wilson8c0a6bf2010-12-09 12:56:37 +000051 u32 head;
52 u32 tail;
Chris Wilson780f0ca2010-09-23 17:45:39 +010053 int space;
Chris Wilsonc2c347a92010-10-27 15:11:53 +010054 int size;
Chris Wilson55249ba2010-12-22 14:04:47 +000055 int effective_size;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080056 struct intel_hw_status_page status_page;
57
Chris Wilson0dc79fb2011-01-05 10:32:24 +000058 spinlock_t irq_lock;
Chris Wilson01a03332011-01-04 22:22:56 +000059 u32 irq_refcount;
Chris Wilson0f468322011-01-04 17:35:21 +000060 u32 irq_mask;
Chris Wilsonb2223492010-10-27 15:27:33 +010061 u32 irq_seqno; /* last seq seem at irq time */
62 u32 waiting_seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +000063 u32 sync_seqno[I915_NUM_RINGS-1];
Chris Wilsonb13c2b92010-12-13 16:54:50 +000064 bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +000065 void (*irq_put)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080066
Chris Wilson78501ea2010-10-27 12:18:21 +010067 int (*init)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080068
Chris Wilson78501ea2010-10-27 12:18:21 +010069 void (*write_tail)(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +010070 u32 value);
Chris Wilsonb72f3ac2011-01-04 17:34:02 +000071 int __must_check (*flush)(struct intel_ring_buffer *ring,
72 u32 invalidate_domains,
73 u32 flush_domains);
Chris Wilson3cce4692010-10-27 16:11:02 +010074 int (*add_request)(struct intel_ring_buffer *ring,
75 u32 *seqno);
Chris Wilson78501ea2010-10-27 12:18:21 +010076 u32 (*get_seqno)(struct intel_ring_buffer *ring);
77 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
Chris Wilsonc4e7a412010-11-30 14:10:25 +000078 u32 offset, u32 length);
Zou Nan hai8d192152010-11-02 16:31:01 +080079 void (*cleanup)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080080
81 /**
82 * List of objects currently involved in rendering from the
83 * ringbuffer.
84 *
85 * Includes buffers having the contents of their GPU caches
86 * flushed, not necessarily primitives. last_rendering_seqno
87 * represents when the rendering involved will be completed.
88 *
89 * A reference is held on the buffer while on this list.
90 */
91 struct list_head active_list;
92
93 /**
94 * List of breadcrumbs associated with GPU requests currently
95 * outstanding.
96 */
97 struct list_head request_list;
98
Chris Wilsona56ba562010-09-28 10:07:56 +010099 /**
Chris Wilson64193402010-10-24 12:38:05 +0100100 * List of objects currently pending a GPU write flush.
101 *
102 * All elements on this list will belong to either the
103 * active_list or flushing_list, last_rendering_seqno can
104 * be used to differentiate between the two elements.
105 */
106 struct list_head gpu_write_list;
107
108 /**
Chris Wilsona56ba562010-09-28 10:07:56 +0100109 * Do we have some not yet emitted requests outstanding?
110 */
Chris Wilson5d97eb62010-11-10 20:40:02 +0000111 u32 outstanding_lazy_request;
Chris Wilsona56ba562010-09-28 10:07:56 +0100112
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800113 wait_queue_head_t irq_queue;
114 drm_local_map_t map;
Zou Nan hai8d192152010-11-02 16:31:01 +0800115
116 void *private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800117};
118
119static inline u32
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000120intel_ring_sync_index(struct intel_ring_buffer *ring,
121 struct intel_ring_buffer *other)
122{
123 int idx;
124
125 /*
126 * cs -> 0 = vcs, 1 = bcs
127 * vcs -> 0 = bcs, 1 = cs,
128 * bcs -> 0 = cs, 1 = vcs.
129 */
130
131 idx = (other - ring) - 1;
132 if (idx < 0)
133 idx += I915_NUM_RINGS;
134
135 return idx;
136}
137
138static inline u32
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800139intel_read_status_page(struct intel_ring_buffer *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +0100140 int reg)
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800141{
Chris Wilson78501ea2010-10-27 12:18:21 +0100142 return ioread32(ring->status_page.page_addr + reg);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800143}
144
Chris Wilson78501ea2010-10-27 12:18:21 +0100145void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100146int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
147int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
Chris Wilsone898cd22010-08-04 15:18:14 +0100148
Chris Wilson78501ea2010-10-27 12:18:21 +0100149static inline void intel_ring_emit(struct intel_ring_buffer *ring,
150 u32 data)
Chris Wilsone898cd22010-08-04 15:18:14 +0100151{
Chris Wilson78501ea2010-10-27 12:18:21 +0100152 iowrite32(data, ring->virtual_start + ring->tail);
Chris Wilsone898cd22010-08-04 15:18:14 +0100153 ring->tail += 4;
154}
155
Chris Wilson78501ea2010-10-27 12:18:21 +0100156void intel_ring_advance(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800157
Chris Wilson78501ea2010-10-27 12:18:21 +0100158u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000159int intel_ring_sync(struct intel_ring_buffer *ring,
160 struct intel_ring_buffer *to,
161 u32 seqno);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800162
Xiang, Haihao5c1143b2010-09-16 10:43:11 +0800163int intel_init_render_ring_buffer(struct drm_device *dev);
164int intel_init_bsd_ring_buffer(struct drm_device *dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100165int intel_init_blt_ring_buffer(struct drm_device *dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800166
Chris Wilson78501ea2010-10-27 12:18:21 +0100167u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
168void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
Daniel Vetter79f321b2010-09-24 21:20:10 +0200169
Chris Wilsone8616b62011-01-20 09:57:11 +0000170/* DRI warts */
171int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
172
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800173#endif /* _INTEL_RINGBUFFER_H_ */