Linux Audio

Check our new training course

Loading...
v3.1
  1#ifndef _INTEL_RINGBUFFER_H_
  2#define _INTEL_RINGBUFFER_H_
  3
  4enum {
  5    RCS = 0x0,
  6    VCS,
  7    BCS,
  8    I915_NUM_RINGS,
  9};
 10
 11struct  intel_hw_status_page {
 12	u32	__iomem	*page_addr;
 13	unsigned int	gfx_addr;
 14	struct		drm_i915_gem_object *obj;
 15};
 16
 17#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)
 19
 20#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)
 22
 23#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)
 25
 26#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)
 28
 29#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)
 31
 32#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))
 35
 36struct  intel_ring_buffer {
 37	const char	*name;
 38	enum intel_ring_id {
 39		RING_RENDER = 0x1,
 40		RING_BSD = 0x2,
 41		RING_BLT = 0x4,
 42	} id;
 
 43	u32		mmio_base;
 44	void		__iomem *virtual_start;
 45	struct		drm_device *dev;
 46	struct		drm_i915_gem_object *obj;
 47
 48	u32		head;
 49	u32		tail;
 50	int		space;
 51	int		size;
 52	int		effective_size;
 53	struct intel_hw_status_page status_page;
 54
 55	spinlock_t	irq_lock;
 56	u32		irq_refcount;
 57	u32		irq_mask;
 58	u32		irq_seqno;		/* last seq seem at irq time */
 
 
 
 
 
 
 
 
 59	u32		trace_irq_seqno;
 60	u32		waiting_seqno;
 61	u32		sync_seqno[I915_NUM_RINGS-1];
 62	bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
 63	void		(*irq_put)(struct intel_ring_buffer *ring);
 64
 65	int		(*init)(struct intel_ring_buffer *ring);
 66
 67	void		(*write_tail)(struct intel_ring_buffer *ring,
 68				      u32 value);
 69	int __must_check (*flush)(struct intel_ring_buffer *ring,
 70				  u32	invalidate_domains,
 71				  u32	flush_domains);
 72	int		(*add_request)(struct intel_ring_buffer *ring,
 73				       u32 *seqno);
 74	u32		(*get_seqno)(struct intel_ring_buffer *ring);
 75	int		(*dispatch_execbuffer)(struct intel_ring_buffer *ring,
 76					       u32 offset, u32 length);
 77	void		(*cleanup)(struct intel_ring_buffer *ring);
 
 
 
 78
 
 
 79	/**
 80	 * List of objects currently involved in rendering from the
 81	 * ringbuffer.
 82	 *
 83	 * Includes buffers having the contents of their GPU caches
 84	 * flushed, not necessarily primitives.  last_rendering_seqno
 85	 * represents when the rendering involved will be completed.
 86	 *
 87	 * A reference is held on the buffer while on this list.
 88	 */
 89	struct list_head active_list;
 90
 91	/**
 92	 * List of breadcrumbs associated with GPU requests currently
 93	 * outstanding.
 94	 */
 95	struct list_head request_list;
 96
 97	/**
 98	 * List of objects currently pending a GPU write flush.
 99	 *
100	 * All elements on this list will belong to either the
101	 * active_list or flushing_list, last_rendering_seqno can
102	 * be used to differentiate between the two elements.
103	 */
104	struct list_head gpu_write_list;
105
106	/**
107	 * Do we have some not yet emitted requests outstanding?
108	 */
109	u32 outstanding_lazy_request;
110
111	wait_queue_head_t irq_queue;
112	drm_local_map_t map;
113
114	void *private;
115};
116
 
 
 
 
 
 
 
 
 
 
 
 
117static inline u32
118intel_ring_sync_index(struct intel_ring_buffer *ring,
119		      struct intel_ring_buffer *other)
120{
121	int idx;
122
123	/*
124	 * cs -> 0 = vcs, 1 = bcs
125	 * vcs -> 0 = bcs, 1 = cs,
126	 * bcs -> 0 = cs, 1 = vcs.
127	 */
128
129	idx = (other - ring) - 1;
130	if (idx < 0)
131		idx += I915_NUM_RINGS;
132
133	return idx;
134}
135
136static inline u32
137intel_read_status_page(struct intel_ring_buffer *ring,
138		       int reg)
139{
140	return ioread32(ring->status_page.page_addr + reg);
 
 
141}
142
143/**
144 * Reads a dword out of the status page, which is written to from the command
145 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
146 * MI_STORE_DATA_IMM.
147 *
148 * The following dwords have a reserved meaning:
149 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
150 * 0x04: ring 0 head pointer
151 * 0x05: ring 1 head pointer (915-class)
152 * 0x06: ring 2 head pointer (915-class)
153 * 0x10-0x1b: Context status DWords (GM45)
154 * 0x1f: Last written status offset. (GM45)
155 *
156 * The area from dword 0x20 to 0x3ff is available for driver usage.
157 */
158#define READ_HWSP(dev_priv, reg) intel_read_status_page(LP_RING(dev_priv), reg)
159#define READ_BREADCRUMB(dev_priv) READ_HWSP(dev_priv, I915_BREADCRUMB_INDEX)
160#define I915_GEM_HWS_INDEX		0x20
161#define I915_BREADCRUMB_INDEX		0x21
162
163void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
164
165int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
166static inline int intel_wait_ring_idle(struct intel_ring_buffer *ring)
167{
168	return intel_wait_ring_buffer(ring, ring->size - 8);
169}
170
171int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
172
173static inline void intel_ring_emit(struct intel_ring_buffer *ring,
174				   u32 data)
175{
176	iowrite32(data, ring->virtual_start + ring->tail);
177	ring->tail += 4;
178}
179
180void intel_ring_advance(struct intel_ring_buffer *ring);
181
182u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
183int intel_ring_sync(struct intel_ring_buffer *ring,
184		    struct intel_ring_buffer *to,
185		    u32 seqno);
186
187int intel_init_render_ring_buffer(struct drm_device *dev);
188int intel_init_bsd_ring_buffer(struct drm_device *dev);
189int intel_init_blt_ring_buffer(struct drm_device *dev);
190
191u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
192void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
 
 
 
 
 
