Home
last modified time | relevance | path

Searched refs:bounce_buf (Results 1 – 25 of 139) sorted by relevance

123456

/dports/x11/babl/babl-0.1.88/tests/
H A Dalpha_symmetric_transform.c41 float bounce_buf [PIXELS * 4]; variable
51 source_buf, bounce_buf, in test()
54 bounce_buf, destination_buf, in test()
75 source_buf, bounce_buf, in test()
78 bounce_buf, destination_buf, in test()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/mmc/host/
H A Drenesas_sdhi_sys_dmac.c185 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_rx()
260 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_tx()
261 memcpy(host->bounce_buf, sg_vaddr, host->bounce_sg.length); in renesas_sdhi_sys_dmac_start_dma_tx()
399 host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA); in renesas_sdhi_sys_dmac_request_dma()
400 if (!host->bounce_buf) in renesas_sdhi_sys_dmac_request_dma()
437 if (host->bounce_buf) { in renesas_sdhi_sys_dmac_release_dma()
438 free_pages((unsigned long)host->bounce_buf, 0); in renesas_sdhi_sys_dmac_release_dma()
439 host->bounce_buf = NULL; in renesas_sdhi_sys_dmac_release_dma()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/mmc/host/
H A Drenesas_sdhi_sys_dmac.c185 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_rx()
260 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_tx()
261 memcpy(host->bounce_buf, sg_vaddr, host->bounce_sg.length); in renesas_sdhi_sys_dmac_start_dma_tx()
399 host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA); in renesas_sdhi_sys_dmac_request_dma()
400 if (!host->bounce_buf) in renesas_sdhi_sys_dmac_request_dma()
437 if (host->bounce_buf) { in renesas_sdhi_sys_dmac_release_dma()
438 free_pages((unsigned long)host->bounce_buf, 0); in renesas_sdhi_sys_dmac_release_dma()
439 host->bounce_buf = NULL; in renesas_sdhi_sys_dmac_release_dma()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/mmc/host/
H A Drenesas_sdhi_sys_dmac.c185 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_rx()
260 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length); in renesas_sdhi_sys_dmac_start_dma_tx()
261 memcpy(host->bounce_buf, sg_vaddr, host->bounce_sg.length); in renesas_sdhi_sys_dmac_start_dma_tx()
399 host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA); in renesas_sdhi_sys_dmac_request_dma()
400 if (!host->bounce_buf) in renesas_sdhi_sys_dmac_request_dma()
437 if (host->bounce_buf) { in renesas_sdhi_sys_dmac_release_dma()
438 free_pages((unsigned long)host->bounce_buf, 0); in renesas_sdhi_sys_dmac_release_dma()
439 host->bounce_buf = NULL; in renesas_sdhi_sys_dmac_release_dma()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/scsi/
H A 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()
300 dev->bounce_buf, in ps3rom_interrupt()
359 dev->bounce_buf = kmalloc(BOUNCE_SIZE, GFP_DMA); in ps3rom_probe()
360 if (!dev->bounce_buf) in ps3rom_probe()
401 kfree(dev->bounce_buf); in ps3rom_probe()
414 kfree(dev->bounce_buf); in ps3rom_remove()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/scsi/
H A 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()
300 dev->bounce_buf, in ps3rom_interrupt()
359 dev->bounce_buf = kmalloc(BOUNCE_SIZE, GFP_DMA); in ps3rom_probe()
360 if (!dev->bounce_buf) in ps3rom_probe()
401 kfree(dev->bounce_buf); in ps3rom_probe()
414 kfree(dev->bounce_buf); in ps3rom_remove()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/scsi/
H A 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()
300 dev->bounce_buf, in ps3rom_interrupt()
359 dev->bounce_buf = kmalloc(BOUNCE_SIZE, GFP_DMA); in ps3rom_probe()
360 if (!dev->bounce_buf) in ps3rom_probe()
401 kfree(dev->bounce_buf); in ps3rom_probe()
414 kfree(dev->bounce_buf); in ps3rom_remove()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/u-boot/drivers/spi/
H A Dcadence_qspi_apb.c724 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
733 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
734 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
736 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
737 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
778 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
779 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
786 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
787 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/emulators/qemu42/qemu-4.2.1/roms/u-boot/drivers/spi/
H A Dcadence_qspi_apb.c724 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
733 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
734 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
736 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
737 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
778 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
779 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
786 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
787 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/emulators/qemu5/qemu-5.2.0/roms/u-boot/drivers/spi/
H A Dcadence_qspi_apb.c724 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
733 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
734 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
736 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
737 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
778 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
779 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
786 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
787 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/drivers/spi/
H A Dcadence_qspi_apb.c724 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
733 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
734 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
736 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
737 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
778 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
779 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
786 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
787 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/emulators/qemu60/qemu-6.0.0/roms/u-boot/drivers/spi/
H A Dcadence_qspi_apb.c724 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
733 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
734 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
736 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
737 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
778 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
779 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
786 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
787 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-nanopi-neo2/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-cubieboard2/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-cubieboard/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-firefly-rk3399/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-sinovoip-bpi-m3/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-a13-olinuxino/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-a64-olinuxino/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-sopine/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-rpi/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
/dports/sysutils/u-boot-qemu-arm64/u-boot-2021.07/drivers/spi/
H A Dcadence_qspi_apb.c710 void *bounce_buf = NULL; in cadence_qspi_apb_indirect_write_execute() local
719 bounce_buf = malloc(n_tx); in cadence_qspi_apb_indirect_write_execute()
720 if (!bounce_buf) in cadence_qspi_apb_indirect_write_execute()
722 memcpy(bounce_buf, txbuf, n_tx); in cadence_qspi_apb_indirect_write_execute()
723 bb_txbuf = bounce_buf; in cadence_qspi_apb_indirect_write_execute()
764 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
765 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()
772 if (bounce_buf) in cadence_qspi_apb_indirect_write_execute()
773 free(bounce_buf); in cadence_qspi_apb_indirect_write_execute()

123456