Merge commit 'origin/master' into drm-gem
[profile/ivi/libdrm.git] / shared-core / i915_irq.c
1 /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
2  */
3 /*
4  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5  * All Rights Reserved.
6  *
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  *
27  */
28
29 #include "drmP.h"
30 #include "drm.h"
31 #include "i915_drm.h"
32 #include "i915_drv.h"
33
34 #define MAX_NOPID ((u32)~0)
35
36 /**
37  * i915_get_pipe - return the the pipe associated with a given plane
38  * @dev: DRM device
39  * @plane: plane to look for
40  *
41  * The Intel Mesa & 2D drivers call the vblank routines with a plane number
42  * rather than a pipe number, since they may not always be equal.  This routine
43  * maps the given @plane back to a pipe number.
44  */
45 static int
46 i915_get_pipe(struct drm_device *dev, int plane)
47 {
48         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
49         u32 dspcntr;
50
51         dspcntr = plane ? I915_READ(DSPBCNTR) : I915_READ(DSPACNTR);
52
53         return dspcntr & DISPPLANE_SEL_PIPE_MASK ? 1 : 0;
54 }
55
56 /**
57  * i915_get_plane - return the the plane associated with a given pipe
58  * @dev: DRM device
59  * @pipe: pipe to look for
60  *
61  * The Intel Mesa & 2D drivers call the vblank routines with a plane number
62  * rather than a plane number, since they may not always be equal.  This routine
63  * maps the given @pipe back to a plane number.
64  */
65 static int
66 i915_get_plane(struct drm_device *dev, int pipe)
67 {
68         if (i915_get_pipe(dev, 0) == pipe)
69                 return 0;
70         return 1;
71 }
72
73 /**
74  * i915_pipe_enabled - check if a pipe is enabled
75  * @dev: DRM device
76  * @pipe: pipe to check
77  *
78  * Reading certain registers when the pipe is disabled can hang the chip.
79  * Use this routine to make sure the PLL is running and the pipe is active
80  * before reading such registers if unsure.
81  */
82 static int
83 i915_pipe_enabled(struct drm_device *dev, int pipe)
84 {
85         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
86         unsigned long pipeconf = pipe ? PIPEBCONF : PIPEACONF;
87
88         if (I915_READ(pipeconf) & PIPEACONF_ENABLE)
89                 return 1;
90
91         return 0;
92 }
93
94 /**
95  * Emit a synchronous flip.
96  *
97  * This function must be called with the drawable spinlock held.
98  */
99 static void
100 i915_dispatch_vsync_flip(struct drm_device *dev, struct drm_drawable_info *drw,
101                          int plane)
102 {
103         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
104         drm_i915_sarea_t *sarea_priv = dev_priv->sarea_priv;
105         u16 x1, y1, x2, y2;
106         int pf_planes = 1 << plane;
107
108         DRM_SPINLOCK_ASSERT(&dev->drw_lock);
109
110         /* If the window is visible on the other plane, we have to flip on that
111          * plane as well.
112          */
113         if (plane == 1) {
114                 x1 = sarea_priv->planeA_x;
115                 y1 = sarea_priv->planeA_y;
116                 x2 = x1 + sarea_priv->planeA_w;
117                 y2 = y1 + sarea_priv->planeA_h;
118         } else {
119                 x1 = sarea_priv->planeB_x;
120                 y1 = sarea_priv->planeB_y;
121                 x2 = x1 + sarea_priv->planeB_w;
122                 y2 = y1 + sarea_priv->planeB_h;
123         }
124
125         if (x2 > 0 && y2 > 0) {
126                 int i, num_rects = drw->num_rects;
127                 struct drm_clip_rect *rect = drw->rects;
128
129                 for (i = 0; i < num_rects; i++)
130                         if (!(rect[i].x1 >= x2 || rect[i].y1 >= y2 ||
131                               rect[i].x2 <= x1 || rect[i].y2 <= y1)) {
132                                 pf_planes = 0x3;
133
134                                 break;
135                         }
136         }
137
138         i915_dispatch_flip(dev, pf_planes, 1);
139 }
140
141 /**
142  * Emit blits for scheduled buffer swaps.
143  *
144  * This function will be called with the HW lock held.
145  */
146 static void i915_vblank_tasklet(struct drm_device *dev)
147 {
148         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
149         struct list_head *list, *tmp, hits, *hit;
150         int nhits, nrects, slice[2], upper[2], lower[2], i, num_pages;
151         unsigned counter[2];
152         struct drm_drawable_info *drw;
153         drm_i915_sarea_t *sarea_priv = dev_priv->sarea_priv;
154         u32 cpp = dev_priv->cpp,  offsets[3];
155         u32 cmd = (cpp == 4) ? (XY_SRC_COPY_BLT_CMD |
156                                 XY_SRC_COPY_BLT_WRITE_ALPHA |
157                                 XY_SRC_COPY_BLT_WRITE_RGB)
158                              : XY_SRC_COPY_BLT_CMD;
159         u32 src_pitch = sarea_priv->pitch * cpp;
160         u32 dst_pitch = sarea_priv->pitch * cpp;
161         /* COPY rop (0xcc), map cpp to magic color depth constants */
162         u32 ropcpp = (0xcc << 16) | ((cpp - 1) << 24);
163         RING_LOCALS;
164         
165         if (sarea_priv->front_tiled) {
166                 cmd |= XY_SRC_COPY_BLT_DST_TILED;
167                 dst_pitch >>= 2;
168         }
169         if (sarea_priv->back_tiled) {
170                 cmd |= XY_SRC_COPY_BLT_SRC_TILED;
171                 src_pitch >>= 2;
172         }
173         
174         counter[0] = drm_vblank_count(dev, 0);
175         counter[1] = drm_vblank_count(dev, 1);
176
177         DRM_DEBUG("\n");
178
179         INIT_LIST_HEAD(&hits);
180
181         nhits = nrects = 0;
182
183         /* No irqsave/restore necessary.  This tasklet may be run in an
184          * interrupt context or normal context, but we don't have to worry
185          * about getting interrupted by something acquiring the lock, because
186          * we are the interrupt context thing that acquires the lock.
187          */
188         DRM_SPINLOCK(&dev_priv->swaps_lock);
189
190         /* Find buffer swaps scheduled for this vertical blank */
191         list_for_each_safe(list, tmp, &dev_priv->vbl_swaps.head) {
192                 drm_i915_vbl_swap_t *vbl_swap =
193                         list_entry(list, drm_i915_vbl_swap_t, head);
194                 int pipe = i915_get_pipe(dev, vbl_swap->plane);
195
196                 if ((counter[pipe] - vbl_swap->sequence) > (1<<23))
197                         continue;
198
199                 list_del(list);
200                 dev_priv->swaps_pending--;
201                 drm_vblank_put(dev, pipe);
202
203                 DRM_SPINUNLOCK(&dev_priv->swaps_lock);
204                 DRM_SPINLOCK(&dev->drw_lock);
205
206                 drw = drm_get_drawable_info(dev, vbl_swap->drw_id);
207
208                 if (!drw) {
209                         DRM_SPINUNLOCK(&dev->drw_lock);
210                         drm_free(vbl_swap, sizeof(*vbl_swap), DRM_MEM_DRIVER);
211                         DRM_SPINLOCK(&dev_priv->swaps_lock);
212                         continue;
213                 }
214
215                 list_for_each(hit, &hits) {
216                         drm_i915_vbl_swap_t *swap_cmp =
217                                 list_entry(hit, drm_i915_vbl_swap_t, head);
218                         struct drm_drawable_info *drw_cmp =
219                                 drm_get_drawable_info(dev, swap_cmp->drw_id);
220
221                         if (drw_cmp &&
222                             drw_cmp->rects[0].y1 > drw->rects[0].y1) {
223                                 list_add_tail(list, hit);
224                                 break;
225                         }
226                 }
227
228                 DRM_SPINUNLOCK(&dev->drw_lock);
229
230                 /* List of hits was empty, or we reached the end of it */
231                 if (hit == &hits)
232                         list_add_tail(list, hits.prev);
233
234                 nhits++;
235
236                 DRM_SPINLOCK(&dev_priv->swaps_lock);
237         }
238
239         DRM_SPINUNLOCK(&dev_priv->swaps_lock);
240
241         if (nhits == 0) {
242                 return;
243         }
244
245         i915_kernel_lost_context(dev);
246
247         upper[0] = upper[1] = 0;
248         slice[0] = max(sarea_priv->planeA_h / nhits, 1);
249         slice[1] = max(sarea_priv->planeB_h / nhits, 1);
250         lower[0] = sarea_priv->planeA_y + slice[0];
251         lower[1] = sarea_priv->planeB_y + slice[0];
252
253         offsets[0] = sarea_priv->front_offset;
254         offsets[1] = sarea_priv->back_offset;
255         offsets[2] = sarea_priv->third_offset;
256         num_pages = sarea_priv->third_handle ? 3 : 2;
257
258         DRM_SPINLOCK(&dev->drw_lock);
259
260         /* Emit blits for buffer swaps, partitioning both outputs into as many
261          * slices as there are buffer swaps scheduled in order to avoid tearing
262          * (based on the assumption that a single buffer swap would always
263          * complete before scanout starts).
264          */
265         for (i = 0; i++ < nhits;
266              upper[0] = lower[0], lower[0] += slice[0],
267              upper[1] = lower[1], lower[1] += slice[1]) {
268                 int init_drawrect = 1;
269
270                 if (i == nhits)
271                         lower[0] = lower[1] = sarea_priv->height;
272
273                 list_for_each(hit, &hits) {
274                         drm_i915_vbl_swap_t *swap_hit =
275                                 list_entry(hit, drm_i915_vbl_swap_t, head);
276                         struct drm_clip_rect *rect;
277                         int num_rects, plane, front, back;
278                         unsigned short top, bottom;
279
280                         drw = drm_get_drawable_info(dev, swap_hit->drw_id);
281
282                         if (!drw)
283                                 continue;
284
285                         plane = swap_hit->plane;
286
287                         if (swap_hit->flip) {
288                                 i915_dispatch_vsync_flip(dev, drw, plane);
289                                 continue;
290                         }
291
292                         if (init_drawrect) {
293                                 int width  = sarea_priv->width;
294                                 int height = sarea_priv->height;
295                                 if (IS_I965G(dev)) {
296                                         BEGIN_LP_RING(4);
297
298                                         OUT_RING(GFX_OP_DRAWRECT_INFO_I965);
299                                         OUT_RING(0);
300                                         OUT_RING(((width - 1) & 0xffff) | ((height - 1) << 16));
301                                         OUT_RING(0);
302                                         
303                                         ADVANCE_LP_RING();
304                                 } else {
305                                         BEGIN_LP_RING(6);
306         
307                                         OUT_RING(GFX_OP_DRAWRECT_INFO);
308                                         OUT_RING(0);
309                                         OUT_RING(0);
310                                         OUT_RING(((width - 1) & 0xffff) | ((height - 1) << 16));
311                                         OUT_RING(0);
312                                         OUT_RING(0);
313                                         
314                                         ADVANCE_LP_RING();
315                                 }
316
317                                 sarea_priv->ctxOwner = DRM_KERNEL_CONTEXT;
318
319                                 init_drawrect = 0;
320                         }
321
322                         rect = drw->rects;
323                         top = upper[plane];
324                         bottom = lower[plane];
325
326                         front = (dev_priv->sarea_priv->pf_current_page >>
327                                  (2 * plane)) & 0x3;
328                         back = (front + 1) % num_pages;
329
330                         for (num_rects = drw->num_rects; num_rects--; rect++) {
331                                 int y1 = max(rect->y1, top);
332                                 int y2 = min(rect->y2, bottom);
333
334                                 if (y1 >= y2)
335                                         continue;
336
337                                 BEGIN_LP_RING(8);
338
339                                 OUT_RING(cmd);
340                                 OUT_RING(ropcpp | dst_pitch);
341                                 OUT_RING((y1 << 16) | rect->x1);
342                                 OUT_RING((y2 << 16) | rect->x2);
343                                 OUT_RING(offsets[front]);
344                                 OUT_RING((y1 << 16) | rect->x1);
345                                 OUT_RING(src_pitch);
346                                 OUT_RING(offsets[back]);
347
348                                 ADVANCE_LP_RING();
349                         }
350                 }
351         }
352
353         DRM_SPINUNLOCK(&dev->drw_lock);
354
355         list_for_each_safe(hit, tmp, &hits) {
356                 drm_i915_vbl_swap_t *swap_hit =
357                         list_entry(hit, drm_i915_vbl_swap_t, head);
358
359                 list_del(hit);
360
361                 drm_free(swap_hit, sizeof(*swap_hit), DRM_MEM_DRIVER);
362         }
363 }
364 #if 0
365 static int i915_in_vblank(struct drm_device *dev, int pipe)
366 {
367         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
368         unsigned long pipedsl, vblank, vtotal;
369         unsigned long vbl_start, vbl_end, cur_line;
370
371         pipedsl = pipe ? PIPEBDSL : PIPEADSL;
372         vblank = pipe ? VBLANK_B : VBLANK_A;
373         vtotal = pipe ? VTOTAL_B : VTOTAL_A;
374
375         vbl_start = I915_READ(vblank) & VBLANK_START_MASK;
376         vbl_end = (I915_READ(vblank) >> VBLANK_END_SHIFT) & VBLANK_END_MASK;
377
378         cur_line = I915_READ(pipedsl);
379
380         if (cur_line >= vbl_start)
381                 return 1;
382
383         return 0;
384 }
385 #endif
386 u32 i915_get_vblank_counter(struct drm_device *dev, int plane)
387 {
388         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
389         unsigned long high_frame;
390         unsigned long low_frame;
391         u32 high1, high2, low, count;
392         int pipe;
393
394         pipe = i915_get_pipe(dev, plane);
395         high_frame = pipe ? PIPEBFRAMEHIGH : PIPEAFRAMEHIGH;
396         low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL;
397
398         if (!i915_pipe_enabled(dev, pipe)) {
399             DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe);
400             return 0;
401         }
402
403         /*
404          * High & low register fields aren't synchronized, so make sure
405          * we get a low value that's stable across two reads of the high
406          * register.
407          */
408         do {
409                 high1 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
410                          PIPE_FRAME_HIGH_SHIFT);
411                 low =  ((I915_READ(low_frame) & PIPE_FRAME_LOW_MASK) >>
412                         PIPE_FRAME_LOW_SHIFT);
413                 high2 = ((I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK) >>
414                          PIPE_FRAME_HIGH_SHIFT);
415         } while (high1 != high2);
416
417         count = (high1 << 8) | low;
418
419         /*
420          * If we're in the middle of the vblank period, the
421          * above regs won't have been updated yet, so return
422          * an incremented count to stay accurate
423          */
424 #if 0
425         if (i915_in_vblank(dev, pipe))
426                 count++;
427 #endif
428         /* count may be reset by other driver(e.g. 2D driver), 
429            we have no way to know if it is wrapped or resetted 
430            when count is zero. do a rough guess.
431         */
432         if (count == 0 && dev->last_vblank[pipe] < dev->max_vblank_count/2)
433                 dev->last_vblank[pipe] = 0; 
434         
435         return count;
436 }
437
438 /**
439  * Handler for user interrupts in process context (able to sleep, do VFS
440  * operations, etc.
441  *
442  * If another IRQ comes in while we're in this handler, it will still get put
443  * on the queue again to be rerun when we finish.
444  */
445 void
446 i915_user_interrupt_handler(struct work_struct *work)
447 {
448         drm_i915_private_t *dev_priv;
449         struct drm_device *dev;
450
451         dev_priv = container_of(work, drm_i915_private_t,
452                                 user_interrupt_task);
453         dev = dev_priv->dev;
454
455         mutex_lock(&dev->struct_mutex);
456         i915_gem_retire_requests(dev);
457         mutex_unlock(&dev->struct_mutex);
458 }
459
460 irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
461 {
462         struct drm_device *dev = (struct drm_device *) arg;
463         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
464         u32 iir;
465         u32 pipea_stats, pipeb_stats;
466         int vblank = 0;
467
468         iir = I915_READ(I915REG_INT_IDENTITY_R);
469 #if 0
470         DRM_DEBUG("flag=%08x\n", iir);
471 #endif
472         if (iir == 0) {
473                 DRM_DEBUG ("iir 0x%08x im 0x%08x ie 0x%08x pipea 0x%08x pipeb 0x%08x\n",
474                            iir,
475                            I915_READ(I915REG_INT_MASK_R),
476                            I915_READ(I915REG_INT_ENABLE_R),
477                            I915_READ(I915REG_PIPEASTAT),
478                            I915_READ(I915REG_PIPEBSTAT));
479                 return IRQ_NONE;
480         }
481
482         /*
483          * Clear the PIPE(A|B)STAT regs before the IIR otherwise
484          * we may get extra interrupts.
485          */
486         if (iir & I915_DISPLAY_PIPE_A_EVENT_INTERRUPT) {
487                 pipea_stats = I915_READ(I915REG_PIPEASTAT);
488                 if (pipea_stats & (I915_START_VBLANK_INTERRUPT_STATUS|
489                                    I915_VBLANK_INTERRUPT_STATUS))
490                 {
491                         vblank++;
492                         drm_handle_vblank(dev, i915_get_plane(dev, 0));
493                 }
494                 I915_WRITE(I915REG_PIPEASTAT, pipea_stats);
495         }
496         if (iir & I915_DISPLAY_PIPE_B_EVENT_INTERRUPT) {
497                 pipeb_stats = I915_READ(I915REG_PIPEBSTAT);
498                 if (pipeb_stats & (I915_START_VBLANK_INTERRUPT_STATUS|
499                                    I915_VBLANK_INTERRUPT_STATUS))
500                 {
501                         vblank++;
502                         drm_handle_vblank(dev, i915_get_plane(dev, 1));
503                 }
504                 I915_WRITE(I915REG_PIPEBSTAT, pipeb_stats);
505         }
506
507         if (dev_priv->sarea_priv)
508             dev_priv->sarea_priv->last_dispatch = READ_BREADCRUMB(dev_priv);
509
510         I915_WRITE(I915REG_INT_IDENTITY_R, iir | I915_USER_INTERRUPT);
511         (void) I915_READ(I915REG_INT_IDENTITY_R); /* Flush posted write */
512
513         if (iir & I915_USER_INTERRUPT) {
514                 DRM_WAKEUP(&dev_priv->irq_queue);
515 #ifdef I915_HAVE_FENCE
516                 i915_fence_handler(dev);
517                 schedule_work(&dev_priv->user_interrupt_task);
518 #endif
519         }
520
521         if (vblank) {
522                 if (dev_priv->swaps_pending > 0)
523                         drm_locked_tasklet(dev, i915_vblank_tasklet);
524         }
525
526         return IRQ_HANDLED;
527 }
528
529 int i915_emit_irq(struct drm_device *dev)
530 {
531         drm_i915_private_t *dev_priv = dev->dev_private;
532         RING_LOCALS;
533
534         i915_kernel_lost_context(dev);
535
536         DRM_DEBUG("\n");
537
538         i915_emit_breadcrumb(dev);
539
540         BEGIN_LP_RING(2);
541         OUT_RING(0);
542         OUT_RING(GFX_OP_USER_INTERRUPT);
543         ADVANCE_LP_RING();
544
545         return dev_priv->counter;
546 }
547
548 void i915_user_irq_on(drm_i915_private_t *dev_priv)
549 {
550         DRM_SPINLOCK(&dev_priv->user_irq_lock);
551         if (dev_priv->irq_enabled && (++dev_priv->user_irq_refcount == 1)){
552                 dev_priv->irq_mask_reg &= ~I915_USER_INTERRUPT;
553                 I915_WRITE(I915REG_INT_MASK_R, dev_priv->irq_mask_reg);
554                 (void) I915_READ (I915REG_INT_ENABLE_R);
555         }
556         DRM_SPINUNLOCK(&dev_priv->user_irq_lock);
557
558 }
559
560 void i915_user_irq_off(drm_i915_private_t *dev_priv)
561 {
562         DRM_SPINLOCK(&dev_priv->user_irq_lock);
563         BUG_ON(dev_priv->user_irq_refcount <= 0);
564         if (dev_priv->irq_enabled && (--dev_priv->user_irq_refcount == 0)) {
565                 dev_priv->irq_mask_reg |= I915_USER_INTERRUPT;
566                 I915_WRITE(I915REG_INT_MASK_R, dev_priv->irq_mask_reg);
567                 (void) I915_READ(I915REG_INT_MASK_R);
568         }
569         DRM_SPINUNLOCK(&dev_priv->user_irq_lock);
570 }
571
572
573 int i915_wait_irq(struct drm_device * dev, int irq_nr)
574 {
575         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
576         int ret = 0;
577
578         DRM_DEBUG("irq_nr=%d breadcrumb=%d\n", irq_nr,
579                   READ_BREADCRUMB(dev_priv));
580
581         if (READ_BREADCRUMB(dev_priv) >= irq_nr)
582                 return 0;
583
584         i915_user_irq_on(dev_priv);
585         DRM_WAIT_ON(ret, dev_priv->irq_queue, 3 * DRM_HZ,
586                     READ_BREADCRUMB(dev_priv) >= irq_nr);
587         i915_user_irq_off(dev_priv);
588
589         if (ret == -EBUSY) {
590                 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
591                           READ_BREADCRUMB(dev_priv), (int)dev_priv->counter);
592         }
593
594         if (dev_priv->sarea_priv)
595                 dev_priv->sarea_priv->last_dispatch =
596                         READ_BREADCRUMB(dev_priv);
597         return ret;
598 }
599
600 /* Needs the lock as it touches the ring.
601  */
602 int i915_irq_emit(struct drm_device *dev, void *data,
603                          struct drm_file *file_priv)
604 {
605         drm_i915_private_t *dev_priv = dev->dev_private;
606         drm_i915_irq_emit_t *emit = data;
607         int result;
608
609         LOCK_TEST_WITH_RETURN(dev, file_priv);
610
611         if (!dev_priv) {
612                 DRM_ERROR("called with no initialization\n");
613                 return -EINVAL;
614         }
615
616         result = i915_emit_irq(dev);
617
618         if (DRM_COPY_TO_USER(emit->irq_seq, &result, sizeof(int))) {
619                 DRM_ERROR("copy_to_user\n");
620                 return -EFAULT;
621         }
622
623         return 0;
624 }
625
626 /* Doesn't need the hardware lock.
627  */
628 int i915_irq_wait(struct drm_device *dev, void *data,
629                   struct drm_file *file_priv)
630 {
631         drm_i915_private_t *dev_priv = dev->dev_private;
632         drm_i915_irq_wait_t *irqwait = data;
633
634         if (!dev_priv) {
635                 DRM_ERROR("called with no initialization\n");
636                 return -EINVAL;
637         }
638
639         return i915_wait_irq(dev, irqwait->irq_seq);
640 }
641
642 int i915_enable_vblank(struct drm_device *dev, int plane)
643 {
644         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
645         int pipe = i915_get_pipe(dev, plane);
646         u32     pipestat_reg = 0;
647         u32     mask_reg = 0;
648         u32     pipestat;
649
650         switch (pipe) {
651         case 0:
652                 pipestat_reg = I915REG_PIPEASTAT;
653                 mask_reg |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
654                 break;
655         case 1:
656                 pipestat_reg = I915REG_PIPEBSTAT;
657                 mask_reg |= I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
658                 break;
659         default:
660                 DRM_ERROR("tried to enable vblank on non-existent pipe %d\n",
661                           pipe);
662                 break;
663         }
664
665         if (pipestat_reg)
666         {
667                 pipestat = I915_READ (pipestat_reg);
668                 /*
669                  * Older chips didn't have the start vblank interrupt,
670                  * but 
671                  */
672                 if (IS_I965G (dev))
673                         pipestat |= I915_START_VBLANK_INTERRUPT_ENABLE;
674                 else
675                         pipestat |= I915_VBLANK_INTERRUPT_ENABLE;
676                 /*
677                  * Clear any pending status
678                  */
679                 pipestat |= (I915_START_VBLANK_INTERRUPT_STATUS |
680                              I915_VBLANK_INTERRUPT_STATUS);
681                 I915_WRITE(pipestat_reg, pipestat);
682         }
683         DRM_SPINLOCK(&dev_priv->user_irq_lock);
684         dev_priv->irq_mask_reg &= ~mask_reg;
685         I915_WRITE(I915REG_INT_MASK_R, dev_priv->irq_mask_reg);
686         I915_READ(I915REG_INT_MASK_R);
687         DRM_SPINUNLOCK(&dev_priv->user_irq_lock);
688
689         return 0;
690 }
691
692 void i915_disable_vblank(struct drm_device *dev, int plane)
693 {
694         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
695         int pipe = i915_get_pipe(dev, plane);
696         u32     pipestat_reg = 0;
697         u32     mask_reg = 0;
698         u32     pipestat;
699
700         switch (pipe) {
701         case 0:
702                 pipestat_reg = I915REG_PIPEASTAT;
703                 mask_reg |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
704                 break;
705         case 1:
706                 pipestat_reg = I915REG_PIPEBSTAT;
707                 mask_reg |= I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
708                 break;
709         default:
710                 DRM_ERROR("tried to disable vblank on non-existent pipe %d\n",
711                           pipe);
712                 break;
713         }
714
715         DRM_SPINLOCK(&dev_priv->user_irq_lock);
716         dev_priv->irq_mask_reg |= mask_reg;
717         I915_WRITE(I915REG_INT_MASK_R, dev_priv->irq_mask_reg);
718         (void) I915_READ (I915REG_INT_MASK_R);
719         DRM_SPINUNLOCK(&dev_priv->user_irq_lock);
720         if (pipestat_reg)
721         {
722                 pipestat = I915_READ (pipestat_reg);
723                 pipestat &= ~(I915_START_VBLANK_INTERRUPT_ENABLE |
724                               I915_VBLANK_INTERRUPT_ENABLE);
725                 /*
726                  * Clear any pending status
727                  */
728                 pipestat |= (I915_START_VBLANK_INTERRUPT_STATUS |
729                              I915_VBLANK_INTERRUPT_STATUS);
730                 I915_WRITE(pipestat_reg, pipestat);
731                 (void) I915_READ(pipestat_reg);
732         }
733 }
734
735 static void i915_enable_interrupt (struct drm_device *dev)
736 {
737         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
738         
739         dev_priv->irq_mask_reg = (I915_USER_INTERRUPT |
740                                   I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
741                                   I915_DISPLAY_PIPE_B_EVENT_INTERRUPT);
742         I915_WRITE(I915REG_INT_MASK_R, dev_priv->irq_mask_reg);
743         I915_WRITE(I915REG_INT_ENABLE_R, dev_priv->irq_mask_reg);
744         (void) I915_READ (I915REG_INT_ENABLE_R);
745         dev_priv->irq_enabled = 1;
746 }
747
748 static void i915_disable_interrupt (struct drm_device *dev)
749 {
750         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
751         
752         I915_WRITE(I915REG_HWSTAM, 0xffffffff);
753         I915_WRITE(I915REG_INT_MASK_R, 0xffffffff);
754         I915_WRITE(I915REG_INT_ENABLE_R, 0);
755         I915_WRITE(I915REG_INT_IDENTITY_R, 0xffffffff);
756         (void) I915_READ (I915REG_INT_IDENTITY_R);
757         dev_priv->irq_enabled = 0;
758 }
759
760 /* Set the vblank monitor pipe
761  */
762 int i915_vblank_pipe_set(struct drm_device *dev, void *data,
763                          struct drm_file *file_priv)
764 {
765         drm_i915_private_t *dev_priv = dev->dev_private;
766         drm_i915_vblank_pipe_t *pipe = data;
767
768         if (!dev_priv) {
769                 DRM_ERROR("called with no initialization\n");
770                 return -EINVAL;
771         }
772
773         if (pipe->pipe & ~(DRM_I915_VBLANK_PIPE_A|DRM_I915_VBLANK_PIPE_B)) {
774                 DRM_ERROR("called with invalid pipe 0x%x\n", pipe->pipe);
775                 return -EINVAL;
776         }
777
778         dev_priv->vblank_pipe = pipe->pipe;
779
780         return 0;
781 }
782
783 int i915_vblank_pipe_get(struct drm_device *dev, void *data,
784                          struct drm_file *file_priv)
785 {
786         drm_i915_private_t *dev_priv = dev->dev_private;
787         drm_i915_vblank_pipe_t *pipe = data;
788         u16 flag;
789
790         if (!dev_priv) {
791                 DRM_ERROR("called with no initialization\n");
792                 return -EINVAL;
793         }
794
795         flag = I915_READ(I915REG_INT_ENABLE_R);
796         pipe->pipe = 0;
797         if (flag & I915_DISPLAY_PIPE_A_EVENT_INTERRUPT)
798                 pipe->pipe |= DRM_I915_VBLANK_PIPE_A;
799         if (flag & I915_DISPLAY_PIPE_B_EVENT_INTERRUPT)
800                 pipe->pipe |= DRM_I915_VBLANK_PIPE_B;
801
802         return 0;
803 }
804
805 /**
806  * Schedule buffer swap at given vertical blank.
807  */
808 int i915_vblank_swap(struct drm_device *dev, void *data,
809                      struct drm_file *file_priv)
810 {
811         drm_i915_private_t *dev_priv = dev->dev_private;
812         drm_i915_vblank_swap_t *swap = data;
813         drm_i915_vbl_swap_t *vbl_swap;
814         unsigned int pipe, seqtype, curseq, plane;
815         unsigned long irqflags;
816         struct list_head *list;
817         int ret;
818
819         if (!dev_priv) {
820                 DRM_ERROR("%s called with no initialization\n", __func__);
821                 return -EINVAL;
822         }
823
824         if (!dev_priv->sarea_priv || dev_priv->sarea_priv->rotation) {
825                 DRM_DEBUG("Rotation not supported\n");
826                 return -EINVAL;
827         }
828
829         if (swap->seqtype & ~(_DRM_VBLANK_RELATIVE | _DRM_VBLANK_ABSOLUTE |
830                              _DRM_VBLANK_SECONDARY | _DRM_VBLANK_NEXTONMISS |
831                              _DRM_VBLANK_FLIP)) {
832                 DRM_ERROR("Invalid sequence type 0x%x\n", swap->seqtype);
833                 return -EINVAL;
834         }
835
836         plane = (swap->seqtype & _DRM_VBLANK_SECONDARY) ? 1 : 0;
837         pipe = i915_get_pipe(dev, plane);
838
839         seqtype = swap->seqtype & (_DRM_VBLANK_RELATIVE | _DRM_VBLANK_ABSOLUTE);
840
841         if (!(dev_priv->vblank_pipe & (1 << pipe))) {
842                 DRM_ERROR("Invalid pipe %d\n", pipe);
843                 return -EINVAL;
844         }
845
846         DRM_SPINLOCK_IRQSAVE(&dev->drw_lock, irqflags);
847
848         /* It makes no sense to schedule a swap for a drawable that doesn't have
849          * valid information at this point. E.g. this could mean that the X
850          * server is too old to push drawable information to the DRM, in which
851          * case all such swaps would become ineffective.
852          */
853         if (!drm_get_drawable_info(dev, swap->drawable)) {
854                 DRM_SPINUNLOCK_IRQRESTORE(&dev->drw_lock, irqflags);
855                 DRM_DEBUG("Invalid drawable ID %d\n", swap->drawable);
856                 return -EINVAL;
857         }
858
859         DRM_SPINUNLOCK_IRQRESTORE(&dev->drw_lock, irqflags);
860
861         drm_update_vblank_count(dev, pipe);
862         curseq = drm_vblank_count(dev, pipe);
863
864         if (seqtype == _DRM_VBLANK_RELATIVE)
865                 swap->sequence += curseq;
866
867         if ((curseq - swap->sequence) <= (1<<23)) {
868                 if (swap->seqtype & _DRM_VBLANK_NEXTONMISS) {
869                         swap->sequence = curseq + 1;
870                 } else {
871                         DRM_DEBUG("Missed target sequence\n");
872                         return -EINVAL;
873                 }
874         }
875
876         if (swap->seqtype & _DRM_VBLANK_FLIP) {
877                 swap->sequence--;
878
879                 if ((curseq - swap->sequence) <= (1<<23)) {
880                         struct drm_drawable_info *drw;
881
882                         LOCK_TEST_WITH_RETURN(dev, file_priv);
883
884                         DRM_SPINLOCK_IRQSAVE(&dev->drw_lock, irqflags);
885
886                         drw = drm_get_drawable_info(dev, swap->drawable);
887
888                         if (!drw) {
889                                 DRM_SPINUNLOCK_IRQRESTORE(&dev->drw_lock,
890                                     irqflags);
891                                 DRM_DEBUG("Invalid drawable ID %d\n",
892                                           swap->drawable);
893                                 return -EINVAL;
894                         }
895
896                         i915_dispatch_vsync_flip(dev, drw, plane);
897
898                         DRM_SPINUNLOCK_IRQRESTORE(&dev->drw_lock, irqflags);
899
900                         return 0;
901                 }
902         }
903
904         DRM_SPINLOCK_IRQSAVE(&dev_priv->swaps_lock, irqflags);
905
906         list_for_each(list, &dev_priv->vbl_swaps.head) {
907                 vbl_swap = list_entry(list, drm_i915_vbl_swap_t, head);
908
909                 if (vbl_swap->drw_id == swap->drawable &&
910                     vbl_swap->plane == plane &&
911                     vbl_swap->sequence == swap->sequence) {
912                         vbl_swap->flip = (swap->seqtype & _DRM_VBLANK_FLIP);
913                         DRM_SPINUNLOCK_IRQRESTORE(&dev_priv->swaps_lock, irqflags);
914                         DRM_DEBUG("Already scheduled\n");
915                         return 0;
916                 }
917         }
918
919         DRM_SPINUNLOCK_IRQRESTORE(&dev_priv->swaps_lock, irqflags);
920
921         if (dev_priv->swaps_pending >= 100) {
922                 DRM_DEBUG("Too many swaps queued\n");
923                 return -EBUSY;
924         }
925
926         vbl_swap = drm_calloc(1, sizeof(*vbl_swap), DRM_MEM_DRIVER);
927
928         if (!vbl_swap) {
929                 DRM_ERROR("Failed to allocate memory to queue swap\n");
930                 return -ENOMEM;
931         }
932
933         DRM_DEBUG("\n");
934
935         ret = drm_vblank_get(dev, pipe);
936         if (ret) {
937                 drm_free(vbl_swap, sizeof(*vbl_swap), DRM_MEM_DRIVER);
938                 return ret;
939         }
940
941         vbl_swap->drw_id = swap->drawable;
942         vbl_swap->plane = plane;
943         vbl_swap->sequence = swap->sequence;
944         vbl_swap->flip = (swap->seqtype & _DRM_VBLANK_FLIP);
945
946         if (vbl_swap->flip)
947                 swap->sequence++;
948
949         DRM_SPINLOCK_IRQSAVE(&dev_priv->swaps_lock, irqflags);
950
951         list_add_tail(&vbl_swap->head, &dev_priv->vbl_swaps.head);
952         dev_priv->swaps_pending++;
953
954         DRM_SPINUNLOCK_IRQRESTORE(&dev_priv->swaps_lock, irqflags);
955
956         return 0;
957 }
958
959 /* drm_dma.h hooks
960 */
961 void i915_driver_irq_preinstall(struct drm_device * dev)
962 {
963         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
964
965         I915_WRITE(I915REG_HWSTAM, 0xffff);
966         I915_WRITE(I915REG_INT_ENABLE_R, 0x0);
967         I915_WRITE(I915REG_INT_MASK_R, 0xffffffff);
968         I915_WRITE(I915REG_INT_IDENTITY_R, 0xffffffff);
969         (void) I915_READ(I915REG_INT_IDENTITY_R);
970 }
971
972 int i915_driver_irq_postinstall(struct drm_device * dev)
973 {
974         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
975         int ret, num_pipes = 2;
976
977         DRM_SPININIT(&dev_priv->swaps_lock, "swap");
978         INIT_LIST_HEAD(&dev_priv->vbl_swaps.head);
979         dev_priv->swaps_pending = 0;
980
981         DRM_SPININIT(&dev_priv->user_irq_lock, "userirq");
982         dev_priv->user_irq_refcount = 0;
983         dev_priv->irq_mask_reg = 0;
984
985         ret = drm_vblank_init(dev, num_pipes);
986         if (ret)
987                 return ret;
988
989         dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
990
991         i915_enable_interrupt(dev);
992         DRM_INIT_WAITQUEUE(&dev_priv->irq_queue);
993
994         /*
995          * Initialize the hardware status page IRQ location.
996          */
997
998         I915_WRITE(I915REG_INSTPM, (1 << 5) | (1 << 21));
999         return 0;
1000 }
1001
1002 void i915_driver_irq_uninstall(struct drm_device * dev)
1003 {
1004         drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1005         u32 temp;
1006
1007         if (!dev_priv)
1008                 return;
1009
1010         i915_disable_interrupt (dev);
1011
1012         temp = I915_READ(I915REG_PIPEASTAT);
1013         I915_WRITE(I915REG_PIPEASTAT, temp);
1014         temp = I915_READ(I915REG_PIPEBSTAT);
1015         I915_WRITE(I915REG_PIPEBSTAT, temp);
1016 }