Home
last modified time | relevance | path

Searched refs:I2C_STAT_CMD_COMP (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/tests/qtest/
H A Dpnv-host-i2c-test.c76 g_assert_cmphex(reg64 & (I2C_STAT_ANY_ERR | I2C_STAT_CMD_COMP), ==, in pnv_i2c_send()
77 I2C_STAT_CMD_COMP); in pnv_i2c_send()
99 g_assert_cmphex(reg64 & (I2C_STAT_ANY_ERR | I2C_STAT_CMD_COMP), ==, in pnv_i2c_send()
100 I2C_STAT_CMD_COMP); in pnv_i2c_send()
118 g_assert_cmphex(reg64 & (I2C_STAT_ANY_ERR | I2C_STAT_CMD_COMP), ==, in pnv_i2c_recv()
119 I2C_STAT_CMD_COMP); in pnv_i2c_recv()
142 g_assert_cmphex(reg64 & (I2C_STAT_ANY_ERR | I2C_STAT_CMD_COMP), ==, in pnv_i2c_recv()
143 I2C_STAT_CMD_COMP); in pnv_i2c_recv()
385 g_assert_cmphex(value & (I2C_STAT_ANY_ERR | I2C_STAT_CMD_COMP), in check_i2cm_por_regs()
387 I2C_STAT_CMD_COMP); in check_i2cm_por_regs()
/openbmc/linux/drivers/i2c/busses/
H A Di2c-fsi.c99 #define I2C_STAT_CMD_COMP BIT(24) macro
118 I2C_STAT_CMD_COMP)
426 if (stat & I2C_STAT_CMD_COMP) in fsi_i2c_reset_bus()
516 if (status & I2C_STAT_CMD_COMP) in fsi_i2c_abort()
564 if (status & I2C_STAT_CMD_COMP) { in fsi_i2c_handle_status()
/openbmc/qemu/hw/ppc/
H A Dpnv_i2c.c88 i2c->regs[I2C_STAT_REG] |= I2C_STAT_CMD_COMP; in pnv_i2c_update_irq()
96 i2c->regs[I2C_STAT_REG] &= ~I2C_STAT_CMD_COMP; in pnv_i2c_update_irq()
180 if (!(i2c->regs[I2C_STAT_REG] & I2C_STAT_CMD_COMP)) { in pnv_i2c_handle_cmd()
345 I2C_STAT_CMD_COMP | I2C_STAT_SCL_INPUT_LEVEL | in pnv_i2c_reset()
/openbmc/qemu/include/hw/i2c/
H A Dpnv_i2c_regs.h89 #define I2C_STAT_CMD_COMP PPC_BIT(7) macro