blob: 98e8bd298476e4150811ebdbd0482e6893b75dd9 [file] [log] [blame]
Larry Johnson9e2c3472007-12-27 09:52:17 -05001/*
Larry Johnson7754f332008-02-21 13:58:11 -05002 * (C) Copyright 2007-2008
Larry Johnson9e2c3472007-12-27 09:52:17 -05003 * Larry Johnson, lrj@acm.org
4 *
5 * based on dtt/lm75.c which is ...
6 *
7 * (C) Copyright 2001
8 * Bill Hunter, Wave 7 Optics, williamhunter@mediaone.net
9 *
10 * See file CREDITS for list of people who contributed to this
11 * project.
12 *
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.
17 *
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.
22 *
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,
26 * MA 02111-1307 USA
27 */
28
29/*
30 * National Semiconductor LM73 Temperature Sensor
31 */
32
33#include <common.h>
Larry Johnson9e2c3472007-12-27 09:52:17 -050034#include <i2c.h>
35#include <dtt.h>
36
37/*
38 * Device code
39 */
40#define DTT_I2C_DEV_CODE 0x48 /* National Semi's LM73 device */
41
Larry Johnson7754f332008-02-21 13:58:11 -050042int dtt_read(int const sensor, int const reg)
Larry Johnson9e2c3472007-12-27 09:52:17 -050043{
44 int dlen;
Larry Johnson7754f332008-02-21 13:58:11 -050045 uint8_t data[2];
Larry Johnson9e2c3472007-12-27 09:52:17 -050046
47 /*
48 * Validate 'reg' param and get register size.
49 */
50 switch (reg) {
51 case DTT_CONFIG:
52 case DTT_CONTROL:
53 dlen = 1;
54 break;
55 case DTT_READ_TEMP:
56 case DTT_TEMP_HIGH:
57 case DTT_TEMP_LOW:
58 case DTT_ID:
59 dlen = 2;
60 break;
61 default:
62 return -1;
63 }
64 /*
Larry Johnson7754f332008-02-21 13:58:11 -050065 * Try to read the register at the calculated sensor address.
Larry Johnson9e2c3472007-12-27 09:52:17 -050066 */
Larry Johnson7754f332008-02-21 13:58:11 -050067 if (0 !=
68 i2c_read(DTT_I2C_DEV_CODE + (sensor & 0x07), reg, 1, data, dlen))
Larry Johnson9e2c3472007-12-27 09:52:17 -050069 return -1;
70 /*
71 * Handle 2 byte result.
72 */
73 if (2 == dlen)
Larry Johnson7754f332008-02-21 13:58:11 -050074 return (int)((unsigned)data[0] << 8 | (unsigned)data[1]);
Larry Johnson9e2c3472007-12-27 09:52:17 -050075
76 return (int)data[0];
77} /* dtt_read() */
78
Larry Johnson7754f332008-02-21 13:58:11 -050079int dtt_write(int const sensor, int const reg, int const val)
Larry Johnson9e2c3472007-12-27 09:52:17 -050080{
81 int dlen;
Larry Johnson7754f332008-02-21 13:58:11 -050082 uint8_t data[2];
Larry Johnson9e2c3472007-12-27 09:52:17 -050083
84 /*
85 * Validate 'reg' param and handle register size
86 */
87 switch (reg) {
88 case DTT_CONFIG:
89 case DTT_CONTROL:
90 dlen = 1;
Larry Johnson7754f332008-02-21 13:58:11 -050091 data[0] = (uint8_t) val;
Larry Johnson9e2c3472007-12-27 09:52:17 -050092 break;
93 case DTT_TEMP_HIGH:
94 case DTT_TEMP_LOW:
95 dlen = 2;
Larry Johnson7754f332008-02-21 13:58:11 -050096 data[0] = (uint8_t) (val >> 8); /* MSB first */
97 data[1] = (uint8_t) val;
Larry Johnson9e2c3472007-12-27 09:52:17 -050098 break;
99 default:
100 return -1;
101 }
102 /*
Larry Johnson7754f332008-02-21 13:58:11 -0500103 * Write value to register at the calculated sensor address.
Larry Johnson9e2c3472007-12-27 09:52:17 -0500104 */
Larry Johnson7754f332008-02-21 13:58:11 -0500105 return 0 != i2c_write(DTT_I2C_DEV_CODE + (sensor & 0x07), reg, 1, data,
106 dlen);
Larry Johnson9e2c3472007-12-27 09:52:17 -0500107} /* dtt_write() */
108
Larry Johnson7754f332008-02-21 13:58:11 -0500109static int _dtt_init(int const sensor)
Larry Johnson9e2c3472007-12-27 09:52:17 -0500110{
111 int val;
112
113 /*
114 * Validate the Identification register
115 */
116 if (0x0190 != dtt_read(sensor, DTT_ID))
Larry Johnson7754f332008-02-21 13:58:11 -0500117 return -1;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500118 /*
119 * Setup THIGH (upper-limit) and TLOW (lower-limit) registers
120 */
121 val = CFG_DTT_MAX_TEMP << 7;
122 if (dtt_write(sensor, DTT_TEMP_HIGH, val))
Larry Johnson7754f332008-02-21 13:58:11 -0500123 return -1;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500124
125 val = CFG_DTT_MIN_TEMP << 7;
126 if (dtt_write(sensor, DTT_TEMP_LOW, val))
Larry Johnson7754f332008-02-21 13:58:11 -0500127 return -1;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500128 /*
129 * Setup configuraton register
130 */
131 /* config = alert active low, disabled, and reset */
132 val = 0x64;
133 if (dtt_write(sensor, DTT_CONFIG, val))
Larry Johnson7754f332008-02-21 13:58:11 -0500134 return -1;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500135 /*
136 * Setup control/status register
137 */
138 /* control = temp resolution 0.25C */
139 val = 0x00;
140 if (dtt_write(sensor, DTT_CONTROL, val))
Larry Johnson7754f332008-02-21 13:58:11 -0500141 return -1;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500142
143 dtt_read(sensor, DTT_CONTROL); /* clear temperature flags */
144 return 0;
145} /* _dtt_init() */
146
147int dtt_init(void)
148{
149 int i;
150 unsigned char sensors[] = CONFIG_DTT_SENSORS;
151 const char *const header = "DTT: ";
152
153 for (i = 0; i < sizeof(sensors); i++) {
Larry Johnson7754f332008-02-21 13:58:11 -0500154 if (0 != _dtt_init(sensors[i]))
Larry Johnson9e2c3472007-12-27 09:52:17 -0500155 printf("%s%d FAILED INIT\n", header, i + 1);
156 else
157 printf("%s%d is %i C\n", header, i + 1,
158 dtt_get_temp(sensors[i]));
159 }
160 return 0;
161} /* dtt_init() */
162
Larry Johnson7754f332008-02-21 13:58:11 -0500163int dtt_get_temp(int const sensor)
Larry Johnson9e2c3472007-12-27 09:52:17 -0500164{
Larry Johnson7754f332008-02-21 13:58:11 -0500165 int const ret = dtt_read(sensor, DTT_READ_TEMP);
166
167 if (ret < 0) {
168 printf("DTT temperature read failed.\n");
169 return 0;
170 }
171 return (int)((int16_t) ret + 0x0040) >> 7;
Larry Johnson9e2c3472007-12-27 09:52:17 -0500172} /* dtt_get_temp() */