2006-11-11 13:18:39 +07:00
|
|
|
/*
|
|
|
|
* Arch specific extensions to struct device
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
2006-11-11 13:25:02 +07:00
|
|
|
#ifndef _ASM_POWERPC_DEVICE_H
|
|
|
|
#define _ASM_POWERPC_DEVICE_H
|
2006-11-11 13:18:39 +07:00
|
|
|
|
2009-08-05 02:08:25 +07:00
|
|
|
struct dma_map_ops;
|
2006-11-11 13:25:02 +07:00
|
|
|
struct device_node;
|
|
|
|
|
2010-10-27 00:35:11 +07:00
|
|
|
/*
|
|
|
|
* Arch extensions to struct device.
|
|
|
|
*
|
|
|
|
* When adding fields, consider macio_add_one_device in
|
|
|
|
* drivers/macintosh/macio_asic.c
|
|
|
|
*/
|
2006-11-11 13:25:02 +07:00
|
|
|
struct dev_archdata {
|
|
|
|
/* DMA operations on that device */
|
2009-08-05 02:08:25 +07:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-09-21 15:26:35 +07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When an iommu is in use, dma_data is used as a ptr to the base of the
|
|
|
|
* iommu_table. Otherwise, it is a simple numerical offset.
|
|
|
|
*/
|
|
|
|
union {
|
|
|
|
dma_addr_t dma_offset;
|
|
|
|
void *iommu_table_base;
|
|
|
|
} dma_data;
|
|
|
|
|
2009-08-05 02:08:22 +07:00
|
|
|
#ifdef CONFIG_SWIOTLB
|
|
|
|
dma_addr_t max_direct_dma_addr;
|
|
|
|
#endif
|
2006-11-11 13:25:02 +07:00
|
|
|
};
|
|
|
|
|
2009-07-08 18:21:31 +07:00
|
|
|
struct pdev_archdata {
|
2010-04-14 06:12:59 +07:00
|
|
|
u64 dma_mask;
|
2009-07-08 18:21:31 +07:00
|
|
|
};
|
|
|
|
|
2011-06-24 16:05:24 +07:00
|
|
|
#define ARCH_HAS_DMA_GET_REQUIRED_MASK
|
|
|
|
|
2006-11-11 13:25:02 +07:00
|
|
|
#endif /* _ASM_POWERPC_DEVICE_H */
|