diff options
author | Nils Jacobs <njacobs8@hetnet.nl> | 2010-01-15 10:06:39 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-01-15 10:06:39 +0000 |
commit | 58a901f6f93c1988066f39cf6ef21c8458e4547c (patch) | |
tree | 8446e2748269b0395d87fb47ee6a28fcfa3f21d0 /util/msrtool/msrtool.c | |
parent | 90b96b68e0fedbc1d76e8547cad39c57021d5119 (diff) |
Support for the AMD Geode GX2
Processors to Msrtool.
It seems to work as it was tested on a Wyse Winterm S50.
Signed-off-by: Nils Jacobs <njacobs8@hetnet.nl>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5008 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/msrtool/msrtool.c')
-rw-r--r-- | util/msrtool/msrtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/msrtool/msrtool.c b/util/msrtool/msrtool.c index 4ed86baf58..56d2591db4 100644 --- a/util/msrtool/msrtool.c +++ b/util/msrtool/msrtool.c @@ -40,6 +40,7 @@ uint8_t reserved = 0, verbose = 0, quiet = 0; struct pci_access *pacc = NULL; static struct targetdef alltargets[] = { + { "geodegx2", "AMD Geode(tm) GX2", geodegx2_probe, geodegx2_msrs }, { "geodelx", "AMD Geode(tm) LX", geodelx_probe, geodelx_msrs }, { "cs5536", "AMD Geode(tm) CS5536", cs5536_probe, cs5536_msrs }, { "K8", "AMD K8 Family", k8_probe, k8_msrs }, |