blob: 6c46adf449ee54fc3ed75a26408fbe6ab973e666 [file] [log] [blame]
Mark Kettenis40dbf032021-10-23 16:58:01 +02001#ifndef _IOMMU_H
2#define _IOMMU_H
3
4struct udevice;
5
6#if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) && \
7 CONFIG_IS_ENABLED(IOMMU)
8int dev_iommu_enable(struct udevice *dev);
9#else
10static inline int dev_iommu_enable(struct udevice *dev)
11{
12 return 0;
13}
14#endif
15
16#endif