summaryrefslogtreecommitdiff
path: root/zephyr/include/emul/tcpc/emul_tcpci.h
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/include/emul/tcpc/emul_tcpci.h')
-rw-r--r--zephyr/include/emul/tcpc/emul_tcpci.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/zephyr/include/emul/tcpc/emul_tcpci.h b/zephyr/include/emul/tcpc/emul_tcpci.h
index 9841915d1e..9d1fa0dabc 100644
--- a/zephyr/include/emul/tcpc/emul_tcpci.h
+++ b/zephyr/include/emul/tcpc/emul_tcpci.h
@@ -85,6 +85,7 @@ struct tcpci_ctx {
/** Run-time data used by the emulator */
struct tcpc_emul_data {
+ struct i2c_common_emul_data common;
/** Pointer to the common TCPCI emulator context */
struct tcpci_ctx *tcpci_ctx;
@@ -94,7 +95,7 @@ struct tcpc_emul_data {
const struct i2c_common_emul_cfg i2c_cfg;
};
-#define TCPCI_EMUL_DEFINE(n, init, cfg_ptr, chip_data_ptr) \
+#define TCPCI_EMUL_DEFINE(n, init, cfg_ptr, chip_data_ptr, bus_api) \
static uint8_t tcpci_emul_tx_buf_##n[128]; \
static struct tcpci_emul_msg tcpci_emul_tx_msg_##n = { \
.buf = tcpci_emul_tx_buf_##n, \
@@ -123,7 +124,7 @@ struct tcpc_emul_data {
.addr = DT_INST_REG_ADDR(n), \
}, \
}; \
- EMUL_DEFINE(init, DT_DRV_INST(n), cfg_ptr, &tcpc_emul_data_##n)
+ EMUL_DEFINE(init, DT_DRV_INST(n), cfg_ptr, &tcpc_emul_data_##n, bus_api)
/** Response from TCPCI specific device operations */
enum tcpci_emul_ops_resp {
@@ -258,15 +259,6 @@ struct tcpci_emul_partner_ops {
};
/**
- * @brief Get i2c_emul for TCPCI emulator
- *
- * @param emul Pointer to TCPC emulator
- *
- * @return Pointer to I2C TCPCI emulator
- */
-struct i2c_emul *tcpci_emul_get_i2c_emul(const struct emul *emul);
-
-/**
* @brief Set value of given register of TCPCI
*
* @param emul Pointer to TCPC emulator
@@ -456,6 +448,15 @@ void tcpci_emul_partner_msg_status(const struct emul *emul,
enum tcpci_emul_tx_status status);
/**
+ * @brief Gets the common data associated with the tcpci chip overall
+ *
+ * @param emul Pointer to TCPC emulator
+ * @return Pointer to struct i2c_common_emul_data
+ */
+struct i2c_common_emul_data *
+emul_tcpci_generic_get_i2c_common_data(const struct emul *emul);
+
+/**
* @}
*/