2 * Texas Instruments TMP105 temperature sensor.
4 * Copyright (C) 2008 Nokia Corporation
5 * Written by Andrzej Zaborowski <andrew@openedhand.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
38 static void tmp105_interrupt_update(TMP105State
*s
)
40 qemu_set_irq(s
->pin
, s
->alarm
^ ((~s
->config
>> 2) & 1)); /* POL */
43 static void tmp105_alarm_update(TMP105State
*s
)
45 if ((s
->config
>> 0) & 1) { /* SD */
46 if ((s
->config
>> 7) & 1) /* OS */
47 s
->config
&= ~(1 << 7); /* OS */
52 if ((s
->config
>> 1) & 1) { /* TM */
53 if (s
->temperature
>= s
->limit
[1])
55 else if (s
->temperature
< s
->limit
[0])
58 if (s
->temperature
>= s
->limit
[1])
60 else if (s
->temperature
< s
->limit
[0])
64 tmp105_interrupt_update(s
);
67 /* Units are 0.001 centigrades relative to 0 C. */
68 void tmp105_set(i2c_slave
*i2c
, int temp
)
70 TMP105State
*s
= (TMP105State
*) i2c
;
72 if (temp
>= 128000 || temp
< -128000) {
73 fprintf(stderr
, "%s: values is out of range (%i.%03i C)\n",
74 __FUNCTION__
, temp
/ 1000, temp
% 1000);
78 s
->temperature
= ((int16_t) (temp
* 0x800 / 128000)) << 4;
80 tmp105_alarm_update(s
);
83 static const int tmp105_faultq
[4] = { 1, 2, 4, 6 };
85 static void tmp105_read(TMP105State
*s
)
89 if ((s
->config
>> 1) & 1) { /* TM */
91 tmp105_interrupt_update(s
);
94 switch (s
->pointer
& 3) {
95 case 0: /* Temperature */
96 s
->buf
[s
->len
++] = (((uint16_t) s
->temperature
) >> 8);
97 s
->buf
[s
->len
++] = (((uint16_t) s
->temperature
) >> 0) &
98 (0xf0 << ((~s
->config
>> 5) & 3)); /* R */
101 case 1: /* Configuration */
102 s
->buf
[s
->len
++] = s
->config
;
106 s
->buf
[s
->len
++] = ((uint16_t) s
->limit
[0]) >> 8;
107 s
->buf
[s
->len
++] = ((uint16_t) s
->limit
[0]) >> 0;
111 s
->buf
[s
->len
++] = ((uint16_t) s
->limit
[1]) >> 8;
112 s
->buf
[s
->len
++] = ((uint16_t) s
->limit
[1]) >> 0;
117 static void tmp105_write(TMP105State
*s
)
119 switch (s
->pointer
& 3) {
120 case 0: /* Temperature */
123 case 1: /* Configuration */
124 if (s
->buf
[0] & ~s
->config
& (1 << 0)) /* SD */
125 printf("%s: TMP105 shutdown\n", __FUNCTION__
);
126 s
->config
= s
->buf
[0];
127 s
->faults
= tmp105_faultq
[(s
->config
>> 3) & 3]; /* F */
128 tmp105_alarm_update(s
);
134 s
->limit
[s
->pointer
& 1] = (int16_t)
135 ((((uint16_t) s
->buf
[0]) << 8) | s
->buf
[1]);
136 tmp105_alarm_update(s
);
141 static int tmp105_rx(i2c_slave
*i2c
)
143 TMP105State
*s
= (TMP105State
*) i2c
;
146 return s
->buf
[s
->len
++];
151 static int tmp105_tx(i2c_slave
*i2c
, uint8_t data
)
153 TMP105State
*s
= (TMP105State
*) i2c
;
159 s
->buf
[s
->len
- 1] = data
;
166 static void tmp105_event(i2c_slave
*i2c
, enum i2c_event event
)
168 TMP105State
*s
= (TMP105State
*) i2c
;
170 if (event
== I2C_START_RECV
)
176 static int tmp105_post_load(void *opaque
, int version_id
)
178 TMP105State
*s
= opaque
;
180 s
->faults
= tmp105_faultq
[(s
->config
>> 3) & 3]; /* F */
182 tmp105_interrupt_update(s
);
186 static const VMStateDescription vmstate_tmp105
= {
189 .minimum_version_id
= 0,
190 .minimum_version_id_old
= 0,
191 .post_load
= tmp105_post_load
,
192 .fields
= (VMStateField
[]) {
193 VMSTATE_UINT8(len
, TMP105State
),
194 VMSTATE_UINT8_ARRAY(buf
, TMP105State
, 2),
195 VMSTATE_UINT8(pointer
, TMP105State
),
196 VMSTATE_UINT8(config
, TMP105State
),
197 VMSTATE_INT16(temperature
, TMP105State
),
198 VMSTATE_INT16_ARRAY(limit
, TMP105State
, 2),
199 VMSTATE_UINT8(alarm
, TMP105State
),
200 VMSTATE_I2C_SLAVE(i2c
, TMP105State
),
201 VMSTATE_END_OF_LIST()
205 static void tmp105_reset(i2c_slave
*i2c
)
207 TMP105State
*s
= (TMP105State
*) i2c
;
212 s
->faults
= tmp105_faultq
[(s
->config
>> 3) & 3];
215 tmp105_interrupt_update(s
);
218 static int tmp105_init(i2c_slave
*i2c
)
220 TMP105State
*s
= FROM_I2C_SLAVE(TMP105State
, i2c
);
222 qdev_init_gpio_out(&i2c
->qdev
, &s
->pin
, 1);
224 tmp105_reset(&s
->i2c
);
229 static I2CSlaveInfo tmp105_info
= {
230 .qdev
.name
= "tmp105",
231 .qdev
.size
= sizeof(TMP105State
),
232 .qdev
.vmsd
= &vmstate_tmp105
,
234 .event
= tmp105_event
,
239 static void tmp105_register_devices(void)
241 i2c_register_slave(&tmp105_info
);
244 device_init(tmp105_register_devices
)