Merge branch 'lp-offset-twoside'
[mesa.git] / src / gallium / state_trackers / egl / fbdev / native_fbdev.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.9
4 *
5 * Copyright (C) 2010 LunarG Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Chia-I Wu <olv@lunarg.com>
27 */
28
29 #include <sys/ioctl.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <linux/fb.h>
34
35 #include "pipe/p_screen.h"
36 #include "util/u_memory.h"
37 #include "util/u_inlines.h"
38 #include "util/u_pointer.h"
39
40 #include "common/native.h"
41 #include "common/native_helper.h"
42 #include "fbdev/fbdev_sw_winsys.h"
43
44 struct fbdev_display {
45 struct native_display base;
46
47 int fd;
48 struct native_event_handler *event_handler;
49
50 struct fb_fix_screeninfo finfo;
51 struct fb_var_screeninfo vinfo;
52
53 struct native_config config;
54 struct native_connector connector;
55 struct native_mode mode;
56
57 struct fbdev_surface *current_surface;
58 };
59
60 struct fbdev_surface {
61 struct native_surface base;
62
63 struct fbdev_display *fbdpy;
64 struct resource_surface *rsurf;
65 int width, height;
66
67 unsigned int sequence_number;
68
69 boolean is_current;
70 };
71
72 static INLINE struct fbdev_display *
73 fbdev_display(const struct native_display *ndpy)
74 {
75 return (struct fbdev_display *) ndpy;
76 }
77
78 static INLINE struct fbdev_surface *
79 fbdev_surface(const struct native_surface *nsurf)
80 {
81 return (struct fbdev_surface *) nsurf;
82 }
83
84 static boolean
85 fbdev_surface_validate(struct native_surface *nsurf, uint attachment_mask,
86 unsigned int *seq_num, struct pipe_resource **textures,
87 int *width, int *height)
88 {
89 struct fbdev_surface *fbsurf = fbdev_surface(nsurf);
90
91 if (!resource_surface_add_resources(fbsurf->rsurf, attachment_mask))
92 return FALSE;
93 if (textures)
94 resource_surface_get_resources(fbsurf->rsurf, textures, attachment_mask);
95
96 if (seq_num)
97 *seq_num = fbsurf->sequence_number;
98 if (width)
99 *width = fbsurf->width;
100 if (height)
101 *height = fbsurf->height;
102
103 return TRUE;
104 }
105
106 static boolean
107 fbdev_surface_flush_frontbuffer(struct native_surface *nsurf)
108 {
109 struct fbdev_surface *fbsurf = fbdev_surface(nsurf);
110
111 if (!fbsurf->is_current)
112 return TRUE;
113
114 return resource_surface_present(fbsurf->rsurf,
115 NATIVE_ATTACHMENT_FRONT_LEFT, NULL);
116 }
117
118 static boolean
119 fbdev_surface_swap_buffers(struct native_surface *nsurf)
120 {
121 struct fbdev_surface *fbsurf = fbdev_surface(nsurf);
122 struct fbdev_display *fbdpy = fbsurf->fbdpy;
123 boolean ret = TRUE;
124
125 if (fbsurf->is_current) {
126 ret = resource_surface_present(fbsurf->rsurf,
127 NATIVE_ATTACHMENT_BACK_LEFT, NULL);
128 }
129
130 resource_surface_swap_buffers(fbsurf->rsurf,
131 NATIVE_ATTACHMENT_FRONT_LEFT, NATIVE_ATTACHMENT_BACK_LEFT, TRUE);
132 /* the front/back textures are swapped */
133 fbsurf->sequence_number++;
134 fbdpy->event_handler->invalid_surface(&fbdpy->base,
135 &fbsurf->base, fbsurf->sequence_number);
136
137 return ret;
138 }
139
140 static boolean
141 fbdev_surface_present(struct native_surface *nsurf,
142 enum native_attachment natt,
143 boolean preserve,
144 uint swap_interval)
145 {
146 boolean ret;
147
148 if (preserve || swap_interval)
149 return FALSE;
150
151 switch (natt) {
152 case NATIVE_ATTACHMENT_FRONT_LEFT:
153 ret = fbdev_surface_flush_frontbuffer(nsurf);
154 break;
155 case NATIVE_ATTACHMENT_BACK_LEFT:
156 ret = fbdev_surface_swap_buffers(nsurf);
157 break;
158 default:
159 ret = FALSE;
160 break;
161 }
162
163 return ret;
164 }
165
166 static void
167 fbdev_surface_wait(struct native_surface *nsurf)
168 {
169 /* no-op */
170 }
171
172 static void
173 fbdev_surface_destroy(struct native_surface *nsurf)
174 {
175 struct fbdev_surface *fbsurf = fbdev_surface(nsurf);
176
177 resource_surface_destroy(fbsurf->rsurf);
178 FREE(fbsurf);
179 }
180
181 static struct native_surface *
182 fbdev_display_create_scanout_surface(struct native_display *ndpy,
183 const struct native_config *nconf,
184 uint width, uint height)
185 {
186 struct fbdev_display *fbdpy = fbdev_display(ndpy);
187 struct fbdev_surface *fbsurf;
188
189 fbsurf = CALLOC_STRUCT(fbdev_surface);
190 if (!fbsurf)
191 return NULL;
192
193 fbsurf->fbdpy = fbdpy;
194 fbsurf->width = width;
195 fbsurf->height = height;
196
197 fbsurf->rsurf = resource_surface_create(fbdpy->base.screen,
198 nconf->color_format,
199 PIPE_BIND_RENDER_TARGET |
200 PIPE_BIND_DISPLAY_TARGET |
201 PIPE_BIND_SCANOUT);
202 if (!fbsurf->rsurf) {
203 FREE(fbsurf);
204 return NULL;
205 }
206
207 resource_surface_set_size(fbsurf->rsurf, fbsurf->width, fbsurf->height);
208
209 fbsurf->base.destroy = fbdev_surface_destroy;
210 fbsurf->base.present = fbdev_surface_present;
211 fbsurf->base.validate = fbdev_surface_validate;
212 fbsurf->base.wait = fbdev_surface_wait;
213
214 return &fbsurf->base;
215 }
216
217 static boolean
218 fbdev_display_program(struct native_display *ndpy, int crtc_idx,
219 struct native_surface *nsurf, uint x, uint y,
220 const struct native_connector **nconns, int num_nconns,
221 const struct native_mode *nmode)
222 {
223 struct fbdev_display *fbdpy = fbdev_display(ndpy);
224 struct fbdev_surface *fbsurf = fbdev_surface(nsurf);
225
226 if (x || y)
227 return FALSE;
228
229 if (fbdpy->current_surface) {
230 if (fbdpy->current_surface == fbsurf)
231 return TRUE;
232 fbdpy->current_surface->is_current = FALSE;
233 }
234
235 if (fbsurf)
236 fbsurf->is_current = TRUE;
237 fbdpy->current_surface = fbsurf;
238
239 return TRUE;
240 }
241
242 static const struct native_mode **
243 fbdev_display_get_modes(struct native_display *ndpy,
244 const struct native_connector *nconn,
245 int *num_modes)
246 {
247 struct fbdev_display *fbdpy = fbdev_display(ndpy);
248 const struct native_mode **modes;
249
250 modes = MALLOC(sizeof(*modes));
251 if (modes) {
252 modes[0] = &fbdpy->mode;
253 if (num_modes)
254 *num_modes = 1;
255 }
256
257 return modes;
258 }
259
260 static const struct native_connector **
261 fbdev_display_get_connectors(struct native_display *ndpy, int *num_connectors,
262 int *num_crtc)
263 {
264 struct fbdev_display *fbdpy = fbdev_display(ndpy);
265 const struct native_connector **connectors;
266
267 connectors = MALLOC(sizeof(*connectors));
268 if (connectors) {
269 connectors[0] = &fbdpy->connector;
270 if (num_connectors)
271 *num_connectors = 1;
272 }
273
274 return connectors;
275 }
276
277 static struct native_display_modeset fbdev_display_modeset = {
278 .get_connectors = fbdev_display_get_connectors,
279 .get_modes = fbdev_display_get_modes,
280 .create_scanout_surface = fbdev_display_create_scanout_surface,
281 .program = fbdev_display_program
282 };
283
284 static const struct native_config **
285 fbdev_display_get_configs(struct native_display *ndpy, int *num_configs)
286 {
287 struct fbdev_display *fbdpy = fbdev_display(ndpy);
288 const struct native_config **configs;
289
290 configs = MALLOC(sizeof(*configs));
291 if (configs) {
292 configs[0] = &fbdpy->config;
293 if (num_configs)
294 *num_configs = 1;
295 }
296
297 return configs;
298 }
299
300 static int
301 fbdev_display_get_param(struct native_display *ndpy,
302 enum native_param_type param)
303 {
304 int val;
305
306 switch (param) {
307 case NATIVE_PARAM_USE_NATIVE_BUFFER:
308 case NATIVE_PARAM_PRESERVE_BUFFER:
309 case NATIVE_PARAM_MAX_SWAP_INTERVAL:
310 default:
311 val = 0;
312 break;
313 }
314
315 return val;
316 }
317
318 static void
319 fbdev_display_destroy(struct native_display *ndpy)
320 {
321 struct fbdev_display *fbdpy = fbdev_display(ndpy);
322
323 fbdpy->base.screen->destroy(fbdpy->base.screen);
324 close(fbdpy->fd);
325 FREE(fbdpy);
326 }
327
328 static boolean
329 fbdev_display_init_modes(struct native_display *ndpy)
330 {
331 struct fbdev_display *fbdpy = fbdev_display(ndpy);
332 struct native_mode *nmode = &fbdpy->mode;
333
334 nmode->desc = "Current Mode";
335 nmode->width = fbdpy->vinfo.xres;
336 nmode->height = fbdpy->vinfo.yres;
337 nmode->refresh_rate = 60 * 1000; /* dummy */
338
339 return TRUE;
340 }
341
342 static boolean
343 fbdev_display_init_connectors(struct native_display *ndpy)
344 {
345 return TRUE;
346 }
347
348 static enum pipe_format
349 vinfo_to_format(const struct fb_var_screeninfo *vinfo)
350 {
351 enum pipe_format format = PIPE_FORMAT_NONE;
352
353 switch (vinfo->bits_per_pixel) {
354 case 32:
355 if (vinfo->red.length == 8 &&
356 vinfo->green.length == 8 &&
357 vinfo->blue.length == 8) {
358 format = (vinfo->transp.length == 8) ?
359 PIPE_FORMAT_B8G8R8A8_UNORM : PIPE_FORMAT_B8G8R8X8_UNORM;
360 }
361 break;
362 case 16:
363 if (vinfo->red.length == 5 &&
364 vinfo->green.length == 6 &&
365 vinfo->blue.length == 5 &&
366 vinfo->transp.length == 0)
367 format = PIPE_FORMAT_B5G6R5_UNORM;
368 break;
369 default:
370 break;
371 }
372
373 return format;
374 }
375
376 static boolean
377 fbdev_display_init_configs(struct native_display *ndpy)
378 {
379 struct fbdev_display *fbdpy = fbdev_display(ndpy);
380 struct native_config *nconf = &fbdpy->config;
381
382 nconf->color_format = vinfo_to_format(&fbdpy->vinfo);
383 if (nconf->color_format == PIPE_FORMAT_NONE)
384 return FALSE;
385
386 nconf->buffer_mask =
387 (1 << NATIVE_ATTACHMENT_FRONT_LEFT) |
388 (1 << NATIVE_ATTACHMENT_BACK_LEFT);
389
390 nconf->scanout_bit = TRUE;
391
392 return TRUE;
393 }
394
395 static boolean
396 fbdev_display_init(struct native_display *ndpy)
397 {
398 struct fbdev_display *fbdpy = fbdev_display(ndpy);
399 struct sw_winsys *ws;
400
401 if (ioctl(fbdpy->fd, FBIOGET_FSCREENINFO, &fbdpy->finfo))
402 return FALSE;
403
404 if (ioctl(fbdpy->fd, FBIOGET_VSCREENINFO, &fbdpy->vinfo))
405 return FALSE;
406
407 if (fbdpy->finfo.visual != FB_VISUAL_TRUECOLOR ||
408 fbdpy->finfo.type != FB_TYPE_PACKED_PIXELS)
409 return FALSE;
410
411 if (!fbdev_display_init_configs(&fbdpy->base) ||
412 !fbdev_display_init_connectors(&fbdpy->base) ||
413 !fbdev_display_init_modes(&fbdpy->base))
414 return FALSE;
415
416 ws = fbdev_create_sw_winsys(fbdpy->fd, fbdpy->config.color_format);
417 if (ws) {
418 fbdpy->base.screen =
419 fbdpy->event_handler->new_sw_screen(&fbdpy->base, ws);
420 }
421
422 if (fbdpy->base.screen) {
423 if (!fbdpy->base.screen->is_format_supported(fbdpy->base.screen,
424 fbdpy->config.color_format, PIPE_TEXTURE_2D, 0,
425 PIPE_BIND_RENDER_TARGET, 0)) {
426 fbdpy->base.screen->destroy(fbdpy->base.screen);
427 fbdpy->base.screen = NULL;
428 }
429 }
430
431 return (fbdpy->base.screen != NULL);
432 }
433
434 static struct native_display *
435 fbdev_display_create(int fd, struct native_event_handler *event_handler,
436 void *user_data)
437 {
438 struct fbdev_display *fbdpy;
439
440 fbdpy = CALLOC_STRUCT(fbdev_display);
441 if (!fbdpy)
442 return NULL;
443
444 fbdpy->fd = fd;
445 fbdpy->event_handler = event_handler;
446 fbdpy->base.user_data = user_data;
447
448 if (!fbdev_display_init(&fbdpy->base)) {
449 FREE(fbdpy);
450 return NULL;
451 }
452
453 fbdpy->base.destroy = fbdev_display_destroy;
454 fbdpy->base.get_param = fbdev_display_get_param;
455 fbdpy->base.get_configs = fbdev_display_get_configs;
456
457 fbdpy->base.modeset = &fbdev_display_modeset;
458
459 return &fbdpy->base;
460 }
461
462 static struct native_display *
463 native_create_display(void *dpy, struct native_event_handler *event_handler,
464 void *user_data)
465 {
466 struct native_display *ndpy;
467 int fd;
468
469 /* well, this makes fd 0 being ignored */
470 if (!dpy) {
471 fd = open("/dev/fb0", O_RDWR);
472 }
473 else {
474 fd = dup((int) pointer_to_intptr(dpy));
475 }
476 if (fd < 0)
477 return NULL;
478
479 ndpy = fbdev_display_create(fd, event_handler, user_data);
480 if (!ndpy)
481 close(fd);
482
483 return ndpy;
484 }
485
486 static const struct native_platform fbdev_platform = {
487 "FBDEV", /* name */
488 native_create_display
489 };
490
491 const struct native_platform *
492 native_get_fbdev_platform(void)
493 {
494 return &fbdev_platform;
495 }