Hardware/ATI/ATIGPU.cs
author moel.mich
Mon, 01 Feb 2010 21:04:14 +0000
changeset 18 49220085218d
parent 3 1a0928afac6b
child 24 09ab31bee6bd
permissions -rw-r--r--
Release version 0.1.7. Improved report writer.
     1 /*
     2   
     3   Version: MPL 1.1/GPL 2.0/LGPL 2.1
     4 
     5   The contents of this file are subject to the Mozilla Public License Version
     6   1.1 (the "License"); you may not use this file except in compliance with
     7   the License. You may obtain a copy of the License at
     8  
     9   http://www.mozilla.org/MPL/
    10 
    11   Software distributed under the License is distributed on an "AS IS" basis,
    12   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
    13   for the specific language governing rights and limitations under the License.
    14 
    15   The Original Code is the Open Hardware Monitor code.
    16 
    17   The Initial Developer of the Original Code is 
    18   Michael Möller <m.moeller@gmx.ch>.
    19   Portions created by the Initial Developer are Copyright (C) 2009-2010
    20   the Initial Developer. All Rights Reserved.
    21 
    22   Contributor(s):
    23 
    24   Alternatively, the contents of this file may be used under the terms of
    25   either the GNU General Public License Version 2 or later (the "GPL"), or
    26   the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
    27   in which case the provisions of the GPL or the LGPL are applicable instead
    28   of those above. If you wish to allow use of your version of this file only
    29   under the terms of either the GPL or the LGPL, and not to allow others to
    30   use your version of this file under the terms of the MPL, indicate your
    31   decision by deleting the provisions above and replace them with the notice
    32   and other provisions required by the GPL or the LGPL. If you do not delete
    33   the provisions above, a recipient may use your version of this file under
    34   the terms of any one of the MPL, the GPL or the LGPL.
    35  
    36 */
    37 
    38 using System;
    39 using System.Collections.Generic;
    40 using System.Drawing;
    41 using System.Reflection;
    42 
    43 namespace OpenHardwareMonitor.Hardware.ATI {
    44   public class ATIGPU : IHardware {
    45 
    46     private string name;
    47     private Image icon;
    48     private int adapterIndex;
    49     private int busNumber;
    50     private int deviceNumber;
    51     private Sensor temperature;
    52     private Sensor fan;
    53     private Sensor coreClock;
    54     private Sensor memoryClock;
    55     private Sensor coreVoltage;
    56 
    57     private List<ISensor> active = new List<ISensor>();
    58 
    59     public ATIGPU(string name, int adapterIndex, int busNumber, 
    60       int deviceNumber) 
    61     {
    62       this.name = name;
    63       this.icon = Utilities.EmbeddedResources.GetImage("ati.png");
    64       this.adapterIndex = adapterIndex;
    65       this.busNumber = busNumber;
    66       this.deviceNumber = deviceNumber;
    67 
    68       ADLFanSpeedInfo speedInfo = new ADLFanSpeedInfo();
    69       ADL.ADL_Overdrive5_FanSpeedInfo_Get(adapterIndex, 0, ref speedInfo);
    70 
    71       this.temperature = 
    72         new Sensor("GPU Core", 0, SensorType.Temperature, this);
    73       this.fan = new Sensor("GPU", 0, speedInfo.MaxRPM, SensorType.Fan, this);
    74       this.coreClock = new Sensor("GPU Core", 0, SensorType.Clock, this);
    75       this.memoryClock = new Sensor("GPU Memory", 1, SensorType.Clock, this);
    76       this.coreVoltage = new Sensor("GPU Core", 0, SensorType.Voltage, this);
    77       Update();                   
    78     }
    79 
    80     public int BusNumber { get { return busNumber; } }
    81 
    82     public int DeviceNumber { get { return deviceNumber; } }
    83 
    84     public string Name {
    85       get { return name; }
    86     }
    87 
    88     public string Identifier {
    89       get { return "/atigpu/" + adapterIndex; }
    90     }
    91 
    92     public Image Icon {
    93       get { return icon; }
    94     }
    95 
    96     public ISensor[] Sensors {
    97       get { return active.ToArray(); }
    98     }
    99 
   100     public string GetReport() {
   101       return null;
   102     }
   103 
   104     public void Update() {
   105       ADLTemperature adlt = new ADLTemperature();
   106       if (ADL.ADL_Overdrive5_Temperature_Get(adapterIndex, 0, ref adlt)
   107         == ADL.ADL_OK) 
   108       {
   109         temperature.Value = 0.001f * adlt.Temperature;
   110         ActivateSensor(temperature);
   111       } else {
   112         DeactivateSensor(temperature);
   113       }
   114 
   115       ADLFanSpeedValue adlf = new ADLFanSpeedValue();
   116       adlf.SpeedType = ADL.ADL_DL_FANCTRL_SPEED_TYPE_RPM;
   117       if (ADL.ADL_Overdrive5_FanSpeed_Get(adapterIndex, 0, ref adlf)
   118         == ADL.ADL_OK) 
   119       {
   120         fan.Value = adlf.FanSpeed;
   121         ActivateSensor(fan);
   122       } else {
   123         DeactivateSensor(fan);
   124       }
   125 
   126       ADLPMActivity adlp = new ADLPMActivity();
   127       if (ADL.ADL_Overdrive5_CurrentActivity_Get(adapterIndex, ref adlp)
   128         == ADL.ADL_OK) 
   129       {
   130         coreClock.Value = 0.01f * adlp.EngineClock;
   131         memoryClock.Value = 0.01f * adlp.MemoryClock;
   132         coreVoltage.Value = 0.001f * adlp.Vddc;
   133         ActivateSensor(coreClock);
   134         ActivateSensor(memoryClock);
   135         ActivateSensor(coreVoltage);
   136       } else {
   137         DeactivateSensor(coreClock);
   138         DeactivateSensor(memoryClock);
   139         DeactivateSensor(coreVoltage);
   140       }
   141     }
   142 
   143     private void ActivateSensor(Sensor sensor) {
   144       if (!active.Contains(sensor)) {
   145         active.Add(sensor);
   146         if (SensorAdded != null) 
   147           SensorAdded(sensor);
   148       }
   149     }
   150 
   151     private void DeactivateSensor(Sensor sensor) {
   152       if (active.Contains(sensor)) {
   153         active.Remove(sensor);
   154         if (SensorRemoved != null)
   155           SensorRemoved(sensor);
   156       }
   157     }
   158 
   159     public event SensorEventHandler SensorAdded;
   160     public event SensorEventHandler SensorRemoved;
   161   }
   162 }