2 * QTest testcase for the TMP105 temperature sensor
4 * Copyright (c) 2012 Andreas Färber
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
13 #include "libqos/i2c.h"
14 #include "hw/misc/tmp105_regs.h"
16 #define OMAP2_I2C_1_BASE 0x48070000
18 #define N8X0_ADDR 0x48
20 static I2CAdapter
*i2c
;
23 static void send_and_receive(void)
28 cmd
[0] = TMP105_REG_TEMPERATURE
;
29 i2c_send(i2c
, addr
, cmd
, 1);
30 i2c_recv(i2c
, addr
, resp
, 2);
31 g_assert_cmpuint(((uint16_t)resp
[0] << 8) | resp
[1], ==, 0);
33 cmd
[0] = TMP105_REG_CONFIG
;
34 cmd
[1] = 0x0; /* matches the reset value */
35 i2c_send(i2c
, addr
, cmd
, 2);
36 i2c_recv(i2c
, addr
, resp
, 1);
37 g_assert_cmphex(resp
[0], ==, cmd
[1]);
39 cmd
[0] = TMP105_REG_T_LOW
;
42 i2c_send(i2c
, addr
, cmd
, 3);
43 i2c_recv(i2c
, addr
, resp
, 2);
44 g_assert_cmphex(resp
[0], ==, cmd
[1]);
45 g_assert_cmphex(resp
[1], ==, cmd
[2]);
47 cmd
[0] = TMP105_REG_T_HIGH
;
50 i2c_send(i2c
, addr
, cmd
, 3);
51 i2c_recv(i2c
, addr
, resp
, 2);
52 g_assert_cmphex(resp
[0], ==, cmd
[1]);
53 g_assert_cmphex(resp
[1], ==, cmd
[2]);
56 int main(int argc
, char **argv
)
61 g_test_init(&argc
, &argv
, NULL
);
63 s
= qtest_start("-machine n800");
64 i2c
= omap_i2c_create(OMAP2_I2C_1_BASE
);
67 qtest_add_func("/tmp105/tx-rx", send_and_receive
);