Home
last modified time | relevance | path

Searched refs:SPI_BPW_RANGE_MASK (Results 1 – 16 of 16) sorted by relevance

/linux/drivers/spi/
H A Dspi-ingenic.c464 .bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 17),
473 .bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 32),
482 .bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 32),
491 .bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 32),
H A Dspi-altera-platform.c68 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in altera_spi_probe()
H A Dspi-altera-dfl.c121 SPI_BPW_RANGE_MASK(1, FIELD_GET(DATA_WIDTH, v)); in config_spi_host()
H A Dspi-clps711x.c109 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 8); in spi_clps711x_probe()
H A Dspi-pxa2xx.c1324 controller->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
1327 controller->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in pxa2xx_spi_probe()
1336 controller->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
H A Dspi-dw-core.c931 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in dw_spi_add_host()
933 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in dw_spi_add_host()
H A Dspi-gpio.c398 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_gpio_probe()
H A Dspi-hisi-kunpeng.c494 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in hisi_spi_probe()
H A Dspi-ep93xx.c643 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in ep93xx_spi_probe()
H A Dspi-axi-spi-engine.c707 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_engine_probe()
H A Dspi-davinci.c934 host->bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 16); in davinci_spi_probe()
H A Dspi-fsl-lpspi.c942 controller->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 32); in fsl_lpspi_probe()
H A Dspi-geni-qcom.c1101 spi->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in spi_geni_probe()
H A Dspi-imx.c1806 controller->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_imx_probe()
/linux/drivers/fpga/
H A Ddfl-n3000-nios.c432 SPI_BPW_RANGE_MASK(1, FIELD_GET(N3000_NS_PARAM_DATA_WIDTH, v)); in create_altera_spi_controller()
/linux/include/linux/spi/
H A Dspi.h581 #define SPI_BPW_RANGE_MASK(min, max) GENMASK((max) - 1, (min) - 1) macro