2002-10-30 06:10:34 +00:00
|
|
|
/* mga_irq.c -- IRQ handling for radeon -*- linux-c -*-
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
|
2004-09-30 21:12:10 +00:00
|
|
|
*
|
2002-10-30 06:10:34 +00:00
|
|
|
* The Weather Channel (TM) funded Tungsten Graphics to develop the
|
|
|
|
|
* initial release of the Radeon 8500 driver under the XFree86 license.
|
|
|
|
|
* This notice must be preserved.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* PRECISION INSIGHT AND/OR ITS SUPPLIERS 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.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Keith Whitwell <keith@tungstengraphics.com>
|
|
|
|
|
* Eric Anholt <anholt@FreeBSD.org>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
|
#include "drm.h"
|
|
|
|
|
#include "mga_drm.h"
|
|
|
|
|
#include "mga_drv.h"
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
irqreturn_t mga_driver_irq_handler(DRM_IRQ_ARGS)
|
2002-10-30 06:10:34 +00:00
|
|
|
{
|
|
|
|
|
drm_device_t *dev = (drm_device_t *) arg;
|
2004-09-30 21:12:10 +00:00
|
|
|
drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
|
2002-10-30 06:10:34 +00:00
|
|
|
int status;
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
status = MGA_READ(MGA_STATUS);
|
|
|
|
|
|
2002-10-30 06:10:34 +00:00
|
|
|
/* VBLANK interrupt */
|
2004-09-30 21:12:10 +00:00
|
|
|
if (status & MGA_VLINEPEN) {
|
|
|
|
|
MGA_WRITE(MGA_ICLEAR, MGA_VLINEICLR);
|
2002-10-30 06:10:34 +00:00
|
|
|
atomic_inc(&dev->vbl_received);
|
|
|
|
|
DRM_WAKEUP(&dev->vbl_queue);
|
2004-09-30 21:12:10 +00:00
|
|
|
drm_vbl_send_signals(dev);
|
2003-07-29 10:11:48 +00:00
|
|
|
return IRQ_HANDLED;
|
2002-10-30 06:10:34 +00:00
|
|
|
}
|
2003-07-29 10:11:48 +00:00
|
|
|
return IRQ_NONE;
|
2002-10-30 06:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
int mga_driver_vblank_wait(drm_device_t * dev, unsigned int *sequence)
|
2002-10-30 06:10:34 +00:00
|
|
|
{
|
|
|
|
|
unsigned int cur_vblank;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
|
|
/* Assume that the user has missed the current sequence number
|
|
|
|
|
* by about a day rather than she wants to wait for years
|
2004-09-30 21:12:10 +00:00
|
|
|
* using vertical blanks...
|
2002-10-30 06:10:34 +00:00
|
|
|
*/
|
2004-09-30 21:12:10 +00:00
|
|
|
DRM_WAIT_ON(ret, dev->vbl_queue, 3 * DRM_HZ,
|
|
|
|
|
(((cur_vblank = atomic_read(&dev->vbl_received))
|
|
|
|
|
- *sequence) <= (1 << 23)));
|
2002-10-30 06:10:34 +00:00
|
|
|
|
|
|
|
|
*sequence = cur_vblank;
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
void mga_driver_irq_preinstall(drm_device_t * dev)
|
|
|
|
|
{
|
|
|
|
|
drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
|
2002-10-30 06:10:34 +00:00
|
|
|
|
|
|
|
|
/* Disable *all* interrupts */
|
2004-09-30 21:12:10 +00:00
|
|
|
MGA_WRITE(MGA_IEN, 0);
|
2002-10-30 06:10:34 +00:00
|
|
|
/* Clear bits if they're already high */
|
2004-09-30 21:12:10 +00:00
|
|
|
MGA_WRITE(MGA_ICLEAR, ~0);
|
2002-10-30 06:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
void mga_driver_irq_postinstall(drm_device_t * dev)
|
|
|
|
|
{
|
|
|
|
|
drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
|
2002-10-30 06:10:34 +00:00
|
|
|
|
|
|
|
|
/* Turn on VBL interrupt */
|
2004-09-30 21:12:10 +00:00
|
|
|
MGA_WRITE(MGA_IEN, MGA_VLINEIEN);
|
2002-10-30 06:10:34 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-30 21:12:10 +00:00
|
|
|
void mga_driver_irq_uninstall(drm_device_t * dev)
|
|
|
|
|
{
|
|
|
|
|
drm_mga_private_t *dev_priv = (drm_mga_private_t *) dev->dev_private;
|
2003-04-26 22:28:56 +00:00
|
|
|
if (!dev_priv)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
/* Disable *all* interrupts */
|
2004-09-30 21:12:10 +00:00
|
|
|
MGA_WRITE(MGA_IEN, 0);
|
Completely re-initialize DMA settings
There were two problems. First, the 'warp' and 'primary' pointers weren't
cleared, so mga_do_cleanup_dma, which gets called multiple times, would
try to ioremapfree them multiple times. This resulted in the new error
messages to syslog. The second problem was the, since the dev_private
structure isn't reallocated and cleaned out in mga_do_init_dma, when
the server is reloaded idle-waits would wait for impossible values.
I have given this patch some more riggorous testing. This includes:
- Load module, start server, run GL app, stop server, unload module.
- Load module, start server, run GL app, stop server, unload module, reload
module, restart server, run GL app.
- Load module, start server, run GL app, stop server, restart server, run
GL app, stop server, unload module.
In all three cases, everything worked as expected. Please let me know if
there are any further regressions with this patch.
Xorg bug: 3408 Reported by: Chris Rankin
2005-06-09 21:18:56 +00:00
|
|
|
|
|
|
|
|
dev->irq_enabled = 0;
|
2002-10-30 06:10:34 +00:00
|
|
|
}
|