LUT updates
[platform/upstream/libdrm.git] / linux-core / nv_drv.c
1 /* nv_drv.c -- nv driver -*- linux-c -*-
2  * Created: Thu Oct  7 10:38:32 1999 by faith@precisioninsight.com
3  *
4  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6  * Copyright 2005 Lars Knoll <lars@trolltech.com>
7  * All Rights Reserved.
8  *
9  * Permission is hereby granted, free of charge, to any person obtaining a
10  * copy of this software and associated documentation files (the "Software"),
11  * to deal in the Software without restriction, including without limitation
12  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13  * and/or sell copies of the Software, and to permit persons to whom the
14  * Software is furnished to do so, subject to the following conditions:
15  *
16  * The above copyright notice and this permission notice (including the next
17  * paragraph) shall be included in all copies or substantial portions of the
18  * Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
23  * THE AUTHORS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26  * DEALINGS IN THE SOFTWARE.
27  *
28  * Authors:
29  *    Rickard E. (Rik) Faith <faith@valinux.com>
30  *    Daryll Strauss <daryll@valinux.com>
31  *    Gareth Hughes <gareth@valinux.com>
32  *    Lars Knoll <lars@trolltech.com>
33  */
34
35 #include "drmP.h"
36 #include "nv_drv.h"
37
38 #include "drm_pciids.h"
39
40 static struct pci_device_id pciidlist[] = {
41         nv_PCI_IDS
42 };
43
44 static int probe(struct pci_dev *pdev, const struct pci_device_id *ent);
45 static struct drm_driver driver = {
46         .driver_features = DRIVER_USE_MTRR | DRIVER_USE_AGP,
47         .reclaim_buffers = drm_core_reclaim_buffers,
48         .get_map_ofs = drm_core_get_map_ofs,
49         .get_reg_ofs = drm_core_get_reg_ofs,
50         .fops = {
51                 .owner = THIS_MODULE,
52                 .open = drm_open,
53                 .release = drm_release,
54                 .ioctl = drm_ioctl,
55                 .mmap = drm_mmap,
56                 .poll = drm_poll,
57                 .fasync = drm_fasync,
58                 },
59         .pci_driver = {
60                 .name = DRIVER_NAME,
61                 .id_table = pciidlist,
62                 .probe = probe,
63                 .remove = __devexit_p(drm_cleanup_pci),
64         },
65         .name = DRIVER_NAME,
66         .desc = DRIVER_DESC,
67         .date = DRIVER_DATE,
68         .major = DRIVER_MAJOR,
69         .minor = DRIVER_MINOR,
70         .patchlevel = DRIVER_PATCHLEVEL,
71 };
72
73 static int probe(struct pci_dev *pdev, const struct pci_device_id *ent)
74 {
75         return drm_get_dev(pdev, ent, &driver);
76 }
77
78
79 static int __init nv_init(void)
80 {
81         return drm_init(&driver, pciidlist);
82 }
83
84 static void __exit nv_exit(void)
85 {
86         drm_exit(&driver);
87 }
88
89 module_init(nv_init);
90 module_exit(nv_exit);
91
92 MODULE_AUTHOR(DRIVER_AUTHOR);
93 MODULE_DESCRIPTION(DRIVER_DESC);
94 MODULE_LICENSE("GPL and additional rights");