msrtool: add VIA C7

Change-Id: I67c4f579f898a709dde3fab6bab1474a721da770
Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Reviewed-on: https://review.coreboot.org/18258
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Lubomir Rintel
2017-01-22 22:20:04 +01:00
committed by Patrick Georgi
parent 1edd66c1ef
commit 6cc4dea9f1
4 changed files with 479 additions and 1 deletions

View File

@@ -97,6 +97,7 @@ struct msrdef {
typedef enum {
VENDOR_INTEL = 0x756e6547,
VENDOR_AMD = 0x68747541,
VENDOR_CENTAUR = 0x746e6543,
} vendor_t;
struct cpuid_t {
@@ -216,6 +217,10 @@ extern const struct msrdef cs5536_msrs[];
extern int k8_probe(const struct targetdef *t, const struct cpuid_t *id);
extern const struct msrdef k8_msrs[];
/* via_c7.c */
extern int via_c7_probe(const struct targetdef *t, const struct cpuid_t *id);
extern const struct msrdef via_c7_msrs[];
/* intel_pentium3_early.c */
extern int intel_pentium3_early_probe(const struct targetdef *t, const struct cpuid_t *id);
extern const struct msrdef intel_pentium3_early_msrs[];