Some people confuse vidix with kernel drivers, so let's add a note about it
[mplayer/glamo.git] / libdha / mtrr.c
blob977ce804774a967a5e75afbd3377c4f97366103e
1 /*
2 mtrr.c - Stuff for optimizing memory access
3 Copyrights:
4 2002 - Linux version by Nick Kurshev
5 Licence: GPL
6 */
8 #include "config.h"
10 #include <stdio.h>
11 #include <string.h>
12 #include <errno.h>
13 #include "libdha.h"
14 #include "AsmMacros.h"
16 #if defined (__i386__) && defined (__NetBSD__)
17 #include <sys/param.h>
18 #if __NetBSD_Version__ > 105240000
19 #include <stdint.h>
20 #include <stdlib.h>
21 #include <machine/mtrr.h>
22 #include <machine/sysarch.h>
23 #endif
24 #endif
26 #if defined( __i386__ )
27 int mtrr_set_type(unsigned base,unsigned size,int type)
29 #ifdef linux
30 FILE * mtrr_fd;
31 char * stype;
32 switch(type)
34 case MTRR_TYPE_UNCACHABLE: stype = "uncachable"; break;
35 case MTRR_TYPE_WRCOMB: stype = "write-combining"; break;
36 case MTRR_TYPE_WRTHROUGH: stype = "write-through"; break;
37 case MTRR_TYPE_WRPROT: stype = "write-protect"; break;
38 case MTRR_TYPE_WRBACK: stype = "write-back"; break;
39 default: return EINVAL;
41 mtrr_fd = fopen("/proc/mtrr","wt");
42 if(mtrr_fd)
44 char sout[256];
45 unsigned wr_len;
46 sprintf(sout,"base=0x%08X size=0x%08X type=%s\n",base,size,stype);
47 wr_len = fprintf(mtrr_fd,sout);
48 /*printf("MTRR: %s\n",sout);*/
49 fclose(mtrr_fd);
50 return wr_len == strlen(sout) ? 0 : EPERM;
52 return ENOSYS;
53 #elif defined (__NetBSD__)
54 #if __NetBSD_Version__ > 105240000
55 struct mtrr *mtrrp;
56 int n;
58 mtrrp = malloc(sizeof (struct mtrr));
59 mtrrp->base = base;
60 mtrrp->len = size;
61 mtrrp->type = type;
62 mtrrp->flags = MTRR_VALID | MTRR_PRIVATE;
63 n = 1;
65 if (i386_set_mtrr(mtrrp, &n) < 0) {
66 free(mtrrp);
67 return errno;
69 free(mtrrp);
70 return 0;
71 #else
72 /* NetBSD prior to 1.5Y doesn't have MTRR support */
73 return ENOSYS;
74 #endif
75 #else
76 #warning Please port MTRR stuff!!!
77 return ENOSYS;
78 #endif
80 #else
81 int mtrr_set_type(unsigned base,unsigned size,int type)
83 return ENOSYS;
85 #endif