]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpu/drm/savage/savage_drv.c
Merge branch 'flock' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/bkl
[net-next-2.6.git] / drivers / gpu / drm / savage / savage_drv.c
CommitLineData
282a1674
DA
1/* 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
282a1674
DA
26#include "drmP.h"
27#include "savage_drm.h"
28#include "savage_drv.h"
29
30#include "drm_pciids.h"
31
282a1674
DA
32static struct pci_device_id pciidlist[] = {
33 savage_PCI_IDS
34};
35
282a1674
DA
36static struct drm_driver driver = {
37 .driver_features =
b5e89ed5 38 DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_PCI_DMA,
282a1674 39 .dev_priv_size = sizeof(drm_savage_buf_priv_t),
22eae947
DA
40 .load = savage_driver_load,
41 .firstopen = savage_driver_firstopen,
42 .lastclose = savage_driver_lastclose,
43 .unload = savage_driver_unload,
282a1674 44 .reclaim_buffers = savage_reclaim_buffers,
282a1674
DA
45 .ioctls = savage_ioctls,
46 .dma_ioctl = savage_bci_buffers,
47 .fops = {
b5e89ed5
DA
48 .owner = THIS_MODULE,
49 .open = drm_open,
50 .release = drm_release,
ed8b6704 51 .unlocked_ioctl = drm_ioctl,
b5e89ed5
DA
52 .mmap = drm_mmap,
53 .poll = drm_poll,
54 .fasync = drm_fasync,
dc880abe 55 .llseek = noop_llseek,
22eae947
DA
56 },
57
282a1674 58 .pci_driver = {
22eae947
DA
59 .name = DRIVER_NAME,
60 .id_table = pciidlist,
61 },
62
63 .name = DRIVER_NAME,
64 .desc = DRIVER_DESC,
65 .date = DRIVER_DATE,
66 .major = DRIVER_MAJOR,
67 .minor = DRIVER_MINOR,
68 .patchlevel = DRIVER_PATCHLEVEL,
282a1674
DA
69};
70
71static int __init savage_init(void)
72{
73 driver.num_ioctls = savage_max_ioctl;
74 return drm_init(&driver);
75}
76
77static void __exit savage_exit(void)
78{
79 drm_exit(&driver);
80}
81
82module_init(savage_init);
83module_exit(savage_exit);
84
b5e89ed5
DA
85MODULE_AUTHOR(DRIVER_AUTHOR);
86MODULE_DESCRIPTION(DRIVER_DESC);
282a1674 87MODULE_LICENSE("GPL and additional rights");