1 /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
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.
29 #include "dev/drm/drmP.h"
30 #include "dev/drm/drm.h"
31 #include "dev/drm/i915_drm.h"
32 #include "dev/drm/i915_drv.h"
34 #define MAX_NOPID ((u32)~0)
37 * Interrupts that are always left unmasked.
39 * Since pipe events are edge-triggered from the PIPESTAT register to IIR,
40 * we leave them always unmasked in IMR and then control enabling them through
43 #define I915_INTERRUPT_ENABLE_FIX (I915_DISPLAY_PIPE_A_EVENT_INTERRUPT | \
44 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT)
46 /** Interrupts that we mask and unmask at runtime. */
47 #define I915_INTERRUPT_ENABLE_VAR (I915_USER_INTERRUPT)
49 /** These are all of the interrupts used by the driver */
50 #define I915_INTERRUPT_ENABLE_MASK (I915_INTERRUPT_ENABLE_FIX | \
51 I915_INTERRUPT_ENABLE_VAR)
53 #define DRM_I915_VBLANK_PIPE_ALL (DRM_I915_VBLANK_PIPE_A | \
54 DRM_I915_VBLANK_PIPE_B)
57 i915_enable_irq(drm_i915_private_t
*dev_priv
, u32 mask
)
59 mask
&= I915_INTERRUPT_ENABLE_VAR
;
60 if ((dev_priv
->irq_mask_reg
& mask
) != 0) {
61 dev_priv
->irq_mask_reg
&= ~mask
;
62 I915_WRITE(IMR
, dev_priv
->irq_mask_reg
);
63 (void) I915_READ(IMR
);
68 i915_disable_irq(drm_i915_private_t
*dev_priv
, u32 mask
)
70 mask
&= I915_INTERRUPT_ENABLE_VAR
;
71 if ((dev_priv
->irq_mask_reg
& mask
) != mask
) {
72 dev_priv
->irq_mask_reg
|= mask
;
73 I915_WRITE(IMR
, dev_priv
->irq_mask_reg
);
74 (void) I915_READ(IMR
);
79 i915_pipestat(int pipe
)
89 i915_enable_pipestat(drm_i915_private_t
*dev_priv
, int pipe
, u32 mask
)
91 if ((dev_priv
->pipestat
[pipe
] & mask
) != mask
) {
92 u32 reg
= i915_pipestat(pipe
);
94 dev_priv
->pipestat
[pipe
] |= mask
;
95 /* Enable the interrupt, clear any pending status */
96 I915_WRITE(reg
, dev_priv
->pipestat
[pipe
] | (mask
>> 16));
97 (void) I915_READ(reg
);
102 i915_disable_pipestat(drm_i915_private_t
*dev_priv
, int pipe
, u32 mask
)
104 if ((dev_priv
->pipestat
[pipe
] & mask
) != 0) {
105 u32 reg
= i915_pipestat(pipe
);
107 dev_priv
->pipestat
[pipe
] &= ~mask
;
108 I915_WRITE(reg
, dev_priv
->pipestat
[pipe
]);
109 (void) I915_READ(reg
);
114 * i915_pipe_enabled - check if a pipe is enabled
116 * @pipe: pipe to check
118 * Reading certain registers when the pipe is disabled can hang the chip.
119 * Use this routine to make sure the PLL is running and the pipe is active
120 * before reading such registers if unsure.
123 i915_pipe_enabled(struct drm_device
*dev
, int pipe
)
125 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
126 unsigned long pipeconf
= pipe
? PIPEBCONF
: PIPEACONF
;
128 if (I915_READ(pipeconf
) & PIPEACONF_ENABLE
)
134 /* Called from drm generic code, passed a 'crtc', which
135 * we use as a pipe index
137 u32
i915_get_vblank_counter(struct drm_device
*dev
, int pipe
)
139 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
140 unsigned long high_frame
;
141 unsigned long low_frame
;
142 u32 high1
, high2
, low
, count
;
144 high_frame
= pipe
? PIPEBFRAMEHIGH
: PIPEAFRAMEHIGH
;
145 low_frame
= pipe
? PIPEBFRAMEPIXEL
: PIPEAFRAMEPIXEL
;
147 if (!i915_pipe_enabled(dev
, pipe
)) {
148 DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe
);
153 * High & low register fields aren't synchronized, so make sure
154 * we get a low value that's stable across two reads of the high
158 high1
= ((I915_READ(high_frame
) & PIPE_FRAME_HIGH_MASK
) >>
159 PIPE_FRAME_HIGH_SHIFT
);
160 low
= ((I915_READ(low_frame
) & PIPE_FRAME_LOW_MASK
) >>
161 PIPE_FRAME_LOW_SHIFT
);
162 high2
= ((I915_READ(high_frame
) & PIPE_FRAME_HIGH_MASK
) >>
163 PIPE_FRAME_HIGH_SHIFT
);
164 } while (high1
!= high2
);
166 count
= (high1
<< 8) | low
;
171 u32
g45_get_vblank_counter(struct drm_device
*dev
, int pipe
)
173 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
174 int reg
= pipe
? PIPEB_FRMCOUNT_GM45
: PIPEA_FRMCOUNT_GM45
;
176 if (!i915_pipe_enabled(dev
, pipe
)) {
177 DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe
);
181 return I915_READ(reg
);
184 irqreturn_t
i915_driver_irq_handler(DRM_IRQ_ARGS
)
186 struct drm_device
*dev
= (struct drm_device
*) arg
;
187 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
189 u32 pipea_stats
, pipeb_stats
;
194 iir
= I915_READ(IIR
);
197 vblank_status
= PIPE_START_VBLANK_INTERRUPT_STATUS
;
198 vblank_enable
= PIPE_START_VBLANK_INTERRUPT_ENABLE
;
200 vblank_status
= I915_VBLANK_INTERRUPT_STATUS
;
201 vblank_enable
= I915_VBLANK_INTERRUPT_ENABLE
;
205 irq_received
= iir
!= 0;
207 /* Can't rely on pipestat interrupt bit in iir as it might
208 * have been cleared after the pipestat interrupt was received.
209 * It doesn't set the bit in iir again, but it still produces
210 * interrupts (for non-MSI).
212 DRM_SPINLOCK(&dev_priv
->user_irq_lock
);
213 pipea_stats
= I915_READ(PIPEASTAT
);
214 pipeb_stats
= I915_READ(PIPEBSTAT
);
217 * Clear the PIPE(A|B)STAT regs before the IIR
219 if (pipea_stats
& 0x8000ffff) {
220 I915_WRITE(PIPEASTAT
, pipea_stats
);
224 if (pipeb_stats
& 0x8000ffff) {
225 I915_WRITE(PIPEBSTAT
, pipeb_stats
);
228 DRM_SPINUNLOCK(&dev_priv
->user_irq_lock
);
233 I915_WRITE(IIR
, iir
);
234 new_iir
= I915_READ(IIR
); /* Flush posted writes */
236 if (dev_priv
->sarea_priv
)
237 dev_priv
->sarea_priv
->last_dispatch
=
238 READ_BREADCRUMB(dev_priv
);
240 if (iir
& I915_USER_INTERRUPT
) {
241 DRM_WAKEUP(&dev_priv
->irq_queue
);
244 if (pipea_stats
& vblank_status
)
245 drm_handle_vblank(dev
, 0);
247 if (pipeb_stats
& vblank_status
)
248 drm_handle_vblank(dev
, 1);
250 /* With MSI, interrupts are only generated when iir
251 * transitions from zero to nonzero. If another bit got
252 * set while we were handling the existing iir bits, then
253 * we would never get another interrupt.
255 * This is fine on non-MSI as well, as if we hit this path
256 * we avoid exiting the interrupt handler only to generate
259 * Note that for MSI this could cause a stray interrupt report
260 * if an interrupt landed in the time between writing IIR and
261 * the posting read. This should be rare enough to never
262 * trigger the 99% of 100,000 interrupts test for disabling
269 static int i915_emit_irq(struct drm_device
* dev
)
271 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
274 i915_kernel_lost_context(dev
);
276 if (++dev_priv
->counter
> 0x7FFFFFFFUL
)
277 dev_priv
->counter
= 0;
278 if (dev_priv
->sarea_priv
)
279 dev_priv
->sarea_priv
->last_enqueue
= dev_priv
->counter
;
281 DRM_DEBUG("emitting: %d\n", dev_priv
->counter
);
284 OUT_RING(MI_STORE_DWORD_INDEX
);
285 OUT_RING(I915_BREADCRUMB_INDEX
<< MI_STORE_DWORD_INDEX_SHIFT
);
286 OUT_RING(dev_priv
->counter
);
287 OUT_RING(MI_USER_INTERRUPT
);
290 return dev_priv
->counter
;
293 void i915_user_irq_get(struct drm_device
*dev
)
295 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
297 if (dev
->irq_enabled
== 0)
301 DRM_SPINLOCK(&dev_priv
->user_irq_lock
);
302 if (++dev_priv
->user_irq_refcount
== 1)
303 i915_enable_irq(dev_priv
, I915_USER_INTERRUPT
);
304 DRM_SPINUNLOCK(&dev_priv
->user_irq_lock
);
307 void i915_user_irq_put(struct drm_device
*dev
)
309 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
311 if (dev
->irq_enabled
== 0)
314 DRM_SPINLOCK(&dev_priv
->user_irq_lock
);
315 KASSERT(dev_priv
->user_irq_refcount
> 0, ("invalid refcount"));
316 if (--dev_priv
->user_irq_refcount
== 0)
317 i915_disable_irq(dev_priv
, I915_USER_INTERRUPT
);
318 DRM_SPINUNLOCK(&dev_priv
->user_irq_lock
);
321 static int i915_wait_irq(struct drm_device
* dev
, int irq_nr
)
323 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
326 if (READ_BREADCRUMB(dev_priv
) >= irq_nr
) {
327 if (dev_priv
->sarea_priv
) {
328 dev_priv
->sarea_priv
->last_dispatch
=
329 READ_BREADCRUMB(dev_priv
);
334 if (dev_priv
->sarea_priv
)
335 dev_priv
->sarea_priv
->perf_boxes
|= I915_BOX_WAIT
;
337 DRM_DEBUG("irq_nr=%d breadcrumb=%d\n", irq_nr
,
338 READ_BREADCRUMB(dev_priv
));
340 i915_user_irq_get(dev
);
341 DRM_WAIT_ON(ret
, dev_priv
->irq_queue
, 3 * DRM_HZ
,
342 READ_BREADCRUMB(dev_priv
) >= irq_nr
);
343 i915_user_irq_put(dev
);
345 if (ret
== -ERESTART
)
346 DRM_DEBUG("restarting syscall\n");
349 DRM_ERROR("EBUSY -- rec: %d emitted: %d\n",
350 READ_BREADCRUMB(dev_priv
), (int)dev_priv
->counter
);
356 /* Needs the lock as it touches the ring.
358 int i915_irq_emit(struct drm_device
*dev
, void *data
,
359 struct drm_file
*file_priv
)
361 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
362 drm_i915_irq_emit_t
*emit
= data
;
366 DRM_ERROR("called with no initialization\n");
370 RING_LOCK_TEST_WITH_RETURN(dev
, file_priv
);
372 result
= i915_emit_irq(dev
);
374 if (DRM_COPY_TO_USER(emit
->irq_seq
, &result
, sizeof(int))) {
375 DRM_ERROR("copy_to_user\n");
382 /* Doesn't need the hardware lock.
384 int i915_irq_wait(struct drm_device
*dev
, void *data
,
385 struct drm_file
*file_priv
)
387 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
388 drm_i915_irq_wait_t
*irqwait
= data
;
391 DRM_ERROR("called with no initialization\n");
395 return i915_wait_irq(dev
, irqwait
->irq_seq
);
398 /* Called from drm generic code, passed 'crtc' which
399 * we use as a pipe index
401 int i915_enable_vblank(struct drm_device
*dev
, int pipe
)
403 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
405 if (!i915_pipe_enabled(dev
, pipe
))
408 DRM_SPINLOCK(&dev_priv
->user_irq_lock
);
410 i915_enable_pipestat(dev_priv
, pipe
,
411 PIPE_START_VBLANK_INTERRUPT_ENABLE
);
413 i915_enable_pipestat(dev_priv
, pipe
,
414 PIPE_VBLANK_INTERRUPT_ENABLE
);
415 DRM_SPINUNLOCK(&dev_priv
->user_irq_lock
);
419 /* Called from drm generic code, passed 'crtc' which
420 * we use as a pipe index
422 void i915_disable_vblank(struct drm_device
*dev
, int pipe
)
424 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
426 DRM_SPINLOCK(&dev_priv
->user_irq_lock
);
427 i915_disable_pipestat(dev_priv
, pipe
,
428 PIPE_VBLANK_INTERRUPT_ENABLE
|
429 PIPE_START_VBLANK_INTERRUPT_ENABLE
);
430 DRM_SPINUNLOCK(&dev_priv
->user_irq_lock
);
433 /* Set the vblank monitor pipe
435 int i915_vblank_pipe_set(struct drm_device
*dev
, void *data
,
436 struct drm_file
*file_priv
)
438 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
441 DRM_ERROR("called with no initialization\n");
448 int i915_vblank_pipe_get(struct drm_device
*dev
, void *data
,
449 struct drm_file
*file_priv
)
451 drm_i915_private_t
*dev_priv
= dev
->dev_private
;
452 drm_i915_vblank_pipe_t
*pipe
= data
;
455 DRM_ERROR("called with no initialization\n");
459 pipe
->pipe
= DRM_I915_VBLANK_PIPE_A
| DRM_I915_VBLANK_PIPE_B
;
465 * Schedule buffer swap at given vertical blank.
467 int i915_vblank_swap(struct drm_device
*dev
, void *data
,
468 struct drm_file
*file_priv
)
470 /* The delayed swap mechanism was fundamentally racy, and has been
471 * removed. The model was that the client requested a delayed flip/swap
472 * from the kernel, then waited for vblank before continuing to perform
473 * rendering. The problem was that the kernel might wake the client
474 * up before it dispatched the vblank swap (since the lock has to be
475 * held while touching the ringbuffer), in which case the client would
476 * clear and start the next frame before the swap occurred, and
477 * flicker would occur in addition to likely missing the vblank.
479 * In the absence of this ioctl, userland falls back to a correct path
480 * of waiting for a vblank, then dispatching the swap on its own.
481 * Context switching to userland and back is plenty fast enough for
482 * meeting the requirements of vblank swapping.
489 void i915_driver_irq_preinstall(struct drm_device
* dev
)
491 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
493 I915_WRITE(HWSTAM
, 0xeffe);
494 I915_WRITE(PIPEASTAT
, 0);
495 I915_WRITE(PIPEBSTAT
, 0);
496 I915_WRITE(IMR
, 0xffffffff);
497 I915_WRITE(IER
, 0x0);
498 (void) I915_READ(IER
);
501 int i915_driver_irq_postinstall(struct drm_device
*dev
)
503 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
505 dev_priv
->vblank_pipe
= DRM_I915_VBLANK_PIPE_A
| DRM_I915_VBLANK_PIPE_B
;
507 /* Unmask the interrupts that we always want on. */
508 dev_priv
->irq_mask_reg
= ~I915_INTERRUPT_ENABLE_FIX
;
510 /* Disable pipe interrupt enables, clear pending pipe status */
511 I915_WRITE(PIPEASTAT
, I915_READ(PIPEASTAT
) & 0x8000ffff);
512 I915_WRITE(PIPEBSTAT
, I915_READ(PIPEBSTAT
) & 0x8000ffff);
514 /* Clear pending interrupt status */
515 I915_WRITE(IIR
, I915_READ(IIR
));
517 I915_WRITE(IER
, I915_INTERRUPT_ENABLE_MASK
);
518 I915_WRITE(IMR
, dev_priv
->irq_mask_reg
);
519 I915_WRITE(PIPEASTAT
, dev_priv
->pipestat
[0] |
520 (dev_priv
->pipestat
[0] >> 16));
521 I915_WRITE(PIPEBSTAT
, dev_priv
->pipestat
[1] |
522 (dev_priv
->pipestat
[1] >> 16));
523 (void) I915_READ(IER
);
528 void i915_driver_irq_uninstall(struct drm_device
* dev
)
530 drm_i915_private_t
*dev_priv
= (drm_i915_private_t
*) dev
->dev_private
;
535 dev_priv
->vblank_pipe
= 0;
537 I915_WRITE(HWSTAM
, 0xffffffff);
538 I915_WRITE(PIPEASTAT
, 0);
539 I915_WRITE(PIPEBSTAT
, 0);
540 I915_WRITE(IMR
, 0xffffffff);
541 I915_WRITE(IER
, 0x0);
543 I915_WRITE(PIPEASTAT
, I915_READ(PIPEASTAT
) & 0x8000ffff);
544 I915_WRITE(PIPEBSTAT
, I915_READ(PIPEBSTAT
) & 0x8000ffff);
545 I915_WRITE(IIR
, I915_READ(IIR
));