msrtool: Add Intel Nehalem CPUs support
Added Intel processors based on Nehalem architecture support, with decoding MSRs. Change-Id: I576d5eac2542c0b62852bf05e42bc98b134c7eae Signed-off-by: Anton Kochkov <anton.kochkov@gmail.com> Reviewed-on: http://review.coreboot.org/1170 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
ffbbecc9ee
commit
54c07a675b
|
@ -26,7 +26,7 @@ PREFIX = @PREFIX@
|
|||
CFLAGS = @CFLAGS@ -fno-pic
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
||||
TARGETS = geodegx2.o geodelx.o cs5536.o k8.o intel_pentium3_early.o intel_pentium3.o intel_pentium4_early.o intel_pentium4_later.o intel_core1.o intel_core2_early.o intel_core2_later.o
|
||||
TARGETS = geodegx2.o geodelx.o cs5536.o k8.o intel_pentium3_early.o intel_pentium3.o intel_pentium4_early.o intel_pentium4_later.o intel_core1.o intel_core2_early.o intel_core2_later.o intel_nehalem.o
|
||||
SYSTEMS = linux.o darwin.o freebsd.o
|
||||
OBJS = $(PROGRAM).o msrutils.o sys.o $(SYSTEMS) $(TARGETS)
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -51,6 +51,7 @@ static struct targetdef alltargets[] = {
|
|||
{ "intel_core2_later", "Intel Xeon Processor 5200, 5400 series, Intel Core 2 Quad processors 8000, 9000 series", intel_core2_later_probe, intel_core2_later_msrs },
|
||||
{ "intel_pentium4_early", "Intel Xeon Processor, Intel Xeon Processor MP, Intel Pentium 4 processors", intel_pentium4_early_probe, intel_pentium4_early_msrs },
|
||||
{ "intel_pentium4_later", "Intel Xeon Processor, Intel Xeon Processor MP, Intel Pentium 4, Pentium D processors", intel_pentium4_later_probe, intel_pentium4_later_msrs },
|
||||
{ "intel_nehalem", "Intel Core i5, i7 Processors, Intel Xeon Processor 3400, 3500, 5500, based on Nehalem architecture", intel_nehalem_probe, intel_nehalem_msrs },
|
||||
{ TARGET_EOT }
|
||||
};
|
||||
|
||||
|
|
|
@ -244,4 +244,8 @@ extern const struct msrdef intel_pentium4_early_msrs[];
|
|||
extern int intel_pentium4_later_probe(const struct targetdef *t);
|
||||
extern const struct msrdef intel_pentium4_later_msrs[];
|
||||
|
||||
/* intel_nehalem.c */
|
||||
extern int intel_nehalem_probe(const struct targetdef *t);
|
||||
extern const struct msrdef intel_nehalem_msrs[];
|
||||
|
||||
#endif /* MSRTOOL_H */
|
||||
|
|
Loading…
Reference in New Issue