xref: /onnv-gate/usr/src/uts/intel/io/intel_nhm/intel_nhm.c (revision 8472:ed866d9e6787)
1*8472SSean.Ye@Sun.COM /*
2*8472SSean.Ye@Sun.COM  * CDDL HEADER START
3*8472SSean.Ye@Sun.COM  *
4*8472SSean.Ye@Sun.COM  * The contents of this file are subject to the terms of the
5*8472SSean.Ye@Sun.COM  * Common Development and Distribution License (the "License").
6*8472SSean.Ye@Sun.COM  * You may not use this file except in compliance with the License.
7*8472SSean.Ye@Sun.COM  *
8*8472SSean.Ye@Sun.COM  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*8472SSean.Ye@Sun.COM  * or http://www.opensolaris.org/os/licensing.
10*8472SSean.Ye@Sun.COM  * See the License for the specific language governing permissions
11*8472SSean.Ye@Sun.COM  * and limitations under the License.
12*8472SSean.Ye@Sun.COM  *
13*8472SSean.Ye@Sun.COM  * When distributing Covered Code, include this CDDL HEADER in each
14*8472SSean.Ye@Sun.COM  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*8472SSean.Ye@Sun.COM  * If applicable, add the following below this CDDL HEADER, with the
16*8472SSean.Ye@Sun.COM  * fields enclosed by brackets "[]" replaced with your own identifying
17*8472SSean.Ye@Sun.COM  * information: Portions Copyright [yyyy] [name of copyright owner]
18*8472SSean.Ye@Sun.COM  *
19*8472SSean.Ye@Sun.COM  * CDDL HEADER END
20*8472SSean.Ye@Sun.COM  */
21*8472SSean.Ye@Sun.COM 
22*8472SSean.Ye@Sun.COM /*
23*8472SSean.Ye@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24*8472SSean.Ye@Sun.COM  * Use is subject to license terms.
25*8472SSean.Ye@Sun.COM  */
26*8472SSean.Ye@Sun.COM 
27*8472SSean.Ye@Sun.COM #include <sys/types.h>
28*8472SSean.Ye@Sun.COM #include <sys/time.h>
29*8472SSean.Ye@Sun.COM #include <sys/nvpair.h>
30*8472SSean.Ye@Sun.COM #include <sys/cmn_err.h>
31*8472SSean.Ye@Sun.COM #include <sys/cred.h>
32*8472SSean.Ye@Sun.COM #include <sys/open.h>
33*8472SSean.Ye@Sun.COM #include <sys/ddi.h>
34*8472SSean.Ye@Sun.COM #include <sys/sunddi.h>
35*8472SSean.Ye@Sun.COM #include <sys/conf.h>
36*8472SSean.Ye@Sun.COM #include <sys/modctl.h>
37*8472SSean.Ye@Sun.COM #include <sys/cyclic.h>
38*8472SSean.Ye@Sun.COM #include <sys/errorq.h>
39*8472SSean.Ye@Sun.COM #include <sys/stat.h>
40*8472SSean.Ye@Sun.COM #include <sys/cpuvar.h>
41*8472SSean.Ye@Sun.COM #include <sys/mc_intel.h>
42*8472SSean.Ye@Sun.COM #include <sys/mc.h>
43*8472SSean.Ye@Sun.COM #include <sys/fm/protocol.h>
44*8472SSean.Ye@Sun.COM #include "nhm_log.h"
45*8472SSean.Ye@Sun.COM #include "intel_nhm.h"
46*8472SSean.Ye@Sun.COM 
47*8472SSean.Ye@Sun.COM /*ARGSUSED*/
48*8472SSean.Ye@Sun.COM void
nhm_error_trap(cmi_hdl_t hdl,boolean_t ismc,boolean_t willpanic)49*8472SSean.Ye@Sun.COM nhm_error_trap(cmi_hdl_t hdl, boolean_t ismc, boolean_t willpanic)
50*8472SSean.Ye@Sun.COM {
51*8472SSean.Ye@Sun.COM }
52