randr12: Some misc changes.
[nouveau] / src / nv50_cursor.c
1 /*
2  * Copyright (c) 2007 NVIDIA, Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included
13  * in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27
28 #ifdef ENABLE_RANDR12
29
30 #include <string.h>
31
32 #include <cursorstr.h>
33
34 #include "nv_include.h"
35 #include "nv50_type.h"
36 #include "nv50_cursor.h"
37 #include "nv50_display.h"
38
39 #define CURSOR_PTR ((CARD32*)pNv->Cursor->map)
40
41 void NV50SetCursorPosition(xf86CrtcPtr crtc, int x, int y)
42 {
43     NVPtr pNv = NVPTR(crtc->scrn);
44     const int headOff = 0x1000*NV50CrtcGetHead(crtc);
45
46     x &= 0xffff;
47     y &= 0xffff;
48     pNv->REGS[(0x00647084 + headOff)/4] = y << 16 | x;
49     pNv->REGS[(0x00647080 + headOff)/4] = 0;
50 }
51
52 void NV50LoadCursorARGB(xf86CrtcPtr crtc, CARD32 *src)
53 {
54     NVPtr pNv = NVPTR(crtc->scrn);
55     CARD32 *dst = CURSOR_PTR;
56
57     /* Assume cursor is 64x64 */
58     memcpy(dst, src, 64 * 64 * 4);
59 }
60
61 Bool NV50CursorAcquire(ScrnInfoPtr pScrn)
62 {
63     NVPtr pNv = NVPTR(pScrn);
64     xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
65     int i;
66
67     if(!pNv->HWCursor) return TRUE;
68
69     /* Initialize the cursor on each head */
70     for(i = 0; i < xf86_config->num_crtc; i++) {
71         const int headOff = 0x10 * NV50CrtcGetHead(xf86_config->crtc[i]);
72
73         pNv->REGS[(0x00610270+headOff)/4] = 0x2000;
74         while(pNv->REGS[(0x00610270+headOff)/4] & 0x30000);
75
76         pNv->REGS[(0x00610270+headOff)/4] = 1;
77         while((pNv->REGS[(0x00610270+headOff)/4] & 0x30000) != 0x10000);
78     }
79
80     return TRUE;
81 }
82
83 void NV50CursorRelease(ScrnInfoPtr pScrn)
84 {
85     NVPtr pNv = NVPTR(pScrn);
86     xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(pScrn);
87     int i;
88
89     if(!pNv->HWCursor) return;
90
91     /* Release the cursor on each head */
92     for(i = 0; i < xf86_config->num_crtc; i++) {
93         const int headOff = 0x10 * NV50CrtcGetHead(xf86_config->crtc[i]);
94
95         pNv->REGS[(0x00610270+headOff)/4] = 0;
96         while(pNv->REGS[(0x00610270+headOff)/4] & 0x30000);
97     }
98 }
99
100 Bool NV50CursorInit(ScreenPtr pScreen)
101 {
102     return xf86_cursors_init(pScreen, 64, 64,
103             HARDWARE_CURSOR_TRUECOLOR_AT_8BPP |
104             HARDWARE_CURSOR_SOURCE_MASK_INTERLEAVE_32 |
105             HARDWARE_CURSOR_ARGB);
106 }
107
108 #endif /* ENABLE_RANDR12 */