Home
last modified time | relevance | path

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

/openbmc/u-boot/drivers/misc/imx8/
H A Dscu.c158 static int imx8_scu_call(struct udevice *dev, int no_resp, void *tx_msg, 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()
169 ret = sc_ipc_write(plat->base, tx_msg); in imx8_scu_call()
178 result = RPC_R8((struct sc_rpc_msg_s *)tx_msg); in imx8_scu_call()
/openbmc/u-boot/drivers/misc/
H A Dmisc_sandbox.c45 int misc_sandbox_call(struct udevice *dev, int msgid, void *tx_msg, in misc_sandbox_call() argument
51 int num = *(int *)tx_msg; in misc_sandbox_call()
69 int num = *(int *)tx_msg; in misc_sandbox_call()
H A Dmisc-uclass.c47 int misc_call(struct udevice *dev, int msgid, void *tx_msg, int tx_size, in misc_call() argument
55 return ops->call(dev, msgid, tx_msg, tx_size, rx_msg, rx_size); in misc_call()
H A Dtegra186_bpmp.c28 static int tegra186_bpmp_call(struct udevice *dev, int mrq, void *tx_msg, in tegra186_bpmp_call() argument
39 __func__, dev, mrq, tx_msg, tx_size, rx_msg, rx_size, priv); in tegra186_bpmp_call()
53 memcpy(req + 1, tx_msg, tx_size); in tegra186_bpmp_call()
H A Dgdsys_ioep.c156 void *tx_msg, int tx_size, in gdsys_ioep_get_and_reset_status() argument
/openbmc/u-boot/include/
H A Dmisc.h59 int misc_call(struct udevice *dev, int msgid, void *tx_msg, int tx_size,
130 int (*call)(struct udevice *dev, int msgid, void *tx_msg, int tx_size,
/openbmc/libmctp/
H A Dcore.c292 if (bus->tx_msg) { in mctp_bus_destroy()
293 __mctp_msg_free(bus->tx_msg, mctp); in mctp_bus_destroy()
294 bus->tx_msg = NULL; in mctp_bus_destroy()
727 if (!bus->tx_msg) { in mctp_next_tx_pkt()
754 memcpy(mctp_pktbuf_data(pkt), (uint8_t *)bus->tx_msg + p, payload_len); in mctp_next_tx_pkt()
768 if (!bus->tx_msg) { in mctp_tx_complete()
777 __mctp_msg_free(bus->tx_msg, bus->binding->mctp); in mctp_tx_complete()
778 bus->tx_msg = NULL; in mctp_tx_complete()
786 while (bus->tx_msg && bus->state == mctp_bus_state_tx_enabled) { in mctp_send_tx_queue()
885 if (bus->tx_msg) { in mctp_message_tx_on_bus()
[all …]
H A Dcore-internal.h53 void *tx_msg; member