2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2003-10-24 01:48:17 +00:00
|
|
|
* Copyright 2003 Eric Anholt
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
* ERIC ANHOLT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2003-10-24 01:48:17 +00:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Eric Anholt <anholt@FreeBSD.org>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2005-11-28 23:13:57 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/** @file drm_irq.c
|
|
|
|
* Support code for handling setup/teardown of interrupt handlers and
|
|
|
|
* handing interrupt handlers off to the drivers.
|
|
|
|
*/
|
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
#include "dev/drm/drmP.h"
|
|
|
|
#include "dev/drm/drm.h"
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
int drm_irq_by_busid(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_irq_busid *irq = data;
|
2003-11-12 20:56:30 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
if ((irq->busnum >> 8) != dev->pci_domain ||
|
|
|
|
(irq->busnum & 0xff) != dev->pci_bus ||
|
|
|
|
irq->devnum != dev->pci_slot ||
|
|
|
|
irq->funcnum != dev->pci_func)
|
2003-11-12 20:56:30 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
irq->irq = dev->irq;
|
2003-11-12 20:56:30 +00:00
|
|
|
|
|
|
|
DRM_DEBUG("%d:%d:%d => IRQ %d\n",
|
2008-10-03 16:59:11 +00:00
|
|
|
irq->busnum, irq->devnum, irq->funcnum, irq->irq);
|
2003-11-12 20:56:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-24 01:48:17 +00:00
|
|
|
static irqreturn_t
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
drm_irq_handler_wrap(DRM_IRQ_ARGS)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
2008-08-23 20:59:12 +00:00
|
|
|
struct drm_device *dev = arg;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
|
|
|
DRM_SPINLOCK(&dev->irq_lock);
|
2008-10-03 16:59:11 +00:00
|
|
|
dev->driver->irq_handler(arg);
|
2003-10-24 01:48:17 +00:00
|
|
|
DRM_SPINUNLOCK(&dev->irq_lock);
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
static void vblank_disable_fn(void *arg)
|
|
|
|
{
|
|
|
|
struct drm_device *dev = (struct drm_device *)arg;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (callout_pending(&dev->vblank_disable_timer)) {
|
|
|
|
/* callout was reset */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!callout_active(&dev->vblank_disable_timer)) {
|
|
|
|
/* callout was stopped */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callout_deactivate(&dev->vblank_disable_timer);
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("vblank_disable_allowed=%d\n", dev->vblank_disable_allowed);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (!dev->vblank_disable_allowed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < dev->num_crtcs; i++) {
|
|
|
|
if (atomic_read(&dev->vblank[i].refcount) == 0 &&
|
|
|
|
dev->vblank[i].enabled) {
|
|
|
|
DRM_DEBUG("disabling vblank on crtc %d\n", i);
|
|
|
|
dev->vblank[i].last =
|
2008-10-03 16:59:11 +00:00
|
|
|
dev->driver->get_vblank_counter(dev, i);
|
|
|
|
dev->driver->disable_vblank(dev, i);
|
2008-08-23 20:59:12 +00:00
|
|
|
dev->vblank[i].enabled = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-28 02:37:55 +00:00
|
|
|
void drm_vblank_cleanup(struct drm_device *dev)
|
2008-08-23 20:59:12 +00:00
|
|
|
{
|
|
|
|
unsigned long irqflags;
|
|
|
|
|
|
|
|
/* Bail if the driver didn't call drm_vblank_init() */
|
|
|
|
if (dev->num_crtcs == 0)
|
2008-10-03 16:59:11 +00:00
|
|
|
return;
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
DRM_SPINLOCK_IRQSAVE(&dev->vbl_lock, irqflags);
|
|
|
|
callout_stop(&dev->vblank_disable_timer);
|
|
|
|
DRM_SPINUNLOCK_IRQRESTORE(&dev->vbl_lock, irqflags);
|
|
|
|
|
|
|
|
callout_drain(&dev->vblank_disable_timer);
|
|
|
|
|
|
|
|
vblank_disable_fn((void *)dev);
|
|
|
|
|
2008-10-13 18:03:27 +00:00
|
|
|
free(dev->vblank, DRM_MEM_DRIVER);
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
dev->num_crtcs = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int drm_vblank_init(struct drm_device *dev, int num_crtcs)
|
|
|
|
{
|
|
|
|
int i, ret = ENOMEM;
|
|
|
|
|
|
|
|
callout_init_mtx(&dev->vblank_disable_timer, &dev->vbl_lock, 0);
|
|
|
|
atomic_set(&dev->vbl_signal_pending, 0);
|
|
|
|
dev->num_crtcs = num_crtcs;
|
|
|
|
|
2008-10-13 18:03:27 +00:00
|
|
|
dev->vblank = malloc(sizeof(struct drm_vblank_info) * num_crtcs,
|
|
|
|
DRM_MEM_DRIVER, M_NOWAIT | M_ZERO);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (!dev->vblank)
|
|
|
|
goto err;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("\n");
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
/* Zero per-crtc vblank stuff */
|
|
|
|
for (i = 0; i < num_crtcs; i++) {
|
|
|
|
DRM_INIT_WAITQUEUE(&dev->vblank[i].queue);
|
|
|
|
TAILQ_INIT(&dev->vblank[i].sigs);
|
|
|
|
atomic_set(&dev->vblank[i].count, 0);
|
|
|
|
atomic_set(&dev->vblank[i].refcount, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
dev->vblank_disable_allowed = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
drm_vblank_cleanup(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int drm_irq_install(struct drm_device *dev)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
|
|
|
int retcode;
|
|
|
|
|
2003-11-12 20:56:30 +00:00
|
|
|
if (dev->irq == 0 || dev->dev_private == NULL)
|
2008-08-23 20:59:12 +00:00
|
|
|
return EINVAL;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("irq=%d\n", dev->irq);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
|
2003-10-24 01:48:17 +00:00
|
|
|
DRM_LOCK();
|
2003-11-12 20:56:30 +00:00
|
|
|
if (dev->irq_enabled) {
|
2003-10-24 01:48:17 +00:00
|
|
|
DRM_UNLOCK();
|
2008-08-23 20:59:12 +00:00
|
|
|
return EBUSY;
|
2003-10-24 01:48:17 +00:00
|
|
|
}
|
2003-11-12 20:56:30 +00:00
|
|
|
dev->irq_enabled = 1;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
|
|
|
dev->context_flag = 0;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
/* Before installing handler */
|
|
|
|
dev->driver->irq_preinstall(dev);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_UNLOCK();
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
/* Install handler */
|
2008-08-23 20:59:12 +00:00
|
|
|
#if __FreeBSD_version >= 700031
|
|
|
|
retcode = bus_setup_intr(dev->device, dev->irqr,
|
|
|
|
INTR_TYPE_TTY | INTR_MPSAFE,
|
2007-02-23 12:19:07 +00:00
|
|
|
NULL, drm_irq_handler_wrap, dev, &dev->irqh);
|
2008-08-23 20:59:12 +00:00
|
|
|
#else
|
|
|
|
retcode = bus_setup_intr(dev->device, dev->irqr,
|
|
|
|
INTR_TYPE_TTY | INTR_MPSAFE,
|
|
|
|
drm_irq_handler_wrap, dev, &dev->irqh);
|
2003-10-24 01:48:17 +00:00
|
|
|
#endif
|
2003-11-12 20:56:30 +00:00
|
|
|
if (retcode != 0)
|
|
|
|
goto err;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
/* After installing handler */
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_LOCK();
|
2008-10-03 16:59:11 +00:00
|
|
|
dev->driver->irq_postinstall(dev);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_UNLOCK();
|
2003-10-24 01:48:17 +00:00
|
|
|
|
|
|
|
return 0;
|
2003-11-12 20:56:30 +00:00
|
|
|
err:
|
|
|
|
DRM_LOCK();
|
|
|
|
dev->irq_enabled = 0;
|
|
|
|
DRM_UNLOCK();
|
2009-02-25 18:54:35 +00:00
|
|
|
|
2003-11-12 20:56:30 +00:00
|
|
|
return retcode;
|
2003-10-24 01:48:17 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
int drm_irq_uninstall(struct drm_device *dev)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
2003-11-12 20:56:30 +00:00
|
|
|
if (!dev->irq_enabled)
|
2008-08-23 20:59:12 +00:00
|
|
|
return EINVAL;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2003-11-12 20:56:30 +00:00
|
|
|
dev->irq_enabled = 0;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("irq=%d\n", dev->irq);
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
dev->driver->irq_uninstall(dev);
|
2003-10-24 01:48:17 +00:00
|
|
|
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_UNLOCK();
|
2003-10-24 01:48:17 +00:00
|
|
|
bus_teardown_intr(dev->device, dev->irqr, dev->irqh);
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
DRM_LOCK();
|
2008-10-03 16:59:11 +00:00
|
|
|
|
2003-10-24 01:48:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
int drm_control(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
struct drm_control *ctl = data;
|
2003-11-12 20:56:30 +00:00
|
|
|
int err;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
switch (ctl->func) {
|
2003-10-24 01:48:17 +00:00
|
|
|
case DRM_INST_HANDLER:
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
/* Handle drivers whose DRM used to require IRQ setup but the
|
|
|
|
* no longer does.
|
|
|
|
*/
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
return 0;
|
2003-11-12 20:56:30 +00:00
|
|
|
if (dev->if_version < DRM_IF_VERSION(1, 2) &&
|
2008-08-23 20:59:12 +00:00
|
|
|
ctl->irq != dev->irq)
|
|
|
|
return EINVAL;
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
return drm_irq_install(dev);
|
2003-10-24 01:48:17 +00:00
|
|
|
case DRM_UNINST_HANDLER:
|
2008-10-03 16:59:11 +00:00
|
|
|
if (!drm_core_check_feature(dev, DRIVER_HAVE_IRQ))
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
return 0;
|
2003-11-12 20:56:30 +00:00
|
|
|
DRM_LOCK();
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
err = drm_irq_uninstall(dev);
|
2003-11-12 20:56:30 +00:00
|
|
|
DRM_UNLOCK();
|
|
|
|
return err;
|
2003-10-24 01:48:17 +00:00
|
|
|
default:
|
2008-08-23 20:59:12 +00:00
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 drm_vblank_count(struct drm_device *dev, int crtc)
|
|
|
|
{
|
|
|
|
return atomic_read(&dev->vblank[crtc].count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drm_update_vblank_count(struct drm_device *dev, int crtc)
|
|
|
|
{
|
|
|
|
u32 cur_vblank, diff;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interrupts were disabled prior to this call, so deal with counter
|
|
|
|
* wrap if needed.
|
|
|
|
* NOTE! It's possible we lost a full dev->max_vblank_count events
|
|
|
|
* here if the register is small or we had vblank interrupts off for
|
|
|
|
* a long time.
|
|
|
|
*/
|
2008-10-03 16:59:11 +00:00
|
|
|
cur_vblank = dev->driver->get_vblank_counter(dev, crtc);
|
2008-08-23 20:59:12 +00:00
|
|
|
diff = cur_vblank - dev->vblank[crtc].last;
|
|
|
|
if (cur_vblank < dev->vblank[crtc].last) {
|
|
|
|
diff += dev->max_vblank_count;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("vblank[%d].last=0x%x, cur_vblank=0x%x => diff=0x%x\n",
|
2008-08-23 20:59:12 +00:00
|
|
|
crtc, dev->vblank[crtc].last, cur_vblank, diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
DRM_DEBUG("enabling vblank interrupts on crtc %d, missed %d\n",
|
|
|
|
crtc, diff);
|
|
|
|
|
|
|
|
atomic_add(diff, &dev->vblank[crtc].count);
|
|
|
|
}
|
|
|
|
|
|
|
|
int drm_vblank_get(struct drm_device *dev, int crtc)
|
|
|
|
{
|
|
|
|
unsigned long irqflags;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
DRM_SPINLOCK_IRQSAVE(&dev->vbl_lock, irqflags);
|
|
|
|
/* Going from 0->1 means we have to enable interrupts again */
|
|
|
|
atomic_add_acq_int(&dev->vblank[crtc].refcount, 1);
|
2009-02-25 18:48:33 +00:00
|
|
|
DRM_DEBUG("vblank refcount = %d\n", dev->vblank[crtc].refcount);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (dev->vblank[crtc].refcount == 1 &&
|
|
|
|
!dev->vblank[crtc].enabled) {
|
2008-10-03 16:59:11 +00:00
|
|
|
ret = dev->driver->enable_vblank(dev, crtc);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (ret)
|
|
|
|
atomic_dec(&dev->vblank[crtc].refcount);
|
|
|
|
else {
|
|
|
|
dev->vblank[crtc].enabled = 1;
|
|
|
|
drm_update_vblank_count(dev, crtc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DRM_SPINUNLOCK_IRQRESTORE(&dev->vbl_lock, irqflags);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drm_vblank_put(struct drm_device *dev, int crtc)
|
|
|
|
{
|
|
|
|
unsigned long irqflags;
|
|
|
|
|
|
|
|
DRM_SPINLOCK_IRQSAVE(&dev->vbl_lock, irqflags);
|
|
|
|
/* Last user schedules interrupt disable */
|
|
|
|
atomic_subtract_acq_int(&dev->vblank[crtc].refcount, 1);
|
2009-02-25 18:48:33 +00:00
|
|
|
DRM_DEBUG("vblank refcount = %d\n", dev->vblank[crtc].refcount);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (dev->vblank[crtc].refcount == 0)
|
|
|
|
callout_reset(&dev->vblank_disable_timer, 5 * DRM_HZ,
|
|
|
|
(timeout_t *)vblank_disable_fn, (void *)dev);
|
|
|
|
DRM_SPINUNLOCK_IRQRESTORE(&dev->vbl_lock, irqflags);
|
|
|
|
}
|
|
|
|
|
|
|
|
int drm_modeset_ctl(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
|
|
|
struct drm_modeset_ctl *modeset = data;
|
|
|
|
unsigned long irqflags;
|
|
|
|
int crtc, ret = 0;
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("num_crtcs=%d\n", dev->num_crtcs);
|
2008-08-23 20:59:12 +00:00
|
|
|
/* If drm_vblank_init() hasn't been called yet, just no-op */
|
|
|
|
if (!dev->num_crtcs)
|
2008-10-03 16:59:11 +00:00
|
|
|
goto out;
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
crtc = modeset->crtc;
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("crtc=%d\n", crtc);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (crtc >= dev->num_crtcs) {
|
|
|
|
ret = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To avoid all the problems that might happen if interrupts
|
|
|
|
* were enabled/disabled around or between these calls, we just
|
|
|
|
* have the kernel take a reference on the CRTC (just once though
|
|
|
|
* to avoid corrupting the count if multiple, mismatch calls occur),
|
|
|
|
* so that interrupts remain enabled in the interim.
|
|
|
|
*/
|
|
|
|
switch (modeset->cmd) {
|
|
|
|
case _DRM_PRE_MODESET:
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("pre-modeset\n");
|
2008-08-23 20:59:12 +00:00
|
|
|
if (!dev->vblank[crtc].inmodeset) {
|
|
|
|
dev->vblank[crtc].inmodeset = 1;
|
|
|
|
drm_vblank_get(dev, crtc);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case _DRM_POST_MODESET:
|
2008-10-03 16:59:11 +00:00
|
|
|
DRM_DEBUG("post-modeset\n");
|
2008-08-23 20:59:12 +00:00
|
|
|
if (dev->vblank[crtc].inmodeset) {
|
|
|
|
DRM_SPINLOCK_IRQSAVE(&dev->vbl_lock, irqflags);
|
|
|
|
dev->vblank_disable_allowed = 1;
|
|
|
|
dev->vblank[crtc].inmodeset = 0;
|
|
|
|
DRM_SPINUNLOCK_IRQRESTORE(&dev->vbl_lock, irqflags);
|
|
|
|
drm_vblank_put(dev, crtc);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = EINVAL;
|
|
|
|
break;
|
2003-10-24 01:48:17 +00:00
|
|
|
}
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
2003-10-24 01:48:17 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
int drm_wait_vblank(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
2008-10-03 16:59:11 +00:00
|
|
|
union drm_wait_vblank *vblwait = data;
|
2009-02-25 18:48:33 +00:00
|
|
|
unsigned int flags, seq, crtc;
|
2008-08-23 20:59:12 +00:00
|
|
|
int ret = 0;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2003-11-12 20:56:30 +00:00
|
|
|
if (!dev->irq_enabled)
|
2008-08-23 20:59:12 +00:00
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (vblwait->request.type &
|
|
|
|
~(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK)) {
|
|
|
|
DRM_ERROR("Unsupported type value 0x%x, supported mask 0x%x\n",
|
|
|
|
vblwait->request.type,
|
|
|
|
(_DRM_VBLANK_TYPES_MASK | _DRM_VBLANK_FLAGS_MASK));
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
flags = vblwait->request.type & _DRM_VBLANK_FLAGS_MASK;
|
|
|
|
crtc = flags & _DRM_VBLANK_SECONDARY ? 1 : 0;
|
|
|
|
|
|
|
|
if (crtc >= dev->num_crtcs)
|
|
|
|
return EINVAL;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
ret = drm_vblank_get(dev, crtc);
|
2009-02-25 18:48:33 +00:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("failed to acquire vblank counter, %d\n", ret);
|
2008-10-03 16:59:11 +00:00
|
|
|
return ret;
|
2009-02-25 18:48:33 +00:00
|
|
|
}
|
2008-08-23 20:59:12 +00:00
|
|
|
seq = drm_vblank_count(dev, crtc);
|
|
|
|
|
|
|
|
switch (vblwait->request.type & _DRM_VBLANK_TYPES_MASK) {
|
|
|
|
case _DRM_VBLANK_RELATIVE:
|
|
|
|
vblwait->request.sequence += seq;
|
|
|
|
vblwait->request.type &= ~_DRM_VBLANK_RELATIVE;
|
|
|
|
case _DRM_VBLANK_ABSOLUTE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = EINVAL;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((flags & _DRM_VBLANK_NEXTONMISS) &&
|
|
|
|
(seq - vblwait->request.sequence) <= (1<<23)) {
|
|
|
|
vblwait->request.sequence = seq + 1;
|
2003-10-24 01:48:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & _DRM_VBLANK_SIGNAL) {
|
|
|
|
#if 0 /* disabled */
|
2008-10-13 18:03:27 +00:00
|
|
|
drm_vbl_sig_t *vbl_sig = malloc(sizeof(drm_vbl_sig_t),
|
|
|
|
DRM_MEM_DRIVER, M_NOWAIT | M_ZERO);
|
2003-10-24 01:48:17 +00:00
|
|
|
if (vbl_sig == NULL)
|
|
|
|
return ENOMEM;
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
vbl_sig->sequence = vblwait->request.sequence;
|
|
|
|
vbl_sig->signo = vblwait->request.signal;
|
2003-10-24 01:48:17 +00:00
|
|
|
vbl_sig->pid = DRM_CURRENTPID;
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
vblwait->reply.sequence = atomic_read(&dev->vbl_received);
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_SPINLOCK(&dev->vbl_lock);
|
2003-10-24 01:48:17 +00:00
|
|
|
TAILQ_INSERT_HEAD(&dev->vbl_sig_list, vbl_sig, link);
|
2008-08-23 20:59:12 +00:00
|
|
|
DRM_SPINUNLOCK(&dev->vbl_lock);
|
2003-10-24 01:48:17 +00:00
|
|
|
ret = 0;
|
|
|
|
#endif
|
|
|
|
ret = EINVAL;
|
|
|
|
} else {
|
2009-02-25 18:48:33 +00:00
|
|
|
DRM_DEBUG("waiting on vblank count %d, crtc %d\n",
|
|
|
|
vblwait->request.sequence, crtc);
|
|
|
|
for ( ret = 0 ; !ret && !((drm_vblank_count(dev, crtc) -
|
|
|
|
vblwait->request.sequence) <= (1 << 23)) ; ) {
|
|
|
|
mtx_lock(&dev->irq_lock);
|
|
|
|
if (!((drm_vblank_count(dev, crtc) -
|
|
|
|
vblwait->request.sequence) <= (1 << 23)))
|
|
|
|
ret = mtx_sleep(&dev->vblank[crtc].queue,
|
|
|
|
&dev->irq_lock, PCATCH, "vblwtq",
|
|
|
|
3 * DRM_HZ);
|
|
|
|
mtx_unlock(&dev->irq_lock);
|
|
|
|
}
|
Update to DRM CVS as of 2005-04-12, bringing many changes:
- Split core DRM routines back into their own module, rather than using the
nasty templated system like before.
- Development-class R300 support in radeon driver (requires userland pieces, of
course).
- Mach64 driver (haven't tested in a while -- my mach64s no longer fit in the
testbox). Covers Rage Pros, Rage Mobility P/M, Rage XL, and some others.
- i915 driver files, which just need to get drm_drv.c fixed to allow attachment
to the drmsub device. Covers i830 through i915 integrated graphics.
- savage driver files, which should require minimal changes to work. Covers the
Savage3D, Savage IX/MX, Savage 4, ProSavage.
- Support for color and texture tiling and HyperZ features of Radeon.
Thanks to: scottl (much p4 handholding)
Jung-uk Kim (helpful prodding)
PR: [1] kern/76879, [2] kern/72548
Submitted by: [1] Alex, lesha at intercaf dot ru
[2] Shaun Jurrens, shaun at shamz dot net
2005-04-16 03:44:47 +00:00
|
|
|
|
2009-02-25 18:48:33 +00:00
|
|
|
DRM_DEBUG("return = %d\n", ret);
|
2008-08-23 20:59:12 +00:00
|
|
|
if (ret != EINTR) {
|
|
|
|
struct timeval now;
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
microtime(&now);
|
|
|
|
vblwait->reply.tval_sec = now.tv_sec;
|
|
|
|
vblwait->reply.tval_usec = now.tv_usec;
|
|
|
|
vblwait->reply.sequence = drm_vblank_count(dev, crtc);
|
2009-02-25 18:48:33 +00:00
|
|
|
DRM_DEBUG("returning %d to client\n",
|
|
|
|
vblwait->reply.sequence);
|
|
|
|
} else {
|
|
|
|
DRM_DEBUG("vblank wait interrupted by signal\n");
|
2008-08-23 20:59:12 +00:00
|
|
|
}
|
|
|
|
}
|
2003-10-24 01:48:17 +00:00
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
done:
|
|
|
|
drm_vblank_put(dev, crtc);
|
2003-10-24 01:48:17 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-23 20:59:12 +00:00
|
|
|
void drm_vbl_send_signals(struct drm_device *dev, int crtc)
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0 /* disabled */
|
2008-08-23 20:59:12 +00:00
|
|
|
void drm_vbl_send_signals(struct drm_device *dev, int crtc )
|
2003-10-24 01:48:17 +00:00
|
|
|
{
|
|
|
|
drm_vbl_sig_t *vbl_sig;
|
|
|
|
unsigned int vbl_seq = atomic_read( &dev->vbl_received );
|
|
|
|
struct proc *p;
|
|
|
|
|
|
|
|
vbl_sig = TAILQ_FIRST(&dev->vbl_sig_list);
|
|
|
|
while (vbl_sig != NULL) {
|
|
|
|
drm_vbl_sig_t *next = TAILQ_NEXT(vbl_sig, link);
|
|
|
|
|
2008-10-03 16:59:11 +00:00
|
|
|
if ((vbl_seq - vbl_sig->sequence) <= (1 << 23)) {
|
2003-10-24 01:48:17 +00:00
|
|
|
p = pfind(vbl_sig->pid);
|
|
|
|
if (p != NULL)
|
|
|
|
psignal(p, vbl_sig->signo);
|
|
|
|
|
|
|
|
TAILQ_REMOVE(&dev->vbl_sig_list, vbl_sig, link);
|
|
|
|
DRM_FREE(vbl_sig,sizeof(*vbl_sig));
|
|
|
|
}
|
|
|
|
vbl_sig = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2008-08-23 20:59:12 +00:00
|
|
|
|
|
|
|
void drm_handle_vblank(struct drm_device *dev, int crtc)
|
|
|
|
{
|
|
|
|
atomic_inc(&dev->vblank[crtc].count);
|
|
|
|
DRM_WAKEUP(&dev->vblank[crtc].queue);
|
|
|
|
drm_vbl_send_signals(dev, crtc);
|
|
|
|
}
|
|
|
|
|