Lines Matching defs:lba
577 size_t sdmmc_read_blocks(int lba, uintptr_t buf, size_t size)
587 ret = ops->prepare(lba, buf, size);
611 cmd_arg = lba * MMC_BLOCK_SIZE;
613 cmd_arg = lba;
621 ret = ops->read(lba, buf, size);
644 size_t sdmmc_write_blocks(int lba, const uintptr_t buf, size_t size)
655 ret = ops->prepare(lba, buf, size);
678 cmd_arg = lba * MMC_BLOCK_SIZE;
680 cmd_arg = lba;
688 ret = ops->write(lba, buf, size);