2014-11-21 19:06:39 +08:00
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
2013-10-10 21:40:44 +08:00
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/gfp.h>
|
2014-11-21 19:06:39 +08:00
|
|
|
#include <linux/highmem.h>
|
2013-10-10 21:40:44 +08:00
|
|
|
#include <linux/export.h>
|
2014-11-21 19:06:39 +08:00
|
|
|
#include <linux/of_address.h>
|
2013-10-10 21:40:44 +08:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/swiotlb.h>
|
|
|
|
|
|
|
|
#include <xen/xen.h>
|
|
|
|
#include <xen/interface/memory.h>
|
|
|
|
#include <xen/swiotlb-xen.h>
|
|
|
|
|
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
#include <asm/xen/page.h>
|
|
|
|
#include <asm/xen/hypercall.h>
|
|
|
|
#include <asm/xen/interface.h>
|
|
|
|
|
2014-11-21 19:06:39 +08:00
|
|
|
enum dma_cache_op {
|
|
|
|
DMA_UNMAP,
|
|
|
|
DMA_MAP,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* functions called by SWIOTLB */
|
|
|
|
|
|
|
|
static void dma_cache_maint(dma_addr_t handle, unsigned long offset,
|
|
|
|
size_t size, enum dma_data_direction dir, enum dma_cache_op op)
|
|
|
|
{
|
|
|
|
unsigned long pfn;
|
|
|
|
size_t left = size;
|
|
|
|
|
|
|
|
pfn = (handle >> PAGE_SHIFT) + offset / PAGE_SIZE;
|
|
|
|
offset %= PAGE_SIZE;
|
|
|
|
|
|
|
|
do {
|
|
|
|
size_t len = left;
|
|
|
|
|
|
|
|
/* TODO: cache flush */
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
pfn++;
|
|
|
|
left -= len;
|
|
|
|
} while (left);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __xen_dma_page_dev_to_cpu(struct device *hwdev, dma_addr_t handle,
|
|
|
|
size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
dma_cache_maint(handle & PAGE_MASK, handle & ~PAGE_MASK, size, dir, DMA_UNMAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __xen_dma_page_cpu_to_dev(struct device *hwdev, dma_addr_t handle,
|
|
|
|
size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
dma_cache_maint(handle & PAGE_MASK, handle & ~PAGE_MASK, size, dir, DMA_MAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __xen_dma_map_page(struct device *hwdev, struct page *page,
|
|
|
|
dma_addr_t dev_addr, unsigned long offset, size_t size,
|
|
|
|
enum dma_data_direction dir, struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
if (is_device_dma_coherent(hwdev))
|
|
|
|
return;
|
|
|
|
if (dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
|
|
|
|
return;
|
|
|
|
|
|
|
|
__xen_dma_page_cpu_to_dev(hwdev, dev_addr, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __xen_dma_unmap_page(struct device *hwdev, dma_addr_t handle,
|
|
|
|
size_t size, enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
|
|
|
|
{
|
|
|
|
if (is_device_dma_coherent(hwdev))
|
|
|
|
return;
|
|
|
|
if (dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
|
|
|
|
return;
|
|
|
|
|
|
|
|
__xen_dma_page_dev_to_cpu(hwdev, handle, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __xen_dma_sync_single_for_cpu(struct device *hwdev,
|
|
|
|
dma_addr_t handle, size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
if (is_device_dma_coherent(hwdev))
|
|
|
|
return;
|
|
|
|
__xen_dma_page_dev_to_cpu(hwdev, handle, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __xen_dma_sync_single_for_device(struct device *hwdev,
|
|
|
|
dma_addr_t handle, size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
if (is_device_dma_coherent(hwdev))
|
|
|
|
return;
|
|
|
|
__xen_dma_page_cpu_to_dev(hwdev, handle, size, dir);
|
|
|
|
}
|
|
|
|
|
2013-10-10 21:41:10 +08:00
|
|
|
int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order,
|
2013-10-10 21:40:44 +08:00
|
|
|
unsigned int address_bits,
|
|
|
|
dma_addr_t *dma_handle)
|
|
|
|
{
|
|
|
|
if (!xen_initial_domain())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* we assume that dom0 is mapped 1:1 for now */
|
2013-10-10 21:41:10 +08:00
|
|
|
*dma_handle = pstart;
|
2013-10-10 21:40:44 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(xen_create_contiguous_region);
|
|
|
|
|
2013-10-10 21:41:10 +08:00
|
|
|
void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order)
|
2013-10-10 21:40:44 +08:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(xen_destroy_contiguous_region);
|
|
|
|
|
|
|
|
struct dma_map_ops *xen_dma_ops;
|
|
|
|
EXPORT_SYMBOL_GPL(xen_dma_ops);
|
|
|
|
|
|
|
|
static struct dma_map_ops xen_swiotlb_dma_ops = {
|
|
|
|
.mapping_error = xen_swiotlb_dma_mapping_error,
|
|
|
|
.alloc = xen_swiotlb_alloc_coherent,
|
|
|
|
.free = xen_swiotlb_free_coherent,
|
|
|
|
.sync_single_for_cpu = xen_swiotlb_sync_single_for_cpu,
|
|
|
|
.sync_single_for_device = xen_swiotlb_sync_single_for_device,
|
|
|
|
.sync_sg_for_cpu = xen_swiotlb_sync_sg_for_cpu,
|
|
|
|
.sync_sg_for_device = xen_swiotlb_sync_sg_for_device,
|
|
|
|
.map_sg = xen_swiotlb_map_sg_attrs,
|
|
|
|
.unmap_sg = xen_swiotlb_unmap_sg_attrs,
|
|
|
|
.map_page = xen_swiotlb_map_page,
|
|
|
|
.unmap_page = xen_swiotlb_unmap_page,
|
|
|
|
.dma_supported = xen_swiotlb_dma_supported,
|
2013-10-10 00:56:33 +08:00
|
|
|
.set_dma_mask = xen_swiotlb_set_dma_mask,
|
2013-10-10 21:40:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
int __init xen_mm_init(void)
|
|
|
|
{
|
|
|
|
if (!xen_initial_domain())
|
|
|
|
return 0;
|
|
|
|
xen_swiotlb_init(1, false);
|
|
|
|
xen_dma_ops = &xen_swiotlb_dma_ops;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
arch_initcall(xen_mm_init);
|