Home
last modified time | relevance | path

Searched refs:tx_size (Results 1 – 12 of 12) sorted by relevance

/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/u-boot/drivers/misc/
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()
41 if ((tx_size > BPMP_IVC_FRAME_SIZE) || (rx_size > BPMP_IVC_FRAME_SIZE)) in tegra186_bpmp_call()
53 memcpy(req + 1, tx_msg, tx_size); in tegra186_bpmp_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 Dmisc_sandbox.c46 int tx_size, void *rx_msg, int rx_size) in misc_sandbox_call() argument
H A Dgdsys_ioep.c156 void *tx_msg, int tx_size, in gdsys_ioep_get_and_reset_status() argument
/openbmc/qemu/hw/net/
H A Dsungem.c234 uint32_t tx_size; member
305 if (start > (s->tx_size - 2) || off > (s->tx_size - 2)) { in sungem_do_tx_csum()
310 csum = net_raw_checksum(s->tx_data + start, s->tx_size - start); in sungem_do_tx_csum()
339 s->tx_size = 0; in sungem_process_tx_desc()
347 if ((s->tx_size + len) > MAX_PACKET_SIZE) { in sungem_process_tx_desc()
349 len = MAX_PACKET_SIZE - s->tx_size; in sungem_process_tx_desc()
353 pci_dma_read(d, desc->buffer, &s->tx_data[s->tx_size], len); in sungem_process_tx_desc()
354 s->tx_size += len; in sungem_process_tx_desc()
358 trace_sungem_tx_finished(s->tx_size); in sungem_process_tx_desc()
366 sungem_send_packet(s, s->tx_data, s->tx_size); in sungem_process_tx_desc()
[all …]
/openbmc/libmctp/docs/bindings/
H A Dvendor-ibm-astlpc.md186 uint32_t tx_size;
252 is set to the BTU regardless of the values of `rx_size` and `tx_size`.
254 Version 2 of the protocol exploits the `rx_size` and `tx_size` fields in the
264 The BMC controls the value of `tx_size`, and MAY choose to adjust it in response
266 the BMC, the host MUST read both `rx_size` and `tx_size` in response to ensure
268 direction. It is convention for `rx_size` and `tx_size` to be set to the same
402 … | ✓ | The BMC calculates the MTUs and updates neither, one or both of `rx_size` and `tx_size` |
406 | 11 | | ✓ | ✓ | The host reads both `rx_size` and `tx_size` to derive the negotiated MTU…
/openbmc/u-boot/drivers/spi/
H A Dfsl_qspi.c628 int i, size, tx_size; in qspi_op_write() local
676 tx_size = (len > TX_BUFFER_SIZE) ? in qspi_op_write()
679 size = tx_size / 16; in qspi_op_write()
684 if (tx_size % 16) in qspi_op_write()
694 (seqid << QSPI_IPCR_SEQID_SHIFT) | tx_size); in qspi_op_write()
/openbmc/libmctp/
H A Dastlpc.c280 uint32_t tx_size; member
406 layout->rx.size = be32toh(hdr.layout.tx_size); in mctp_astlpc_layout_read()
415 layout->tx.size = be32toh(hdr.layout.tx_size); in mctp_astlpc_layout_read()
436 hdr.layout.tx_size = htobe32(layout->rx.size); in mctp_astlpc_layout_write()
581 .layout.tx_size = htobe32(astlpc->layout.rx.size), in mctp_astlpc_init_bmc()
/openbmc/u-boot/drivers/misc/imx8/
H A Dscu.c159 int tx_size, void *rx_msg, int rx_size) in imx8_scu_call() argument
/openbmc/qemu/hw/ide/
H A Dtrace-events54 ide_atapi_cmd_reply_end(void *s, int tx_size, int elem_tx_size, int32_t index) "IDEState %p; reply:…
/openbmc/qemu/net/
H A Daf-xdp.c349 .tx_size = XSK_RING_PROD__DEFAULT_NUM_DESCS, in af_xdp_socket_create()