Hardware/HDD/SSDSamsung.cs
author moel.mich
Mon, 02 Jul 2012 21:14:40 +0000
changeset 357 fb8dc26f65a4
parent 328 f837f9f0973e
permissions -rw-r--r--
Added mainboard specific configurations for the following Gigabyte mainboards: EX58-UD3R, G41M-Combo, G41MT-S2, G41MT-S2P, GA-MA770T-UD3P, GA-MA785GM-US2H, GA-MA78LM-S2H, GA-MA790X-UD3P, H55-USB3, H55N-USB3, H61M-DS2 REV 1.2, H61M-USB3-B3 REV 2.0, H67A-USB3-B3, P55A-UD3, P67A-UD3-B3, P67A-UD3R-B3, Z68A-D3H-B3, Z68AP-D3, Z68X-UD3H-B3.
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 namespace OpenHardwareMonitor.Hardware.HDD {
    12   using System.Collections.Generic;
    13 
    14   [NamePrefix(""), RequireSmart(0xB0), RequireSmart(0xB1), RequireSmart(0xB2), 
    15     RequireSmart(0xB3), RequireSmart(0xB4), RequireSmart(0xB5), 
    16     RequireSmart(0xB6), RequireSmart(0xB7)]
    17   internal class SSDSamsung : AbstractHarddrive {
    18 
    19     private static readonly IEnumerable<SmartAttribute> smartAttributes =
    20       new List<SmartAttribute> {
    21       new SmartAttribute(0x09, SmartNames.PowerOnHours, RawToInt),
    22       new SmartAttribute(0x0C, SmartNames.PowerCycleCount, RawToInt),
    23       new SmartAttribute(0xAF, SmartNames.ProgramFailCountChip, RawToInt),
    24       new SmartAttribute(0xB0, SmartNames.EraseFailCountChip, RawToInt),
    25       new SmartAttribute(0xB1, SmartNames.WearLevelingCount, RawToInt),
    26       new SmartAttribute(0xB2, SmartNames.UsedReservedBlockCountChip, RawToInt),
    27       new SmartAttribute(0xB3, SmartNames.UsedReservedBlockCountTotal, RawToInt),
    28 
    29       // Unused Reserved Block Count (Total)
    30       new SmartAttribute(0xB4, SmartNames.RemainingLife,
    31         null, SensorType.Level, 0),
    32       
    33       new SmartAttribute(0xB5, SmartNames.ProgramFailCountTotal, RawToInt),
    34       new SmartAttribute(0xB6, SmartNames.EraseFailCountTotal, RawToInt),
    35       new SmartAttribute(0xB7, SmartNames.RuntimeBadBlockTotal, RawToInt),
    36       new SmartAttribute(0xBB, SmartNames.UncorrectableErrorCount, RawToInt),
    37       new SmartAttribute(0xBE, SmartNames.TemperatureExceedCount, RawToInt),
    38       new SmartAttribute(0xC2, SmartNames.AirflowTemperature),
    39       new SmartAttribute(0xC3, SmartNames.ECCRate),
    40       new SmartAttribute(0xC6, SmartNames.OffLineUncorrectableErrorCount, RawToInt),
    41       new SmartAttribute(0xC7, SmartNames.CRCErrorCount, RawToInt),
    42       new SmartAttribute(0xC9, SmartNames.SupercapStatus),
    43       new SmartAttribute(0xCA, SmartNames.ExceptionModeStatus)
    44     };
    45 
    46     public SSDSamsung(ISmart smart, string name, string firmwareRevision,
    47       int index, ISettings settings)
    48       : base(smart, name, firmwareRevision, index, smartAttributes, settings) { }
    49   }
    50 }