2002-07-05 02:31:11 -06:00
|
|
|
/* mga_drv.c -- Matrox G200/G400 driver -*- linux-c -*-
|
|
|
|
* Created: Mon Dec 13 01:56:22 1999 by jhartmann@precisioninsight.com
|
2005-04-15 21:02:52 -06:00
|
|
|
*/
|
|
|
|
/*-
|
2000-05-30 11:13:31 -06:00
|
|
|
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
|
2000-06-13 11:38:09 -06:00
|
|
|
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
2000-05-30 11:13:31 -06:00
|
|
|
* 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:
|
2002-01-27 13:05:42 -07:00
|
|
|
*
|
2000-05-30 11:13:31 -06:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
2002-01-27 13:05:42 -07:00
|
|
|
*
|
2000-05-30 11:13:31 -06:00
|
|
|
* 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
|
2002-07-05 02:31:11 -06:00
|
|
|
* VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
2000-05-30 11:13:31 -06:00
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
2002-07-05 02:31:11 -06:00
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
2002-01-27 13:05:42 -07:00
|
|
|
*
|
2000-06-13 11:38:09 -06:00
|
|
|
* Authors:
|
|
|
|
* Rickard E. (Rik) Faith <faith@valinux.com>
|
2002-01-27 13:05:42 -07:00
|
|
|
* Gareth Hughes <gareth@valinux.com>
|
2003-04-23 18:46:03 -06:00
|
|
|
*
|
2000-05-30 11:13:31 -06:00
|
|
|
*/
|
|
|
|
|
2002-01-27 13:05:42 -07:00
|
|
|
#include "drmP.h"
|
2002-07-05 02:31:11 -06:00
|
|
|
#include "drm.h"
|
|
|
|
#include "mga_drm.h"
|
|
|
|
#include "mga_drv.h"
|
2004-11-06 16:02:07 -07:00
|
|
|
#include "drm_pciids.h"
|
2000-05-30 11:13:31 -06:00
|
|
|
|
2004-11-06 16:02:07 -07:00
|
|
|
/* drv_PCI_IDs comes from drm_pciids.h, generated from drm_pciids.txt. */
|
|
|
|
static drm_pci_id_list_t mga_pciidlist[] = {
|
|
|
|
mga_PCI_IDS
|
|
|
|
};
|
|
|
|
|
|
|
|
extern drm_ioctl_desc_t mga_ioctls[];
|
|
|
|
extern int mga_max_ioctl;
|
|
|
|
|
2005-06-28 20:54:19 -06:00
|
|
|
/**
|
|
|
|
* Determine if the device really is AGP or not.
|
|
|
|
*
|
|
|
|
* In addition to the usual tests performed by \c drm_device_is_agp, this
|
|
|
|
* function detects PCI G450 cards that appear to the system exactly like
|
|
|
|
* AGP G450 cards.
|
|
|
|
*
|
|
|
|
* \param dev The device to be tested.
|
|
|
|
*
|
|
|
|
* \returns
|
|
|
|
* If the device is a PCI G450, zero is returned. Otherwise non-zero is
|
|
|
|
* returned.
|
|
|
|
*
|
|
|
|
* \bug
|
|
|
|
* This function needs to be filled in! The implementation in
|
|
|
|
* linux-core/mga_drv.c shows what needs to be done.
|
|
|
|
*/
|
|
|
|
static int mga_driver_device_is_agp(drm_device_t * dev)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2004-11-06 16:02:07 -07:00
|
|
|
static void mga_configure(drm_device_t *dev)
|
|
|
|
{
|
|
|
|
dev->dev_priv_size = sizeof(drm_mga_buf_priv_t);
|
|
|
|
/* XXX dev->prerelease = mga_driver_prerelease; */
|
2005-05-20 20:27:51 -06:00
|
|
|
dev->preinit = mga_driver_preinit;
|
|
|
|
dev->postcleanup = mga_driver_postcleanup;
|
2004-11-06 16:02:07 -07:00
|
|
|
dev->vblank_wait = mga_driver_vblank_wait;
|
|
|
|
dev->irq_preinstall = mga_driver_irq_preinstall;
|
|
|
|
dev->irq_postinstall = mga_driver_irq_postinstall;
|
|
|
|
dev->irq_uninstall = mga_driver_irq_uninstall;
|
|
|
|
dev->irq_handler = mga_driver_irq_handler;
|
|
|
|
dev->dma_ioctl = mga_dma_buffers;
|
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 15:18:56 -06:00
|
|
|
dev->pretakedown = mga_driver_pretakedown;
|
2004-11-06 16:02:07 -07:00
|
|
|
dev->dma_quiescent = mga_driver_dma_quiescent;
|
2005-05-16 11:37:10 -06:00
|
|
|
dev->device_is_agp = mga_driver_device_is_agp;
|
|
|
|
|
2004-11-06 16:02:07 -07:00
|
|
|
dev->driver_ioctls = mga_ioctls;
|
|
|
|
dev->max_driver_ioctl = mga_max_ioctl;
|
|
|
|
|
|
|
|
dev->driver_name = DRIVER_NAME;
|
|
|
|
dev->driver_desc = DRIVER_DESC;
|
|
|
|
dev->driver_date = DRIVER_DATE;
|
|
|
|
dev->driver_major = DRIVER_MAJOR;
|
|
|
|
dev->driver_minor = DRIVER_MINOR;
|
|
|
|
dev->driver_patchlevel = DRIVER_PATCHLEVEL;
|
|
|
|
|
|
|
|
dev->use_agp = 1;
|
|
|
|
dev->require_agp = 1;
|
|
|
|
dev->use_mtrr = 1;
|
|
|
|
dev->use_dma = 1;
|
|
|
|
dev->use_irq = 1;
|
|
|
|
dev->use_vbl_irq = 1;
|
|
|
|
}
|
2000-05-30 11:13:31 -06:00
|
|
|
|
2005-06-28 20:54:19 -06:00
|
|
|
|
2005-05-16 11:37:10 -06:00
|
|
|
|
2003-04-23 18:46:03 -06:00
|
|
|
#ifdef __FreeBSD__
|
2004-11-06 16:02:07 -07:00
|
|
|
static int
|
|
|
|
mga_probe(device_t dev)
|
|
|
|
{
|
|
|
|
return drm_probe(dev, mga_pciidlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
mga_attach(device_t nbdev)
|
|
|
|
{
|
|
|
|
drm_device_t *dev = device_get_softc(nbdev);
|
|
|
|
|
|
|
|
bzero(dev, sizeof(drm_device_t));
|
|
|
|
mga_configure(dev);
|
|
|
|
return drm_attach(nbdev, mga_pciidlist);
|
|
|
|
}
|
|
|
|
|
|
|
|
static device_method_t mga_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, mga_probe),
|
|
|
|
DEVMETHOD(device_attach, mga_attach),
|
|
|
|
DEVMETHOD(device_detach, drm_detach),
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t mga_driver = {
|
|
|
|
"drm",
|
|
|
|
mga_methods,
|
|
|
|
sizeof(drm_device_t)
|
|
|
|
};
|
|
|
|
|
|
|
|
extern devclass_t drm_devclass;
|
|
|
|
DRIVER_MODULE(mga, pci, mga_driver, drm_devclass, 0, 0);
|
|
|
|
MODULE_DEPEND(mga, drm, 1, 1, 1);
|
|
|
|
|
|
|
|
#elif defined(__NetBSD__) || defined(__OpenBSD__)
|
2005-06-06 00:45:41 -06:00
|
|
|
#ifdef _LKM
|
2003-04-23 18:46:03 -06:00
|
|
|
CFDRIVER_DECL(mga, DV_TTY, NULL);
|
2005-06-06 00:45:41 -06:00
|
|
|
#else
|
|
|
|
CFATTACH_DECL(mga, sizeof(drm_device_t), drm_probe, drm_attach, drm_detach,
|
|
|
|
drm_activate);
|
|
|
|
#endif
|
2003-04-23 18:46:03 -06:00
|
|
|
#endif
|