Searched refs:tx_len (Results 1 - 13 of 13) sorted by last modified time

/u-boot/drivers/video/nexell/
H A Ds5pxx18_dp_mipi.c70 u16 tx_len; member in struct:mipi_xfer_msg
384 if (xfer->tx_len > DSI_TX_FIFO_SIZE)
386 (int)xfer->tx_len, DSI_TX_FIFO_SIZE);
389 size = xfer->tx_len;
545 if (!msg->tx_len)
555 if (msg->tx_len > 2)
558 xfer.tx_len = 0; /* no payload */
560 xfer.data[1] = (msg->tx_len == 2) ? txb[1] : 0;
563 xfer.tx_len = msg->tx_len;
[all...]
/u-boot/drivers/video/
H A Dmipi_dsi.c204 packet->header[1] = (msg->tx_len >> 0) & 0xff;
205 packet->header[2] = (msg->tx_len >> 8) & 0xff;
207 packet->payload_length = msg->tx_len;
212 packet->header[1] = (msg->tx_len > 0) ? tx[0] : 0;
213 packet->header[2] = (msg->tx_len > 1) ? tx[1] : 0;
234 .tx_len = 2,
254 .tx_len = 2,
278 .tx_len = sizeof(tx),
305 .tx_len = size
349 .tx_len
[all...]
/u-boot/drivers/video/bridge/
H A Dssd2825.c262 ssd2825_write_dsi(dev, msg->tx_buf, msg->tx_len);
H A Dtc358768.c217 if (msg->tx_len > 8) {
/u-boot/drivers/spi/
H A Dzynq_spi.c240 u32 tx_len = len, rx_len = len, tx_tvl; local
260 while ((tx_tvl < priv->fifo_depth) && tx_len) {
266 tx_len--;
H A Duniphier_spi.c222 u32 tx_len, rx_len; local
237 tx_len = len;
242 while (tx_len || rx_len) {
253 if (tx_len && (status & SSI_SR_TNF)) {
256 tx_len--;
H A Dstm32_spi.c114 unsigned int tx_len; /* number of data to be written in bytes */ member in struct:stm32_spi_priv
128 while ((priv->tx_len > 0) &&
130 u32 offs = priv->cur_xferlen - priv->tx_len;
132 if (priv->tx_len >= sizeof(u32) &&
137 priv->tx_len -= sizeof(u32);
138 } else if (priv->tx_len >= sizeof(u16) &&
143 priv->tx_len -= sizeof(u16);
148 priv->tx_len -= sizeof(u8);
152 log_debug("%d bytes left\n", priv->tx_len);
408 priv->tx_len
[all...]
H A Dmtk_snor.c386 u32 tx_len = 0; local
395 tx_len = 1 + op->addr.nbytes + op->dummy.nbytes;
396 trx_len = tx_len + op->data.nbytes;
398 tx_len += op->data.nbytes;
400 txbuf = kmalloc_array(tx_len, sizeof(u8), GFP_KERNEL);
401 memset(txbuf, 0x0, tx_len * sizeof(u8));
417 for (i = 0; i < tx_len; i++, reg_offset--)
H A Dmt7621_spi.c177 size_t tx_len, opcode_len, dido_len; local
182 tx_len = min_t(size_t, len, MT7621_TX_FIFO_LEN);
184 opcode_len = min_t(size_t, tx_len, 4);
185 dido_len = tx_len - opcode_len;
215 len -= tx_len;
H A Dmicrochip_coreqspi.c107 * @tx_len: Number of bytes left to transfer
115 int tx_len; member in struct:mchp_coreqspi
173 while (qspi->tx_len >= 4) {
178 qspi->tx_len -= 4;
185 while (qspi->tx_len--) {
326 qspi->tx_len = op->cmd.nbytes;
337 qspi->tx_len = op->addr.nbytes;
347 qspi->tx_len = op->data.nbytes;
353 qspi->tx_len = 0;
H A Dbcmstb_spi.c268 uint tx_len = len; local
352 while (priv->tx_slot < NUM_CDRAM && tx_len > 0) {
355 out_bytes ? out_bytes[len - tx_len] : 0xff);
356 writel(out_bytes ? out_bytes[len - tx_len] : 0xff,
361 tx_len--;
376 bcmstb_spi_submit(priv, tx_len == 0);
/u-boot/arch/arm/mach-nexell/include/mach/
H A Dmipi_display.h138 * @tx_len: length of @tx_buf
147 size_t tx_len; member in struct:mipi_dsi_msg
/u-boot/include/
H A Dmipi_dsi.h34 * @tx_len: length of @tx_buf
44 size_t tx_len; member in struct:mipi_dsi_msg

Completed in 186 milliseconds