OSDN Git Service

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