Home
last modified time | relevance | path

Searched refs:bit_width (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/drivers/sdhc/
Dintel_emmc_host.h173 #define SET_BITS(reg, pos, bit_width, val) \ argument
174 reg &= ~(bit_width << pos); \
175 reg |= ((val & bit_width) << pos)
/Zephyr-latest/drivers/mipi_dsi/
Ddsi_mcux_2l.c227 uint32_t bit_width; in dsi_mcux_attach() local
310 bit_width = 16; in dsi_mcux_attach()
315 bit_width = 18; in dsi_mcux_attach()
318 bit_width = 24; in dsi_mcux_attach()
330 if (((dsi_pixel_clk_freq * bit_width) / mdev->data_lanes) > dphy_bit_clk_freq) { in dsi_mcux_attach()
/Zephyr-latest/samples/subsys/usb/uac2_explicit_feedback/src/
Dfeedback_nrf53.c102 .bit_width = NRF_TIMER_BIT_WIDTH_32, in feedback_edge_counter_setup()
135 .bit_width = NRF_TIMER_BIT_WIDTH_32, in feedback_relative_timer_setup()
/Zephyr-latest/samples/subsys/usb/uac2_implicit_feedback/src/
Dfeedback_nrf53.c55 .bit_width = NRF_TIMER_BIT_WIDTH_32, in feedback_init()
/Zephyr-latest/drivers/spi/
Dspi_renesas_ra.c402 uint32_t bit_width = spi_width; in transceive() local
404 if (bit_width > SPI_BIT_WIDTH_16_BITS) { in transceive()
405 bit_width = ((bit_width + 1) >> 2) - 5; in transceive()
408 p_spi_reg->SPCMD[0] |= bit_width << 8; in transceive()
512 data->spi.bit_width = spi_width; in ra_spi_retransmit()
Dspi_b_renesas_ra8.c470 data->spi.bit_width = spi_width; in ra_spi_retransmit()
/Zephyr-latest/drivers/counter/
Dcounter_nrfx_timer.c55 nrf_timer_bit_width_t bit_width; member
304 nrf_timer_bit_width_set(reg, config->bit_width); in init_timer()
447 .bit_width = (DT_INST_PROP(idx, max_bit_width) == 32) ? \
/Zephyr-latest/drivers/adc/
Dadc_esp32.c271 adc_digi_pattern_config->bit_width = seq->resolution; in adc_esp32_fill_digi_pattern()
456 data->chars[channel_id].bit_width = data->resolution[channel_id]; in adc_esp32_read()
/Zephyr-latest/drivers/serial/
Duart_nrfx_uarte.c765 tmr_config.bit_width = NRF_TIMER_BIT_WIDTH_32; in uarte_nrfx_rx_counting_init()