blob: ce1b7c6283eecdfd1d4d7943a34dd60dd70eb93f [file] [log] [blame]
Tony Lindgrenc8d35c82012-11-02 12:24:03 -07001/*
2 * omap iommu: simple virtual address space management
3 *
4 * Copyright (C) 2008-2009 Nokia Corporation
5 *
6 * Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Laurent Pinchartbaaa7b52014-07-18 12:49:55 +020013#ifndef _OMAP_IOMMU_H_
14#define _OMAP_IOMMU_H_
Tony Lindgrenc8d35c82012-11-02 12:24:03 -070015
Mauro Carvalho Chehabc7f17702018-04-05 10:54:14 -040016#ifdef CONFIG_OMAP_IOMMU
Tony Lindgrenc8d35c82012-11-02 12:24:03 -070017extern void omap_iommu_save_ctx(struct device *dev);
18extern void omap_iommu_restore_ctx(struct device *dev);
Mauro Carvalho Chehabc7f17702018-04-05 10:54:14 -040019#else
20static inline void omap_iommu_save_ctx(struct device *dev) {}
21static inline void omap_iommu_restore_ctx(struct device *dev) {}
22#endif
Tony Lindgrenc8d35c82012-11-02 12:24:03 -070023
24#endif