/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <sys/sysmacros.h>
#include <sys/x86_archext.h>
#include <sys/pci_cfgspace.h>
#include "ao.h"
/*
* AMD Opteron CPU Subroutines
*
* The following two tunables are used to determine the scrubbing rates for
* the D$ and L2$. The values range from 0x00-0x16 as described in BKDG
* Scrub Control Register. A value of zero disables the scrubber. Values
* above zero indicate rates in descending order.
*
* The current default values are used on several Sun systems. In the future
* this code should assign values dynamically based on cache sizing. If you
* tune these values manually be aware of the following architectural issue:
* At present, Opteron can only survive certain kinds of multi-bit errors if
* they are detected by the scrubbers. Therefore in general we want these
* values tuned as high as possible without impacting workload performance.
*/
enum {
void
{
}
{
}
/*
* Return the maximum scrubbing rate between r1 and r2, where r2 is extracted
* from the specified 'cfg' register value using 'mask' and 'shift'. If a
* value is zero, scrubbing is off so return the opposite value. Otherwise
* the maximum rate is the smallest non-zero value of the two values.
*/
static uint32_t
{
}
/*
* Enable the node-specific hardware scrubbers for the D$ and L2$. We set
* the scrubber rate based on a set of tunables defined at the top of the file.
*/
void
{
if (ao_scrub_policy == AO_SCRUB_BIOSDEFAULT)
return;
"resetting to 0x%x\n", AMD_NB_SCRUBCTL_RATE_MAX);
}
"resetting to 0x%x\n", AMD_NB_SCRUBCTL_RATE_MAX);
}
switch (ao_scrub_policy) {
case AO_SCRUB_FIXED:
/* Use the system values checked above */
break;
default:
"using default policy of AO_SCRUB_MAX", ao_scrub_policy);
/*FALLTHRU*/
case AO_SCRUB_MAX:
break;
}
MCREG_VAL32(&scrubctl));
}