Home
last modified time | relevance | path

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

/u-boot/drivers/spi/
A Dsoft_spi.c122 uchar tmpdin = 0; in soft_spi_xfer() local
148 *rxd++ = tmpdin; in soft_spi_xfer()
150 tmpdin = 0; in soft_spi_xfer()
177 tmpdin <<= 1; in soft_spi_xfer()
179 tmpdin |= dm_gpio_get_value(&plat->miso); in soft_spi_xfer()
197 tmpdin <<= 8 - (bitlen % 8); in soft_spi_xfer()
198 *rxd++ = tmpdin; in soft_spi_xfer()
A Dkirkwood_spi.c48 unsigned int tmpdout, tmpdin; in _spi_xfer() local
83 tmpdin = readl(&reg->din); in _spi_xfer()
85 din, tmpdin); in _spi_xfer()
88 *((u8 *)din) = (u8)tmpdin; in _spi_xfer()
A Dmpc8xxx_spi.c130 u32 tmpdin = 0, tmpdout = 0, n; in mpc8xxx_spi_xfer() local
179 tmpdin = in_be32(&spi->rx); in mpc8xxx_spi_xfer()
183 *cin++ = tmpdin; in mpc8xxx_spi_xfer()
203 debug("*** %s: transfer ended. Value=%08x\n", __func__, tmpdin); in mpc8xxx_spi_xfer()
A Dtegra114_spi.c227 u32 reg, tmpdout, tmpdin = 0; in tegra114_spi_xfer() local
315 tmpdin = readl(&regs->rx_fifo); in tegra114_spi_xfer()
320 din[i] = tmpdin & 0xff; in tegra114_spi_xfer()
321 tmpdin >>= 8; in tegra114_spi_xfer()
342 __func__, tmpdin, readl(&regs->fifo_status)); in tegra114_spi_xfer()
A Dtegra20_sflash.c214 u32 reg, tmpdout, tmpdin = 0; in tegra20_sflash_xfer() local
281 tmpdin = readl(&regs->rx_fifo); in tegra20_sflash_xfer()
287 din[i] = tmpdin & 0xff; in tegra20_sflash_xfer()
288 tmpdin >>= 8; in tegra20_sflash_xfer()
306 tmpdin, readl(&regs->status)); in tegra20_sflash_xfer()
A Dtegra20_slink.c208 u32 reg, tmpdout, tmpdin = 0; in tegra30_spi_xfer() local
280 tmpdin = readl(&regs->rx_fifo); in tegra30_spi_xfer()
286 din[i] = tmpdin & 0xff; in tegra30_spi_xfer()
287 tmpdin >>= 8; in tegra30_spi_xfer()
305 __func__, tmpdin, readl(&regs->status)); in tegra30_spi_xfer()
A Dtegra210_qspi.c221 u32 reg, tmpdout, tmpdin = 0; in tegra210_qspi_xfer() local
350 tmpdin = readl(&regs->rx_fifo); in tegra210_qspi_xfer()
352 memcpy(din, &tmpdin, bytes); in tegra210_qspi_xfer()
371 __func__, tmpdin, readl(&regs->fifo_status)); in tegra210_qspi_xfer()
A Dfsl_espi.c137 unsigned int tmpdin, rx_times; in fsl_espi_rx() local
151 tmpdin = in_be32(&espi->rx); in fsl_espi_rx()
152 debug("***spi_xfer:...%08x readed\n", tmpdin); in fsl_espi_rx()
153 *(u32 *)p_cursor = tmpdin; in fsl_espi_rx()
/u-boot/drivers/video/
A Dssd2828.c122 u32 tmpdin = 0; in soft_spi_xfer_24bit_3wire() local
142 tmpdin = (tmpdin << 1) | gpio_get_value(drv->sdo_pin); in soft_spi_xfer_24bit_3wire()
149 return tmpdin & 0xFFFF; in soft_spi_xfer_24bit_3wire()

Completed in 15 milliseconds