Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/spi/
Dspi-xtensa-xtfpga.c95 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in xtfpga_spi_probe()
Dspi-clps711x.c139 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 8); in spi_clps711x_probe()
Dspi-ath79.c224 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in ath79_spi_probe()
Dspi-altera.c215 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in altera_spi_probe()
Dspi-omap-uwire.c488 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 16); in uwire_probe()
Dspi-fsl-spi.c652 (SPI_BPW_RANGE_MASK(4, 16) | SPI_BPW_MASK(32)) & in fsl_spi_probe()
653 SPI_BPW_RANGE_MASK(1, mpc8xxx_spi->max_bits_per_word); in fsl_spi_probe()
Dspi-pxa2xx.c1373 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
1376 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in pxa2xx_spi_probe()
1385 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in pxa2xx_spi_probe()
Dspi-gpio.c448 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_gpio_probe()
Dspi-omap-100k.c388 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in omap1_spi100k_probe()
Dspi-efm32.c348 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in efm32_spi_probe()
Dspi-coldfire-qspi.c416 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 16); in mcfqspi_probe()
Dspi-ep93xx.c891 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in ep93xx_spi_probe()
Dspi-fsl-espi.c662 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 16); in fsl_espi_probe()
Dspi-au1550.c748 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 24); in au1550_spi_probe()
Dspi-davinci.c988 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(2, 16); in davinci_spi_probe()
Dspi-qup.c821 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in spi_qup_probe()
Dspi-imx.c1106 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(1, 32); in spi_imx_probe()
Dspi-sh-msiof.c1236 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 32); in sh_msiof_spi_probe()
Dspi-atmel.c1304 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(8, 16); in atmel_spi_probe()
Dspi-omap2-mcspi.c1347 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32); in omap2_mcspi_probe()
/linux-4.1.27/include/linux/spi/
Dspi.h345 #define SPI_BPW_RANGE_MASK(min, max) (SPI_BIT_MASK(max) - SPI_BIT_MASK(min - 1)) macro