blob: bd2d4d2764ddf2cf54491d43a3c49f109ba638db [file] [log] [blame]
Joerg Roedelfc2100e2008-11-26 17:21:24 +01001/*
2 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include <linux/bug.h>
20#include <linux/types.h>
Andrew Morton60db4022009-05-06 16:03:07 -070021#include <linux/module.h>
22#include <linux/slab.h>
Joerg Roedelfc2100e2008-11-26 17:21:24 +010023#include <linux/errno.h>
24#include <linux/iommu.h>
25
26static struct iommu_ops *iommu_ops;
27
28void register_iommu(struct iommu_ops *ops)
29{
30 if (iommu_ops)
31 BUG();
32
33 iommu_ops = ops;
34}
35
Hannes Ederff2c8a42009-03-05 12:12:44 +010036bool iommu_found(void)
Joerg Roedelfc2100e2008-11-26 17:21:24 +010037{
38 return iommu_ops != NULL;
39}
40EXPORT_SYMBOL_GPL(iommu_found);
41
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040042/**
43 * iommu_set_fault_handler() - set a fault handler for an iommu domain
44 * @domain: iommu domain
45 * @handler: fault handler
Ohad Ben-Cohen0ed6d2d2011-09-27 07:36:40 -040046 *
47 * This function should be used by IOMMU users which want to be notified
48 * whenever an IOMMU fault happens.
49 *
50 * The fault handler itself should return 0 on success, and an appropriate
51 * error code otherwise.
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040052 */
53void iommu_set_fault_handler(struct iommu_domain *domain,
54 iommu_fault_handler_t handler)
55{
56 BUG_ON(!domain);
57
58 domain->handler = handler;
59}
Ohad Ben-Cohen30bd9182011-09-26 09:11:46 -040060EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
Ohad Ben-Cohen4f3f8d92011-09-13 15:25:23 -040061
Joerg Roedelfc2100e2008-11-26 17:21:24 +010062struct iommu_domain *iommu_domain_alloc(void)
63{
64 struct iommu_domain *domain;
65 int ret;
66
67 domain = kmalloc(sizeof(*domain), GFP_KERNEL);
68 if (!domain)
69 return NULL;
70
71 ret = iommu_ops->domain_init(domain);
72 if (ret)
73 goto out_free;
74
75 return domain;
76
77out_free:
78 kfree(domain);
79
80 return NULL;
81}
82EXPORT_SYMBOL_GPL(iommu_domain_alloc);
83
84void iommu_domain_free(struct iommu_domain *domain)
85{
86 iommu_ops->domain_destroy(domain);
87 kfree(domain);
88}
89EXPORT_SYMBOL_GPL(iommu_domain_free);
90
91int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
92{
93 return iommu_ops->attach_dev(domain, dev);
94}
95EXPORT_SYMBOL_GPL(iommu_attach_device);
96
97void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
98{
99 iommu_ops->detach_dev(domain, dev);
100}
101EXPORT_SYMBOL_GPL(iommu_detach_device);
102
Joerg Roedelfc2100e2008-11-26 17:21:24 +0100103phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain,
104 unsigned long iova)
105{
106 return iommu_ops->iova_to_phys(domain, iova);
107}
108EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
Sheng Yangdbb9fd82009-03-18 15:33:06 +0800109
110int iommu_domain_has_cap(struct iommu_domain *domain,
111 unsigned long cap)
112{
113 return iommu_ops->domain_has_cap(domain, cap);
114}
115EXPORT_SYMBOL_GPL(iommu_domain_has_cap);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100116
117int iommu_map(struct iommu_domain *domain, unsigned long iova,
118 phys_addr_t paddr, int gfp_order, int prot)
119{
120 unsigned long invalid_mask;
121 size_t size;
122
123 size = 0x1000UL << gfp_order;
124 invalid_mask = size - 1;
125
126 BUG_ON((iova | paddr) & invalid_mask);
127
Joerg Roedel12c73892010-01-21 11:50:28 +0100128 return iommu_ops->map(domain, iova, paddr, gfp_order, prot);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100129}
130EXPORT_SYMBOL_GPL(iommu_map);
131
132int iommu_unmap(struct iommu_domain *domain, unsigned long iova, int gfp_order)
133{
134 unsigned long invalid_mask;
135 size_t size;
136
137 size = 0x1000UL << gfp_order;
138 invalid_mask = size - 1;
139
140 BUG_ON(iova & invalid_mask);
141
Joerg Roedel12c73892010-01-21 11:50:28 +0100142 return iommu_ops->unmap(domain, iova, gfp_order);
Joerg Roedelcefc53c2010-01-08 13:35:09 +0100143}
144EXPORT_SYMBOL_GPL(iommu_unmap);