2008-02-03 14:06:26 +01:00
|
|
|
#ifndef _LINUX_DMA_MAPPING_H
|
|
|
|
#define _LINUX_DMA_MAPPING_H
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
|
|
|
|
/* These definitions mirror those in pci.h, so they can be used
|
|
|
|
* interchangeably with their PCI_ counterparts */
|
|
|
|
enum dma_data_direction {
|
|
|
|
DMA_BIDIRECTIONAL = 0,
|
|
|
|
DMA_TO_DEVICE = 1,
|
|
|
|
DMA_FROM_DEVICE = 2,
|
|
|
|
DMA_NONE = 3,
|
|
|
|
};
|
|
|
|
|
2007-10-18 12:05:07 +02:00
|
|
|
#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
|
2007-10-18 12:05:06 +02:00
|
|
|
|
2007-10-18 12:05:07 +02:00
|
|
|
/*
|
|
|
|
* NOTE: do not use the below macros in new code and do not add new definitions
|
|
|
|
* here.
|
|
|
|
*
|
|
|
|
* Instead, just open-code DMA_BIT_MASK(n) within your driver
|
|
|
|
*/
|
|
|
|
#define DMA_64BIT_MASK DMA_BIT_MASK(64)
|
2007-10-18 12:05:06 +02:00
|
|
|
#define DMA_48BIT_MASK DMA_BIT_MASK(48)
|
|
|
|
#define DMA_47BIT_MASK DMA_BIT_MASK(47)
|
|
|
|
#define DMA_40BIT_MASK DMA_BIT_MASK(40)
|
|
|
|
#define DMA_39BIT_MASK DMA_BIT_MASK(39)
|
|
|
|
#define DMA_35BIT_MASK DMA_BIT_MASK(35)
|
|
|
|
#define DMA_32BIT_MASK DMA_BIT_MASK(32)
|
|
|
|
#define DMA_31BIT_MASK DMA_BIT_MASK(31)
|
|
|
|
#define DMA_30BIT_MASK DMA_BIT_MASK(30)
|
|
|
|
#define DMA_29BIT_MASK DMA_BIT_MASK(29)
|
|
|
|
#define DMA_28BIT_MASK DMA_BIT_MASK(28)
|
|
|
|
#define DMA_24BIT_MASK DMA_BIT_MASK(24)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-10-16 10:23:55 +02:00
|
|
|
#define DMA_MASK_NONE 0x0ULL
|
|
|
|
|
2006-09-29 10:59:48 +02: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 10:23:55 +02:00
|
|
|
static inline int is_device_dma_capable(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
|
|
|
|
}
|
|
|
|
|
2007-07-16 08:40:26 +02:00
|
|
|
#ifdef CONFIG_HAS_DMA
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/dma-mapping.h>
|
2007-07-16 08:40:26 +02:00
|
|
|
#else
|
|
|
|
#include <asm-generic/dma-mapping-broken.h>
|
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Backwards compat, remove in 2.7.x */
|
|
|
|
#define dma_sync_single dma_sync_single_for_cpu
|
|
|
|
#define dma_sync_sg dma_sync_sg_for_cpu
|
|
|
|
|
|
|
|
extern u64 dma_get_required_mask(struct device *dev);
|
|
|
|
|
2008-02-05 07:27:55 +01:00
|
|
|
static inline unsigned int dma_get_max_seg_size(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->dma_parms ? dev->dma_parms->max_segment_size : 65536;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
} else
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2008-02-05 07:28:13 +01:00
|
|
|
static inline unsigned long dma_get_seg_boundary(struct device *dev)
|
|
|
|
{
|
|
|
|
return dev->dma_parms ?
|
|
|
|
dev->dma_parms->segment_boundary_mask : 0xffffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
} else
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02: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
|
|
|
|
|
|
|
|
#ifndef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
|
|
|
|
static inline int
|
|
|
|
dma_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
#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 08:00:26 +01: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);
|
|
|
|
#ifdef ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
|
|
|
|
extern int dmam_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr,
|
|
|
|
dma_addr_t device_addr, size_t size,
|
|
|
|
int flags);
|
|
|
|
extern void dmam_release_declared_memory(struct device *dev);
|
|
|
|
#else /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
|
|
|
|
static inline int dmam_declare_coherent_memory(struct device *dev,
|
|
|
|
dma_addr_t bus_addr, dma_addr_t device_addr,
|
|
|
|
size_t size, gfp_t gfp)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-17 00:20:36 +02: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 08:00:26 +01:00
|
|
|
static inline void dmam_release_declared_memory(struct device *dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY */
|
2005-04-17 00:20:36 +02: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 08:00:26 +01:00
|
|
|
#endif
|