193
194static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno)
195{
196	if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
197		ring->trace_irq_seqno = seqno;
198}
199
200/* DRI warts */
201int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
202
203#endif /* _INTEL_RINGBUFFER_H_ */
v3.5.6
  1#ifndef _INTEL_RINGBUFFER_H_
  2#define _INTEL_RINGBUFFER_H_
  3
 
 
 
 
 
 
 
  4struct  intel_hw_status_page {
  5	u32		*page_addr;
  6	unsigned int	gfx_addr;
  7	struct		drm_i915_gem_object *obj;
  8};
  9
 10#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)
 12
 13#define I915_READ_START(ring) I915_READ(RING_START((ring)->mmio_base))
 14#define I915_WRITE_START(ring, val) I915_WRITE(RING_START((ring)->mmio_base), val)
 15
 16#define I915_READ_HEAD(ring)  I915_READ(RING_HEAD((ring)->mmio_base))
 17#define I915_WRITE_HEAD(ring, val) I915_WRITE(RING_HEAD((ring)->mmio_base), val)
 18
 19#define I915_READ_CTL(ring) I915_READ(RING_CTL((ring)->mmio_base))
 20#define I915_WRITE_CTL(ring, val) I915_WRITE(RING_CTL((ring)->mmio_base), val)
 21
 22#define I915_READ_IMR(ring) I915_READ(RING_IMR((ring)->mmio_base))
 23#define I915_WRITE_IMR(ring, val) I915_WRITE(RING_IMR((ring)->mmio_base), val)
 24
 25#define I915_READ_NOPID(ring) I915_READ(RING_NOPID((ring)->mmio_base))
 26#define I915_READ_SYNC_0(ring) I915_READ(RING_SYNC_0((ring)->mmio_base))
 27#define I915_READ_SYNC_1(ring) I915_READ(RING_SYNC_1((ring)->mmio_base))
 28
 29struct  intel_ring_buffer {
 30	const char	*name;
 31	enum intel_ring_id {
 32		RCS = 0x0,
 33		VCS,
 34		BCS,
 35	} id;
 36#define I915_NUM_RINGS 3
 37	u32		mmio_base;
 38	void		__iomem *virtual_start;
 39	struct		drm_device *dev;
 40	struct		drm_i915_gem_object *obj;
 41
 42	u32		head;
 43	u32		tail;
 44	int		space;
 45	int		size;
 46	int		effective_size;
 47	struct intel_hw_status_page status_page;
 48
 49	/** We track the position of the requests in the ring buffer, and
 50	 * when each is retired we increment last_retired_head as the GPU
 51	 * must have finished processing the request and so we know we
 52	 * can advance the ringbuffer up to that position.
 53	 *
 54	 * last_retired_head is set to -1 after the value is consumed so
 55	 * we can detect new retirements.
 56	 */
 57	u32		last_retired_head;
 58
 59	u32		irq_refcount;		/* protected by dev_priv->irq_lock */
 60	u32		irq_enable_mask;	/* bitmask to enable ring interrupt */
 61	u32		trace_irq_seqno;
 
 62	u32		sync_seqno[I915_NUM_RINGS-1];
 63	bool __must_check (*irq_get)(struct intel_ring_buffer *ring);
 64	void		(*irq_put)(struct intel_ring_buffer *ring);
 65
 66	int		(*init)(struct intel_ring_buffer *ring);
 67
 68	void		(*write_tail)(struct intel_ring_buffer *ring,
 69				      u32 value);
 70	int __must_check (*flush)(struct intel_ring_buffer *ring,
 71				  u32	invalidate_domains,
 72				  u32	flush_domains);
 73	int		(*add_request)(struct intel_ring_buffer *ring,
 74				       u32 *seqno);
 75	u32		(*get_seqno)(struct intel_ring_buffer *ring);
 76	int		(*dispatch_execbuffer)(struct intel_ring_buffer *ring,
 77					       u32 offset, u32 length);
 78	void		(*cleanup)(struct intel_ring_buffer *ring);
 79	int		(*sync_to)(struct intel_ring_buffer *ring,
 80				   struct intel_ring_buffer *to,
 81				   u32 seqno);
 82
 83	u32		semaphore_register[3]; /*our mbox written by others */
 84	u32		signal_mbox[2]; /* mboxes this ring signals to */
 85	/**
 86	 * List of objects currently involved in rendering from the
 87	 * ringbuffer.
 88	 *
 89	 * Includes buffers having the contents of their GPU caches
 90	 * flushed, not necessarily primitives.  last_rendering_seqno
 91	 * represents when the rendering involved will be completed.
 92	 *
 93	 * A reference is held on the buffer while on this list.
 94	 */
 95	struct list_head active_list;
 96
 97	/**
 98	 * List of breadcrumbs associated with GPU requests currently
 99	 * outstanding.
100	 */
101	struct list_head request_list;
102
103	/**
104	 * List of objects currently pending a GPU write flush.
105	 *
106	 * All elements on this list will belong to either the
107	 * active_list or flushing_list, last_rendering_seqno can
108	 * be used to differentiate between the two elements.
109	 */
110	struct list_head gpu_write_list;
111
112	/**
113	 * Do we have some not yet emitted requests outstanding?
114	 */
115	u32 outstanding_lazy_request;
116
117	wait_queue_head_t irq_queue;
 
118
119	void *private;
120};
121
122static inline bool
123intel_ring_initialized(struct intel_ring_buffer *ring)
124{
125	return ring->obj != NULL;
126}
127
128static inline unsigned
129intel_ring_flag(struct intel_ring_buffer *ring)
130{
131	return 1 << ring->id;
132}
133
134static inline u32
135intel_ring_sync_index(struct intel_ring_buffer *ring,
136		      struct intel_ring_buffer *other)
137{
138	int idx;
139
140	/*
141	 * cs -> 0 = vcs, 1 = bcs
142	 * vcs -> 0 = bcs, 1 = cs,
143	 * bcs -> 0 = cs, 1 = vcs.
144	 */
145
146	idx = (other - ring) - 1;
147	if (idx < 0)
148		idx += I915_NUM_RINGS;
149
150	return idx;
151}
152
153static inline u32
154intel_read_status_page(struct intel_ring_buffer *ring,
155		       int reg)
156{
157	/* Ensure that the compiler doesn't optimize away the load. */
158	barrier();
159	return ring->status_page.page_addr[reg];
160}
161
162/**
163 * Reads a dword out of the status page, which is written to from the command
164 * queue by automatic updates, MI_REPORT_HEAD, MI_STORE_DATA_INDEX, or
165 * MI_STORE_DATA_IMM.
166 *
167 * The following dwords have a reserved meaning:
168 * 0x00: ISR copy, updated when an ISR bit not set in the HWSTAM changes.
169 * 0x04: ring 0 head pointer
170 * 0x05: ring 1 head pointer (915-class)
171 * 0x06: ring 2 head pointer (915-class)
172 * 0x10-0x1b: Context status DWords (GM45)
173 * 0x1f: Last written status offset. (GM45)
174 *
175 * The area from dword 0x20 to 0x3ff is available for driver usage.
176 */
 
 
177#define I915_GEM_HWS_INDEX		0x20
 
