Hardware/HDD/SSDIntel.cs
author moel.mich
Mon, 23 Jul 2012 21:54:35 +0000
changeset 370 8e4dedc41924
parent 328 f837f9f0973e
child 374 ea86cea126bc
permissions -rw-r--r--
Added a RAM hardware and sensor, fixed Issue 115.
moel@324
     1
/*
moel@324
     2
 
moel@344
     3
  This Source Code Form is subject to the terms of the Mozilla Public
moel@344
     4
  License, v. 2.0. If a copy of the MPL was not distributed with this
moel@344
     5
  file, You can obtain one at http://mozilla.org/MPL/2.0/.
moel@324
     6
 
moel@344
     7
  Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
moel@344
     8
	Copyright (C) 2010 Paul Werelds
moel@344
     9
  Copyright (C) 2011 Roland Reinl <roland-reinl@gmx.de>
moel@344
    10
	
moel@324
    11
*/
moel@324
    12
moel@324
    13
namespace OpenHardwareMonitor.Hardware.HDD {
moel@324
    14
  using System.Collections.Generic;
moel@324
    15
moel@324
    16
  [NamePrefix("INTEL SSD"), 
moel@324
    17
   RequireSmart(0xE1), RequireSmart(0xE8), RequireSmart(0xE9)]
moel@324
    18
  internal class SSDIntel : AbstractHarddrive {
moel@324
    19
moel@324
    20
    private static readonly IEnumerable<SmartAttribute> smartAttributes =
moel@324
    21
      new List<SmartAttribute> {
moel@324
    22
moel@328
    23
      new SmartAttribute(0x01, SmartNames.ReadErrorRate),
moel@328
    24
      new SmartAttribute(0x03, SmartNames.SpinUpTime),
moel@328
    25
      new SmartAttribute(0x04, SmartNames.StartStopCount, RawToInt),
moel@328
    26
      new SmartAttribute(0x05, SmartNames.ReallocatedSectorsCount),
moel@328
    27
      new SmartAttribute(0x09, SmartNames.PowerOnHours, RawToInt),
moel@328
    28
      new SmartAttribute(0x0C, SmartNames.PowerCycleCount, RawToInt),
moel@328
    29
      new SmartAttribute(0xAA, SmartNames.AvailableReservedSpace),
moel@328
    30
      new SmartAttribute(0xAB, SmartNames.ProgramFailCount),
moel@328
    31
      new SmartAttribute(0xAC, SmartNames.EraseFailCount),
moel@328
    32
      new SmartAttribute(0xB8, SmartNames.EndToEndError),
moel@328
    33
      new SmartAttribute(0xC0, SmartNames.UnsafeShutdownCount), 
moel@328
    34
      new SmartAttribute(0xE1, SmartNames.HostWrites, 
moel@324
    35
        (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
moel@324
    36
        SensorType.Data, 0),
moel@328
    37
      new SmartAttribute(0xE8, SmartNames.RemainingLife, 
moel@324
    38
        null, SensorType.Level, 0),
moel@328
    39
      new SmartAttribute(0xE9, SmartNames.MediaWearOutIndicator),
moel@328
    40
      new SmartAttribute(0xF1, SmartNames.HostWrites,
moel@324
    41
        (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
moel@324
    42
        SensorType.Data, 0),
moel@328
    43
      new SmartAttribute(0xF2, SmartNames.HostReads, 
moel@324
    44
        (byte[] r, byte v) => { return RawToInt(r, v) / 0x20; }, 
moel@324
    45
        SensorType.Data, 1),      
moel@324
    46
    };
moel@324
    47
moel@325
    48
    public SSDIntel(ISmart smart, string name, string firmwareRevision, 
moel@325
    49
      int index, ISettings settings)
moel@325
    50
      : base(smart, name, firmwareRevision, index, smartAttributes, settings) {}
moel@324
    51
  }
moel@324
    52
}