summaryrefslogtreecommitdiff
path: root/xc/lib/GL/mesa/src/drv/r200/r200_screen.c
blob: 63510b23cea43d71b6b53e0cb34839dcf60fd860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* $XFree86$ */
/*
Copyright (C) The Weather Channel, Inc.  2002.  All Rights Reserved.

The Weather Channel (TM) funded Tungsten Graphics to develop the
initial release of the Radeon 8500 driver under the XFree86 license.
This notice must be preserved.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice (including the
next paragraph) shall be included in all copies or substantial
portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

/*
 * Authors:
 *   Keith Whitwell <keith@tungstengraphics.com>
 */

#include "r200_screen.h"
#include "r200_context.h"
#include "r200_ioctl.h"

#include "mem.h"

#if 1
/* Including xf86PciInfo.h introduces a bunch of errors...
 */
#define PCI_CHIP_R200_QD	0x5144
#define PCI_CHIP_R200_QE	0x5145
#define PCI_CHIP_R200_QF	0x5146
#define PCI_CHIP_R200_QG	0x5147
#define PCI_CHIP_R200_QY	0x5159
#define PCI_CHIP_R200_QZ	0x515A
#define PCI_CHIP_R200_LW	0x4C57 
#define PCI_CHIP_R200_LY	0x4C59
#define PCI_CHIP_R200_LZ	0x4C5A
#define PCI_CHIP_RV200_QW	0x5157 
#endif


/* Create the device specific screen private data struct.
 */
