3 * Heiko Schocher, DENX Software Enginnering <hs@denx.de>
5 * based on dtt/lm75.c which is ...
8 * Bill Hunter, Wave 7 Optics, williamhunter@mediaone.net
10 * See file CREDITS for list of people who contributed to this
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * On Semiconductor's LM81 Temperature Sensor
35 #ifdef CONFIG_DTT_LM81
36 #if !defined(CFG_EEPROM_PAGE_WRITE_ENABLE) || \
37 (CFG_EEPROM_PAGE_WRITE_BITS < 1)
38 # error "CFG_EEPROM_PAGE_WRITE_ENABLE must be defined and CFG_EEPROM_PAGE_WRITE_BITS must be greater than 1 to use CONFIG_DTT_LM81"
47 #define DTT_I2C_DEV_CODE 0x2c /* ON Semi's LM81 device */
49 int dtt_read(int sensor, int reg)
55 * Calculate sensor address and register.
57 sensor = DTT_I2C_DEV_CODE + (sensor & 0x03); /* calculate address of lm81 */
60 * Now try to read the register.
62 if (i2c_read(sensor, reg, 1, data, dlen) != 0)
69 int dtt_write(int sensor, int reg, int val)
74 * Calculate sensor address and register.
76 sensor = DTT_I2C_DEV_CODE + (sensor & 0x03); /* calculate address of lm81 */
78 data = (char)(val & 0xff);
81 * Write value to register.
83 if (i2c_write(sensor, reg, 1, &data, 1) != 0)
91 #define DTT_CONFIG 0x40
94 static int _dtt_init(int sensor)
100 if (dtt_write (sensor, DTT_CONFIG, 0x01) < 0)
102 /* The LM81 needs 400ms to get the correct values ... */
104 man = dtt_read (sensor, DTT_MANU);
107 adr = dtt_read (sensor, DTT_ADR);
110 rev = dtt_read (sensor, DTT_REV);
114 printf ("DTT: Found LM81@%x Rev: %d\n", adr, rev);
122 unsigned char sensors[] = CONFIG_DTT_SENSORS;
123 const char *const header = "DTT: ";
125 for (i = 0; i < sizeof(sensors); i++) {
126 if (_dtt_init(sensors[i]) != 0)
127 printf("%s%d FAILED INIT\n", header, i+1);
129 printf("%s%d is %i C\n", header, i+1,
130 dtt_get_temp(sensors[i]));
136 #define TEMP_FROM_REG(temp) \
137 ((temp)<256?((((temp)&0x1fe) >> 1) * 10) + ((temp) & 1) * 5: \
138 ((((temp)&0x1fe) >> 1) -255) * 10 - ((temp) & 1) * 5) \
140 int dtt_get_temp(int sensor)
142 int val = dtt_read (sensor, DTT_READ_TEMP);
143 int tmpcnf = dtt_read (sensor, DTT_CONFIG_TEMP);
145 return (TEMP_FROM_REG((val << 1) + ((tmpcnf & 0x80) >> 7))) / 10;
146 } /* dtt_get_temp() */
148 #endif /* CONFIG_DTT_LM81 */