sklm80.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * Name: sklm80.c
  4.  * Project: GEnesis, PCI Gigabit Ethernet Adapter
  5.  * Version: $Revision: 1.17 $
  6.  * Date: $Date: 1999/11/22 13:35:51 $
  7.  * Purpose: Funktions to access Voltage and Temperature Sensor (LM80)
  8.  *
  9.  ******************************************************************************/
  10. /******************************************************************************
  11.  *
  12.  * (C)Copyright 1998,1999 SysKonnect,
  13.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  14.  *
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or
  18.  * (at your option) any later version.
  19.  *
  20.  * The information in this file is provided "AS IS" without warranty.
  21.  *
  22.  ******************************************************************************/
  23. /******************************************************************************
  24.  *
  25.  * History:
  26.  *
  27.  * $Log: sklm80.c,v $
  28.  * Revision 1.17  1999/11/22 13:35:51  cgoos
  29.  * Changed license header to GPL.
  30.  *
  31.  * Revision 1.16  1999/05/27 14:05:47  malthoff
  32.  * Fans: Set SenVal to 0 if the fan value is 0 or 0xff. Both values
  33.  * are outside the limits (0: div zero error, 0xff: value not in
  34.  * range, assume 0).
  35.  *
  36.  * Revision 1.15  1999/05/27 13:38:51  malthoff
  37.  * Pervent from Division by zero errors.
  38.  *
  39.  * Revision 1.14  1999/05/20 09:20:01  cgoos
  40.  * Changes for 1000Base-T (Fan sensors).
  41.  *
  42.  * Revision 1.13  1998/10/22 09:48:14  gklug
  43.  * fix: SysKonnectFileId typo
  44.  *
  45.  * Revision 1.12  1998/10/09 06:12:06  malthoff
  46.  * Remove ID_sccs by SysKonnectFileId.
  47.  *
  48.  * Revision 1.11  1998/09/04 08:33:48  malthoff
  49.  * bug fix: SenState = SK_SEN_IDLE when
  50.  * leaving SK_SEN_VALEXT state
  51.  *
  52.  * Revision 1.10  1998/08/20 12:02:10  gklug
  53.  * fix: compiler warnings type mismatch
  54.  *
  55.  * Revision 1.9  1998/08/20 11:37:38  gklug
  56.  * chg: change Ioc to IoC
  57.  *
  58.  * Revision 1.8  1998/08/19 12:20:58  gklug
  59.  * fix: remove struct from C files (see CCC)
  60.  *
  61.  * Revision 1.7  1998/08/17 07:04:57  malthoff
  62.  * Take SkLm80RcvReg() function from ski2c.c.
  63.  * Add IoC parameter to BREAK_OR_WAIT() macro.
  64.  *
  65.  * Revision 1.6  1998/08/14 07:11:28  malthoff
  66.  * remove pAc with pAC.
  67.  *
  68.  * Revision 1.5  1998/08/14 06:46:55  gklug
  69.  * fix: temperature can get negative
  70.  *
  71.  * Revision 1.4  1998/08/13 08:27:04  gklug
  72.  * add: temperature reading now o.k.
  73.  * fix: pSen declaration, SK_ERR_LOG call, ADDR macro
  74.  *
  75.  * Revision 1.3  1998/08/13 07:28:21  gklug
  76.  * fix: pSen was wrong initialized
  77.  * add: correct conversion for voltage readings
  78.  *
  79.  * Revision 1.2  1998/08/11 07:52:14  gklug
  80.  * add: Lm80 read sensor function
  81.  *
  82.  * Revision 1.1  1998/07/17 09:57:12  gklug
  83.  * initial version
  84.  *
  85.  *
  86.  *
  87.  ******************************************************************************/
  88. /*
  89. LM80 functions
  90. */
  91. static const char SysKonnectFileId[] =
  92. "$Id: sklm80.c,v 1.17 1999/11/22 13:35:51 cgoos Exp $" ;
  93. #include "h/skdrv1st.h" /* Driver Specific Definitions */
  94. #include "h/lm80.h"
  95. #include "h/skdrv2nd.h" /* Adapter Control- and Driver specific Def. */
  96. #ifdef SK_DIAG
  97. #define BREAK_OR_WAIT(pAC,IoC,Event) SkI2cWait(pAC,IoC,Event)
  98. #else /* nSK_DIAG */
  99. #define BREAK_OR_WAIT(pAC,IoC,Event) break
  100. #endif /* nSK_DIAG */
  101. #ifdef SK_DIAG
  102. /*
  103.  * read the regeister 'reg' from the device 'device'
  104.  *
  105.  * return  read error -1
  106.  * success the read value
  107.  */
  108. int SkLm80RcvReg(
  109. SK_IOC IoC, /* Adapter Context */
  110. int Dev, /* I2C device address */
  111. int Reg) /* register to read */
  112. {
  113. int Val = 0;
  114. int TempExt;
  115. /* Signal device number */
  116. if (SkI2cSndDev(IoC, Dev, I2C_WRITE)) {
  117. return(-1);
  118. }
  119. if (SkI2cSndByte(IoC, Reg)) {
  120. return(-1);
  121. }
  122. /* repeat start */
  123. if (SkI2cSndDev(IoC, Dev, I2C_READ)) {
  124. return(-1);
  125. }
  126. switch(Reg) {
  127. case LM80_TEMP_IN:
  128. Val = (int)SkI2cRcvByte(IoC, 1) ;
  129. /* First: correct the value: it might be negative */
  130. if ((Val & 0x80) != 0) {
  131. /* Value is negative */
  132. Val = Val - 256;
  133. }
  134. Val = Val * SK_LM80_TEMP_LSB;
  135. SkI2cStop(IoC);
  136. TempExt = (int) SkLm80RcvReg(IoC,LM80_ADDR,LM80_TEMP_CTRL);
  137. if (Val > 0) {
  138. Val += ((TempExt >> 7) * SK_LM80_TEMPEXT_LSB);
  139. }
  140. else {
  141. Val -= ((TempExt >> 7) * SK_LM80_TEMPEXT_LSB);
  142. }
  143. return(Val);
  144. break;
  145. case LM80_VT0_IN:
  146. case LM80_VT1_IN:
  147. case LM80_VT2_IN:
  148. case LM80_VT3_IN:
  149. Val = (int) SkI2cRcvByte(IoC, 1) * SK_LM80_VT_LSB;
  150. break;
  151. default:
  152. Val = (int) SkI2cRcvByte(IoC, 1);
  153. break;
  154. }
  155. SkI2cStop(IoC);
  156. return(Val);
  157. }
  158. #endif /* SK_DIAG */
  159. /*
  160.  * read a sensors value (LM80 specific)
  161.  *
  162.  * This function reads a sensors value from the I2c sensor chip LM80. The
  163.  * sensor is defined by its index into the sensors database in the struct
  164.  * pAC points to.
  165.  *
  166.  * Returns 1 if the read is completed
  167.  * 0 if the read must be continued (I2c Bus still allocated)
  168.  */
  169. int SkLm80ReadSensor(
  170. SK_AC *pAC, /* Adapter Context */
  171. SK_IOC IoC, /* IoContext needed in level 1 and 2 */
  172. SK_SENSOR *pSen) /* Sensor to be read */
  173. {
  174. SK_I32 Value;
  175. switch(pSen->SenState) {
  176. case SK_SEN_IDLE:
  177. /* Send address to ADDR register */
  178. SK_I2C_CTL(IoC,I2C_READ,pSen->SenDev,pSen->SenReg,0);
  179. pSen->SenState = SK_SEN_VALUE ;
  180. BREAK_OR_WAIT(pAC, IoC, I2C_READ) ;
  181. case SK_SEN_VALUE:
  182. /* Read value from data register */
  183. SK_IN32(IoC,B2_I2C_DATA, ((SK_U32 *)&Value));
  184. Value &= 0xff; /* only least significant byte is valid */
  185. /* Do NOT check the Value against the thresholds */
  186. /* Checking is done in the calling instance */
  187. if (pSen->SenType == SK_SEN_VOLT) {
  188. /* Voltage sensor */
  189. pSen->SenValue = Value * SK_LM80_VT_LSB;
  190. pSen->SenState = SK_SEN_IDLE ;
  191. return(1);
  192. }
  193. if (pSen->SenType == SK_SEN_FAN) {
  194. if (Value != 0 && Value != 0xff) {
  195. /* Fan speed counter */
  196. pSen->SenValue = SK_LM80_FAN_FAKTOR/Value;
  197. }
  198. else {
  199. /* Indicate Fan error */
  200. pSen->SenValue = 0;
  201. }
  202. pSen->SenState = SK_SEN_IDLE ;
  203. return(1);
  204. }
  205. /* First: correct the value: it might be negative */
  206. if ((Value & 0x80) != 0) {
  207. /* Value is negative */
  208. Value = Value - 256;
  209. }
  210. /* We have a temperature sensor and need to get the signed
  211.  * extension. For now we get the extension from the last
  212.  * reading, so in the normal case we won't see flickering
  213.  * temperatures.
  214.  */
  215. pSen->SenValue = (Value * SK_LM80_TEMP_LSB) +
  216. (pSen->SenValue % SK_LM80_TEMP_LSB);
  217. /* Send address to ADDR register */
  218. SK_I2C_CTL(IoC, I2C_READ, pSen->SenDev, LM80_TEMP_CTRL, 0);
  219. pSen->SenState = SK_SEN_VALEXT ;
  220. BREAK_OR_WAIT(pAC, IoC, I2C_READ) ;
  221. case SK_SEN_VALEXT:
  222. /* Read value from data register */
  223. SK_IN32(IoC,B2_I2C_DATA,((SK_U32 *)&Value));
  224. Value &= LM80_TEMP_LSB_9; /* only bit 7 is valid */
  225. /* cut the LSB bit */
  226. pSen->SenValue = ((pSen->SenValue / SK_LM80_TEMP_LSB) *
  227. SK_LM80_TEMP_LSB) ;
  228. if (pSen->SenValue < 0) {
  229. /* Value negative: The bit value must be subtracted */
  230. pSen->SenValue -= ((Value >> 7) * SK_LM80_TEMPEXT_LSB);
  231. } else {
  232. /* Value positive: The bit value must be added */
  233. pSen->SenValue += ((Value >> 7) * SK_LM80_TEMPEXT_LSB);
  234. }
  235. pSen->SenState = SK_SEN_IDLE ;
  236. return(1);
  237. default:
  238. SK_ERR_LOG(pAC, SK_ERRCL_SW, SKERR_I2C_E007,
  239. SKERR_I2C_E007MSG) ;
  240. return(1);
  241. }
  242. /* Not completed */
  243. return(0) ;
  244. }