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

/u-boot/drivers/spi/
H A Dbcm63xx_hsspi.c255 static int bcm63xx_hsspi_xfer_dummy_cs(struct udevice *dev, unsigned int data_bytes, argument
297 while (data_bytes > 0) {
298 size_t curr_step = min(step_size, (size_t)data_bytes);
336 data_bytes -= curr_step;
346 unsigned int data_bytes, const void *dout, void *din,
366 if (data_bytes > HSSPI_MAX_DATA_SIZE) {
375 if (priv->prepend_cnt + data_bytes > HSSPI_MAX_DATA_SIZE) {
380 if (priv->prepend_cnt + data_bytes > HSSPI_MAX_PREPEND_SIZE) {
389 memcpy(&priv->prepend_buf[priv->prepend_cnt], dout, data_bytes);
390 priv->prepend_cnt += data_bytes;
345 bcm63xx_prepare_prepend_transfer(struct bcm63xx_hsspi_priv *priv, unsigned int data_bytes, const void *dout, void *din, unsigned long flags) argument
397 bcm63xx_hsspi_xfer_prepend(struct udevice *dev, unsigned int data_bytes, const void *dout, void *din, unsigned long flags) argument
494 u32 data_bytes = bitlen >> 3; local
[all...]
H A Dbcm63xx_spi.c201 size_t data_bytes = bitlen / 8; local
219 if (data_bytes > regs[SPI_RX_SIZE]) {
227 if (priv->tx_bytes + data_bytes > regs[SPI_TX_SIZE]) {
234 dout, data_bytes);
235 priv->tx_bytes += data_bytes;
253 val = data_bytes;
259 val = data_bytes;
298 data_bytes);
H A Dbcmbca_hsspi.c218 size_t data_bytes = bitlen / 8; local
257 while (data_bytes > 0) {
258 size_t curr_step = min(step_size, data_bytes);
296 data_bytes -= curr_step;
297 if ((flags & SPI_XFER_END) && !data_bytes)
/u-boot/fs/yaffs2/
H A Dyaffs_checkptrw.c262 u8 *data_bytes = (u8 *) data; local
271 dev->checkpt_buffer[dev->checkpt_byte_offs] = *data_bytes;
272 dev->checkpt_sum += *data_bytes;
273 dev->checkpt_xor ^= *data_bytes;
277 data_bytes++;
295 u8 *data_bytes = (u8 *) data; local
347 *data_bytes = dev->checkpt_buffer[dev->checkpt_byte_offs];
348 dev->checkpt_sum += *data_bytes;
349 dev->checkpt_xor ^= *data_bytes;
352 data_bytes
[all...]
/u-boot/drivers/firmware/arm-ffa/
H A Darm-ffa-uclass.c558 u64 data_bytes; local
562 data_bytes = count * sizeof(struct ffa_partition_desc);
566 if (data_bytes > buf_bytes) {
569 data_bytes,
575 uc_priv->partitions.descs = devm_kmalloc(dev, data_bytes, __GFP_ZERO);
/u-boot/tools/binman/
H A Delf.py360 data_bytes = ['\t.byte\t%#x' % byte for byte in data]
386 ''' % ('\n'.join(text_bytes1), '\n'.join(text_bytes2), '\n'.join(data_bytes)),
/u-boot/arch/mips/mach-octeon/include/mach/
H A Dcvmx-pko3.h1041 unsigned int data_bytes, unsigned int gaura);
1045 u8 data_bytes, uint8_t layer);
/u-boot/drivers/mtd/ubi/
H A Dvmt.c47 __ATTR(data_bytes, S_IRUGO, vol_attribute_show, NULL);
/u-boot/drivers/mtd/nand/raw/
H A Dmeson_nand.c164 u32 data_bytes; member in struct:meson_nfc

Completed in 189 milliseconds