blob: 7fcbfc498fa93c2527968191e6658be99eaa7b2d [file] [log] [blame]
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001/*
2 * omap iommu: tlb and pagetable primitives
3 *
Hiroshi DOYUc127c7d2010-02-15 10:03:32 -08004 * Copyright (C) 2008-2010 Nokia Corporation
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02005 *
6 * Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>,
7 * Paul Mundt and Toshihiro Kobayashi
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/err.h>
15#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020017#include <linux/interrupt.h>
18#include <linux/ioport.h>
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020019#include <linux/platform_device.h>
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +030020#include <linux/iommu.h>
Tony Lindgrenc8d35c82012-11-02 12:24:03 -070021#include <linux/omap-iommu.h>
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +030022#include <linux/mutex.h>
23#include <linux/spinlock.h>
Tony Lindgrened1c7de2012-11-02 12:24:06 -070024#include <linux/io.h>
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -060025#include <linux/pm_runtime.h>
Florian Vaussard3c927482014-02-28 14:42:36 -060026#include <linux/of.h>
27#include <linux/of_iommu.h>
28#include <linux/of_irq.h>
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020029
30#include <asm/cacheflush.h>
31
Tony Lindgren2ab7c842012-11-02 12:24:14 -070032#include <linux/platform_data/iommu-omap.h>
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020033
Ido Yariv2f7702a2012-11-02 12:24:00 -070034#include "omap-iopgtable.h"
Tony Lindgrened1c7de2012-11-02 12:24:06 -070035#include "omap-iommu.h"
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020036
Hiroshi DOYU37c28362010-04-27 05:37:12 +000037#define for_each_iotlb_cr(obj, n, __i, cr) \
38 for (__i = 0; \
39 (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true); \
40 __i++)
41
Ohad Ben-Cohen66bc8cf2011-11-10 11:32:27 +020042/* bitmap of the page sizes currently supported */
43#define OMAP_IOMMU_PGSIZES (SZ_4K | SZ_64K | SZ_1M | SZ_16M)
44
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +030045/**
46 * struct omap_iommu_domain - omap iommu domain
47 * @pgtable: the page table
48 * @iommu_dev: an omap iommu device attached to this domain. only a single
49 * iommu device can be attached for now.
Omar Ramirez Luna803b5272012-04-18 13:09:41 -050050 * @dev: Device using this domain.
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +030051 * @lock: domain lock, should be taken when attaching/detaching
52 */
53struct omap_iommu_domain {
54 u32 *pgtable;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +030055 struct omap_iommu *iommu_dev;
Omar Ramirez Luna803b5272012-04-18 13:09:41 -050056 struct device *dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +030057 spinlock_t lock;
58};
59
Ido Yariv7bd9e252012-11-02 12:24:09 -070060#define MMU_LOCK_BASE_SHIFT 10
61#define MMU_LOCK_BASE_MASK (0x1f << MMU_LOCK_BASE_SHIFT)
62#define MMU_LOCK_BASE(x) \
63 ((x & MMU_LOCK_BASE_MASK) >> MMU_LOCK_BASE_SHIFT)
64
65#define MMU_LOCK_VICT_SHIFT 4
66#define MMU_LOCK_VICT_MASK (0x1f << MMU_LOCK_VICT_SHIFT)
67#define MMU_LOCK_VICT(x) \
68 ((x & MMU_LOCK_VICT_MASK) >> MMU_LOCK_VICT_SHIFT)
69
70struct iotlb_lock {
71 short base;
72 short vict;
73};
74
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020075/* accommodate the difference between omap1 and omap2/3 */
76static const struct iommu_functions *arch_iommu;
77
78static struct platform_driver omap_iommu_driver;
79static struct kmem_cache *iopte_cachep;
80
81/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +030082 * omap_install_iommu_arch - Install archtecure specific iommu functions
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020083 * @ops: a pointer to architecture specific iommu functions
84 *
85 * There are several kind of iommu algorithm(tlb, pagetable) among
86 * omap series. This interface installs such an iommu algorighm.
87 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +030088int omap_install_iommu_arch(const struct iommu_functions *ops)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020089{
90 if (arch_iommu)
91 return -EBUSY;
92
93 arch_iommu = ops;
94 return 0;
95}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +030096EXPORT_SYMBOL_GPL(omap_install_iommu_arch);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +020097
98/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +030099 * omap_uninstall_iommu_arch - Uninstall archtecure specific iommu functions
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200100 * @ops: a pointer to architecture specific iommu functions
101 *
102 * This interface uninstalls the iommu algorighm installed previously.
103 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300104void omap_uninstall_iommu_arch(const struct iommu_functions *ops)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200105{
106 if (arch_iommu != ops)
107 pr_err("%s: not your arch\n", __func__);
108
109 arch_iommu = NULL;
110}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300111EXPORT_SYMBOL_GPL(omap_uninstall_iommu_arch);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200112
113/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300114 * omap_iommu_save_ctx - Save registers for pm off-mode support
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200115 * @dev: client device
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200116 **/
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200117void omap_iommu_save_ctx(struct device *dev)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200118{
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200119 struct omap_iommu *obj = dev_to_omap_iommu(dev);
120
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200121 arch_iommu->save_ctx(obj);
122}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300123EXPORT_SYMBOL_GPL(omap_iommu_save_ctx);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200124
125/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300126 * omap_iommu_restore_ctx - Restore registers for pm off-mode support
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200127 * @dev: client device
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200128 **/
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200129void omap_iommu_restore_ctx(struct device *dev)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200130{
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200131 struct omap_iommu *obj = dev_to_omap_iommu(dev);
132
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200133 arch_iommu->restore_ctx(obj);
134}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300135EXPORT_SYMBOL_GPL(omap_iommu_restore_ctx);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200136
137/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300138 * omap_iommu_arch_version - Return running iommu arch version
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200139 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300140u32 omap_iommu_arch_version(void)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200141{
142 return arch_iommu->version;
143}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300144EXPORT_SYMBOL_GPL(omap_iommu_arch_version);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200145
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300146static int iommu_enable(struct omap_iommu *obj)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200147{
148 int err;
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600149 struct platform_device *pdev = to_platform_device(obj->dev);
150 struct iommu_platform_data *pdata = pdev->dev.platform_data;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200151
Martin Hostettleref4815a2011-02-24 12:51:31 -0800152 if (!arch_iommu)
153 return -ENODEV;
154
Florian Vaussard90e569c2014-02-28 14:42:34 -0600155 if (pdata && pdata->deassert_reset) {
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600156 err = pdata->deassert_reset(pdev, pdata->reset_name);
157 if (err) {
158 dev_err(obj->dev, "deassert_reset failed: %d\n", err);
159 return err;
160 }
161 }
162
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600163 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200164
165 err = arch_iommu->enable(obj);
166
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200167 return err;
168}
169
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300170static void iommu_disable(struct omap_iommu *obj)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200171{
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600172 struct platform_device *pdev = to_platform_device(obj->dev);
173 struct iommu_platform_data *pdata = pdev->dev.platform_data;
174
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200175 arch_iommu->disable(obj);
176
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600177 pm_runtime_put_sync(obj->dev);
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600178
Florian Vaussard90e569c2014-02-28 14:42:34 -0600179 if (pdata && pdata->assert_reset)
Omar Ramirez Luna72b15b62012-11-19 19:05:50 -0600180 pdata->assert_reset(pdev, pdata->reset_name);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200181}
182
183/*
184 * TLB operations
185 */
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300186void omap_iotlb_cr_to_e(struct cr_regs *cr, struct iotlb_entry *e)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200187{
188 BUG_ON(!cr || !e);
189
190 arch_iommu->cr_to_e(cr, e);
191}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300192EXPORT_SYMBOL_GPL(omap_iotlb_cr_to_e);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200193
194static inline int iotlb_cr_valid(struct cr_regs *cr)
195{
196 if (!cr)
197 return -EINVAL;
198
199 return arch_iommu->cr_valid(cr);
200}
201
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300202static inline struct cr_regs *iotlb_alloc_cr(struct omap_iommu *obj,
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200203 struct iotlb_entry *e)
204{
205 if (!e)
206 return NULL;
207
208 return arch_iommu->alloc_cr(obj, e);
209}
210
Ohad Ben-Cohene1f23812011-08-16 14:58:14 +0300211static u32 iotlb_cr_to_virt(struct cr_regs *cr)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200212{
213 return arch_iommu->cr_to_virt(cr);
214}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200215
216static u32 get_iopte_attr(struct iotlb_entry *e)
217{
218 return arch_iommu->get_pte_attr(e);
219}
220
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300221static u32 iommu_report_fault(struct omap_iommu *obj, u32 *da)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200222{
223 return arch_iommu->fault_isr(obj, da);
224}
225
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300226static void iotlb_lock_get(struct omap_iommu *obj, struct iotlb_lock *l)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200227{
228 u32 val;
229
230 val = iommu_read_reg(obj, MMU_LOCK);
231
232 l->base = MMU_LOCK_BASE(val);
233 l->vict = MMU_LOCK_VICT(val);
234
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200235}
236
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300237static void iotlb_lock_set(struct omap_iommu *obj, struct iotlb_lock *l)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200238{
239 u32 val;
240
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200241 val = (l->base << MMU_LOCK_BASE_SHIFT);
242 val |= (l->vict << MMU_LOCK_VICT_SHIFT);
243
244 iommu_write_reg(obj, val, MMU_LOCK);
245}
246
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300247static void iotlb_read_cr(struct omap_iommu *obj, struct cr_regs *cr)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200248{
249 arch_iommu->tlb_read_cr(obj, cr);
250}
251
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300252static void iotlb_load_cr(struct omap_iommu *obj, struct cr_regs *cr)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200253{
254 arch_iommu->tlb_load_cr(obj, cr);
255
256 iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY);
257 iommu_write_reg(obj, 1, MMU_LD_TLB);
258}
259
260/**
261 * iotlb_dump_cr - Dump an iommu tlb entry into buf
262 * @obj: target iommu
263 * @cr: contents of cam and ram register
264 * @buf: output buffer
265 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300266static inline ssize_t iotlb_dump_cr(struct omap_iommu *obj, struct cr_regs *cr,
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200267 char *buf)
268{
269 BUG_ON(!cr || !buf);
270
271 return arch_iommu->dump_cr(obj, cr, buf);
272}
273
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000274/* only used in iotlb iteration for-loop */
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300275static struct cr_regs __iotlb_read_cr(struct omap_iommu *obj, int n)
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000276{
277 struct cr_regs cr;
278 struct iotlb_lock l;
279
280 iotlb_lock_get(obj, &l);
281 l.vict = n;
282 iotlb_lock_set(obj, &l);
283 iotlb_read_cr(obj, &cr);
284
285 return cr;
286}
287
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200288/**
289 * load_iotlb_entry - Set an iommu tlb entry
290 * @obj: target iommu
291 * @e: an iommu tlb entry info
292 **/
Ohad Ben-Cohen5da14a42011-08-16 15:19:10 +0300293#ifdef PREFETCH_IOTLB
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300294static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200295{
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200296 int err = 0;
297 struct iotlb_lock l;
298 struct cr_regs *cr;
299
300 if (!obj || !obj->nr_tlb_entries || !e)
301 return -EINVAL;
302
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600303 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200304
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000305 iotlb_lock_get(obj, &l);
306 if (l.base == obj->nr_tlb_entries) {
307 dev_warn(obj->dev, "%s: preserve entries full\n", __func__);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200308 err = -EBUSY;
309 goto out;
310 }
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000311 if (!e->prsvd) {
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000312 int i;
313 struct cr_regs tmp;
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000314
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000315 for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, tmp)
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000316 if (!iotlb_cr_valid(&tmp))
317 break;
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000318
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000319 if (i == obj->nr_tlb_entries) {
320 dev_dbg(obj->dev, "%s: full: no entry\n", __func__);
321 err = -EBUSY;
322 goto out;
323 }
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000324
325 iotlb_lock_get(obj, &l);
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000326 } else {
327 l.vict = l.base;
328 iotlb_lock_set(obj, &l);
329 }
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200330
331 cr = iotlb_alloc_cr(obj, e);
332 if (IS_ERR(cr)) {
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600333 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200334 return PTR_ERR(cr);
335 }
336
337 iotlb_load_cr(obj, cr);
338 kfree(cr);
339
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000340 if (e->prsvd)
341 l.base++;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200342 /* increment victim for next tlb load */
343 if (++l.vict == obj->nr_tlb_entries)
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000344 l.vict = l.base;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200345 iotlb_lock_set(obj, &l);
346out:
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600347 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200348 return err;
349}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200350
Ohad Ben-Cohen5da14a42011-08-16 15:19:10 +0300351#else /* !PREFETCH_IOTLB */
352
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300353static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
Ohad Ben-Cohen5da14a42011-08-16 15:19:10 +0300354{
355 return 0;
356}
357
358#endif /* !PREFETCH_IOTLB */
359
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300360static int prefetch_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
Ohad Ben-Cohen5da14a42011-08-16 15:19:10 +0300361{
362 return load_iotlb_entry(obj, e);
363}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200364
365/**
366 * flush_iotlb_page - Clear an iommu tlb entry
367 * @obj: target iommu
368 * @da: iommu device virtual address
369 *
370 * Clear an iommu tlb entry which includes 'da' address.
371 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300372static void flush_iotlb_page(struct omap_iommu *obj, u32 da)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200373{
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200374 int i;
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000375 struct cr_regs cr;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200376
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600377 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200378
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000379 for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, cr) {
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200380 u32 start;
381 size_t bytes;
382
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200383 if (!iotlb_cr_valid(&cr))
384 continue;
385
386 start = iotlb_cr_to_virt(&cr);
387 bytes = iopgsz_to_bytes(cr.cam & 3);
388
389 if ((start <= da) && (da < start + bytes)) {
390 dev_dbg(obj->dev, "%s: %08x<=%08x(%x)\n",
391 __func__, start, da, bytes);
Hari Kanigeri0fa035e2010-08-20 13:50:18 +0000392 iotlb_load_cr(obj, &cr);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200393 iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY);
394 }
395 }
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600396 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200397
398 if (i == obj->nr_tlb_entries)
399 dev_dbg(obj->dev, "%s: no page for %08x\n", __func__, da);
400}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200401
402/**
403 * flush_iotlb_all - Clear all iommu tlb entries
404 * @obj: target iommu
405 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300406static void flush_iotlb_all(struct omap_iommu *obj)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200407{
408 struct iotlb_lock l;
409
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600410 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200411
412 l.base = 0;
413 l.vict = 0;
414 iotlb_lock_set(obj, &l);
415
416 iommu_write_reg(obj, 1, MMU_GFLUSH);
417
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600418 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200419}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200420
Arnd Bergmanne4efd942011-10-02 14:34:05 -0400421#if defined(CONFIG_OMAP_IOMMU_DEBUG) || defined(CONFIG_OMAP_IOMMU_DEBUG_MODULE)
Kanigeri, Hariddfa9752010-05-24 02:01:51 +0000422
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300423ssize_t omap_iommu_dump_ctx(struct omap_iommu *obj, char *buf, ssize_t bytes)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200424{
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200425 if (!obj || !buf)
426 return -EINVAL;
427
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600428 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200429
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700430 bytes = arch_iommu->dump_ctx(obj, buf, bytes);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200431
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600432 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200433
434 return bytes;
435}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300436EXPORT_SYMBOL_GPL(omap_iommu_dump_ctx);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200437
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300438static int
439__dump_tlb_entries(struct omap_iommu *obj, struct cr_regs *crs, int num)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200440{
441 int i;
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000442 struct iotlb_lock saved;
443 struct cr_regs tmp;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200444 struct cr_regs *p = crs;
445
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600446 pm_runtime_get_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200447 iotlb_lock_get(obj, &saved);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200448
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000449 for_each_iotlb_cr(obj, num, i, tmp) {
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200450 if (!iotlb_cr_valid(&tmp))
451 continue;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200452 *p++ = tmp;
453 }
Hiroshi DOYU37c28362010-04-27 05:37:12 +0000454
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200455 iotlb_lock_set(obj, &saved);
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600456 pm_runtime_put_sync(obj->dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200457
458 return p - crs;
459}
460
461/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300462 * omap_dump_tlb_entries - dump cr arrays to given buffer
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200463 * @obj: target iommu
464 * @buf: output buffer
465 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300466size_t omap_dump_tlb_entries(struct omap_iommu *obj, char *buf, ssize_t bytes)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200467{
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700468 int i, num;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200469 struct cr_regs *cr;
470 char *p = buf;
471
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700472 num = bytes / sizeof(*cr);
473 num = min(obj->nr_tlb_entries, num);
474
475 cr = kcalloc(num, sizeof(*cr), GFP_KERNEL);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200476 if (!cr)
477 return 0;
478
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700479 num = __dump_tlb_entries(obj, cr, num);
480 for (i = 0; i < num; i++)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200481 p += iotlb_dump_cr(obj, cr + i, p);
482 kfree(cr);
483
484 return p - buf;
485}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300486EXPORT_SYMBOL_GPL(omap_dump_tlb_entries);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200487
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300488int omap_foreach_iommu_device(void *data, int (*fn)(struct device *, void *))
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200489{
490 return driver_for_each_device(&omap_iommu_driver.driver,
491 NULL, data, fn);
492}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300493EXPORT_SYMBOL_GPL(omap_foreach_iommu_device);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200494
495#endif /* CONFIG_OMAP_IOMMU_DEBUG_MODULE */
496
497/*
498 * H/W pagetable operations
499 */
500static void flush_iopgd_range(u32 *first, u32 *last)
501{
502 /* FIXME: L2 cache should be taken care of if it exists */
503 do {
504 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pgd"
505 : : "r" (first));
506 first += L1_CACHE_BYTES / sizeof(*first);
507 } while (first <= last);
508}
509
510static void flush_iopte_range(u32 *first, u32 *last)
511{
512 /* FIXME: L2 cache should be taken care of if it exists */
513 do {
514 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pte"
515 : : "r" (first));
516 first += L1_CACHE_BYTES / sizeof(*first);
517 } while (first <= last);
518}
519
520static void iopte_free(u32 *iopte)
521{
522 /* Note: freed iopte's must be clean ready for re-use */
Zhouyi Zhoue28045a2014-03-05 18:20:19 +0800523 if (iopte)
524 kmem_cache_free(iopte_cachep, iopte);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200525}
526
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300527static u32 *iopte_alloc(struct omap_iommu *obj, u32 *iopgd, u32 da)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200528{
529 u32 *iopte;
530
531 /* a table has already existed */
532 if (*iopgd)
533 goto pte_ready;
534
535 /*
536 * do the allocation outside the page table lock
537 */
538 spin_unlock(&obj->page_table_lock);
539 iopte = kmem_cache_zalloc(iopte_cachep, GFP_KERNEL);
540 spin_lock(&obj->page_table_lock);
541
542 if (!*iopgd) {
543 if (!iopte)
544 return ERR_PTR(-ENOMEM);
545
546 *iopgd = virt_to_phys(iopte) | IOPGD_TABLE;
547 flush_iopgd_range(iopgd, iopgd);
548
549 dev_vdbg(obj->dev, "%s: a new pte:%p\n", __func__, iopte);
550 } else {
551 /* We raced, free the reduniovant table */
552 iopte_free(iopte);
553 }
554
555pte_ready:
556 iopte = iopte_offset(iopgd, da);
557
558 dev_vdbg(obj->dev,
559 "%s: da:%08x pgd:%p *pgd:%08x pte:%p *pte:%08x\n",
560 __func__, da, iopgd, *iopgd, iopte, *iopte);
561
562 return iopte;
563}
564
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300565static int iopgd_alloc_section(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200566{
567 u32 *iopgd = iopgd_offset(obj, da);
568
Hiroshi DOYU4abb7612010-05-06 18:24:04 +0300569 if ((da | pa) & ~IOSECTION_MASK) {
570 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
571 __func__, da, pa, IOSECTION_SIZE);
572 return -EINVAL;
573 }
574
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200575 *iopgd = (pa & IOSECTION_MASK) | prot | IOPGD_SECTION;
576 flush_iopgd_range(iopgd, iopgd);
577 return 0;
578}
579
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300580static int iopgd_alloc_super(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200581{
582 u32 *iopgd = iopgd_offset(obj, da);
583 int i;
584
Hiroshi DOYU4abb7612010-05-06 18:24:04 +0300585 if ((da | pa) & ~IOSUPER_MASK) {
586 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
587 __func__, da, pa, IOSUPER_SIZE);
588 return -EINVAL;
589 }
590
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200591 for (i = 0; i < 16; i++)
592 *(iopgd + i) = (pa & IOSUPER_MASK) | prot | IOPGD_SUPER;
593 flush_iopgd_range(iopgd, iopgd + 15);
594 return 0;
595}
596
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300597static int iopte_alloc_page(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200598{
599 u32 *iopgd = iopgd_offset(obj, da);
600 u32 *iopte = iopte_alloc(obj, iopgd, da);
601
602 if (IS_ERR(iopte))
603 return PTR_ERR(iopte);
604
605 *iopte = (pa & IOPAGE_MASK) | prot | IOPTE_SMALL;
606 flush_iopte_range(iopte, iopte);
607
608 dev_vdbg(obj->dev, "%s: da:%08x pa:%08x pte:%p *pte:%08x\n",
609 __func__, da, pa, iopte, *iopte);
610
611 return 0;
612}
613
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300614static int iopte_alloc_large(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200615{
616 u32 *iopgd = iopgd_offset(obj, da);
617 u32 *iopte = iopte_alloc(obj, iopgd, da);
618 int i;
619
Hiroshi DOYU4abb7612010-05-06 18:24:04 +0300620 if ((da | pa) & ~IOLARGE_MASK) {
621 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
622 __func__, da, pa, IOLARGE_SIZE);
623 return -EINVAL;
624 }
625
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200626 if (IS_ERR(iopte))
627 return PTR_ERR(iopte);
628
629 for (i = 0; i < 16; i++)
630 *(iopte + i) = (pa & IOLARGE_MASK) | prot | IOPTE_LARGE;
631 flush_iopte_range(iopte, iopte + 15);
632 return 0;
633}
634
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300635static int
636iopgtable_store_entry_core(struct omap_iommu *obj, struct iotlb_entry *e)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200637{
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300638 int (*fn)(struct omap_iommu *, u32, u32, u32);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200639 u32 prot;
640 int err;
641
642 if (!obj || !e)
643 return -EINVAL;
644
645 switch (e->pgsz) {
646 case MMU_CAM_PGSZ_16M:
647 fn = iopgd_alloc_super;
648 break;
649 case MMU_CAM_PGSZ_1M:
650 fn = iopgd_alloc_section;
651 break;
652 case MMU_CAM_PGSZ_64K:
653 fn = iopte_alloc_large;
654 break;
655 case MMU_CAM_PGSZ_4K:
656 fn = iopte_alloc_page;
657 break;
658 default:
659 fn = NULL;
660 BUG();
661 break;
662 }
663
664 prot = get_iopte_attr(e);
665
666 spin_lock(&obj->page_table_lock);
667 err = fn(obj, e->da, e->pa, prot);
668 spin_unlock(&obj->page_table_lock);
669
670 return err;
671}
672
673/**
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300674 * omap_iopgtable_store_entry - Make an iommu pte entry
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200675 * @obj: target iommu
676 * @e: an iommu tlb entry info
677 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300678int omap_iopgtable_store_entry(struct omap_iommu *obj, struct iotlb_entry *e)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200679{
680 int err;
681
682 flush_iotlb_page(obj, e->da);
683 err = iopgtable_store_entry_core(obj, e);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200684 if (!err)
Ohad Ben-Cohen5da14a42011-08-16 15:19:10 +0300685 prefetch_iotlb_entry(obj, e);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200686 return err;
687}
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300688EXPORT_SYMBOL_GPL(omap_iopgtable_store_entry);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200689
690/**
691 * iopgtable_lookup_entry - Lookup an iommu pte entry
692 * @obj: target iommu
693 * @da: iommu device virtual address
694 * @ppgd: iommu pgd entry pointer to be returned
695 * @ppte: iommu pte entry pointer to be returned
696 **/
Ohad Ben-Cohene1f23812011-08-16 14:58:14 +0300697static void
698iopgtable_lookup_entry(struct omap_iommu *obj, u32 da, u32 **ppgd, u32 **ppte)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200699{
700 u32 *iopgd, *iopte = NULL;
701
702 iopgd = iopgd_offset(obj, da);
703 if (!*iopgd)
704 goto out;
705
Hiroshi DOYUa1a54452010-05-13 09:45:35 +0300706 if (iopgd_is_table(*iopgd))
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200707 iopte = iopte_offset(iopgd, da);
708out:
709 *ppgd = iopgd;
710 *ppte = iopte;
711}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200712
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300713static size_t iopgtable_clear_entry_core(struct omap_iommu *obj, u32 da)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200714{
715 size_t bytes;
716 u32 *iopgd = iopgd_offset(obj, da);
717 int nent = 1;
718
719 if (!*iopgd)
720 return 0;
721
Hiroshi DOYUa1a54452010-05-13 09:45:35 +0300722 if (iopgd_is_table(*iopgd)) {
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200723 int i;
724 u32 *iopte = iopte_offset(iopgd, da);
725
726 bytes = IOPTE_SIZE;
727 if (*iopte & IOPTE_LARGE) {
728 nent *= 16;
729 /* rewind to the 1st entry */
Hiroshi DOYUc127c7d2010-02-15 10:03:32 -0800730 iopte = iopte_offset(iopgd, (da & IOLARGE_MASK));
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200731 }
732 bytes *= nent;
733 memset(iopte, 0, nent * sizeof(*iopte));
734 flush_iopte_range(iopte, iopte + (nent - 1) * sizeof(*iopte));
735
736 /*
737 * do table walk to check if this table is necessary or not
738 */
739 iopte = iopte_offset(iopgd, 0);
740 for (i = 0; i < PTRS_PER_IOPTE; i++)
741 if (iopte[i])
742 goto out;
743
744 iopte_free(iopte);
745 nent = 1; /* for the next L1 entry */
746 } else {
747 bytes = IOPGD_SIZE;
Hiroshi DOYUdcc730d2009-10-22 14:46:32 -0700748 if ((*iopgd & IOPGD_SUPER) == IOPGD_SUPER) {
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200749 nent *= 16;
750 /* rewind to the 1st entry */
Hiroshi DOYU8d33ea52010-02-15 10:03:32 -0800751 iopgd = iopgd_offset(obj, (da & IOSUPER_MASK));
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200752 }
753 bytes *= nent;
754 }
755 memset(iopgd, 0, nent * sizeof(*iopgd));
756 flush_iopgd_range(iopgd, iopgd + (nent - 1) * sizeof(*iopgd));
757out:
758 return bytes;
759}
760
761/**
762 * iopgtable_clear_entry - Remove an iommu pte entry
763 * @obj: target iommu
764 * @da: iommu device virtual address
765 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300766static size_t iopgtable_clear_entry(struct omap_iommu *obj, u32 da)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200767{
768 size_t bytes;
769
770 spin_lock(&obj->page_table_lock);
771
772 bytes = iopgtable_clear_entry_core(obj, da);
773 flush_iotlb_page(obj, da);
774
775 spin_unlock(&obj->page_table_lock);
776
777 return bytes;
778}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200779
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300780static void iopgtable_clear_entry_all(struct omap_iommu *obj)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200781{
782 int i;
783
784 spin_lock(&obj->page_table_lock);
785
786 for (i = 0; i < PTRS_PER_IOPGD; i++) {
787 u32 da;
788 u32 *iopgd;
789
790 da = i << IOPGD_SHIFT;
791 iopgd = iopgd_offset(obj, da);
792
793 if (!*iopgd)
794 continue;
795
Hiroshi DOYUa1a54452010-05-13 09:45:35 +0300796 if (iopgd_is_table(*iopgd))
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200797 iopte_free(iopte_offset(iopgd, 0));
798
799 *iopgd = 0;
800 flush_iopgd_range(iopgd, iopgd);
801 }
802
803 flush_iotlb_all(obj);
804
805 spin_unlock(&obj->page_table_lock);
806}
807
808/*
809 * Device IOMMU generic operations
810 */
811static irqreturn_t iommu_fault_handler(int irq, void *data)
812{
David Cohend594f1f2011-02-16 19:35:51 +0000813 u32 da, errs;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200814 u32 *iopgd, *iopte;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300815 struct omap_iommu *obj = data;
Ohad Ben-Cohene7f10f02011-09-13 15:26:29 -0400816 struct iommu_domain *domain = obj->domain;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200817
818 if (!obj->refcount)
819 return IRQ_NONE;
820
David Cohend594f1f2011-02-16 19:35:51 +0000821 errs = iommu_report_fault(obj, &da);
Laurent Pinchartc56b2dd2011-05-10 16:56:46 +0200822 if (errs == 0)
823 return IRQ_HANDLED;
David Cohend594f1f2011-02-16 19:35:51 +0000824
825 /* Fault callback or TLB/PTE Dynamic loading */
Ohad Ben-Cohene7f10f02011-09-13 15:26:29 -0400826 if (!report_iommu_fault(domain, obj->dev, da, 0))
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200827 return IRQ_HANDLED;
828
Hiroshi DOYU37b29812010-05-24 02:01:52 +0000829 iommu_disable(obj);
830
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200831 iopgd = iopgd_offset(obj, da);
832
Hiroshi DOYUa1a54452010-05-13 09:45:35 +0300833 if (!iopgd_is_table(*iopgd)) {
Suman Annab6c2e092013-05-30 18:10:59 -0500834 dev_err(obj->dev, "%s: errs:0x%08x da:0x%08x pgd:0x%p *pgd:px%08x\n",
835 obj->name, errs, da, iopgd, *iopgd);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200836 return IRQ_NONE;
837 }
838
839 iopte = iopte_offset(iopgd, da);
840
Suman Annab6c2e092013-05-30 18:10:59 -0500841 dev_err(obj->dev, "%s: errs:0x%08x da:0x%08x pgd:0x%p *pgd:0x%08x pte:0x%p *pte:0x%08x\n",
842 obj->name, errs, da, iopgd, *iopgd, iopte, *iopte);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200843
844 return IRQ_NONE;
845}
846
847static int device_match_by_alias(struct device *dev, void *data)
848{
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300849 struct omap_iommu *obj = to_iommu(dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200850 const char *name = data;
851
852 pr_debug("%s: %s %s\n", __func__, obj->name, name);
853
854 return strcmp(obj->name, name) == 0;
855}
856
857/**
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300858 * omap_iommu_attach() - attach iommu device to an iommu domain
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200859 * @name: name of target omap iommu device
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300860 * @iopgd: page table
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200861 **/
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200862static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200863{
Suman Anna7ee08b9e2014-02-28 14:42:33 -0600864 int err;
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200865 struct device *dev;
866 struct omap_iommu *obj;
867
868 dev = driver_find_device(&omap_iommu_driver.driver, NULL,
869 (void *)name,
870 device_match_by_alias);
871 if (!dev)
Suman Anna7ee08b9e2014-02-28 14:42:33 -0600872 return ERR_PTR(-ENODEV);
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +0200873
874 obj = to_iommu(dev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200875
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300876 spin_lock(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200877
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300878 /* an iommu device can only be attached once */
879 if (++obj->refcount > 1) {
880 dev_err(dev, "%s: already attached!\n", obj->name);
881 err = -EBUSY;
882 goto err_enable;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200883 }
884
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300885 obj->iopgd = iopgd;
886 err = iommu_enable(obj);
887 if (err)
888 goto err_enable;
889 flush_iotlb_all(obj);
890
Suman Anna7ee08b9e2014-02-28 14:42:33 -0600891 if (!try_module_get(obj->owner)) {
892 err = -ENODEV;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200893 goto err_module;
Suman Anna7ee08b9e2014-02-28 14:42:33 -0600894 }
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200895
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300896 spin_unlock(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200897
898 dev_dbg(obj->dev, "%s: %s\n", __func__, obj->name);
899 return obj;
900
901err_module:
902 if (obj->refcount == 1)
903 iommu_disable(obj);
904err_enable:
905 obj->refcount--;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300906 spin_unlock(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200907 return ERR_PTR(err);
908}
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200909
910/**
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300911 * omap_iommu_detach - release iommu device
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200912 * @obj: target iommu
913 **/
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300914static void omap_iommu_detach(struct omap_iommu *obj)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200915{
Roel Kluinacf9d462010-01-08 10:29:05 -0800916 if (!obj || IS_ERR(obj))
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200917 return;
918
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300919 spin_lock(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200920
921 if (--obj->refcount == 0)
922 iommu_disable(obj);
923
924 module_put(obj->owner);
925
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300926 obj->iopgd = NULL;
927
928 spin_unlock(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200929
930 dev_dbg(obj->dev, "%s: %s\n", __func__, obj->name);
931}
David Cohend594f1f2011-02-16 19:35:51 +0000932
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200933/*
934 * OMAP Device MMU(IOMMU) detection
935 */
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -0800936static int omap_iommu_probe(struct platform_device *pdev)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200937{
938 int err = -ENODEV;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200939 int irq;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +0300940 struct omap_iommu *obj;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200941 struct resource *res;
942 struct iommu_platform_data *pdata = pdev->dev.platform_data;
Florian Vaussard3c927482014-02-28 14:42:36 -0600943 struct device_node *of = pdev->dev.of_node;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200944
Suman Annaf129b3d2014-02-28 14:42:32 -0600945 obj = devm_kzalloc(&pdev->dev, sizeof(*obj) + MMU_REG_SIZE, GFP_KERNEL);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200946 if (!obj)
947 return -ENOMEM;
948
Florian Vaussard3c927482014-02-28 14:42:36 -0600949 if (of) {
950 obj->name = dev_name(&pdev->dev);
951 obj->nr_tlb_entries = 32;
952 err = of_property_read_u32(of, "ti,#tlb-entries",
953 &obj->nr_tlb_entries);
954 if (err && err != -EINVAL)
955 return err;
956 if (obj->nr_tlb_entries != 32 && obj->nr_tlb_entries != 8)
957 return -EINVAL;
958 /*
959 * da_start and da_end are needed for omap-iovmm, so hardcode
960 * these values as used by OMAP3 ISP - the only user for
961 * omap-iovmm
962 */
963 obj->da_start = 0;
964 obj->da_end = 0xfffff000;
Suman Annab148d5f2014-02-28 14:42:37 -0600965 if (of_find_property(of, "ti,iommu-bus-err-back", NULL))
966 obj->has_bus_err_back = MMU_GP_REG_BUS_ERR_BACK_EN;
Florian Vaussard3c927482014-02-28 14:42:36 -0600967 } else {
968 obj->nr_tlb_entries = pdata->nr_tlb_entries;
969 obj->name = pdata->name;
970 obj->da_start = pdata->da_start;
971 obj->da_end = pdata->da_end;
972 }
973 if (obj->da_end <= obj->da_start)
974 return -EINVAL;
975
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200976 obj->dev = &pdev->dev;
977 obj->ctx = (void *)obj + sizeof(*obj);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200978
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +0300979 spin_lock_init(&obj->iommu_lock);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200980 mutex_init(&obj->mmap_lock);
981 spin_lock_init(&obj->page_table_lock);
982 INIT_LIST_HEAD(&obj->mmap);
983
984 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Suman Annaf129b3d2014-02-28 14:42:32 -0600985 obj->regbase = devm_ioremap_resource(obj->dev, res);
986 if (IS_ERR(obj->regbase))
987 return PTR_ERR(obj->regbase);
Aaro Koskinenda4a0f72011-03-14 12:28:32 +0000988
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200989 irq = platform_get_irq(pdev, 0);
Suman Annaf129b3d2014-02-28 14:42:32 -0600990 if (irq < 0)
991 return -ENODEV;
992
993 err = devm_request_irq(obj->dev, irq, iommu_fault_handler, IRQF_SHARED,
994 dev_name(obj->dev), obj);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200995 if (err < 0)
Suman Annaf129b3d2014-02-28 14:42:32 -0600996 return err;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +0200997 platform_set_drvdata(pdev, obj);
998
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -0600999 pm_runtime_irq_safe(obj->dev);
1000 pm_runtime_enable(obj->dev);
1001
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001002 dev_info(&pdev->dev, "%s registered\n", obj->name);
1003 return 0;
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001004}
1005
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08001006static int omap_iommu_remove(struct platform_device *pdev)
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001007{
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001008 struct omap_iommu *obj = platform_get_drvdata(pdev);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001009
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001010 iopgtable_clear_entry_all(obj);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001011
Omar Ramirez Lunaebf7cda2012-11-19 19:05:51 -06001012 pm_runtime_disable(obj->dev);
1013
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001014 dev_info(&pdev->dev, "%s removed\n", obj->name);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001015 return 0;
1016}
1017
Florian Vaussard3c927482014-02-28 14:42:36 -06001018static struct of_device_id omap_iommu_of_match[] = {
1019 { .compatible = "ti,omap2-iommu" },
1020 { .compatible = "ti,omap4-iommu" },
1021 { .compatible = "ti,dra7-iommu" },
1022 {},
1023};
1024MODULE_DEVICE_TABLE(of, omap_iommu_of_match);
1025
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001026static struct platform_driver omap_iommu_driver = {
1027 .probe = omap_iommu_probe,
Greg Kroah-Hartmand34d6512012-12-21 15:05:21 -08001028 .remove = omap_iommu_remove,
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001029 .driver = {
1030 .name = "omap-iommu",
Florian Vaussard3c927482014-02-28 14:42:36 -06001031 .of_match_table = of_match_ptr(omap_iommu_of_match),
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001032 },
1033};
1034
1035static void iopte_cachep_ctor(void *iopte)
1036{
1037 clean_dcache_area(iopte, IOPTE_TABLE_SIZE);
1038}
1039
Tony Lindgrened1c7de2012-11-02 12:24:06 -07001040static u32 iotlb_init_entry(struct iotlb_entry *e, u32 da, u32 pa,
1041 u32 flags)
1042{
1043 memset(e, 0, sizeof(*e));
1044
1045 e->da = da;
1046 e->pa = pa;
1047 e->valid = 1;
1048 /* FIXME: add OMAP1 support */
1049 e->pgsz = flags & MMU_CAM_PGSZ_MASK;
1050 e->endian = flags & MMU_RAM_ENDIAN_MASK;
1051 e->elsz = flags & MMU_RAM_ELSZ_MASK;
1052 e->mixed = flags & MMU_RAM_MIXED_MASK;
1053
1054 return iopgsz_to_bytes(e->pgsz);
1055}
1056
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001057static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001058 phys_addr_t pa, size_t bytes, int prot)
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001059{
1060 struct omap_iommu_domain *omap_domain = domain->priv;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001061 struct omap_iommu *oiommu = omap_domain->iommu_dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001062 struct device *dev = oiommu->dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001063 struct iotlb_entry e;
1064 int omap_pgsz;
1065 u32 ret, flags;
1066
1067 /* we only support mapping a single iommu page for now */
1068 omap_pgsz = bytes_to_iopgsz(bytes);
1069 if (omap_pgsz < 0) {
1070 dev_err(dev, "invalid size to map: %d\n", bytes);
1071 return -EINVAL;
1072 }
1073
1074 dev_dbg(dev, "mapping da 0x%lx to pa 0x%x size 0x%x\n", da, pa, bytes);
1075
1076 flags = omap_pgsz | prot;
1077
1078 iotlb_init_entry(&e, da, pa, flags);
1079
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001080 ret = omap_iopgtable_store_entry(oiommu, &e);
Ohad Ben-Cohenb4550d42011-09-02 13:32:31 -04001081 if (ret)
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001082 dev_err(dev, "omap_iopgtable_store_entry failed: %d\n", ret);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001083
Ohad Ben-Cohenb4550d42011-09-02 13:32:31 -04001084 return ret;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001085}
1086
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001087static size_t omap_iommu_unmap(struct iommu_domain *domain, unsigned long da,
1088 size_t size)
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001089{
1090 struct omap_iommu_domain *omap_domain = domain->priv;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001091 struct omap_iommu *oiommu = omap_domain->iommu_dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001092 struct device *dev = oiommu->dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001093
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001094 dev_dbg(dev, "unmapping da 0x%lx size %u\n", da, size);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001095
Ohad Ben-Cohen50090652011-11-10 11:32:25 +02001096 return iopgtable_clear_entry(oiommu, da);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001097}
1098
1099static int
1100omap_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
1101{
1102 struct omap_iommu_domain *omap_domain = domain->priv;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001103 struct omap_iommu *oiommu;
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001104 struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001105 int ret = 0;
1106
1107 spin_lock(&omap_domain->lock);
1108
1109 /* only a single device is supported per domain for now */
1110 if (omap_domain->iommu_dev) {
1111 dev_err(dev, "iommu domain is already attached\n");
1112 ret = -EBUSY;
1113 goto out;
1114 }
1115
1116 /* get a handle to and enable the omap iommu */
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001117 oiommu = omap_iommu_attach(arch_data->name, omap_domain->pgtable);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001118 if (IS_ERR(oiommu)) {
1119 ret = PTR_ERR(oiommu);
1120 dev_err(dev, "can't get omap iommu: %d\n", ret);
1121 goto out;
1122 }
1123
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001124 omap_domain->iommu_dev = arch_data->iommu_dev = oiommu;
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001125 omap_domain->dev = dev;
Ohad Ben-Cohene7f10f02011-09-13 15:26:29 -04001126 oiommu->domain = domain;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001127
1128out:
1129 spin_unlock(&omap_domain->lock);
1130 return ret;
1131}
1132
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001133static void _omap_iommu_detach_dev(struct omap_iommu_domain *omap_domain,
1134 struct device *dev)
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001135{
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001136 struct omap_iommu *oiommu = dev_to_omap_iommu(dev);
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001137 struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001138
1139 /* only a single device is supported per domain for now */
1140 if (omap_domain->iommu_dev != oiommu) {
1141 dev_err(dev, "invalid iommu device\n");
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001142 return;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001143 }
1144
1145 iopgtable_clear_entry_all(oiommu);
1146
1147 omap_iommu_detach(oiommu);
1148
Ohad Ben-Cohenfabdbca2011-10-11 00:18:33 +02001149 omap_domain->iommu_dev = arch_data->iommu_dev = NULL;
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001150 omap_domain->dev = NULL;
1151}
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001152
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001153static void omap_iommu_detach_dev(struct iommu_domain *domain,
1154 struct device *dev)
1155{
1156 struct omap_iommu_domain *omap_domain = domain->priv;
1157
1158 spin_lock(&omap_domain->lock);
1159 _omap_iommu_detach_dev(omap_domain, dev);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001160 spin_unlock(&omap_domain->lock);
1161}
1162
1163static int omap_iommu_domain_init(struct iommu_domain *domain)
1164{
1165 struct omap_iommu_domain *omap_domain;
1166
1167 omap_domain = kzalloc(sizeof(*omap_domain), GFP_KERNEL);
1168 if (!omap_domain) {
1169 pr_err("kzalloc failed\n");
1170 goto out;
1171 }
1172
1173 omap_domain->pgtable = kzalloc(IOPGD_TABLE_SIZE, GFP_KERNEL);
1174 if (!omap_domain->pgtable) {
1175 pr_err("kzalloc failed\n");
1176 goto fail_nomem;
1177 }
1178
1179 /*
1180 * should never fail, but please keep this around to ensure
1181 * we keep the hardware happy
1182 */
1183 BUG_ON(!IS_ALIGNED((long)omap_domain->pgtable, IOPGD_TABLE_SIZE));
1184
1185 clean_dcache_area(omap_domain->pgtable, IOPGD_TABLE_SIZE);
1186 spin_lock_init(&omap_domain->lock);
1187
1188 domain->priv = omap_domain;
1189
Joerg Roedel2c6edb02012-01-26 19:40:55 +01001190 domain->geometry.aperture_start = 0;
1191 domain->geometry.aperture_end = (1ULL << 32) - 1;
1192 domain->geometry.force_aperture = true;
1193
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001194 return 0;
1195
1196fail_nomem:
1197 kfree(omap_domain);
1198out:
1199 return -ENOMEM;
1200}
1201
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001202static void omap_iommu_domain_destroy(struct iommu_domain *domain)
1203{
1204 struct omap_iommu_domain *omap_domain = domain->priv;
1205
1206 domain->priv = NULL;
1207
Omar Ramirez Luna803b5272012-04-18 13:09:41 -05001208 /*
1209 * An iommu device is still attached
1210 * (currently, only one device can be attached) ?
1211 */
1212 if (omap_domain->iommu_dev)
1213 _omap_iommu_detach_dev(omap_domain, omap_domain->dev);
1214
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001215 kfree(omap_domain->pgtable);
1216 kfree(omap_domain);
1217}
1218
1219static phys_addr_t omap_iommu_iova_to_phys(struct iommu_domain *domain,
Varun Sethibb5547ac2013-03-29 01:23:58 +05301220 dma_addr_t da)
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001221{
1222 struct omap_iommu_domain *omap_domain = domain->priv;
Ohad Ben-Cohen6c32df42011-08-17 22:57:56 +03001223 struct omap_iommu *oiommu = omap_domain->iommu_dev;
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001224 struct device *dev = oiommu->dev;
1225 u32 *pgd, *pte;
1226 phys_addr_t ret = 0;
1227
1228 iopgtable_lookup_entry(oiommu, da, &pgd, &pte);
1229
1230 if (pte) {
1231 if (iopte_is_small(*pte))
1232 ret = omap_iommu_translate(*pte, da, IOPTE_MASK);
1233 else if (iopte_is_large(*pte))
1234 ret = omap_iommu_translate(*pte, da, IOLARGE_MASK);
1235 else
Suman Anna2abfcfb2013-05-30 18:10:38 -05001236 dev_err(dev, "bogus pte 0x%x, da 0x%llx", *pte,
1237 (unsigned long long)da);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001238 } else {
1239 if (iopgd_is_section(*pgd))
1240 ret = omap_iommu_translate(*pgd, da, IOSECTION_MASK);
1241 else if (iopgd_is_super(*pgd))
1242 ret = omap_iommu_translate(*pgd, da, IOSUPER_MASK);
1243 else
Suman Anna2abfcfb2013-05-30 18:10:38 -05001244 dev_err(dev, "bogus pgd 0x%x, da 0x%llx", *pgd,
1245 (unsigned long long)da);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001246 }
1247
1248 return ret;
1249}
1250
1251static int omap_iommu_domain_has_cap(struct iommu_domain *domain,
1252 unsigned long cap)
1253{
1254 return 0;
1255}
1256
Laurent Pinchart07a02032014-02-28 14:42:38 -06001257static int omap_iommu_add_device(struct device *dev)
1258{
1259 struct omap_iommu_arch_data *arch_data;
1260 struct device_node *np;
1261
1262 /*
1263 * Allocate the archdata iommu structure for DT-based devices.
1264 *
1265 * TODO: Simplify this when removing non-DT support completely from the
1266 * IOMMU users.
1267 */
1268 if (!dev->of_node)
1269 return 0;
1270
1271 np = of_parse_phandle(dev->of_node, "iommus", 0);
1272 if (!np)
1273 return 0;
1274
1275 arch_data = kzalloc(sizeof(*arch_data), GFP_KERNEL);
1276 if (!arch_data) {
1277 of_node_put(np);
1278 return -ENOMEM;
1279 }
1280
1281 arch_data->name = kstrdup(dev_name(dev), GFP_KERNEL);
1282 dev->archdata.iommu = arch_data;
1283
1284 of_node_put(np);
1285
1286 return 0;
1287}
1288
1289static void omap_iommu_remove_device(struct device *dev)
1290{
1291 struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
1292
1293 if (!dev->of_node || !arch_data)
1294 return;
1295
1296 kfree(arch_data->name);
1297 kfree(arch_data);
1298}
1299
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001300static struct iommu_ops omap_iommu_ops = {
1301 .domain_init = omap_iommu_domain_init,
1302 .domain_destroy = omap_iommu_domain_destroy,
1303 .attach_dev = omap_iommu_attach_dev,
1304 .detach_dev = omap_iommu_detach_dev,
1305 .map = omap_iommu_map,
1306 .unmap = omap_iommu_unmap,
1307 .iova_to_phys = omap_iommu_iova_to_phys,
1308 .domain_has_cap = omap_iommu_domain_has_cap,
Laurent Pinchart07a02032014-02-28 14:42:38 -06001309 .add_device = omap_iommu_add_device,
1310 .remove_device = omap_iommu_remove_device,
Ohad Ben-Cohen66bc8cf2011-11-10 11:32:27 +02001311 .pgsize_bitmap = OMAP_IOMMU_PGSIZES,
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001312};
1313
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001314static int __init omap_iommu_init(void)
1315{
1316 struct kmem_cache *p;
1317 const unsigned long flags = SLAB_HWCACHE_ALIGN;
1318 size_t align = 1 << 10; /* L2 pagetable alignement */
1319
1320 p = kmem_cache_create("iopte_cache", IOPTE_TABLE_SIZE, align, flags,
1321 iopte_cachep_ctor);
1322 if (!p)
1323 return -ENOMEM;
1324 iopte_cachep = p;
1325
Joerg Roedela65bc642011-09-06 17:56:07 +02001326 bus_set_iommu(&platform_bus_type, &omap_iommu_ops);
Ohad Ben-Cohenf626b522011-06-02 01:46:12 +03001327
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001328 return platform_driver_register(&omap_iommu_driver);
1329}
Ohad Ben-Cohen435792d2012-02-26 12:14:14 +02001330/* must be ready before omap3isp is probed */
1331subsys_initcall(omap_iommu_init);
Hiroshi DOYUa9dcad52009-01-26 15:13:40 +02001332
1333static void __exit omap_iommu_exit(void)
1334{
1335 kmem_cache_destroy(iopte_cachep);
1336
1337 platform_driver_unregister(&omap_iommu_driver);
1338}
1339module_exit(omap_iommu_exit);
1340
1341MODULE_DESCRIPTION("omap iommu: tlb and pagetable primitives");
1342MODULE_ALIAS("platform:omap-iommu");
1343MODULE_AUTHOR("Hiroshi DOYU, Paul Mundt and Toshihiro Kobayashi");
1344MODULE_LICENSE("GPL v2");