r200ScreenPtr r200CreateScreen( __DRIscreenPrivate *sPriv )
{
   r200ScreenPtr r200Screen;
   RADEONDRIPtr r200DRIPriv = (RADEONDRIPtr)sPriv->pDevPriv;

   /* Check the DRI version */
   {
      int major, minor, patch;
      if ( XF86DRIQueryVersion( sPriv->display, &major, &minor, &patch ) ) {
         if ( major != 4 || minor < 0 ) {
            __driUtilMessage( "R200 DRI driver expected DRI version 4.0.x "
			      "but got version %d.%d.%d",
			      major, minor, patch );
            return NULL;
         }
      }
   }

   /* Check that the DDX driver version is compatible */
   if ( sPriv->ddxMajor != 4 ||
	sPriv->ddxMinor < 0 ) {
      __driUtilMessage( "R200 DRI driver expected DDX driver version 4.0.x "
			"but got version %d.%d.%d", 
			sPriv->ddxMajor, sPriv->ddxMinor, sPriv->ddxPatch );
      return NULL;
   }

   /* Check that the DRM driver version is compatible 
    *    -- R200 support added at 1.4.0.
    */
   if ( sPriv->drmMajor != 1 ||
	sPriv->drmMinor < 5) {
      __driUtilMessage( "R200 DRI driver expected DRM driver version 1.5.x "
			"but got version %d.%d.%d", 
			sPriv->drmMajor, sPriv->drmMinor, sPriv->drmPatch );
      return NULL;
   }


   /* Allocate the private area */
   r200Screen = (r200ScreenPtr) CALLOC( sizeof(*r200Screen) );
   if ( !r200Screen ) {
      __driUtilMessage("%s: CALLOC r200Screen struct failed",
		       __FUNCTION__);
      return NULL;
   }


   /* This is first since which regions we map depends on whether or
    * not we are using a PCI card.
    */
   r200Screen->IsPCI = r200DRIPriv->IsPCI;

   r200Screen->mmio.handle = r200DRIPriv->registerHandle;
   r200Screen->mmio.size   = r200DRIPriv->registerSize;
   if ( drmMap( sPriv->fd,
		r200Screen->mmio.handle,
		r200Screen->mmio.size,
		&r200Screen->mmio.map ) ) {
      FREE( r200Screen );
      __driUtilMessage("r200CreateScreen(): drmMap failed\n");
      return NULL;
   }

   r200Screen->status.handle = r200DRIPriv->statusHandle;
   r200Screen->status.size   = r200DRIPriv->statusSize;
   if ( drmMap( sPriv->fd,
		r200Screen->status.handle,
		r200Screen->status.size,
		&r200Screen->status.map ) ) {
      drmUnmap( r200Screen->mmio.map, r200Screen->mmio.size );
      FREE( r200Screen );
      __driUtilMessage("r200CreateScreen(): drmMap (2) failed\n");
      return NULL;
   }
   r200Screen->scratch = (__volatile__ CARD32 *)
      ((GLubyte *)r200Screen->status.map + RADEON_SCRATCH_REG_OFFSET);

   r200Screen->buffers = drmMapBufs( sPriv->fd );
   if ( !r200Screen->buffers ) {
      drmUnmap( r200Screen->status.map, r200Screen->status.size );
      drmUnmap( r200Screen->mmio.map, r200Screen->mmio.size );
      FREE( r200Screen );
      __driUtilMessage("r200CreateScreen(): drmMapBufs failed\n");
      return NULL;
   }

   if ( !r200Screen->IsPCI ) {
      r200Screen->agpTextures.handle = r200DRIPriv->agpTexHandle;
      r200Screen->agpTextures.size   = r200DRIPriv->agpTexMapSize;
      if ( drmMap( sPriv->fd,
		   r200Screen->agpTextures.handle,
		   r200Screen->agpTextures.size,
		   (drmAddressPtr)&r200Screen->agpTextures.map ) ) {
	 drmUnmapBufs( r200Screen->buffers );
	 drmUnmap( r200Screen->status.map, r200Screen->status.size );
	 drmUnmap( r200Screen->mmio.map, r200Screen->mmio.size );
	 FREE( r200Screen );
         __driUtilMessage("r200CreateScreen(): IsPCI failed\n");
	 return NULL;
      }
   }


   switch ( r200DRIPriv->deviceID ) {
   case PCI_CHIP_R200_QD:
   case PCI_CHIP_R200_QE:
   case PCI_CHIP_R200_QF:
   case PCI_CHIP_R200_QG:
   case PCI_CHIP_R200_QY:
   case PCI_CHIP_R200_QZ:
   case PCI_CHIP_RV200_QW:
   case PCI_CHIP_R200_LW:
   case PCI_CHIP_R200_LY:
   case PCI_CHIP_R200_LZ:
      __driUtilMessage("r200CreateScreen(): Device isn't an r200!\n");
      return NULL;      
      break;
   default:
      r200Screen->chipset = R200_CHIPSET_R200;
      break;
   }

   r200Screen->cpp = r200DRIPriv->bpp / 8;
   r200Screen->AGPMode = r200DRIPriv->AGPMode;

   r200Screen->frontOffset	= r200DRIPriv->frontOffset;
   r200Screen->frontPitch	= r200DRIPriv->frontPitch;
   r200Screen->backOffset	= r200DRIPriv->backOffset;
   r200Screen->backPitch	= r200DRIPriv->backPitch;
   r200Screen->depthOffset	= r200DRIPriv->depthOffset;
   r200Screen->depthPitch	= r200DRIPriv->depthPitch;

   r200Screen->texOffset[RADEON_CARD_HEAP] = r200DRIPriv->textureOffset;
   r200Screen->texSize[RADEON_CARD_HEAP] = r200DRIPriv->textureSize;
   r200Screen->logTexGranularity[RADEON_CARD_HEAP] =
      r200DRIPriv->log2TexGran;

   if ( r200Screen->IsPCI ) {
      r200Screen->numTexHeaps = RADEON_NR_TEX_HEAPS - 1;
      r200Screen->texOffset[RADEON_AGP_HEAP] = 0;
      r200Screen->texSize[RADEON_AGP_HEAP] = 0;
      r200Screen->logTexGranularity[RADEON_AGP_HEAP] = 0;
   } else {
      r200Screen->numTexHeaps = RADEON_NR_TEX_HEAPS;
      r200Screen->texOffset[RADEON_AGP_HEAP] =
	 r200DRIPriv->agpTexOffset + R200_AGP_TEX_OFFSET;
      r200Screen->texSize[RADEON_AGP_HEAP] = r200DRIPriv->agpTexMapSize;
      r200Screen->logTexGranularity[RADEON_AGP_HEAP] =
	 r200DRIPriv->log2AGPTexGran;
   }

   r200Screen->driScreen = sPriv;
   r200Screen->sarea_priv_offset = r200DRIPriv->sarea_priv_offset;
   return r200Screen;
}

/* Destroy the device specific screen private data struct.
 */
void r200DestroyScreen( __DRIscreenPrivate *sPriv )
{
   r200ScreenPtr r200Screen = (r200ScreenPtr)sPriv->private;

   if (!r200Screen)
      return;

   if ( !r200Screen->IsPCI ) {
      drmUnmap( r200Screen->agpTextures.map,
		r200Screen->agpTextures.size );
   }
   drmUnmapBufs( r200Screen->buffers );
   drmUnmap( r200Screen->status.map, r200Screen->status.size );
   drmUnmap( r200Screen->mmio.map, r200Screen->mmio.size );

   FREE( r200Screen );
   sPriv->private = NULL;
}