2 * (C) Copyright 2007-2008
5 * based on dtt/lm75.c which is ...
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 * National Semiconductor LM73 Temperature Sensor
40 #define DTT_I2C_DEV_CODE 0x48 /* National Semi's LM73 device */
42 int dtt_read(int const sensor, int const reg)
48 * Validate 'reg' param and get register size.
65 * Try to read the register at the calculated sensor address.
68 i2c_read(DTT_I2C_DEV_CODE + (sensor & 0x07), reg, 1, data, dlen))
71 * Handle 2 byte result.
74 return (int)((unsigned)data[0] << 8 | (unsigned)data[1]);
79 int dtt_write(int const sensor, int const reg, int const val)
85 * Validate 'reg' param and handle register size
91 data[0] = (uint8_t) val;
96 data[0] = (uint8_t) (val >> 8); /* MSB first */
97 data[1] = (uint8_t) val;
103 * Write value to register at the calculated sensor address.
105 return 0 != i2c_write(DTT_I2C_DEV_CODE + (sensor & 0x07), reg, 1, data,
109 static int _dtt_init(int const sensor)
114 * Validate the Identification register
116 if (0x0190 != dtt_read(sensor, DTT_ID))
119 * Setup THIGH (upper-limit) and TLOW (lower-limit) registers
121 val = CFG_DTT_MAX_TEMP << 7;
122 if (dtt_write(sensor, DTT_TEMP_HIGH, val))
125 val = CFG_DTT_MIN_TEMP << 7;
126 if (dtt_write(sensor, DTT_TEMP_LOW, val))
129 * Setup configuraton register
131 /* config = alert active low, disabled, and reset */
133 if (dtt_write(sensor, DTT_CONFIG, val))
136 * Setup control/status register
138 /* control = temp resolution 0.25C */
140 if (dtt_write(sensor, DTT_CONTROL, val))
143 dtt_read(sensor, DTT_CONTROL); /* clear temperature flags */
150 unsigned char sensors[] = CONFIG_DTT_SENSORS;
151 const char *const header = "DTT: ";
153 for (i = 0; i < sizeof(sensors); i++) {
154 if (0 != _dtt_init(sensors[i]))
155 printf("%s%d FAILED INIT\n", header, i + 1);
157 printf("%s%d is %i C\n", header, i + 1,
158 dtt_get_temp(sensors[i]));
163 int dtt_get_temp(int const sensor)
165 int const ret = dtt_read(sensor, DTT_READ_TEMP);
168 printf("DTT temperature read failed.\n");
171 return (int)((int16_t) ret + 0x0040) >> 7;
172 } /* dtt_get_temp() */