blob: 462f902dad49394306889335a04bfd874e38a7ff [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2001
3 * Bill Hunter, Wave 7 Optics, williamhunter@mediaone.net
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8/*
9 * On Semiconductor's LM75 Temperature Sensor
10 */
11
12#include <common.h>
wdenkc6097192002-11-03 00:24:07 +000013#include <i2c.h>
14#include <dtt.h>
15
wdenkc6097192002-11-03 00:24:07 +000016/*
17 * Device code
18 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020019#if defined(CONFIG_SYS_I2C_DTT_ADDR)
20#define DTT_I2C_DEV_CODE CONFIG_SYS_I2C_DTT_ADDR
Victor Gallardo9ebbb542008-09-09 15:13:29 -070021#else
wdenkc6097192002-11-03 00:24:07 +000022#define DTT_I2C_DEV_CODE 0x48 /* ON Semi's LM75 device */
Victor Gallardo9ebbb542008-09-09 15:13:29 -070023#endif
Michal Simek6ecbb452008-07-11 11:50:53 +020024#define DTT_READ_TEMP 0x0
25#define DTT_CONFIG 0x1
26#define DTT_TEMP_HYST 0x2
27#define DTT_TEMP_SET 0x3
wdenkc6097192002-11-03 00:24:07 +000028
29int dtt_read(int sensor, int reg)
30{
Heiko Schocher12f16782008-10-15 09:37:04 +020031 int dlen;
32 uchar data[2];
wdenkc6097192002-11-03 00:24:07 +000033
Stefan Roese4d91d1d2008-05-16 11:06:06 +020034#ifdef CONFIG_DTT_AD7414
Heiko Schocher12f16782008-10-15 09:37:04 +020035 /*
36 * On AD7414 the first value upon bootup is not read correctly.
37 * This is most likely because of the 800ms update time of the
38 * temp register in normal update mode. To get current values
39 * each time we issue the "dtt" command including upon powerup
40 * we switch into one-short mode.
41 *
42 * Issue one-shot mode command
43 */
44 dtt_write(sensor, DTT_CONFIG, 0x64);
Stefan Roese4d91d1d2008-05-16 11:06:06 +020045#endif
46
Heiko Schocher12f16782008-10-15 09:37:04 +020047 /* Validate 'reg' param */
48 if((reg < 0) || (reg > 3))
49 return -1;
wdenkc6097192002-11-03 00:24:07 +000050
Heiko Schocher12f16782008-10-15 09:37:04 +020051 /* Calculate sensor address and register. */
52 sensor = DTT_I2C_DEV_CODE + (sensor & 0x07);
wdenkc6097192002-11-03 00:24:07 +000053
Heiko Schocher12f16782008-10-15 09:37:04 +020054 /* Prepare to handle 2 byte result. */
55 if ((reg == DTT_READ_TEMP) ||
56 (reg == DTT_TEMP_HYST) ||
57 (reg == DTT_TEMP_SET))
58 dlen = 2;
59 else
60 dlen = 1;
wdenkc6097192002-11-03 00:24:07 +000061
Heiko Schocher12f16782008-10-15 09:37:04 +020062 /* Now try to read the register. */
63 if (i2c_read(sensor, reg, 1, data, dlen) != 0)
64 return -1;
wdenkc6097192002-11-03 00:24:07 +000065
Heiko Schocher12f16782008-10-15 09:37:04 +020066 /* Handle 2 byte result. */
67 if (dlen == 2)
68 return ((int)((short)data[1] + (((short)data[0]) << 8)));
wdenkc6097192002-11-03 00:24:07 +000069
Heiko Schocher12f16782008-10-15 09:37:04 +020070 return (int)data[0];
wdenkc6097192002-11-03 00:24:07 +000071} /* dtt_read() */
72
73
74int dtt_write(int sensor, int reg, int val)
75{
Heiko Schocher12f16782008-10-15 09:37:04 +020076 int dlen;
77 uchar data[2];
wdenkc6097192002-11-03 00:24:07 +000078
Heiko Schocher12f16782008-10-15 09:37:04 +020079 /* Validate 'reg' param */
80 if ((reg < 0) || (reg > 3))
81 return 1;
wdenkc6097192002-11-03 00:24:07 +000082
Heiko Schocher12f16782008-10-15 09:37:04 +020083 /* Calculate sensor address and register. */
84 sensor = DTT_I2C_DEV_CODE + (sensor & 0x07);
wdenkc6097192002-11-03 00:24:07 +000085
Heiko Schocher12f16782008-10-15 09:37:04 +020086 /* Handle 2 byte values. */
87 if ((reg == DTT_READ_TEMP) ||
88 (reg == DTT_TEMP_HYST) ||
89 (reg == DTT_TEMP_SET)) {
90 dlen = 2;
91 data[0] = (char)((val >> 8) & 0xff); /* MSB first */
92 data[1] = (char)(val & 0xff);
93 } else {
94 dlen = 1;
95 data[0] = (char)(val & 0xff);
96 }
wdenkc6097192002-11-03 00:24:07 +000097
Heiko Schocher12f16782008-10-15 09:37:04 +020098 /* Write value to register. */
99 if (i2c_write(sensor, reg, 1, data, dlen) != 0)
100 return 1;
wdenkc6097192002-11-03 00:24:07 +0000101
Heiko Schocher12f16782008-10-15 09:37:04 +0200102 return 0;
wdenkc6097192002-11-03 00:24:07 +0000103} /* dtt_write() */
104
105
Heiko Schocher780f13a2011-08-01 04:01:43 +0000106int dtt_init_one(int sensor)
wdenkc6097192002-11-03 00:24:07 +0000107{
Heiko Schocher12f16782008-10-15 09:37:04 +0200108 int val;
wdenkc6097192002-11-03 00:24:07 +0000109
Heiko Schocher12f16782008-10-15 09:37:04 +0200110 /* Setup TSET ( trip point ) register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111 val = ((CONFIG_SYS_DTT_MAX_TEMP * 2) << 7) & 0xff80; /* trip */
Heiko Schocher12f16782008-10-15 09:37:04 +0200112 if (dtt_write(sensor, DTT_TEMP_SET, val) != 0)
113 return 1;
wdenkc6097192002-11-03 00:24:07 +0000114
Heiko Schocher12f16782008-10-15 09:37:04 +0200115 /* Setup THYST ( untrip point ) register - Hysteresis */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116 val = (((CONFIG_SYS_DTT_MAX_TEMP - CONFIG_SYS_DTT_HYSTERESIS) * 2) << 7) & 0xff80;
Heiko Schocher12f16782008-10-15 09:37:04 +0200117 if (dtt_write(sensor, DTT_TEMP_HYST, val) != 0)
118 return 1;
wdenkc6097192002-11-03 00:24:07 +0000119
Heiko Schocher12f16782008-10-15 09:37:04 +0200120 /* Setup configuraton register */
Stefan Roese887e2ec2006-09-07 11:51:23 +0200121#ifdef CONFIG_DTT_AD7414
Heiko Schocher12f16782008-10-15 09:37:04 +0200122 /* config = alert active low and disabled */
123 val = 0x60;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200124#else
Heiko Schocher12f16782008-10-15 09:37:04 +0200125 /* config = 6 sample integration, int mode, active low, and enable */
126 val = 0x18;
Stefan Roese887e2ec2006-09-07 11:51:23 +0200127#endif
Heiko Schocher12f16782008-10-15 09:37:04 +0200128 if (dtt_write(sensor, DTT_CONFIG, val) != 0)
129 return 1;
wdenkc6097192002-11-03 00:24:07 +0000130
Heiko Schocher12f16782008-10-15 09:37:04 +0200131 return 0;
Heiko Schocher780f13a2011-08-01 04:01:43 +0000132} /* dtt_init_one() */
wdenkc6097192002-11-03 00:24:07 +0000133
134int dtt_get_temp(int sensor)
135{
Heiko Schocher12f16782008-10-15 09:37:04 +0200136 int const ret = dtt_read(sensor, DTT_READ_TEMP);
Larry Johnsond01b8472008-02-21 13:58:16 -0500137
Heiko Schocher12f16782008-10-15 09:37:04 +0200138 if (ret < 0) {
139 printf("DTT temperature read failed.\n");
140 return 0;
141 }
142 return (int)((int16_t) ret / 256);
wdenkc6097192002-11-03 00:24:07 +0000143} /* dtt_get_temp() */