Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/drivers/misc/
H A Dtegra186_bpmp.c30 int tx_size, void *rx_msg, int rx_size) in tegra186_bpmp_call() argument
40 __func__, dev, mrq, tx_msg, tx_size, rx_msg, rx_size, priv); in tegra186_bpmp_call()
42 if ((tx_size > BPMP_IVC_FRAME_SIZE) || (rx_size > BPMP_IVC_FRAME_SIZE)) in tegra186_bpmp_call()
54 memcpy(req + 1, tx_msg, tx_size); in tegra186_bpmp_call()
H A Dmisc-uclass.c48 int misc_call(struct udevice *dev, int msgid, void *tx_msg, int tx_size, in misc_call() argument
56 return ops->call(dev, msgid, tx_msg, tx_size, rx_msg, rx_size); in misc_call()
/rk3399_rockchip-uboot/include/
H A Dmisc.h79 int misc_call(struct udevice *dev, int msgid, void *tx_msg, int tx_size,
142 int (*call)(struct udevice *dev, int msgid, void *tx_msg, int tx_size,
/rk3399_rockchip-uboot/drivers/spi/
H A Dfsl_qspi.c618 int i, size, tx_size; in qspi_op_write() local
666 tx_size = (len > TX_BUFFER_SIZE) ? in qspi_op_write()
669 size = tx_size / 16; in qspi_op_write()
674 if (tx_size % 16) in qspi_op_write()
684 (seqid << QSPI_IPCR_SEQID_SHIFT) | tx_size); in qspi_op_write()