Lines Matching refs:size
189 u32 count : 16; /* size of the buffer pointed by this BD */
342 * @word_size: peripheral access size
405 * @ram_code_size: size of SDMA ram image
689 static int sdma_load_script(struct sdma_engine *sdma, void *buf, int size,
698 buf_virt = dma_alloc_coherent(sdma->dev, size, &buf_phys, GFP_KERNEL);
707 bd0->mode.count = size / 2;
711 memcpy(buf_virt, buf, size);
717 dma_free_coherent(sdma->dev, size, buf_virt, buf_phys);
1543 dev_err(sdma->dev, "SDMA channel %d: maximum period size exceeded: %zu > %d\n",
1733 if (fw->size < sizeof(*header))
1740 if (header->ram_code_start + header->ram_code_size > fw->size)