Move a whole bunch of copy-pasta code from soc/intel/{bdw,skl,cnl,icl, tgl,ehl,jsl,adl} and cpu/intel/{hsw,model_*} to cpu/intel/common. This change just moves the code. Rework is done in CB:46588. Change-Id: Ib0cc834de8492d59c423317598e1c11847a0b1ab Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46274 Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
15 lines
247 B
C
15 lines
247 B
C
#ifndef CPU_INTEL_MSR_H
|
|
#define CPU_INTEL_MSR_H
|
|
|
|
/*
|
|
* Common MSRs for Intel CPUs
|
|
*/
|
|
|
|
#define MSR_FEATURE_CONFIG 0x13c
|
|
#define AESNI_DISABLE (1 << 1)
|
|
#define AESNI_LOCK (1 << 0)
|
|
|
|
#define MSR_PIC_MSG_CONTROL 0x2e
|
|
|
|
#endif /* CPU_INTEL_MSR_H */
|