Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 1 | /* |
| 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 Morton | 60db402 | 2009-05-06 16:03:07 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/slab.h> |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 23 | #include <linux/errno.h> |
| 24 | #include <linux/iommu.h> |
| 25 | |
| 26 | static struct iommu_ops *iommu_ops; |
| 27 | |
| 28 | void register_iommu(struct iommu_ops *ops) |
| 29 | { |
| 30 | if (iommu_ops) |
| 31 | BUG(); |
| 32 | |
| 33 | iommu_ops = ops; |
| 34 | } |
| 35 | |
Hannes Eder | ff2c8a4 | 2009-03-05 12:12:44 +0100 | [diff] [blame] | 36 | bool iommu_found(void) |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 37 | { |
| 38 | return iommu_ops != NULL; |
| 39 | } |
| 40 | EXPORT_SYMBOL_GPL(iommu_found); |
| 41 | |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 42 | /** |
| 43 | * iommu_set_fault_handler() - set a fault handler for an iommu domain |
| 44 | * @domain: iommu domain |
| 45 | * @handler: fault handler |
| 46 | */ |
| 47 | void iommu_set_fault_handler(struct iommu_domain *domain, |
| 48 | iommu_fault_handler_t handler) |
| 49 | { |
| 50 | BUG_ON(!domain); |
| 51 | |
| 52 | domain->handler = handler; |
| 53 | } |
Ohad Ben-Cohen | 30bd918 | 2011-09-26 09:11:46 -0400 | [diff] [blame^] | 54 | EXPORT_SYMBOL_GPL(iommu_set_fault_handler); |
Ohad Ben-Cohen | 4f3f8d9 | 2011-09-13 15:25:23 -0400 | [diff] [blame] | 55 | |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 56 | struct iommu_domain *iommu_domain_alloc(void) |
| 57 | { |
| 58 | struct iommu_domain *domain; |
| 59 | int ret; |
| 60 | |
| 61 | domain = kmalloc(sizeof(*domain), GFP_KERNEL); |
| 62 | if (!domain) |
| 63 | return NULL; |
| 64 | |
| 65 | ret = iommu_ops->domain_init(domain); |
| 66 | if (ret) |
| 67 | goto out_free; |
| 68 | |
| 69 | return domain; |
| 70 | |
| 71 | out_free: |
| 72 | kfree(domain); |
| 73 | |
| 74 | return NULL; |
| 75 | } |
| 76 | EXPORT_SYMBOL_GPL(iommu_domain_alloc); |
| 77 | |
| 78 | void iommu_domain_free(struct iommu_domain *domain) |
| 79 | { |
| 80 | iommu_ops->domain_destroy(domain); |
| 81 | kfree(domain); |
| 82 | } |
| 83 | EXPORT_SYMBOL_GPL(iommu_domain_free); |
| 84 | |
| 85 | int iommu_attach_device(struct iommu_domain *domain, struct device *dev) |
| 86 | { |
| 87 | return iommu_ops->attach_dev(domain, dev); |
| 88 | } |
| 89 | EXPORT_SYMBOL_GPL(iommu_attach_device); |
| 90 | |
| 91 | void iommu_detach_device(struct iommu_domain *domain, struct device *dev) |
| 92 | { |
| 93 | iommu_ops->detach_dev(domain, dev); |
| 94 | } |
| 95 | EXPORT_SYMBOL_GPL(iommu_detach_device); |
| 96 | |
Joerg Roedel | fc2100e | 2008-11-26 17:21:24 +0100 | [diff] [blame] | 97 | phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, |
| 98 | unsigned long iova) |
| 99 | { |
| 100 | return iommu_ops->iova_to_phys(domain, iova); |
| 101 | } |
| 102 | EXPORT_SYMBOL_GPL(iommu_iova_to_phys); |
Sheng Yang | dbb9fd8 | 2009-03-18 15:33:06 +0800 | [diff] [blame] | 103 | |
| 104 | int iommu_domain_has_cap(struct iommu_domain *domain, |
| 105 | unsigned long cap) |
| 106 | { |
| 107 | return iommu_ops->domain_has_cap(domain, cap); |
| 108 | } |
| 109 | EXPORT_SYMBOL_GPL(iommu_domain_has_cap); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 110 | |
| 111 | int iommu_map(struct iommu_domain *domain, unsigned long iova, |
| 112 | phys_addr_t paddr, int gfp_order, int prot) |
| 113 | { |
| 114 | unsigned long invalid_mask; |
| 115 | size_t size; |
| 116 | |
| 117 | size = 0x1000UL << gfp_order; |
| 118 | invalid_mask = size - 1; |
| 119 | |
| 120 | BUG_ON((iova | paddr) & invalid_mask); |
| 121 | |
Joerg Roedel | 12c7389 | 2010-01-21 11:50:28 +0100 | [diff] [blame] | 122 | return iommu_ops->map(domain, iova, paddr, gfp_order, prot); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 123 | } |
| 124 | EXPORT_SYMBOL_GPL(iommu_map); |
| 125 | |
| 126 | int iommu_unmap(struct iommu_domain *domain, unsigned long iova, int gfp_order) |
| 127 | { |
| 128 | unsigned long invalid_mask; |
| 129 | size_t size; |
| 130 | |
| 131 | size = 0x1000UL << gfp_order; |
| 132 | invalid_mask = size - 1; |
| 133 | |
| 134 | BUG_ON(iova & invalid_mask); |
| 135 | |
Joerg Roedel | 12c7389 | 2010-01-21 11:50:28 +0100 | [diff] [blame] | 136 | return iommu_ops->unmap(domain, iova, gfp_order); |
Joerg Roedel | cefc53c | 2010-01-08 13:35:09 +0100 | [diff] [blame] | 137 | } |
| 138 | EXPORT_SYMBOL_GPL(iommu_unmap); |