2006-11-11 14:18:39 +08:00
|
|
|
/*
|
|
|
|
* Arch specific extensions to struct device
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2
|
|
|
|
*/
|
2006-11-11 14:25:02 +08:00
|
|
|
#ifndef _ASM_POWERPC_DEVICE_H
|
|
|
|
#define _ASM_POWERPC_DEVICE_H
|
2006-11-11 14:18:39 +08:00
|
|
|
|
2009-08-05 03:08:25 +08:00
|
|
|
struct dma_map_ops;
|
2006-11-11 14:25:02 +08:00
|
|
|
struct device_node;
|
|
|
|
|
|
|
|
struct dev_archdata {
|
|
|
|
/* DMA operations on that device */
|
2009-08-05 03:08:25 +08:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-09-21 16:26:35 +08: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 03:08:22 +08:00
|
|
|
#ifdef CONFIG_SWIOTLB
|
|
|
|
dma_addr_t max_direct_dma_addr;
|
|
|
|
#endif
|
2006-11-11 14:25:02 +08:00
|
|
|
};
|
|
|
|
|
2009-07-08 19:21:31 +08:00
|
|
|
struct pdev_archdata {
|
2010-04-14 07:12:59 +08:00
|
|
|
u64 dma_mask;
|
2009-07-08 19:21:31 +08:00
|
|
|
};
|
|
|
|
|
2006-11-11 14:25:02 +08:00
|
|
|
#endif /* _ASM_POWERPC_DEVICE_H */
|