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
|
/*
* Copyright 2014 Red Hat Inc.
*
* 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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: Ben Skeggs <bskeggs@redhat.com>
*/
#include "nouveau_glamor.h"
#ifdef HAVE_GLAMOR
static DevPrivateKeyRec glamor_private;
void
nouveau_glamor_pixmap_set(PixmapPtr pixmap, struct nouveau_pixmap *priv)
{
dixSetPrivate(&pixmap->devPrivates, &glamor_private, priv);
}
struct nouveau_pixmap *
nouveau_glamor_pixmap_get(PixmapPtr pixmap)
{
return dixGetPrivate(&pixmap->devPrivates, &glamor_private);
}
static Bool
nouveau_glamor_destroy_pixmap(PixmapPtr pixmap)
{
struct nouveau_pixmap *priv = nouveau_glamor_pixmap_get(pixmap);
if (pixmap->refcnt == 1) {
glamor_egl_destroy_textured_pixmap(pixmap);
if (priv)
nouveau_bo_ref(NULL, &priv->bo);
}
fbDestroyPixmap(pixmap);
return TRUE;
}
static PixmapPtr
nouveau_glamor_create_pixmap(ScreenPtr screen, int w, int h, int depth,
unsigned usage)
{
ScrnInfoPtr scrn = xf86ScreenToScrn(screen);
struct nouveau_pixmap *priv;
PixmapPtr pixmap;
int pitch;
if (usage != CREATE_PIXMAP_USAGE_SHARED)
return glamor_create_pixmap(screen, w, h, depth, usage);
if (depth == 1)
return fbCreatePixmap(screen, w, h, depth, usage);
if (w > 32767 || h > 32767)
return NullPixmap;
pixmap = fbCreatePixmap(screen, 0, 0, depth, usage);
if (pixmap == NullPixmap || !w || !h)
return pixmap;
priv = calloc(1, sizeof(*priv));
if (!priv)
goto fail_priv;
if (!nouveau_allocate_surface(scrn, w, h,
pixmap->drawable.bitsPerPixel,
usage, &pitch, &priv->bo))
goto fail_bo;
nouveau_glamor_pixmap_set(pixmap, priv);
screen->ModifyPixmapHeader(pixmap, w, h, 0, 0, pitch, NULL);
if (!glamor_egl_create_textured_pixmap(pixmap, priv->bo->handle,
pixmap->devKind)) {
xf86DrvMsg(scrn->scrnIndex, X_WARNING,
"[GLAMOR] failed to create textured PRIME pixmap.");
return pixmap;
}
return pixmap;
fail_bo:
free(priv);
fail_priv:
fbDestroyPixmap(pixmap);
return fbCreatePixmap(screen, w, h, depth, usage);
}
static Bool
nouveau_glamor_share_pixmap_backing(PixmapPtr pixmap, ScreenPtr slave,
void **phandle)
{
struct nouveau_pixmap *priv = nouveau_glamor_pixmap_get(pixmap);
int ret, handle;
ret = nouveau_bo_set_prime(priv->bo, &handle);
if (ret)
return FALSE;
priv->shared = TRUE;
*phandle = (void *)(long)handle;
return TRUE;
}
static Bool
nouveau_glamor_set_shared_pixmap_backing(PixmapPtr pixmap, void *_handle)
{
struct nouveau_pixmap *priv = nouveau_glamor_pixmap_get(pixmap);
ScreenPtr screen = pixmap->drawable.pScreen;
ScrnInfoPtr scrn = xf86ScreenToScrn(screen);
NVPtr pNv = NVPTR(scrn);
struct nouveau_bo *bo;
int ret, handle = (int)(long)_handle;
ret = nouveau_bo_prime_handle_ref(pNv->dev, handle, &bo);
if (ret)
return FALSE;
priv->bo = bo;
priv->shared = TRUE;
close(handle);
if (!glamor_egl_create_textured_pixmap(pixmap, priv->bo->handle,
pixmap->devKind)) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
"[GLAMOR] failed to get PRIME drawable\n");
return FALSE;
}
return TRUE;
}
static void
nouveau_glamor_flush(ScrnInfoPtr pScrn)
{
glamor_block_handler(pScrn->pScreen);
}
Bool
nouveau_glamor_create_screen_resources(ScreenPtr screen)
{
PixmapPtr ppix = screen->GetScreenPixmap(screen);
ScrnInfoPtr scrn = xf86ScreenToScrn(screen);
NVPtr pNv = NVPTR(scrn);
if (!glamor_glyphs_init(screen))
return FALSE;
if (!glamor_egl_create_textured_screen_ext(screen,
pNv->scanout->handle,
scrn->displayWidth *
scrn->bitsPerPixel / 8,
NULL))
return FALSE;
if (!nouveau_glamor_pixmap_get(ppix)) {
struct nouveau_pixmap *priv = calloc(1, sizeof(*priv));
if (priv) {
nouveau_bo_ref(pNv->scanout, &priv->bo);
nouveau_glamor_pixmap_set(ppix, priv);
}
}
return TRUE;
}
Bool
nouveau_glamor_pre_init(ScrnInfoPtr scrn)
{
NVPtr pNv = NVPTR(scrn);
pointer glamor_module;
if (scrn->depth < 24) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
"[GLAMOR] requires depth >= 24\n");
return FALSE;
}
if ((glamor_module = xf86LoadSubModule(scrn, GLAMOR_EGL_MODULE_NAME))) {
if (!glamor_egl_init(scrn, pNv->dev->fd)) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
"[GLAMOR] failed to initialise EGL\n");
return FALSE;
}
} else {
xf86DrvMsg(scrn->scrnIndex, X_ERROR, "[GLAMOR] unavailable\n");
return FALSE;
}
xf86DrvMsg(scrn->scrnIndex, X_INFO, "[GLAMOR] EGL initialised\n");
return TRUE;
}
Bool
nouveau_glamor_init(ScreenPtr screen)
{
ScrnInfoPtr scrn = xf86ScreenToScrn(screen);
NVPtr pNv = NVPTR(scrn);
if (!glamor_init(screen, GLAMOR_INVERTED_Y_AXIS |
GLAMOR_USE_EGL_SCREEN |
GLAMOR_USE_SCREEN |
GLAMOR_USE_PICTURE_SCREEN)) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
"[GLAMOR] failed to initialise\n");
return FALSE;
}
if (!glamor_egl_init_textured_pixmap(screen)) {
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
"[GLAMOR] failed to initialize screen pixmap\n");
return FALSE;
}
if (!dixRegisterPrivateKey(&glamor_private, PRIVATE_PIXMAP, 0))
return FALSE;
screen->CreatePixmap = nouveau_glamor_create_pixmap;
screen->DestroyPixmap = nouveau_glamor_destroy_pixmap;
screen->SharePixmapBacking = nouveau_glamor_share_pixmap_backing;
screen->SetSharedPixmapBacking = nouveau_glamor_set_shared_pixmap_backing;
xf86DrvMsg(scrn->scrnIndex, X_INFO, "[GLAMOR] initialised\n");
pNv->Flush = nouveau_glamor_flush;
return TRUE;
}
XF86VideoAdaptorPtr
nouveau_glamor_xv_init(ScreenPtr pScreen, int num_adapt)
{
return glamor_xv_init(pScreen, num_adapt);
}
#endif
|