moel@324: /* moel@324: moel@344: This Source Code Form is subject to the terms of the Mozilla Public moel@344: License, v. 2.0. If a copy of the MPL was not distributed with this moel@344: file, You can obtain one at http://mozilla.org/MPL/2.0/. moel@324: moel@344: Copyright (C) 2011-2012 Michael Möller moel@344: Copyright (C) 2010 Paul Werelds moel@344: Copyright (C) 2011 Roland Reinl moel@344: moel@324: */ moel@324: moel@324: using System; moel@324: using System.Collections.Generic; moel@324: using System.Text; moel@324: moel@324: namespace OpenHardwareMonitor.Hardware.HDD { moel@324: moel@324: [NamePrefix("")] moel@324: internal class GenericHarddisk : AbstractHarddrive { moel@324: moel@324: private static readonly List smartAttributes = moel@324: new List { moel@328: new SmartAttribute(0x01, SmartNames.ReadErrorRate), moel@328: new SmartAttribute(0x02, SmartNames.ThroughputPerformance), moel@328: new SmartAttribute(0x03, SmartNames.SpinUpTime), moel@328: new SmartAttribute(0x04, SmartNames.StartStopCount, RawToInt), moel@328: new SmartAttribute(0x05, SmartNames.ReallocatedSectorsCount), moel@328: new SmartAttribute(0x06, SmartNames.ReadChannelMargin), moel@328: new SmartAttribute(0x07, SmartNames.SeekErrorRate), moel@328: new SmartAttribute(0x08, SmartNames.SeekTimePerformance), moel@328: new SmartAttribute(0x09, SmartNames.PowerOnHours, RawToInt), moel@328: new SmartAttribute(0x0A, SmartNames.SpinRetryCount), moel@328: new SmartAttribute(0x0B, SmartNames.RecalibrationRetries), moel@328: new SmartAttribute(0x0C, SmartNames.PowerCycleCount, RawToInt), moel@328: new SmartAttribute(0x0D, SmartNames.SoftReadErrorRate), moel@328: new SmartAttribute(0xAA, SmartNames.Unknown), moel@328: new SmartAttribute(0xAB, SmartNames.Unknown), moel@328: new SmartAttribute(0xAC, SmartNames.Unknown), moel@358: new SmartAttribute(0xB7, SmartNames.SataDownshiftErrorCount, RawToInt), moel@328: new SmartAttribute(0xB8, SmartNames.EndToEndError), moel@328: new SmartAttribute(0xB9, SmartNames.HeadStability), moel@328: new SmartAttribute(0xBA, SmartNames.InducedOpVibrationDetection), moel@358: new SmartAttribute(0xBB, SmartNames.ReportedUncorrectableErrors, RawToInt), moel@358: new SmartAttribute(0xBC, SmartNames.CommandTimeout, RawToInt), moel@328: new SmartAttribute(0xBD, SmartNames.HighFlyWrites), moel@328: new SmartAttribute(0xBF, SmartNames.GSenseErrorRate), moel@328: new SmartAttribute(0xC0, SmartNames.EmergencyRetractCycleCount), moel@328: new SmartAttribute(0xC1, SmartNames.LoadCycleCount), moel@328: new SmartAttribute(0xC3, SmartNames.HardwareEccRecovered), moel@328: new SmartAttribute(0xC4, SmartNames.ReallocationEventCount), moel@328: new SmartAttribute(0xC5, SmartNames.CurrentPendingSectorCount), moel@328: new SmartAttribute(0xC6, SmartNames.UncorrectableSectorCount), moel@328: new SmartAttribute(0xC7, SmartNames.UltraDmaCrcErrorCount), moel@328: new SmartAttribute(0xC8, SmartNames.WriteErrorRate), moel@328: new SmartAttribute(0xCA, SmartNames.DataAddressMarkErrors), moel@328: new SmartAttribute(0xCB, SmartNames.RunOutCancel), moel@328: new SmartAttribute(0xCC, SmartNames.SoftEccCorrection), moel@328: new SmartAttribute(0xCD, SmartNames.ThermalAsperityRate), moel@328: new SmartAttribute(0xCE, SmartNames.FlyingHeight), moel@328: new SmartAttribute(0xCF, SmartNames.SpinHighCurrent), moel@328: new SmartAttribute(0xD0, SmartNames.SpinBuzz), moel@328: new SmartAttribute(0xD1, SmartNames.OfflineSeekPerformance), moel@328: new SmartAttribute(0xD3, SmartNames.VibrationDuringWrite), moel@328: new SmartAttribute(0xD4, SmartNames.ShockDuringWrite), moel@328: new SmartAttribute(0xDC, SmartNames.DiskShift), moel@328: new SmartAttribute(0xDD, SmartNames.AlternativeGSenseErrorRate), moel@328: new SmartAttribute(0xDE, SmartNames.LoadedHours), moel@328: new SmartAttribute(0xDF, SmartNames.LoadUnloadRetryCount), moel@328: new SmartAttribute(0xE0, SmartNames.LoadFriction), moel@328: new SmartAttribute(0xE1, SmartNames.LoadUnloadCycleCount), moel@328: new SmartAttribute(0xE2, SmartNames.LoadInTime), moel@328: new SmartAttribute(0xE3, SmartNames.TorqueAmplificationCount), moel@328: new SmartAttribute(0xE4, SmartNames.PowerOffRetractCycle), moel@328: new SmartAttribute(0xE6, SmartNames.GmrHeadAmplitude), moel@328: new SmartAttribute(0xE8, SmartNames.EnduranceRemaining), moel@328: new SmartAttribute(0xE9, SmartNames.PowerOnHours), moel@328: new SmartAttribute(0xF0, SmartNames.HeadFlyingHours), moel@328: new SmartAttribute(0xF1, SmartNames.TotalLbasWritten), moel@328: new SmartAttribute(0xF2, SmartNames.TotalLbasRead), moel@328: new SmartAttribute(0xFA, SmartNames.ReadErrorRetryRate), moel@328: new SmartAttribute(0xFE, SmartNames.FreeFallProtection), moel@324: moel@328: new SmartAttribute(0xC2, SmartNames.Temperature, moel@324: (byte[] r, byte v) => { return r[0]; }, SensorType.Temperature, 0), moel@328: new SmartAttribute(0xE7, SmartNames.Temperature, moel@324: (byte[] r, byte v) => { return r[0]; }, SensorType.Temperature, 0), moel@328: new SmartAttribute(0xBE, SmartNames.TemperatureDifferenceFrom100, moel@324: null, SensorType.Temperature, 0) moel@324: }; moel@324: moel@325: public GenericHarddisk(ISmart smart, string name, string firmwareRevision, moel@325: int index, ISettings settings) moel@325: : base(smart, name, firmwareRevision, index, smartAttributes, settings) {} moel@324: } moel@324: }