summaryrefslogtreecommitdiff
path: root/src/gallium/targets/xorg-vmwgfx/vmw_screen.c
blob: 7662203165093c7e7791f89b65628cd5a672c1ed (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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/**********************************************************
 * Copyright 2009 VMware, Inc.  All rights reserved.
 *
 * 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 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 AUTHORS OR COPYRIGHT HOLDERS
 * 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.
 *
 **********************************************************/

/**
 * @file
 * Contains the init code for the VMware Xorg driver.
 *
 * @author Jakob Bornecrantz <jakob@vmware.com>
 */

#include "vmw_hook.h"
#include "vmw_driver.h"
#include <pipe/p_context.h>

#include "cursorstr.h"
#include "../../winsys/svga/drm/vmwgfx_drm.h"

void vmw_winsys_screen_set_throttling(struct pipe_screen *screen,
				      uint32_t throttle_us);


/* modified version of crtc functions */
xf86CrtcFuncsRec vmw_screen_crtc_funcs;

static void
vmw_screen_cursor_load_argb(xf86CrtcPtr crtc, CARD32 *image)
{
    struct vmw_customizer *vmw =
	vmw_customizer(xorg_customizer(crtc->scrn));
    xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(crtc->scrn);
    xf86CrtcFuncsPtr funcs = vmw->cursor_priv;
    CursorPtr c = config->cursor;

    /* Run the ioctl before uploading the image */
    vmw_ioctl_cursor_bypass(vmw, c->bits->xhot, c->bits->yhot);

    funcs->load_cursor_argb(crtc, image);
}

static void
vmw_screen_cursor_init(struct vmw_customizer *vmw)
{
    ScrnInfoPtr pScrn = vmw->pScrn;
    xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
    int i;

    /* XXX assume that all crtc's have the same function struct */

    /* Save old struct need to call the old functions as well */
    vmw->cursor_priv = (void*)(config->crtc[0]->funcs);
    memcpy(&vmw_screen_crtc_funcs, vmw->cursor_priv, sizeof(xf86CrtcFuncsRec));
    vmw_screen_crtc_funcs.load_cursor_argb = vmw_screen_cursor_load_argb;

    for (i = 0; i < config->num_crtc; i++)
	config->crtc[i]->funcs = &vmw_screen_crtc_funcs;
}

static void
vmw_screen_cursor_close(struct vmw_customizer *vmw)
{
    xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(vmw->pScrn);
    int i;

    vmw_ioctl_cursor_bypass(vmw, 0, 0);

    for (i = 0; i < config->num_crtc; i++)
	config->crtc[i]->funcs = vmw->cursor_priv;
}

static void
vmw_context_throttle(CustomizerPtr cust,
		     struct pipe_context *pipe,
		     enum xorg_throttling_reason reason)
{
    switch (reason) {
    case THROTTLE_RENDER:
	vmw_winsys_screen_set_throttling(pipe->screen, 20000);
	break;
    default:
      vmw_winsys_screen_set_throttling(pipe->screen, 0);
    }
}

static void
vmw_context_no_throttle(CustomizerPtr cust,
		     struct pipe_context *pipe,
		     enum xorg_throttling_reason reason)
{
    vmw_winsys_screen_set_throttling(pipe->screen, 0);
}

static Bool
vmw_check_fb_size(CustomizerPtr cust,
		  unsigned long pitch,
		  unsigned long height)
{
    struct vmw_customizer *vmw = vmw_customizer(cust);

    /**
     *  1) Is there a pitch alignment?
     *  2) The 1024 byte pad is an arbitrary value to be on
     */

    return ((uint64_t) pitch * height + 1024ULL < vmw->max_fb_size);
}

static Bool
vmw_pre_init(CustomizerPtr cust, int fd)
{
    struct vmw_customizer *vmw = vmw_customizer(cust);
    drmVersionPtr ver;

    vmw->fd = fd;

    ver = drmGetVersion(vmw->fd);
    if (ver == NULL ||
	(ver->version_major == 1 && ver->version_minor < 1)) {
	cust->swap_throttling = TRUE;
	cust->dirty_throttling = TRUE;
	cust->winsys_context_throttle = vmw_context_no_throttle;
    } else {
	cust->swap_throttling = TRUE;
	cust->dirty_throttling = FALSE;
	cust->winsys_context_throttle = vmw_context_throttle;
	debug_printf("%s: Enabling kernel throttling.\n", __func__);

	if (ver->version_major > 1 ||
	    (ver->version_major == 1 && ver->version_minor >= 3)) {
	    struct drm_vmw_getparam_arg arg;
	    int ret;

	    arg.param = DRM_VMW_PARAM_MAX_FB_SIZE;
	    ret = drmCommandWriteRead(fd, DRM_VMW_GET_PARAM, &arg,
				      sizeof(arg));
	    if (!ret) {
		vmw->max_fb_size = arg.value;
		cust->winsys_check_fb_size = vmw_check_fb_size;
		debug_printf("%s: Enabling fb size check.\n", __func__);
	    }
	}
    }

    if (ver)
	drmFreeVersion(ver);

    return TRUE;
}

static Bool
vmw_screen_init(CustomizerPtr cust)
{
    struct vmw_customizer *vmw = vmw_customizer(cust);

    vmw_screen_cursor_init(vmw);

    vmw_ctrl_ext_init(vmw);

    /* if gallium is used then we don't need to do anything more. */
    if (xorg_has_gallium(vmw->pScrn))
	return TRUE;

    vmw_video_init(vmw);

    return TRUE;
}

static Bool
vmw_screen_close(CustomizerPtr cust)
{
    struct vmw_customizer *vmw = vmw_customizer(cust);

    if (!vmw)
	return TRUE;

    vmw_screen_cursor_close(vmw);

    vmw_video_close(vmw);

    return TRUE;
}

static Bool
vmw_screen_enter_vt(CustomizerPtr cust)
{
    debug_printf("%s: enter\n", __func__);

    return TRUE;
}

static Bool
vmw_screen_leave_vt(CustomizerPtr cust)
{
    struct vmw_customizer *vmw = vmw_customizer(cust);

    debug_printf("%s: enter\n", __func__);

    vmw_video_stop_all(vmw);

    return TRUE;
}

/*
 * Functions for setting up hooks into the xorg state tracker
 */

static Bool (*vmw_screen_pre_init_saved)(ScrnInfoPtr pScrn, int flags) = NULL;

static Bool
vmw_screen_pre_init(ScrnInfoPtr pScrn, int flags)
{
    struct vmw_customizer *vmw;
    CustomizerPtr cust;

    vmw = xnfcalloc(1, sizeof(*vmw));
    if (!vmw)
	return FALSE;

    cust = &vmw->base;

    cust->winsys_pre_init = vmw_pre_init;
    cust->winsys_screen_init = vmw_screen_init;
    cust->winsys_screen_close = vmw_screen_close;
    cust->winsys_enter_vt = vmw_screen_enter_vt;
    cust->winsys_leave_vt = vmw_screen_leave_vt;
    cust->no_3d = TRUE;
    cust->unhidden_hw_cursor_update = TRUE;
    vmw->pScrn = pScrn;

    pScrn->driverPrivate = cust;

    pScrn->PreInit = vmw_screen_pre_init_saved;
    if (!pScrn->PreInit(pScrn, flags))
	return FALSE;

    return TRUE;
}

void
vmw_screen_set_functions(ScrnInfoPtr pScrn)
{
    assert(!vmw_screen_pre_init_saved);

    vmw_screen_pre_init_saved = pScrn->PreInit;
    pScrn->PreInit = vmw_screen_pre_init;
}