blob: 0d11b5eecee107be9c9db75d0efa3284ef18db7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef CPU_INTEL_MSR_H
#define CPU_INTEL_MSR_H
/*
* Common MSRs for Intel CPUs
*/
#define MSR_FEATURE_CONFIG 0x13c
#define AESNI_LOCK (1 << 0)
#endif /* CPU_INTEL_MSR_H */
|