Benjamin Herrenschmidt | c6dbaef | 2006-11-11 17:18:39 +1100 | [diff] [blame] | 1 | /* |
| 2 | * Arch specific extensions to struct device |
| 3 | * |
| 4 | * This file is released under the GPLv2 |
| 5 | */ |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 6 | #ifndef _ASM_POWERPC_DEVICE_H |
| 7 | #define _ASM_POWERPC_DEVICE_H |
Benjamin Herrenschmidt | c6dbaef | 2006-11-11 17:18:39 +1100 | [diff] [blame] | 8 | |
FUJITA Tomonori | 45223c5 | 2009-08-04 19:08:25 +0000 | [diff] [blame] | 9 | struct dma_map_ops; |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 10 | struct device_node; |
| 11 | |
| 12 | struct dev_archdata { |
| 13 | /* Optional pointer to an OF device node */ |
| 14 | struct device_node *of_node; |
| 15 | |
| 16 | /* DMA operations on that device */ |
FUJITA Tomonori | 45223c5 | 2009-08-04 19:08:25 +0000 | [diff] [blame] | 17 | struct dma_map_ops *dma_ops; |
Becky Bruce | 738ef42 | 2009-09-21 08:26:35 +0000 | [diff] [blame] | 18 | |
| 19 | /* |
| 20 | * When an iommu is in use, dma_data is used as a ptr to the base of the |
| 21 | * iommu_table. Otherwise, it is a simple numerical offset. |
| 22 | */ |
| 23 | union { |
| 24 | dma_addr_t dma_offset; |
| 25 | void *iommu_table_base; |
| 26 | } dma_data; |
| 27 | |
FUJITA Tomonori | 762afb7 | 2009-08-04 19:08:22 +0000 | [diff] [blame] | 28 | #ifdef CONFIG_SWIOTLB |
| 29 | dma_addr_t max_direct_dma_addr; |
| 30 | #endif |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 31 | }; |
| 32 | |
Anton Vorontsov | 3f3b163 | 2008-11-28 09:13:23 +0000 | [diff] [blame] | 33 | static inline void dev_archdata_set_node(struct dev_archdata *ad, |
| 34 | struct device_node *np) |
| 35 | { |
| 36 | ad->of_node = np; |
| 37 | } |
| 38 | |
| 39 | static inline struct device_node * |
| 40 | dev_archdata_get_node(const struct dev_archdata *ad) |
| 41 | { |
| 42 | return ad->of_node; |
| 43 | } |
| 44 | |
Magnus Damm | d7aacad | 2009-07-08 13:21:31 +0200 | [diff] [blame] | 45 | struct pdev_archdata { |
| 46 | }; |
| 47 | |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 48 | #endif /* _ASM_POWERPC_DEVICE_H */ |