mirror of
https://github.com/anrieff/libcpuid
synced 2025-10-03 11:01:30 +00:00
Add support for Atom Pineview.
This commit is contained in:
parent
45651ef7bc
commit
20632054d6
2 changed files with 97 additions and 0 deletions
|
@ -61,6 +61,7 @@ enum _intel_code_t {
|
|||
ATOM_DIAMONDVILLE,
|
||||
ATOM_DUALCORE,
|
||||
ATOM_SILVERTHORNE,
|
||||
ATOM_PINEVIEW,
|
||||
CORE_I3,
|
||||
CORE_I5,
|
||||
CORE_I7,
|
||||
|
@ -207,6 +208,7 @@ const struct match_entry_t cpudb_intel[] = {
|
|||
{ 6, 12, -1, -1, -1, 1, -1, -1, ATOM_DUALCORE , 0, "Atom Dual-Core (Diamondville)" },
|
||||
{ 6, 12, -1, -1, -1, 1, -1, -1, ATOM_SILVERTHORNE , 0, "Atom (Silverthorne)" },
|
||||
{ 6, 12, -1, -1, -1, 2, -1, -1, NO_CODE , 0, "Atom (Cedarview)" },
|
||||
{ 6, 12, -1, -1, -1, 1, -1, -1, ATOM_PINEVIEW , 0, "Atom (Pineview)" },
|
||||
|
||||
/* -------------------------------------------------- */
|
||||
|
||||
|
@ -592,6 +594,7 @@ static intel_code_t get_brand_code(struct cpu_id_t* data)
|
|||
{ ATOM_DIAMONDVILLE, "Atom(TM) CPU N" },
|
||||
{ ATOM_DUALCORE, "Atom(TM) CPU 3" },
|
||||
{ ATOM_SILVERTHORNE, "Atom(TM) CPU Z" },
|
||||
{ ATOM_PINEVIEW, "Atom(TM) CPU D" },
|
||||
};
|
||||
|
||||
if (strstr(bs, "Mobile")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue