Mercurial > mplayer.hg
annotate vidix/mtrr.c @ 27740:4ee7585c9985
cosmetics: Consistently name all header #define variables.
author | diego |
---|---|
date | Tue, 14 Oct 2008 23:00:04 +0000 |
parents | dcf62171257b |
children | 0f1b5b68af32 |
rev | line source |
---|---|
4476 | 1 /* |
23046
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
2 * VIDIX Memory access optimization routines. |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
3 * Copyright (C) 2002 Nick Kurshev |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
4 * |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
5 * This file is part of MPlayer. |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
6 * |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
7 * MPlayer is free software; you can redistribute it and/or modify |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
8 * it under the terms of the GNU General Public License as published by |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
9 * the Free Software Foundation; either version 2 of the License, or |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
10 * (at your option) any later version. |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
11 * |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
12 * MPlayer is distributed in the hope that it will be useful, |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
15 * GNU General Public License for more details. |
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
16 * |
26719 | 17 * You should have received a copy of the GNU General Public License along |
18 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
23046
82216ef041e0
updated vidix files headers whenever it's possible to have a clear GPL statement
ben
parents:
22901
diff
changeset
|
20 */ |
4476 | 21 |
22 #include "config.h" | |
23 | |
24 #include <stdio.h> | |
6335
e9bd97d5c5cc
warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents:
6011
diff
changeset
|
25 #include <string.h> |
4476 | 26 #include <errno.h> |
22901 | 27 #include "dha.h" |
4476 | 28 #include "AsmMacros.h" |
29 | |
5872 | 30 #if defined (__i386__) && defined (__NetBSD__) |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
31 #include <sys/param.h> |
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
32 #if __NetBSD_Version__ > 105240000 |
5872 | 33 #include <stdint.h> |
34 #include <stdlib.h> | |
35 #include <machine/mtrr.h> | |
36 #include <machine/sysarch.h> | |
37 #endif | |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
38 #endif |
4476 | 39 |
40 int mtrr_set_type(unsigned base,unsigned size,int type) | |
41 { | |
27250
dcf62171257b
Remove -std=gnu99/gnu89/default dialect linux define, as it violates the
michael
parents:
26719
diff
changeset
|
42 #ifdef __linux__ |
4476 | 43 FILE * mtrr_fd; |
44 char * stype; | |
45 switch(type) | |
46 { | |
47 case MTRR_TYPE_UNCACHABLE: stype = "uncachable"; break; | |
48 case MTRR_TYPE_WRCOMB: stype = "write-combining"; break; | |
49 case MTRR_TYPE_WRTHROUGH: stype = "write-through"; break; | |
50 case MTRR_TYPE_WRPROT: stype = "write-protect"; break; | |
51 case MTRR_TYPE_WRBACK: stype = "write-back"; break; | |
52 default: return EINVAL; | |
53 } | |
54 mtrr_fd = fopen("/proc/mtrr","wt"); | |
55 if(mtrr_fd) | |
56 { | |
4495 | 57 char sout[256]; |
58 unsigned wr_len; | |
59 sprintf(sout,"base=0x%08X size=0x%08X type=%s\n",base,size,stype); | |
60 wr_len = fprintf(mtrr_fd,sout); | |
61 /*printf("MTRR: %s\n",sout);*/ | |
4476 | 62 fclose(mtrr_fd); |
4495 | 63 return wr_len == strlen(sout) ? 0 : EPERM; |
4476 | 64 } |
65 return ENOSYS; | |
16377
243f6f5d0bb9
Make MTRR setup work on AMD64 and simplify some #ifdefs
reimar
parents:
6335
diff
changeset
|
66 #elif defined (__i386__ ) && defined (__NetBSD__) && __NetBSD_Version__ > 105240000 |
5872 | 67 struct mtrr *mtrrp; |
68 int n; | |
69 | |
70 mtrrp = malloc(sizeof (struct mtrr)); | |
71 mtrrp->base = base; | |
72 mtrrp->len = size; | |
73 mtrrp->type = type; | |
74 mtrrp->flags = MTRR_VALID | MTRR_PRIVATE; | |
75 n = 1; | |
76 | |
77 if (i386_set_mtrr(mtrrp, &n) < 0) { | |
78 free(mtrrp); | |
79 return errno; | |
80 } | |
81 free(mtrrp); | |
82 return 0; | |
4476 | 83 #else |
6011
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
84 /* 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
|
85 return ENOSYS; |
5f020e2dc745
patchs for NetBSD by Bernd Ernesti <mplayer@lists.veego.de>:
pl
parents:
5872
diff
changeset
|
86 #endif |
4476 | 87 } |