]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/drm/r128_drv.c
This commit was generated by cvs2svn to compensate for changes in r98503,
[FreeBSD/FreeBSD.git] / sys / dev / drm / r128_drv.c
1 /* r128_drv.c -- ATI Rage 128 driver -*- linux-c -*-
2  * Created: Mon Dec 13 09:47:27 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  * All Rights Reserved.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the next
16  * paragraph) shall be included in all copies or substantial portions of the
17  * Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
22  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25  * OTHER DEALINGS IN THE SOFTWARE.
26  *
27  * Authors:
28  *    Rickard E. (Rik) Faith <faith@valinux.com>
29  *    Gareth Hughes <gareth@valinux.com>
30  *
31  * $FreeBSD$
32  */
33
34 #ifdef __linux__
35 #include <linux/config.h>
36 #endif /* __linux__ */
37
38 #ifdef __FreeBSD__
39 #include <sys/types.h>
40 #include <sys/bus.h>
41 #include <pci/pcivar.h>
42 #endif /* __FreeBSD__ */
43
44 #include "dev/drm/r128.h"
45 #include "dev/drm/drmP.h"
46 #include "dev/drm/r128_drm.h"
47 #include "dev/drm/r128_drv.h"
48 #if __REALLY_HAVE_SG
49 #include "ati_pcigart.h"
50 #endif
51
52 #define DRIVER_AUTHOR           "Gareth Hughes, VA Linux Systems Inc."
53
54 #define DRIVER_NAME             "r128"
55 #define DRIVER_DESC             "ATI Rage 128"
56 #define DRIVER_DATE             "20010405"
57
58 #define DRIVER_MAJOR            2
59 #define DRIVER_MINOR            2
60 #define DRIVER_PATCHLEVEL       0
61
62 #ifdef __FreeBSD__
63 /* List acquired from xc/xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h
64  * Please report to eanholt@gladstone.uoregon.edu if your chip isn't
65  * represented in the list or if the information is incorrect.
66  */
67 /* PCI cards are not supported with DRI under FreeBSD. */
68 drm_chipinfo_t DRM(devicelist)[] = {
69         {0x1002, 0x4c45, 0, "ATI Rage 128 Mobility LE (PCI)"},
70         {0x1002, 0x4c46, 1, "ATI Rage 128 Mobility LF (AGP)"},
71         {0x1002, 0x4d46, 1, "ATI Rage 128 Mobility MF (AGP)"},
72         {0x1002, 0x4d4c, 1, "ATI Rage 128 Mobility ML (AGP)"},
73         {0x1002, 0x5044, 0, "ATI Rage 128 Pro PD (PCI)"},
74         {0x1002, 0x5046, 1, "ATI Rage 128 Pro PF (AGP)"},
75         {0x1002, 0x5050, 0, "ATI Rage 128 Pro PP (PCI)"},
76         {0x1002, 0x5052, 0, "ATI Rage 128 Pro PR (PCI)"},
77         {0x1002, 0x5245, 0, "ATI Rage 128 RE (PCI)"},
78         {0x1002, 0x5246, 1, "ATI Rage 128 RF (AGP)"},
79         {0x1002, 0x5247, 1, "ATI Rage 128 RG (AGP)"},
80         {0x1002, 0x524b, 0, "ATI Rage 128 RK (PCI)"},
81         {0x1002, 0x524c, 1, "ATI Rage 128 RL (AGP)"},
82         {0x1002, 0x534d, 1, "ATI Rage 128 SM (AGP)"},
83         {0x1002, 0x5446, 1, "ATI Rage 128 Pro Ultra TF (AGP)"},
84         {0x1002, 0x544C, 1, "ATI Rage 128 Pro Ultra TL (AGP)"},
85         {0x1002, 0x5452, 1, "ATI Rage 128 Pro Ultra TR (AGP)"},
86         {0, 0, 0, NULL}
87 };
88 #endif /* __FreeBSD__ */
89
90 #define DRIVER_IOCTLS                                                       \
91    [DRM_IOCTL_NR(DRM_IOCTL_DMA)]             = { r128_cce_buffers,  1, 0 }, \
92    [DRM_IOCTL_NR(DRM_IOCTL_R128_INIT)]       = { r128_cce_init,     1, 1 }, \
93    [DRM_IOCTL_NR(DRM_IOCTL_R128_CCE_START)]  = { r128_cce_start,    1, 1 }, \
94    [DRM_IOCTL_NR(DRM_IOCTL_R128_CCE_STOP)]   = { r128_cce_stop,     1, 1 }, \
95    [DRM_IOCTL_NR(DRM_IOCTL_R128_CCE_RESET)]  = { r128_cce_reset,    1, 1 }, \
96    [DRM_IOCTL_NR(DRM_IOCTL_R128_CCE_IDLE)]   = { r128_cce_idle,     1, 0 }, \
97    [DRM_IOCTL_NR(DRM_IOCTL_R128_RESET)]      = { r128_engine_reset, 1, 0 }, \
98    [DRM_IOCTL_NR(DRM_IOCTL_R128_FULLSCREEN)] = { r128_fullscreen,   1, 0 }, \
99    [DRM_IOCTL_NR(DRM_IOCTL_R128_SWAP)]       = { r128_cce_swap,     1, 0 }, \
100    [DRM_IOCTL_NR(DRM_IOCTL_R128_CLEAR)]      = { r128_cce_clear,    1, 0 }, \
101    [DRM_IOCTL_NR(DRM_IOCTL_R128_VERTEX)]     = { r128_cce_vertex,   1, 0 }, \
102    [DRM_IOCTL_NR(DRM_IOCTL_R128_INDICES)]    = { r128_cce_indices,  1, 0 }, \
103    [DRM_IOCTL_NR(DRM_IOCTL_R128_BLIT)]       = { r128_cce_blit,     1, 0 }, \
104    [DRM_IOCTL_NR(DRM_IOCTL_R128_DEPTH)]      = { r128_cce_depth,    1, 0 }, \
105    [DRM_IOCTL_NR(DRM_IOCTL_R128_STIPPLE)]    = { r128_cce_stipple,  1, 0 }, \
106    [DRM_IOCTL_NR(DRM_IOCTL_R128_INDIRECT)]   = { r128_cce_indirect, 1, 1 },
107
108
109 #if 0
110 /* GH: Count data sent to card via ring or vertex/indirect buffers.
111  */
112 #define __HAVE_COUNTERS         3
113 #define __HAVE_COUNTER6         _DRM_STAT_IRQ
114 #define __HAVE_COUNTER7         _DRM_STAT_PRIMARY
115 #define __HAVE_COUNTER8         _DRM_STAT_SECONDARY
116 #endif
117
118
119 #include "dev/drm/drm_agpsupport.h"
120 #include "dev/drm/drm_auth.h"
121 #include "dev/drm/drm_bufs.h"
122 #include "dev/drm/drm_context.h"
123 #include "dev/drm/drm_dma.h"
124 #include "dev/drm/drm_drawable.h"
125 #include "dev/drm/drm_drv.h"
126
127 #ifdef __linux__
128 #ifndef MODULE
129 /* DRM(options) is called by the kernel to parse command-line options
130  * passed via the boot-loader (e.g., LILO).  It calls the insmod option
131  * routine, drm_parse_drm.
132  */
133
134 /* JH- We have to hand expand the string ourselves because of the cpp.  If
135  * anyone can think of a way that we can fit into the __setup macro without
136  * changing it, then please send the solution my way.
137  */
138 static int __init r128_options( char *str )
139 {
140         DRM(parse_options)( str );
141         return 1;
142 }
143
144 __setup( DRIVER_NAME "=", r128_options );
145 #endif
146 #endif /* __linux__ */
147
148 #include "dev/drm/drm_fops.h"
149 #include "dev/drm/drm_init.h"
150 #include "dev/drm/drm_ioctl.h"
151 #include "dev/drm/drm_lock.h"
152 #include "dev/drm/drm_memory.h"
153 #ifdef __linux__
154 #include "dev/drm/drm_proc.h"
155 #include "dev/drm/drm_stub.h"
156 #endif /* __linux__ */
157 #ifdef __FreeBSD__
158 #include "dev/drm/drm_sysctl.h"
159 #endif /* __FreeBSD__ */
160 #include "dev/drm/drm_vm.h"
161 #if __REALLY_HAVE_SG
162 #include "dev/drm/drm_scatter.h"
163 #endif
164
165 #ifdef __FreeBSD__
166 DRIVER_MODULE(r128, pci, r128_driver, r128_devclass, 0, 0);
167 #endif /* __FreeBSD__ */