blob: 9062cb0a9116fd39cd5700c5b592f9ec37a69257 [file] [log] [blame]
Rik Faith39a659e2000-09-29 01:47:11 +00001/* tdfx_drv.c -- tdfx driver -*- linux-c -*-
Daryll Straussb6a28bf1999-12-05 23:10:37 +00002 * Created: Thu Oct 7 10:38:32 1999 by faith@precisioninsight.com
Daryll Straussb6a28bf1999-12-05 23:10:37 +00003 *
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
Brian Paul569da5a2000-06-08 14:38:22 +00005 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
Daryll Straussb6a28bf1999-12-05 23:10:37 +00006 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
Gareth Hughes7db64492000-09-06 20:56:34 +000014 *
Daryll Straussb6a28bf1999-12-05 23:10:37 +000015 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
Gareth Hughes7db64492000-09-06 20:56:34 +000018 *
Daryll Straussb6a28bf1999-12-05 23:10:37 +000019 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
Gareth Hughes7db64492000-09-06 20:56:34 +000026 *
Brian Paul569da5a2000-06-08 14:38:22 +000027 * Authors:
28 * Rickard E. (Rik) Faith <faith@valinux.com>
29 * Daryll Strauss <daryll@valinux.com>
Gareth Hughes36047532001-02-15 08:12:14 +000030 * Gareth Hughes <gareth@valinux.com>
Daryll Straussb6a28bf1999-12-05 23:10:37 +000031 */
32
Rik Faith2fbd4bf2000-06-13 14:34:13 +000033#include <linux/config.h>
Daryll Straussb6a28bf1999-12-05 23:10:37 +000034#include "drmP.h"
Jon Smirlfa6b1d12004-09-27 19:51:38 +000035#include "tdfx_drv.h"
Daryll Straussb6a28bf1999-12-05 23:10:37 +000036
Jon Smirlfa6b1d12004-09-27 19:51:38 +000037#include "drm_pciids.h"
Dave Airlie5c9ed832004-08-17 13:10:05 +000038
Jon Smirl9f9a8f12004-09-30 21:12:10 +000039static int postinit(struct drm_device *dev, unsigned long flags)
Dave Airlie5c9ed832004-08-17 13:10:05 +000040{
Jon Smirl9f9a8f12004-09-30 21:12:10 +000041 DRM_INFO("Initialized %s %d.%d.%d %s on minor %d: %s\n",
42 DRIVER_NAME,
43 DRIVER_MAJOR,
44 DRIVER_MINOR,
45 DRIVER_PATCHLEVEL,
Jon Smirlad70dc62004-10-12 03:59:17 +000046 DRIVER_DATE, dev->primary.minor, pci_pretty_name(dev->pdev)
Jon Smirl9f9a8f12004-09-30 21:12:10 +000047 );
Jon Smirlfa6b1d12004-09-27 19:51:38 +000048 return 0;
Dave Airlie5c9ed832004-08-17 13:10:05 +000049}
50
Jon Smirl9f9a8f12004-09-30 21:12:10 +000051static int version(drm_version_t * version)
Jon Smirlfa6b1d12004-09-27 19:51:38 +000052{
53 int len;
54
55 version->version_major = DRIVER_MAJOR;
56 version->version_minor = DRIVER_MINOR;
57 version->version_patchlevel = DRIVER_PATCHLEVEL;
Jon Smirl9f9a8f12004-09-30 21:12:10 +000058 DRM_COPY(version->name, DRIVER_NAME);
59 DRM_COPY(version->date, DRIVER_DATE);
60 DRM_COPY(version->desc, DRIVER_DESC);
Jon Smirlfa6b1d12004-09-27 19:51:38 +000061 return 0;
62}
63
64static struct pci_device_id pciidlist[] = {
65 tdfx_PCI_IDS
66};
67
Jon Smirlad70dc62004-10-12 03:59:17 +000068static int probe(struct pci_dev *pdev, const struct pci_device_id *ent);
Jon Smirlad549c52004-10-10 22:54:55 +000069static struct drm_driver driver = {
Jon Smirlfa6b1d12004-09-27 19:51:38 +000070 .driver_features = DRIVER_USE_MTRR,
71 .reclaim_buffers = drm_core_reclaim_buffers,
72 .get_map_ofs = drm_core_get_map_ofs,
73 .get_reg_ofs = drm_core_get_reg_ofs,
74 .postinit = postinit,
75 .version = version,
Jon Smirl3aef3842004-09-30 18:13:33 +000076 .fops = {
Jon Smirlad70dc62004-10-12 03:59:17 +000077 .owner = THIS_MODULE,
78 .open = drm_open,
79 .release = drm_release,
80 .ioctl = drm_ioctl,
81 .mmap = drm_mmap,
Jon Smirl5e8838f2004-10-13 16:40:53 +000082 .poll = drm_poll,
Jon Smirlad70dc62004-10-12 03:59:17 +000083 .fasync = drm_fasync,
84 },
85 .pci_driver = {
86 .name = DRIVER_NAME,
87 .id_table = pciidlist,
88 .probe = probe,
89 .remove = __devexit_p(drm_cleanup_pci),
90 }
Jon Smirlfa6b1d12004-09-27 19:51:38 +000091};
92
93static int probe(struct pci_dev *pdev, const struct pci_device_id *ent)
94{
Jon Smirlad70dc62004-10-12 03:59:17 +000095 return drm_get_dev(pdev, ent, &driver);
Jon Smirlfa6b1d12004-09-27 19:51:38 +000096}
97
Jon Smirlfa6b1d12004-09-27 19:51:38 +000098
99static int __init tdfx_init(void)
100{
Jon Smirlad70dc62004-10-12 03:59:17 +0000101 return drm_init(&driver, pciidlist);
Jon Smirlfa6b1d12004-09-27 19:51:38 +0000102}
103
104static void __exit tdfx_exit(void)
105{
Jon Smirlad70dc62004-10-12 03:59:17 +0000106 drm_exit(&driver);
Jon Smirlfa6b1d12004-09-27 19:51:38 +0000107}
108
109module_init(tdfx_init);
110module_exit(tdfx_exit);
111
Jon Smirl9f9a8f12004-09-30 21:12:10 +0000112MODULE_AUTHOR(DRIVER_AUTHOR);
113MODULE_DESCRIPTION(DRIVER_DESC);
Jon Smirlfa6b1d12004-09-27 19:51:38 +0000114MODULE_LICENSE("GPL and additional rights");