Home
last modified time | relevance | path

Searched refs:tx_len (Results 1 – 7 of 7) sorted by relevance

/rk3399_rockchip-uboot/drivers/video/drm/
H A Ddrm_mipi_dsi.c151 packet->header[1] = (msg->tx_len >> 0) & 0xff; in mipi_dsi_create_packet()
152 packet->header[2] = (msg->tx_len >> 8) & 0xff; in mipi_dsi_create_packet()
154 packet->payload_length = msg->tx_len; in mipi_dsi_create_packet()
159 packet->header[1] = (msg->tx_len > 0) ? tx[0] : 0; in mipi_dsi_create_packet()
160 packet->header[2] = (msg->tx_len > 1) ? tx[1] : 0; in mipi_dsi_create_packet()
180 .tx_len = 2, in mipi_dsi_shutdown_peripheral()
199 .tx_len = 2, in mipi_dsi_turn_on_peripheral()
222 .tx_len = sizeof(tx), in mipi_dsi_set_maximum_return_packet_size()
247 .tx_len = sizeof(tx), in mipi_dsi_compression_mode()
270 .tx_len = sizeof(*pps), in mipi_dsi_picture_parameter_set()
[all …]
H A Ddw_mipi_dsi2.c530 return msg->rx_len ? msg->rx_len : msg->tx_len; in dw_mipi_dsi2_transfer()
H A Ddw_mipi_dsi.c869 return msg->rx_len ? msg->rx_len : msg->tx_len; in dw_mipi_dsi_transfer()
/rk3399_rockchip-uboot/drivers/spi/
H A Dbcmstb_spi.c267 uint tx_len = len; in bcmstb_spi_xfer() local
351 while (priv->tx_slot < NUM_CDRAM && tx_len > 0) { in bcmstb_spi_xfer()
354 out_bytes ? out_bytes[len - tx_len] : 0xff); in bcmstb_spi_xfer()
355 writel(out_bytes ? out_bytes[len - tx_len] : 0xff, in bcmstb_spi_xfer()
360 tx_len--; in bcmstb_spi_xfer()
375 bcmstb_spi_submit(priv, tx_len == 0); in bcmstb_spi_xfer()
H A Dzynq_spi.c217 u32 tx_len = len, rx_len = len, tx_tvl; in zynq_spi_xfer() local
237 while ((tx_tvl < priv->fifo_depth) && tx_len) { in zynq_spi_xfer()
243 tx_len--; in zynq_spi_xfer()
/rk3399_rockchip-uboot/drivers/video/drm/rk628/
H A Drk628_dsi.c181 size_t tx_len; member
509 packet->header[1] = (msg->tx_len >> 0) & 0xff; in rk628_mipi_dsi_create_packet()
510 packet->header[2] = (msg->tx_len >> 8) & 0xff; in rk628_mipi_dsi_create_packet()
512 packet->payload_length = msg->tx_len; in rk628_mipi_dsi_create_packet()
517 packet->header[1] = (msg->tx_len > 0) ? tx[0] : 0; in rk628_mipi_dsi_create_packet()
518 packet->header[2] = (msg->tx_len > 1) ? tx[1] : 0; in rk628_mipi_dsi_create_packet()
683 return msg->tx_len; in rk628_dsi_transfer()
695 msg.tx_len = size; in rk628_mipi_dsi_generic_write()
729 msg.tx_len = len; in rk628_mipi_dsi_dcs_write_buffer()
762 msg.tx_len = 1; in rk628_mipi_dsi_dcs_read()
/rk3399_rockchip-uboot/include/drm/
H A Ddrm_mipi_dsi.h39 size_t tx_len; member