Hardware/HDD/SSDIntel.cs
author moel.mich
Mon, 02 Jul 2012 21:14:40 +0000
changeset 357 fb8dc26f65a4
parent 328 f837f9f0973e
child 374 ea86cea126bc
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) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	Copyright (C) 2010 Paul Werelds
     9   Copyright (C) 2011 Roland Reinl <roland-reinl@gmx.de>
    10 	
    11 */
    12 
    13 namespace OpenHardwareMonitor.Hardware.HDD {
    14   using System.Collections.Generic;
    15 
    16   [NamePrefix("INTEL SSD"), 
    17    RequireSmart(0xE1), RequireSmart(0xE8), RequireSmart(0xE9)]
    18   internal class SSDIntel : AbstractHarddrive {
    19 
    20     private static readonly IEnumerable<SmartAttribute> smartAttributes =
    21       new List<SmartAttribute> {
    22 
    23       new SmartAttribute(0x01, SmartNames.ReadErrorRate),
    24       new SmartAttribute(0x03, SmartNames.SpinUpTime),
    25       new SmartAttribute(0x04, SmartNames.StartStopCount, RawToInt),
    26       new SmartAttribute(0x05, SmartNames.ReallocatedSectorsCount),
    27       new SmartAttribute(0x09, SmartNames.PowerOnHours, RawToInt),
    28       new SmartAttribute(0x0C, SmartNames.PowerCycleCount, RawToInt),
    29       new SmartAttribute(0xAA, SmartNames.AvailableReservedSpace),
    30       new SmartAttribute(0xAB, SmartNames.ProgramFailCount),
    31       new SmartAttribute(0xAC, SmartNames.EraseFailCount),
    32       new SmartAttribute(0xB8, SmartNames.EndToEndError),
    33       new SmartAttribute(0xC0, SmartNames.UnsafeShutdownCount), 
    34       new SmartAttribute(0xE1, SmartNames.HostWrites, 
    35         (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
    36         SensorType.Data, 0),
    37       new SmartAttribute(0xE8, SmartNames.RemainingLife, 
    38         null, SensorType.Level, 0),
    39       new SmartAttribute(0xE9, SmartNames.MediaWearOutIndicator),
    40       new SmartAttribute(0xF1, SmartNames.HostWrites,
    41         (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
    42         SensorType.Data, 0),
    43       new SmartAttribute(0xF2, SmartNames.HostReads, 
    44         (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
    45         SensorType.Data, 1),      
    46     };
    47 
    48     public SSDIntel(ISmart smart, string name, string firmwareRevision, 
    49       int index, ISettings settings)
    50       : base(smart, name, firmwareRevision, index, smartAttributes, settings) {}
    51   }
    52 }