summaryrefslogtreecommitdiffstats
path: root/linux
diff options
context:
space:
mode:
authornick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-01 18:12:58 +0000
committernick <nick@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-01 18:12:58 +0000
commitc8c745857bf0a37d4d8604817e47fccd0de53b83 (patch)
tree695b2a607bb5a8f4e0b4e4dee9b79fac05bf6677 /linux
parent2e0dadb17a76624e8d12683f69cf9f65abe8aaf0 (diff)
downloadmpv-c8c745857bf0a37d4d8604817e47fccd0de53b83.tar.bz2
mpv-c8c745857bf0a37d4d8604817e47fccd0de53b83.tar.xz
vo_vesa: DGA support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2611 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'linux')
-rw-r--r--linux/vbelib.c29
-rw-r--r--linux/vbelib.h4
2 files changed, 32 insertions, 1 deletions
diff --git a/linux/vbelib.c b/linux/vbelib.c
index b2376ef06d..49cbe0b43f 100644
--- a/linux/vbelib.c
+++ b/linux/vbelib.c
@@ -13,7 +13,12 @@
#include <string.h>
#include <stdio.h>
#include <sys/io.h>
+#include <sys/mman.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#include <ctype.h>
+#include <unistd.h>
+#include <fcntl.h>
static struct VesaProtModeInterface vbe_pm_info;
@@ -84,6 +89,7 @@ static inline int VBE_LRMI_int(int int_no, struct LRMI_regs *r)
#endif
static unsigned hh_int_10_seg;
+static int fd_mem;
int vbeInit( void )
{
unsigned short iopl_port;
@@ -106,10 +112,15 @@ int vbeInit( void )
while((iopl_port=vbe_pm_info.iopl_ports[i]) != 0xFFFF
&& vbe_pm_info.iopl_ports[i++] > 1023) ioperm(iopl_port,1,1);
iopl(3);
+ fd_mem = open("/dev/mem",O_RDWR);
return VBE_OK;
}
-int vbeDestroy( void ) { return VBE_OK; }
+int vbeDestroy( void )
+{
+ close(fd_mem);
+ return VBE_OK;
+}
/* Fixme!!! This code is compatible only with mplayer's version of lrmi*/
static inline int is_addr_valid(const void *p)
@@ -507,3 +518,19 @@ int vbeWriteString(int x, int y, int attr, char *str)
if(retval == 0x4f) retval = VBE_OK;
return retval;
}
+
+void * vbeMapVideoBuffer(unsigned long phys_addr,unsigned long size)
+{
+ void *lfb;
+ if(fd_mem == -1) return NULL;
+ if(verbose > 1) printf("vbelib: vbeMapVideoBuffer(%08lX,%08lX)\n",phys_addr,size);
+ /* Here we don't need with MAP_FIXED and prefered address (first argument) */
+ lfb = mmap((void *)0,size,PROT_READ | PROT_WRITE,MAP_SHARED,fd_mem,phys_addr);
+ return lfb == (void *)-1 ? 0 : lfb;
+}
+
+void vbeUnmapVideoBuffer(unsigned long linear_addr,unsigned long size)
+{
+ if(verbose > 1) printf("vbelib: vbeUnmapVideoBuffer(%08lX,%08lX)\n",linear_addr,size);
+ munmap((void *)linear_addr,size);
+}
diff --git a/linux/vbelib.h b/linux/vbelib.h
index 2cde866bac..dc436a54bd 100644
--- a/linux/vbelib.h
+++ b/linux/vbelib.h
@@ -223,4 +223,8 @@ extern int vbeGetProtModeInfo(struct VesaProtModeInterface *);
/* Standard VGA stuff */
int vbeWriteString(int x, int y, int attr, char *str);
+/* Misc stuff (For portability only) */
+void * vbeMapVideoBuffer(unsigned long phys_addr,unsigned long size);
+void vbeUnmapVideoBuffer(unsigned long linear_addr,unsigned long size);
+
#endif