Lines Matching defs:size
53 int cdns_prepare(int lba, uintptr_t buf, size_t size);
54 int cdns_read(int lba, uintptr_t buf, size_t size);
55 int cdns_write(int lba, uintptr_t buf, size_t size);
249 int cdns_read(int lba, uintptr_t buf, size_t size)
251 inv_dcache_range(buf, size);
261 int cdns_prepare(int dma_start_addr, uintptr_t dma_buff, size_t size)
274 flush_dcache_range(dma_buff, size);
276 desc_cnt = (size + (CDMMC_DMA_MAX_BUFFER_SIZE) - 1) / (CDMMC_DMA_MAX_BUFFER_SIZE);
281 size, (CONFIG_CDNS_DESC_COUNT * CDMMC_DMA_MAX_BUFFER_SIZE));
297 size -= CDMMC_DMA_MAX_BUFFER_SIZE;
305 desc->len = size;
319 ((512 << BLOCK_SIZE) | ((size/512) << BLK_COUNT_CT) | SDMA_BUF));
399 int cdns_write(int lba, uintptr_t buf, size_t size)