178
179void intel_cleanup_ring_buffer(struct intel_ring_buffer *ring);
180
181int __must_check intel_wait_ring_buffer(struct intel_ring_buffer *ring, int n);
182static inline int intel_wait_ring_idle(struct intel_ring_buffer *ring)
183{
184	return intel_wait_ring_buffer(ring, ring->size - 8);
185}
186
187int __must_check intel_ring_begin(struct intel_ring_buffer *ring, int n);
188
189static inline void intel_ring_emit(struct intel_ring_buffer *ring,
190				   u32 data)
191{
192	iowrite32(data, ring->virtual_start + ring->tail);
193	ring->tail += 4;
194}
195
196void intel_ring_advance(struct intel_ring_buffer *ring);
197
198u32 intel_ring_get_seqno(struct intel_ring_buffer *ring);
 
 
 
199
200int intel_init_render_ring_buffer(struct drm_device *dev);
201int intel_init_bsd_ring_buffer(struct drm_device *dev);
202int intel_init_blt_ring_buffer(struct drm_device *dev);
203
204u32 intel_ring_get_active_head(struct intel_ring_buffer *ring);
205void intel_ring_setup_status_page(struct intel_ring_buffer *ring);
206
207static inline u32 intel_ring_get_tail(struct intel_ring_buffer *ring)
208{
209	return ring->tail;
210}
211
212static inline void i915_trace_irq_get(struct intel_ring_buffer *ring, u32 seqno)
213{
214	if (ring->trace_irq_seqno == 0 && ring->irq_get(ring))
215		ring->trace_irq_seqno = seqno;
216}
217
218/* DRI warts */
219int intel_render_ring_init_dri(struct drm_device *dev, u64 start, u32 size);
220
221#endif /* _INTEL_RINGBUFFER_H_ */