2 * VIDIX Memory access optimization routines.
3 * Copyright (C) 2002 Nick Kurshev
5 * This file is part of MPlayer.
7 * MPlayer is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * MPlayer is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
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.
28 #include "AsmMacros.h"
30 #if defined (__i386__) && defined (__NetBSD__)
31 #include <sys/param.h>
32 #if __NetBSD_Version__ > 105240000
35 #include <machine/mtrr.h>
36 #include <machine/sysarch.h>
40 int mtrr_set_type(unsigned base
,unsigned size
,int type
)
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
;
54 mtrr_fd
= fopen("/proc/mtrr","wt");
57 int wr_len
= fprintf(mtrr_fd
, "base=0x%08X size=0x%08X type=%s\n", base
, size
, stype
);
59 return wr_len
> 0 ? 0 : EPERM
;
62 #elif defined (__i386__ ) && defined (__NetBSD__) && __NetBSD_Version__ > 105240000
66 mtrrp
= malloc(sizeof (struct mtrr
));
70 mtrrp
->flags
= MTRR_VALID
| MTRR_PRIVATE
;
73 if (i386_set_mtrr(mtrrp
, &n
) < 0) {
80 /* NetBSD prior to 1.5Y doesn't have MTRR support */