Move pf_get_block() to u_format auxiliary module.
[mesa.git] / src / gallium / state_trackers / xorg / xorg_crtc.c
1 /*
2 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 *
25 *
26 * Author: Alan Hourihane <alanh@tungstengraphics.com>
27 * Author: Jakob Bornecrantz <wallbraker@gmail.com>
28 *
29 */
30
31 #include <unistd.h>
32 #include <string.h>
33 #include <assert.h>
34 #include <stdlib.h>
35 #include <math.h>
36 #include <stdint.h>
37
38 #include "xorg-server.h"
39 #include <xf86.h>
40 #include <xf86i2c.h>
41 #include <xf86Crtc.h>
42 #include "xorg_tracker.h"
43 #include "xf86Modes.h"
44
45 #ifdef HAVE_XEXTPROTO_71
46 #include <X11/extensions/dpmsconst.h>
47 #else
48 #define DPMS_SERVER
49 #include <X11/extensions/dpms.h>
50 #endif
51
52 #include "pipe/p_inlines.h"
53 #include "util/u_format.h"
54 #include "util/u_rect.h"
55
56 #ifdef HAVE_LIBKMS
57 #include "libkms.h"
58 #endif
59
60 struct crtc_private
61 {
62 drmModeCrtcPtr drm_crtc;
63
64 /* hwcursor */
65 struct pipe_texture *cursor_tex;
66 struct kms_bo *cursor_bo;
67
68 unsigned cursor_handle;
69 };
70
71 static void
72 crtc_dpms(xf86CrtcPtr crtc, int mode)
73 {
74 switch (mode) {
75 case DPMSModeOn:
76 case DPMSModeStandby:
77 case DPMSModeSuspend:
78 break;
79 case DPMSModeOff:
80 break;
81 }
82 }
83
84 static Bool
85 crtc_set_mode_major(xf86CrtcPtr crtc, DisplayModePtr mode,
86 Rotation rotation, int x, int y)
87 {
88 xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(crtc->scrn);
89 modesettingPtr ms = modesettingPTR(crtc->scrn);
90 xf86OutputPtr output = NULL;
91 drmModeConnectorPtr drm_connector;
92 struct crtc_private *crtcp = crtc->driver_private;
93 drmModeCrtcPtr drm_crtc = crtcp->drm_crtc;
94 drmModeModeInfo drm_mode;
95 int i, ret;
96
97 for (i = 0; i < config->num_output; output = NULL, i++) {
98 output = config->output[i];
99
100 if (output->crtc == crtc)
101 break;
102 }
103
104 if (!output)
105 return FALSE;
106
107 drm_connector = output->driver_private;
108
109 drm_mode.clock = mode->Clock;
110 drm_mode.hdisplay = mode->HDisplay;
111 drm_mode.hsync_start = mode->HSyncStart;
112 drm_mode.hsync_end = mode->HSyncEnd;
113 drm_mode.htotal = mode->HTotal;
114 drm_mode.vdisplay = mode->VDisplay;
115 drm_mode.vsync_start = mode->VSyncStart;
116 drm_mode.vsync_end = mode->VSyncEnd;
117 drm_mode.vtotal = mode->VTotal;
118 drm_mode.flags = mode->Flags;
119 drm_mode.hskew = mode->HSkew;
120 drm_mode.vscan = mode->VScan;
121 drm_mode.vrefresh = mode->VRefresh;
122 if (!mode->name)
123 xf86SetModeDefaultName(mode);
124 strncpy(drm_mode.name, mode->name, DRM_DISPLAY_MODE_LEN);
125
126 ret = drmModeSetCrtc(ms->fd, drm_crtc->crtc_id, ms->fb_id, x, y,
127 &drm_connector->connector_id, 1, &drm_mode);
128
129 if (ret)
130 return FALSE;
131
132 crtc->x = x;
133 crtc->y = y;
134 crtc->mode = *mode;
135 crtc->rotation = rotation;
136
137 return TRUE;
138 }
139
140 static void
141 crtc_gamma_set(xf86CrtcPtr crtc, CARD16 * red, CARD16 * green, CARD16 * blue,
142 int size)
143 {
144 /* XXX: hockup */
145 }
146
147 static void *
148 crtc_shadow_allocate(xf86CrtcPtr crtc, int width, int height)
149 {
150 return NULL;
151 }
152
153 static PixmapPtr
154 crtc_shadow_create(xf86CrtcPtr crtc, void *data, int width, int height)
155 {
156 return NULL;
157 }
158
159 static void
160 crtc_shadow_destroy(xf86CrtcPtr crtc, PixmapPtr rotate_pixmap, void *data)
161 {
162 }
163
164 /*
165 * Cursor functions
166 */
167
168 static void
169 crtc_set_cursor_colors(xf86CrtcPtr crtc, int bg, int fg)
170 {
171 /* XXX: See if this one is needed, as we only support ARGB cursors */
172 }
173
174 static void
175 crtc_set_cursor_position(xf86CrtcPtr crtc, int x, int y)
176 {
177 modesettingPtr ms = modesettingPTR(crtc->scrn);
178 struct crtc_private *crtcp = crtc->driver_private;
179
180 drmModeMoveCursor(ms->fd, crtcp->drm_crtc->crtc_id, x, y);
181 }
182
183 static void
184 crtc_load_cursor_argb_ga3d(xf86CrtcPtr crtc, CARD32 * image)
185 {
186 unsigned char *ptr;
187 modesettingPtr ms = modesettingPTR(crtc->scrn);
188 struct crtc_private *crtcp = crtc->driver_private;
189 struct pipe_transfer *transfer;
190
191 if (!crtcp->cursor_tex) {
192 struct pipe_texture templat;
193 unsigned pitch;
194
195 memset(&templat, 0, sizeof(templat));
196 templat.tex_usage |= PIPE_TEXTURE_USAGE_RENDER_TARGET;
197 templat.tex_usage |= PIPE_TEXTURE_USAGE_PRIMARY;
198 templat.target = PIPE_TEXTURE_2D;
199 templat.last_level = 0;
200 templat.depth0 = 1;
201 templat.format = PIPE_FORMAT_A8R8G8B8_UNORM;
202 templat.width0 = 64;
203 templat.height0 = 64;
204 util_format_get_block(templat.format, &templat.block);
205
206 crtcp->cursor_tex = ms->screen->texture_create(ms->screen,
207 &templat);
208 ms->api->local_handle_from_texture(ms->api,
209 ms->screen,
210 crtcp->cursor_tex,
211 &pitch,
212 &crtcp->cursor_handle);
213 }
214
215 transfer = ms->screen->get_tex_transfer(ms->screen, crtcp->cursor_tex,
216 0, 0, 0,
217 PIPE_TRANSFER_WRITE,
218 0, 0, 64, 64);
219 ptr = ms->screen->transfer_map(ms->screen, transfer);
220 util_copy_rect(ptr, &crtcp->cursor_tex->block,
221 transfer->stride, 0, 0,
222 64, 64, (void*)image, 64 * 4, 0, 0);
223 ms->screen->transfer_unmap(ms->screen, transfer);
224 ms->screen->tex_transfer_destroy(transfer);
225 }
226
227 #if HAVE_LIBKMS
228 static void
229 crtc_load_cursor_argb_kms(xf86CrtcPtr crtc, CARD32 * image)
230 {
231 modesettingPtr ms = modesettingPTR(crtc->scrn);
232 struct crtc_private *crtcp = crtc->driver_private;
233 unsigned char *ptr;
234
235 if (!crtcp->cursor_bo) {
236 unsigned attr[8];
237
238 attr[0] = KMS_BO_TYPE;
239 attr[1] = KMS_BO_TYPE_CURSOR;
240 attr[2] = KMS_WIDTH;
241 attr[3] = 64;
242 attr[4] = KMS_HEIGHT;
243 attr[5] = 64;
244 attr[6] = 0;
245
246 if (kms_bo_create(ms->kms, attr, &crtcp->cursor_bo))
247 return;
248
249 if (kms_bo_get_prop(crtcp->cursor_bo, KMS_HANDLE,
250 &crtcp->cursor_handle))
251 goto err_bo_destroy;
252 }
253
254 kms_bo_map(crtcp->cursor_bo, (void**)&ptr);
255 memcpy(ptr, image, 64*64*4);
256 kms_bo_unmap(crtcp->cursor_bo);
257
258 return;
259
260 err_bo_destroy:
261 kms_bo_destroy(crtcp->cursor_bo);
262 }
263 #endif
264
265 static void
266 crtc_load_cursor_argb(xf86CrtcPtr crtc, CARD32 * image)
267 {
268 modesettingPtr ms = modesettingPTR(crtc->scrn);
269 if (ms->screen)
270 crtc_load_cursor_argb_ga3d(crtc, image);
271 #ifdef HAVE_LIBKMS
272 else if (ms->kms)
273 crtc_load_cursor_argb_kms(crtc, image);
274 #endif
275 }
276
277 static void
278 crtc_show_cursor(xf86CrtcPtr crtc)
279 {
280 modesettingPtr ms = modesettingPTR(crtc->scrn);
281 struct crtc_private *crtcp = crtc->driver_private;
282
283 if (crtcp->cursor_tex || crtcp->cursor_bo)
284 drmModeSetCursor(ms->fd, crtcp->drm_crtc->crtc_id,
285 crtcp->cursor_handle, 64, 64);
286 }
287
288 static void
289 crtc_hide_cursor(xf86CrtcPtr crtc)
290 {
291 modesettingPtr ms = modesettingPTR(crtc->scrn);
292 struct crtc_private *crtcp = crtc->driver_private;
293
294 drmModeSetCursor(ms->fd, crtcp->drm_crtc->crtc_id, 0, 0, 0);
295 }
296
297 /**
298 * Called at vt leave
299 */
300 void
301 xorg_crtc_cursor_destroy(xf86CrtcPtr crtc)
302 {
303 struct crtc_private *crtcp = crtc->driver_private;
304
305 if (crtcp->cursor_tex)
306 pipe_texture_reference(&crtcp->cursor_tex, NULL);
307 #ifdef HAVE_LIBKMS
308 if (crtcp->cursor_bo)
309 kms_bo_destroy(crtcp->cursor_bo);
310 #endif
311
312 xfree(crtcp);
313 }
314
315 /*
316 * Misc functions
317 */
318
319 static void
320 crtc_destroy(xf86CrtcPtr crtc)
321 {
322 struct crtc_private *crtcp = crtc->driver_private;
323
324 if (crtcp->cursor_tex)
325 pipe_texture_reference(&crtcp->cursor_tex, NULL);
326
327 drmModeFreeCrtc(crtcp->drm_crtc);
328 xfree(crtcp);
329 }
330
331 static const xf86CrtcFuncsRec crtc_funcs = {
332 .dpms = crtc_dpms,
333 .set_mode_major = crtc_set_mode_major,
334
335 .set_cursor_colors = crtc_set_cursor_colors,
336 .set_cursor_position = crtc_set_cursor_position,
337 .show_cursor = crtc_show_cursor,
338 .hide_cursor = crtc_hide_cursor,
339 .load_cursor_argb = crtc_load_cursor_argb,
340
341 .shadow_create = crtc_shadow_create,
342 .shadow_allocate = crtc_shadow_allocate,
343 .shadow_destroy = crtc_shadow_destroy,
344
345 .gamma_set = crtc_gamma_set,
346 .destroy = crtc_destroy,
347 };
348
349 void
350 xorg_crtc_init(ScrnInfoPtr pScrn)
351 {
352 modesettingPtr ms = modesettingPTR(pScrn);
353 xf86CrtcPtr crtc;
354 drmModeResPtr res;
355 drmModeCrtcPtr drm_crtc = NULL;
356 struct crtc_private *crtcp;
357 int c;
358
359 res = drmModeGetResources(ms->fd);
360 if (res == 0) {
361 ErrorF("Failed drmModeGetResources %d\n", errno);
362 return;
363 }
364
365 for (c = 0; c < res->count_crtcs; c++) {
366 drm_crtc = drmModeGetCrtc(ms->fd, res->crtcs[c]);
367
368 if (!drm_crtc)
369 continue;
370
371 crtc = xf86CrtcCreate(pScrn, &crtc_funcs);
372 if (crtc == NULL)
373 goto out;
374
375 crtcp = xcalloc(1, sizeof(struct crtc_private));
376 if (!crtcp) {
377 xf86CrtcDestroy(crtc);
378 goto out;
379 }
380
381 crtcp->drm_crtc = drm_crtc;
382
383 crtc->driver_private = crtcp;
384 }
385
386 out:
387 drmModeFreeResources(res);
388 }
389
390 /* vim: set sw=4 ts=8 sts=4: */