Home
last modified time | relevance | path

Searched refs:rx_msg (Results 1 – 8 of 8) sorted by relevance

/openbmc/u-boot/drivers/misc/
H A Dmisc_sandbox.c46 int tx_size, void *rx_msg, int rx_size) in misc_sandbox_call() argument
55 strncpy(rx_msg, "Zero", rx_size); in misc_sandbox_call()
58 strncpy(rx_msg, "One", rx_size); in misc_sandbox_call()
61 strncpy(rx_msg, "Two", rx_size); in misc_sandbox_call()
73 strncpy(rx_msg, "Forty", rx_size); in misc_sandbox_call()
76 strncpy(rx_msg, "Forty-one", rx_size); in misc_sandbox_call()
79 strncpy(rx_msg, "Forty-two", rx_size); in misc_sandbox_call()
87 memcpy(rx_msg, &priv->last_ioctl, sizeof(priv->last_ioctl)); in misc_sandbox_call()
90 memcpy(rx_msg, &priv->enabled, sizeof(priv->enabled)); in misc_sandbox_call()
H A Dtegra186_bpmp.c29 int tx_size, void *rx_msg, int rx_size) in tegra186_bpmp_call() argument
39 __func__, dev, mrq, tx_msg, tx_size, rx_msg, rx_size, priv); in tegra186_bpmp_call()
83 if (!err && rx_msg && rx_size) in tegra186_bpmp_call()
84 memcpy(rx_msg, resp + 1, rx_size); in tegra186_bpmp_call()
H A Dmisc-uclass.c48 void *rx_msg, int rx_size) in misc_call() argument
55 return ops->call(dev, msgid, tx_msg, tx_size, rx_msg, rx_size); in misc_call()
H A Dgdsys_ioep.c157 void *rx_msg, int rx_size) in gdsys_ioep_get_and_reset_status() argument
163 u16 *status = rx_msg; in gdsys_ioep_get_and_reset_status()
/openbmc/u-boot/drivers/mailbox/
H A Dsandbox-mbox.c16 uint32_t rx_msg; member
47 sbm->chans[chan->id].rx_msg = *pmsg ^ SANDBOX_MBOX_PING_XOR; in sandbox_mbox_send()
63 *pmsg = sbm->chans[chan->id].rx_msg; in sandbox_mbox_recv()
/openbmc/u-boot/drivers/misc/imx8/
H A Dscu.c159 int tx_size, void *rx_msg, int rx_size) in imx8_scu_call() argument
166 if (rx_msg && tx_msg != rx_msg) in imx8_scu_call()
167 printf("tx_msg %p, rx_msg %p\n", tx_msg, rx_msg); in imx8_scu_call()
173 ret = sc_ipc_read(plat->base, rx_msg); in imx8_scu_call()
/openbmc/u-boot/include/
H A Dmisc.h60 void *rx_msg, int rx_size);
131 void *rx_msg, int rx_size);
/openbmc/libmctp/tests/
H A Dtest_i2c.c45 uint8_t rx_msg[TEST_MSG_LEN]; member
87 memcpy(rx_test->rx_msg, msg, len); in test_i2c_rxmsg()
109 assert(memcmp(rx_test->rx_msg, mctp_msg_src, tx_len) == 0); in run_tx_test()