mtrr.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. MTRR (Memory Type Range Register) control
  2. 3 Jun 1999
  3. Richard Gooch
  4. <rgooch@atnf.csiro.au>
  5.   On Intel P6 family processors (Pentium Pro, Pentium II and later)
  6.   the Memory Type Range Registers (MTRRs) may be used to control
  7.   processor access to memory ranges. This is most useful when you have
  8.   a video (VGA) card on a PCI or AGP bus. Enabling write-combining
  9.   allows bus write transfers to be combined into a larger transfer
  10.   before bursting over the PCI/AGP bus. This can increase performance
  11.   of image write operations 2.5 times or more.
  12.   The Cyrix 6x86, 6x86MX and M II processors have Address Range
  13.   Registers (ARRs) which provide a similar functionality to MTRRs. For
  14.   these, the ARRs are used to emulate the MTRRs.
  15.   The AMD K6-2 (stepping 8 and above) and K6-3 processors have two
  16.   MTRRs. These are supported.  The AMD Athlon family provide 8 Intel
  17.   style MTRRs.
  18.   
  19.   The Centaur C6 (WinChip) has 8 MCRs, allowing write-combining. These
  20.   are supported.
  21.   The VIA Cyrix III and VIA C3 CPUs offer 8 Intel style MTRRs.
  22.   The CONFIG_MTRR option creates a /proc/mtrr file which may be used
  23.   to manipulate your MTRRs. Typically the X server should use
  24.   this. This should have a reasonably generic interface so that
  25.   similar control registers on other processors can be easily
  26.   supported.
  27. There are two interfaces to /proc/mtrr: one is an ASCII interface
  28. which allows you to read and write. The other is an ioctl()
  29. interface. The ASCII interface is meant for administration. The
  30. ioctl() interface is meant for C programs (i.e. the X server). The
  31. interfaces are described below, with sample commands and C code.
  32. ===============================================================================
  33. Reading MTRRs from the shell:
  34. % cat /proc/mtrr
  35. reg00: base=0x00000000 (   0MB), size= 128MB: write-back, count=1
  36. reg01: base=0x08000000 ( 128MB), size=  64MB: write-back, count=1
  37. ===============================================================================
  38. Creating MTRRs from the C-shell:
  39. # echo "base=0xf8000000 size=0x400000 type=write-combining" >! /proc/mtrr
  40. or if you use bash:
  41. # echo "base=0xf8000000 size=0x400000 type=write-combining" >| /proc/mtrr
  42. And the result thereof:
  43. % cat /proc/mtrr
  44. reg00: base=0x00000000 (   0MB), size= 128MB: write-back, count=1
  45. reg01: base=0x08000000 ( 128MB), size=  64MB: write-back, count=1
  46. reg02: base=0xf8000000 (3968MB), size=   4MB: write-combining, count=1
  47. This is for video RAM at base address 0xf8000000 and size 4 megabytes. To
  48. find out your base address, you need to look at the output of your X
  49. server, which tells you where the linear framebuffer address is. A
  50. typical line that you may get is:
  51. (--) S3: PCI: 968 rev 0, Linear FB @ 0xf8000000
  52. Note that you should only use the value from the X server, as it may
  53. move the framebuffer base address, so the only value you can trust is
  54. that reported by the X server.
  55. To find out the size of your framebuffer (what, you don't actually
  56. know?), the following line will tell you:
  57. (--) S3: videoram:  4096k
  58. That's 4 megabytes, which is 0x400000 bytes (in hexadecimal).
  59. A patch is being written for XFree86 which will make this automatic:
  60. in other words the X server will manipulate /proc/mtrr using the
  61. ioctl() interface, so users won't have to do anything. If you use a
  62. commercial X server, lobby your vendor to add support for MTRRs.
  63. ===============================================================================
  64. Creating overlapping MTRRs:
  65. %echo "base=0xfb000000 size=0x1000000 type=write-combining" >/proc/mtrr
  66. %echo "base=0xfb000000 size=0x1000 type=uncachable" >/proc/mtrr
  67. And the results: cat /proc/mtrr
  68. reg00: base=0x00000000 (   0MB), size=  64MB: write-back, count=1
  69. reg01: base=0xfb000000 (4016MB), size=  16MB: write-combining, count=1
  70. reg02: base=0xfb000000 (4016MB), size=   4kB: uncachable, count=1
  71. Some cards (especially Voodoo Graphics boards) need this 4 kB area 
  72. excluded from the beginning of the region because it is used for
  73. registers.
  74. NOTE: You can only create type=uncachable region, if the first
  75. region that you created is type=write-combining.
  76. ===============================================================================
  77. Removing MTRRs from the C-shell:
  78. % echo "disable=2" >! /proc/mtrr
  79. or using bash:
  80. % echo "disable=2" >| /proc/mtrr
  81. ===============================================================================
  82. Reading MTRRs from a C program using ioctl()'s:
  83. /*  mtrr-show.c
  84.     Source file for mtrr-show (example program to show MTRRs using ioctl()'s)
  85.     Copyright (C) 1997-1998  Richard Gooch
  86.     This program is free software; you can redistribute it and/or modify
  87.     it under the terms of the GNU General Public License as published by
  88.     the Free Software Foundation; either version 2 of the License, or
  89.     (at your option) any later version.
  90.     This program is distributed in the hope that it will be useful,
  91.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  92.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  93.     GNU General Public License for more details.
  94.     You should have received a copy of the GNU General Public License
  95.     along with this program; if not, write to the Free Software
  96.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  97.     Richard Gooch may be reached by email at  rgooch@atnf.csiro.au
  98.     The postal address is:
  99.       Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
  100. */
  101. /*
  102.     This program will use an ioctl() on /proc/mtrr to show the current MTRR
  103.     settings. This is an alternative to reading /proc/mtrr.
  104.     Written by      Richard Gooch   17-DEC-1997
  105.     Last updated by Richard Gooch   2-MAY-1998
  106. */
  107. #include <stdio.h>
  108. #include <string.h>
  109. #include <sys/types.h>
  110. #include <sys/stat.h>
  111. #include <fcntl.h>
  112. #include <sys/ioctl.h>
  113. #include <errno.h>
  114. #define MTRR_NEED_STRINGS
  115. #include <asm/mtrr.h>
  116. #define TRUE 1
  117. #define FALSE 0
  118. #define ERRSTRING strerror (errno)
  119. int main ()
  120. {
  121.     int fd;
  122.     struct mtrr_gentry gentry;
  123.     if ( ( fd = open ("/proc/mtrr", O_RDONLY, 0) ) == -1 )
  124.     {
  125. if (errno == ENOENT)
  126. {
  127.     fputs ("/proc/mtrr not found: not supported or you don't have a PPro?n",
  128.    stderr);
  129.     exit (1);
  130. }
  131. fprintf (stderr, "Error opening /proc/mtrrt%sn", ERRSTRING);
  132. exit (2);
  133.     }
  134.     for (gentry.regnum = 0; ioctl (fd, MTRRIOC_GET_ENTRY, &gentry) == 0;
  135.  ++gentry.regnum)
  136.     {
  137. if (gentry.size < 1)
  138. {
  139.     fprintf (stderr, "Register: %u disabledn", gentry.regnum);
  140.     continue;
  141. }
  142. fprintf (stderr, "Register: %u base: 0x%lx size: 0x%lx type: %sn",
  143.  gentry.regnum, gentry.base, gentry.size,
  144.  mtrr_strings[gentry.type]);
  145.     }
  146.     if (errno == EINVAL) exit (0);
  147.     fprintf (stderr, "Error doing ioctl(2) on /dev/mtrrt%sn", ERRSTRING);
  148.     exit (3);
  149. }   /*  End Function main  */
  150. ===============================================================================
  151. Creating MTRRs from a C programme using ioctl()'s:
  152. /*  mtrr-add.c
  153.     Source file for mtrr-add (example programme to add an MTRRs using ioctl())
  154.     Copyright (C) 1997-1998  Richard Gooch
  155.     This program is free software; you can redistribute it and/or modify
  156.     it under the terms of the GNU General Public License as published by
  157.     the Free Software Foundation; either version 2 of the License, or
  158.     (at your option) any later version.
  159.     This program is distributed in the hope that it will be useful,
  160.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  161.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  162.     GNU General Public License for more details.
  163.     You should have received a copy of the GNU General Public License
  164.     along with this program; if not, write to the Free Software
  165.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  166.     Richard Gooch may be reached by email at  rgooch@atnf.csiro.au
  167.     The postal address is:
  168.       Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
  169. */
  170. /*
  171.     This programme will use an ioctl() on /proc/mtrr to add an entry. The first
  172.     available mtrr is used. This is an alternative to writing /proc/mtrr.
  173.     Written by      Richard Gooch   17-DEC-1997
  174.     Last updated by Richard Gooch   2-MAY-1998
  175. */
  176. #include <stdio.h>
  177. #include <string.h>
  178. #include <stdlib.h>
  179. #include <unistd.h>
  180. #include <sys/types.h>
  181. #include <sys/stat.h>
  182. #include <fcntl.h>
  183. #include <sys/ioctl.h>
  184. #include <errno.h>
  185. #define MTRR_NEED_STRINGS
  186. #include <asm/mtrr.h>
  187. #define TRUE 1
  188. #define FALSE 0
  189. #define ERRSTRING strerror (errno)
  190. int main (int argc, char **argv)
  191. {
  192.     int fd;
  193.     struct mtrr_sentry sentry;
  194.     if (argc != 4)
  195.     {
  196. fprintf (stderr, "Usage:tmtrr-add base size typen");
  197. exit (1);
  198.     }
  199.     sentry.base = strtoul (argv[1], NULL, 0);
  200.     sentry.size = strtoul (argv[2], NULL, 0);
  201.     for (sentry.type = 0; sentry.type < MTRR_NUM_TYPES; ++sentry.type)
  202.     {
  203. if (strcmp (argv[3], mtrr_strings[sentry.type]) == 0) break;
  204.     }
  205.     if (sentry.type >= MTRR_NUM_TYPES)
  206.     {
  207. fprintf (stderr, "Illegal type: "%s"n", argv[3]);
  208. exit (2);
  209.     }
  210.     if ( ( fd = open ("/proc/mtrr", O_WRONLY, 0) ) == -1 )
  211.     {
  212. if (errno == ENOENT)
  213. {
  214.     fputs ("/proc/mtrr not found: not supported or you don't have a PPro?n",
  215.    stderr);
  216.     exit (3);
  217. }
  218. fprintf (stderr, "Error opening /proc/mtrrt%sn", ERRSTRING);
  219. exit (4);
  220.     }
  221.     if (ioctl (fd, MTRRIOC_ADD_ENTRY, &sentry) == -1)
  222.     {
  223. fprintf (stderr, "Error doing ioctl(2) on /dev/mtrrt%sn", ERRSTRING);
  224. exit (5);
  225.     }
  226.     fprintf (stderr, "Sleeping for 5 seconds so you can see the new entryn");
  227.     sleep (5);
  228.     close (fd);
  229.     fputs ("I've just closed /proc/mtrr so now the new entry should be gonen",
  230.    stderr);
  231. }   /*  End Function main  */
  232. ===============================================================================