Mercurial > mplayer.hg
annotate libdha/sysdep/pci_linux.c @ 5162:3cc3a36e3d0d
xp added
author | jaf |
---|---|
date | Sun, 17 Mar 2002 15:03:25 +0000 |
parents | 05ac3586db02 |
children | 5cf616a755ac |
rev | line source |
---|---|
4164 | 1 /* |
2 This file is based on: | |
3 $XFree86: xc/programs/Xserver/hw/xfree86/etc/scanpci.c,v 3.34.2.17 1998/11/10 11:55:40 dawes Exp $ | |
4 Modified for readability by Nick Kurshev | |
5 */ | |
4174
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
6 #include <errno.h> |
4164 | 7 #ifdef __i386__ |
8 #include <sys/perm.h> | |
9 #else | |
10 #include <sys/io.h> | |
11 #endif | |
12 | |
4474 | 13 #include "config.h" |
14 | |
15 #ifdef CONFIG_DHAHELPER | |
16 #include <fcntl.h> | |
17 int dhahelper_initialized = 0; | |
18 int dhahelper_fd = 0; | |
19 #endif | |
20 | |
4174
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
21 static __inline__ int enable_os_io(void) |
4164 | 22 { |
4474 | 23 #ifdef CONFIG_DHAHELPER |
24 dhahelper_fd = open("/dev/dhahelper", O_RDWR); | |
25 if (dhahelper_fd > 0) | |
26 { | |
27 dhahelper_initialized = 1; | |
28 return(0); | |
29 } | |
30 dhahelper_initialized = -1; | |
31 #endif | |
32 | |
4174
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
33 if (iopl(3) != 0) |
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
34 return(errno); |
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
35 return(0); |
4164 | 36 } |
37 | |
4174
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
38 static __inline__ int disable_os_io(void) |
4164 | 39 { |
4474 | 40 #ifdef CONFIG_DHAHELPER |
41 if (dhahelper_initialized == 1) | |
42 close(dhahelper_fd); | |
43 else | |
44 #endif | |
4174
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
45 if (iopl(0) != 0) |
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
46 return(errno); |
4cfb6b9a6da3
api changed: enable/disable_os_io returns error-code (or zero if ok) and pciconfig_read exported for mga_vid
alex
parents:
4164
diff
changeset
|
47 return(0); |
4164 | 48 } |