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

/u-boot/drivers/spi/
H A Dsoft_spi.c122 uchar tmpdin = 0; local
148 *rxd++ = tmpdin;
150 tmpdin = 0;
177 tmpdin <<= 1;
179 tmpdin |= dm_gpio_get_value(&plat->miso);
197 tmpdin <<= 8 - (bitlen % 8);
198 *rxd++ = tmpdin;
H A Dmpc8xxx_spi.c135 u32 tmpdin = 0, tmpdout = 0, n; local
188 tmpdin = in_be32(&spi->rx);
192 tmpdin >>= 16;
195 *cin++ = tmpdin;
215 debug("*** %s: transfer ended. Value=%08x\n", __func__, tmpdin);
H A Dkirkwood_spi.c48 unsigned int tmpdout, tmpdin; local
83 tmpdin = readl(&reg->din);
85 din, tmpdin);
88 *((u8 *)din) = (u8)tmpdin;
H A Dtegra114_spi.c227 u32 reg, tmpdout, tmpdin = 0; local
315 tmpdin = readl(&regs->rx_fifo);
320 din[i] = tmpdin & 0xff;
321 tmpdin >>= 8;
342 __func__, tmpdin, readl(&regs->fifo_status));
H A Dtegra20_slink.c208 u32 reg, tmpdout, tmpdin = 0; local
283 tmpdin = readl(&regs->rx_fifo);
289 din[i] = tmpdin & 0xff;
290 tmpdin >>= 8;
308 __func__, tmpdin, readl(&regs->status));
H A Dtegra20_sflash.c214 u32 reg, tmpdout, tmpdin = 0; local
281 tmpdin = readl(&regs->rx_fifo);
287 din[i] = tmpdin & 0xff;
288 tmpdin >>= 8;
306 tmpdin, readl(&regs->status));
H A Dtegra210_qspi.c221 u32 reg, tmpdout, tmpdin = 0; local
350 tmpdin = readl(&regs->rx_fifo);
352 memcpy(din, &tmpdin, bytes);
371 __func__, tmpdin, readl(&regs->fifo_status));
H A Dfsl_espi.c137 unsigned int tmpdin, rx_times; local
151 tmpdin = in_be32(&espi->rx);
152 debug("***spi_xfer:...%08x readed\n", tmpdin);
153 *(u32 *)p_cursor = tmpdin;
/u-boot/drivers/video/
H A Dssd2828.c121 u32 tmpdin = 0; local
141 tmpdin = (tmpdin << 1) | gpio_get_value(drv->sdo_pin);
148 return tmpdin & 0xFFFF;

Completed in 101 milliseconds