ds1775.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License as
  4. * published by the Free Software Foundation; either version 2 of
  5. * the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  15. * MA 02111-1307 USA
  16. */
  17. /*
  18. * Dallas Semiconductor's DS1775 Digital Thermometer and Thermostat
  19. */
  20. #include <common.h>
  21. #include <i2c.h>
  22. #include <dtt.h>
  23. #define DTT_I2C_DEV_CODE CONFIG_SYS_I2C_DTT_ADDR /* Dallas Semi's DS1775 device code */
  24. #define DTT_READ_TEMP 0x0
  25. #define DTT_CONFIG 0x1
  26. #define DTT_TEMP_HYST 0x2
  27. #define DTT_TEMP_OS 0x3
  28. int dtt_read(int sensor, int reg)
  29. {
  30. int dlen;
  31. uchar data[2];
  32. /*
  33. * Calculate sensor address and command
  34. */
  35. sensor = DTT_I2C_DEV_CODE + (sensor & 0x07); /* Calculate addr of ds1775 */
  36. /*
  37. * Prepare to handle 2 byte result
  38. */
  39. if ((reg == DTT_READ_TEMP) ||
  40. (reg == DTT_TEMP_OS) || (reg == DTT_TEMP_HYST))
  41. dlen = 2;
  42. else
  43. dlen = 1;
  44. /*
  45. * Now try to read the register
  46. */
  47. if (i2c_read(sensor, reg, 1, data, dlen) != 0)
  48. return 1;
  49. /*
  50. * Handle 2 byte result
  51. */
  52. if (dlen == 2)
  53. return ((int)((short)data[1] + (((short)data[0]) << 8)));
  54. return (int) data[0];
  55. }
  56. int dtt_write(int sensor, int reg, int val)
  57. {
  58. int dlen;
  59. uchar data[2];
  60. /*
  61. * Calculate sensor address and register
  62. */
  63. sensor = DTT_I2C_DEV_CODE + (sensor & 0x07);
  64. /*
  65. * Handle various data sizes
  66. */
  67. if ((reg == DTT_READ_TEMP) ||
  68. (reg == DTT_TEMP_OS) || (reg == DTT_TEMP_HYST)) {
  69. dlen = 2;
  70. data[0] = (char)((val >> 8) & 0xff); /* MSB first */
  71. data[1] = (char)(val & 0xff);
  72. } else {
  73. dlen = 1;
  74. data[0] = (char)(val & 0xff);
  75. }
  76. /*
  77. * Write value to device
  78. */
  79. if (i2c_write(sensor, reg, 1, data, dlen) != 0)
  80. return 1;
  81. return 0;
  82. }
  83. static int _dtt_init(int sensor)
  84. {
  85. int val;
  86. /*
  87. * Setup High Temp
  88. */
  89. val = ((CONFIG_SYS_DTT_MAX_TEMP * 2) << 7) & 0xff80;
  90. if (dtt_write(sensor, DTT_TEMP_OS, val) != 0)
  91. return 1;
  92. udelay(50000); /* Max 50ms */
  93. /*
  94. * Setup Low Temp - hysteresis
  95. */
  96. val = (((CONFIG_SYS_DTT_MAX_TEMP - CONFIG_SYS_DTT_HYSTERESIS) * 2) << 7) & 0xff80;
  97. if (dtt_write(sensor, DTT_TEMP_HYST, val) != 0)
  98. return 1;
  99. udelay(50000); /* Max 50ms */
  100. /*
  101. * Setup configuraton register
  102. *
  103. * Fault Tolerance limits 4, Thermometer resolution bits is 9,
  104. * Polarity = Active Low,continuous conversion mode, Thermostat
  105. * mode is interrupt mode
  106. */
  107. val = 0xa;
  108. if (dtt_write(sensor, DTT_CONFIG, val) != 0)
  109. return 1;
  110. udelay(50000); /* Max 50ms */
  111. return 0;
  112. }
  113. int dtt_init (void)
  114. {
  115. int i;
  116. unsigned char sensors[] = CONFIG_DTT_SENSORS;
  117. for (i = 0; i < sizeof(sensors); i++) {
  118. if (_dtt_init(sensors[i]) != 0)
  119. printf("DTT%d: FAILED\n", i+1);
  120. else
  121. printf("DTT%d: %i C\n", i+1, dtt_get_temp(sensors[i]));
  122. }
  123. return (0);
  124. }
  125. int dtt_get_temp(int sensor)
  126. {
  127. return (dtt_read(sensor, DTT_READ_TEMP) / 256);
  128. }