2011-12-31 17:31:04 +00:00
|
|
|
|
/*
|
|
|
|
|
|
2012-05-27 14:23:31 +00:00
|
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-12-31 17:31:04 +00:00
|
|
|
|
|
2015-12-13 18:11:48 +01:00
|
|
|
|
Copyright (C) 2009-2015 Michael Möller <mmoeller@openhardwaremonitor.org>
|
2012-05-27 14:23:31 +00:00
|
|
|
|
Copyright (C) 2010 Paul Werelds
|
|
|
|
|
Copyright (C) 2011 Roland Reinl <roland-reinl@gmx.de>
|
|
|
|
|
|
2011-12-31 17:31:04 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OpenHardwareMonitor.Hardware.HDD {
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2012-01-02 21:17:21 +00:00
|
|
|
|
[NamePrefix(""), RequireSmart(0x01), RequireSmart(0x09), RequireSmart(0x0C),
|
|
|
|
|
RequireSmart(0xD1), RequireSmart(0xCE), RequireSmart(0xCF)]
|
2011-12-31 17:31:04 +00:00
|
|
|
|
internal class SSDIndilinx : AbstractHarddrive {
|
|
|
|
|
|
|
|
|
|
private static readonly IEnumerable<SmartAttribute> smartAttributes =
|
|
|
|
|
new List<SmartAttribute> {
|
2012-01-02 21:17:21 +00:00
|
|
|
|
new SmartAttribute(0x01, SmartNames.ReadErrorRate),
|
|
|
|
|
new SmartAttribute(0x09, SmartNames.PowerOnHours),
|
|
|
|
|
new SmartAttribute(0x0C, SmartNames.PowerCycleCount),
|
|
|
|
|
new SmartAttribute(0xB8, SmartNames.InitialBadBlockCount),
|
|
|
|
|
new SmartAttribute(0xC3, SmartNames.ProgramFailure),
|
|
|
|
|
new SmartAttribute(0xC4, SmartNames.EraseFailure),
|
|
|
|
|
new SmartAttribute(0xC5, SmartNames.ReadFailure),
|
|
|
|
|
new SmartAttribute(0xC6, SmartNames.SectorsRead),
|
|
|
|
|
new SmartAttribute(0xC7, SmartNames.SectorsWritten),
|
|
|
|
|
new SmartAttribute(0xC8, SmartNames.ReadCommands),
|
|
|
|
|
new SmartAttribute(0xC9, SmartNames.WriteCommands),
|
|
|
|
|
new SmartAttribute(0xCA, SmartNames.BitErrors),
|
|
|
|
|
new SmartAttribute(0xCB, SmartNames.CorrectedErrors),
|
|
|
|
|
new SmartAttribute(0xCC, SmartNames.BadBlockFullFlag),
|
|
|
|
|
new SmartAttribute(0xCD, SmartNames.MaxCellCycles),
|
|
|
|
|
new SmartAttribute(0xCE, SmartNames.MinErase),
|
|
|
|
|
new SmartAttribute(0xCF, SmartNames.MaxErase),
|
|
|
|
|
new SmartAttribute(0xD0, SmartNames.AverageEraseCount),
|
|
|
|
|
new SmartAttribute(0xD1, SmartNames.RemainingLife,
|
2015-12-13 18:11:48 +01:00
|
|
|
|
null, SensorType.Level, 0, SmartNames.RemainingLife),
|
2012-01-02 21:17:21 +00:00
|
|
|
|
new SmartAttribute(0xD2, SmartNames.UnknownUnique),
|
|
|
|
|
new SmartAttribute(0xD3, SmartNames.SataErrorCountCrc),
|
|
|
|
|
new SmartAttribute(0xD4, SmartNames.SataErrorCountHandshake)
|
|
|
|
|
};
|
2011-12-31 17:31:04 +00:00
|
|
|
|
|
2012-01-01 10:14:42 +00:00
|
|
|
|
public SSDIndilinx(ISmart smart, string name, string firmwareRevision,
|
|
|
|
|
int index, ISettings settings)
|
|
|
|
|
: base(smart, name, firmwareRevision, index, smartAttributes, settings) {}
|
2011-12-31 17:31:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|