/Zephyr-latest/drivers/serial/ |
D | serial_esp32_usb.c | 124 static int serial_esp32_usb_fifo_fill(const struct device *dev, const uint8_t *tx_data, int len) in serial_esp32_usb_fifo_fill() argument 128 int ret = usb_serial_jtag_ll_write_txfifo(tx_data, len); in serial_esp32_usb_fifo_fill()
|
D | uart_stm32.c | 819 typedef void (*fifo_fill_fn)(USART_TypeDef *usart, const void *tx_data, const int offset); 821 static int uart_stm32_fifo_fill_visitor(const struct device *dev, const void *tx_data, int size, in uart_stm32_fifo_fill_visitor() argument 840 fill_fn(usart, tx_data, num_tx); in uart_stm32_fifo_fill_visitor() 849 static void fifo_fill_with_u8(USART_TypeDef *usart, const void *tx_data, const int offset) in fifo_fill_with_u8() argument 851 const uint8_t *data = (const uint8_t *)tx_data; in fifo_fill_with_u8() 856 static int uart_stm32_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size) in uart_stm32_fifo_fill() argument 862 return uart_stm32_fifo_fill_visitor(dev, (const void *)tx_data, size, in uart_stm32_fifo_fill() 913 static void fifo_fill_with_u16(USART_TypeDef *usart, const void *tx_data, const int offset) in fifo_fill_with_u16() argument 915 const uint16_t *data = (const uint16_t *)tx_data; in fifo_fill_with_u16() 921 static int uart_stm32_fifo_fill_u16(const struct device *dev, const uint16_t *tx_data, int size) in uart_stm32_fifo_fill_u16() argument [all …]
|
D | uart_apbuart.c | 314 static int apbuart_fifo_fill(const struct device *dev, const uint8_t *tx_data, in apbuart_fifo_fill() argument 329 regs->data = tx_data[i]; in apbuart_fifo_fill() 334 regs->data = tx_data[i]; in apbuart_fifo_fill()
|
D | uart_sifive.c | 129 const uint8_t *tx_data, in uart_sifive_fifo_fill() argument 136 uart->tx = (int)tx_data[i]; in uart_sifive_fifo_fill()
|
D | uart_cdns.c | 91 static int uart_cdns_fill_fifo(const struct device *dev, const uint8_t *tx_data, int len) in uart_cdns_fill_fifo() argument 98 uart_regs->rx_tx_fifo = tx_data[i]; in uart_cdns_fill_fifo()
|
D | uart_imx.c | 134 const uint8_t *tx_data, in uart_imx_fifo_fill() argument 143 UART_Putchar(uart, tx_data[num_tx]); in uart_imx_fifo_fill()
|
D | uart_msp432p4xx.c | 175 const uint8_t *tx_data, int size) in uart_msp432p4xx_fifo_fill() argument 181 MAP_UART_transmitData(config->base, tx_data[num_tx]); in uart_msp432p4xx_fifo_fill()
|
D | uart_bcm2711.c | 163 const uint8_t *tx_data, in uart_bcm2711_fifo_fill() argument 171 bcm2711_mu_lowlevel_putc(uart_data->uart_addr, tx_data[num_tx]); in uart_bcm2711_fifo_fill()
|
D | uart_cc32xx.c | 137 const uint8_t *tx_data, in uart_cc32xx_fifo_fill() argument 145 if (MAP_UARTCharPutNonBlocking(config->base, tx_data[num_tx])) { in uart_cc32xx_fifo_fill()
|
D | uart_litex.c | 202 const uint8_t *tx_data, int size) in uart_litex_fifo_fill() argument 208 litex_write8(tx_data[i], config->rxtx_addr); in uart_litex_fifo_fill()
|
D | uart_neorv32.c | 218 static int neorv32_uart_fifo_fill(const struct device *dev, const uint8_t *tx_data, int len) in neorv32_uart_fifo_fill() argument 226 __ASSERT_NO_MSG(tx_data != NULL); in neorv32_uart_fifo_fill() 230 neorv32_uart_write_data(dev, *tx_data); in neorv32_uart_fifo_fill()
|
D | uart_psoc6.c | 177 const uint8_t *tx_data, in uart_psoc6_fifo_fill() argument 182 return Cy_SCB_UART_PutArray(config->base, (uint8_t *) tx_data, size); in uart_psoc6_fifo_fill()
|
D | uart_miv.c | 202 const uint8_t *tx_data, in uart_miv_fifo_fill() argument 209 uart->tx = tx_data[i]; in uart_miv_fifo_fill()
|
D | uart_altera.c | 395 const uint8_t *tx_data, in uart_altera_fifo_fill() argument 405 __ASSERT(tx_data != NULL, "tx_data is null pointer!"); in uart_altera_fifo_fill() 408 if (tx_data == NULL) { in uart_altera_fifo_fill() 415 sys_write32(*tx_data, config->base + ALTERA_AVALON_UART_TXDATA_REG_OFFSET); in uart_altera_fifo_fill()
|
D | uart_intel_lw.c | 435 const uint8_t *tx_data, in uart_intel_lw_fifo_fill() argument 444 __ASSERT(tx_data != NULL, "tx_data is null pointer!"); in uart_intel_lw_fifo_fill() 447 if (tx_data == NULL) { in uart_intel_lw_fifo_fill() 459 sys_write32(tx_data[ret_val++], config->base in uart_intel_lw_fifo_fill()
|
D | usart_gd32.c | 166 int usart_gd32_fifo_fill(const struct device *dev, const uint8_t *tx_data, in usart_gd32_fifo_fill() argument 174 usart_data_transmit(cfg->reg, tx_data[num_tx++]); in usart_gd32_fifo_fill()
|
D | uart_mcux_lpsci.c | 88 const uint8_t *tx_data, in mcux_lpsci_fifo_fill() argument 98 LPSCI_WriteByte(config->base, tx_data[num_tx++]); in mcux_lpsci_fifo_fill()
|
D | uart_native_tty.c | 180 const uint8_t *tx_data, in native_tty_uart_fifo_fill() argument 185 return nsi_host_write(data->fd, (void *)tx_data, size); in native_tty_uart_fifo_fill()
|
/Zephyr-latest/include/zephyr/drivers/ |
D | uart.h | 477 static inline int uart_fifo_fill(const struct device *dev, const uint8_t *tx_data, int size); 499 static inline int uart_fifo_fill_u16(const struct device *dev, const uint16_t *tx_data, int size);
|
/Zephyr-latest/tests/drivers/spi/spi_loopback/src/ |
D | spi_rtio.c | 45 static const char tx_data[BUF_SIZE] = "0123456789abcdef\0"; variable 425 memcpy(buffer_tx, tx_data, sizeof(tx_data)); in spi_loopback_setup()
|
/Zephyr-latest/samples/net/sockets/can/src/ |
D | main.c | 23 static struct k_thread tx_data; variable 212 tx_tid = k_thread_create(&tx_data, tx_stack, in setup_socket()
|
/Zephyr-latest/drivers/display/ |
D | display_st7735r.c | 72 const uint8_t *tx_data, size_t tx_count) in st7735r_transmit_hold() argument 77 cmd, tx_data, tx_count); in st7735r_transmit_hold() 81 const uint8_t *tx_data, size_t tx_count) in st7735r_transmit() argument 86 ret = st7735r_transmit_hold(dev, cmd, tx_data, tx_count); in st7735r_transmit()
|
/Zephyr-latest/tests/drivers/spi/spi_controller_peripheral/src/ |
D | main.c | 154 static uint8_t tx_data[256]; in check_buffers() local 164 tx_len = cpy_data(tx_data, sizeof(tx_data), tx_set); in check_buffers() 169 return memcmp(tx_data, rx_data, rx_len); in check_buffers()
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | fifos.rst | 106 struct data_item_t tx_data; 112 tx_data = ... 115 k_fifo_put(&my_fifo, &tx_data);
|
/Zephyr-latest/drivers/espi/ |
D | espi_npcx.c | 1224 uint32_t tx_data; in espi_npcx_flash_write() local 1251 tx_data = 0; in espi_npcx_flash_write() 1253 tx_data |= (*buf << (j * 8)); in espi_npcx_flash_write() 1255 *tx_buf = tx_data; in espi_npcx_flash_write() 1260 tx_data = 0; in espi_npcx_flash_write() 1262 tx_data |= (*buf << (j * 8)); in espi_npcx_flash_write() 1264 *tx_buf = tx_data; in espi_npcx_flash_write()
|