blob: 5468d1cd3296102560aa1653173233c637494bad [file] [log] [blame]
Dave Airlie282a1672005-08-07 15:43:54 +10001/* savage_drv.c -- Savage driver for Linux
2 *
3 * Copyright 2004 Felix Kuehling
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sub license,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 * NON-INFRINGEMENT. IN NO EVENT SHALL FELIX KUEHLING BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
22 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
Paul Gortmakere0cd3602011-08-30 11:04:30 -040026#include <linux/module.h>
27
Dave Airlie282a1672005-08-07 15:43:54 +100028#include "drmP.h"
29#include "savage_drm.h"
30#include "savage_drv.h"
31
32#include "drm_pciids.h"
33
Dave Airlie282a1672005-08-07 15:43:54 +100034static struct pci_device_id pciidlist[] = {
35 savage_PCI_IDS
36};
37
Dave Airlie282a1672005-08-07 15:43:54 +100038static struct drm_driver driver = {
39 .driver_features =
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_PCI_DMA,
Dave Airlie282a1672005-08-07 15:43:54 +100041 .dev_priv_size = sizeof(drm_savage_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +110042 .load = savage_driver_load,
43 .firstopen = savage_driver_firstopen,
44 .lastclose = savage_driver_lastclose,
45 .unload = savage_driver_unload,
Dave Airlie282a1672005-08-07 15:43:54 +100046 .reclaim_buffers = savage_reclaim_buffers,
Dave Airlie282a1672005-08-07 15:43:54 +100047 .ioctls = savage_ioctls,
48 .dma_ioctl = savage_bci_buffers,
49 .fops = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100050 .owner = THIS_MODULE,
51 .open = drm_open,
52 .release = drm_release,
Arnd Bergmanned8b6702009-12-16 22:17:09 +000053 .unlocked_ioctl = drm_ioctl,
Dave Airlieb5e89ed2005-09-25 14:28:13 +100054 .mmap = drm_mmap,
55 .poll = drm_poll,
56 .fasync = drm_fasync,
Arnd Bergmanndc880ab2010-07-06 18:54:47 +020057 .llseek = noop_llseek,
Dave Airlie22eae942005-11-10 22:16:34 +110058 },
59
Dave Airlie22eae942005-11-10 22:16:34 +110060 .name = DRIVER_NAME,
61 .desc = DRIVER_DESC,
62 .date = DRIVER_DATE,
63 .major = DRIVER_MAJOR,
64 .minor = DRIVER_MINOR,
65 .patchlevel = DRIVER_PATCHLEVEL,
Dave Airlie282a1672005-08-07 15:43:54 +100066};
67
Dave Airlie8410ea32010-12-15 03:16:38 +100068static struct pci_driver savage_pci_driver = {
69 .name = DRIVER_NAME,
70 .id_table = pciidlist,
71};
72
Dave Airlie282a1672005-08-07 15:43:54 +100073static int __init savage_init(void)
74{
75 driver.num_ioctls = savage_max_ioctl;
Dave Airlie8410ea32010-12-15 03:16:38 +100076 return drm_pci_init(&driver, &savage_pci_driver);
Dave Airlie282a1672005-08-07 15:43:54 +100077}
78
79static void __exit savage_exit(void)
80{
Dave Airlie8410ea32010-12-15 03:16:38 +100081 drm_pci_exit(&driver, &savage_pci_driver);
Dave Airlie282a1672005-08-07 15:43:54 +100082}
83
84module_init(savage_init);
85module_exit(savage_exit);
86
Dave Airlieb5e89ed2005-09-25 14:28:13 +100087MODULE_AUTHOR(DRIVER_AUTHOR);
88MODULE_DESCRIPTION(DRIVER_DESC);
Dave Airlie282a1672005-08-07 15:43:54 +100089MODULE_LICENSE("GPL and additional rights");