5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
10 * Created: Fri Mar 19 14:30:16 1999 by faith@valinux.com
12 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All Rights Reserved.
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:
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
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.
38 #include <linux/interrupt.h> /* For task queue support */
41 * Get interrupt from bus id.
43 * \param inode device inode.
44 * \param filp file pointer.
46 * \param arg user argument, pointing to a drm_irq_busid structure.
47 * \return zero on success or a negative number on failure.
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.
53 int drm_irq_by_busid(struct inode
*inode
, struct file
*filp
,
54 unsigned int cmd
, unsigned long arg
)
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
;
61 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
))
64 if (copy_from_user(&p
, argp
, sizeof(p
)))
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
))
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
)))
81 * Install IRQ handler.
83 * \param dev DRM device.
84 * \param irq IRQ number.
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.
90 static int drm_irq_install(drm_device_t
* dev
)
93 unsigned long sh_flags
= 0;
95 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
))
101 mutex_lock(&dev
->struct_mutex
);
103 /* Driver must have been initialized */
104 if (!dev
->dev_private
) {
105 mutex_unlock(&dev
->struct_mutex
);
109 if (dev
->irq_enabled
) {
110 mutex_unlock(&dev
->struct_mutex
);
113 dev
->irq_enabled
= 1;
114 mutex_unlock(&dev
->struct_mutex
);
116 DRM_DEBUG("%s: irq=%d\n", __FUNCTION__
, dev
->irq
);
118 if (drm_core_check_feature(dev
, DRIVER_IRQ_VBL
)) {
119 init_waitqueue_head(&dev
->vbl_queue
);
121 spin_lock_init(&dev
->vbl_lock
);
123 INIT_LIST_HEAD(&dev
->vbl_sigs
.head
);
124 INIT_LIST_HEAD(&dev
->vbl_sigs2
.head
);
126 dev
->vbl_pending
= 0;
129 /* Before installing handler */
130 dev
->driver
->irq_preinstall(dev
);
132 /* Install handler */
133 if (drm_core_check_feature(dev
, DRIVER_IRQ_SHARED
))
134 sh_flags
= IRQF_SHARED
;
136 ret
= request_irq(dev
->irq
, dev
->driver
->irq_handler
,
137 sh_flags
, dev
->devname
, dev
);
139 mutex_lock(&dev
->struct_mutex
);
140 dev
->irq_enabled
= 0;
141 mutex_unlock(&dev
->struct_mutex
);
145 /* After installing handler */
146 dev
->driver
->irq_postinstall(dev
);
152 * Uninstall the IRQ handler.
154 * \param dev DRM device.
156 * Calls the driver's \c drm_driver_irq_uninstall() function, and stops the irq.
158 int drm_irq_uninstall(drm_device_t
* dev
)
162 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
))
165 mutex_lock(&dev
->struct_mutex
);
166 irq_enabled
= dev
->irq_enabled
;
167 dev
->irq_enabled
= 0;
168 mutex_unlock(&dev
->struct_mutex
);
173 DRM_DEBUG("%s: irq=%d\n", __FUNCTION__
, dev
->irq
);
175 dev
->driver
->irq_uninstall(dev
);
177 free_irq(dev
->irq
, dev
);
179 dev
->locked_tasklet_func
= NULL
;
184 EXPORT_SYMBOL(drm_irq_uninstall
);
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.
195 * Calls irq_install() or irq_uninstall() according to \p arg.
197 int drm_control(struct inode
*inode
, struct file
*filp
,
198 unsigned int cmd
, unsigned long arg
)
200 drm_file_t
*priv
= filp
->private_data
;
201 drm_device_t
*dev
= priv
->head
->dev
;
204 /* if we haven't irq we fallback for compatibility reasons - this used to be a separate function in drm_dma.h */
206 if (copy_from_user(&ctl
, (drm_control_t __user
*) arg
, sizeof(ctl
)))
210 case DRM_INST_HANDLER
:
211 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
))
213 if (dev
->if_version
< DRM_IF_VERSION(1, 2) &&
216 return drm_irq_install(dev
);
217 case DRM_UNINST_HANDLER
:
218 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
))
220 return drm_irq_uninstall(dev
);
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.
235 * Verifies the IRQ is installed.
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
243 * If a signal is not requested, then calls vblank_wait().
245 int drm_wait_vblank(DRM_IOCTL_ARGS
)
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
;
253 unsigned int flags
, seq
;
258 if (copy_from_user(&vblwait
, argp
, sizeof(vblwait
)))
261 if (vblwait
.request
.type
&
262 ~(_DRM_VBLANK_TYPES_MASK
| _DRM_VBLANK_FLAGS_MASK
)) {
263 DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
264 vblwait
.request
.type
,
265 (_DRM_VBLANK_TYPES_MASK
| _DRM_VBLANK_FLAGS_MASK
));
269 flags
= vblwait
.request
.type
& _DRM_VBLANK_FLAGS_MASK
;
271 if (!drm_core_check_feature(dev
, (flags
& _DRM_VBLANK_SECONDARY
) ?
272 DRIVER_IRQ_VBL2
: DRIVER_IRQ_VBL
))
275 seq
= atomic_read((flags
& _DRM_VBLANK_SECONDARY
) ? &dev
->vbl_received2
276 : &dev
->vbl_received
);
278 switch (vblwait
.request
.type
& _DRM_VBLANK_TYPES_MASK
) {
279 case _DRM_VBLANK_RELATIVE
:
280 vblwait
.request
.sequence
+= seq
;
281 vblwait
.request
.type
&= ~_DRM_VBLANK_RELATIVE
;
282 case _DRM_VBLANK_ABSOLUTE
:
288 if ((flags
& _DRM_VBLANK_NEXTONMISS
) &&
289 (seq
- vblwait
.request
.sequence
) <= (1<<23)) {
290 vblwait
.request
.sequence
= seq
+ 1;
293 if (flags
& _DRM_VBLANK_SIGNAL
) {
294 unsigned long irqflags
;
295 drm_vbl_sig_t
*vbl_sigs
= (flags
& _DRM_VBLANK_SECONDARY
)
296 ? &dev
->vbl_sigs2
: &dev
->vbl_sigs
;
297 drm_vbl_sig_t
*vbl_sig
;
299 spin_lock_irqsave(&dev
->vbl_lock
, irqflags
);
301 /* Check if this task has already scheduled the same signal
302 * for the same vblank sequence number; nothing to be done in
305 list_for_each_entry(vbl_sig
, &vbl_sigs
->head
, head
) {
306 if (vbl_sig
->sequence
== vblwait
.request
.sequence
307 && vbl_sig
->info
.si_signo
== vblwait
.request
.signal
308 && vbl_sig
->task
== current
) {
309 spin_unlock_irqrestore(&dev
->vbl_lock
,
311 vblwait
.reply
.sequence
= seq
;
316 if (dev
->vbl_pending
>= 100) {
317 spin_unlock_irqrestore(&dev
->vbl_lock
, irqflags
);
323 spin_unlock_irqrestore(&dev
->vbl_lock
, irqflags
);
327 drm_alloc(sizeof(drm_vbl_sig_t
), DRM_MEM_DRIVER
))) {
331 memset((void *)vbl_sig
, 0, sizeof(*vbl_sig
));
333 vbl_sig
->sequence
= vblwait
.request
.sequence
;
334 vbl_sig
->info
.si_signo
= vblwait
.request
.signal
;
335 vbl_sig
->task
= current
;
337 spin_lock_irqsave(&dev
->vbl_lock
, irqflags
);
339 list_add_tail((struct list_head
*)vbl_sig
, &vbl_sigs
->head
);
341 spin_unlock_irqrestore(&dev
->vbl_lock
, irqflags
);
343 vblwait
.reply
.sequence
= seq
;
345 if (flags
& _DRM_VBLANK_SECONDARY
) {
346 if (dev
->driver
->vblank_wait2
)
347 ret
= dev
->driver
->vblank_wait2(dev
, &vblwait
.request
.sequence
);
348 } else if (dev
->driver
->vblank_wait
)
350 dev
->driver
->vblank_wait(dev
,
351 &vblwait
.request
.sequence
);
353 do_gettimeofday(&now
);
354 vblwait
.reply
.tval_sec
= now
.tv_sec
;
355 vblwait
.reply
.tval_usec
= now
.tv_usec
;
359 if (copy_to_user(argp
, &vblwait
, sizeof(vblwait
)))
366 * Send the VBLANK signals.
368 * \param dev DRM device.
370 * Sends a signal for each task in drm_device::vbl_sigs and empties the list.
372 * If a signal is not requested, then calls vblank_wait().
374 void drm_vbl_send_signals(drm_device_t
* dev
)
379 spin_lock_irqsave(&dev
->vbl_lock
, flags
);
381 for (i
= 0; i
< 2; i
++) {
382 struct list_head
*list
, *tmp
;
383 drm_vbl_sig_t
*vbl_sig
;
384 drm_vbl_sig_t
*vbl_sigs
= i
? &dev
->vbl_sigs2
: &dev
->vbl_sigs
;
385 unsigned int vbl_seq
= atomic_read(i
? &dev
->vbl_received2
:
388 list_for_each_safe(list
, tmp
, &vbl_sigs
->head
) {
389 vbl_sig
= list_entry(list
, drm_vbl_sig_t
, head
);
390 if ((vbl_seq
- vbl_sig
->sequence
) <= (1 << 23)) {
391 vbl_sig
->info
.si_code
= vbl_seq
;
392 send_sig_info(vbl_sig
->info
.si_signo
,
393 &vbl_sig
->info
, vbl_sig
->task
);
397 drm_free(vbl_sig
, sizeof(*vbl_sig
),
405 spin_unlock_irqrestore(&dev
->vbl_lock
, flags
);
408 EXPORT_SYMBOL(drm_vbl_send_signals
);
411 * Tasklet wrapper function.
413 * \param data DRM device in disguise.
415 * Attempts to grab the HW lock and calls the driver callback on success. On
416 * failure, leave the lock marked as contended so the callback can be called
419 static void drm_locked_tasklet_func(unsigned long data
)
421 drm_device_t
*dev
= (drm_device_t
*)data
;
422 unsigned long irqflags
;
424 spin_lock_irqsave(&dev
->tasklet_lock
, irqflags
);
426 if (!dev
->locked_tasklet_func
||
427 !drm_lock_take(&dev
->lock
.hw_lock
->lock
,
428 DRM_KERNEL_CONTEXT
)) {
429 spin_unlock_irqrestore(&dev
->tasklet_lock
, irqflags
);
433 dev
->lock
.lock_time
= jiffies
;
434 atomic_inc(&dev
->counts
[_DRM_STAT_LOCKS
]);
436 dev
->locked_tasklet_func(dev
);
438 drm_lock_free(dev
, &dev
->lock
.hw_lock
->lock
,
441 dev
->locked_tasklet_func
= NULL
;
443 spin_unlock_irqrestore(&dev
->tasklet_lock
, irqflags
);
447 * Schedule a tasklet to call back a driver hook with the HW lock held.
449 * \param dev DRM device.
450 * \param func Driver callback.
452 * This is intended for triggering actions that require the HW lock from an
453 * interrupt handler. The lock will be grabbed ASAP after the interrupt handler
454 * completes. Note that the callback may be called from interrupt or process
455 * context, it must not make any assumptions about this. Also, the HW lock will
456 * be held with the kernel context or any client context.
458 void drm_locked_tasklet(drm_device_t
*dev
, void (*func
)(drm_device_t
*))
460 unsigned long irqflags
;
461 static DECLARE_TASKLET(drm_tasklet
, drm_locked_tasklet_func
, 0);
463 if (!drm_core_check_feature(dev
, DRIVER_HAVE_IRQ
) ||
464 test_bit(TASKLET_STATE_SCHED
, &drm_tasklet
.state
))
467 spin_lock_irqsave(&dev
->tasklet_lock
, irqflags
);
469 if (dev
->locked_tasklet_func
) {
470 spin_unlock_irqrestore(&dev
->tasklet_lock
, irqflags
);
474 dev
->locked_tasklet_func
= func
;
476 spin_unlock_irqrestore(&dev
->tasklet_lock
, irqflags
);
478 drm_tasklet
.data
= (unsigned long)dev
;
480 tasklet_hi_schedule(&drm_tasklet
);
482 EXPORT_SYMBOL(drm_locked_tasklet
);