blob: f7f16e7a8bf3c8d724065268052b9659c99a2d61 [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include "drmP.h"
30#include "drm.h"
31#include "i915_drm.h"
32#include "i915_drv.h"
33
Dave Airlie0d6aa602006-01-02 20:14:23 +110034#define USER_INT_FLAG (1<<1)
35#define VSYNC_PIPEB_FLAG (1<<5)
36#define VSYNC_PIPEA_FLAG (1<<7)
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define MAX_NOPID ((u32)~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100040/**
41 * Emit blits for scheduled buffer swaps.
42 *
43 * This function will be called with the HW lock held.
44 */
Dave Airlie84b1fd12007-07-11 15:53:27 +100045static void i915_vblank_tasklet(struct drm_device *dev)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100046{
47 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +100048 unsigned long irqflags;
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110049 struct list_head *list, *tmp, hits, *hit;
Dave Airlieaf6061a2008-05-07 12:15:39 +100050 int nhits, nrects, slice[2], upper[2], lower[2], i;
51 unsigned counter[2] = { atomic_read(&dev->vbl_received),
52 atomic_read(&dev->vbl_received2) };
Dave Airliec60ce622007-07-11 15:27:12 +100053 struct drm_drawable_info *drw;
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110054 drm_i915_sarea_t *sarea_priv = dev_priv->sarea_priv;
Dave Airlieaf6061a2008-05-07 12:15:39 +100055 u32 cpp = dev_priv->cpp;
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110056 u32 cmd = (cpp == 4) ? (XY_SRC_COPY_BLT_CMD |
57 XY_SRC_COPY_BLT_WRITE_ALPHA |
58 XY_SRC_COPY_BLT_WRITE_RGB)
59 : XY_SRC_COPY_BLT_CMD;
Keith Packard7b832b52008-04-21 16:31:10 +100060 u32 src_pitch = sarea_priv->pitch * cpp;
61 u32 dst_pitch = sarea_priv->pitch * cpp;
62 u32 ropcpp = (0xcc << 16) | ((cpp - 1) << 24);
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110063 RING_LOCALS;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100064
Keith Packard7b832b52008-04-21 16:31:10 +100065 if (sarea_priv->front_tiled) {
66 cmd |= XY_SRC_COPY_BLT_DST_TILED;
67 dst_pitch >>= 2;
68 }
69 if (sarea_priv->back_tiled) {
70 cmd |= XY_SRC_COPY_BLT_SRC_TILED;
71 src_pitch >>= 2;
72 }
73
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100074 DRM_DEBUG("\n");
75
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110076 INIT_LIST_HEAD(&hits);
77
78 nhits = nrects = 0;
79
Dave Airlieaf6061a2008-05-07 12:15:39 +100080 spin_lock_irqsave(&dev_priv->swaps_lock, irqflags);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100081
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110082 /* Find buffer swaps scheduled for this vertical blank */
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100083 list_for_each_safe(list, tmp, &dev_priv->vbl_swaps.head) {
84 drm_i915_vbl_swap_t *vbl_swap =
85 list_entry(list, drm_i915_vbl_swap_t, head);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100086
Dave Airlieaf6061a2008-05-07 12:15:39 +100087 if ((counter[vbl_swap->pipe] - vbl_swap->sequence) > (1<<23))
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110088 continue;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100089
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110090 list_del(list);
91 dev_priv->swaps_pending--;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100092
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110093 spin_unlock(&dev_priv->swaps_lock);
94 spin_lock(&dev->drw_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100095
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110096 drw = drm_get_drawable_info(dev, vbl_swap->drw_id);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +100097
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +110098 if (!drw) {
99 spin_unlock(&dev->drw_lock);
100 drm_free(vbl_swap, sizeof(*vbl_swap), DRM_MEM_DRIVER);
101 spin_lock(&dev_priv->swaps_lock);
102 continue;
103 }
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000104
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100105 list_for_each(hit, &hits) {
106 drm_i915_vbl_swap_t *swap_cmp =
107 list_entry(hit, drm_i915_vbl_swap_t, head);
Dave Airliec60ce622007-07-11 15:27:12 +1000108 struct drm_drawable_info *drw_cmp =
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100109 drm_get_drawable_info(dev, swap_cmp->drw_id);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000110
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100111 if (drw_cmp &&
112 drw_cmp->rects[0].y1 > drw->rects[0].y1) {
113 list_add_tail(list, hit);
114 break;
115 }
116 }
117
118 spin_unlock(&dev->drw_lock);
119
120 /* List of hits was empty, or we reached the end of it */
121 if (hit == &hits)
122 list_add_tail(list, hits.prev);
123
124 nhits++;
125
126 spin_lock(&dev_priv->swaps_lock);
127 }
128
Dave Airlieaf6061a2008-05-07 12:15:39 +1000129 if (nhits == 0) {
130 spin_unlock_irqrestore(&dev_priv->swaps_lock, irqflags);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000131 return;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000132 }
133
134 spin_unlock(&dev_priv->swaps_lock);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000135
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100136 i915_kernel_lost_context(dev);
137
Dave Airlieaf6061a2008-05-07 12:15:39 +1000138 if (IS_I965G(dev)) {
139 BEGIN_LP_RING(4);
Jesse Barnesac741ab2008-04-22 16:03:07 +1000140
Dave Airlieaf6061a2008-05-07 12:15:39 +1000141 OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
142 OUT_RING(0);
143 OUT_RING(((sarea_priv->width - 1) & 0xffff) | ((sarea_priv->height - 1) << 16));
144 OUT_RING(0);
145 ADVANCE_LP_RING();
146 } else {
147 BEGIN_LP_RING(6);
148
149 OUT_RING(GFX_OP_DRAWRECT_INFO);
150 OUT_RING(0);
151 OUT_RING(0);
152 OUT_RING(sarea_priv->width | sarea_priv->height << 16);
153 OUT_RING(sarea_priv->width | sarea_priv->height << 16);
154 OUT_RING(0);
155
156 ADVANCE_LP_RING();
157 }
158
159 sarea_priv->ctxOwner = DRM_KERNEL_CONTEXT;
160
161 upper[0] = upper[1] = 0;
162 slice[0] = max(sarea_priv->pipeA_h / nhits, 1);
163 slice[1] = max(sarea_priv->pipeB_h / nhits, 1);
164 lower[0] = sarea_priv->pipeA_y + slice[0];
165 lower[1] = sarea_priv->pipeB_y + slice[0];
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100166
167 spin_lock(&dev->drw_lock);
168
169 /* Emit blits for buffer swaps, partitioning both outputs into as many
170 * slices as there are buffer swaps scheduled in order to avoid tearing
171 * (based on the assumption that a single buffer swap would always
172 * complete before scanout starts).
173 */
174 for (i = 0; i++ < nhits;
175 upper[0] = lower[0], lower[0] += slice[0],
176 upper[1] = lower[1], lower[1] += slice[1]) {
177 if (i == nhits)
178 lower[0] = lower[1] = sarea_priv->height;
179
180 list_for_each(hit, &hits) {
181 drm_i915_vbl_swap_t *swap_hit =
182 list_entry(hit, drm_i915_vbl_swap_t, head);
Dave Airliec60ce622007-07-11 15:27:12 +1000183 struct drm_clip_rect *rect;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000184 int num_rects, pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100185 unsigned short top, bottom;
186
187 drw = drm_get_drawable_info(dev, swap_hit->drw_id);
188
189 if (!drw)
190 continue;
191
192 rect = drw->rects;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000193 pipe = swap_hit->pipe;
194 top = upper[pipe];
195 bottom = lower[pipe];
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100196
197 for (num_rects = drw->num_rects; num_rects--; rect++) {
198 int y1 = max(rect->y1, top);
199 int y2 = min(rect->y2, bottom);
200
201 if (y1 >= y2)
202 continue;
203
204 BEGIN_LP_RING(8);
205
206 OUT_RING(cmd);
Keith Packard7b832b52008-04-21 16:31:10 +1000207 OUT_RING(ropcpp | dst_pitch);
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100208 OUT_RING((y1 << 16) | rect->x1);
209 OUT_RING((y2 << 16) | rect->x2);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000210 OUT_RING(sarea_priv->front_offset);
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100211 OUT_RING((y1 << 16) | rect->x1);
Keith Packard7b832b52008-04-21 16:31:10 +1000212 OUT_RING(src_pitch);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000213 OUT_RING(sarea_priv->back_offset);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000214
215 ADVANCE_LP_RING();
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000216 }
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000217 }
218 }
219
Dave Airlieaf6061a2008-05-07 12:15:39 +1000220 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
=?utf-8?q?Michel_D=C3=A4nzer?=3188a242006-12-11 18:32:27 +1100221
222 list_for_each_safe(hit, tmp, &hits) {
223 drm_i915_vbl_swap_t *swap_hit =
224 list_entry(hit, drm_i915_vbl_swap_t, head);
225
226 list_del(hit);
227
228 drm_free(swap_hit, sizeof(*swap_hit), DRM_MEM_DRIVER);
229 }
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000230}
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
233{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000234 struct drm_device *dev = (struct drm_device *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000236 u16 temp;
Dave Airliee4a7b1d2007-09-28 11:46:28 +1000237 u32 pipea_stats, pipeb_stats;
238
Dave Airlieaf6061a2008-05-07 12:15:39 +1000239 pipea_stats = I915_READ(I915REG_PIPEASTAT);
240 pipeb_stats = I915_READ(I915REG_PIPEBSTAT);
241
242 temp = I915_READ16(I915REG_INT_IDENTITY_R);
243
244 temp &= (USER_INT_FLAG | VSYNC_PIPEA_FLAG | VSYNC_PIPEB_FLAG);
245
246 DRM_DEBUG("%s flag=%08x\n", __FUNCTION__, temp);
247
248 if (temp == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return IRQ_NONE;
250
Dave Airlieaf6061a2008-05-07 12:15:39 +1000251 I915_WRITE16(I915REG_INT_IDENTITY_R, temp);
252 (void) I915_READ16(I915REG_INT_IDENTITY_R);
253 DRM_READMEMORYBARRIER();
Dave Airlie0d6aa602006-01-02 20:14:23 +1100254
Dave Airlieaf6061a2008-05-07 12:15:39 +1000255 dev_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Dave Airlie6e5fca52006-03-20 18:34:29 +1100256
Dave Airlieaf6061a2008-05-07 12:15:39 +1000257 if (temp & USER_INT_FLAG)
Dave Airlie0d6aa602006-01-02 20:14:23 +1100258 DRM_WAKEUP(&dev_priv->irq_queue);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000259
260 if (temp & (VSYNC_PIPEA_FLAG | VSYNC_PIPEB_FLAG)) {
261 int vblank_pipe = dev_priv->vblank_pipe;
262
263 if ((vblank_pipe &
264 (DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B))
265 == (DRM_I915_VBLANK_PIPE_A | DRM_I915_VBLANK_PIPE_B)) {
266 if (temp & VSYNC_PIPEA_FLAG)
267 atomic_inc(&dev->vbl_received);
268 if (temp & VSYNC_PIPEB_FLAG)
269 atomic_inc(&dev->vbl_received2);
270 } else if (((temp & VSYNC_PIPEA_FLAG) &&
271 (vblank_pipe & DRM_I915_VBLANK_PIPE_A)) ||
272 ((temp & VSYNC_PIPEB_FLAG) &&
273 (vblank_pipe & DRM_I915_VBLANK_PIPE_B)))
274 atomic_inc(&dev->vbl_received);
275
276 DRM_WAKEUP(&dev->vbl_queue);
277 drm_vbl_send_signals(dev);
278
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +1000279 if (dev_priv->swaps_pending > 0)
280 drm_locked_tasklet(dev, i915_vblank_tasklet);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000281 I915_WRITE(I915REG_PIPEASTAT,
282 pipea_stats|I915_VBLANK_INTERRUPT_ENABLE|
283 I915_VBLANK_CLEAR);
284 I915_WRITE(I915REG_PIPEBSTAT,
285 pipeb_stats|I915_VBLANK_INTERRUPT_ENABLE|
286 I915_VBLANK_CLEAR);
Dave Airlie0d6aa602006-01-02 20:14:23 +1100287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 return IRQ_HANDLED;
290}
291
Dave Airlieaf6061a2008-05-07 12:15:39 +1000292static int i915_emit_irq(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 drm_i915_private_t *dev_priv = dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 RING_LOCALS;
296
297 i915_kernel_lost_context(dev);
298
Márton Németh3e684ea2008-01-24 15:58:57 +1000299 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Alan Hourihanec29b6692006-08-12 16:29:24 +1000301 dev_priv->sarea_priv->last_enqueue = ++dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Alan Hourihanec29b6692006-08-12 16:29:24 +1000303 if (dev_priv->counter > 0x7FFFFFFFUL)
304 dev_priv->sarea_priv->last_enqueue = dev_priv->counter = 1;
305
306 BEGIN_LP_RING(6);
307 OUT_RING(CMD_STORE_DWORD_IDX);
308 OUT_RING(20);
309 OUT_RING(dev_priv->counter);
310 OUT_RING(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 OUT_RING(0);
312 OUT_RING(GFX_OP_USER_INTERRUPT);
313 ADVANCE_LP_RING();
Dave Airliebc5f4522007-11-05 12:50:58 +1000314
Alan Hourihanec29b6692006-08-12 16:29:24 +1000315 return dev_priv->counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Dave Airlie84b1fd12007-07-11 15:53:27 +1000318static int i915_wait_irq(struct drm_device * dev, int irq_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
321 int ret = 0;
322
Márton Németh3e684ea2008-01-24 15:58:57 +1000323 DRM_DEBUG("irq_nr=%d breadcrumb=%d\n", irq_nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 READ_BREADCRUMB(dev_priv));
325
326 if (READ_BREADCRUMB(dev_priv) >= irq_nr)
327 return 0;
328
329 dev_priv->sarea_priv->perf_boxes |= I915_BOX_WAIT;
330
331 DRM_WAIT_ON(ret, dev_priv->irq_queue, 3 * DRM_HZ,
332 READ_BREADCRUMB(dev_priv) >= irq_nr);
333
Eric Anholt20caafa2007-08-25 19:22:43 +1000334 if (ret == -EBUSY) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000335 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
337 }
338
Dave Airlieaf6061a2008-05-07 12:15:39 +1000339 dev_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return ret;
341}
342
Dave Airlieaf6061a2008-05-07 12:15:39 +1000343static int i915_driver_vblank_do_wait(struct drm_device *dev, unsigned int *sequence,
344 atomic_t *counter)
345{
346 drm_i915_private_t *dev_priv = dev->dev_private;
347 unsigned int cur_vblank;
348 int ret = 0;
349
350 if (!dev_priv) {
351 DRM_ERROR("called with no initialization\n");
352 return -EINVAL;
353 }
354
355 DRM_WAIT_ON(ret, dev->vbl_queue, 3 * DRM_HZ,
356 (((cur_vblank = atomic_read(counter))
357 - *sequence) <= (1<<23)));
358
359 *sequence = cur_vblank;
360
361 return ret;
362}
363
364
365int i915_driver_vblank_wait(struct drm_device *dev, unsigned int *sequence)
366{
367 return i915_driver_vblank_do_wait(dev, sequence, &dev->vbl_received);
368}
369
370int i915_driver_vblank_wait2(struct drm_device *dev, unsigned int *sequence)
371{
372 return i915_driver_vblank_do_wait(dev, sequence, &dev->vbl_received2);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/* Needs the lock as it touches the ring.
376 */
Eric Anholtc153f452007-09-03 12:06:45 +1000377int i915_irq_emit(struct drm_device *dev, void *data,
378 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000381 drm_i915_irq_emit_t *emit = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 int result;
383
Eric Anholt6c340ea2007-08-25 20:23:09 +1000384 LOCK_TEST_WITH_RETURN(dev, file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000387 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000388 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 result = i915_emit_irq(dev);
392
Eric Anholtc153f452007-09-03 12:06:45 +1000393 if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 DRM_ERROR("copy_to_user\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000395 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 return 0;
399}
400
401/* Doesn't need the hardware lock.
402 */
Eric Anholtc153f452007-09-03 12:06:45 +1000403int i915_irq_wait(struct drm_device *dev, void *data,
404 struct drm_file *file_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000407 drm_i915_irq_wait_t *irqwait = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000410 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000411 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413
Eric Anholtc153f452007-09-03 12:06:45 +1000414 return i915_wait_irq(dev, irqwait->irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Dave Airlie84b1fd12007-07-11 15:53:27 +1000417static void i915_enable_interrupt (struct drm_device *dev)
Dave Airlie702880f2006-06-24 17:07:34 +1000418{
419 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000420 u16 flag;
Dave Airlie702880f2006-06-24 17:07:34 +1000421
Dave Airlieaf6061a2008-05-07 12:15:39 +1000422 flag = 0;
423 if (dev_priv->vblank_pipe & DRM_I915_VBLANK_PIPE_A)
424 flag |= VSYNC_PIPEA_FLAG;
425 if (dev_priv->vblank_pipe & DRM_I915_VBLANK_PIPE_B)
426 flag |= VSYNC_PIPEB_FLAG;
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +1000427
Dave Airlieaf6061a2008-05-07 12:15:39 +1000428 I915_WRITE16(I915REG_INT_ENABLE_R, USER_INT_FLAG | flag);
Dave Airlie702880f2006-06-24 17:07:34 +1000429}
430
431/* Set the vblank monitor pipe
432 */
Eric Anholtc153f452007-09-03 12:06:45 +1000433int i915_vblank_pipe_set(struct drm_device *dev, void *data,
434 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +1000435{
Dave Airlie702880f2006-06-24 17:07:34 +1000436 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000437 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +1000438
439 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000440 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000441 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +1000442 }
443
Eric Anholtc153f452007-09-03 12:06:45 +1000444 if (pipe->pipe & ~(DRM_I915_VBLANK_PIPE_A|DRM_I915_VBLANK_PIPE_B)) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000445 DRM_ERROR("called with invalid pipe 0x%x\n", pipe->pipe);
Eric Anholt20caafa2007-08-25 19:22:43 +1000446 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +1000447 }
448
Eric Anholtc153f452007-09-03 12:06:45 +1000449 dev_priv->vblank_pipe = pipe->pipe;
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +1000450
Dave Airlieaf6061a2008-05-07 12:15:39 +1000451 i915_enable_interrupt (dev);
452
=?utf-8?q?Michel_D=C3=A4nzer?=5b516942006-10-25 00:08:23 +1000453 return 0;
Dave Airlie702880f2006-06-24 17:07:34 +1000454}
455
Eric Anholtc153f452007-09-03 12:06:45 +1000456int i915_vblank_pipe_get(struct drm_device *dev, void *data,
457 struct drm_file *file_priv)
Dave Airlie702880f2006-06-24 17:07:34 +1000458{
Dave Airlie702880f2006-06-24 17:07:34 +1000459 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000460 drm_i915_vblank_pipe_t *pipe = data;
Dave Airlie702880f2006-06-24 17:07:34 +1000461 u16 flag;
462
463 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000464 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000465 return -EINVAL;
Dave Airlie702880f2006-06-24 17:07:34 +1000466 }
467
468 flag = I915_READ(I915REG_INT_ENABLE_R);
Eric Anholtc153f452007-09-03 12:06:45 +1000469 pipe->pipe = 0;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000470 if (flag & VSYNC_PIPEA_FLAG)
Eric Anholtc153f452007-09-03 12:06:45 +1000471 pipe->pipe |= DRM_I915_VBLANK_PIPE_A;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000472 if (flag & VSYNC_PIPEB_FLAG)
Eric Anholtc153f452007-09-03 12:06:45 +1000473 pipe->pipe |= DRM_I915_VBLANK_PIPE_B;
474
Dave Airlie702880f2006-06-24 17:07:34 +1000475 return 0;
476}
477
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000478/**
479 * Schedule buffer swap at given vertical blank.
480 */
Eric Anholtc153f452007-09-03 12:06:45 +1000481int i915_vblank_swap(struct drm_device *dev, void *data,
482 struct drm_file *file_priv)
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000483{
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000484 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtc153f452007-09-03 12:06:45 +1000485 drm_i915_vblank_swap_t *swap = data;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000486 drm_i915_vbl_swap_t *vbl_swap;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000487 unsigned int pipe, seqtype, curseq;
=?utf-8?q?Michel_D=C3=A4nzer?=a0b136b2006-10-25 00:12:52 +1000488 unsigned long irqflags;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000489 struct list_head *list;
490
491 if (!dev_priv) {
492 DRM_ERROR("%s called with no initialization\n", __func__);
Eric Anholt20caafa2007-08-25 19:22:43 +1000493 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000494 }
495
Dave Airlieaf6061a2008-05-07 12:15:39 +1000496 if (dev_priv->sarea_priv->rotation) {
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000497 DRM_DEBUG("Rotation not supported\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000498 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000499 }
500
Eric Anholtc153f452007-09-03 12:06:45 +1000501 if (swap->seqtype & ~(_DRM_VBLANK_RELATIVE | _DRM_VBLANK_ABSOLUTE |
Dave Airlieaf6061a2008-05-07 12:15:39 +1000502 _DRM_VBLANK_SECONDARY | _DRM_VBLANK_NEXTONMISS)) {
Eric Anholtc153f452007-09-03 12:06:45 +1000503 DRM_ERROR("Invalid sequence type 0x%x\n", swap->seqtype);
Eric Anholt20caafa2007-08-25 19:22:43 +1000504 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000505 }
506
Dave Airlieaf6061a2008-05-07 12:15:39 +1000507 pipe = (swap->seqtype & _DRM_VBLANK_SECONDARY) ? 1 : 0;
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000508
Eric Anholtc153f452007-09-03 12:06:45 +1000509 seqtype = swap->seqtype & (_DRM_VBLANK_RELATIVE | _DRM_VBLANK_ABSOLUTE);
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000510
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000511 if (!(dev_priv->vblank_pipe & (1 << pipe))) {
512 DRM_ERROR("Invalid pipe %d\n", pipe);
Eric Anholt20caafa2007-08-25 19:22:43 +1000513 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000514 }
515
516 spin_lock_irqsave(&dev->drw_lock, irqflags);
517
Eric Anholtc153f452007-09-03 12:06:45 +1000518 if (!drm_get_drawable_info(dev, swap->drawable)) {
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000519 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
Eric Anholtc153f452007-09-03 12:06:45 +1000520 DRM_DEBUG("Invalid drawable ID %d\n", swap->drawable);
Eric Anholt20caafa2007-08-25 19:22:43 +1000521 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000522 }
523
524 spin_unlock_irqrestore(&dev->drw_lock, irqflags);
525
Dave Airlieaf6061a2008-05-07 12:15:39 +1000526 curseq = atomic_read(pipe ? &dev->vbl_received2 : &dev->vbl_received);
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000527
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +1000528 if (seqtype == _DRM_VBLANK_RELATIVE)
Eric Anholtc153f452007-09-03 12:06:45 +1000529 swap->sequence += curseq;
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +1000530
Eric Anholtc153f452007-09-03 12:06:45 +1000531 if ((curseq - swap->sequence) <= (1<<23)) {
532 if (swap->seqtype & _DRM_VBLANK_NEXTONMISS) {
533 swap->sequence = curseq + 1;
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +1000534 } else {
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000535 DRM_DEBUG("Missed target sequence\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000536 return -EINVAL;
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000537 }
=?utf-8?q?Michel_D=C3=A4nzer?=541f29a2006-10-24 23:38:54 +1000538 }
539
=?utf-8?q?Michel_D=C3=A4nzer?=2228ed62006-10-25 01:05:09 +1000540 spin_lock_irqsave(&dev_priv->swaps_lock, irqflags);
541
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000542 list_for_each(list, &dev_priv->vbl_swaps.head) {
543 vbl_swap = list_entry(list, drm_i915_vbl_swap_t, head);
544
Eric Anholtc153f452007-09-03 12:06:45 +1000545 if (vbl_swap->drw_id == swap->drawable &&
Dave Airlieaf6061a2008-05-07 12:15:39 +1000546 vbl_swap->pipe == pipe &&
Eric Anholtc153f452007-09-03 12:06:45 +1000547 vbl_swap->sequence == swap->sequence) {
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000548 spin_unlock_irqrestore(&dev_priv->swaps_lock, irqflags);
549 DRM_DEBUG("Already scheduled\n");
550 return 0;
551 }
552 }
553
554 spin_unlock_irqrestore(&dev_priv->swaps_lock, irqflags);
555
=?utf-8?q?Michel_D=C3=A4nzer?=21fa60e2006-10-25 00:10:59 +1000556 if (dev_priv->swaps_pending >= 100) {
557 DRM_DEBUG("Too many swaps queued\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000558 return -EBUSY;
=?utf-8?q?Michel_D=C3=A4nzer?=21fa60e2006-10-25 00:10:59 +1000559 }
560
Dave Airlie54583bf2007-10-14 21:21:30 +1000561 vbl_swap = drm_calloc(1, sizeof(*vbl_swap), DRM_MEM_DRIVER);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000562
563 if (!vbl_swap) {
564 DRM_ERROR("Failed to allocate memory to queue swap\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000565 return -ENOMEM;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000566 }
567
568 DRM_DEBUG("\n");
569
Eric Anholtc153f452007-09-03 12:06:45 +1000570 vbl_swap->drw_id = swap->drawable;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000571 vbl_swap->pipe = pipe;
Eric Anholtc153f452007-09-03 12:06:45 +1000572 vbl_swap->sequence = swap->sequence;
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000573
574 spin_lock_irqsave(&dev_priv->swaps_lock, irqflags);
575
Li Zefand5b0d1b2007-12-17 09:47:19 +1000576 list_add_tail(&vbl_swap->head, &dev_priv->vbl_swaps.head);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000577 dev_priv->swaps_pending++;
578
579 spin_unlock_irqrestore(&dev_priv->swaps_lock, irqflags);
580
581 return 0;
582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/* drm_dma.h hooks
585*/
Dave Airlie84b1fd12007-07-11 15:53:27 +1000586void i915_driver_irq_preinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
589
Dave Airlieaf6061a2008-05-07 12:15:39 +1000590 I915_WRITE16(I915REG_HWSTAM, 0xfffe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 I915_WRITE16(I915REG_INT_MASK_R, 0x0);
592 I915_WRITE16(I915REG_INT_ENABLE_R, 0x0);
593}
594
Dave Airlieaf6061a2008-05-07 12:15:39 +1000595void i915_driver_irq_postinstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
598
Thomas Gleixnera6399bd2007-05-26 05:56:14 +1000599 spin_lock_init(&dev_priv->swaps_lock);
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000600 INIT_LIST_HEAD(&dev_priv->vbl_swaps.head);
601 dev_priv->swaps_pending = 0;
602
Dave Airlieaf6061a2008-05-07 12:15:39 +1000603 if (!dev_priv->vblank_pipe)
604 dev_priv->vblank_pipe = DRM_I915_VBLANK_PIPE_A;
Dave Airlie702880f2006-06-24 17:07:34 +1000605 i915_enable_interrupt(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 DRM_INIT_WAITQUEUE(&dev_priv->irq_queue);
607}
608
Dave Airlie84b1fd12007-07-11 15:53:27 +1000609void i915_driver_irq_uninstall(struct drm_device * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Dave Airlieaf6061a2008-05-07 12:15:39 +1000612 u16 temp;
Dave Airlie91e37382006-02-18 15:17:04 +1100613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (!dev_priv)
615 return;
616
Dave Airlieaf6061a2008-05-07 12:15:39 +1000617 I915_WRITE16(I915REG_HWSTAM, 0xffff);
618 I915_WRITE16(I915REG_INT_MASK_R, 0xffff);
619 I915_WRITE16(I915REG_INT_ENABLE_R, 0x0);
Dave Airlie91e37382006-02-18 15:17:04 +1100620
Dave Airlieaf6061a2008-05-07 12:15:39 +1000621 temp = I915_READ16(I915REG_INT_IDENTITY_R);
622 I915_WRITE16(I915REG_INT_IDENTITY_R, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}