Mercurial > mplayer.hg
annotate libdha/mtrr.c @ 19564:797ee556b564
sync with r19561
patch by Savchenko Andrew % Bircoph A list.ru %
author | gpoirier |
---|---|
date | Mon, 28 Aug 2006 15:39:32 +0000 |
parents | 243f6f5d0bb9 |
children |
rev | line source |
---|---|
4476 | 1 /* |
2 mtrr.c - Stuff for optimizing memory access | |
3 Copyrights: | |
4 2002 - Linux version by Nick Kurshev | |
5 Licence: GPL | |
6 */ | |
7 | |
8 #include "config.h" | |
9 | |
10 #include <stdio.h> | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6011
diff
changeset
|
11 #include <string.h> |
4476 | 12 #include <errno.h> |
13 #include "libdha.h" | |
14 #include "AsmMacros.h" | |
15 | |
5872 | 16 #if defined (__i386__) && defined (__NetBSD__) |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
17 #include <sys/param.h> |
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
18 #if __NetBSD_Version__ > 105240000 |
5872 | 19 #include <stdint.h> |
20 #include <stdlib.h> | |
21 #include <machine/mtrr.h> | |
22 #include <machine/sysarch.h> | |
23 #endif | |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
24 #endif |
4476 | 25 |
26 int mtrr_set_type(unsigned base,unsigned size,int type) | |
27 { | |
28 #ifdef linux | |
29 FILE * mtrr_fd; | |
30 char * stype; | |
31 switch(type) | |
32 { | |
33 case MTRR_TYPE_UNCACHABLE: stype = "uncachable"; break; | |
34 case MTRR_TYPE_WRCOMB: stype = "write-combining"; break; | |
35 case MTRR_TYPE_WRTHROUGH: stype = "write-through"; break; | |
36 case MTRR_TYPE_WRPROT: stype = "write-protect"; break; | |
37 case MTRR_TYPE_WRBACK: stype = "write-back"; break; | |
38 default: return EINVAL; | |
39 } | |
40 mtrr_fd = fopen("/proc/mtrr","wt"); | |
41 if(mtrr_fd) | |
42 { | |
4495 | 43 char sout[256]; |
44 unsigned wr_len; | |
45 sprintf(sout,"base=0x%08X size=0x%08X type=%s\n",base,size,stype); | |
46 wr_len = fprintf(mtrr_fd,sout); | |
47 /*printf("MTRR: %s\n",sout);*/ | |
4476 | 48 fclose(mtrr_fd); |
4495 | 49 return wr_len == strlen(sout) ? 0 : EPERM; |
4476 | 50 } |
51 return ENOSYS; | |
16377
243f6f5d0bb9
Make MTRR setup work on AMD64 and simplify some #ifdefs
reimar
parents:
6335
diff
changeset
|
52 #elif defined (__i386__ ) && defined (__NetBSD__) && __NetBSD_Version__ > 105240000 |
5872 | 53 struct mtrr *mtrrp; |
54 int n; | |
55 | |
56 mtrrp = malloc(sizeof (struct mtrr)); | |
57 mtrrp->base = base; | |
58 mtrrp->len = size; | |
59 mtrrp->type = type; | |
60 mtrrp->flags = MTRR_VALID | MTRR_PRIVATE; | |
61 n = 1; | |
62 | |
63 if (i386_set_mtrr(mtrrp, &n) < 0) { | |
64 free(mtrrp); | |
65 return errno; | |
66 } | |
67 free(mtrrp); | |
68 return 0; | |
4476 | 69 #else |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
70 /* NetBSD prior to 1.5Y doesn't have MTRR support */ |
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
71 return ENOSYS; |
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
72 #endif |
4476 | 73 } |