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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  Generic MTRR (Memory Type Range Register) driver.
  2.     Copyright (C) 1997-2000  Richard Gooch
  3.     This library is free software; you can redistribute it and/or
  4.     modify it under the terms of the GNU Library General Public
  5.     License as published by the Free Software Foundation; either
  6.     version 2 of the License, or (at your option) any later version.
  7.     This library is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.     Library General Public License for more details.
  11.     You should have received a copy of the GNU Library General Public
  12.     License along with this library; if not, write to the Free
  13.     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14.     Richard Gooch may be reached by email at  rgooch@atnf.csiro.au
  15.     The postal address is:
  16.       Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
  17.     Source: "Pentium Pro Family Developer's Manual, Volume 3:
  18.     Operating System Writer's Guide" (Intel document number 242692),
  19.     section 11.11.7
  20.     ChangeLog
  21.     Prehistory Martin Tischh鋟ser <martin@ikcbarka.fzk.de>
  22.        Initial register-setting code (from proform-1.0).
  23.     19971216   Richard Gooch <rgooch@atnf.csiro.au>
  24.                Original version for /proc/mtrr interface, SMP-safe.
  25.   v1.0
  26.     19971217   Richard Gooch <rgooch@atnf.csiro.au>
  27.                Bug fix for ioctls()'s.
  28.        Added sample code in Documentation/mtrr.txt
  29.   v1.1
  30.     19971218   Richard Gooch <rgooch@atnf.csiro.au>
  31.                Disallow overlapping regions.
  32.     19971219   Jens Maurer <jmaurer@menuett.rhein-main.de>
  33.                Register-setting fixups.
  34.   v1.2
  35.     19971222   Richard Gooch <rgooch@atnf.csiro.au>
  36.                Fixups for kernel 2.1.75.
  37.   v1.3
  38.     19971229   David Wragg <dpw@doc.ic.ac.uk>
  39.                Register-setting fixups and conformity with Intel conventions.
  40.     19971229   Richard Gooch <rgooch@atnf.csiro.au>
  41.                Cosmetic changes and wrote this ChangeLog ;-)
  42.     19980106   Richard Gooch <rgooch@atnf.csiro.au>
  43.                Fixups for kernel 2.1.78.
  44.   v1.4
  45.     19980119   David Wragg <dpw@doc.ic.ac.uk>
  46.                Included passive-release enable code (elsewhere in PCI setup).
  47.   v1.5
  48.     19980131   Richard Gooch <rgooch@atnf.csiro.au>
  49.                Replaced global kernel lock with private spinlock.
  50.   v1.6
  51.     19980201   Richard Gooch <rgooch@atnf.csiro.au>
  52.                Added wait for other CPUs to complete changes.
  53.   v1.7
  54.     19980202   Richard Gooch <rgooch@atnf.csiro.au>
  55.                Bug fix in definition of <set_mtrr> for UP.
  56.   v1.8
  57.     19980319   Richard Gooch <rgooch@atnf.csiro.au>
  58.                Fixups for kernel 2.1.90.
  59.     19980323   Richard Gooch <rgooch@atnf.csiro.au>
  60.                Move SMP BIOS fixup before secondary CPUs call <calibrate_delay>
  61.   v1.9
  62.     19980325   Richard Gooch <rgooch@atnf.csiro.au>
  63.                Fixed test for overlapping regions: confused by adjacent regions
  64.     19980326   Richard Gooch <rgooch@atnf.csiro.au>
  65.                Added wbinvd in <set_mtrr_prepare>.
  66.     19980401   Richard Gooch <rgooch@atnf.csiro.au>
  67.                Bug fix for non-SMP compilation.
  68.     19980418   David Wragg <dpw@doc.ic.ac.uk>
  69.                Fixed-MTRR synchronisation for SMP and use atomic operations
  70.        instead of spinlocks.
  71.     19980418   Richard Gooch <rgooch@atnf.csiro.au>
  72.        Differentiate different MTRR register classes for BIOS fixup.
  73.   v1.10
  74.     19980419   David Wragg <dpw@doc.ic.ac.uk>
  75.        Bug fix in variable MTRR synchronisation.
  76.   v1.11
  77.     19980419   Richard Gooch <rgooch@atnf.csiro.au>
  78.        Fixups for kernel 2.1.97.
  79.   v1.12
  80.     19980421   Richard Gooch <rgooch@atnf.csiro.au>
  81.        Safer synchronisation across CPUs when changing MTRRs.
  82.   v1.13
  83.     19980423   Richard Gooch <rgooch@atnf.csiro.au>
  84.        Bugfix for SMP systems without MTRR support.
  85.   v1.14
  86.     19980427   Richard Gooch <rgooch@atnf.csiro.au>
  87.        Trap calls to <mtrr_add> and <mtrr_del> on non-MTRR machines.
  88.   v1.15
  89.     19980427   Richard Gooch <rgooch@atnf.csiro.au>
  90.        Use atomic bitops for setting SMP change mask.
  91.   v1.16
  92.     19980428   Richard Gooch <rgooch@atnf.csiro.au>
  93.        Removed spurious diagnostic message.
  94.   v1.17
  95.     19980429   Richard Gooch <rgooch@atnf.csiro.au>
  96.        Moved register-setting macros into this file.
  97.        Moved setup code from init/main.c to i386-specific areas.
  98.   v1.18
  99.     19980502   Richard Gooch <rgooch@atnf.csiro.au>
  100.        Moved MTRR detection outside conditionals in <mtrr_init>.
  101.   v1.19
  102.     19980502   Richard Gooch <rgooch@atnf.csiro.au>
  103.        Documentation improvement: mention Pentium II and AGP.
  104.   v1.20
  105.     19980521   Richard Gooch <rgooch@atnf.csiro.au>
  106.        Only manipulate interrupt enable flag on local CPU.
  107.        Allow enclosed uncachable regions.
  108.   v1.21
  109.     19980611   Richard Gooch <rgooch@atnf.csiro.au>
  110.        Always define <main_lock>.
  111.   v1.22
  112.     19980901   Richard Gooch <rgooch@atnf.csiro.au>
  113.        Removed module support in order to tidy up code.
  114.        Added sanity check for <mtrr_add>/<mtrr_del> before <mtrr_init>.
  115.        Created addition queue for prior to SMP commence.
  116.   v1.23
  117.     19980902   Richard Gooch <rgooch@atnf.csiro.au>
  118.        Ported patch to kernel 2.1.120-pre3.
  119.   v1.24
  120.     19980910   Richard Gooch <rgooch@atnf.csiro.au>
  121.        Removed sanity checks and addition queue: Linus prefers an OOPS.
  122.   v1.25
  123.     19981001   Richard Gooch <rgooch@atnf.csiro.au>
  124.        Fixed harmless compiler warning in include/asm-i386/mtrr.h
  125.        Fixed version numbering and history for v1.23 -> v1.24.
  126.   v1.26
  127.     19990118   Richard Gooch <rgooch@atnf.csiro.au>
  128.        Added devfs support.
  129.   v1.27
  130.     19990123   Richard Gooch <rgooch@atnf.csiro.au>
  131.        Changed locking to spin with reschedule.
  132.        Made use of new <smp_call_function>.
  133.   v1.28
  134.     19990201   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  135.        Extended the driver to be able to use Cyrix style ARRs.
  136.     19990204   Richard Gooch <rgooch@atnf.csiro.au>
  137.        Restructured Cyrix support.
  138.   v1.29
  139.     19990204   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  140.        Refined ARR support: enable MAPEN in set_mtrr_prepare()
  141.        and disable MAPEN in set_mtrr_done().
  142.     19990205   Richard Gooch <rgooch@atnf.csiro.au>
  143.        Minor cleanups.
  144.   v1.30
  145.     19990208   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  146.                Protect plain 6x86s (and other processors without the
  147.                Page Global Enable feature) against accessing CR4 in
  148.                set_mtrr_prepare() and set_mtrr_done().
  149.     19990210   Richard Gooch <rgooch@atnf.csiro.au>
  150.        Turned <set_mtrr_up> and <get_mtrr> into function pointers.
  151.   v1.31
  152.     19990212   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  153.                Major rewrite of cyrix_arr_init(): do not touch ARRs,
  154.                leave them as the BIOS have set them up.
  155.                Enable usage of all 8 ARRs.
  156.                Avoid multiplications by 3 everywhere and other
  157.                code clean ups/speed ups.
  158.     19990213   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  159.                Set up other Cyrix processors identical to the boot cpu.
  160.                Since Cyrix don't support Intel APIC, this is l'art pour l'art.
  161.                Weigh ARRs by size:
  162.                If size <= 32M is given, set up ARR# we were given.
  163.                If size >  32M is given, set up ARR7 only if it is free,
  164.                fail otherwise.
  165.     19990214   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  166.                Also check for size >= 256K if we are to set up ARR7,
  167.                mtrr_add() returns the value it gets from set_mtrr()
  168.     19990218   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  169.                Remove Cyrix "coma bug" workaround from here.
  170.                Moved to linux/arch/i386/kernel/setup.c and
  171.                linux/include/asm-i386/bugs.h
  172.     19990228   Richard Gooch <rgooch@atnf.csiro.au>
  173.        Added MTRRIOC_KILL_ENTRY ioctl(2)
  174.        Trap for counter underflow in <mtrr_file_del>.
  175.        Trap for 4 MiB aligned regions for PPro, stepping <= 7.
  176.     19990301   Richard Gooch <rgooch@atnf.csiro.au>
  177.        Created <get_free_region> hook.
  178.     19990305   Richard Gooch <rgooch@atnf.csiro.au>
  179.        Temporarily disable AMD support now MTRR capability flag is set.
  180.   v1.32
  181.     19990308   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  182.        Adjust my changes (19990212-19990218) to Richard Gooch's
  183.        latest changes. (19990228-19990305)
  184.   v1.33
  185.     19990309   Richard Gooch <rgooch@atnf.csiro.au>
  186.        Fixed typo in <printk> message.
  187.     19990310   Richard Gooch <rgooch@atnf.csiro.au>
  188.        Support K6-II/III based on Alan Cox's <alan@redhat.com> patches.
  189.   v1.34
  190.     19990511   Bart Hartgers <bart@etpmod.phys.tue.nl>
  191.        Support Centaur C6 MCR's.
  192.     19990512   Richard Gooch <rgooch@atnf.csiro.au>
  193.        Minor cleanups.
  194.   v1.35
  195.     19990707   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  196.                Check whether ARR3 is protected in cyrix_get_free_region()
  197.                and mtrr_del(). The code won't attempt to delete or change it
  198.                from now on if the BIOS protected ARR3. It silently skips ARR3
  199.                in cyrix_get_free_region() or returns with an error code from
  200.                mtrr_del().
  201.     19990711   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  202.                Reset some bits in the CCRs in cyrix_arr_init() to disable SMM
  203.                if ARR3 isn't protected. This is needed because if SMM is active
  204.                and ARR3 isn't protected then deleting and setting ARR3 again
  205.                may lock up the processor. With SMM entirely disabled, it does
  206.                not happen.
  207.     19990812   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  208.                Rearrange switch() statements so the driver accomodates to
  209.                the fact that the AMD Athlon handles its MTRRs the same way
  210.                as Intel does.
  211.     19990814   Zolt醤 B鰏z鰎m閚yi <zboszor@mail.externet.hu>
  212.        Double check for Intel in mtrr_add()'s big switch() because
  213.        that revision check is only valid for Intel CPUs.
  214.     19990819   Alan Cox <alan@redhat.com>
  215.                Tested Zoltan's changes on a pre production Athlon - 100%
  216.                success.
  217.     19991008   Manfred Spraul <manfreds@colorfullife.com>
  218.             replaced spin_lock_reschedule() with a normal semaphore.
  219.   v1.36
  220.     20000221   Richard Gooch <rgooch@atnf.csiro.au>
  221.                Compile fix if procfs and devfs not enabled.
  222.        Formatting changes.
  223.   v1.37
  224.     20001109   H. Peter Anvin <hpa@zytor.com>
  225.        Use the new centralized CPU feature detects.
  226.   v1.38
  227.     20010309   Dave Jones <davej@suse.de>
  228.        Add support for Cyrix III.
  229.   v1.39
  230.     20010312   Dave Jones <davej@suse.de>
  231.                Ugh, I broke AMD support.
  232.        Reworked fix by Troels Walsted Hansen <troels@thule.no>
  233.   v1.40
  234.     20010327   Dave Jones <davej@suse.de>
  235.        Adapted Cyrix III support to include VIA C3.
  236. */
  237. #include <linux/types.h>
  238. #include <linux/errno.h>
  239. #include <linux/sched.h>
  240. #include <linux/tty.h>
  241. #include <linux/timer.h>
  242. #include <linux/config.h>
  243. #include <linux/kernel.h>
  244. #include <linux/wait.h>
  245. #include <linux/string.h>
  246. #include <linux/slab.h>
  247. #include <linux/ioport.h>
  248. #include <linux/delay.h>
  249. #include <linux/fs.h>
  250. #include <linux/ctype.h>
  251. #include <linux/proc_fs.h>
  252. #include <linux/devfs_fs_kernel.h>
  253. #include <linux/mm.h>
  254. #include <linux/module.h>
  255. #include <linux/pci.h>
  256. #define MTRR_NEED_STRINGS
  257. #include <asm/mtrr.h>
  258. #include <linux/init.h>
  259. #include <linux/smp.h>
  260. #include <linux/smp_lock.h>
  261. #include <asm/uaccess.h>
  262. #include <asm/io.h>
  263. #include <asm/processor.h>
  264. #include <asm/system.h>
  265. #include <asm/pgtable.h>
  266. #include <asm/segment.h>
  267. #include <asm/bitops.h>
  268. #include <asm/atomic.h>
  269. #include <asm/msr.h>
  270. #include <asm/hardirq.h>
  271. #include <linux/irq.h>
  272. #define MTRR_VERSION            "1.40 (20010327)"
  273. #define TRUE  1
  274. #define FALSE 0
  275. /*
  276.  * The code assumes all processors support the same MTRR
  277.  * interface.  This is generally a good assumption, but could
  278.  * potentially be a problem.
  279.  */
  280. enum mtrr_if_type {
  281.     MTRR_IF_NONE, /* No MTRRs supported */
  282.     MTRR_IF_INTEL, /* Intel (P6) standard MTRRs */
  283.     MTRR_IF_AMD_K6, /* AMD pre-Athlon MTRRs */
  284.     MTRR_IF_CYRIX_ARR, /* Cyrix ARRs */
  285.     MTRR_IF_CENTAUR_MCR, /* Centaur MCRs */
  286. } mtrr_if = MTRR_IF_NONE;
  287. static __initdata char *mtrr_if_name[] = {
  288.     "none", "Intel", "AMD K6", "Cyrix ARR", "Centaur MCR"
  289. };
  290. #define MTRRcap_MSR     0x0fe
  291. #define MTRRdefType_MSR 0x2ff
  292. #define MTRRphysBase_MSR(reg) (0x200 + 2 * (reg))
  293. #define MTRRphysMask_MSR(reg) (0x200 + 2 * (reg) + 1)
  294. #define NUM_FIXED_RANGES 88
  295. #define MTRRfix64K_00000_MSR 0x250
  296. #define MTRRfix16K_80000_MSR 0x258
  297. #define MTRRfix16K_A0000_MSR 0x259
  298. #define MTRRfix4K_C0000_MSR 0x268
  299. #define MTRRfix4K_C8000_MSR 0x269
  300. #define MTRRfix4K_D0000_MSR 0x26a
  301. #define MTRRfix4K_D8000_MSR 0x26b
  302. #define MTRRfix4K_E0000_MSR 0x26c
  303. #define MTRRfix4K_E8000_MSR 0x26d
  304. #define MTRRfix4K_F0000_MSR 0x26e
  305. #define MTRRfix4K_F8000_MSR 0x26f
  306. #ifdef CONFIG_SMP
  307. #  define MTRR_CHANGE_MASK_FIXED     0x01
  308. #  define MTRR_CHANGE_MASK_VARIABLE  0x02
  309. #  define MTRR_CHANGE_MASK_DEFTYPE   0x04
  310. #endif
  311. /* In the Intel processor's MTRR interface, the MTRR type is always held in
  312.    an 8 bit field: */
  313. typedef u8 mtrr_type;
  314. #define LINE_SIZE      80
  315. #define JIFFIE_TIMEOUT 100
  316. #ifdef CONFIG_SMP
  317. #  define set_mtrr(reg,base,size,type) set_mtrr_smp (reg, base, size, type)
  318. #else
  319. #  define set_mtrr(reg,base,size,type) (*set_mtrr_up) (reg, base, size, type, 
  320.        TRUE)
  321. #endif
  322. #if defined(CONFIG_PROC_FS) || defined(CONFIG_DEVFS_FS)
  323. # define USERSPACE_INTERFACE
  324. #endif
  325. #ifndef USERSPACE_INTERFACE
  326. #  define compute_ascii() while (0)
  327. #endif
  328. #ifdef USERSPACE_INTERFACE
  329. static char *ascii_buffer;
  330. static unsigned int ascii_buf_bytes;
  331. #endif
  332. static unsigned int *usage_table;
  333. static DECLARE_MUTEX(main_lock);
  334. /*  Private functions  */
  335. #ifdef USERSPACE_INTERFACE
  336. static void compute_ascii (void);
  337. #endif
  338. struct set_mtrr_context
  339. {
  340.     unsigned long flags;
  341.     unsigned long deftype_lo;
  342.     unsigned long deftype_hi;
  343.     unsigned long cr4val;
  344.     unsigned long ccr3;
  345. };
  346. static int arr3_protected;
  347. /*  Put the processor into a state where MTRRs can be safely set  */
  348. static void set_mtrr_prepare (struct set_mtrr_context *ctxt)
  349. {
  350.     unsigned long tmp;
  351.     /*  Disable interrupts locally  */
  352.     __save_flags (ctxt->flags); __cli ();
  353.     if ( mtrr_if != MTRR_IF_INTEL && mtrr_if != MTRR_IF_CYRIX_ARR )
  354.  return;
  355.     /*  Save value of CR4 and clear Page Global Enable (bit 7)  */
  356.     if ( test_bit(X86_FEATURE_PGE, &boot_cpu_data.x86_capability) ) {
  357. ctxt->cr4val = read_cr4();
  358. write_cr4(ctxt->cr4val & (unsigned char) ~(1<<7));
  359.     }
  360.     /*  Disable and flush caches. Note that wbinvd flushes the TLBs as
  361. a side-effect  */
  362.     {
  363. unsigned int cr0 = read_cr0() | 0x40000000;
  364. wbinvd();
  365. write_cr0( cr0 );
  366. wbinvd();
  367.     }
  368.     if ( mtrr_if == MTRR_IF_INTEL ) {
  369. /*  Disable MTRRs, and set the default type to uncached  */
  370. rdmsr (MTRRdefType_MSR, ctxt->deftype_lo, ctxt->deftype_hi);
  371. wrmsr (MTRRdefType_MSR, ctxt->deftype_lo & 0xf300UL, ctxt->deftype_hi);
  372.     } else {
  373. /* Cyrix ARRs - everything else were excluded at the top */
  374. tmp = getCx86 (CX86_CCR3);
  375. setCx86 (CX86_CCR3, (tmp & 0x0f) | 0x10);
  376. ctxt->ccr3 = tmp;
  377.     }
  378. }   /*  End Function set_mtrr_prepare  */
  379. /*  Restore the processor after a set_mtrr_prepare  */
  380. static void set_mtrr_done (struct set_mtrr_context *ctxt)
  381. {
  382.     if ( mtrr_if != MTRR_IF_INTEL && mtrr_if != MTRR_IF_CYRIX_ARR ) {
  383.  __restore_flags (ctxt->flags);
  384.  return;
  385.     }
  386.     /*  Flush caches and TLBs  */
  387.     wbinvd();
  388.     /*  Restore MTRRdefType  */
  389.     if ( mtrr_if == MTRR_IF_INTEL ) {
  390. /* Intel (P6) standard MTRRs */
  391. wrmsr (MTRRdefType_MSR, ctxt->deftype_lo, ctxt->deftype_hi);
  392.     } else {
  393. /* Cyrix ARRs - everything else was excluded at the top */
  394. setCx86 (CX86_CCR3, ctxt->ccr3);
  395.     }
  396.     /*  Enable caches  */
  397.     write_cr0( read_cr0() & 0xbfffffff );
  398.     /*  Restore value of CR4  */
  399.     if ( test_bit(X86_FEATURE_PGE, &boot_cpu_data.x86_capability) )
  400. write_cr4(ctxt->cr4val);
  401.     /*  Re-enable interrupts locally (if enabled previously)  */
  402.     __restore_flags (ctxt->flags);
  403. }   /*  End Function set_mtrr_done  */
  404. /*  This function returns the number of variable MTRRs  */
  405. static unsigned int get_num_var_ranges (void)
  406. {
  407.     unsigned long config, dummy;
  408.     switch ( mtrr_if )
  409.     {
  410.     case MTRR_IF_INTEL:
  411. rdmsr (MTRRcap_MSR, config, dummy);
  412. return (config & 0xff);
  413.     case MTRR_IF_AMD_K6:
  414. return 2;
  415.     case MTRR_IF_CYRIX_ARR:
  416. return 8;
  417.     case MTRR_IF_CENTAUR_MCR:
  418. return 8;
  419.     default:
  420. return 0;
  421.     }
  422. }   /*  End Function get_num_var_ranges  */
  423. /*  Returns non-zero if we have the write-combining memory type  */
  424. static int have_wrcomb (void)
  425. {
  426.     unsigned long config, dummy;
  427.     struct pci_dev *dev = NULL;
  428.     
  429.    /* ServerWorks LE chipsets have problems with write-combining 
  430.       Don't allow it and leave room for other chipsets to be tagged */
  431. if ((dev = pci_find_class(PCI_CLASS_BRIDGE_HOST << 8, NULL)) != NULL) {
  432. if ((dev->vendor == PCI_VENDOR_ID_SERVERWORKS) &&
  433. (dev->device == PCI_DEVICE_ID_SERVERWORKS_LE)) {
  434. printk (KERN_INFO "mtrr: Serverworks LE detected. Write-combining disabled.n");
  435. return 0;
  436. }
  437. }
  438.     switch ( mtrr_if )
  439.     {
  440.     case MTRR_IF_INTEL:
  441. rdmsr (MTRRcap_MSR, config, dummy);
  442. return (config & (1<<10));
  443. return 1;
  444.     case MTRR_IF_AMD_K6:
  445.     case MTRR_IF_CENTAUR_MCR:
  446.     case MTRR_IF_CYRIX_ARR:
  447. return 1;
  448.     default:
  449. return 0;
  450.     }
  451. }   /*  End Function have_wrcomb  */
  452. static u32 size_or_mask, size_and_mask;
  453. static void intel_get_mtrr (unsigned int reg, unsigned long *base,
  454.     unsigned long *size, mtrr_type *type)
  455. {
  456.     unsigned long mask_lo, mask_hi, base_lo, base_hi;
  457.     rdmsr (MTRRphysMask_MSR(reg), mask_lo, mask_hi);
  458.     if ( (mask_lo & 0x800) == 0 )
  459.     {
  460. /*  Invalid (i.e. free) range  */
  461. *base = 0;
  462. *size = 0;
  463. *type = 0;
  464. return;
  465.     }
  466.     rdmsr(MTRRphysBase_MSR(reg), base_lo, base_hi);
  467.     /* Work out the shifted address mask. */
  468.     mask_lo = size_or_mask | mask_hi << (32 - PAGE_SHIFT)
  469. | mask_lo >> PAGE_SHIFT;
  470.     /* This works correctly if size is a power of two, i.e. a
  471.        contiguous range. */
  472.      *size = -mask_lo;
  473.      *base = base_hi << (32 - PAGE_SHIFT) | base_lo >> PAGE_SHIFT;
  474.      *type = base_lo & 0xff;
  475. }   /*  End Function intel_get_mtrr  */
  476. static void cyrix_get_arr (unsigned int reg, unsigned long *base,
  477.    unsigned long *size, mtrr_type *type)
  478. {
  479.     unsigned long flags;
  480.     unsigned char arr, ccr3, rcr, shift;
  481.     arr = CX86_ARR_BASE + (reg << 1) + reg; /* avoid multiplication by 3 */
  482.     /* Save flags and disable interrupts */
  483.     __save_flags (flags); __cli ();
  484.     ccr3 = getCx86 (CX86_CCR3);
  485.     setCx86 (CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
  486.     ((unsigned char *) base)[3]  = getCx86 (arr);
  487.     ((unsigned char *) base)[2]  = getCx86 (arr+1);
  488.     ((unsigned char *) base)[1]  = getCx86 (arr+2);
  489.     rcr = getCx86(CX86_RCR_BASE + reg);
  490.     setCx86 (CX86_CCR3, ccr3); /* disable MAPEN */
  491.     /* Enable interrupts if it was enabled previously */
  492.     __restore_flags (flags);
  493.     shift = ((unsigned char *) base)[1] & 0x0f;
  494.     *base >>= PAGE_SHIFT;
  495.     /* Power of two, at least 4K on ARR0-ARR6, 256K on ARR7
  496.      * Note: shift==0xf means 4G, this is unsupported.
  497.      */
  498.     if (shift)
  499.       *size = (reg < 7 ? 0x1UL : 0x40UL) << (shift - 1);
  500.     else
  501.       *size = 0;
  502.     /* Bit 0 is Cache Enable on ARR7, Cache Disable on ARR0-ARR6 */
  503.     if (reg < 7)
  504.     {
  505. switch (rcr)
  506. {
  507.   case  1: *type = MTRR_TYPE_UNCACHABLE; break;
  508.   case  8: *type = MTRR_TYPE_WRBACK;     break;
  509.   case  9: *type = MTRR_TYPE_WRCOMB;     break;
  510.   case 24:
  511.   default: *type = MTRR_TYPE_WRTHROUGH;  break;
  512. }
  513.     } else
  514.     {
  515. switch (rcr)
  516. {
  517.   case  0: *type = MTRR_TYPE_UNCACHABLE; break;
  518.   case  8: *type = MTRR_TYPE_WRCOMB;     break;
  519.   case  9: *type = MTRR_TYPE_WRBACK;     break;
  520.   case 25:
  521.   default: *type = MTRR_TYPE_WRTHROUGH;  break;
  522. }
  523.     }
  524. }   /*  End Function cyrix_get_arr  */
  525. static void amd_get_mtrr (unsigned int reg, unsigned long *base,
  526.   unsigned long *size, mtrr_type *type)
  527. {
  528.     unsigned long low, high;
  529.     rdmsr (MSR_K6_UWCCR, low, high);
  530.     /*  Upper dword is region 1, lower is region 0  */
  531.     if (reg == 1) low = high;
  532.     /*  The base masks off on the right alignment  */
  533.     *base = (low & 0xFFFE0000) >> PAGE_SHIFT;
  534.     *type = 0;
  535.     if (low & 1) *type = MTRR_TYPE_UNCACHABLE;
  536.     if (low & 2) *type = MTRR_TYPE_WRCOMB;
  537.     if ( !(low & 3) )
  538.     {
  539. *size = 0;
  540. return;
  541.     }
  542.     /*
  543.      * This needs a little explaining. The size is stored as an
  544.      * inverted mask of bits of 128K granularity 15 bits long offset
  545.      * 2 bits
  546.      *
  547.      * So to get a size we do invert the mask and add 1 to the lowest
  548.      * mask bit (4 as its 2 bits in). This gives us a size we then shift
  549.      * to turn into 128K blocks
  550.      *
  551.      * eg 111 1111 1111 1100      is 512K
  552.      *
  553.      * invert 000 0000 0000 0011
  554.      * +1 000 0000 0000 0100
  555.      * *128K ...
  556.      */
  557.     low = (~low) & 0x1FFFC;
  558.     *size = (low + 4) << (15 - PAGE_SHIFT);
  559.     return;
  560. }   /*  End Function amd_get_mtrr  */
  561. static struct
  562. {
  563.     unsigned long high;
  564.     unsigned long low;
  565. } centaur_mcr[8];
  566. static u8 centaur_mcr_reserved;
  567. static u8 centaur_mcr_type; /* 0 for winchip, 1 for winchip2 */
  568. /*
  569.  * Report boot time MCR setups 
  570.  */
  571.  
  572. void mtrr_centaur_report_mcr(int mcr, u32 lo, u32 hi)
  573. {
  574. centaur_mcr[mcr].low = lo;
  575. centaur_mcr[mcr].high = hi;
  576. }
  577. static void centaur_get_mcr (unsigned int reg, unsigned long *base,
  578.      unsigned long *size, mtrr_type *type)
  579. {
  580.     *base = centaur_mcr[reg].high >> PAGE_SHIFT;
  581.     *size = -(centaur_mcr[reg].low & 0xfffff000) >> PAGE_SHIFT;
  582.     *type = MTRR_TYPE_WRCOMB; /*  If it is there, it is write-combining  */
  583.     if(centaur_mcr_type==1 && ((centaur_mcr[reg].low&31)&2))
  584.      *type = MTRR_TYPE_UNCACHABLE;
  585.     if(centaur_mcr_type==1 && (centaur_mcr[reg].low&31)==25)
  586.      *type = MTRR_TYPE_WRBACK;
  587.     if(centaur_mcr_type==0 && (centaur_mcr[reg].low&31)==31)
  588.      *type = MTRR_TYPE_WRBACK;
  589.     
  590. }   /*  End Function centaur_get_mcr  */
  591. static void (*get_mtrr) (unsigned int reg, unsigned long *base,
  592.  unsigned long *size, mtrr_type *type);
  593. static void intel_set_mtrr_up (unsigned int reg, unsigned long base,
  594.        unsigned long size, mtrr_type type, int do_safe)
  595. /*  [SUMMARY] Set variable MTRR register on the local CPU.
  596.     <reg> The register to set.
  597.     <base> The base address of the region.
  598.     <size> The size of the region. If this is 0 the region is disabled.
  599.     <type> The type of the region.
  600.     <do_safe> If TRUE, do the change safely. If FALSE, safety measures should
  601.     be done externally.
  602.     [RETURNS] Nothing.
  603. */
  604. {
  605.     struct set_mtrr_context ctxt;
  606.     if (do_safe) set_mtrr_prepare (&ctxt);
  607.     if (size == 0)
  608.     {
  609. /* The invalid bit is kept in the mask, so we simply clear the
  610.    relevant mask register to disable a range. */
  611. wrmsr (MTRRphysMask_MSR (reg), 0, 0);
  612.     }
  613.     else
  614.     {
  615. wrmsr (MTRRphysBase_MSR (reg), base << PAGE_SHIFT | type,
  616. (base & size_and_mask) >> (32 - PAGE_SHIFT));
  617. wrmsr (MTRRphysMask_MSR (reg), -size << PAGE_SHIFT | 0x800,
  618. (-size & size_and_mask) >> (32 - PAGE_SHIFT));
  619.     }
  620.     if (do_safe) set_mtrr_done (&ctxt);
  621. }   /*  End Function intel_set_mtrr_up  */
  622. static void cyrix_set_arr_up (unsigned int reg, unsigned long base,
  623.       unsigned long size, mtrr_type type, int do_safe)
  624. {
  625.     struct set_mtrr_context ctxt;
  626.     unsigned char arr, arr_type, arr_size;
  627.     arr = CX86_ARR_BASE + (reg << 1) + reg; /* avoid multiplication by 3 */
  628.     /* count down from 32M (ARR0-ARR6) or from 2G (ARR7) */
  629.     if (reg >= 7)
  630. size >>= 6;
  631.     size &= 0x7fff; /* make sure arr_size <= 14 */
  632.     for(arr_size = 0; size; arr_size++, size >>= 1);
  633.     if (reg<7)
  634.     {
  635. switch (type) {
  636.   case MTRR_TYPE_UNCACHABLE: arr_type =  1; break;
  637.   case MTRR_TYPE_WRCOMB: arr_type =  9; break;
  638.   case MTRR_TYPE_WRTHROUGH: arr_type = 24; break;
  639.   default: arr_type =  8; break;
  640. }
  641.     }
  642.     else
  643.     {
  644. switch (type)
  645. {
  646.   case MTRR_TYPE_UNCACHABLE: arr_type =  0; break;
  647.   case MTRR_TYPE_WRCOMB: arr_type =  8; break;
  648.   case MTRR_TYPE_WRTHROUGH: arr_type = 25; break;
  649.   default: arr_type =  9; break;
  650. }
  651.     }
  652.     if (do_safe) set_mtrr_prepare (&ctxt);
  653.     base <<= PAGE_SHIFT;
  654.     setCx86(arr,    ((unsigned char *) &base)[3]);
  655.     setCx86(arr+1,  ((unsigned char *) &base)[2]);
  656.     setCx86(arr+2, (((unsigned char *) &base)[1]) | arr_size);
  657.     setCx86(CX86_RCR_BASE + reg, arr_type);
  658.     if (do_safe) set_mtrr_done (&ctxt);
  659. }   /*  End Function cyrix_set_arr_up  */
  660. static void amd_set_mtrr_up (unsigned int reg, unsigned long base,
  661.      unsigned long size, mtrr_type type, int do_safe)
  662. /*  [SUMMARY] Set variable MTRR register on the local CPU.
  663.     <reg> The register to set.
  664.     <base> The base address of the region.
  665.     <size> The size of the region. If this is 0 the region is disabled.
  666.     <type> The type of the region.
  667.     <do_safe> If TRUE, do the change safely. If FALSE, safety measures should
  668.     be done externally.
  669.     [RETURNS] Nothing.
  670. */
  671. {
  672.     u32 regs[2];
  673.     struct set_mtrr_context ctxt;
  674.     if (do_safe) set_mtrr_prepare (&ctxt);
  675.     /*
  676.      * Low is MTRR0 , High MTRR 1
  677.      */
  678.     rdmsr (MSR_K6_UWCCR, regs[0], regs[1]);
  679.     /*
  680.      * Blank to disable
  681.      */
  682.     if (size == 0)
  683. regs[reg] = 0;
  684.     else
  685. /* Set the register to the base, the type (off by one) and an
  686.    inverted bitmask of the size The size is the only odd
  687.    bit. We are fed say 512K We invert this and we get 111 1111
  688.    1111 1011 but if you subtract one and invert you get the   
  689.    desired 111 1111 1111 1100 mask
  690.    But ~(x - 1) == ~x + 1 == -x. Two's complement rocks!  */
  691. regs[reg] = (-size>>(15-PAGE_SHIFT) & 0x0001FFFC)
  692. | (base<<PAGE_SHIFT) | (type+1);
  693.     /*
  694.      * The writeback rule is quite specific. See the manual. Its
  695.      * disable local interrupts, write back the cache, set the mtrr
  696.      */
  697. wbinvd();
  698. wrmsr (MSR_K6_UWCCR, regs[0], regs[1]);
  699.     if (do_safe) set_mtrr_done (&ctxt);
  700. }   /*  End Function amd_set_mtrr_up  */
  701. static void centaur_set_mcr_up (unsigned int reg, unsigned long base,
  702. unsigned long size, mtrr_type type,
  703. int do_safe)
  704. {
  705.     struct set_mtrr_context ctxt;
  706.     unsigned long low, high;
  707.     if (do_safe) set_mtrr_prepare( &ctxt );
  708.     if (size == 0)
  709.     {
  710.         /*  Disable  */
  711.         high = low = 0;
  712.     }
  713.     else
  714.     {
  715. high = base << PAGE_SHIFT;
  716. if(centaur_mcr_type == 0)
  717. low = -size << PAGE_SHIFT | 0x1f; /* only support write-combining... */
  718. else
  719. {
  720. if(type == MTRR_TYPE_UNCACHABLE)
  721. low = -size << PAGE_SHIFT | 0x02; /* NC */
  722. else
  723. low = -size << PAGE_SHIFT | 0x09; /* WWO,WC */
  724. }
  725.     }
  726.     centaur_mcr[reg].high = high;
  727.     centaur_mcr[reg].low = low;
  728.     wrmsr (MSR_IDT_MCR0 + reg, low, high);
  729.     if (do_safe) set_mtrr_done( &ctxt );
  730. }   /*  End Function centaur_set_mtrr_up  */
  731. static void (*set_mtrr_up) (unsigned int reg, unsigned long base,
  732.     unsigned long size, mtrr_type type,
  733.     int do_safe);
  734. #ifdef CONFIG_SMP
  735. struct mtrr_var_range
  736. {
  737.     unsigned long base_lo;
  738.     unsigned long base_hi;
  739.     unsigned long mask_lo;
  740.     unsigned long mask_hi;
  741. };
  742. /*  Get the MSR pair relating to a var range  */
  743. static void __init get_mtrr_var_range (unsigned int index,
  744.    struct mtrr_var_range *vr)
  745. {
  746.     rdmsr (MTRRphysBase_MSR (index), vr->base_lo, vr->base_hi);
  747.     rdmsr (MTRRphysMask_MSR (index), vr->mask_lo, vr->mask_hi);
  748. }   /*  End Function get_mtrr_var_range  */
  749. /*  Set the MSR pair relating to a var range. Returns TRUE if
  750.     changes are made  */
  751. static int __init set_mtrr_var_range_testing (unsigned int index,
  752.   struct mtrr_var_range *vr)
  753. {
  754.     unsigned int lo, hi;
  755.     int changed = FALSE;
  756.     rdmsr(MTRRphysBase_MSR(index), lo, hi);
  757.     if ( (vr->base_lo & 0xfffff0ffUL) != (lo & 0xfffff0ffUL)
  758.  || (vr->base_hi & 0xfUL) != (hi & 0xfUL) )
  759.     {
  760. wrmsr (MTRRphysBase_MSR(index), vr->base_lo, vr->base_hi);
  761. changed = TRUE;
  762.     }
  763.     rdmsr (MTRRphysMask_MSR(index), lo, hi);
  764.     if ( (vr->mask_lo & 0xfffff800UL) != (lo & 0xfffff800UL)
  765.  || (vr->mask_hi & 0xfUL) != (hi & 0xfUL) )
  766.     {
  767. wrmsr(MTRRphysMask_MSR(index), vr->mask_lo, vr->mask_hi);
  768. changed = TRUE;
  769.     }
  770.     return changed;
  771. }   /*  End Function set_mtrr_var_range_testing  */
  772. static void __init get_fixed_ranges(mtrr_type *frs)
  773. {
  774.     unsigned long *p = (unsigned long *)frs;
  775.     int i;
  776.     rdmsr(MTRRfix64K_00000_MSR, p[0], p[1]);
  777.     for (i = 0; i < 2; i++)
  778. rdmsr(MTRRfix16K_80000_MSR + i, p[2 + i*2], p[3 + i*2]);
  779.     for (i = 0; i < 8; i++)
  780. rdmsr(MTRRfix4K_C0000_MSR + i, p[6 + i*2], p[7 + i*2]);
  781. }   /*  End Function get_fixed_ranges  */
  782. static int __init set_fixed_ranges_testing(mtrr_type *frs)
  783. {
  784.     unsigned long *p = (unsigned long *)frs;
  785.     int changed = FALSE;
  786.     int i;
  787.     unsigned long lo, hi;
  788.     rdmsr(MTRRfix64K_00000_MSR, lo, hi);
  789.     if (p[0] != lo || p[1] != hi)
  790.     {
  791. wrmsr (MTRRfix64K_00000_MSR, p[0], p[1]);
  792. changed = TRUE;
  793.     }
  794.     for (i = 0; i < 2; i++)
  795.     {
  796. rdmsr (MTRRfix16K_80000_MSR + i, lo, hi);
  797. if (p[2 + i*2] != lo || p[3 + i*2] != hi)
  798. {
  799.     wrmsr (MTRRfix16K_80000_MSR + i, p[2 + i*2], p[3 + i*2]);
  800.     changed = TRUE;
  801. }
  802.     }
  803.     for (i = 0; i < 8; i++)
  804.     {
  805. rdmsr (MTRRfix4K_C0000_MSR + i, lo, hi);
  806. if (p[6 + i*2] != lo || p[7 + i*2] != hi)
  807. {
  808.     wrmsr(MTRRfix4K_C0000_MSR + i, p[6 + i*2], p[7 + i*2]);
  809.     changed = TRUE;
  810. }
  811.     }
  812.     return changed;
  813. }   /*  End Function set_fixed_ranges_testing  */
  814. struct mtrr_state
  815. {
  816.     unsigned int num_var_ranges;
  817.     struct mtrr_var_range *var_ranges;
  818.     mtrr_type fixed_ranges[NUM_FIXED_RANGES];
  819.     unsigned char enabled;
  820.     mtrr_type def_type;
  821. };
  822. /*  Grab all of the MTRR state for this CPU into *state  */
  823. static void __init get_mtrr_state(struct mtrr_state *state)
  824. {
  825.     unsigned int nvrs, i;
  826.     struct mtrr_var_range *vrs;
  827.     unsigned long lo, dummy;
  828.     nvrs = state->num_var_ranges = get_num_var_ranges();
  829.     vrs = state->var_ranges
  830.               = kmalloc (nvrs * sizeof (struct mtrr_var_range), GFP_KERNEL);
  831.     if (vrs == NULL)
  832. nvrs = state->num_var_ranges = 0;
  833.     for (i = 0; i < nvrs; i++)
  834. get_mtrr_var_range (i, &vrs[i]);
  835.     get_fixed_ranges (state->fixed_ranges);
  836.     rdmsr (MTRRdefType_MSR, lo, dummy);
  837.     state->def_type = (lo & 0xff);
  838.     state->enabled = (lo & 0xc00) >> 10;
  839. }   /*  End Function get_mtrr_state  */
  840. /*  Free resources associated with a struct mtrr_state  */
  841. static void __init finalize_mtrr_state(struct mtrr_state *state)
  842. {
  843.     if (state->var_ranges) kfree (state->var_ranges);
  844. }   /*  End Function finalize_mtrr_state  */
  845. static unsigned long __init set_mtrr_state (struct mtrr_state *state,
  846. struct set_mtrr_context *ctxt)
  847. /*  [SUMMARY] Set the MTRR state for this CPU.
  848.     <state> The MTRR state information to read.
  849.     <ctxt> Some relevant CPU context.
  850.     [NOTE] The CPU must already be in a safe state for MTRR changes.
  851.     [RETURNS] 0 if no changes made, else a mask indication what was changed.
  852. */
  853. {
  854.     unsigned int i;
  855.     unsigned long change_mask = 0;
  856.     for (i = 0; i < state->num_var_ranges; i++)
  857. if ( set_mtrr_var_range_testing (i, &state->var_ranges[i]) )
  858.     change_mask |= MTRR_CHANGE_MASK_VARIABLE;
  859.     if ( set_fixed_ranges_testing(state->fixed_ranges) )
  860. change_mask |= MTRR_CHANGE_MASK_FIXED;
  861.     /*  Set_mtrr_restore restores the old value of MTRRdefType,
  862. so to set it we fiddle with the saved value  */
  863.     if ( (ctxt->deftype_lo & 0xff) != state->def_type
  864.  || ( (ctxt->deftype_lo & 0xc00) >> 10 ) != state->enabled)
  865.     {
  866. ctxt->deftype_lo |= (state->def_type | state->enabled << 10);
  867. change_mask |= MTRR_CHANGE_MASK_DEFTYPE;
  868.     }
  869.     return change_mask;
  870. }   /*  End Function set_mtrr_state  */
  871. static atomic_t undone_count;
  872. static volatile int wait_barrier_execute = FALSE;
  873. static volatile int wait_barrier_cache_enable = FALSE;
  874. struct set_mtrr_data
  875. {
  876.     unsigned long smp_base;
  877.     unsigned long smp_size;
  878.     unsigned int smp_reg;
  879.     mtrr_type smp_type;
  880. };
  881. static void ipi_handler (void *info)
  882. /*  [SUMMARY] Synchronisation handler. Executed by "other" CPUs.
  883.     [RETURNS] Nothing.
  884. */
  885. {
  886.     struct set_mtrr_data *data = info;
  887.     struct set_mtrr_context ctxt;
  888.     set_mtrr_prepare (&ctxt);
  889.     /*  Notify master that I've flushed and disabled my cache  */
  890.     atomic_dec (&undone_count);
  891.     while (wait_barrier_execute) barrier ();
  892.     /*  The master has cleared me to execute  */
  893.     (*set_mtrr_up) (data->smp_reg, data->smp_base, data->smp_size,
  894.     data->smp_type, FALSE);
  895.     /*  Notify master CPU that I've executed the function  */
  896.     atomic_dec (&undone_count);
  897.     /*  Wait for master to clear me to enable cache and return  */
  898.     while (wait_barrier_cache_enable) barrier ();
  899.     set_mtrr_done (&ctxt);
  900. }   /*  End Function ipi_handler  */
  901. static void set_mtrr_smp (unsigned int reg, unsigned long base,
  902.   unsigned long size, mtrr_type type)
  903. {
  904.     struct set_mtrr_data data;
  905.     struct set_mtrr_context ctxt;
  906.     data.smp_reg = reg;
  907.     data.smp_base = base;
  908.     data.smp_size = size;
  909.     data.smp_type = type;
  910.     wait_barrier_execute = TRUE;
  911.     wait_barrier_cache_enable = TRUE;
  912.     atomic_set (&undone_count, smp_num_cpus - 1);
  913.     /*  Start the ball rolling on other CPUs  */
  914.     if (smp_call_function (ipi_handler, &data, 1, 0) != 0)
  915. panic ("mtrr: timed out waiting for other CPUsn");
  916.     /* Flush and disable the local CPU's cache */
  917.     set_mtrr_prepare (&ctxt);
  918.     /*  Wait for all other CPUs to flush and disable their caches  */
  919.     while (atomic_read (&undone_count) > 0) barrier ();
  920.     /* Set up for completion wait and then release other CPUs to change MTRRs*/
  921.     atomic_set (&undone_count, smp_num_cpus - 1);
  922.     wait_barrier_execute = FALSE;
  923.     (*set_mtrr_up) (reg, base, size, type, FALSE);
  924.     /*  Now wait for other CPUs to complete the function  */
  925.     while (atomic_read (&undone_count) > 0) barrier ();
  926.     /*  Now all CPUs should have finished the function. Release the barrier to
  927. allow them to re-enable their caches and return from their interrupt,
  928. then enable the local cache and return  */
  929.     wait_barrier_cache_enable = FALSE;
  930.     set_mtrr_done (&ctxt);
  931. }   /*  End Function set_mtrr_smp  */
  932. /*  Some BIOS's are fucked and don't set all MTRRs the same!  */
  933. static void __init mtrr_state_warn(unsigned long mask)
  934. {
  935.     if (!mask) return;
  936.     if (mask & MTRR_CHANGE_MASK_FIXED)
  937. printk ("mtrr: your CPUs had inconsistent fixed MTRR settingsn");
  938.     if (mask & MTRR_CHANGE_MASK_VARIABLE)
  939. printk ("mtrr: your CPUs had inconsistent variable MTRR settingsn");
  940.     if (mask & MTRR_CHANGE_MASK_DEFTYPE)
  941. printk ("mtrr: your CPUs had inconsistent MTRRdefType settingsn");
  942.     printk ("mtrr: probably your BIOS does not setup all CPUsn");
  943. }   /*  End Function mtrr_state_warn  */
  944. #endif  /*  CONFIG_SMP  */
  945. static char *attrib_to_str (int x)
  946. {
  947.     return (x <= 6) ? mtrr_strings[x] : "?";
  948. }   /*  End Function attrib_to_str  */
  949. static void init_table (void)
  950. {
  951.     int i, max;
  952.     max = get_num_var_ranges ();
  953.     if ( ( usage_table = kmalloc (max * sizeof *usage_table, GFP_KERNEL) )
  954.  == NULL )
  955.     {
  956. printk ("mtrr: could not allocaten");
  957. return;
  958.     }
  959.     for (i = 0; i < max; i++) usage_table[i] = 1;
  960. #ifdef USERSPACE_INTERFACE
  961.     if ( ( ascii_buffer = kmalloc (max * LINE_SIZE, GFP_KERNEL) ) == NULL )
  962.     {
  963. printk ("mtrr: could not allocaten");
  964. return;
  965.     }
  966.     ascii_buf_bytes = 0;
  967.     compute_ascii ();
  968. #endif
  969. }   /*  End Function init_table  */
  970. static int generic_get_free_region (unsigned long base, unsigned long size)
  971. /*  [SUMMARY] Get a free MTRR.
  972.     <base> The starting (base) address of the region.
  973.     <size> The size (in bytes) of the region.
  974.     [RETURNS] The index of the region on success, else -1 on error.
  975. */
  976. {
  977.     int i, max;
  978.     mtrr_type ltype;
  979.     unsigned long lbase, lsize;
  980.     max = get_num_var_ranges ();
  981.     for (i = 0; i < max; ++i)
  982.     {
  983. (*get_mtrr) (i, &lbase, &lsize, &ltype);
  984. if (lsize == 0) return i;
  985.     }
  986.     return -ENOSPC;
  987. }   /*  End Function generic_get_free_region  */
  988. static int centaur_get_free_region (unsigned long base, unsigned long size)
  989. /*  [SUMMARY] Get a free MTRR.
  990.     <base> The starting (base) address of the region.
  991.     <size> The size (in bytes) of the region.
  992.     [RETURNS] The index of the region on success, else -1 on error.
  993. */
  994. {
  995.     int i, max;
  996.     mtrr_type ltype;
  997.     unsigned long lbase, lsize;
  998.     max = get_num_var_ranges ();
  999.     for (i = 0; i < max; ++i)
  1000.     {
  1001.      if(centaur_mcr_reserved & (1<<i))
  1002.      continue;
  1003. (*get_mtrr) (i, &lbase, &lsize, &ltype);
  1004. if (lsize == 0) return i;
  1005.     }
  1006.     return -ENOSPC;
  1007. }   /*  End Function generic_get_free_region  */
  1008. static int cyrix_get_free_region (unsigned long base, unsigned long size)
  1009. /*  [SUMMARY] Get a free ARR.
  1010.     <base> The starting (base) address of the region.
  1011.     <size> The size (in bytes) of the region.
  1012.     [RETURNS] The index of the region on success, else -1 on error.
  1013. */
  1014. {
  1015.     int i;
  1016.     mtrr_type ltype;
  1017.     unsigned long lbase, lsize;
  1018.     /* If we are to set up a region >32M then look at ARR7 immediately */
  1019.     if (size > 0x2000)
  1020.     {
  1021. cyrix_get_arr (7, &lbase, &lsize, &ltype);
  1022. if (lsize == 0) return 7;
  1023. /*  Else try ARR0-ARR6 first  */
  1024.     }
  1025.     else
  1026.     {
  1027. for (i = 0; i < 7; i++)
  1028. {
  1029.     cyrix_get_arr (i, &lbase, &lsize, &ltype);
  1030.     if ((i == 3) && arr3_protected) continue;
  1031.     if (lsize == 0) return i;
  1032. }
  1033. /* ARR0-ARR6 isn't free, try ARR7 but its size must be at least 256K */
  1034. cyrix_get_arr (i, &lbase, &lsize, &ltype);
  1035. if ((lsize == 0) && (size >= 0x40)) return i;
  1036.     }
  1037.     return -ENOSPC;
  1038. }   /*  End Function cyrix_get_free_region  */
  1039. static int (*get_free_region) (unsigned long base,
  1040.        unsigned long size) = generic_get_free_region;
  1041. /**
  1042.  * mtrr_add_page - Add a memory type region
  1043.  * @base: Physical base address of region in pages (4 KB)
  1044.  * @size: Physical size of region in pages (4 KB)
  1045.  * @type: Type of MTRR desired
  1046.  * @increment: If this is true do usage counting on the region
  1047.  *
  1048.  * Memory type region registers control the caching on newer Intel and
  1049.  * non Intel processors. This function allows drivers to request an
  1050.  * MTRR is added. The details and hardware specifics of each processor's
  1051.  * implementation are hidden from the caller, but nevertheless the 
  1052.  * caller should expect to need to provide a power of two size on an
  1053.  * equivalent power of two boundary.
  1054.  *
  1055.  * If the region cannot be added either because all regions are in use
  1056.  * or the CPU cannot support it a negative value is returned. On success
  1057.  * the register number for this entry is returned, but should be treated
  1058.  * as a cookie only.
  1059.  *
  1060.  * On a multiprocessor machine the changes are made to all processors.
  1061.  * This is required on x86 by the Intel processors.
  1062.  *
  1063.  * The available types are
  1064.  *
  1065.  * %MTRR_TYPE_UNCACHABLE - No caching
  1066.  *
  1067.  * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
  1068.  *
  1069.  * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
  1070.  *
  1071.  * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
  1072.  *
  1073.  * BUGS: Needs a quiet flag for the cases where drivers do not mind
  1074.  * failures and do not wish system log messages to be sent.
  1075.  */
  1076. int mtrr_add_page(unsigned long base, unsigned long size, unsigned int type, char increment)
  1077. {
  1078. /*  [SUMMARY] Add an MTRR entry.
  1079.     <base> The starting (base, in pages) address of the region.
  1080.     <size> The size of the region. (in pages)
  1081.     <type> The type of the new region.
  1082.     <increment> If true and the region already exists, the usage count will be
  1083.     incremented.
  1084.     [RETURNS] The MTRR register on success, else a negative number indicating
  1085.     the error code.
  1086.     [NOTE] This routine uses a spinlock.
  1087. */
  1088.     int i, max;
  1089.     mtrr_type ltype;
  1090.     unsigned long lbase, lsize, last;
  1091.     switch ( mtrr_if )
  1092.     {
  1093.     case MTRR_IF_NONE:
  1094. return -ENXIO; /* No MTRRs whatsoever */
  1095.     case MTRR_IF_AMD_K6:
  1096. /* Apply the K6 block alignment and size rules
  1097.    In order
  1098.    o Uncached or gathering only
  1099.    o 128K or bigger block
  1100.    o Power of 2 block
  1101.    o base suitably aligned to the power
  1102. */
  1103. if ( type > MTRR_TYPE_WRCOMB || size < (1 << (17-PAGE_SHIFT)) ||
  1104.      (size & ~(size-1))-size || ( base & (size-1) ) )
  1105.     return -EINVAL;
  1106. break;
  1107.     case MTRR_IF_INTEL:
  1108. /*  For Intel PPro stepping <= 7, must be 4 MiB aligned 
  1109.     and not touch 0x70000000->0x7003FFFF */
  1110. if ( boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
  1111.      boot_cpu_data.x86 == 6 &&
  1112.      boot_cpu_data.x86_model == 1 &&
  1113.      boot_cpu_data.x86_mask <= 7 )
  1114. {
  1115.     if ( base & ((1 << (22-PAGE_SHIFT))-1) )
  1116.     {
  1117. printk (KERN_WARNING "mtrr: base(0x%lx000) is not 4 MiB alignedn", base);
  1118. return -EINVAL;
  1119.     }
  1120.     if (!(base + size < 0x70000000 || base > 0x7003FFFF) &&
  1121.  (type == MTRR_TYPE_WRCOMB || type == MTRR_TYPE_WRBACK))
  1122.     {
  1123. printk (KERN_WARNING "mtrr: writable mtrr between 0x70000000 and 0x7003FFFF may hang the CPU.n");
  1124.         return -EINVAL;
  1125.     }
  1126. }
  1127. /* Fall through */
  1128.     case MTRR_IF_CYRIX_ARR:
  1129.     case MTRR_IF_CENTAUR_MCR:
  1130.         if ( mtrr_if == MTRR_IF_CENTAUR_MCR )
  1131. {
  1132.     /*
  1133.      * FIXME: Winchip2 supports uncached
  1134.      */
  1135.     if (type != MTRR_TYPE_WRCOMB && (centaur_mcr_type == 0 || type != MTRR_TYPE_UNCACHABLE))
  1136.     {
  1137. printk (KERN_WARNING "mtrr: only write-combining%s supportedn",
  1138. centaur_mcr_type?" and uncacheable are":" is");
  1139. return -EINVAL;
  1140.     }
  1141. }
  1142. else if (base + size < 0x100)
  1143. {
  1144.     printk (KERN_WARNING "mtrr: cannot set region below 1 MiB (0x%lx000,0x%lx000)n",
  1145.     base, size);
  1146.     return -EINVAL;
  1147. }
  1148. /*  Check upper bits of base and last are equal and lower bits are 0
  1149.     for base and 1 for last  */
  1150. last = base + size - 1;
  1151. for (lbase = base; !(lbase & 1) && (last & 1);
  1152.      lbase = lbase >> 1, last = last >> 1);
  1153. if (lbase != last)
  1154. {
  1155.     printk (KERN_WARNING "mtrr: base(0x%lx000) is not aligned on a size(0x%lx000) boundaryn",
  1156.     base, size);
  1157.     return -EINVAL;
  1158. }
  1159. break;
  1160.     default:
  1161. return -EINVAL;
  1162.     }
  1163.     if (type >= MTRR_NUM_TYPES)
  1164.     {
  1165. printk ("mtrr: type: %u illegaln", type);
  1166. return -EINVAL;
  1167.     }
  1168.     /*  If the type is WC, check that this processor supports it  */
  1169.     if ( (type == MTRR_TYPE_WRCOMB) && !have_wrcomb () )
  1170.     {
  1171.         printk (KERN_WARNING "mtrr: your processor doesn't support write-combiningn");
  1172.         return -ENOSYS;
  1173.     }
  1174.     if ( base & size_or_mask || size  & size_or_mask )
  1175.     {
  1176. printk ("mtrr: base or size exceeds the MTRR widthn");
  1177. return -EINVAL;
  1178.     }
  1179.     increment = increment ? 1 : 0;
  1180.     max = get_num_var_ranges ();
  1181.     /*  Search for existing MTRR  */
  1182.     down(&main_lock);
  1183.     for (i = 0; i < max; ++i)
  1184.     {
  1185. (*get_mtrr) (i, &lbase, &lsize, &ltype);
  1186. if (base >= lbase + lsize) continue;
  1187. if ( (base < lbase) && (base + size <= lbase) ) continue;
  1188. /*  At this point we know there is some kind of overlap/enclosure  */
  1189. if ( (base < lbase) || (base + size > lbase + lsize) )
  1190. {
  1191.     up(&main_lock);
  1192.     printk (KERN_WARNING "mtrr: 0x%lx000,0x%lx000 overlaps existing"
  1193.     " 0x%lx000,0x%lx000n",
  1194.     base, size, lbase, lsize);
  1195.     return -EINVAL;
  1196. }
  1197. /*  New region is enclosed by an existing region  */
  1198. if (ltype != type)
  1199. {
  1200.     if (type == MTRR_TYPE_UNCACHABLE) continue;
  1201.     up(&main_lock);
  1202.     printk ( "mtrr: type mismatch for %lx000,%lx000 old: %s new: %sn",
  1203.      base, size, attrib_to_str (ltype), attrib_to_str (type) );
  1204.     return -EINVAL;
  1205. }
  1206. if (increment) ++usage_table[i];
  1207. compute_ascii ();
  1208. up(&main_lock);
  1209. return i;
  1210.     }
  1211.     /*  Search for an empty MTRR  */
  1212.     i = (*get_free_region) (base, size);
  1213.     if (i < 0)
  1214.     {
  1215. up(&main_lock);
  1216. printk ("mtrr: no more MTRRs availablen");
  1217. return i;
  1218.     }
  1219.     set_mtrr (i, base, size, type);
  1220.     usage_table[i] = 1;
  1221.     compute_ascii ();
  1222.     up(&main_lock);
  1223.     return i;
  1224. }   /*  End Function mtrr_add_page  */
  1225. /**
  1226.  * mtrr_add - Add a memory type region
  1227.  * @base: Physical base address of region
  1228.  * @size: Physical size of region
  1229.  * @type: Type of MTRR desired
  1230.  * @increment: If this is true do usage counting on the region
  1231.  *
  1232.  * Memory type region registers control the caching on newer Intel and
  1233.  * non Intel processors. This function allows drivers to request an
  1234.  * MTRR is added. The details and hardware specifics of each processor's
  1235.  * implementation are hidden from the caller, but nevertheless the 
  1236.  * caller should expect to need to provide a power of two size on an
  1237.  * equivalent power of two boundary.
  1238.  *
  1239.  * If the region cannot be added either because all regions are in use
  1240.  * or the CPU cannot support it a negative value is returned. On success
  1241.  * the register number for this entry is returned, but should be treated
  1242.  * as a cookie only.
  1243.  *
  1244.  * On a multiprocessor machine the changes are made to all processors.
  1245.  * This is required on x86 by the Intel processors.
  1246.  *
  1247.  * The available types are
  1248.  *
  1249.  * %MTRR_TYPE_UNCACHABLE - No caching
  1250.  *
  1251.  * %MTRR_TYPE_WRBACK - Write data back in bursts whenever
  1252.  *
  1253.  * %MTRR_TYPE_WRCOMB - Write data back soon but allow bursts
  1254.  *
  1255.  * %MTRR_TYPE_WRTHROUGH - Cache reads but not writes
  1256.  *
  1257.  * BUGS: Needs a quiet flag for the cases where drivers do not mind
  1258.  * failures and do not wish system log messages to be sent.
  1259.  */
  1260. int mtrr_add(unsigned long base, unsigned long size, unsigned int type, char increment)
  1261. {
  1262. /*  [SUMMARY] Add an MTRR entry.
  1263.     <base> The starting (base) address of the region.
  1264.     <size> The size (in bytes) of the region.
  1265.     <type> The type of the new region.
  1266.     <increment> If true and the region already exists, the usage count will be
  1267.     incremented.
  1268.     [RETURNS] The MTRR register on success, else a negative number indicating
  1269.     the error code.
  1270. */
  1271.     if ( (base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) )
  1272.     {
  1273. printk ("mtrr: size and base must be multiples of 4 kiBn");
  1274. printk ("mtrr: size: 0x%lx  base: 0x%lxn", size, base);
  1275. return -EINVAL;
  1276.     }
  1277.     return mtrr_add_page(base >> PAGE_SHIFT, size >> PAGE_SHIFT, type, increment);
  1278. }   /*  End Function mtrr_add  */
  1279. /**
  1280.  * mtrr_del_page - delete a memory type region
  1281.  * @reg: Register returned by mtrr_add
  1282.  * @base: Physical base address
  1283.  * @size: Size of region
  1284.  *
  1285.  * If register is supplied then base and size are ignored. This is
  1286.  * how drivers should call it.
  1287.  *
  1288.  * Releases an MTRR region. If the usage count drops to zero the 
  1289.  * register is freed and the region returns to default state.
  1290.  * On success the register is returned, on failure a negative error
  1291.  * code.
  1292.  */
  1293.  
  1294. int mtrr_del_page (int reg, unsigned long base, unsigned long size)
  1295. /*  [SUMMARY] Delete MTRR/decrement usage count.
  1296.     <reg> The register. If this is less than 0 then <<base>> and <<size>> must
  1297.     be supplied.
  1298.     <base> The base address of the region. This is ignored if <<reg>> is >= 0.
  1299.     <size> The size of the region. This is ignored if <<reg>> is >= 0.
  1300.     [RETURNS] The register on success, else a negative number indicating
  1301.     the error code.
  1302.     [NOTE] This routine uses a spinlock.
  1303. */
  1304. {
  1305.     int i, max;
  1306.     mtrr_type ltype;
  1307.     unsigned long lbase, lsize;
  1308.     if ( mtrr_if == MTRR_IF_NONE ) return -ENXIO;
  1309.     max = get_num_var_ranges ();
  1310.     down (&main_lock);
  1311.     if (reg < 0)
  1312.     {
  1313. /*  Search for existing MTRR  */
  1314. for (i = 0; i < max; ++i)
  1315. {
  1316.     (*get_mtrr) (i, &lbase, &lsize, &ltype);
  1317.     if (lbase == base && lsize == size)
  1318.     {
  1319. reg = i;
  1320. break;
  1321.     }
  1322. }
  1323. if (reg < 0)
  1324. {
  1325.     up(&main_lock);
  1326.     printk ("mtrr: no MTRR for %lx000,%lx000 foundn", base, size);
  1327.     return -EINVAL;
  1328. }
  1329.     }
  1330.     if (reg >= max)
  1331.     {
  1332. up (&main_lock);
  1333. printk ("mtrr: register: %d too bign", reg);
  1334. return -EINVAL;
  1335.     }
  1336.     if ( mtrr_if == MTRR_IF_CYRIX_ARR )
  1337.     {
  1338. if ( (reg == 3) && arr3_protected )
  1339. {
  1340.     up (&main_lock);
  1341.     printk ("mtrr: ARR3 cannot be changedn");
  1342.     return -EINVAL;
  1343. }
  1344.     }
  1345.     (*get_mtrr) (reg, &lbase, &lsize, &ltype);
  1346.     if (lsize < 1)
  1347.     {
  1348. up (&main_lock);
  1349. printk ("mtrr: MTRR %d not usedn", reg);
  1350. return -EINVAL;
  1351.     }
  1352.     if (usage_table[reg] < 1)
  1353.     {
  1354. up (&main_lock);
  1355. printk ("mtrr: reg: %d has count=0n", reg);
  1356. return -EINVAL;
  1357.     }
  1358.     if (--usage_table[reg] < 1) set_mtrr (reg, 0, 0, 0);
  1359.     compute_ascii ();
  1360.     up (&main_lock);
  1361.     return reg;
  1362. }   /*  End Function mtrr_del_page  */
  1363. /**
  1364.  * mtrr_del - delete a memory type region
  1365.  * @reg: Register returned by mtrr_add
  1366.  * @base: Physical base address
  1367.  * @size: Size of region
  1368.  *
  1369.  * If register is supplied then base and size are ignored. This is
  1370.  * how drivers should call it.
  1371.  *
  1372.  * Releases an MTRR region. If the usage count drops to zero the 
  1373.  * register is freed and the region returns to default state.
  1374.  * On success the register is returned, on failure a negative error
  1375.  * code.
  1376.  */
  1377.  
  1378. int mtrr_del (int reg, unsigned long base, unsigned long size)
  1379. /*  [SUMMARY] Delete MTRR/decrement usage count.
  1380.     <reg> The register. If this is less than 0 then <<base>> and <<size>> must
  1381.     be supplied.
  1382.     <base> The base address of the region. This is ignored if <<reg>> is >= 0.
  1383.     <size> The size of the region. This is ignored if <<reg>> is >= 0.
  1384.     [RETURNS] The register on success, else a negative number indicating
  1385.     the error code.
  1386. */
  1387. {
  1388.     if ( (base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) )
  1389.     {
  1390. printk ("mtrr: size and base must be multiples of 4 kiBn");
  1391. printk ("mtrr: size: 0x%lx  base: 0x%lxn", size, base);
  1392. return -EINVAL;
  1393.     }
  1394.     return mtrr_del_page(reg, base >> PAGE_SHIFT, size >> PAGE_SHIFT);
  1395. }
  1396. #ifdef USERSPACE_INTERFACE
  1397. static int mtrr_file_add (unsigned long base, unsigned long size,
  1398.   unsigned int type, char increment, struct file *file, int page)
  1399. {
  1400.     int reg, max;
  1401.     unsigned int *fcount = file->private_data;
  1402.     max = get_num_var_ranges ();
  1403.     if (fcount == NULL)
  1404.     {
  1405. if ( ( fcount = kmalloc (max * sizeof *fcount, GFP_KERNEL) ) == NULL )
  1406. {
  1407.     printk ("mtrr: could not allocaten");
  1408.     return -ENOMEM;
  1409. }
  1410. memset (fcount, 0, max * sizeof *fcount);
  1411. file->private_data = fcount;
  1412.     }
  1413.     if (!page) {
  1414. if ( (base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) )
  1415. {
  1416.     printk ("mtrr: size and base must be multiples of 4 kiBn");
  1417.     printk ("mtrr: size: 0x%lx  base: 0x%lxn", size, base);
  1418.     return -EINVAL;
  1419. }
  1420. base >>= PAGE_SHIFT;
  1421. size >>= PAGE_SHIFT;
  1422.     }
  1423.     reg = mtrr_add_page (base, size, type, 1);
  1424.     if (reg >= 0) ++fcount[reg];
  1425.     return reg;
  1426. }   /*  End Function mtrr_file_add  */
  1427. static int mtrr_file_del (unsigned long base, unsigned long size,
  1428.   struct file *file, int page)
  1429. {
  1430.     int reg;
  1431.     unsigned int *fcount = file->private_data;
  1432.     if (!page) {
  1433. if ( (base & (PAGE_SIZE - 1)) || (size & (PAGE_SIZE - 1)) )
  1434. {
  1435.     printk ("mtrr: size and base must be multiples of 4 kiBn");
  1436.     printk ("mtrr: size: 0x%lx  base: 0x%lxn", size, base);
  1437.     return -EINVAL;
  1438. }
  1439. base >>= PAGE_SHIFT;
  1440. size >>= PAGE_SHIFT;
  1441.     }
  1442.     reg = mtrr_del_page (-1, base, size);
  1443.     if (reg < 0) return reg;
  1444.     if (fcount == NULL) return reg;
  1445.     if (fcount[reg] < 1) return -EINVAL;
  1446.     --fcount[reg];
  1447.     return reg;
  1448. }   /*  End Function mtrr_file_del  */
  1449. static ssize_t mtrr_read (struct file *file, char *buf, size_t len,
  1450.   loff_t *ppos)
  1451. {
  1452.     if (*ppos >= ascii_buf_bytes) return 0;
  1453.     if (*ppos + len > ascii_buf_bytes) len = ascii_buf_bytes - *ppos;
  1454.     if ( copy_to_user (buf, ascii_buffer + *ppos, len) ) return -EFAULT;
  1455.     *ppos += len;
  1456.     return len;
  1457. }   /*  End Function mtrr_read  */
  1458. static ssize_t mtrr_write (struct file *file, const char *buf, size_t len,
  1459.    loff_t *ppos)
  1460. /*  Format of control line:
  1461.     "base=%Lx size=%Lx type=%s"     OR:
  1462.     "disable=%d"
  1463. */
  1464. {
  1465.     int i, err;
  1466.     unsigned long reg;
  1467.     unsigned long long base, size;
  1468.     char *ptr;
  1469.     char line[LINE_SIZE];
  1470.     if ( !suser () ) return -EPERM;
  1471.     /*  Can't seek (pwrite) on this device  */
  1472.     if (ppos != &file->f_pos) return -ESPIPE;
  1473.     memset (line, 0, LINE_SIZE);
  1474.     if (len > LINE_SIZE) len = LINE_SIZE;
  1475.     if ( copy_from_user (line, buf, len - 1) ) return -EFAULT;
  1476.     ptr = line + strlen (line) - 1;
  1477.     if (*ptr == 'n') *ptr = '';
  1478.     if ( !strncmp (line, "disable=", 8) )
  1479.     {
  1480. reg = simple_strtoul (line + 8, &ptr, 0);
  1481. err = mtrr_del_page (reg, 0, 0);
  1482. if (err < 0) return err;
  1483. return len;
  1484.     }
  1485.     if ( strncmp (line, "base=", 5) )
  1486.     {
  1487. printk ("mtrr: no "base=" in line: "%s"n", line);
  1488. return -EINVAL;
  1489.     }
  1490.     base = simple_strtoull (line + 5, &ptr, 0);
  1491.     for (; isspace (*ptr); ++ptr);
  1492.     if ( strncmp (ptr, "size=", 5) )
  1493.     {
  1494. printk ("mtrr: no "size=" in line: "%s"n", line);
  1495. return -EINVAL;
  1496.     }
  1497.     size = simple_strtoull (ptr + 5, &ptr, 0);
  1498.     if ( (base & 0xfff) || (size & 0xfff) )
  1499.     {
  1500. printk ("mtrr: size and base must be multiples of 4 kiBn");
  1501. printk ("mtrr: size: 0x%Lx  base: 0x%Lxn", size, base);
  1502. return -EINVAL;
  1503.     }
  1504.     for (; isspace (*ptr); ++ptr);
  1505.     if ( strncmp (ptr, "type=", 5) )
  1506.     {
  1507. printk ("mtrr: no "type=" in line: "%s"n", line);
  1508. return -EINVAL;
  1509.     }
  1510.     ptr += 5;
  1511.     for (; isspace (*ptr); ++ptr);
  1512.     for (i = 0; i < MTRR_NUM_TYPES; ++i)
  1513.     {
  1514. if ( strcmp (ptr, mtrr_strings[i]) ) continue;
  1515. base >>= PAGE_SHIFT;
  1516. size >>= PAGE_SHIFT;
  1517. err = mtrr_add_page ((unsigned long)base, (unsigned long)size, i, 1);
  1518. if (err < 0) return err;
  1519. return len;
  1520.     }
  1521.     printk ("mtrr: illegal type: "%s"n", ptr);
  1522.     return -EINVAL;
  1523. }   /*  End Function mtrr_write  */
  1524. static int mtrr_ioctl (struct inode *inode, struct file *file,
  1525.        unsigned int cmd, unsigned long arg)
  1526. {
  1527.     int err;
  1528.     mtrr_type type;
  1529.     struct mtrr_sentry sentry;
  1530.     struct mtrr_gentry gentry;
  1531.     switch (cmd)
  1532.     {
  1533.       default:
  1534. return -ENOIOCTLCMD;
  1535.       case MTRRIOC_ADD_ENTRY:
  1536. if ( !suser () ) return -EPERM;
  1537. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1538.     return -EFAULT;
  1539. err = mtrr_file_add (sentry.base, sentry.size, sentry.type, 1, file, 0);
  1540. if (err < 0) return err;
  1541. break;
  1542.       case MTRRIOC_SET_ENTRY:
  1543. if ( !suser () ) return -EPERM;
  1544. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1545.     return -EFAULT;
  1546. err = mtrr_add (sentry.base, sentry.size, sentry.type, 0);
  1547. if (err < 0) return err;
  1548. break;
  1549.       case MTRRIOC_DEL_ENTRY:
  1550. if ( !suser () ) return -EPERM;
  1551. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1552.     return -EFAULT;
  1553. err = mtrr_file_del (sentry.base, sentry.size, file, 0);
  1554. if (err < 0) return err;
  1555. break;
  1556.       case MTRRIOC_KILL_ENTRY:
  1557. if ( !suser () ) return -EPERM;
  1558. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1559.     return -EFAULT;
  1560. err = mtrr_del (-1, sentry.base, sentry.size);
  1561. if (err < 0) return err;
  1562. break;
  1563.       case MTRRIOC_GET_ENTRY:
  1564. if ( copy_from_user (&gentry, (void *) arg, sizeof gentry) )
  1565.     return -EFAULT;
  1566. if ( gentry.regnum >= get_num_var_ranges () ) return -EINVAL;
  1567. (*get_mtrr) (gentry.regnum, &gentry.base, &gentry.size, &type);
  1568. /* Hide entries that go above 4GB */
  1569. if (gentry.base + gentry.size > 0x100000 || gentry.size == 0x100000)
  1570.     gentry.base = gentry.size = gentry.type = 0;
  1571. else {
  1572.     gentry.base <<= PAGE_SHIFT;
  1573.     gentry.size <<= PAGE_SHIFT;
  1574.     gentry.type = type;
  1575. }
  1576. if ( copy_to_user ( (void *) arg, &gentry, sizeof gentry) )
  1577.      return -EFAULT;
  1578. break;
  1579.       case MTRRIOC_ADD_PAGE_ENTRY:
  1580. if ( !suser () ) return -EPERM;
  1581. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1582.     return -EFAULT;
  1583. err = mtrr_file_add (sentry.base, sentry.size, sentry.type, 1, file, 1);
  1584. if (err < 0) return err;
  1585. break;
  1586.       case MTRRIOC_SET_PAGE_ENTRY:
  1587. if ( !suser () ) return -EPERM;
  1588. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1589.     return -EFAULT;
  1590. err = mtrr_add_page (sentry.base, sentry.size, sentry.type, 0);
  1591. if (err < 0) return err;
  1592. break;
  1593.       case MTRRIOC_DEL_PAGE_ENTRY:
  1594. if ( !suser () ) return -EPERM;
  1595. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1596.     return -EFAULT;
  1597. err = mtrr_file_del (sentry.base, sentry.size, file, 1);
  1598. if (err < 0) return err;
  1599. break;
  1600.       case MTRRIOC_KILL_PAGE_ENTRY:
  1601. if ( !suser () ) return -EPERM;
  1602. if ( copy_from_user (&sentry, (void *) arg, sizeof sentry) )
  1603.     return -EFAULT;
  1604. err = mtrr_del_page (-1, sentry.base, sentry.size);
  1605. if (err < 0) return err;
  1606. break;
  1607.       case MTRRIOC_GET_PAGE_ENTRY:
  1608. if ( copy_from_user (&gentry, (void *) arg, sizeof gentry) )
  1609.     return -EFAULT;
  1610. if ( gentry.regnum >= get_num_var_ranges () ) return -EINVAL;
  1611. (*get_mtrr) (gentry.regnum, &gentry.base, &gentry.size, &type);
  1612. gentry.type = type;
  1613. if ( copy_to_user ( (void *) arg, &gentry, sizeof gentry) )
  1614.      return -EFAULT;
  1615. break;
  1616.     }
  1617.     return 0;
  1618. }   /*  End Function mtrr_ioctl  */
  1619. static int mtrr_close (struct inode *ino, struct file *file)
  1620. {
  1621.     int i, max;
  1622.     unsigned int *fcount = file->private_data;
  1623.     if (fcount == NULL) return 0;
  1624.     lock_kernel();
  1625.     max = get_num_var_ranges ();
  1626.     for (i = 0; i < max; ++i)
  1627.     {
  1628. while (fcount[i] > 0)
  1629. {
  1630.     if (mtrr_del (i, 0, 0) < 0) printk ("mtrr: reg %d not usedn", i);
  1631.     --fcount[i];
  1632. }
  1633.     }
  1634.     unlock_kernel();
  1635.     kfree (fcount);
  1636.     file->private_data = NULL;
  1637.     return 0;
  1638. }   /*  End Function mtrr_close  */
  1639. static struct file_operations mtrr_fops =
  1640. {
  1641.     owner: THIS_MODULE,
  1642.     read: mtrr_read,
  1643.     write: mtrr_write,
  1644.     ioctl: mtrr_ioctl,
  1645.     release: mtrr_close,
  1646. };
  1647. #  ifdef CONFIG_PROC_FS
  1648. static struct proc_dir_entry *proc_root_mtrr;
  1649. #  endif  /*  CONFIG_PROC_FS  */
  1650. static devfs_handle_t devfs_handle;
  1651. static void compute_ascii (void)
  1652. {
  1653.     char factor;
  1654.     int i, max;
  1655.     mtrr_type type;
  1656.     unsigned long base, size;
  1657.     ascii_buf_bytes = 0;
  1658.     max = get_num_var_ranges ();
  1659.     for (i = 0; i < max; i++)
  1660.     {
  1661. (*get_mtrr) (i, &base, &size, &type);
  1662. if (size == 0) usage_table[i] = 0;
  1663. else
  1664. {
  1665.     if (size < (0x100000 >> PAGE_SHIFT))
  1666.     {
  1667. /* less than 1MB */
  1668. factor = 'K';
  1669. size <<= PAGE_SHIFT - 10;
  1670.     }
  1671.     else
  1672.     {
  1673. factor = 'M';
  1674. size >>= 20 - PAGE_SHIFT;
  1675.     }
  1676.     sprintf
  1677. (ascii_buffer + ascii_buf_bytes,
  1678.  "reg%02i: base=0x%05lx000 (%4liMB), size=%4li%cB: %s, count=%dn",
  1679.  i, base, base >> (20 - PAGE_SHIFT), size, factor,
  1680.  attrib_to_str (type), usage_table[i]);
  1681.     ascii_buf_bytes += strlen (ascii_buffer + ascii_buf_bytes);
  1682. }
  1683.     }
  1684.     devfs_set_file_size (devfs_handle, ascii_buf_bytes);
  1685. #  ifdef CONFIG_PROC_FS
  1686.     if (proc_root_mtrr)
  1687. proc_root_mtrr->size = ascii_buf_bytes;
  1688. #  endif  /*  CONFIG_PROC_FS  */
  1689. }   /*  End Function compute_ascii  */
  1690. #endif  /*  USERSPACE_INTERFACE  */
  1691. EXPORT_SYMBOL(mtrr_add);
  1692. EXPORT_SYMBOL(mtrr_del);
  1693. #ifdef CONFIG_SMP
  1694. typedef struct
  1695. {
  1696.     unsigned long base;
  1697.     unsigned long size;
  1698.     mtrr_type type;
  1699. } arr_state_t;
  1700. arr_state_t arr_state[8] __initdata =
  1701. {
  1702.     {0UL,0UL,0UL}, {0UL,0UL,0UL}, {0UL,0UL,0UL}, {0UL,0UL,0UL},
  1703.     {0UL,0UL,0UL}, {0UL,0UL,0UL}, {0UL,0UL,0UL}, {0UL,0UL,0UL}
  1704. };
  1705. unsigned char ccr_state[7] __initdata = { 0, 0, 0, 0, 0, 0, 0 };
  1706. static void __init cyrix_arr_init_secondary(void)
  1707. {
  1708.     struct set_mtrr_context ctxt;
  1709.     int i;
  1710.     set_mtrr_prepare (&ctxt); /* flush cache and enable MAPEN */
  1711.      /* the CCRs are not contiguous */
  1712.     for(i=0; i<4; i++) setCx86(CX86_CCR0 + i, ccr_state[i]);
  1713.     for(   ; i<7; i++) setCx86(CX86_CCR4 + i, ccr_state[i]);
  1714.     for(i=0; i<8; i++)
  1715.       cyrix_set_arr_up(i,
  1716.         arr_state[i].base, arr_state[i].size, arr_state[i].type, FALSE);
  1717.     set_mtrr_done (&ctxt); /* flush cache and disable MAPEN */
  1718. }   /*  End Function cyrix_arr_init_secondary  */
  1719. #endif
  1720. /*
  1721.  * On Cyrix 6x86(MX) and M II the ARR3 is special: it has connection
  1722.  * with the SMM (System Management Mode) mode. So we need the following:
  1723.  * Check whether SMI_LOCK (CCR3 bit 0) is set
  1724.  *   if it is set, write a warning message: ARR3 cannot be changed!
  1725.  *     (it cannot be changed until the next processor reset)
  1726.  *   if it is reset, then we can change it, set all the needed bits:
  1727.  *   - disable access to SMM memory through ARR3 range (CCR1 bit 7 reset)
  1728.  *   - disable access to SMM memory (CCR1 bit 2 reset)
  1729.  *   - disable SMM mode (CCR1 bit 1 reset)
  1730.  *   - disable write protection of ARR3 (CCR6 bit 1 reset)
  1731.  *   - (maybe) disable ARR3
  1732.  * Just to be sure, we enable ARR usage by the processor (CCR5 bit 5 set)
  1733.  */
  1734. static void __init cyrix_arr_init(void)
  1735. {
  1736.     struct set_mtrr_context ctxt;
  1737.     unsigned char ccr[7];
  1738.     int ccrc[7] = { 0, 0, 0, 0, 0, 0, 0 };
  1739. #ifdef CONFIG_SMP
  1740.     int i;
  1741. #endif
  1742.     set_mtrr_prepare (&ctxt); /* flush cache and enable MAPEN */
  1743.     /* Save all CCRs locally */
  1744.     ccr[0] = getCx86 (CX86_CCR0);
  1745.     ccr[1] = getCx86 (CX86_CCR1);
  1746.     ccr[2] = getCx86 (CX86_CCR2);
  1747.     ccr[3] = ctxt.ccr3;
  1748.     ccr[4] = getCx86 (CX86_CCR4);
  1749.     ccr[5] = getCx86 (CX86_CCR5);
  1750.     ccr[6] = getCx86 (CX86_CCR6);
  1751.     if (ccr[3] & 1)
  1752.     {
  1753. ccrc[3] = 1;
  1754. arr3_protected = 1;
  1755.     }
  1756.     else
  1757.     {
  1758. /* Disable SMM mode (bit 1), access to SMM memory (bit 2) and
  1759.  * access to SMM memory through ARR3 (bit 7).
  1760.  */
  1761. if (ccr[1] & 0x80) { ccr[1] &= 0x7f; ccrc[1] |= 0x80; }
  1762. if (ccr[1] & 0x04) { ccr[1] &= 0xfb; ccrc[1] |= 0x04; }
  1763. if (ccr[1] & 0x02) { ccr[1] &= 0xfd; ccrc[1] |= 0x02; }
  1764. arr3_protected = 0;
  1765. if (ccr[6] & 0x02) {
  1766.     ccr[6] &= 0xfd; ccrc[6] = 1; /* Disable write protection of ARR3 */
  1767.     setCx86 (CX86_CCR6, ccr[6]);
  1768. }
  1769. /* Disable ARR3. This is safe now that we disabled SMM. */
  1770. /* cyrix_set_arr_up (3, 0, 0, 0, FALSE); */
  1771.     }
  1772.     /* If we changed CCR1 in memory, change it in the processor, too. */
  1773.     if (ccrc[1]) setCx86 (CX86_CCR1, ccr[1]);
  1774.     /* Enable ARR usage by the processor */
  1775.     if (!(ccr[5] & 0x20))
  1776.     {
  1777. ccr[5] |= 0x20; ccrc[5] = 1;
  1778. setCx86 (CX86_CCR5, ccr[5]);
  1779.     }
  1780. #ifdef CONFIG_SMP
  1781.     for(i=0; i<7; i++) ccr_state[i] = ccr[i];
  1782.     for(i=0; i<8; i++)
  1783.       cyrix_get_arr(i,
  1784.         &arr_state[i].base, &arr_state[i].size, &arr_state[i].type);
  1785. #endif
  1786.     set_mtrr_done (&ctxt); /* flush cache and disable MAPEN */
  1787.     if ( ccrc[5] ) printk ("mtrr: ARR usage was not enabled, enabled manuallyn");
  1788.     if ( ccrc[3] ) printk ("mtrr: ARR3 cannot be changedn");
  1789. /*
  1790.     if ( ccrc[1] & 0x80) printk ("mtrr: SMM memory access through ARR3 disabledn");
  1791.     if ( ccrc[1] & 0x04) printk ("mtrr: SMM memory access disabledn");
  1792.     if ( ccrc[1] & 0x02) printk ("mtrr: SMM mode disabledn");
  1793. */
  1794.     if ( ccrc[6] ) printk ("mtrr: ARR3 was write protected, unprotectedn");
  1795. }   /*  End Function cyrix_arr_init  */
  1796. /*
  1797.  * Initialise the later (saner) Winchip MCR variant. In this version
  1798.  * the BIOS can pass us the registers it has used (but not their values)
  1799.  * and the control register is read/write
  1800.  */
  1801.  
  1802. static void __init centaur_mcr1_init(void)
  1803. {
  1804.     unsigned i;
  1805.     u32 lo, hi;
  1806.     /* Unfortunately, MCR's are read-only, so there is no way to
  1807.      * find out what the bios might have done.
  1808.      */
  1809.      
  1810.     rdmsr(MSR_IDT_MCR_CTRL, lo, hi);
  1811.     if(((lo>>17)&7)==1) /* Type 1 Winchip2 MCR */
  1812.     {
  1813.      lo&= ~0x1C0; /* clear key */
  1814.      lo|= 0x040; /* set key to 1 */
  1815. wrmsr(MSR_IDT_MCR_CTRL, lo, hi); /* unlock MCR */
  1816.     }    
  1817.     
  1818.     centaur_mcr_type = 1;
  1819.     
  1820.     /*
  1821.      * Clear any unconfigured MCR's.
  1822.      */
  1823.     for (i = 0; i < 8; ++i)
  1824.     {
  1825.      if(centaur_mcr[i]. high == 0 && centaur_mcr[i].low == 0)
  1826.      {
  1827.      if(!(lo & (1<<(9+i))))
  1828. wrmsr (MSR_IDT_MCR0 + i , 0, 0);
  1829. else
  1830. /*
  1831.  * If the BIOS set up an MCR we cannot see it
  1832.  * but we don't wish to obliterate it
  1833.  */
  1834. centaur_mcr_reserved |= (1<<i);
  1835. }
  1836.     }
  1837.     /*  
  1838.      * Throw the main write-combining switch... 
  1839.      * However if OOSTORE is enabled then people have already done far
  1840.      *  cleverer things and we should behave. 
  1841.      */
  1842.     lo |= 15; /* Write combine enables */
  1843.     wrmsr(MSR_IDT_MCR_CTRL, lo, hi);
  1844. }   /*  End Function centaur_mcr1_init  */
  1845. /*
  1846.  * Initialise the original winchip with read only MCR registers
  1847.  * no used bitmask for the BIOS to pass on and write only control
  1848.  */
  1849.  
  1850. static void __init centaur_mcr0_init(void)
  1851. {
  1852.     unsigned i;
  1853.     /* Unfortunately, MCR's are read-only, so there is no way to
  1854.      * find out what the bios might have done.
  1855.      */
  1856.      
  1857.     /* Clear any unconfigured MCR's.
  1858.      * This way we are sure that the centaur_mcr array contains the actual
  1859.      * values. The disadvantage is that any BIOS tweaks are thus undone.
  1860.      *
  1861.      */
  1862.     for (i = 0; i < 8; ++i)
  1863.     {
  1864.      if(centaur_mcr[i]. high == 0 && centaur_mcr[i].low == 0)
  1865. wrmsr (MSR_IDT_MCR0 + i , 0, 0);
  1866.     }
  1867.     wrmsr(MSR_IDT_MCR_CTRL, 0x01F0001F, 0); /* Write only */
  1868. }   /*  End Function centaur_mcr0_init  */
  1869. /*
  1870.  * Initialise Winchip series MCR registers
  1871.  */
  1872.  
  1873. static void __init centaur_mcr_init(void)
  1874. {
  1875.     struct set_mtrr_context ctxt;
  1876.     set_mtrr_prepare (&ctxt);
  1877.     if(boot_cpu_data.x86_model==4)
  1878.      centaur_mcr0_init();
  1879.     else if(boot_cpu_data.x86_model==8 || boot_cpu_data.x86_model == 9)
  1880.      centaur_mcr1_init();
  1881.     set_mtrr_done (&ctxt);
  1882. }   /*  End Function centaur_mcr_init  */
  1883. static int __init mtrr_setup(void)
  1884. {
  1885.     if ( test_bit(X86_FEATURE_MTRR, &boot_cpu_data.x86_capability) ) {
  1886. /* Intel (P6) standard MTRRs */
  1887. mtrr_if = MTRR_IF_INTEL;
  1888. get_mtrr = intel_get_mtrr;
  1889. set_mtrr_up = intel_set_mtrr_up;
  1890. switch (boot_cpu_data.x86_vendor) {
  1891. case X86_VENDOR_AMD:
  1892. /* The original Athlon docs said that
  1893.    total addressable memory is 44 bits wide.
  1894.    It was not really clear whether its MTRRs
  1895.    follow this or not. (Read: 44 or 36 bits).
  1896.    However, "x86-64_overview.pdf" explicitly
  1897.    states that "previous implementations support
  1898.    36 bit MTRRs" and also provides a way to
  1899.    query the width (in bits) of the physical
  1900.    addressable memory on the Hammer family.
  1901.  */
  1902. if (boot_cpu_data.x86 == 7 && (cpuid_eax(0x80000000) >= 0x80000008)) {
  1903. u32 phys_addr;
  1904. phys_addr = cpuid_eax(0x80000008) & 0xff ;
  1905. size_or_mask = ~((1 << (phys_addr - PAGE_SHIFT)) - 1);
  1906. size_and_mask = ~size_or_mask & 0xfff00000;
  1907. break;
  1908. }
  1909. size_or_mask  = 0xff000000; /* 36 bits */
  1910. size_and_mask = 0x00f00000;
  1911. break;
  1912. case X86_VENDOR_CENTAUR:
  1913. /* VIA Cyrix family have Intel style MTRRs, but don't support PAE */
  1914. if (boot_cpu_data.x86 == 6) {
  1915. size_or_mask  = 0xfff00000; /* 32 bits */
  1916. size_and_mask = 0;
  1917. }
  1918. break;
  1919. default:
  1920. /* Intel, etc. */
  1921. size_or_mask  = 0xff000000; /* 36 bits */
  1922. size_and_mask = 0x00f00000;
  1923. break;
  1924. }
  1925.     } else if ( test_bit(X86_FEATURE_K6_MTRR, &boot_cpu_data.x86_capability) ) {
  1926. /* Pre-Athlon (K6) AMD CPU MTRRs */
  1927. mtrr_if = MTRR_IF_AMD_K6;
  1928. get_mtrr = amd_get_mtrr;
  1929. set_mtrr_up = amd_set_mtrr_up;
  1930. size_or_mask  = 0xfff00000; /* 32 bits */
  1931. size_and_mask = 0;
  1932.     } else if ( test_bit(X86_FEATURE_CYRIX_ARR, &boot_cpu_data.x86_capability) ) {
  1933. /* Cyrix ARRs */
  1934. mtrr_if = MTRR_IF_CYRIX_ARR;
  1935. get_mtrr = cyrix_get_arr;
  1936. set_mtrr_up = cyrix_set_arr_up;
  1937. get_free_region = cyrix_get_free_region;
  1938. cyrix_arr_init();
  1939. size_or_mask  = 0xfff00000; /* 32 bits */
  1940. size_and_mask = 0;
  1941.     } else if ( test_bit(X86_FEATURE_CENTAUR_MCR, &boot_cpu_data.x86_capability) ) {
  1942. /* Centaur MCRs */
  1943. mtrr_if = MTRR_IF_CENTAUR_MCR;
  1944. get_mtrr = centaur_get_mcr;
  1945. set_mtrr_up = centaur_set_mcr_up;
  1946. get_free_region = centaur_get_free_region;
  1947. centaur_mcr_init();
  1948. size_or_mask  = 0xfff00000; /* 32 bits */
  1949. size_and_mask = 0;
  1950.     } else {
  1951. /* No supported MTRR interface */
  1952. mtrr_if = MTRR_IF_NONE;
  1953.     }
  1954.     printk ("mtrr: v%s Richard Gooch (rgooch@atnf.csiro.au)n"
  1955.     "mtrr: detected mtrr type: %sn",
  1956.     MTRR_VERSION, mtrr_if_name[mtrr_if]);
  1957.     return (mtrr_if != MTRR_IF_NONE);
  1958. }   /*  End Function mtrr_setup  */
  1959. #ifdef CONFIG_SMP
  1960. static volatile unsigned long smp_changes_mask __initdata = 0;
  1961. static struct mtrr_state smp_mtrr_state __initdata = {0, 0};
  1962. void __init mtrr_init_boot_cpu(void)
  1963. {
  1964.     if ( !mtrr_setup () )
  1965. return;
  1966.     if ( mtrr_if == MTRR_IF_INTEL ) {
  1967. /* Only for Intel MTRRs */
  1968. get_mtrr_state (&smp_mtrr_state);
  1969.     }
  1970. }   /*  End Function mtrr_init_boot_cpu  */
  1971. static void __init intel_mtrr_init_secondary_cpu(void)
  1972. {
  1973.     unsigned long mask, count;
  1974.     struct set_mtrr_context ctxt;
  1975.     /*  Note that this is not ideal, since the cache is only flushed/disabled
  1976. for this CPU while the MTRRs are changed, but changing this requires
  1977. more invasive changes to the way the kernel boots  */
  1978.     set_mtrr_prepare (&ctxt);
  1979.     mask = set_mtrr_state (&smp_mtrr_state, &ctxt);
  1980.     set_mtrr_done (&ctxt);
  1981.     /*  Use the atomic bitops to update the global mask  */
  1982.     for (count = 0; count < sizeof mask * 8; ++count)
  1983.     {
  1984. if (mask & 0x01) set_bit (count, &smp_changes_mask);
  1985. mask >>= 1;
  1986.     }
  1987. }   /*  End Function intel_mtrr_init_secondary_cpu  */
  1988. void __init mtrr_init_secondary_cpu(void)
  1989. {
  1990.     switch ( mtrr_if ) {
  1991.     case MTRR_IF_INTEL:
  1992. /* Intel (P6) standard MTRRs */
  1993. intel_mtrr_init_secondary_cpu();
  1994. break;
  1995.     case MTRR_IF_CYRIX_ARR:
  1996. /* This is _completely theoretical_!
  1997.  * I assume here that one day Cyrix will support Intel APIC.
  1998.  * In reality on non-Intel CPUs we won't even get to this routine.
  1999.  * Hopefully no one will plug two Cyrix processors in a dual P5 board.
  2000.  *  :-)
  2001.  */
  2002. cyrix_arr_init_secondary ();
  2003. break;
  2004.     case MTRR_IF_NONE:
  2005. break;
  2006.     default:
  2007. /* I see no MTRRs I can support in SMP mode... */
  2008. printk ("mtrr: SMP support incomplete for this vendorn");
  2009.     }
  2010. }   /*  End Function mtrr_init_secondary_cpu  */
  2011. #endif  /*  CONFIG_SMP  */
  2012. int __init mtrr_init(void)
  2013. {
  2014. #ifdef CONFIG_SMP
  2015.     /* mtrr_setup() should already have been called from mtrr_init_boot_cpu() */
  2016.     if ( mtrr_if == MTRR_IF_INTEL ) {
  2017. finalize_mtrr_state (&smp_mtrr_state);
  2018. mtrr_state_warn (smp_changes_mask);
  2019.     }
  2020. #else
  2021.     if ( !mtrr_setup() )
  2022. return 0; /* MTRRs not supported? */
  2023. #endif
  2024. #ifdef CONFIG_PROC_FS
  2025.     proc_root_mtrr = create_proc_entry ("mtrr", S_IWUSR | S_IRUGO, &proc_root);
  2026.     if (proc_root_mtrr) {
  2027. proc_root_mtrr->owner = THIS_MODULE;
  2028. proc_root_mtrr->proc_fops = &mtrr_fops;
  2029.     }
  2030. #endif
  2031. #ifdef USERSPACE_INTERFACE
  2032.     devfs_handle = devfs_register (NULL, "cpu/mtrr", DEVFS_FL_DEFAULT, 0, 0,
  2033.    S_IFREG | S_IRUGO | S_IWUSR,
  2034.    &mtrr_fops, NULL);
  2035. #endif
  2036.     init_table ();
  2037.     return 0;
  2038. }   /*  End Function mtrr_init  */
  2039. /*
  2040.  * Local Variables:
  2041.  * mode:c
  2042.  * c-file-style:"k&r"
  2043.  * c-basic-offset:4
  2044.  * End:
  2045.  */