Lines Matching refs:pI810
76 I810Ptr pI810 = I810PTR(pScrn);
90 pI810->agpAcquired2d = TRUE;
103 pI810->VramOffset = 0;
104 pI810->VramKey = key;
109 pI810->SysMem.Start = 0;
110 pI810->SysMem.Size = size;
111 pI810->SysMem.End = size;
112 pI810->SavedSysMem = pI810->SysMem;
114 tom = pI810->SysMem.End;
116 pI810->DcacheMem.Start = 0;
117 pI810->DcacheMem.End = 0;
118 pI810->DcacheMem.Size = 0;
119 pI810->CursorPhysical = 0;
120 pI810->CursorARGBPhysical = 0;
138 pI810->DcacheOffset = tom;
139 pI810->DcacheKey = key;
143 pI810->DcacheKey = -1;
145 pI810->DcacheMem.Start = tom;
146 pI810->DcacheMem.Size = size;
147 pI810->DcacheMem.End = pI810->DcacheMem.Start + pI810->DcacheMem.Size;
148 tom = pI810->DcacheMem.End;
154 pI810->DcacheKey = -1;
174 pI810->HwcursKey = -1;
175 pI810->CursorStart = 0;
177 pI810->HwcursOffset = tom;
178 pI810->HwcursKey = key;
182 pI810->HwcursKey = -1;
186 pI810->CursorPhysical = physical;
187 pI810->CursorStart = tom;
202 pI810->ARGBHwcursKey = -1;
203 pI810->CursorARGBStart = 0;
205 pI810->ARGBHwcursOffset = tom;
206 pI810->ARGBHwcursKey = key;
210 pI810->ARGBHwcursKey = -1;
214 pI810->CursorARGBPhysical = physical;
215 pI810->CursorARGBStart = tom;
226 if (pI810->CursorStart != 0) {
227 pI810->OverlayPhysical = pI810->CursorPhysical + 1024;
228 pI810->OverlayStart = pI810->CursorStart + 1024;
231 pI810->GttBound = 1;
247 I810Ptr pI810 = I810PTR(pScrn);
248 I810RegPtr i810Reg = &pI810->ModeReg;
346 I810Ptr pI810 = I810PTR(pScrn);
348 if (xf86AgpGARTSupported() && !pI810->directRenderingEnabled
349 && !pI810->GttBound) {
353 if (pI810->VramKey != -1
354 && !xf86BindGARTMemory(pScrn->scrnIndex, pI810->VramKey,
355 pI810->VramOffset))
358 if (pI810->DcacheKey != -1
359 && !xf86BindGARTMemory(pScrn->scrnIndex, pI810->DcacheKey,
360 pI810->DcacheOffset))
363 if (pI810->HwcursKey != -1
364 && !xf86BindGARTMemory(pScrn->scrnIndex, pI810->HwcursKey,
365 pI810->HwcursOffset))
368 if (pI810->ARGBHwcursKey != -1
369 && !xf86BindGARTMemory(pScrn->scrnIndex, pI810->ARGBHwcursKey,
370 pI810->ARGBHwcursOffset))
373 pI810->GttBound = 1;
382 I810Ptr pI810 = I810PTR(pScrn);
384 if (xf86AgpGARTSupported() && !pI810->directRenderingEnabled
385 && pI810->GttBound) {
386 if (pI810->VramKey != -1
387 && !xf86UnbindGARTMemory(pScrn->scrnIndex, pI810->VramKey))
390 if (pI810->DcacheKey != -1
391 && !xf86UnbindGARTMemory(pScrn->scrnIndex, pI810->DcacheKey))
394 if (pI810->HwcursKey != -1
395 && !xf86UnbindGARTMemory(pScrn->scrnIndex, pI810->HwcursKey))
398 if (pI810->ARGBHwcursKey != -1
399 && !xf86UnbindGARTMemory(pScrn->scrnIndex, pI810->ARGBHwcursKey))
405 pI810->GttBound = 0;