1
|
1 /*
|
|
2 * video_out_3dfx.c
|
|
3 *
|
|
4 * Copyright (C) Colin Cross Apr 2000
|
|
5 *
|
|
6 * This file heavily based off of video_out_mga.c of Aaron Holtzman's
|
|
7 * mpeg2dec
|
|
8 *
|
|
9 * mpeg2dec is free software; you can redistribute it and/or modify
|
|
10 * it under the terms of the GNU General Public License as published by
|
|
11 * the Free Software Foundation; either version 2, or (at your option)
|
|
12 * any later version.
|
|
13 *
|
|
14 * mpeg2dec is distributed in the hope that it will be useful,
|
|
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 * GNU General Public License for more details.
|
|
18 *
|
|
19 * You should have received a copy of the GNU General Public License
|
|
20 * along with GNU Make; see the file COPYING. If not, write to
|
|
21 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
22 *
|
|
23 */
|
|
24
|
|
25 #include <stdio.h>
|
|
26 #include <stdlib.h>
|
|
27 #include <string.h>
|
|
28
|
|
29 #include "config.h"
|
|
30 #include "video_out.h"
|
|
31 #include "video_out_internal.h"
|
|
32
|
|
33 LIBVO_EXTERN(3dfx)
|
|
34
|
|
35 #include <sys/ioctl.h>
|
|
36 #include <unistd.h>
|
|
37 #include <fcntl.h>
|
|
38 #include <sys/mman.h>
|
|
39 #include <errno.h>
|
|
40 #include <wchar.h>
|
|
41 #include <signal.h>
|
|
42
|
|
43 #include <X11/Xlib.h>
|
|
44 #include <X11/extensions/xf86dga.h>
|
|
45 #include <X11/Xutil.h>
|
|
46
|
|
47 //#define LOG(x) syslog(LOG_USER | LOG_DEBUG,x)
|
|
48 #define LOG(x)
|
|
49
|
|
50 #include "drivers/3dfx.h"
|
|
51
|
354
|
52 #include "fastmemcpy.h"
|
350
|
53
|
1
|
54 static vo_info_t vo_info =
|
|
55 {
|
|
56 "3dfx (/dev/3dfx)",
|
|
57 "3dfx",
|
|
58 "Colin Cross <colin@MIT.EDU>",
|
|
59 ""
|
|
60 };
|
|
61
|
|
62 static uint32_t is_fullscreen = 1;
|
|
63
|
|
64 static uint32_t vidwidth;
|
|
65 static uint32_t vidheight;
|
|
66
|
|
67 static uint32_t screenwidth;
|
|
68 static uint32_t screenheight;
|
|
69 static uint32_t screendepth = 2; //Only 16bpp supported right now
|
|
70
|
|
71 static uint32_t dispwidth = 1280; // You can change these to whatever you want
|
|
72 static uint32_t dispheight = 720; // 16:9 screen ratio??
|
|
73 static uint32_t dispx;
|
|
74 static uint32_t dispy;
|
|
75
|
|
76 static uint32_t *vidpage0;
|
|
77 static uint32_t *vidpage1;
|
|
78 static uint32_t *vidpage2;
|
|
79
|
|
80 static uint32_t vidpage0offset;
|
|
81 static uint32_t vidpage1offset;
|
|
82 static uint32_t vidpage2offset;
|
|
83
|
|
84 // Current pointer into framebuffer where display is located
|
|
85 static uint32_t targetoffset;
|
|
86
|
|
87 static uint32_t page_space;
|
|
88
|
|
89 static voodoo_io_reg *reg_IO;
|
|
90 static voodoo_2d_reg *reg_2d;
|
|
91 static voodoo_yuv_reg *reg_YUV;
|
|
92 static voodoo_yuv_fb *fb_YUV;
|
|
93
|
|
94 static uint32_t *memBase0, *memBase1;
|
|
95 static uint32_t baseAddr0, baseAddr1;
|
|
96
|
|
97
|
|
98 /* X11 related variables */
|
|
99 static Display *display;
|
|
100 static Window mywindow;
|
|
101 static int bpp;
|
|
102 static XWindowAttributes attribs;
|
|
103 static int X_already_started = 0;
|
|
104
|
|
105
|
|
106 static void
|
|
107 restore(void)
|
|
108 {
|
|
109 //reg_IO->vidDesktopStartAddr = vidpage0offset;
|
|
110 XF86DGADirectVideo(display,0,0);
|
|
111 }
|
|
112
|
|
113 static void
|
|
114 sighup(int foo)
|
|
115 {
|
|
116 //reg_IO->vidDesktopStartAddr = vidpage0offset;
|
|
117 XF86DGADirectVideo(display,0,0);
|
|
118 exit(0);
|
|
119 }
|
|
120
|
|
121 static void
|
|
122 restore_regs(voodoo_2d_reg *regs)
|
|
123 {
|
|
124 reg_2d->commandExtra = regs->commandExtra;
|
|
125 reg_2d->clip0Min = regs->clip0Min;
|
|
126 reg_2d->clip0Max = regs->clip0Max;
|
|
127
|
|
128 reg_2d->srcBaseAddr = regs->srcBaseAddr;
|
|
129 reg_2d->srcXY = regs->srcXY;
|
|
130 reg_2d->srcFormat = regs->srcFormat;
|
|
131 reg_2d->srcSize = regs->srcSize;
|
|
132
|
|
133 reg_2d->dstBaseAddr = regs->dstBaseAddr;
|
|
134 reg_2d->dstXY = regs->dstXY;
|
|
135 reg_2d->dstFormat = regs->dstFormat;
|
|
136
|
|
137 reg_2d->dstSize = regs->dstSize;
|
|
138 reg_2d->command = 0;
|
|
139 }
|
|
140
|
|
141 static uint32_t
|
|
142 create_window(Display *display)
|
|
143 {
|
|
144 int screen;
|
|
145 unsigned int fg, bg;
|
|
146 char *hello = "I hate X11";
|
|
147 XSizeHints hint;
|
|
148 XVisualInfo vinfo;
|
|
149 XEvent xev;
|
|
150
|
|
151 Colormap theCmap;
|
|
152 XSetWindowAttributes xswa;
|
|
153 unsigned long xswamask;
|
|
154
|
|
155 if (X_already_started)
|
|
156 return -1;
|
|
157
|
|
158 screen = DefaultScreen(display);
|
|
159
|
|
160 hint.x = 0;
|
|
161 hint.y = 10;
|
|
162 hint.width = dispwidth;
|
|
163 hint.height = dispheight;
|
|
164 hint.flags = PPosition | PSize;
|
|
165
|
|
166 bg = WhitePixel(display, screen);
|
|
167 fg = BlackPixel(display, screen);
|
|
168
|
|
169 XGetWindowAttributes(display, DefaultRootWindow(display), &attribs);
|
|
170 bpp = attribs.depth;
|
|
171 if (bpp != 16)
|
|
172 {
|
|
173 fprintf(stderr,"Only 16bpp supported!");
|
|
174 exit(-1);
|
|
175 }
|
|
176
|
|
177 XMatchVisualInfo(display,screen,bpp,TrueColor,&vinfo);
|
|
178 printf("visual id is %lx\n",vinfo.visualid);
|
|
179
|
|
180 theCmap = XCreateColormap(display, RootWindow(display,screen),
|
|
181 vinfo.visual, AllocNone);
|
|
182
|
|
183 xswa.background_pixel = 0;
|
|
184 xswa.border_pixel = 1;
|
|
185 xswa.colormap = theCmap;
|
|
186 xswamask = CWBackPixel | CWBorderPixel |CWColormap;
|
|
187
|
|
188
|
|
189 mywindow = XCreateWindow(display, RootWindow(display,screen),
|
|
190 hint.x, hint.y, hint.width, hint.height, 4, bpp,CopyFromParent,vinfo.visual,xswamask,&xswa);
|
|
191
|
|
192 XSelectInput(display, mywindow, StructureNotifyMask);
|
|
193
|
|
194 /* Tell other applications about this window */
|
|
195
|
|
196 XSetStandardProperties(display, mywindow, hello, hello, None, NULL, 0, &hint);
|
|
197
|
|
198 /* Map window. */
|
|
199
|
|
200 XMapWindow(display, mywindow);
|
|
201
|
|
202 /* Wait for map. */
|
|
203 do
|
|
204 {
|
|
205 XNextEvent(display, &xev);
|
|
206 }
|
|
207 while (xev.type != MapNotify || xev.xmap.event != mywindow);
|
|
208
|
|
209 XSelectInput(display, mywindow, NoEventMask);
|
|
210
|
|
211 XFlush(display);
|
|
212 XSync(display, False);
|
|
213
|
|
214 X_already_started++;
|
|
215 return 0;
|
|
216 }
|
|
217
|
|
218 static void
|
|
219 dump_yuv_planar(uint32_t *y, uint32_t *u, uint32_t *v, uint32_t to, uint32_t width, uint32_t height)
|
|
220 {
|
|
221 // YUV conversion works like this:
|
|
222 //
|
|
223 // We write the Y, U, and V planes separately into 3dfx YUV Planar memory
|
|
224 // region. The nice chip then takes these and packs them into the YUYV
|
|
225 // format in the regular frame buffer, starting at yuvBaseAddr, page 2 here.
|
|
226 // Then we tell the 3dfx to do a Screen to Screen Stretch BLT to copy all
|
|
227 // of the data on page 2 onto page 1, converting it to 16 bpp RGB as it goes.
|
|
228 // The result is a nice image on page 1 ready for display.
|
|
229
|
|
230 uint32_t j;
|
|
231 uint32_t y_imax, uv_imax, jmax;
|
|
232
|
|
233 reg_YUV->yuvBaseAddr = to;
|
|
234 reg_YUV->yuvStride = screenwidth*2;
|
|
235
|
|
236 LOG("video_out_3dfx: starting planar dump\n");
|
|
237 jmax = height>>1; // vidheight/2, height of U and V planes
|
|
238 y_imax = width; // Y plane is twice as wide as U and V planes
|
|
239 uv_imax = width>>1; // vidwidth/2/4, width of U and V planes in 32-bit words
|
|
240
|
|
241 for (j=0;j<jmax;j++)
|
|
242 {
|
|
243 //XXX this should be hand-rolled 32 bit memcpy for safeness.
|
|
244 memcpy(fb_YUV->U + (uint32_t) VOODOO_YUV_STRIDE* j ,((uint8_t*) u) + uv_imax* j , uv_imax);
|
|
245 memcpy(fb_YUV->V + (uint32_t) VOODOO_YUV_STRIDE* j ,((uint8_t*) v) + uv_imax* j , uv_imax);
|
|
246 memcpy(fb_YUV->Y + (uint32_t) VOODOO_YUV_STRIDE* (j<<1) ,((uint8_t*) y) + y_imax * (j<<1) , y_imax);
|
|
247 memcpy(fb_YUV->Y + (uint32_t) VOODOO_YUV_STRIDE*((j<<1)+1),((uint8_t*) y) + y_imax *((j<<1)+1), y_imax);
|
|
248 }
|
|
249 LOG("video_out_3dfx: done planar dump\n");
|
|
250 }
|
|
251
|
|
252 static void
|
|
253 screen_to_screen_stretch_blt(uint32_t to, uint32_t from, uint32_t width, uint32_t height)
|
|
254 {
|
|
255 //FIXME - this function should be called by a show_frame function that
|
|
256 // uses a series of blts to show only those areas not covered
|
|
257 // by another window
|
|
258 voodoo_2d_reg saved_regs;
|
|
259
|
|
260 LOG("video_out_3dfx: saving registers\n");
|
|
261 // Save VGA regs (so X kinda works when we're done)
|
|
262 saved_regs = *reg_2d;
|
|
263
|
|
264 /* The following lines set up the screen to screen stretch blt from page2 to
|
|
265 page 1
|
|
266 */
|
|
267
|
|
268 LOG("video_out_3dfx: setting blt registers\n");
|
|
269 reg_2d->commandExtra = 4; //disable colorkeying, enable wait for v-refresh (0100b)
|
|
270 reg_2d->clip0Min = 0;
|
|
271 reg_2d->clip0Max = 0xFFFFFFFF; //no clipping
|
|
272
|
|
273 reg_2d->srcBaseAddr = from;
|
|
274 reg_2d->srcXY = 0;
|
|
275 reg_2d->srcFormat = screenwidth*2 | VOODOO_BLT_FORMAT_YUYV; // | 1<<21;
|
|
276 reg_2d->srcSize = vidwidth | (vidheight << 16);
|
|
277
|
|
278 reg_2d->dstBaseAddr = to;
|
|
279 reg_2d->dstXY = 0;
|
|
280 reg_2d->dstFormat = screenwidth*2 | VOODOO_BLT_FORMAT_16;
|
|
281
|
|
282 reg_2d->dstSize = width | (height << 16);
|
|
283
|
|
284 LOG("video_out_3dfx: starting blt\n");
|
|
285 // Executes screen to screen stretch blt
|
|
286 reg_2d->command = 2 | 1<<8 | 0xCC<<24;
|
|
287
|
|
288 LOG("video_out_3dfx: restoring regs\n");
|
|
289 restore_regs(&saved_regs);
|
|
290
|
|
291 LOG("video_out_3dfx: done blt\n");
|
|
292 }
|
|
293
|
|
294 static void
|
|
295 update_target(void)
|
|
296 {
|
|
297 uint32_t xp, yp, w, h, b, d;
|
|
298 Window root;
|
|
299
|
|
300 XGetGeometry(display,mywindow,&root,&xp,&yp,&w,&h,&b,&d);
|
|
301 XTranslateCoordinates(display,mywindow,root,0,0,&xp,&yp,&root);
|
|
302 dispx = (uint32_t) xp;
|
|
303 dispy = (uint32_t) yp;
|
|
304 dispwidth = (uint32_t) w;
|
|
305 dispheight = (uint32_t) h;
|
|
306
|
|
307 if (is_fullscreen)
|
|
308 targetoffset = vidpage0offset + (screenheight - dispheight)/2*screenwidth*screendepth + (screenwidth-dispwidth)/2*screendepth;
|
|
309 else
|
|
310 targetoffset = vidpage0offset + (dispy*screenwidth + dispx)*screendepth;
|
|
311 }
|
|
312
|
|
313 static uint32_t
|
|
314 init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format)
|
|
315 {
|
|
316 int fd;
|
|
317 char *name = ":0.0";
|
|
318 pioData data;
|
|
319 uint32_t retval;
|
|
320
|
|
321 if(getenv("DISPLAY"))
|
|
322 name = getenv("DISPLAY");
|
|
323 display = XOpenDisplay(name);
|
|
324
|
|
325 screenwidth = XDisplayWidth(display,0);
|
|
326 screenheight = XDisplayHeight(display,0);
|
|
327
|
|
328 page_space = screenwidth*screenheight*screendepth;
|
|
329 vidpage0offset = 0;
|
|
330 vidpage1offset = page_space; // Use third and fourth pages
|
|
331 vidpage2offset = page_space*2;
|
|
332
|
|
333 signal(SIGALRM,sighup);
|
|
334 //alarm(120);
|
|
335
|
|
336 // Open driver device
|
|
337 if ( (fd = open("/dev/3dfx",O_RDWR) ) == -1)
|
|
338 {
|
|
339 fprintf(stderr,"Couldn't open /dev/3dfx\n");
|
|
340 exit(1);
|
|
341 }
|
|
342
|
|
343 // Store sizes for later
|
|
344 vidwidth = width;
|
|
345 vidheight = height;
|
|
346
|
|
347 is_fullscreen = fullscreen = 0;
|
|
348 if (!is_fullscreen)
|
|
349 create_window(display);
|
|
350
|
|
351 // Ask 3dfx driver for base memory address 0
|
|
352 data.port = 0x10; // PCI_BASE_ADDRESS_0_LINUX;
|
|
353 data.size = 4;
|
|
354 data.value = &baseAddr0;
|
|
355 data.device = 0;
|
|
356 if ((retval = ioctl(fd,_IOC(_IOC_READ,'3',3,0),&data)) < 0)
|
|
357 {
|
|
358 printf("Error: %d\n",retval);
|
|
359 //return -1;
|
|
360 }
|
|
361
|
|
362 // Ask 3dfx driver for base memory address 1
|
|
363 data.port = 0x14; // PCI_BASE_ADDRESS_1_LINUX;
|
|
364 data.size = 4;
|
|
365 data.value = &baseAddr1;
|
|
366 data.device = 0;
|
|
367 if ((retval = ioctl(fd,_IOC(_IOC_READ,'3',3,0),&data)) < 0)
|
|
368 {
|
|
369 printf("Error: %d\n",retval);
|
|
370 //return -1;
|
|
371 }
|
|
372
|
|
373 // Map all 3dfx memory areas
|
|
374 memBase0 = mmap(0,0x1000000,PROT_READ | PROT_WRITE,MAP_SHARED,fd,baseAddr0);
|
|
375 memBase1 = mmap(0,3*page_space,PROT_READ | PROT_WRITE,MAP_SHARED,fd,baseAddr1);
|
|
376 if (memBase0 == (uint32_t *) 0xFFFFFFFF || memBase1 == (uint32_t *) 0xFFFFFFFF)
|
|
377 {
|
|
378 printf("Couldn't map 3dfx memory areas: %p,%p,%d\n",
|
|
379 memBase0,memBase1,errno);
|
|
380 }
|
|
381
|
|
382 // Set up global pointers
|
|
383 reg_IO = (void *)memBase0 + VOODOO_IO_REG_OFFSET;
|
|
384 reg_2d = (void *)memBase0 + VOODOO_2D_REG_OFFSET;
|
|
385 reg_YUV = (void *)memBase0 + VOODOO_YUV_REG_OFFSET;
|
|
386 fb_YUV = (void *)memBase0 + VOODOO_YUV_PLANE_OFFSET;
|
|
387
|
|
388 vidpage0 = (void *)memBase1 + (unsigned long int)vidpage0offset;
|
|
389 vidpage1 = (void *)memBase1 + (unsigned long int)vidpage1offset;
|
|
390 vidpage2 = (void *)memBase1 + (unsigned long int)vidpage2offset;
|
|
391
|
|
392 // Clear pages 1,2,3
|
|
393 // leave page 0, that belongs to X.
|
|
394 // So does part of 1. Oops.
|
|
395 memset(vidpage1,0x00,page_space);
|
|
396 memset(vidpage2,0x00,page_space);
|
|
397
|
|
398 if (is_fullscreen)
|
|
399 memset(vidpage0,0x00,page_space);
|
|
400
|
|
401
|
|
402 #ifndef VOODOO_DEBUG
|
|
403 // Show page 0 (unblanked)
|
|
404 reg_IO->vidDesktopStartAddr = vidpage0offset;
|
|
405
|
|
406 /* Stop X from messing with my video registers!
|
|
407 Find a better way to do this?
|
|
408 Currently I use DGA to tell XF86 to not screw with registers, but I can't really use it
|
|
409 to do FB stuff because I need to know the absolute FB position and offset FB position
|
|
410 to feed to BLT command
|
|
411 */
|
|
412 //XF86DGADirectVideo(display,0,XF86DGADirectGraphics); //| XF86DGADirectMouse | XF86DGADirectKeyb);
|
|
413 #endif
|
|
414
|
|
415 /* fd is deliberately not closed - if it were, mmaps might be released??? */
|
|
416
|
|
417 atexit(restore);
|
|
418
|
|
419 printf("(display) 3dfx initialized %p\n",memBase1);
|
|
420 return 0;
|
|
421 }
|
|
422
|
|
423 static const vo_info_t*
|
|
424 get_info(void)
|
|
425 {
|
|
426 return &vo_info;
|
|
427 }
|
|
428
|
|
429 static uint32_t
|
|
430 draw_frame(uint8_t *src[])
|
|
431 {
|
|
432 LOG("video_out_3dfx: starting display_frame\n");
|
|
433
|
|
434 // Put packed data onto page 2
|
|
435 dump_yuv_planar((uint32_t *)src[0],(uint32_t *)src[1],(uint32_t *)src[2],
|
|
436 vidpage2offset,vidwidth,vidheight);
|
|
437
|
|
438 LOG("video_out_3dfx: done display_frame\n");
|
|
439 return 0;
|
|
440 }
|
|
441
|
|
442 static uint32_t
|
|
443 draw_slice(uint8_t *src[], uint32_t slice_num)
|
|
444 {
|
|
445 uint32_t target;
|
|
446
|
|
447 target = vidpage2offset + (screenwidth*2 * 16*slice_num);
|
|
448 dump_yuv_planar((uint32_t *)src[0],(uint32_t *)src[1],(uint32_t *)src[2],target,vidwidth,16);
|
|
449 return 0;
|
|
450 }
|
|
451
|
|
452 static void
|
|
453 flip_page(void)
|
|
454 {
|
|
455 //FIXME - update_target() should be called by event handler when window
|
|
456 // is resized or moved
|
|
457 update_target();
|
|
458 LOG("video_out_3dfx: calling blt function\n");
|
|
459 screen_to_screen_stretch_blt(targetoffset, vidpage2offset, dispwidth, dispheight);
|
|
460 }
|
|
461
|
|
462 static uint32_t
|
|
463 query_format(uint32_t format)
|
|
464 {
|
|
465 switch(format){
|
|
466 case IMGFMT_YV12:
|
|
467 // case IMGFMT_YUY2:
|
|
468 // case IMGFMT_RGB|24:
|
|
469 // case IMGFMT_BGR|24:
|
|
470 return 1;
|
|
471 }
|
|
472 return 0;
|
|
473 }
|
|
474
|
|
475 static void
|
|
476 uninit(void)
|
|
477 {
|
|
478 }
|
|
479
|
|
480
|
31
|
481 static void check_events(void)
|
|
482 {
|
|
483 }
|
|
484
|
|
485
|