Searched refs:blksize (Results 1 - 7 of 7) sorted by relevance

/u-boot/arch/arm/include/asm/arch-tegra/
H A Dtegra_mmc.h22 unsigned short blksize; /* _BLOCK_SIZE_BLOCK_COUNT_0 15:00 */ member in struct:tegra_mmc
/u-boot/drivers/mmc/
H A Darm_pl180_mmci.c109 static int read_bytes(struct mmc *dev, u32 *dest, u32 blkcount, u32 blksize) argument
112 u64 xfercount = blkcount * blksize;
116 debug("read_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
164 static int write_bytes(struct mmc *dev, u32 *src, u32 blkcount, u32 blksize) argument
168 u64 xfercount = blkcount * blksize;
172 debug("write_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
H A Dbcm2835_sdhost.c280 size_t blksize = data->blocksize; local
285 if (blksize % sizeof(u32))
291 data->dest += blksize;
293 data->src += blksize;
295 copy_words = blksize / sizeof(u32);
H A Dtegra_mmc.c103 writew((7 << 12) | (data->blocksize & 0xFFF), &priv->reg->blksize);
/u-boot/drivers/usb/gadget/
H A Dstorage_common.c295 unsigned int blksize; /* logical block size of bound block device */ member in struct:fsg_lun
582 curlun->blksize = sector_size;
584 debug("blksize: %u\n", sector_size);
H A Df_mass_storage.c773 lldiv(file_offset, curlun->blksize),
774 lldiv(amount, curlun->blksize),
779 nread = rc * curlun->blksize;
792 nread -= (nread & (curlun->blksize - 1)); /* Round down to a block */
898 amount -= (amount & (curlun->blksize - 1));
947 lldiv(file_offset, curlun->blksize),
948 lldiv(amount, curlun->blksize),
952 nwritten = rc * curlun->blksize;
965 nwritten -= (nwritten & (curlun->blksize - 1));
1063 lldiv(file_offset, curlun->blksize),
[all...]
/u-boot/cmd/
H A Dgpt.c235 lbaint_t blksize)
239 partbytes = partsize * blksize;
234 prettyprint_part_size(char *sizestr, lbaint_t partsize, lbaint_t blksize) argument

Completed in 110 milliseconds