|
@@ -46,19 +46,18 @@ static void send_and_receive(void *obj, void *data, QGuestAllocator *alloc)
|
|
{
|
|
{
|
|
uint16_t value;
|
|
uint16_t value;
|
|
QI2CDevice *i2cdev = (QI2CDevice *)obj;
|
|
QI2CDevice *i2cdev = (QI2CDevice *)obj;
|
|
- I2CAdapter *i2c = i2cdev->bus;
|
|
|
|
|
|
|
|
value = qmp_tmp105_get_temperature(TMP105_TEST_ID);
|
|
value = qmp_tmp105_get_temperature(TMP105_TEST_ID);
|
|
g_assert_cmpuint(value, ==, 0);
|
|
g_assert_cmpuint(value, ==, 0);
|
|
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0);
|
|
g_assert_cmphex(value, ==, 0);
|
|
|
|
|
|
qmp_tmp105_set_temperature(TMP105_TEST_ID, 20000);
|
|
qmp_tmp105_set_temperature(TMP105_TEST_ID, 20000);
|
|
value = qmp_tmp105_get_temperature(TMP105_TEST_ID);
|
|
value = qmp_tmp105_get_temperature(TMP105_TEST_ID);
|
|
g_assert_cmpuint(value, ==, 20000);
|
|
g_assert_cmpuint(value, ==, 20000);
|
|
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x1400);
|
|
g_assert_cmphex(value, ==, 0x1400);
|
|
|
|
|
|
qmp_tmp105_set_temperature(TMP105_TEST_ID, 20938); /* 20 + 15/16 */
|
|
qmp_tmp105_set_temperature(TMP105_TEST_ID, 20938); /* 20 + 15/16 */
|
|
@@ -67,27 +66,27 @@ static void send_and_receive(void *obj, void *data, QGuestAllocator *alloc)
|
|
g_assert_cmpuint(value, <, 20938 + TMP105_PRECISION/2);
|
|
g_assert_cmpuint(value, <, 20938 + TMP105_PRECISION/2);
|
|
|
|
|
|
/* Set config */
|
|
/* Set config */
|
|
- i2c_set8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG, 0x60);
|
|
|
|
- value = i2c_get8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG);
|
|
|
|
|
|
+ i2c_set8(i2cdev, TMP105_REG_CONFIG, 0x60);
|
|
|
|
+ value = i2c_get8(i2cdev, TMP105_REG_CONFIG);
|
|
g_assert_cmphex(value, ==, 0x60);
|
|
g_assert_cmphex(value, ==, 0x60);
|
|
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x14f0);
|
|
g_assert_cmphex(value, ==, 0x14f0);
|
|
|
|
|
|
/* Set precision to 9, 10, 11 bits. */
|
|
/* Set precision to 9, 10, 11 bits. */
|
|
- i2c_set8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG, 0x00);
|
|
|
|
- g_assert_cmphex(i2c_get8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG), ==, 0x00);
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ i2c_set8(i2cdev, TMP105_REG_CONFIG, 0x00);
|
|
|
|
+ g_assert_cmphex(i2c_get8(i2cdev, TMP105_REG_CONFIG), ==, 0x00);
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x1480);
|
|
g_assert_cmphex(value, ==, 0x1480);
|
|
|
|
|
|
- i2c_set8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG, 0x20);
|
|
|
|
- g_assert_cmphex(i2c_get8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG), ==, 0x20);
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ i2c_set8(i2cdev, TMP105_REG_CONFIG, 0x20);
|
|
|
|
+ g_assert_cmphex(i2c_get8(i2cdev, TMP105_REG_CONFIG), ==, 0x20);
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x14c0);
|
|
g_assert_cmphex(value, ==, 0x14c0);
|
|
|
|
|
|
- i2c_set8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG, 0x40);
|
|
|
|
- g_assert_cmphex(i2c_get8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG), ==, 0x40);
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ i2c_set8(i2cdev, TMP105_REG_CONFIG, 0x40);
|
|
|
|
+ g_assert_cmphex(i2c_get8(i2cdev, TMP105_REG_CONFIG), ==, 0x40);
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x14e0);
|
|
g_assert_cmphex(value, ==, 0x14e0);
|
|
|
|
|
|
/* stored precision remains the same */
|
|
/* stored precision remains the same */
|
|
@@ -95,15 +94,15 @@ static void send_and_receive(void *obj, void *data, QGuestAllocator *alloc)
|
|
g_assert_cmpuint(value, >=, 20938 - TMP105_PRECISION/2);
|
|
g_assert_cmpuint(value, >=, 20938 - TMP105_PRECISION/2);
|
|
g_assert_cmpuint(value, <, 20938 + TMP105_PRECISION/2);
|
|
g_assert_cmpuint(value, <, 20938 + TMP105_PRECISION/2);
|
|
|
|
|
|
- i2c_set8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG, 0x60);
|
|
|
|
- g_assert_cmphex(i2c_get8(i2c, TMP105_TEST_ADDR, TMP105_REG_CONFIG), ==, 0x60);
|
|
|
|
- value = i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_TEMPERATURE);
|
|
|
|
|
|
+ i2c_set8(i2cdev, TMP105_REG_CONFIG, 0x60);
|
|
|
|
+ g_assert_cmphex(i2c_get8(i2cdev, TMP105_REG_CONFIG), ==, 0x60);
|
|
|
|
+ value = i2c_get16(i2cdev, TMP105_REG_TEMPERATURE);
|
|
g_assert_cmphex(value, ==, 0x14f0);
|
|
g_assert_cmphex(value, ==, 0x14f0);
|
|
|
|
|
|
- i2c_set16(i2c, TMP105_TEST_ADDR, TMP105_REG_T_LOW, 0x1234);
|
|
|
|
- g_assert_cmphex(i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_T_LOW), ==, 0x1234);
|
|
|
|
- i2c_set16(i2c, TMP105_TEST_ADDR, TMP105_REG_T_HIGH, 0x4231);
|
|
|
|
- g_assert_cmphex(i2c_get16(i2c, TMP105_TEST_ADDR, TMP105_REG_T_HIGH), ==, 0x4231);
|
|
|
|
|
|
+ i2c_set16(i2cdev, TMP105_REG_T_LOW, 0x1234);
|
|
|
|
+ g_assert_cmphex(i2c_get16(i2cdev, TMP105_REG_T_LOW), ==, 0x1234);
|
|
|
|
+ i2c_set16(i2cdev, TMP105_REG_T_HIGH, 0x4231);
|
|
|
|
+ g_assert_cmphex(i2c_get16(i2cdev, TMP105_REG_T_HIGH), ==, 0x4231);
|
|
}
|
|
}
|
|
|
|
|
|
static void tmp105_register_nodes(void)
|
|
static void tmp105_register_nodes(void)
|
|
@@ -111,6 +110,7 @@ static void tmp105_register_nodes(void)
|
|
QOSGraphEdgeOptions opts = {
|
|
QOSGraphEdgeOptions opts = {
|
|
.extra_device_opts = "id=" TMP105_TEST_ID ",address=0x49"
|
|
.extra_device_opts = "id=" TMP105_TEST_ID ",address=0x49"
|
|
};
|
|
};
|
|
|
|
+ add_qi2c_address(&opts, &(QI2CAddress) { 0x49 });
|
|
|
|
|
|
qos_node_create_driver("tmp105", i2c_device_create);
|
|
qos_node_create_driver("tmp105", i2c_device_create);
|
|
qos_node_consumes("tmp105", "i2c-bus", &opts);
|
|
qos_node_consumes("tmp105", "i2c-bus", &opts);
|