blob: 3c030216e8888a14078af5d67b26399f7dfbf585 [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
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/savage_drm.h>
Dave Airlie282a1672005-08-07 15:43:54 +100030#include "savage_drv.h"
31
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drm_pciids.h>
Dave Airlie282a1672005-08-07 15:43:54 +100033
Dave Airlie282a1672005-08-07 15:43:54 +100034static struct pci_device_id pciidlist[] = {
35 savage_PCI_IDS
36};
37
Arjan van de Vene08e96d2011-10-31 07:28:57 -070038static const struct file_operations savage_driver_fops = {
39 .owner = THIS_MODULE,
40 .open = drm_open,
41 .release = drm_release,
42 .unlocked_ioctl = drm_ioctl,
43 .mmap = drm_mmap,
44 .poll = drm_poll,
Keith Packard804d74a2012-07-09 15:40:07 -070045#ifdef CONFIG_COMPAT
46 .compat_ioctl = drm_compat_ioctl,
47#endif
Arjan van de Vene08e96d2011-10-31 07:28:57 -070048 .llseek = noop_llseek,
49};
50
Dave Airlie282a1672005-08-07 15:43:54 +100051static struct drm_driver driver = {
52 .driver_features =
Daniel Vetter28185642013-08-08 15:41:27 +020053 DRIVER_USE_AGP | DRIVER_HAVE_DMA | DRIVER_PCI_DMA,
Dave Airlie282a1672005-08-07 15:43:54 +100054 .dev_priv_size = sizeof(drm_savage_buf_priv_t),
Dave Airlie22eae942005-11-10 22:16:34 +110055 .load = savage_driver_load,
56 .firstopen = savage_driver_firstopen,
Daniel Vettere2b3c5b2011-10-26 00:14:15 +020057 .preclose = savage_reclaim_buffers,
Dave Airlie22eae942005-11-10 22:16:34 +110058 .lastclose = savage_driver_lastclose,
59 .unload = savage_driver_unload,
Dave Airlie282a1672005-08-07 15:43:54 +100060 .ioctls = savage_ioctls,
61 .dma_ioctl = savage_bci_buffers,
Arjan van de Vene08e96d2011-10-31 07:28:57 -070062 .fops = &savage_driver_fops,
Dave Airlie22eae942005-11-10 22:16:34 +110063 .name = DRIVER_NAME,
64 .desc = DRIVER_DESC,
65 .date = DRIVER_DATE,
66 .major = DRIVER_MAJOR,
67 .minor = DRIVER_MINOR,
68 .patchlevel = DRIVER_PATCHLEVEL,
Dave Airlie282a1672005-08-07 15:43:54 +100069};
70
Dave Airlie8410ea32010-12-15 03:16:38 +100071static struct pci_driver savage_pci_driver = {
72 .name = DRIVER_NAME,
73 .id_table = pciidlist,
74};
75
Dave Airlie282a1672005-08-07 15:43:54 +100076static int __init savage_init(void)
77{
78 driver.num_ioctls = savage_max_ioctl;
Dave Airlie8410ea32010-12-15 03:16:38 +100079 return drm_pci_init(&driver, &savage_pci_driver);
Dave Airlie282a1672005-08-07 15:43:54 +100080}
81
82static void __exit savage_exit(void)
83{
Dave Airlie8410ea32010-12-15 03:16:38 +100084 drm_pci_exit(&driver, &savage_pci_driver);
Dave Airlie282a1672005-08-07 15:43:54 +100085}
86
87module_init(savage_init);
88module_exit(savage_exit);
89
Dave Airlieb5e89ed2005-09-25 14:28:13 +100090MODULE_AUTHOR(DRIVER_AUTHOR);
91MODULE_DESCRIPTION(DRIVER_DESC);
Dave Airlie282a1672005-08-07 15:43:54 +100092MODULE_LICENSE("GPL and additional rights");