mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-12 02:16:17 +00:00
intel_stepping: Add G45 and GM45.
This commit is contained in:
parent
29777a542b
commit
872713057a
@ -129,6 +129,26 @@ int main(int argc, char **argv)
|
|||||||
else
|
else
|
||||||
step_desc = ">E0";
|
step_desc = ">E0";
|
||||||
break;
|
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",
|
printf("Vendor: 0x%04x, Device: 0x%04x, Revision: 0x%02x (%s)\n",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user