3 * Heavily based on video_out_mga.c of Aaron Holtzman's mpeg2dec.
5 * Copyright (C) Colin Cross Apr 2000
7 * This file is part of MPlayer.
9 * MPlayer 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 of the License, or
12 * (at your option) any later version.
14 * MPlayer 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.
19 * You should have received a copy of the GNU General Public License along
20 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include "video_out.h"
31 #include "video_out_internal.h"
32 #include "x11_common.h"
34 #include <sys/ioctl.h>
43 #include <X11/extensions/xf86dga.h>
44 #include <X11/Xutil.h>
46 //#define LOG(x) syslog(LOG_USER | LOG_DEBUG,x)
49 #include "drivers/3dfx.h"
51 #include "fastmemcpy.h"
53 static const vo_info_t info
=
57 "Colin Cross <colin@MIT.EDU>",
61 const LIBVO_EXTERN(3dfx
)
63 static uint32_t is_fullscreen
= 1;
65 static uint32_t vidwidth
;
66 static uint32_t vidheight
;
68 static uint32_t screenwidth
;
69 static uint32_t screenheight
;
70 static uint32_t screendepth
= 2; //Only 16bpp supported right now
72 static uint32_t dispwidth
= 1280; // You can change these to whatever you want
73 static uint32_t dispheight
= 720; // 16:9 screen ratio??
74 static uint32_t dispx
;
75 static uint32_t dispy
;
77 static uint32_t *vidpage0
;
78 static uint32_t *vidpage1
;
79 static uint32_t *vidpage2
;
81 static uint32_t vidpage0offset
;
82 static uint32_t vidpage1offset
;
83 static uint32_t vidpage2offset
;
85 // Current pointer into framebuffer where display is located
86 static uint32_t targetoffset
;
88 static uint32_t page_space
;
90 static voodoo_io_reg
*reg_IO
;
91 static voodoo_2d_reg
*reg_2d
;
92 static voodoo_yuv_reg
*reg_YUV
;
93 static voodoo_yuv_fb
*fb_YUV
;
95 static uint32_t *memBase0
, *memBase1
;
96 static uint32_t baseAddr0
, baseAddr1
;
99 /* X11 related variables */
100 static Display
*display
;
101 static Window mywindow
;
103 static XWindowAttributes attribs
;
111 //reg_IO->vidDesktopStartAddr = vidpage0offset;
112 XF86DGADirectVideo(display
,0,0);
118 //reg_IO->vidDesktopStartAddr = vidpage0offset;
119 XF86DGADirectVideo(display
,0,0);
124 restore_regs(voodoo_2d_reg
*regs
)
126 reg_2d
->commandExtra
= regs
->commandExtra
;
127 reg_2d
->clip0Min
= regs
->clip0Min
;
128 reg_2d
->clip0Max
= regs
->clip0Max
;
130 reg_2d
->srcBaseAddr
= regs
->srcBaseAddr
;
131 reg_2d
->srcXY
= regs
->srcXY
;
132 reg_2d
->srcFormat
= regs
->srcFormat
;
133 reg_2d
->srcSize
= regs
->srcSize
;
135 reg_2d
->dstBaseAddr
= regs
->dstBaseAddr
;
136 reg_2d
->dstXY
= regs
->dstXY
;
137 reg_2d
->dstFormat
= regs
->dstFormat
;
139 reg_2d
->dstSize
= regs
->dstSize
;
144 create_window(Display
*display
, char *title
)
153 XSetWindowAttributes xswa
;
154 unsigned long xswamask
;
156 screen
= DefaultScreen(display
);
160 hint
.width
= dispwidth
;
161 hint
.height
= dispheight
;
162 hint
.flags
= PPosition
| PSize
;
164 bg
= WhitePixel(display
, screen
);
165 fg
= BlackPixel(display
, screen
);
167 XGetWindowAttributes(display
, DefaultRootWindow(display
), &attribs
);
171 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Only 16bpp supported!");
175 XMatchVisualInfo(display
,screen
,bpp
,TrueColor
,&vinfo
);
176 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_3DFX] Visual ID is %lx.\n",vinfo
.visualid
);
178 theCmap
= XCreateColormap(display
, RootWindow(display
,screen
),
179 vinfo
.visual
, AllocNone
);
181 xswa
.background_pixel
= 0;
182 xswa
.border_pixel
= 1;
183 xswa
.colormap
= theCmap
;
184 xswamask
= CWBackPixel
| CWBorderPixel
|CWColormap
;
187 mywindow
= XCreateWindow(display
, RootWindow(display
,screen
),
188 hint
.x
, hint
.y
, hint
.width
, hint
.height
, 4, bpp
,CopyFromParent
,vinfo
.visual
,xswamask
,&xswa
);
189 vo_x11_classhint( display
,mywindow
,"3dfx" );
191 XSelectInput(display
, mywindow
, StructureNotifyMask
);
193 /* Tell other applications about this window */
195 XSetStandardProperties(display
, mywindow
, title
, title
, None
, NULL
, 0, &hint
);
199 XMapWindow(display
, mywindow
);
204 XNextEvent(display
, &xev
);
206 while (xev
.type
!= MapNotify
|| xev
.xmap
.event
!= mywindow
);
208 XSelectInput(display
, mywindow
, NoEventMask
);
210 XSync(display
, False
);
216 dump_yuv_planar(uint32_t *y
, uint32_t *u
, uint32_t *v
, uint32_t to
, uint32_t width
, uint32_t height
)
218 // YUV conversion works like this:
220 // We write the Y, U, and V planes separately into 3dfx YUV Planar memory
221 // region. The nice chip then takes these and packs them into the YUYV
222 // format in the regular frame buffer, starting at yuvBaseAddr, page 2 here.
223 // Then we tell the 3dfx to do a Screen to Screen Stretch BLT to copy all
224 // of the data on page 2 onto page 1, converting it to 16 bpp RGB as it goes.
225 // The result is a nice image on page 1 ready for display.
228 uint32_t y_imax
, uv_imax
, jmax
;
230 reg_YUV
->yuvBaseAddr
= to
;
231 reg_YUV
->yuvStride
= screenwidth
*2;
233 LOG("video_out_3dfx: starting planar dump\n");
234 jmax
= height
>>1; // vidheight/2, height of U and V planes
235 y_imax
= width
; // Y plane is twice as wide as U and V planes
236 uv_imax
= width
>>1; // vidwidth/2/4, width of U and V planes in 32-bit words
240 //XXX this should be hand-rolled 32 bit memcpy for safeness.
241 fast_memcpy(fb_YUV
->U
+ (uint32_t) VOODOO_YUV_STRIDE
* j
,((uint8_t*) u
) + uv_imax
* j
, uv_imax
);
242 fast_memcpy(fb_YUV
->V
+ (uint32_t) VOODOO_YUV_STRIDE
* j
,((uint8_t*) v
) + uv_imax
* j
, uv_imax
);
243 fast_memcpy(fb_YUV
->Y
+ (uint32_t) VOODOO_YUV_STRIDE
* (j
<<1) ,((uint8_t*) y
) + y_imax
* (j
<<1) , y_imax
);
244 fast_memcpy(fb_YUV
->Y
+ (uint32_t) VOODOO_YUV_STRIDE
*((j
<<1)+1),((uint8_t*) y
) + y_imax
*((j
<<1)+1), y_imax
);
246 LOG("video_out_3dfx: done planar dump\n");
250 screen_to_screen_stretch_blt(uint32_t to
, uint32_t from
, uint32_t width
, uint32_t height
)
252 //FIXME - this function should be called by a show_frame function that
253 // uses a series of blts to show only those areas not covered
255 voodoo_2d_reg saved_regs
;
257 LOG("video_out_3dfx: saving registers\n");
258 // Save VGA regs (so X kinda works when we're done)
259 saved_regs
= *reg_2d
;
261 /* The following lines set up the screen to screen stretch blt from page2 to
265 LOG("video_out_3dfx: setting blt registers\n");
266 reg_2d
->commandExtra
= 4; //disable colorkeying, enable wait for v-refresh (0100b)
267 reg_2d
->clip0Min
= 0;
268 reg_2d
->clip0Max
= 0xFFFFFFFF; //no clipping
270 reg_2d
->srcBaseAddr
= from
;
272 reg_2d
->srcFormat
= screenwidth
*2 | VOODOO_BLT_FORMAT_YUYV
; // | 1<<21;
273 reg_2d
->srcSize
= vidwidth
| (vidheight
<< 16);
275 reg_2d
->dstBaseAddr
= to
;
277 reg_2d
->dstFormat
= screenwidth
*2 | VOODOO_BLT_FORMAT_16
;
279 reg_2d
->dstSize
= width
| (height
<< 16);
281 LOG("video_out_3dfx: starting blt\n");
282 // Executes screen to screen stretch blt
283 reg_2d
->command
= 2 | 1<<8 | 0xCC<<24;
285 LOG("video_out_3dfx: restoring regs\n");
286 restore_regs(&saved_regs
);
288 LOG("video_out_3dfx: done blt\n");
294 uint32_t xp
, yp
, w
, h
, b
, d
;
297 XGetGeometry(display
,mywindow
,&root
,&xp
,&yp
,&w
,&h
,&b
,&d
);
298 XTranslateCoordinates(display
,mywindow
,root
,0,0,&xp
,&yp
,&root
);
299 dispx
= (uint32_t) xp
;
300 dispy
= (uint32_t) yp
;
301 dispwidth
= (uint32_t) w
;
302 dispheight
= (uint32_t) h
;
305 targetoffset
= vidpage0offset
+ (screenheight
- dispheight
)/2*screenwidth
*screendepth
+ (screenwidth
-dispwidth
)/2*screendepth
;
307 targetoffset
= vidpage0offset
+ (dispy
*screenwidth
+ dispx
)*screendepth
;
311 config(uint32_t width
, uint32_t height
, uint32_t d_width
, uint32_t d_height
, uint32_t fullscreen
, char *title
, uint32_t format
)
317 //TODO use x11_common for X and window handling
319 if(getenv("DISPLAY"))
320 name
= getenv("DISPLAY");
321 display
= XOpenDisplay(name
);
323 screenwidth
= XDisplayWidth(display
,0);
324 screenheight
= XDisplayHeight(display
,0);
326 page_space
= screenwidth
*screenheight
*screendepth
;
328 vidpage1offset
= page_space
; // Use third and fourth pages
329 vidpage2offset
= page_space
*2;
331 signal(SIGALRM
,sighup
);
334 // Open driver device
337 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Unable to open /dev/3dfx.\n");
341 // Store sizes for later
345 is_fullscreen
= fullscreen
= 0;
347 create_window(display
, title
);
349 // Ask 3dfx driver for base memory address 0
350 data
.port
= 0x10; // PCI_BASE_ADDRESS_0_LINUX;
352 data
.value
= &baseAddr0
;
354 if ((retval
= ioctl(fd
,_IOC(_IOC_READ
,'3',3,0),&data
)) < 0)
356 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Error: %d.\n",retval
);
360 // Ask 3dfx driver for base memory address 1
361 data
.port
= 0x14; // PCI_BASE_ADDRESS_1_LINUX;
363 data
.value
= &baseAddr1
;
365 if ((retval
= ioctl(fd
,_IOC(_IOC_READ
,'3',3,0),&data
)) < 0)
367 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Error: %d.\n",retval
);
371 // Map all 3dfx memory areas
372 memBase0
= mmap(0,0x1000000,PROT_READ
| PROT_WRITE
,MAP_SHARED
,fd
,baseAddr0
);
373 memBase1
= mmap(0,3*page_space
,PROT_READ
| PROT_WRITE
,MAP_SHARED
,fd
,baseAddr1
);
374 if (memBase0
== (uint32_t *) 0xFFFFFFFF || memBase1
== (uint32_t *) 0xFFFFFFFF)
376 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Couldn't map 3dfx memory areas: %p,%p,%d.\n",
377 memBase0
,memBase1
,errno
);
380 // Set up global pointers
381 reg_IO
= (void *)memBase0
+ VOODOO_IO_REG_OFFSET
;
382 reg_2d
= (void *)memBase0
+ VOODOO_2D_REG_OFFSET
;
383 reg_YUV
= (void *)memBase0
+ VOODOO_YUV_REG_OFFSET
;
384 fb_YUV
= (void *)memBase0
+ VOODOO_YUV_PLANE_OFFSET
;
386 vidpage0
= (void *)memBase1
+ (unsigned long int)vidpage0offset
;
387 vidpage1
= (void *)memBase1
+ (unsigned long int)vidpage1offset
;
388 vidpage2
= (void *)memBase1
+ (unsigned long int)vidpage2offset
;
391 // leave page 0, that belongs to X.
392 // So does part of 1. Oops.
393 memset(vidpage1
,0x00,page_space
);
394 memset(vidpage2
,0x00,page_space
);
397 memset(vidpage0
,0x00,page_space
);
401 // Show page 0 (unblanked)
402 reg_IO
->vidDesktopStartAddr
= vidpage0offset
;
404 /* Stop X from messing with my video registers!
405 Find a better way to do this?
406 Currently I use DGA to tell XF86 to not screw with registers, but I can't really use it
407 to do FB stuff because I need to know the absolute FB position and offset FB position
408 to feed to BLT command
410 //XF86DGADirectVideo(display,0,XF86DGADirectGraphics); //| XF86DGADirectMouse | XF86DGADirectKeyb);
415 mp_tmsg(MSGT_VO
,MSGL_INFO
, "[VO_3DFX] Initialized: %p.\n",memBase1
);
420 draw_frame(uint8_t *src
[])
422 LOG("video_out_3dfx: starting display_frame\n");
424 // Put packed data onto page 2
425 dump_yuv_planar((uint32_t *)src
[0],(uint32_t *)src
[1],(uint32_t *)src
[2],
426 vidpage2offset
,vidwidth
,vidheight
);
428 LOG("video_out_3dfx: done display_frame\n");
433 //draw_slice(uint8_t *src[], uint32_t slice_num)
434 draw_slice(uint8_t *src
[], int stride
[], int w
,int h
,int x
,int y
)
438 target
= vidpage2offset
+ (screenwidth
*2 * y
);
439 dump_yuv_planar((uint32_t *)src
[0],(uint32_t *)src
[1],(uint32_t *)src
[2],target
,vidwidth
,h
);
443 static void draw_osd(void)
450 //FIXME - update_target() should be called by event handler when window
451 // is resized or moved
453 LOG("video_out_3dfx: calling blt function\n");
454 screen_to_screen_stretch_blt(targetoffset
, vidpage2offset
, dispwidth
, dispheight
);
458 query_format(uint32_t format
)
460 /* does this supports scaling? up & down? */
464 // case IMGFMT_RGB|24:
465 // case IMGFMT_BGR|24:
466 return VFCAP_CSP_SUPPORTED
|VFCAP_CSP_SUPPORTED_BY_HW
;
479 static void check_events(void)
483 static int preinit(const char *arg
)
485 if ( (fd
= open("/dev/3dfx",O_RDWR
) ) == -1)
487 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Unable to open /dev/3dfx.\n");
493 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_3DFX] Unknown subdevice: %s.\n",arg
);
499 static int control(uint32_t request
, void *data
)
502 case VOCTRL_QUERY_FORMAT
:
503 return query_format(*((uint32_t*)data
));