summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-03-27 11:07:33 -0700
committerEric Anholt <eric@anholt.net>2009-03-27 11:07:33 -0700
commit872713057a7bf02afaab89832d85c0401b4bb510 (patch)
tree72a0a97c71148a0fa2a123a17dbf93c397867a89
parent29777a542b8db659cf539af72b17fe17a44c2aae (diff)
intel_stepping: Add G45 and GM45.
-rw-r--r--tools/intel_stepping.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/intel_stepping.c b/tools/intel_stepping.c
index a48480e22..2eb44c7e9 100644
--- a/tools/intel_stepping.c
+++ b/tools/intel_stepping.c
@@ -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",