blob: 35ece2b87b02b73485c06ad7865d0b8a4eccdb49 [file] [log] [blame]
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001#ifndef _INTEL_RINGBUFFER_H_
2#define _INTEL_RINGBUFFER_H_
3
4struct intel_hw_status_page {
Chris Wilson78501ea2010-10-27 12:18:21 +01005 u32 __iomem *page_addr;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08006 unsigned int gfx_addr;
7 struct drm_gem_object *obj;
8};
9
Daniel Vetter870e86d2010-08-02 16:29:44 +020010#define I915_READ_TAIL(ring) I915_READ(RING_TAIL(ring->mmio_base))
11#define I915_WRITE_TAIL(ring, val) I915_WRITE(RING_TAIL(ring->mmio_base), val)
Daniel Vetter6c0e1c52010-08-02 16:33:33 +020012#define I915_READ_START(ring) I915_READ(RING_START(ring->mmio_base))
13#define I915_WRITE_START(ring, val) I915_WRITE(RING_START(ring->mmio_base), val)
Daniel Vetter570ef602010-08-02 17:06:23 +020014#define I915_READ_HEAD(ring) I915_READ(RING_HEAD(ring->mmio_base))
15#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD(ring->mmio_base), val)
Daniel Vetter7f2ab692010-08-02 17:06:59 +020016#define I915_READ_CTL(ring) I915_READ(RING_CTL(ring->mmio_base))
17#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL(ring->mmio_base), val)
Daniel Vetter870e86d2010-08-02 16:29:44 +020018
Zou Nan hai8187a2b2010-05-21 09:08:55 +080019struct drm_i915_gem_execbuffer2;
20struct intel_ring_buffer {
21 const char *name;
Chris Wilson92204342010-09-18 11:02:01 +010022 enum intel_ring_id {
23 RING_RENDER = 0x1,
24 RING_BSD = 0x2,
Chris Wilson549f7362010-10-19 11:19:32 +010025 RING_BLT = 0x4,
Chris Wilson92204342010-09-18 11:02:01 +010026 } id;
Daniel Vetter333e9fe2010-08-02 16:24:01 +020027 u32 mmio_base;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080028 unsigned long size;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080029 void *virtual_start;
30 struct drm_device *dev;
31 struct drm_gem_object *gem_object;
32
33 unsigned int head;
34 unsigned int tail;
Chris Wilson780f0ca2010-09-23 17:45:39 +010035 int space;
Zou Nan hai8187a2b2010-05-21 09:08:55 +080036 struct intel_hw_status_page status_page;
37
38 u32 irq_gem_seqno; /* last seq seem at irq time */
39 u32 waiting_gem_seqno;
40 int user_irq_refcount;
Chris Wilson78501ea2010-10-27 12:18:21 +010041 void (*user_irq_get)(struct intel_ring_buffer *ring);
42 void (*user_irq_put)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080043
Chris Wilson78501ea2010-10-27 12:18:21 +010044 int (*init)(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080045
Chris Wilson78501ea2010-10-27 12:18:21 +010046 void (*write_tail)(struct intel_ring_buffer *ring,
Chris Wilson297b0c52010-10-22 17:02:41 +010047 u32 value);
Chris Wilson78501ea2010-10-27 12:18:21 +010048 void (*flush)(struct intel_ring_buffer *ring,
49 u32 invalidate_domains,
50 u32 flush_domains);
51 u32 (*add_request)(struct intel_ring_buffer *ring,
52 u32 flush_domains);
53 u32 (*get_seqno)(struct intel_ring_buffer *ring);
54 int (*dispatch_execbuffer)(struct intel_ring_buffer *ring,
55 struct drm_i915_gem_execbuffer2 *exec,
56 struct drm_clip_rect *cliprects,
57 uint64_t exec_offset);
Zou Nan hai8187a2b2010-05-21 09:08:55 +080058
59 /**
60 * List of objects currently involved in rendering from the
61 * ringbuffer.
62 *
63 * Includes buffers having the contents of their GPU caches
64 * flushed, not necessarily primitives. last_rendering_seqno
65 * represents when the rendering involved will be completed.
66 *
67 * A reference is held on the buffer while on this list.
68 */
69 struct list_head active_list;
70
71 /**
72 * List of breadcrumbs associated with GPU requests currently
73 * outstanding.
74 */
75 struct list_head request_list;
76
Chris Wilsona56ba562010-09-28 10:07:56 +010077 /**
Chris Wilson64193402010-10-24 12:38:05 +010078 * List of objects currently pending a GPU write flush.
79 *
80 * All elements on this list will belong to either the
81 * active_list or flushing_list, last_rendering_seqno can
82 * be used to differentiate between the two elements.
83 */
84 struct list_head gpu_write_list;
85
86 /**
Chris Wilsona56ba562010-09-28 10:07:56 +010087 * Do we have some not yet emitted requests outstanding?
88 */
89 bool outstanding_lazy_request;
90
Zou Nan hai8187a2b2010-05-21 09:08:55 +080091 wait_queue_head_t irq_queue;
92 drm_local_map_t map;
93};
94
95static inline u32
96intel_read_status_page(struct intel_ring_buffer *ring,
Chris Wilson78501ea2010-10-27 12:18:21 +010097 int reg)
Zou Nan hai8187a2b2010-05-21 09:08:55 +080098{
Chris Wilson78501ea2010-10-27 12:18:21 +010099 return ioread32(ring->status_page.page_addr + reg);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800100}
101
Chris Wilson78501ea2010-10-27 12:18:21 +0100102void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
Chris Wilsone1f99ce2010-10-27 12:45:26 +0100103int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
104int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
Chris Wilsone898cd22010-08-04 15:18:14 +0100105
Chris Wilson78501ea2010-10-27 12:18:21 +0100106static inline void intel_ring_emit(struct intel_ring_buffer *ring,
107 u32 data)
Chris Wilsone898cd22010-08-04 15:18:14 +0100108{
Chris Wilson78501ea2010-10-27 12:18:21 +0100109 iowrite32(data, ring->virtual_start + ring->tail);
Chris Wilsone898cd22010-08-04 15:18:14 +0100110 ring->tail += 4;
111}
112
Chris Wilson78501ea2010-10-27 12:18:21 +0100113void intel_ring_advance(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800114
Chris Wilson78501ea2010-10-27 12:18:21 +0100115u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800116
Xiang, Haihao5c1143b2010-09-16 10:43:11 +0800117int intel_init_render_ring_buffer(struct drm_device *dev);
118int intel_init_bsd_ring_buffer(struct drm_device *dev);
Chris Wilson549f7362010-10-19 11:19:32 +0100119int intel_init_blt_ring_buffer(struct drm_device *dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800120
Chris Wilson78501ea2010-10-27 12:18:21 +0100121u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
122void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
Daniel Vetter79f321b2010-09-24 21:20:10 +0200123
Zou Nan hai8187a2b2010-05-21 09:08:55 +0800124#endif /* _INTEL_RINGBUFFER_H_ */