Home
last modified time | relevance | path

Searched refs:data_bytes (Results 1 – 6 of 6) sorted by relevance

/rk3399_rockchip-uboot/drivers/spi/
H A Dcadence_qspi.c195 size_t data_bytes; in cadence_spi_xfer() local
207 data_bytes = 0; in cadence_spi_xfer()
209 data_bytes = bitlen / 8; in cadence_spi_xfer()
211 debug("%s: len=%d [bytes]\n", __func__, data_bytes); in cadence_spi_xfer()
223 if (din && data_bytes) { in cadence_spi_xfer()
242 data_bytes, din); in cadence_spi_xfer()
248 data_bytes, dout); in cadence_spi_xfer()
255 (plat, data_bytes, din); in cadence_spi_xfer()
263 (plat, data_bytes, dout); in cadence_spi_xfer()
H A Dbcm63xx_spi.c202 size_t data_bytes = bitlen / 8; in bcm63xx_spi_xfer() local
220 if (data_bytes > regs[SPI_RX_SIZE]) { in bcm63xx_spi_xfer()
228 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) { in bcm63xx_spi_xfer()
235 dout, data_bytes); in bcm63xx_spi_xfer()
236 priv->tx_bytes += data_bytes; in bcm63xx_spi_xfer()
254 val = data_bytes; in bcm63xx_spi_xfer()
260 val = data_bytes; in bcm63xx_spi_xfer()
299 data_bytes); in bcm63xx_spi_xfer()
H A Dbcm63xx_hsspi.c221 size_t data_bytes = bitlen / 8; in bcm63xx_hsspi_xfer() local
256 while (data_bytes > 0) { in bcm63xx_hsspi_xfer()
257 size_t curr_step = min(step_size, data_bytes); in bcm63xx_hsspi_xfer()
295 data_bytes -= curr_step; in bcm63xx_hsspi_xfer()
H A Dich.c217 static void spi_setup_type(struct spi_trans *trans, int data_bytes) in spi_setup_type() argument
223 if (trans->bytesout + data_bytes > 4) in spi_setup_type()
/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffs_checkptrw.c261 u8 *data_bytes = (u8 *) data; in yaffs2_checkpt_wr() local
270 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes; in yaffs2_checkpt_wr()
271 dev->checkpt_sum += *data_bytes; in yaffs2_checkpt_wr()
272 dev->checkpt_xor ^= *data_bytes; in yaffs2_checkpt_wr()
276 data_bytes++; in yaffs2_checkpt_wr()
294 u8 *data_bytes = (u8 *) data; in yaffs2_checkpt_rd() local
346 *data_bytes = dev->checkpt_buffer[dev->checkpt_byte_offs]; in yaffs2_checkpt_rd()
347 dev->checkpt_sum += *data_bytes; in yaffs2_checkpt_rd()
348 dev->checkpt_xor ^= *data_bytes; in yaffs2_checkpt_rd()
351 data_bytes++; in yaffs2_checkpt_rd()
/rk3399_rockchip-uboot/drivers/mtd/ubi/
H A Dvmt.c46 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);