Added support for the Hynix HY27US08121A 64MB Flash chip.
[u-boot-openmoko/mini2440.git] / drivers / hwmon / ds1775.c
blob0fbb0b42a789d96fd4448c6fe2a929e578860ccf
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.
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.
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
19 * Dallas Semiconductor's DS1775 Digital Thermometer and Thermostat
22 #include <common.h>
24 #ifdef CONFIG_DTT_DS1775
25 #include <i2c.h>
26 #include <dtt.h>
28 #define DTT_I2C_DEV_CODE CFG_I2C_DTT_ADDR /* Dallas Semi's DS1775 device code */
30 int dtt_read(int sensor, int reg)
32 int dlen;
33 uchar data[2];
36 * Calculate sensor address and command
38 sensor = DTT_I2C_DEV_CODE + (sensor & 0x07); /* Calculate addr of ds1775 */
41 * Prepare to handle 2 byte result
43 if ((reg == DTT_READ_TEMP) ||
44 (reg == DTT_TEMP_OS) || (reg == DTT_TEMP_HYST))
45 dlen = 2;
46 else
47 dlen = 1;
50 * Now try to read the register
52 if (i2c_read(sensor, reg, 1, data, dlen) != 0)
53 return 1;
56 * Handle 2 byte result
58 if (dlen == 2)
59 return ((int)((short)data[1] + (((short)data[0]) << 8)));
61 return (int) data[0];
65 int dtt_write(int sensor, int reg, int val)
67 int dlen;
68 uchar data[2];
71 * Calculate sensor address and register
73 sensor = DTT_I2C_DEV_CODE + (sensor & 0x07);
76 * Handle various data sizes
78 if ((reg == DTT_READ_TEMP) ||
79 (reg == DTT_TEMP_OS) || (reg == DTT_TEMP_HYST)) {
80 dlen = 2;
81 data[0] = (char)((val >> 8) & 0xff); /* MSB first */
82 data[1] = (char)(val & 0xff);
83 } else {
84 dlen = 1;
85 data[0] = (char)(val & 0xff);
89 * Write value to device
91 if (i2c_write(sensor, reg, 1, data, dlen) != 0)
92 return 1;
94 return 0;
98 static int _dtt_init(int sensor)
100 int val;
103 * Setup High Temp
105 val = ((CFG_DTT_MAX_TEMP * 2) << 7) & 0xff80;
106 if (dtt_write(sensor, DTT_TEMP_OS, val) != 0)
107 return 1;
108 udelay(50000); /* Max 50ms */
111 * Setup Low Temp - hysteresis
113 val = (((CFG_DTT_MAX_TEMP - CFG_DTT_HYSTERESIS) * 2) << 7) & 0xff80;
114 if (dtt_write(sensor, DTT_TEMP_HYST, val) != 0)
115 return 1;
116 udelay(50000); /* Max 50ms */
119 * Setup configuraton register
121 * Fault Tolerance limits 4, Thermometer resolution bits is 9,
122 * Polarity = Active Low,continuous conversion mode, Thermostat
123 * mode is interrupt mode
125 val = 0xa;
126 if (dtt_write(sensor, DTT_CONFIG, val) != 0)
127 return 1;
128 udelay(50000); /* Max 50ms */
130 return 0;
134 int dtt_init (void)
136 int i;
137 unsigned char sensors[] = CONFIG_DTT_SENSORS;
139 for (i = 0; i < sizeof(sensors); i++) {
140 if (_dtt_init(sensors[i]) != 0)
141 printf("DTT%d: FAILED\n", i+1);
142 else
143 printf("DTT%d: %i C\n", i+1, dtt_get_temp(sensors[i]));
146 return (0);
150 int dtt_get_temp(int sensor)
152 return (dtt_read(sensor, DTT_READ_TEMP) / 256);
156 #endif /* CONFIG_DTT_DS1775 */