1*00a2749dSAllen Martin /*
2*00a2749dSAllen Martin  *  (C) Copyright 2010,2011
3*00a2749dSAllen Martin  *  NVIDIA Corporation <www.nvidia.com>
4*00a2749dSAllen Martin  *
5*00a2749dSAllen Martin  * See file CREDITS for list of people who contributed to this
6*00a2749dSAllen Martin  * project.
7*00a2749dSAllen Martin  *
8*00a2749dSAllen Martin  * This program is free software; you can redistribute it and/or
9*00a2749dSAllen Martin  * modify it under the terms of the GNU General Public License as
10*00a2749dSAllen Martin  * published by the Free Software Foundation; either version 2 of
11*00a2749dSAllen Martin  * the License, or (at your option) any later version.
12*00a2749dSAllen Martin  *
13*00a2749dSAllen Martin  * This program is distributed in the hope that it will be useful,
14*00a2749dSAllen Martin  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15*00a2749dSAllen Martin  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16*00a2749dSAllen Martin  * GNU General Public License for more details.
17*00a2749dSAllen Martin  *
18*00a2749dSAllen Martin  * You should have received a copy of the GNU General Public License
19*00a2749dSAllen Martin  * along with this program; if not, write to the Free Software
20*00a2749dSAllen Martin  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*00a2749dSAllen Martin  * MA 02111-1307 USA
22*00a2749dSAllen Martin  */
23*00a2749dSAllen Martin 
24*00a2749dSAllen Martin #ifndef _ARCH_PMU_H_
25*00a2749dSAllen Martin #define _ARCH_PMU_H_
26*00a2749dSAllen Martin 
27*00a2749dSAllen Martin /* Set core and CPU voltages to nominal levels */
28*00a2749dSAllen Martin int pmu_set_nominal(void);
29*00a2749dSAllen Martin 
30*00a2749dSAllen Martin #endif	/* _ARCH_PMU_H_ */
31