Subversion Repositories HelenOS-historic

Rev

Rev 192 | Rev 501 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 192 Rev 476
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
#ifndef __ia64_CPU_H__
29
#ifndef __ia64_CPU_H__
30
#define __ia64_CPU_H__
30
#define __ia64_CPU_H__
31
 
31
 
-
 
32
#include <arch/types.h>
32
#include <typedefs.h>
33
#include <typedefs.h>
-
 
34
#include <arch/register.h>
-
 
35
 
-
 
36
#define FAMILY_ITANIUM  0x7
-
 
37
#define FAMILY_ITANIUM2 0x1f
33
 
38
 
34
struct cpu_arch {
39
struct cpu_arch {
-
 
40
    __u64 cpuid0;
-
 
41
    __u64 cpuid1;
-
 
42
    cpuid3_t cpuid3;
35
};
43
};
-
 
44
 
-
 
45
/** Read CPUID register.
-
 
46
 *
-
 
47
 * @param n CPUID register number.
-
 
48
 *
-
 
49
 * @return Value of CPUID[n] register.
-
 
50
 */
-
 
51
static inline __u64 cpuid_read(int n)
-
 
52
{
-
 
53
    __u64 v;
36
   
54
   
-
 
55
    __asm__ volatile ("mov %0 = cpuid[%1]\n" : "=r" (v) : "r" (n));
-
 
56
   
-
 
57
    return v;
-
 
58
}
-
 
59
 
37
#endif
60
#endif