Subversion Repositories shark

Rev

Rev 597 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
582 mauro 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Mauro Marinoni      <mauro.marinoni@unipv.it>
10
 *
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/* Glue Layer Header Linux CPU Driver*/
20
 
21
#ifndef __SHARK_CPU26_H__
22
#define __SHARK_CPU26_H__
23
 
24
#define DVS_NONE                0
25
#define DVS_POWERNOW_K6         1
26
#define DVS_POWERNOW_K7         2
27
#define DVS_POWERNOW_K8         3
28
#define DVS_MEDIAGX_GEODE       4
29
#define DVS_P4_CLOCK_MOD        5
30
#define DVS_SS_CENTRINO         6
31
#define DVS_SS_ICH              7
32
#define DVS_SS_SMI              8
33
 
34
int CPU26_installed(void);
35
int CPU26_init(void);
36
int CPU26_close(void);
37
 
38
void CPU26_showinfo(void);
39
 
40
int CPU26_initDVS(void);
41
int CPU26_closeDVS(void);
42
 
43
#endif
44