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