2 * (C) Copyright 2007-2008
3 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de
4 * based on lm75.c by Bill Hunter
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 * National LM63/LM64 Temperature Sensor
27 * Main difference: LM 64 has -16 Kelvin temperature offset
34 #define DTT_I2C_LM63_ADDR 0x4C /* National LM63 device */
36 #define DTT_READ_TEMP_RMT_MSB 0x01
37 #define DTT_CONFIG 0x03
38 #define DTT_READ_TEMP_RMT_LSB 0x10
39 #define DTT_TACHLIM_LSB 0x48
40 #define DTT_TACHLIM_MSB 0x49
41 #define DTT_FAN_CONFIG 0x4A
42 #define DTT_PWM_FREQ 0x4D
43 #define DTT_PWM_LOOKUP_BASE 0x50
45 struct pwm_lookup_entry {
54 int dtt_read(int sensor, int reg)
60 * Calculate sensor address and register.
63 sensor = DTT_I2C_LM63_ADDR; /* legacy config */
68 * Now try to read the register.
70 if (i2c_read(sensor, reg, 1, data, dlen) != 0)
76 int dtt_write(int sensor, int reg, int val)
82 * Calculate sensor address and register.
85 sensor = DTT_I2C_LM63_ADDR; /* legacy config */
88 data[0] = (char)(val & 0xff);
91 * Write value to register.
93 if (i2c_write(sensor, reg, 1, data, dlen) != 0)
99 static int is_lm64(int sensor)
101 return sensor && (sensor != DTT_I2C_LM63_ADDR);
104 static int _dtt_init(int sensor)
109 struct pwm_lookup_entry pwm_lookup[] = CONFIG_DTT_PWM_LOOKUPTABLE;
112 * Set PWM Frequency to 2.5% resolution
115 if (dtt_write(sensor, DTT_PWM_FREQ, val) != 0)
119 * Set Tachometer Limit
121 val = CONFIG_DTT_TACH_LIMIT;
122 if (dtt_write(sensor, DTT_TACHLIM_LSB, val & 0xff) != 0)
124 if (dtt_write(sensor, DTT_TACHLIM_MSB, (val >> 8) & 0xff) != 0)
128 * Make sure PWM Lookup-Table is writeable
130 if (dtt_write(sensor, DTT_FAN_CONFIG, 0x20) != 0)
134 * Setup PWM Lookup-Table
136 for (i = 0; i < sizeof(pwm_lookup) / sizeof(struct pwm_lookup_entry);
138 int address = DTT_PWM_LOOKUP_BASE + 2 * i;
139 val = pwm_lookup[i].temp;
142 if (dtt_write(sensor, address, val) != 0)
144 val = dtt_read(sensor, address);
145 val = pwm_lookup[i].pwm;
146 if (dtt_write(sensor, address + 1, val) != 0)
151 * Enable PWM Lookup-Table, PWM Clock 360 kHz, Tachometer Mode 2
154 if (dtt_write(sensor, DTT_FAN_CONFIG, val) != 0)
160 val = dtt_read(sensor, DTT_CONFIG) | 0x04;
161 if (dtt_write(sensor, DTT_CONFIG, val) != 0)
167 int dtt_get_temp(int sensor)
169 s16 temp = (dtt_read(sensor, DTT_READ_TEMP_RMT_MSB) << 8)
170 | (dtt_read(sensor, DTT_READ_TEMP_RMT_LSB));
175 /* Ignore LSB for now, U-Boot only prints natural numbers */
182 unsigned char sensors[] = CONFIG_DTT_SENSORS;
183 const char *const header = "DTT: ";
185 for (i = 0; i < sizeof(sensors); i++) {
186 if (_dtt_init(sensors[i]) != 0)
187 printf("%s%d FAILED INIT\n", header, i + 1);
189 printf("%s%d is %i C\n", header, i + 1,
190 dtt_get_temp(sensors[i]));