Home
last modified time | relevance | path

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

/linux-6.6.21/drivers/spi/
Dspi-sifive.c95 u32 cs_inactive; /* level of the CS pins when inactive */ member
138 spi->cs_inactive &= ~BIT(spi_get_chipselect(device, 0)); in sifive_spi_prepare_message()
140 spi->cs_inactive |= BIT(spi_get_chipselect(device, 0)); in sifive_spi_prepare_message()
141 sifive_spi_write(spi, SIFIVE_SPI_REG_CSDEF, spi->cs_inactive); in sifive_spi_prepare_message()
353 spi->cs_inactive = sifive_spi_read(spi, SIFIVE_SPI_REG_CSDEF); in sifive_spi_probe()
356 sifive_spi_write(spi, SIFIVE_SPI_REG_CSDEF, spi->cs_inactive); in sifive_spi_probe()
Dspi-xilinx.c91 u32 cs_inactive; /* Level of the CS pins when inactive*/ member
194 xspi->write_fn(xspi->cs_inactive, xspi->regs + XSPI_SSR_OFFSET); in xilinx_spi_chipselect()
215 cs = xspi->cs_inactive; in xilinx_spi_chipselect()
231 xspi->cs_inactive &= ~BIT(spi_get_chipselect(spi, 0)); in xilinx_spi_setup_transfer()
233 xspi->cs_inactive |= BIT(spi_get_chipselect(spi, 0)); in xilinx_spi_setup_transfer()
436 xspi->cs_inactive = 0xffffffff; in xilinx_spi_probe()
Dspi-rockchip.c198 bool cs_inactive; /* spi target tansmition stop when cs inactive */ member
355 if (rs->cs_inactive && readl_relaxed(rs->regs + ROCKCHIP_SPI_IMR) & INT_CS_INACTIVE) { in rockchip_spi_isr()
393 if (rs->cs_inactive) in rockchip_spi_prepare_irq()
411 if (rs->cs_inactive) in rockchip_spi_dma_rxcb()
511 if (rs->cs_inactive) in rockchip_spi_prepare_dma()
915 rs->cs_inactive = true; in rockchip_spi_probe()
917 rs->cs_inactive = false; in rockchip_spi_probe()
920 rs->cs_inactive = false; in rockchip_spi_probe()
Dspi-mt65xx.c288 struct spi_delay *cs_inactive = &spi->cs_inactive; in mtk_spi_set_hw_cs_timing() local
303 delay = spi_delay_to_ns(cs_inactive, NULL); in mtk_spi_set_hw_cs_timing()
Dspi-tegra114.c724 struct spi_delay *inactive = &spi->cs_inactive; in tegra_spi_set_hw_cs_timing()
Dspi.c1000 spi_delay_exec(&spi->cs_inactive, NULL); in spi_set_cs()
2322 of_spi_parse_dt_cs_delay(nc, &spi->cs_inactive, "spi-cs-inactive-delay-ns"); in of_spi_parse_dt()
/linux-6.6.21/include/linux/spi/
Dspi.h221 struct spi_delay cs_inactive; member