LIKWID
power_types.h
1 /*
2  * =======================================================================================
3  *
4  * Filename: power_types.h
5  *
6  * Description: Types file for power module.
7  *
8  * Version: 4.1
9  * Released: 19.5.2016
10  *
11  * Author: Jan Treibig (jt), jan.treibig@gmail.com
12  * Thomas Roehl (tr), thomas.roehl@googlemail.com
13  * Project: likwid
14  *
15  * Copyright (C) 2016 RRZE, University Erlangen-Nuremberg
16  *
17  * This program is free software: you can redistribute it and/or modify it under
18  * the terms of the GNU General Public License as published by the Free Software
19  * Foundation, either version 3 of the License, or (at your option) any later
20  * version.
21  *
22  * This program is distributed in the hope that it will be useful, but WITHOUT ANY
23  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
24  * PARTICULAR PURPOSE. See the GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License along with
27  * this program. If not, see <http://www.gnu.org/licenses/>.
28  *
29  * =======================================================================================
30  */
31 
32 #ifndef POWER_TYPES_H
33 #define POWER_TYPES_H
34 
35 #include <stdint.h>
36 #include <likwid.h>
37 
38 
39 extern uint32_t power_regs[NUM_POWER_DOMAINS];
40 
41 
42 #endif /*POWER_TYPES_H*/
#define NUM_POWER_DOMAINS
Definition: likwid.h:1103