blob: d60519de887b035272df3ec43bad0123abb5d40b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* radeon_irq.c -- IRQ handling for radeon -*- linux-c -*-
2 *
3 * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * The Weather Channel (TM) funded Tungsten Graphics to develop the
6 * initial release of the Radeon 8500 driver under the XFree86 license.
7 * This notice must be preserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
18 * Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 *
28 * Authors:
29 * Keith Whitwell <keith@tungstengraphics.com>
30 * Michel D�zer <michel@daenzer.net>
31 */
32
33#include "drmP.h"
34#include "drm.h"
35#include "radeon_drm.h"
36#include "radeon_drv.h"
37
Dave Airlieb5e89ed2005-09-25 14:28:13 +100038static __inline__ u32 radeon_acknowledge_irqs(drm_radeon_private_t * dev_priv,
39 u32 mask)
Dave Airlie6921e332005-06-26 21:05:59 +100040{
41 u32 irqs = RADEON_READ(RADEON_GEN_INT_STATUS) & mask;
42 if (irqs)
43 RADEON_WRITE(RADEON_GEN_INT_STATUS, irqs);
44 return irqs;
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* Interrupts - Used for device synchronization and flushing in the
48 * following circumstances:
49 *
50 * - Exclusive FB access with hw idle:
51 * - Wait for GUI Idle (?) interrupt, then do normal flush.
52 *
53 * - Frame throttling, NV_fence:
54 * - Drop marker irq's into command stream ahead of time.
55 * - Wait on irq's with lock *not held*
56 * - Check each for termination condition
57 *
58 * - Internally in cp_getbuffer, etc:
59 * - as above, but wait with lock held???
60 *
61 * NOTE: These functions are misleadingly named -- the irq's aren't
62 * tied to dma at all, this is just a hangover from dri prehistory.
63 */
64
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065irqreturn_t radeon_driver_irq_handler(DRM_IRQ_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 drm_device_t *dev = (drm_device_t *) arg;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100068 drm_radeon_private_t *dev_priv =
69 (drm_radeon_private_t *) dev->dev_private;
70 u32 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72 /* Only consider the bits we're interested in - others could be used
73 * outside the DRM
74 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +100075 stat = radeon_acknowledge_irqs(dev_priv, (RADEON_SW_INT_TEST_ACK |
Dave Airlie6921e332005-06-26 21:05:59 +100076 RADEON_CRTC_VBLANK_STAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (!stat)
78 return IRQ_NONE;
79
80 /* SW interrupt */
81 if (stat & RADEON_SW_INT_TEST) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100082 DRM_WAKEUP(&dev_priv->swi_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
85 /* VBLANK interrupt */
86 if (stat & RADEON_CRTC_VBLANK_STAT) {
87 atomic_inc(&dev->vbl_received);
88 DRM_WAKEUP(&dev->vbl_queue);
Dave Airlieb5e89ed2005-09-25 14:28:13 +100089 drm_vbl_send_signals(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return IRQ_HANDLED;
93}
94
Dave Airlieb5e89ed2005-09-25 14:28:13 +100095static int radeon_emit_irq(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 drm_radeon_private_t *dev_priv = dev->dev_private;
98 unsigned int ret;
99 RING_LOCALS;
100
101 atomic_inc(&dev_priv->swi_emitted);
102 ret = atomic_read(&dev_priv->swi_emitted);
103
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000104 BEGIN_RING(4);
105 OUT_RING_REG(RADEON_LAST_SWI_REG, ret);
106 OUT_RING_REG(RADEON_GEN_INT_STATUS, RADEON_SW_INT_FIRE);
107 ADVANCE_RING();
108 COMMIT_RING();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 return ret;
111}
112
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000113static int radeon_wait_irq(drm_device_t * dev, int swi_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000115 drm_radeon_private_t *dev_priv =
116 (drm_radeon_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int ret = 0;
118
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000119 if (RADEON_READ(RADEON_LAST_SWI_REG) >= swi_nr)
120 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 dev_priv->stats.boxes |= RADEON_BOX_WAIT_IDLE;
123
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000124 DRM_WAIT_ON(ret, dev_priv->swi_queue, 3 * DRM_HZ,
125 RADEON_READ(RADEON_LAST_SWI_REG) >= swi_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 return ret;
128}
129
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000130int radeon_driver_vblank_wait(drm_device_t * dev, unsigned int *sequence)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 drm_radeon_private_t *dev_priv =
133 (drm_radeon_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned int cur_vblank;
135 int ret = 0;
136
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000137 if (!dev_priv) {
138 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return DRM_ERR(EINVAL);
140 }
141
Dave Airlie6921e332005-06-26 21:05:59 +1000142 radeon_acknowledge_irqs(dev_priv, RADEON_CRTC_VBLANK_STAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 dev_priv->stats.boxes |= RADEON_BOX_WAIT_IDLE;
145
146 /* Assume that the user has missed the current sequence number
147 * by about a day rather than she wants to wait for years
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000148 * using vertical blanks...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000150 DRM_WAIT_ON(ret, dev->vbl_queue, 3 * DRM_HZ,
151 (((cur_vblank = atomic_read(&dev->vbl_received))
152 - *sequence) <= (1 << 23)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 *sequence = cur_vblank;
155
156 return ret;
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/* Needs the lock as it touches the ring.
160 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000161int radeon_irq_emit(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 DRM_DEVICE;
164 drm_radeon_private_t *dev_priv = dev->dev_private;
165 drm_radeon_irq_emit_t emit;
166 int result;
167
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000168 LOCK_TEST_WITH_RETURN(dev, filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000170 if (!dev_priv) {
171 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return DRM_ERR(EINVAL);
173 }
174
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000175 DRM_COPY_FROM_USER_IOCTL(emit, (drm_radeon_irq_emit_t __user *) data,
176 sizeof(emit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000178 result = radeon_emit_irq(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000180 if (DRM_COPY_TO_USER(emit.irq_seq, &result, sizeof(int))) {
181 DRM_ERROR("copy_to_user\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return DRM_ERR(EFAULT);
183 }
184
185 return 0;
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* Doesn't need the hardware lock.
189 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000190int radeon_irq_wait(DRM_IOCTL_ARGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 DRM_DEVICE;
193 drm_radeon_private_t *dev_priv = dev->dev_private;
194 drm_radeon_irq_wait_t irqwait;
195
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000196 if (!dev_priv) {
197 DRM_ERROR("%s called with no initialization\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return DRM_ERR(EINVAL);
199 }
200
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000201 DRM_COPY_FROM_USER_IOCTL(irqwait, (drm_radeon_irq_wait_t __user *) data,
202 sizeof(irqwait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000204 return radeon_wait_irq(dev, irqwait.irq_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* drm_dma.h hooks
208*/
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209void radeon_driver_irq_preinstall(drm_device_t * dev)
210{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 drm_radeon_private_t *dev_priv =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000212 (drm_radeon_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000214 /* Disable *all* interrupts */
215 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* Clear bits if they're already high */
Dave Airlie6921e332005-06-26 21:05:59 +1000218 radeon_acknowledge_irqs(dev_priv, (RADEON_SW_INT_TEST_ACK |
219 RADEON_CRTC_VBLANK_STAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000222void radeon_driver_irq_postinstall(drm_device_t * dev)
223{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 drm_radeon_private_t *dev_priv =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000225 (drm_radeon_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000227 atomic_set(&dev_priv->swi_emitted, 0);
228 DRM_INIT_WAITQUEUE(&dev_priv->swi_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /* Turn on SW and VBL ints */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000231 RADEON_WRITE(RADEON_GEN_INT_CNTL,
232 RADEON_CRTC_VBLANK_MASK | RADEON_SW_INT_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000235void radeon_driver_irq_uninstall(drm_device_t * dev)
236{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 drm_radeon_private_t *dev_priv =
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000238 (drm_radeon_private_t *) dev->dev_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (!dev_priv)
240 return;
241
242 /* Disable *all* interrupts */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000243 RADEON_WRITE(RADEON_GEN_INT_CNTL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}