Home
last modified time | relevance | path

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

/hal_intel-3.6.0/bsp_sedi/drivers/ipc/
Dsedi_ipc.c235 int32_t sedi_ipc_write_msg(IN sedi_ipc_t ipc_device, IN uint8_t *msg, IN int32_t size) in sedi_ipc_write_msg() argument
248 DBG_CHECK((size <= IPC_DATA_LEN_MAX) && (size >= 0), SEDI_DRIVER_ERROR_PARAMETER); in sedi_ipc_write_msg()
254 for (i = 0; i < size; i = i + 4) { in sedi_ipc_write_msg()
261 for (i = 0; i < (size >> 2); i++) { in sedi_ipc_write_msg()
265 if (size % sizeof(uint32_t)) { in sedi_ipc_write_msg()
266 for (i = ((size >> 2) << 2); i < size; i++) { in sedi_ipc_write_msg()
269 regs->ish2agent_msg_agent[size >> 2] = tail; in sedi_ipc_write_msg()
346 int32_t sedi_ipc_read_msg(IN sedi_ipc_t ipc_device, OUT uint8_t *msg, IN int32_t size) in sedi_ipc_read_msg() argument
358 DBG_CHECK((size <= IPC_DATA_LEN_MAX) && (size >= 0), SEDI_DRIVER_ERROR_PARAMETER); in sedi_ipc_read_msg()
362 for (i = 0; i < (size >> 2); i++) { in sedi_ipc_read_msg()
[all …]
/hal_intel-3.6.0/bsp_sedi/include/driver/
Dsedi_driver_ipc.h195 IN int32_t size);
213 IN int32_t size);
231 IN int32_t size);
249 IN int32_t size);
Dsedi_driver_uart.h250 int32_t size; /* Size of the buffer */ member
556 IN uint32_t size);
572 IN uint32_t size);
/hal_intel-3.6.0/bsp_sedi/drivers/i2c/
Dsedi_i2c_dw_apb_200a.c429 uint32_t size = context->buf_size - context->rx_cmd_index; in i2c_ask_data() local
458 if (size <= fifo_size) { in i2c_ask_data()
461 size = fifo_size; in i2c_ask_data()
464 while (size > 0) { in i2c_ask_data()
471 if ((size == 1) && last_data && (!(context->pending))) { in i2c_ask_data()
479 size--; in i2c_ask_data()
492 uint32_t size = context->buf_size - context->buf_index; in i2c_send() local
504 if (size <= tx_fifo_space) { in i2c_send()
507 size = tx_fifo_space; in i2c_send()
511 while (size > 1) { in i2c_send()
[all …]
/hal_intel-3.6.0/bsp_sedi/drivers/spi/
Dsedi_spi_dw_apb.c344 uint32_t size = 0; in lld_spi_fill_fifo() local
364 size = (SPI_FIFO_DEPTH - spi->txflr) * frame_size; in lld_spi_fill_fifo()
367 size = (count > size) ? size : count; in lld_spi_fill_fifo()
369 count = size; in lld_spi_fill_fifo()
370 while (size) { in lld_spi_fill_fifo()
390 size -= frame_size; in lld_spi_fill_fifo()
399 uint32_t size = spi->rxflr * frame_size; in lld_spi_receive_fifo() local
403 size = (count > size) ? size : count; in lld_spi_receive_fifo()
405 count = size; in lld_spi_receive_fifo()
406 while (size) { in lld_spi_receive_fifo()
[all …]
/hal_intel-3.6.0/bsp_sedi/drivers/usart/
Dsedi_dw_uart.c379 if (write_idx == unsol_rx->size) { in handle_unsol_rx_data()
389 unsol_read_ctxt[uart].curr_len = unsol_rx->size - read_idx + write_idx; in handle_unsol_rx_data()
1358 int sedi_uart_fifo_fill(IN sedi_uart_t uart, IN uint8_t *data, IN uint32_t size) in sedi_uart_fifo_fill() argument
1366 for (i = 0; ((i < size) && (!is_tx_fifo_full(uart))); i++) { in sedi_uart_fifo_fill()
1372 int sedi_uart_fifo_read(IN sedi_uart_t uart, OUT uint8_t *data, IN uint32_t size) in sedi_uart_fifo_read() argument
1380 for (i = 0; i < size && sedi_is_rx_data_available(uart); i++) { in sedi_uart_fifo_read()
1580 DBG_CHECK(unsol_rx->size != 0, SEDI_DRIVER_ERROR_PARAMETER); in sedi_uart_enable_unsol_rx()
1661 for (i = start_idx; i < unsol_rx->size; i++) { in sedi_uart_get_unsol_data()
1679 unsol_read_ctxt[uart].read_idx = (unsol_read_ctxt[uart].read_idx + len) % unsol_rx->size; in sedi_uart_get_unsol_data()
/hal_intel-3.6.0/docs/
Dbsp_sedi_doxyfile450 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
455 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
456 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
458 # the optimal cache size from a speed point of view.
1579 # Use this tag to change the font size of LaTeX formulas included as images in
1580 # the HTML documentation. When you change the font size after a successful
2066 # the XML output. Note that enabling this will significantly increase the size
2101 # increase the size of the DOCBOOK output.
2142 # size of the Perl module output will be much smaller and Perl will parse it
2336 # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
[all …]