Home
last modified time | relevance | path

Searched refs:bounce_size (Results 1 – 8 of 8) sorted by relevance

/drivers/vdpa/vdpa_user/
Diova_domain.c170 if (iova >= domain->bounce_size) in vduse_domain_bounce()
235 bounce_pfns = domain->bounce_size >> PAGE_SHIFT; in vduse_domain_free_bounce_pages()
259 vduse_iotlb_del_range(domain, 0, domain->bounce_size - 1); in vduse_domain_reset_bounce_map()
276 ret = vduse_iotlb_add_range(domain, 0, domain->bounce_size - 1, in vduse_domain_init_bounce_map()
323 unsigned long limit = domain->bounce_size - 1; in vduse_domain_map_page()
428 if (iova < domain->bounce_size) in vduse_domain_mmap_fault()
485 vduse_domain_create(unsigned long iova_limit, size_t bounce_size) in vduse_domain_create() argument
492 bounce_pfns = PAGE_ALIGN(bounce_size) >> PAGE_SHIFT; in vduse_domain_create()
493 if (iova_limit <= bounce_size) in vduse_domain_create()
505 domain->bounce_size = PAGE_ALIGN(bounce_size); in vduse_domain_create()
Diova_domain.h31 size_t bounce_size; member
67 size_t bounce_size);
Dvduse_dev.c802 return domain->bounce_size; in vduse_dev_max_mapping_size()
/drivers/char/
Dps3flash.c118 sector = *pos / dev->bounce_size * priv->chunk_sectors; in ps3flash_read()
119 offset = *pos % dev->bounce_size; in ps3flash_read()
123 n = min_t(u64, remaining, dev->bounce_size - offset); in ps3flash_read()
187 sector = *pos / dev->bounce_size * priv->chunk_sectors; in ps3flash_write()
188 offset = *pos % dev->bounce_size; in ps3flash_write()
192 n = min_t(u64, remaining, dev->bounce_size - offset); in ps3flash_write()
197 if (n != dev->bounce_size) in ps3flash_write()
374 dev->bounce_size = ps3flash_bounce_buffer.size; in ps3flash_probe()
376 priv->chunk_sectors = dev->bounce_size / dev->blk_size; in ps3flash_probe()
/drivers/ps3/
Dps3stor_lib.c166 alignment = min(__ffs(dev->bounce_size), in ps3stor_setup()
171 __func__, __LINE__, dev->bounce_size, dev->bounce_buf); in ps3stor_setup()
180 PS3_DMA_OTHER, dev->bounce_buf, dev->bounce_size); in ps3stor_setup()
191 dev->bounce_size, DMA_BIDIRECTIONAL); in ps3stor_setup()
208 dma_unmap_single(&dev->sbd.core, dev->bounce_dma, dev->bounce_size, in ps3stor_setup()
232 dma_unmap_single(&dev->sbd.core, dev->bounce_dma, dev->bounce_size, in ps3stor_teardown()
/drivers/scsi/
Dps3rom.c117 scsi_sg_copy_to_buffer(cmd, dev->bounce_buf, dev->bounce_size); in ps3rom_atapi_request()
189 scsi_sg_copy_to_buffer(cmd, dev->bounce_buf, dev->bounce_size); in ps3rom_write_request()
299 dev->bounce_size); in ps3rom_interrupt()
355 dev->bounce_size = BOUNCE_SIZE; in ps3rom_probe()
/drivers/block/
Dps3disk.c416 dev->bounce_size = BOUNCE_SIZE; in ps3disk_probe()
444 blk_queue_max_hw_sectors(queue, dev->bounce_size >> 9); in ps3disk_probe()
451 blk_queue_max_segment_size(queue, dev->bounce_size); in ps3disk_probe()
/drivers/mmc/host/
Dsdhci.c4148 unsigned int bounce_size; in sdhci_allocate_bounce_buffer() local
4156 bounce_size = SZ_64K; in sdhci_allocate_bounce_buffer()
4162 if (mmc->max_req_size < bounce_size) in sdhci_allocate_bounce_buffer()
4163 bounce_size = mmc->max_req_size; in sdhci_allocate_bounce_buffer()
4164 max_blocks = bounce_size / 512; in sdhci_allocate_bounce_buffer()
4172 bounce_size, in sdhci_allocate_bounce_buffer()
4177 bounce_size); in sdhci_allocate_bounce_buffer()
4187 bounce_size, in sdhci_allocate_bounce_buffer()
4197 host->bounce_buffer_size = bounce_size; in sdhci_allocate_bounce_buffer()
4201 mmc->max_seg_size = bounce_size; in sdhci_allocate_bounce_buffer()
[all …]