vserver 1.9.3
[linux-2.6.git] / drivers / char / drm / gamma.h
1 /* gamma.c -- 3dlabs GMX 2000 driver -*- linux-c -*-
2  * Created: Mon Jan  4 08:58:31 1999 by gareth@valinux.com
3  *
4  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
5  * All Rights Reserved.
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a
8  * copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation
10  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11  * and/or sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice (including the next
15  * paragraph) shall be included in all copies or substantial portions of the
16  * Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
21  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
22  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
23  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24  * DEALINGS IN THE SOFTWARE.
25  *
26  * Authors:
27  *    Gareth Hughes <gareth@valinux.com>
28  */
29
30 #ifndef __GAMMA_H__
31 #define __GAMMA_H__
32
33 /* This remains constant for all DRM template files.
34  */
35 #define DRM(x) gamma_##x
36
37 /* General customization:
38  */
39 #define DRIVER_AUTHOR           "VA Linux Systems Inc."
40
41 #define DRIVER_NAME             "gamma"
42 #define DRIVER_DESC             "3DLabs gamma"
43 #define DRIVER_DATE             "20010624"
44
45 #define DRIVER_MAJOR            2
46 #define DRIVER_MINOR            0
47 #define DRIVER_PATCHLEVEL       0
48
49 #define DRIVER_IOCTLS                                                     \
50         [DRM_IOCTL_NR(DRM_IOCTL_DMA)]        = { gamma_dma,       1, 0 }, \
51         [DRM_IOCTL_NR(DRM_IOCTL_GAMMA_INIT)] = { gamma_dma_init,  1, 1 }, \
52         [DRM_IOCTL_NR(DRM_IOCTL_GAMMA_COPY)] = { gamma_dma_copy,  1, 1 }
53
54 #define IOCTL_TABLE_NAME        DRM(ioctls)
55 #define IOCTL_FUNC_NAME         DRM(ioctl)
56
57 #define __HAVE_COUNTERS         5
58 #define __HAVE_COUNTER6         _DRM_STAT_IRQ
59 #define __HAVE_COUNTER7         _DRM_STAT_DMA
60 #define __HAVE_COUNTER8         _DRM_STAT_PRIMARY
61 #define __HAVE_COUNTER9         _DRM_STAT_SPECIAL
62 #define __HAVE_COUNTER10        _DRM_STAT_MISSED
63
64 /* Driver customization:
65  */
66 #define DRIVER_PRETAKEDOWN() do {                                       \
67         gamma_do_cleanup_dma( dev );                                    \
68 } while (0)
69
70 /* DMA customization:
71  */
72 #define __HAVE_MULTIPLE_DMA_QUEUES      1
73 #define __HAVE_DMA_WAITQUEUE            1
74
75 /* removed from DRM HAVE_DMA_FREELIST & HAVE_DMA_SCHEDULE */
76
77 #endif /* __GAMMA_H__ */