2002-01-04 11:32:26 +01:00
|
|
|
|
/*
|
|
|
|
|
libgha.c - Library for direct hardware access
|
|
|
|
|
Copyrights:
|
|
|
|
|
1996/10/27 - Robin Cutshaw (robin@xfree86.org)
|
|
|
|
|
XFree86 3.3.3 implementation
|
|
|
|
|
1999 - <EFBFBD>yvind Aabling.
|
|
|
|
|
Modified for GATOS/win/gfxdump.
|
|
|
|
|
|
|
|
|
|
2002 - library implementation by Nick Kurshev
|
|
|
|
|
|
|
|
|
|
supported O/S's: SVR4, UnixWare, SCO, Solaris,
|
|
|
|
|
FreeBSD, NetBSD, 386BSD, BSDI BSD/386,
|
|
|
|
|
Linux, Mach/386, ISC
|
|
|
|
|
DOS (WATCOM 9.5 compiler), Win9x (with mapdev.vxd)
|
|
|
|
|
Licence: GPL
|
|
|
|
|
Original location: www.linuxvideo.org/gatos
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "libdha.h"
|
|
|
|
|
#include "AsmMacros.h"
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
2002-01-15 09:33:09 +01:00
|
|
|
|
#if defined(_WIN32)
|
|
|
|
|
#include "sysdep/libdha_win32.c"
|
|
|
|
|
#elif defined (__EMX__)
|
|
|
|
|
#include "sysdep/libdha_os2.c"
|
2002-01-04 11:32:26 +01:00
|
|
|
|
#else
|
2002-01-15 09:33:09 +01:00
|
|
|
|
|
|
|
|
|
#if defined(SVR4) || defined(SCO325)
|
|
|
|
|
# if !(defined(sun) && defined (i386) && defined (SVR4))
|
|
|
|
|
# define DEV_MEM "/dev/pmem"
|
|
|
|
|
# elif defined(PowerMAX_OS)
|
|
|
|
|
# define DEV_MEM "/dev/iomem"
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef SCO325
|
|
|
|
|
# undef DEV_MEM
|
|
|
|
|
# define DEV_MEM "/dev/mem"
|
|
|
|
|
# endif
|
|
|
|
|
# endif /* SVR4 */
|
|
|
|
|
|
|
|
|
|
/* Generic version */
|
2002-01-04 11:32:26 +01:00
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
2002-01-15 09:33:09 +01:00
|
|
|
|
#ifndef DEV_MEM
|
|
|
|
|
#define DEV_MEM "/dev/mem"
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-01-04 11:32:26 +01:00
|
|
|
|
static int mem=-1;
|
|
|
|
|
void *map_phys_mem(unsigned base, unsigned size)
|
|
|
|
|
{
|
2002-01-15 09:33:09 +01:00
|
|
|
|
if ( (mem = open(DEV_MEM,O_RDWR)) == -1) {
|
2002-01-04 11:32:26 +01:00
|
|
|
|
perror("libdha: open(/dev/mem) failed") ; exit(1) ;
|
|
|
|
|
}
|
2002-01-15 09:33:09 +01:00
|
|
|
|
return mmap(0,size,PROT_READ|PROT_WRITE,MAP_SHARED,mem,base) ;
|
2002-01-04 11:32:26 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void unmap_phys_mem(void *ptr, unsigned size)
|
|
|
|
|
{
|
|
|
|
|
int res=munmap(ptr,size) ;
|
|
|
|
|
if (res == -1) { perror("libdha: munmap() failed") ; exit(1) ; }
|
|
|
|
|
close(mem);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
unsigned char INPORT8(unsigned idx)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
return inb(idx);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
unsigned short INPORT16(unsigned idx)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
return inw(idx);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
unsigned INPORT32(unsigned idx)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
return inl(idx);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
void OUTPORT8(unsigned idx,unsigned char val)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
outb(idx,val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
void OUTPORT16(unsigned idx,unsigned short val)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
outw(idx,val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-05 19:16:19 +01:00
|
|
|
|
void OUTPORT32(unsigned idx,unsigned val)
|
2002-01-04 11:32:26 +01:00
|
|
|
|
{
|
|
|
|
|
outl(idx,val);
|
|
|
|
|
}
|