2008-02-03 21:06:26 +08:00
|
|
|
#ifndef _LINUX_DMA_MAPPING_H
|
|
|
|
#define _LINUX_DMA_MAPPING_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2015-11-07 08:32:51 +08:00
|
|
|
#include <linux/sizes.h>
|
2011-11-03 04:39:33 +08:00
|
|
|
#include <linux/string.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/err.h>
|
2009-01-05 22:59:01 +08:00
|
|
|
#include <linux/dma-attrs.h>
|
2016-01-21 07:02:05 +08:00
|
|
|
#include <linux/dma-debug.h>
|
2011-06-16 19:01:34 +08:00
|
|
|
#include <linux/dma-direction.h>
|
2009-01-05 22:59:01 +08:00
|
|
|
#include <linux/scatterlist.h>
|
2016-01-21 07:02:05 +08:00
|
|
|
#include <linux/kmemcheck.h>
|
|
|
|
#include <linux/bug.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2014-05-01 01:20:53 +08:00
|
|
|
/*
|
|
|
|
* A dma_addr_t can hold any valid DMA or bus address for the platform.
|
|
|
|
* It can be given to a device to use as a DMA source or target. A CPU cannot
|
|
|
|
* reference a dma_addr_t directly because there may be translation between
|
|
|
|
* its physical address space and the bus address space.
|
|
|
|
*/
|
2009-01-05 22:59:01 +08:00
|
|
|
struct dma_map_ops {
|
2012-03-28 22:36:27 +08:00
|
|
|
void* (*alloc)(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp,
|
|
|
|
struct dma_attrs *attrs);
|
|
|
|
void (*free)(struct device *dev, size_t size,
|
|
|
|
void *vaddr, dma_addr_t dma_handle,
|
|
|
|
struct dma_attrs *attrs);
|
2011-12-21 23:55:33 +08:00
|
|
|
int (*mmap)(struct device *, struct vm_area_struct *,
|
|
|
|
void *, dma_addr_t, size_t, struct dma_attrs *attrs);
|
|
|
|
|
2012-06-13 16:05:52 +08:00
|
|
|
int (*get_sgtable)(struct device *dev, struct sg_table *sgt, void *,
|
|
|
|
dma_addr_t, size_t, struct dma_attrs *attrs);
|
|
|
|
|
2009-01-05 22:59:01 +08:00
|
|
|
dma_addr_t (*map_page)(struct device *dev, struct page *page,
|
|
|
|
unsigned long offset, size_t size,
|
|
|
|
enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs);
|
|
|
|
void (*unmap_page)(struct device *dev, dma_addr_t dma_handle,
|
|
|
|
size_t size, enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs);
|
2015-02-11 20:53:15 +08:00
|
|
|
/*
|
|
|
|
* map_sg returns 0 on error and a value > 0 on success.
|
|
|
|
* It should never return a value < 0.
|
|
|
|
*/
|
2009-01-05 22:59:01 +08:00
|
|
|
int (*map_sg)(struct device *dev, struct scatterlist *sg,
|
|
|
|
int nents, enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs);
|
|
|
|
void (*unmap_sg)(struct device *dev,
|
|
|
|
struct scatterlist *sg, int nents,
|
|
|
|
enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs);
|
|
|
|
void (*sync_single_for_cpu)(struct device *dev,
|
|
|
|
dma_addr_t dma_handle, size_t size,
|
|
|
|
enum dma_data_direction dir);
|
|
|
|
void (*sync_single_for_device)(struct device *dev,
|
|
|
|
dma_addr_t dma_handle, size_t size,
|
|
|
|
enum dma_data_direction dir);
|
|
|
|
void (*sync_sg_for_cpu)(struct device *dev,
|
|
|
|
struct scatterlist *sg, int nents,
|
|
|
|
enum dma_data_direction dir);
|
|
|
|
void (*sync_sg_for_device)(struct device *dev,
|
|
|
|
struct scatterlist *sg, int nents,
|
|
|
|
enum dma_data_direction dir);
|
|
|
|
int (*mapping_error)(struct device *dev, dma_addr_t dma_addr);
|
|
|
|
int (*dma_supported)(struct device *dev, u64 mask);
|
2009-08-05 03:08:24 +08:00
|
|
|
int (*set_dma_mask)(struct device *dev, u64 mask);
|
2011-06-24 17:05:23 +08:00
|
|
|
#ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
|
|
|
|
u64 (*get_required_mask)(struct device *dev);
|
|
|
|
#endif
|
2009-01-05 22:59:01 +08:00
|
|
|
int is_phys;
|
|
|
|
};
|
|
|
|
|
2016-02-03 13:46:32 +08:00
|
|
|
extern struct dma_map_ops dma_noop_ops;
|
|
|
|
|
2007-10-18 18:05:07 +08:00
|
|
|
#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
|
2007-10-18 18:05:06 +08:00
|
|
|
|
2007-10-16 16:23:55 +08:00
|
|
|
#define DMA_MASK_NONE 0x0ULL
|
|
|
|
|
2006-09-29 16:59:48 +08:00
|
|
|
static inline int valid_dma_direction(int dma_direction)
|
|
|
|
{
|
|
|
|
return ((dma_direction == DMA_BIDIRECTIONAL) ||
|
|
|
|
(dma_direction == DMA_TO_DEVICE) ||
|
|
|
|
(dma_direction == DMA_FROM_DEVICE));
|
|
|
|
}
|
|
|
|
|
2007-10-16 16:23:55 +08:00
|
|
|
static inline int is_device_dma_capable(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
|
|
|
|
}
|
|
|
|
|
2016-01-21 07:02:09 +08:00
|
|
|
#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
|
|
|
|
/*
|
|
|
|
* These three functions are only for dma allocator.
|
|
|
|
* Don't use them in device drivers.
|
|
|
|
*/
|
|
|
|
int dma_alloc_from_coherent(struct device *dev, ssize_t size,
|
|
|
|
dma_addr_t *dma_handle, void **ret);
|
|
|
|
int dma_release_from_coherent(struct device *dev, int order, void *vaddr);
|
|
|
|
|
|
|
|
int dma_mmap_from_coherent(struct device *dev, struct vm_area_struct *vma,
|
|
|
|
void *cpu_addr, size_t size, int *ret);
|
|
|
|
#else
|
|
|
|
#define dma_alloc_from_coherent(dev, size, handle, ret) (0)
|
|
|
|
#define dma_release_from_coherent(dev, order, vaddr) (0)
|
|
|
|
#define dma_mmap_from_coherent(dev, vma, vaddr, order, ret) (0)
|
|
|
|
#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
|
|
|
|
|
2007-07-16 14:40:26 +08:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/dma-mapping.h>
|
2007-07-16 14:40:26 +08:00
|
|
|
#else
|
2016-01-21 07:02:05 +08:00
|
|
|
/*
|
|
|
|
* Define the dma api to allow compilation but not linking of
|
|
|
|
* dma dependent code. Code that depends on the dma-mapping
|
|
|
|
* API needs to set 'depends on HAS_DMA' in its Kconfig
|
|
|
|
*/
|
|
|
|
extern struct dma_map_ops bad_dma_ops;
|
|
|
|
static inline struct dma_map_ops *get_dma_ops(struct device *dev)
|
|
|
|
{
|
|
|
|
return &bad_dma_ops;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
|
|
|
|
size_t size,
|
|
|
|
enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
dma_addr_t addr;
|
|
|
|
|
|
|
|
kmemcheck_mark_initialized(ptr, size);
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
addr = ops->map_page(dev, virt_to_page(ptr),
|
2016-01-21 07:02:12 +08:00
|
|
|
offset_in_page(ptr), size,
|
2016-01-21 07:02:05 +08:00
|
|
|
dir, attrs);
|
|
|
|
debug_dma_map_page(dev, virt_to_page(ptr),
|
2016-01-21 07:02:12 +08:00
|
|
|
offset_in_page(ptr), size,
|
2016-01-21 07:02:05 +08:00
|
|
|
dir, addr, true);
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
|
|
|
|
size_t size,
|
|
|
|
enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->unmap_page)
|
|
|
|
ops->unmap_page(dev, addr, size, dir, attrs);
|
|
|
|
debug_dma_unmap_page(dev, addr, size, dir, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dma_maps_sg_attrs returns 0 on error and > 0 on success.
|
|
|
|
* It should never return a value < 0.
|
|
|
|
*/
|
|
|
|
static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
|
|
|
|
int nents, enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
int i, ents;
|
|
|
|
struct scatterlist *s;
|
|
|
|
|
|
|
|
for_each_sg(sg, s, nents, i)
|
|
|
|
kmemcheck_mark_initialized(sg_virt(s), s->length);
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
ents = ops->map_sg(dev, sg, nents, dir, attrs);
|
|
|
|
BUG_ON(ents < 0);
|
|
|
|
debug_dma_map_sg(dev, sg, nents, ents, dir);
|
|
|
|
|
|
|
|
return ents;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
|
|
|
|
int nents, enum dma_data_direction dir,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
debug_dma_unmap_sg(dev, sg, nents, dir);
|
|
|
|
if (ops->unmap_sg)
|
|
|
|
ops->unmap_sg(dev, sg, nents, dir, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline dma_addr_t dma_map_page(struct device *dev, struct page *page,
|
|
|
|
size_t offset, size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
dma_addr_t addr;
|
|
|
|
|
|
|
|
kmemcheck_mark_initialized(page_address(page) + offset, size);
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
addr = ops->map_page(dev, page, offset, size, dir, NULL);
|
|
|
|
debug_dma_map_page(dev, page, offset, size, dir, addr, false);
|
|
|
|
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_unmap_page(struct device *dev, dma_addr_t addr,
|
|
|
|
size_t size, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->unmap_page)
|
|
|
|
ops->unmap_page(dev, addr, size, dir, NULL);
|
|
|
|
debug_dma_unmap_page(dev, addr, size, dir, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
|
|
|
|
size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_single_for_cpu)
|
|
|
|
ops->sync_single_for_cpu(dev, addr, size, dir);
|
|
|
|
debug_dma_sync_single_for_cpu(dev, addr, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_sync_single_for_device(struct device *dev,
|
|
|
|
dma_addr_t addr, size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_single_for_device)
|
|
|
|
ops->sync_single_for_device(dev, addr, size, dir);
|
|
|
|
debug_dma_sync_single_for_device(dev, addr, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_sync_single_range_for_cpu(struct device *dev,
|
|
|
|
dma_addr_t addr,
|
|
|
|
unsigned long offset,
|
|
|
|
size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
const struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_single_for_cpu)
|
|
|
|
ops->sync_single_for_cpu(dev, addr + offset, size, dir);
|
|
|
|
debug_dma_sync_single_range_for_cpu(dev, addr, offset, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_sync_single_range_for_device(struct device *dev,
|
|
|
|
dma_addr_t addr,
|
|
|
|
unsigned long offset,
|
|
|
|
size_t size,
|
|
|
|
enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
const struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_single_for_device)
|
|
|
|
ops->sync_single_for_device(dev, addr + offset, size, dir);
|
|
|
|
debug_dma_sync_single_range_for_device(dev, addr, offset, size, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
|
|
|
|
int nelems, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_sg_for_cpu)
|
|
|
|
ops->sync_sg_for_cpu(dev, sg, nelems, dir);
|
|
|
|
debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
|
|
|
|
int nelems, enum dma_data_direction dir)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!valid_dma_direction(dir));
|
|
|
|
if (ops->sync_sg_for_device)
|
|
|
|
ops->sync_sg_for_device(dev, sg, nelems, dir);
|
|
|
|
debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, NULL)
|
|
|
|
#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, NULL)
|
|
|
|
#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, NULL)
|
|
|
|
#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, NULL)
|
|
|
|
|
|
|
|
extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
|
|
|
|
void *cpu_addr, dma_addr_t dma_addr, size_t size);
|
|
|
|
|
|
|
|
void *dma_common_contiguous_remap(struct page *page, size_t size,
|
|
|
|
unsigned long vm_flags,
|
|
|
|
pgprot_t prot, const void *caller);
|
|
|
|
|
|
|
|
void *dma_common_pages_remap(struct page **pages, size_t size,
|
|
|
|
unsigned long vm_flags, pgprot_t prot,
|
|
|
|
const void *caller);
|
|
|
|
void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* dma_mmap_attrs - map a coherent DMA allocation into user space
|
|
|
|
* @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
|
|
|
|
* @vma: vm_area_struct describing requested user mapping
|
|
|
|
* @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs
|
|
|
|
* @handle: device-view address returned from dma_alloc_attrs
|
|
|
|
* @size: size of memory originally requested in dma_alloc_attrs
|
|
|
|
* @attrs: attributes of mapping properties requested in dma_alloc_attrs
|
|
|
|
*
|
|
|
|
* Map a coherent DMA buffer previously allocated by dma_alloc_attrs
|
|
|
|
* into user space. The coherent DMA buffer must not be freed by the
|
|
|
|
* driver until the user space mapping has been released.
|
|
|
|
*/
|
|
|
|
static inline int
|
|
|
|
dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma, void *cpu_addr,
|
|
|
|
dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
BUG_ON(!ops);
|
|
|
|
if (ops->mmap)
|
|
|
|
return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
|
|
|
|
return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, NULL)
|
|
|
|
|
|
|
|
int
|
|
|
|
dma_common_get_sgtable(struct device *dev, struct sg_table *sgt,
|
|
|
|
void *cpu_addr, dma_addr_t dma_addr, size_t size);
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt, void *cpu_addr,
|
|
|
|
dma_addr_t dma_addr, size_t size, struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
BUG_ON(!ops);
|
|
|
|
if (ops->get_sgtable)
|
|
|
|
return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
|
|
|
|
attrs);
|
|
|
|
return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, NULL)
|
|
|
|
|
|
|
|
#ifndef arch_dma_alloc_attrs
|
|
|
|
#define arch_dma_alloc_attrs(dev, flag) (true)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void *dma_alloc_attrs(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t flag,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
void *cpu_addr;
|
|
|
|
|
|
|
|
BUG_ON(!ops);
|
|
|
|
|
|
|
|
if (dma_alloc_from_coherent(dev, size, dma_handle, &cpu_addr))
|
|
|
|
return cpu_addr;
|
|
|
|
|
|
|
|
if (!arch_dma_alloc_attrs(&dev, &flag))
|
|
|
|
return NULL;
|
|
|
|
if (!ops->alloc)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
|
|
|
|
debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
|
|
|
|
return cpu_addr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_free_attrs(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_handle,
|
|
|
|
struct dma_attrs *attrs)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
BUG_ON(!ops);
|
|
|
|
WARN_ON(irqs_disabled());
|
|
|
|
|
|
|
|
if (dma_release_from_coherent(dev, get_order(size), cpu_addr))
|
|
|
|
return;
|
|
|
|
|
2016-03-10 06:08:38 +08:00
|
|
|
if (!ops->free || !cpu_addr)
|
2016-01-21 07:02:05 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
|
|
|
|
ops->free(dev, size, cpu_addr, dma_handle, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *dma_alloc_coherent(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t flag)
|
|
|
|
{
|
|
|
|
return dma_alloc_attrs(dev, size, dma_handle, flag, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_free_coherent(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_handle)
|
|
|
|
{
|
|
|
|
return dma_free_attrs(dev, size, cpu_addr, dma_handle, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *dma_alloc_noncoherent(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp)
|
|
|
|
{
|
|
|
|
DEFINE_DMA_ATTRS(attrs);
|
|
|
|
|
|
|
|
dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
|
|
|
|
return dma_alloc_attrs(dev, size, dma_handle, gfp, &attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void dma_free_noncoherent(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_handle)
|
|
|
|
{
|
|
|
|
DEFINE_DMA_ATTRS(attrs);
|
|
|
|
|
|
|
|
dma_set_attr(DMA_ATTR_NON_CONSISTENT, &attrs);
|
|
|
|
dma_free_attrs(dev, size, cpu_addr, dma_handle, &attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
|
|
|
|
{
|
|
|
|
debug_dma_mapping_error(dev, dma_addr);
|
|
|
|
|
|
|
|
if (get_dma_ops(dev)->mapping_error)
|
|
|
|
return get_dma_ops(dev)->mapping_error(dev, dma_addr);
|
|
|
|
|
|
|
|
#ifdef DMA_ERROR_CODE
|
|
|
|
return dma_addr == DMA_ERROR_CODE;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef HAVE_ARCH_DMA_SUPPORTED
|
|
|
|
static inline int dma_supported(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
if (!ops)
|
|
|
|
return 0;
|
|
|
|
if (!ops->dma_supported)
|
|
|
|
return 1;
|
|
|
|
return ops->dma_supported(dev, mask);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_ARCH_DMA_SET_MASK
|
|
|
|
static inline int dma_set_mask(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
struct dma_map_ops *ops = get_dma_ops(dev);
|
|
|
|
|
|
|
|
if (ops->set_dma_mask)
|
|
|
|
return ops->set_dma_mask(dev, mask);
|
|
|
|
|
|
|
|
if (!dev->dma_mask || !dma_supported(dev, mask))
|
|
|
|
return -EIO;
|
|
|
|
*dev->dma_mask = mask;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-07-16 14:40:26 +08:00
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-09-12 18:42:34 +08:00
|
|
|
static inline u64 dma_get_mask(struct device *dev)
|
|
|
|
{
|
2008-09-19 01:02:05 +08:00
|
|
|
if (dev && dev->dma_mask && *dev->dma_mask)
|
2008-09-12 18:42:34 +08:00
|
|
|
return *dev->dma_mask;
|
2009-04-07 10:01:15 +08:00
|
|
|
return DMA_BIT_MASK(32);
|
2008-09-12 18:42:34 +08:00
|
|
|
}
|
|
|
|
|
2012-03-21 03:33:01 +08:00
|
|
|
#ifdef CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK
|
2010-09-23 04:04:55 +08:00
|
|
|
int dma_set_coherent_mask(struct device *dev, u64 mask);
|
|
|
|
#else
|
2010-03-11 07:23:39 +08:00
|
|
|
static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
if (!dma_supported(dev, mask))
|
|
|
|
return -EIO;
|
|
|
|
dev->coherent_dma_mask = mask;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-23 04:04:55 +08:00
|
|
|
#endif
|
2010-03-11 07:23:39 +08:00
|
|
|
|
2013-06-26 20:49:44 +08:00
|
|
|
/*
|
|
|
|
* Set both the DMA mask and the coherent DMA mask to the same thing.
|
|
|
|
* Note that we don't check the return value from dma_set_coherent_mask()
|
|
|
|
* as the DMA API guarantees that the coherent DMA mask can be set to
|
|
|
|
* the same or smaller than the streaming DMA mask.
|
|
|
|
*/
|
|
|
|
static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
int rc = dma_set_mask(dev, mask);
|
|
|
|
if (rc == 0)
|
|
|
|
dma_set_coherent_mask(dev, mask);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2013-06-27 19:21:45 +08:00
|
|
|
/*
|
|
|
|
* Similar to the above, except it deals with the case where the device
|
|
|
|
* does not have dev->dma_mask appropriately setup.
|
|
|
|
*/
|
|
|
|
static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
|
|
|
|
{
|
|
|
|
dev->dma_mask = &dev->coherent_dma_mask;
|
|
|
|
return dma_set_mask_and_coherent(dev, mask);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
extern u64 dma_get_required_mask(struct device *dev);
|
|
|
|
|
2014-08-27 22:49:10 +08:00
|
|
|
#ifndef arch_setup_dma_ops
|
2014-08-27 23:24:20 +08:00
|
|
|
static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
|
2016-04-08 01:42:05 +08:00
|
|
|
u64 size, const struct iommu_ops *iommu,
|
2014-08-27 23:24:20 +08:00
|
|
|
bool coherent) { }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef arch_teardown_dma_ops
|
|
|
|
static inline void arch_teardown_dma_ops(struct device *dev) { }
|
2014-04-24 23:30:04 +08:00
|
|
|
#endif
|
|
|
|
|
2008-02-05 14:27:55 +08:00
|
|
|
static inline unsigned int dma_get_max_seg_size(struct device *dev)
|
|
|
|
{
|
2015-11-07 08:32:51 +08:00
|
|
|
if (dev->dma_parms && dev->dma_parms->max_segment_size)
|
|
|
|
return dev->dma_parms->max_segment_size;
|
|
|
|
return SZ_64K;
|
2008-02-05 14:27:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int dma_set_max_seg_size(struct device *dev,
|
|
|
|
unsigned int size)
|
|
|
|
{
|
|
|
|
if (dev->dma_parms) {
|
|
|
|
dev->dma_parms->max_segment_size = size;
|
|
|
|
return 0;
|
2015-11-07 08:32:51 +08:00
|
|
|
}
|
|
|
|
return -EIO;
|
2008-02-05 14:27:55 +08:00
|
|
|
}
|
|
|
|
|
2008-02-05 14:28:13 +08:00
|
|
|
static inline unsigned long dma_get_seg_boundary(struct device *dev)
|
|
|
|
{
|
2015-11-07 08:32:51 +08:00
|
|
|
if (dev->dma_parms && dev->dma_parms->segment_boundary_mask)
|
|
|
|
return dev->dma_parms->segment_boundary_mask;
|
|
|
|
return DMA_BIT_MASK(32);
|
2008-02-05 14:28:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
|
|
|
|
{
|
|
|
|
if (dev->dma_parms) {
|
|
|
|
dev->dma_parms->segment_boundary_mask = mask;
|
|
|
|
return 0;
|
2015-11-07 08:32:51 +08:00
|
|
|
}
|
|
|
|
return -EIO;
|
2008-02-05 14:28:13 +08:00
|
|
|
}
|
|
|
|
|
2013-07-29 21:18:48 +08:00
|
|
|
#ifndef dma_max_pfn
|
|
|
|
static inline unsigned long dma_max_pfn(struct device *dev)
|
|
|
|
{
|
|
|
|
return *dev->dma_mask >> PAGE_SHIFT;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-11-03 04:39:33 +08:00
|
|
|
static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t flag)
|
|
|
|
{
|
2013-08-27 13:45:23 +08:00
|
|
|
void *ret = dma_alloc_coherent(dev, size, dma_handle,
|
|
|
|
flag | __GFP_ZERO);
|
2011-11-03 04:39:33 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-08-13 15:39:18 +08:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2010-08-11 09:03:22 +08:00
|
|
|
static inline int dma_get_cache_alignment(void)
|
|
|
|
{
|
|
|
|
#ifdef ARCH_DMA_MINALIGN
|
|
|
|
return ARCH_DMA_MINALIGN;
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
2010-08-13 15:39:18 +08:00
|
|
|
#endif
|
2010-08-11 09:03:22 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* flags for the coherent memory api */
|
|
|
|
#define DMA_MEMORY_MAP 0x01
|
|
|
|
#define DMA_MEMORY_IO 0x02
|
|
|
|
#define DMA_MEMORY_INCLUDES_CHILDREN 0x04
|
|
|
|
#define DMA_MEMORY_EXCLUSIVE 0x08
|
|
|
|
|
2016-01-21 07:02:09 +08:00
|
|
|
#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
|
|
|
|
int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
|
|
|
|
dma_addr_t device_addr, size_t size, int flags);
|
|
|
|
void dma_release_declared_memory(struct device *dev);
|
|
|
|
void *dma_mark_declared_memory_occupied(struct device *dev,
|
|
|
|
dma_addr_t device_addr, size_t size);
|
|
|
|
#else
|
2005-04-17 06:20:36 +08:00
|
|
|
static inline int
|
2014-05-21 06:54:22 +08:00
|
|
|
dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
|
2005-04-17 06:20:36 +08:00
|
|
|
dma_addr_t device_addr, size_t size, int flags)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
dma_release_declared_memory(struct device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *
|
|
|
|
dma_mark_declared_memory_occupied(struct device *dev,
|
|
|
|
dma_addr_t device_addr, size_t size)
|
|
|
|
{
|
|
|
|
return ERR_PTR(-EBUSY);
|
|
|
|
}
|
2016-01-21 07:02:09 +08:00
|
|
|
#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
/*
|
|
|
|
* Managed DMA API
|
|
|
|
*/
|
|
|
|
extern void *dmam_alloc_coherent(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp);
|
|
|
|
extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
|
|
|
|
dma_addr_t dma_handle);
|
|
|
|
extern void *dmam_alloc_noncoherent(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_handle, gfp_t gfp);
|
|
|
|
extern void dmam_free_noncoherent(struct device *dev, size_t size, void *vaddr,
|
|
|
|
dma_addr_t dma_handle);
|
2016-01-21 07:02:09 +08:00
|
|
|
#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
|
2014-05-21 06:54:22 +08:00
|
|
|
extern int dmam_declare_coherent_memory(struct device *dev,
|
|
|
|
phys_addr_t phys_addr,
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
dma_addr_t device_addr, size_t size,
|
|
|
|
int flags);
|
|
|
|
extern void dmam_release_declared_memory(struct device *dev);
|
2016-01-21 07:02:09 +08:00
|
|
|
#else /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
static inline int dmam_declare_coherent_memory(struct device *dev,
|
2014-05-21 06:54:22 +08:00
|
|
|
phys_addr_t phys_addr, dma_addr_t device_addr,
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
size_t size, gfp_t gfp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 06:20:36 +08:00
|
|
|
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
static inline void dmam_release_declared_memory(struct device *dev)
|
|
|
|
{
|
|
|
|
}
|
2016-01-21 07:02:09 +08:00
|
|
|
#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
static inline void *dma_alloc_wc(struct device *dev, size_t size,
|
|
|
|
dma_addr_t *dma_addr, gfp_t gfp)
|
2014-06-27 17:56:58 +08:00
|
|
|
{
|
|
|
|
DEFINE_DMA_ATTRS(attrs);
|
|
|
|
dma_set_attr(DMA_ATTR_WRITE_COMBINE, &attrs);
|
|
|
|
return dma_alloc_attrs(dev, size, dma_addr, gfp, &attrs);
|
|
|
|
}
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
#ifndef dma_alloc_writecombine
|
|
|
|
#define dma_alloc_writecombine dma_alloc_wc
|
|
|
|
#endif
|
2014-06-27 17:56:58 +08:00
|
|
|
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
static inline void dma_free_wc(struct device *dev, size_t size,
|
|
|
|
void *cpu_addr, dma_addr_t dma_addr)
|
2014-06-27 17:56:58 +08:00
|
|
|
{
|
|
|
|
DEFINE_DMA_ATTRS(attrs);
|
|
|
|
dma_set_attr(DMA_ATTR_WRITE_COMBINE, &attrs);
|
|
|
|
return dma_free_attrs(dev, size, cpu_addr, dma_addr, &attrs);
|
|
|
|
}
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
#ifndef dma_free_writecombine
|
|
|
|
#define dma_free_writecombine dma_free_wc
|
|
|
|
#endif
|
2014-06-27 17:56:58 +08:00
|
|
|
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
static inline int dma_mmap_wc(struct device *dev,
|
|
|
|
struct vm_area_struct *vma,
|
|
|
|
void *cpu_addr, dma_addr_t dma_addr,
|
|
|
|
size_t size)
|
2014-06-27 17:56:58 +08:00
|
|
|
{
|
|
|
|
DEFINE_DMA_ATTRS(attrs);
|
|
|
|
dma_set_attr(DMA_ATTR_WRITE_COMBINE, &attrs);
|
|
|
|
return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size, &attrs);
|
|
|
|
}
|
dma, mm/pat: Rename dma_*_writecombine() to dma_*_wc()
Rename dma_*_writecombine() to dma_*_wc(), so that the naming
is coherent across the various write-combining APIs. Keep the
old names for compatibility for a while, these can be removed
at a later time. A guard is left to enable backporting of the
rename, and later remove of the old mapping defines seemlessly.
Build tested successfully with allmodconfig.
The following Coccinelle SmPL patch was used for this simple
transformation:
@ rename_dma_alloc_writecombine @
expression dev, size, dma_addr, gfp;
@@
-dma_alloc_writecombine(dev, size, dma_addr, gfp)
+dma_alloc_wc(dev, size, dma_addr, gfp)
@ rename_dma_free_writecombine @
expression dev, size, cpu_addr, dma_addr;
@@
-dma_free_writecombine(dev, size, cpu_addr, dma_addr)
+dma_free_wc(dev, size, cpu_addr, dma_addr)
@ rename_dma_mmap_writecombine @
expression dev, vma, cpu_addr, dma_addr, size;
@@
-dma_mmap_writecombine(dev, vma, cpu_addr, dma_addr, size)
+dma_mmap_wc(dev, vma, cpu_addr, dma_addr, size)
We also keep the old names as compatibility helpers, and
guard against their definition to make backporting easier.
Generated-by: Coccinelle SmPL
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: airlied@linux.ie
Cc: akpm@linux-foundation.org
Cc: benh@kernel.crashing.org
Cc: bhelgaas@google.com
Cc: bp@suse.de
Cc: dan.j.williams@intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dhowells@redhat.com
Cc: julia.lawall@lip6.fr
Cc: konrad.wilk@oracle.com
Cc: linux-fbdev@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: luto@amacapital.net
Cc: mst@redhat.com
Cc: tomi.valkeinen@ti.com
Cc: toshi.kani@hp.com
Cc: vinod.koul@intel.com
Cc: xen-devel@lists.xensource.com
Link: http://lkml.kernel.org/r/1453516462-4844-1-git-send-email-mcgrof@do-not-panic.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2016-01-23 10:34:22 +08:00
|
|
|
#ifndef dma_mmap_writecombine
|
|
|
|
#define dma_mmap_writecombine dma_mmap_wc
|
|
|
|
#endif
|
2008-04-29 16:00:30 +08:00
|
|
|
|
2010-03-11 07:23:31 +08:00
|
|
|
#ifdef CONFIG_NEED_DMA_MAP_STATE
|
|
|
|
#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME
|
|
|
|
#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME
|
|
|
|
#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
|
|
|
|
#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
|
|
|
|
#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
|
|
|
|
#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
|
|
|
|
#else
|
|
|
|
#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
|
|
|
|
#define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
|
|
|
|
#define dma_unmap_addr(PTR, ADDR_NAME) (0)
|
|
|
|
#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
|
|
|
|
#define dma_unmap_len(PTR, LEN_NAME) (0)
|
|
|
|
#define dma_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
devres: device resource management
Implement device resource management, in short, devres. A device
driver can allocate arbirary size of devres data which is associated
with a release function. On driver detach, release function is
invoked on the devres data, then, devres data is freed.
devreses are typed by associated release functions. Some devreses are
better represented by single instance of the type while others need
multiple instances sharing the same release function. Both usages are
supported.
devreses can be grouped using devres group such that a device driver
can easily release acquired resources halfway through initialization
or selectively release resources (e.g. resources for port 1 out of 4
ports).
This patch adds devres core including documentation and the following
managed interfaces.
* alloc/free : devm_kzalloc(), devm_kzfree()
* IO region : devm_request_region(), devm_release_region()
* IRQ : devm_request_irq(), devm_free_irq()
* DMA : dmam_alloc_coherent(), dmam_free_coherent(),
dmam_declare_coherent_memory(), dmam_pool_create(),
dmam_pool_destroy()
* PCI : pcim_enable_device(), pcim_pin_device(), pci_is_managed()
* iomap : devm_ioport_map(), devm_ioport_unmap(), devm_ioremap(),
devm_ioremap_nocache(), devm_iounmap(), pcim_iomap_table(),
pcim_iomap(), pcim_iounmap()
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-01-20 15:00:26 +08:00
|
|
|
#endif
|