block: Don't revalidate bdev of hidden gendisk
[linux/fpc-iii.git] / drivers / parisc / iommu.h
blob240059cd818541f71380d1dc5b52ebc95495862c
1 #ifndef _IOMMU_H
2 #define _IOMMU_H 1
4 #include <linux/pci.h>
6 struct parisc_device;
7 struct ioc;
9 static inline struct pci_hba_data *parisc_walk_tree(struct device *dev)
11 struct device *otherdev;
13 if (likely(dev->platform_data))
14 return dev->platform_data;
16 /* OK, just traverse the bus to find it */
17 for (otherdev = dev->parent;
18 otherdev;
19 otherdev = otherdev->parent) {
20 if (otherdev->platform_data) {
21 dev->platform_data = otherdev->platform_data;
22 break;
26 return dev->platform_data;
29 static inline struct ioc *GET_IOC(struct device *dev)
31 struct pci_hba_data *pdata = parisc_walk_tree(dev);
33 if (!pdata)
34 return NULL;
35 return pdata->iommu;
38 #ifdef CONFIG_IOMMU_CCIO
39 void *ccio_get_iommu(const struct parisc_device *dev);
40 int ccio_request_resource(const struct parisc_device *dev,
41 struct resource *res);
42 int ccio_allocate_resource(const struct parisc_device *dev,
43 struct resource *res, unsigned long size,
44 unsigned long min, unsigned long max, unsigned long align);
45 #else /* !CONFIG_IOMMU_CCIO */
46 #define ccio_get_iommu(dev) NULL
47 #define ccio_request_resource(dev, res) insert_resource(&iomem_resource, res)
48 #define ccio_allocate_resource(dev, res, size, min, max, align) \
49 allocate_resource(&iomem_resource, res, size, min, max, \
50 align, NULL, NULL)
51 #endif /* !CONFIG_IOMMU_CCIO */
53 void *sba_get_iommu(struct parisc_device *dev);
55 #endif /* _IOMMU_H */