intel_stepping: Add G45 and GM45.

This commit is contained in:
Eric Anholt 2009-03-27 11:07:33 -07:00
parent 29777a542b
commit 872713057a

View File

@ -129,6 +129,26 @@ int main(int argc, char **argv)
else
step_desc = ">E0";
break;
case PCI_CHIP_GM45_GM:
if (stepping < 0x07)
step_desc = "<B3";
else if (stepping == 0x03)
step_desc = "B3";
else
step_desc = ">B3";
break;
case PCI_CHIP_G45_G:
case PCI_CHIP_Q45_G:
case PCI_CHIP_G41_G:
if (stepping < 0x02)
step_desc = "<A2";
else if (stepping == 0x02)
step_desc = "A2";
else if (stepping == 0x03)
step_desc = "A3";
else
step_desc = ">A3";
break;
}
printf("Vendor: 0x%04x, Device: 0x%04x, Revision: 0x%02x (%s)\n",