TianoCore EDK2 master
Loading...
Searching...
No Matches
PentiumMsr.h
Go to the documentation of this file.
1
18#ifndef __PENTIUM_MSR_H__
19#define __PENTIUM_MSR_H__
20
22
32#define IS_PENTIUM_PROCESSOR(DisplayFamily, DisplayModel) \
33 (DisplayFamily == 0x05 && \
34 ( \
35 DisplayModel == 0x01 || \
36 DisplayModel == 0x02 || \
37 DisplayModel == 0x04 \
38 ) \
39 )
40
57#define MSR_PENTIUM_P5_MC_ADDR 0x00000000
58
75#define MSR_PENTIUM_P5_MC_TYPE 0x00000001
76
93#define MSR_PENTIUM_TSC 0x00000010
94
111#define MSR_PENTIUM_CESR 0x00000011
112
131#define MSR_PENTIUM_CTR0 0x00000012
132#define MSR_PENTIUM_CTR1 0x00000013
134
135#endif