Home
last modified time | relevance | path

Searched refs:spi_sts (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/u-boot/arch/arm/mach-exynos/
H A Dspl_boot.c79 uint32_t spi_sts; in spi_rx_tx() local
82 spi_sts = readl(&regs->spi_sts); in spi_rx_tx()
83 rx_lvl = ((spi_sts >> 15) & 0x7f); in spi_rx_tx()
84 tx_lvl = ((spi_sts >> 6) & 0x7f); in spi_rx_tx()
145 while (!(readl(&regs->spi_sts) & SPI_ST_TX_DONE)) { in exynos_spi_copy()
/OK3568_Linux_fs/u-boot/drivers/spi/
H A Dexynos_spi.c56 uint32_t spi_sts = readl(&regs->spi_sts); in spi_get_fifo_levels() local
58 *rx_lvl = (spi_sts >> SPI_RX_LVL_OFFSET) & SPI_FIFO_LVL_MASK; in spi_get_fifo_levels()
59 *tx_lvl = (spi_sts >> SPI_TX_LVL_OFFSET) & SPI_FIFO_LVL_MASK; in spi_get_fifo_levels()
/OK3568_Linux_fs/u-boot/arch/arm/mach-exynos/include/mach/
H A Dspi.h20 unsigned int spi_sts; /* 0x14 */ member