diff options
author | Olivier Langlois <olivier@olivierlanglois.net> | 2013-06-03 01:30:25 -0400 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-06-06 21:02:09 +0200 |
commit | ccc7d1f229ab4b0dc9b10f63966640bbac750722 (patch) | |
tree | 0db3889b302bfe359263245e8ee19b476b37d7c3 /util/msrtool/msrtool.h | |
parent | e1cddc1278d66f6ab776f60e6aecb8113a116a5b (diff) |
Intel Atom cpu support to msrtool
Added support for Intel Atom cpu to msrtool
Fixed a cut&paste error in nehalem msr bits definition
It has been tested with a N455 cpu and msrtool output can be review at:
http://www.trillion01.com/coreboot/msrtool_atom.txt
Change-Id: I0ecf455b559185e2d16fa1a655bf021efc2ef537
Signed-off-by: Olivier Langlois <olivier@olivierlanglois.net>
Reviewed-on: http://review.coreboot.org/3351
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/msrtool/msrtool.h')
-rw-r--r-- | util/msrtool/msrtool.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/msrtool/msrtool.h b/util/msrtool/msrtool.h index 39b1cacdaf..e99921ac76 100644 --- a/util/msrtool/msrtool.h +++ b/util/msrtool/msrtool.h @@ -250,4 +250,8 @@ extern const struct msrdef intel_pentium4_later_msrs[]; extern int intel_nehalem_probe(const struct targetdef *t, const struct cpuid_t *id); extern const struct msrdef intel_nehalem_msrs[]; +/* intel_atom.c */ +extern int intel_atom_probe(const struct targetdef *t, const struct cpuid_t *id); +extern const struct msrdef intel_atom_msrs[]; + #endif /* MSRTOOL_H */ |