]> err.no Git - linux-2.6/blob - drivers/char/drm/drm_irq.c
drm: Make locked tasklet handling more robust.
[linux-2.6] / drivers / char / drm / drm_irq.c
1 /**
2  * \file drm_irq.c
3  * IRQ support
4  *
5  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6  * \author Gareth Hughes <gareth@valinux.com>
7  */
8
9 /*
10  * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
11  *
12  * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14  * All Rights Reserved.
15  *
16  * Permission is hereby granted, free of charge, to any person obtaining a
17  * copy of this software and associated documentation files (the "Software"),
18  * to deal in the Software without restriction, including without limitation
19  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20  * and/or sell copies of the Software, and to permit persons to whom the
21  * Software is furnished to do so, subject to the following conditions:
22  *
23  * The above copyright notice and this permission notice (including the next
24  * paragraph) shall be included in all copies or substantial portions of the
25  * Software.
26  *
27  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
30  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33  * OTHER DEALINGS IN THE SOFTWARE.
34  */
35
36 #include "drmP.h"
37
38 #include <linux/interrupt.h>    /* For task queue support */
39
40 /**
41  * Get interrupt from bus id.
42  *
43  * \param inode device inode.
44  * \param filp file pointer.
45  * \param cmd command.
46  * \param arg user argument, pointing to a drm_irq_busid structure.
47  * \return zero on success or a negative number on failure.
48  *
49  * Finds the PCI device with the specified bus id and gets its IRQ number.
50  * This IOCTL is deprecated, and will now return EINVAL for any busid not equal
51  * to that of the device that this DRM instance attached to.
52  */
53 int drm_irq_by_busid(struct inode *inode, struct file *filp,
54                      unsigned int cmd, unsigned long arg)
55 {
56         drm_file_t *priv = filp->private_data;
57         drm_device_t *dev = priv->head->dev;
58         drm_irq_busid_t __user *argp = (void __user *)arg;
59         drm_irq_busid_t p;
60
61         if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
62                 return -EINVAL;
63
64         if (copy_from_user(&p, argp, sizeof(p)))
65                 return -EFAULT;
66
67         if ((p.busnum >> 8) != drm_get_pci_domain(dev) ||
68             (p.busnum & 0xff) != dev->pdev->bus->number ||
69             p.devnum != PCI_SLOT(dev->pdev->devfn) || p.funcnum != PCI_FUNC(dev->pdev->devfn))
70                 return -EINVAL;
71
72         p.irq = dev->irq;
73
74         DRM_DEBUG("%d:%d:%d => IRQ %d\n", p.busnum, p.devnum, p.funcnum, p.irq);
75         if (copy_to_user(argp, &p, sizeof(p)))
76                 return -EFAULT;
77         return 0;
78 }
79
80 /**
81  * Install IRQ handler.
82  *
83  * \param dev DRM device.
84  * \param irq IRQ number.
85  *
86  * Initializes the IRQ related data, and setups drm_device::vbl_queue. Installs the handler, calling the driver
87  * \c drm_driver_irq_preinstall() and \c drm_driver_irq_postinstall() functions
88  * before and after the installation.
89  */
90 static int drm_irq_install(drm_device_t * dev)
91 {
92         int ret;
93         unsigned long sh_flags = 0;
94
95         if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
96                 return -EINVAL;
97
98         if (dev->irq == 0)
99                 return -EINVAL;
100
101         mutex_lock(&dev->struct_mutex);
102
103         /* Driver must have been initialized */
104         if (!dev->dev_private) {
105                 mutex_unlock(&dev->struct_mutex);
106                 return -EINVAL;
107         }
108
109         if (dev->irq_enabled) {
110                 mutex_unlock(&dev->struct_mutex);
111                 return -EBUSY;
112         }
113         dev->irq_enabled = 1;
114         mutex_unlock(&dev->struct_mutex);
115
116         DRM_DEBUG("%s: irq=%d\n", __FUNCTION__, dev->irq);
117
118         if (drm_core_check_feature(dev, DRIVER_IRQ_VBL)) {
119                 init_waitqueue_head(&dev->vbl_queue);
120
121                 spin_lock_init(&dev->vbl_lock);
122
123                 INIT_LIST_HEAD(&dev->vbl_sigs.head);
124                 INIT_LIST_HEAD(&dev->vbl_sigs2.head);
125
126                 dev->vbl_pending = 0;
127         }
128
129         /* Before installing handler */
130         dev->driver->irq_preinstall(dev);
131
132         /* Install handler */
133         if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED))
134                 sh_flags = IRQF_SHARED;
135
136         ret = request_irq(dev->irq, dev->driver->irq_handler,
137                           sh_flags, dev->devname, dev);
138         if (ret < 0) {
139                 mutex_lock(&dev->struct_mutex);
140                 dev->irq_enabled = 0;
141                 mutex_unlock(&dev->struct_mutex);
142                 return ret;
143         }
144
145         /* After installing handler */
146         dev->driver->irq_postinstall(dev);
147
148         return 0;
149 }
150
151 /**
152  * Uninstall the IRQ handler.
153  *
154  * \param dev DRM device.
155  *
156  * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
157  */
158 int drm_irq_uninstall(drm_device_t * dev)
159 {
160         int irq_enabled;
161
162         if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
163                 return -EINVAL;
164
165         mutex_lock(&dev->struct_mutex);
166         irq_enabled = dev->irq_enabled;
167         dev->irq_enabled = 0;
168         mutex_unlock(&dev->struct_mutex);
169
170         if (!irq_enabled)
171                 return -EINVAL;
172
173         DRM_DEBUG("%s: irq=%d\n", __FUNCTION__, dev->irq);
174
175         dev->driver->irq_uninstall(dev);
176
177         free_irq(dev->irq, dev);
178
179         dev->locked_tasklet_func = NULL;
180
181         return 0;
182 }
183
184 EXPORT_SYMBOL(drm_irq_uninstall);
185
186 /**
187  * IRQ control ioctl.
188  *
189  * \param inode device inode.
190  * \param filp file pointer.
191  * \param cmd command.
192  * \param arg user argument, pointing to a drm_control structure.
193  * \return zero on success or a negative number on failure.
194  *
195  * Calls irq_install() or irq_uninstall() according to \p arg.
196  */
197 int drm_control(struct inode *inode, struct file *filp,
198                 unsigned int cmd, unsigned long arg)
199 {
200         drm_file_t *priv = filp->private_data;
201         drm_device_t *dev = priv->head->dev;
202         drm_control_t ctl;
203
204         /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
205
206         if (copy_from_user(&ctl, (drm_control_t __user *) arg, sizeof(ctl)))
207                 return -EFAULT;
208
209         switch (ctl.func) {
210         case DRM_INST_HANDLER:
211                 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
212                         return 0;
213                 if (dev->if_version < DRM_IF_VERSION(1, 2) &&
214                     ctl.irq != dev->irq)
215                         return -EINVAL;
216                 return drm_irq_install(dev);
217         case DRM_UNINST_HANDLER:
218                 if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
219                         return 0;
220                 return drm_irq_uninstall(dev);
221         default:
222                 return -EINVAL;
223         }
224 }
225
226 /**
227  * Wait for VBLANK.
228  *
229  * \param inode device inode.
230  * \param filp file pointer.
231  * \param cmd command.
232  * \param data user argument, pointing to a drm_wait_vblank structure.
233  * \return zero on success or a negative number on failure.
234  *
235  * Verifies the IRQ is installed.
236  *
237  * If a signal is requested checks if this task has already scheduled the same signal
238  * for the same vblank sequence number - nothing to be done in
239  * that case. If the number of tasks waiting for the interrupt exceeds 100 the
240  * function fails. Otherwise adds a new entry to drm_device::vbl_sigs for this
241  * task.
242  *
243  * If a signal is not requested, then calls vblank_wait().
244  */
245 int drm_wait_vblank(DRM_IOCTL_ARGS)
246 {
247         drm_file_t *priv = filp->private_data;
248         drm_device_t *dev = priv->head->dev;
249         drm_wait_vblank_t __user *argp = (void __user *)data;
250         drm_wait_vblank_t vblwait;
251         struct timeval now;
252         int ret = 0;
253         unsigned int flags;
254         atomic_t *seq;
255
256         if (!dev->irq)
257                 return -EINVAL;
258
259         if (copy_from_user(&vblwait, argp, sizeof(vblwait)))
260                 return -EFAULT;
261
262         if (vblwait.request.type &
263             ~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
264                 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
265                           vblwait.request.type,
266                           (_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
267                 return -EINVAL;
268         }
269
270         flags = vblwait.request.type & _DRM_VBLANK_FLAGS_MASK;
271
272         if (!drm_core_check_feature(dev, (flags & _DRM_VBLANK_SECONDARY) ?
273                                     DRIVER_IRQ_VBL2 : DRIVER_IRQ_VBL))
274                 return -EINVAL;
275
276         seq = (flags & _DRM_VBLANK_SECONDARY) ? &dev->vbl_received2 :
277               &dev->vbl_received;
278
279         switch (vblwait.request.type & _DRM_VBLANK_TYPES_MASK) {
280         case _DRM_VBLANK_RELATIVE:
281                 vblwait.request.sequence += atomic_read(seq);
282                 vblwait.request.type &= ~_DRM_VBLANK_RELATIVE;
283         case _DRM_VBLANK_ABSOLUTE:
284                 break;
285         default:
286                 return -EINVAL;
287         }
288
289         if (flags & _DRM_VBLANK_SIGNAL) {
290                 unsigned long irqflags;
291                 drm_vbl_sig_t *vbl_sigs = (flags & _DRM_VBLANK_SECONDARY)
292                                       ? &dev->vbl_sigs2 : &dev->vbl_sigs;
293                 drm_vbl_sig_t *vbl_sig;
294
295                 vblwait.reply.sequence = atomic_read(seq);
296
297                 spin_lock_irqsave(&dev->vbl_lock, irqflags);
298
299                 /* Check if this task has already scheduled the same signal
300                  * for the same vblank sequence number; nothing to be done in
301                  * that case
302                  */
303                 list_for_each_entry(vbl_sig, &vbl_sigs->head, head) {
304                         if (vbl_sig->sequence == vblwait.request.sequence
305                             && vbl_sig->info.si_signo == vblwait.request.signal
306                             && vbl_sig->task == current) {
307                                 spin_unlock_irqrestore(&dev->vbl_lock,
308                                                        irqflags);
309                                 goto done;
310                         }
311                 }
312
313                 if (dev->vbl_pending >= 100) {
314                         spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
315                         return -EBUSY;
316                 }
317
318                 dev->vbl_pending++;
319
320                 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
321
322                 if (!
323                     (vbl_sig =
324                      drm_alloc(sizeof(drm_vbl_sig_t), DRM_MEM_DRIVER))) {
325                         return -ENOMEM;
326                 }
327
328                 memset((void *)vbl_sig, 0, sizeof(*vbl_sig));
329
330                 vbl_sig->sequence = vblwait.request.sequence;
331                 vbl_sig->info.si_signo = vblwait.request.signal;
332                 vbl_sig->task = current;
333
334                 spin_lock_irqsave(&dev->vbl_lock, irqflags);
335
336                 list_add_tail((struct list_head *)vbl_sig, &vbl_sigs->head);
337
338                 spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
339         } else {
340                 if (flags & _DRM_VBLANK_SECONDARY) {
341                         if (dev->driver->vblank_wait2)
342                                 ret = dev->driver->vblank_wait2(dev, &vblwait.request.sequence);
343                 } else if (dev->driver->vblank_wait)
344                         ret =
345                             dev->driver->vblank_wait(dev,
346                                                      &vblwait.request.sequence);
347
348                 do_gettimeofday(&now);
349                 vblwait.reply.tval_sec = now.tv_sec;
350                 vblwait.reply.tval_usec = now.tv_usec;
351         }
352
353       done:
354         if (copy_to_user(argp, &vblwait, sizeof(vblwait)))
355                 return -EFAULT;
356
357         return ret;
358 }
359
360 /**
361  * Send the VBLANK signals.
362  *
363  * \param dev DRM device.
364  *
365  * Sends a signal for each task in drm_device::vbl_sigs and empties the list.
366  *
367  * If a signal is not requested, then calls vblank_wait().
368  */
369 void drm_vbl_send_signals(drm_device_t * dev)
370 {
371         unsigned long flags;
372         int i;
373
374         spin_lock_irqsave(&dev->vbl_lock, flags);
375
376         for (i = 0; i < 2; i++) {
377                 struct list_head *list, *tmp;
378                 drm_vbl_sig_t *vbl_sig;
379                 drm_vbl_sig_t *vbl_sigs = i ? &dev->vbl_sigs2 : &dev->vbl_sigs;
380                 unsigned int vbl_seq = atomic_read(i ? &dev->vbl_received2 :
381                                                    &dev->vbl_received);
382
383                 list_for_each_safe(list, tmp, &vbl_sigs->head) {
384                         vbl_sig = list_entry(list, drm_vbl_sig_t, head);
385                         if ((vbl_seq - vbl_sig->sequence) <= (1 << 23)) {
386                                 vbl_sig->info.si_code = vbl_seq;
387                                 send_sig_info(vbl_sig->info.si_signo,
388                                               &vbl_sig->info, vbl_sig->task);
389
390                                 list_del(list);
391
392                                 drm_free(vbl_sig, sizeof(*vbl_sig),
393                                          DRM_MEM_DRIVER);
394
395                                 dev->vbl_pending--;
396                         }
397                 }
398         }
399
400         spin_unlock_irqrestore(&dev->vbl_lock, flags);
401 }
402
403 EXPORT_SYMBOL(drm_vbl_send_signals);
404
405 /**
406  * Tasklet wrapper function.
407  *
408  * \param data DRM device in disguise.
409  *
410  * Attempts to grab the HW lock and calls the driver callback on success. On
411  * failure, leave the lock marked as contended so the callback can be called
412  * from drm_unlock().
413  */
414 static void drm_locked_tasklet_func(unsigned long data)
415 {
416         drm_device_t *dev = (drm_device_t*)data;
417         unsigned long irqflags;
418
419         spin_lock_irqsave(&dev->tasklet_lock, irqflags);
420
421         if (!dev->locked_tasklet_func ||
422             !drm_lock_take(&dev->lock.hw_lock->lock,
423                            DRM_KERNEL_CONTEXT)) {
424                 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
425                 return;
426         }
427
428         dev->lock.lock_time = jiffies;
429         atomic_inc(&dev->counts[_DRM_STAT_LOCKS]);
430
431         dev->locked_tasklet_func(dev);
432
433         drm_lock_free(dev, &dev->lock.hw_lock->lock,
434                       DRM_KERNEL_CONTEXT);
435
436         dev->locked_tasklet_func = NULL;
437
438         spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
439 }
440
441 /**
442  * Schedule a tasklet to call back a driver hook with the HW lock held.
443  *
444  * \param dev DRM device.
445  * \param func Driver callback.
446  *
447  * This is intended for triggering actions that require the HW lock from an
448  * interrupt handler. The lock will be grabbed ASAP after the interrupt handler
449  * completes. Note that the callback may be called from interrupt or process
450  * context, it must not make any assumptions about this. Also, the HW lock will
451  * be held with the kernel context or any client context.
452  */
453 void drm_locked_tasklet(drm_device_t *dev, void (*func)(drm_device_t*))
454 {
455         unsigned long irqflags;
456         static DECLARE_TASKLET(drm_tasklet, drm_locked_tasklet_func, 0);
457
458         if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ) ||
459             test_bit(TASKLET_STATE_SCHED, &drm_tasklet.state))
460                 return;
461
462         spin_lock_irqsave(&dev->tasklet_lock, irqflags);
463
464         if (dev->locked_tasklet_func) {
465                 spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
466                 return;
467         }
468
469         dev->locked_tasklet_func = func;
470
471         spin_unlock_irqrestore(&dev->tasklet_lock, irqflags);
472
473         drm_tasklet.data = (unsigned long)dev;
474
475         tasklet_hi_schedule(&drm_tasklet);
476 }
477 EXPORT_SYMBOL(drm_locked_tasklet);