# HG changeset patch # User moel.mich # Date 1326636352 0 # Node ID 19b1e150e7afedbb1f768a4db7602afc20388bd9 # Parent e60f97192555769482293d1df7572bb2468d5b23 Added a mainboard specific configuration for the ASUS P9X79 (detailed fan and control configuration still missing). diff -r e60f97192555 -r 19b1e150e7af Hardware/Mainboard/Model.cs --- a/Hardware/Mainboard/Model.cs Sun Jan 08 18:47:56 2012 +0000 +++ b/Hardware/Mainboard/Model.cs Sun Jan 15 14:05:52 2012 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -53,6 +53,7 @@ P8P67_EVO, P8P67_PRO, P8P67_M_PRO, + P9X79, Rampage_Extreme, Rampage_II_GENE, diff -r e60f97192555 -r 19b1e150e7af Hardware/Mainboard/SMBIOS.cs --- a/Hardware/Mainboard/SMBIOS.cs Sun Jan 08 18:47:56 2012 +0000 +++ b/Hardware/Mainboard/SMBIOS.cs Sun Jan 15 14:05:52 2012 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -343,6 +343,7 @@ case "ASRock": return Manufacturer.ASRock; case "ASUSTeK Computer INC.": + case "ASUSTeK COMPUTER INC.": return Manufacturer.ASUS; case "Dell Inc.": return Manufacturer.Dell; @@ -420,6 +421,8 @@ return Model.P8P67_PRO; case "P8P67-M PRO": return Model.P8P67_M_PRO; + case "P9X79": + return Model.P9X79; case "Rampage Extreme": return Model.Rampage_Extreme; case "Rampage II GENE": diff -r e60f97192555 -r 19b1e150e7af Hardware/Mainboard/SuperIOHardware.cs --- a/Hardware/Mainboard/SuperIOHardware.cs Sun Jan 08 18:47:56 2012 +0000 +++ b/Hardware/Mainboard/SuperIOHardware.cs Sun Jan 15 14:05:52 2012 +0000 @@ -16,7 +16,7 @@ The Initial Developer of the Original Code is Michael Möller . - Portions created by the Initial Developer are Copyright (C) 2009-2011 + Portions created by the Initial Developer are Copyright (C) 2009-2012 the Initial Developer. All Rights Reserved. Contributor(s): @@ -896,6 +896,19 @@ f.Add(new Fan("Power Fan", 3)); f.Add(new Fan("Auxiliary Fan", 4)); break; + case Model.P9X79: // NCT6776F + v.Add(new Voltage("CPU VCore", 0)); + v.Add(new Voltage("+12V", 1, 11, 1)); + v.Add(new Voltage("Analog +3.3V", 2, 34, 34)); + v.Add(new Voltage("+3.3V", 3, 34, 34)); + v.Add(new Voltage("+5V", 4, 12, 3)); + v.Add(new Voltage("Standby +3.3V", 7, 34, 34)); + v.Add(new Voltage("VBAT", 8, 34, 34)); + t.Add(new Temperature("CPU", 0)); + t.Add(new Temperature("Motherboard", 3)); + for (int i = 0; i < superIO.Fans.Length; i++) + f.Add(new Fan("Fan #" + (i + 1), i)); + break; default: v.Add(new Voltage("CPU VCore", 0)); v.Add(new Voltage("Voltage #2", 1, true));