Searched refs:tmpdin (Results 1 – 9 of 9) sorted by relevance
/u-boot/drivers/spi/ |
A D | soft_spi.c | 122 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 D | kirkwood_spi.c | 48 unsigned int tmpdout, tmpdin; in _spi_xfer() local 83 tmpdin = readl(®->din); in _spi_xfer() 85 din, tmpdin); in _spi_xfer() 88 *((u8 *)din) = (u8)tmpdin; in _spi_xfer()
|
A D | mpc8xxx_spi.c | 130 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 D | tegra114_spi.c | 227 u32 reg, tmpdout, tmpdin = 0; in tegra114_spi_xfer() local 315 tmpdin = readl(®s->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(®s->fifo_status)); in tegra114_spi_xfer()
|
A D | tegra20_sflash.c | 214 u32 reg, tmpdout, tmpdin = 0; in tegra20_sflash_xfer() local 281 tmpdin = readl(®s->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(®s->status)); in tegra20_sflash_xfer()
|
A D | tegra20_slink.c | 208 u32 reg, tmpdout, tmpdin = 0; in tegra30_spi_xfer() local 280 tmpdin = readl(®s->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(®s->status)); in tegra30_spi_xfer()
|
A D | tegra210_qspi.c | 221 u32 reg, tmpdout, tmpdin = 0; in tegra210_qspi_xfer() local 350 tmpdin = readl(®s->rx_fifo); in tegra210_qspi_xfer() 352 memcpy(din, &tmpdin, bytes); in tegra210_qspi_xfer() 371 __func__, tmpdin, readl(®s->fifo_status)); in tegra210_qspi_xfer()
|
A D | fsl_espi.c | 137 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 D | ssd2828.c | 122 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