Linux 3.15-rc1
[deliverable/linux.git] / drivers / iommu / omap-iommu.c
CommitLineData
a9dcad5e
HD
1/*
2 * omap iommu: tlb and pagetable primitives
3 *
c127c7dc 4 * Copyright (C) 2008-2010 Nokia Corporation
a9dcad5e
HD
5 *
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>
5a0e3ad6 16#include <linux/slab.h>
a9dcad5e
HD
17#include <linux/interrupt.h>
18#include <linux/ioport.h>
a9dcad5e 19#include <linux/platform_device.h>
f626b52d 20#include <linux/iommu.h>
c8d35c84 21#include <linux/omap-iommu.h>
f626b52d
OBC
22#include <linux/mutex.h>
23#include <linux/spinlock.h>
ed1c7de2 24#include <linux/io.h>
ebf7cda0 25#include <linux/pm_runtime.h>
3c92748d
FV
26#include <linux/of.h>
27#include <linux/of_iommu.h>
28#include <linux/of_irq.h>
a9dcad5e
HD
29
30#include <asm/cacheflush.h>
31
2ab7c848 32#include <linux/platform_data/iommu-omap.h>
a9dcad5e 33
2f7702af 34#include "omap-iopgtable.h"
ed1c7de2 35#include "omap-iommu.h"
a9dcad5e 36
37c2836c
HD
37#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
66bc8cf3
OBC
42/* bitmap of the page sizes currently supported */
43#define OMAP_IOMMU_PGSIZES (SZ_4K | SZ_64K | SZ_1M | SZ_16M)
44
f626b52d
OBC
45/**
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.
803b5277 50 * @dev: Device using this domain.
f626b52d
OBC
51 * @lock: domain lock, should be taken when attaching/detaching
52 */
53struct omap_iommu_domain {
54 u32 *pgtable;
6c32df43 55 struct omap_iommu *iommu_dev;
803b5277 56 struct device *dev;
f626b52d
OBC
57 spinlock_t lock;
58};
59
7bd9e25f
IY
60#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
a9dcad5e
HD
75/* 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/**
6c32df43 82 * omap_install_iommu_arch - Install archtecure specific iommu functions
a9dcad5e
HD
83 * @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 **/
6c32df43 88int omap_install_iommu_arch(const struct iommu_functions *ops)
a9dcad5e
HD
89{
90 if (arch_iommu)
91 return -EBUSY;
92
93 arch_iommu = ops;
94 return 0;
95}
6c32df43 96EXPORT_SYMBOL_GPL(omap_install_iommu_arch);
a9dcad5e
HD
97
98/**
6c32df43 99 * omap_uninstall_iommu_arch - Uninstall archtecure specific iommu functions
a9dcad5e
HD
100 * @ops: a pointer to architecture specific iommu functions
101 *
102 * This interface uninstalls the iommu algorighm installed previously.
103 **/
6c32df43 104void omap_uninstall_iommu_arch(const struct iommu_functions *ops)
a9dcad5e
HD
105{
106 if (arch_iommu != ops)
107 pr_err("%s: not your arch\n", __func__);
108
109 arch_iommu = NULL;
110}
6c32df43 111EXPORT_SYMBOL_GPL(omap_uninstall_iommu_arch);
a9dcad5e
HD
112
113/**
6c32df43 114 * omap_iommu_save_ctx - Save registers for pm off-mode support
fabdbca8 115 * @dev: client device
a9dcad5e 116 **/
fabdbca8 117void omap_iommu_save_ctx(struct device *dev)
a9dcad5e 118{
fabdbca8
OBC
119 struct omap_iommu *obj = dev_to_omap_iommu(dev);
120
a9dcad5e
HD
121 arch_iommu->save_ctx(obj);
122}
6c32df43 123EXPORT_SYMBOL_GPL(omap_iommu_save_ctx);
a9dcad5e
HD
124
125/**
6c32df43 126 * omap_iommu_restore_ctx - Restore registers for pm off-mode support
fabdbca8 127 * @dev: client device
a9dcad5e 128 **/
fabdbca8 129void omap_iommu_restore_ctx(struct device *dev)
a9dcad5e 130{
fabdbca8
OBC
131 struct omap_iommu *obj = dev_to_omap_iommu(dev);
132
a9dcad5e
HD
133 arch_iommu->restore_ctx(obj);
134}
6c32df43 135EXPORT_SYMBOL_GPL(omap_iommu_restore_ctx);
a9dcad5e
HD
136
137/**
6c32df43 138 * omap_iommu_arch_version - Return running iommu arch version
a9dcad5e 139 **/
6c32df43 140u32 omap_iommu_arch_version(void)
a9dcad5e
HD
141{
142 return arch_iommu->version;
143}
6c32df43 144EXPORT_SYMBOL_GPL(omap_iommu_arch_version);
a9dcad5e 145
6c32df43 146static int iommu_enable(struct omap_iommu *obj)
a9dcad5e
HD
147{
148 int err;
72b15b6a
ORL
149 struct platform_device *pdev = to_platform_device(obj->dev);
150 struct iommu_platform_data *pdata = pdev->dev.platform_data;
a9dcad5e 151
ef4815ab
MH
152 if (!arch_iommu)
153 return -ENODEV;
154
90e569c4 155 if (pdata && pdata->deassert_reset) {
72b15b6a
ORL
156 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
ebf7cda0 163 pm_runtime_get_sync(obj->dev);
a9dcad5e
HD
164
165 err = arch_iommu->enable(obj);
166
a9dcad5e
HD
167 return err;
168}
169
6c32df43 170static void iommu_disable(struct omap_iommu *obj)
a9dcad5e 171{
72b15b6a
ORL
172 struct platform_device *pdev = to_platform_device(obj->dev);
173 struct iommu_platform_data *pdata = pdev->dev.platform_data;
174
a9dcad5e
HD
175 arch_iommu->disable(obj);
176
ebf7cda0 177 pm_runtime_put_sync(obj->dev);
72b15b6a 178
90e569c4 179 if (pdata && pdata->assert_reset)
72b15b6a 180 pdata->assert_reset(pdev, pdata->reset_name);
a9dcad5e
HD
181}
182
183/*
184 * TLB operations
185 */
6c32df43 186void omap_iotlb_cr_to_e(struct cr_regs *cr, struct iotlb_entry *e)
a9dcad5e
HD
187{
188 BUG_ON(!cr || !e);
189
190 arch_iommu->cr_to_e(cr, e);
191}
6c32df43 192EXPORT_SYMBOL_GPL(omap_iotlb_cr_to_e);
a9dcad5e
HD
193
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
6c32df43 202static inline struct cr_regs *iotlb_alloc_cr(struct omap_iommu *obj,
a9dcad5e
HD
203 struct iotlb_entry *e)
204{
205 if (!e)
206 return NULL;
207
208 return arch_iommu->alloc_cr(obj, e);
209}
210
e1f23813 211static u32 iotlb_cr_to_virt(struct cr_regs *cr)
a9dcad5e
HD
212{
213 return arch_iommu->cr_to_virt(cr);
214}
a9dcad5e
HD
215
216static u32 get_iopte_attr(struct iotlb_entry *e)
217{
218 return arch_iommu->get_pte_attr(e);
219}
220
6c32df43 221static u32 iommu_report_fault(struct omap_iommu *obj, u32 *da)
a9dcad5e
HD
222{
223 return arch_iommu->fault_isr(obj, da);
224}
225
6c32df43 226static void iotlb_lock_get(struct omap_iommu *obj, struct iotlb_lock *l)
a9dcad5e
HD
227{
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
a9dcad5e
HD
235}
236
6c32df43 237static void iotlb_lock_set(struct omap_iommu *obj, struct iotlb_lock *l)
a9dcad5e
HD
238{
239 u32 val;
240
a9dcad5e
HD
241 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
6c32df43 247static void iotlb_read_cr(struct omap_iommu *obj, struct cr_regs *cr)
a9dcad5e
HD
248{
249 arch_iommu->tlb_read_cr(obj, cr);
250}
251
6c32df43 252static void iotlb_load_cr(struct omap_iommu *obj, struct cr_regs *cr)
a9dcad5e
HD
253{
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 **/
6c32df43 266static inline ssize_t iotlb_dump_cr(struct omap_iommu *obj, struct cr_regs *cr,
a9dcad5e
HD
267 char *buf)
268{
269 BUG_ON(!cr || !buf);
270
271 return arch_iommu->dump_cr(obj, cr, buf);
272}
273
37c2836c 274/* only used in iotlb iteration for-loop */
6c32df43 275static struct cr_regs __iotlb_read_cr(struct omap_iommu *obj, int n)
37c2836c
HD
276{
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
a9dcad5e
HD
288/**
289 * load_iotlb_entry - Set an iommu tlb entry
290 * @obj: target iommu
291 * @e: an iommu tlb entry info
292 **/
5da14a47 293#ifdef PREFETCH_IOTLB
6c32df43 294static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
a9dcad5e 295{
a9dcad5e
HD
296 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
ebf7cda0 303 pm_runtime_get_sync(obj->dev);
a9dcad5e 304
be6d8026
KH
305 iotlb_lock_get(obj, &l);
306 if (l.base == obj->nr_tlb_entries) {
307 dev_warn(obj->dev, "%s: preserve entries full\n", __func__);
a9dcad5e
HD
308 err = -EBUSY;
309 goto out;
310 }
be6d8026 311 if (!e->prsvd) {
37c2836c
HD
312 int i;
313 struct cr_regs tmp;
be6d8026 314
37c2836c 315 for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, tmp)
be6d8026
KH
316 if (!iotlb_cr_valid(&tmp))
317 break;
37c2836c 318
be6d8026
KH
319 if (i == obj->nr_tlb_entries) {
320 dev_dbg(obj->dev, "%s: full: no entry\n", __func__);
321 err = -EBUSY;
322 goto out;
323 }
37c2836c
HD
324
325 iotlb_lock_get(obj, &l);
be6d8026
KH
326 } else {
327 l.vict = l.base;
328 iotlb_lock_set(obj, &l);
329 }
a9dcad5e
HD
330
331 cr = iotlb_alloc_cr(obj, e);
332 if (IS_ERR(cr)) {
ebf7cda0 333 pm_runtime_put_sync(obj->dev);
a9dcad5e
HD
334 return PTR_ERR(cr);
335 }
336
337 iotlb_load_cr(obj, cr);
338 kfree(cr);
339
be6d8026
KH
340 if (e->prsvd)
341 l.base++;
a9dcad5e
HD
342 /* increment victim for next tlb load */
343 if (++l.vict == obj->nr_tlb_entries)
be6d8026 344 l.vict = l.base;
a9dcad5e
HD
345 iotlb_lock_set(obj, &l);
346out:
ebf7cda0 347 pm_runtime_put_sync(obj->dev);
a9dcad5e
HD
348 return err;
349}
a9dcad5e 350
5da14a47
OBC
351#else /* !PREFETCH_IOTLB */
352
6c32df43 353static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
5da14a47
OBC
354{
355 return 0;
356}
357
358#endif /* !PREFETCH_IOTLB */
359
6c32df43 360static int prefetch_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
5da14a47
OBC
361{
362 return load_iotlb_entry(obj, e);
363}
a9dcad5e
HD
364
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 **/
6c32df43 372static void flush_iotlb_page(struct omap_iommu *obj, u32 da)
a9dcad5e 373{
a9dcad5e 374 int i;
37c2836c 375 struct cr_regs cr;
a9dcad5e 376
ebf7cda0 377 pm_runtime_get_sync(obj->dev);
a9dcad5e 378
37c2836c 379 for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, cr) {
a9dcad5e
HD
380 u32 start;
381 size_t bytes;
382
a9dcad5e
HD
383 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);
0fa035e5 392 iotlb_load_cr(obj, &cr);
a9dcad5e
HD
393 iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY);
394 }
395 }
ebf7cda0 396 pm_runtime_put_sync(obj->dev);
a9dcad5e
HD
397
398 if (i == obj->nr_tlb_entries)
399 dev_dbg(obj->dev, "%s: no page for %08x\n", __func__, da);
400}
a9dcad5e
HD
401
402/**
403 * flush_iotlb_all - Clear all iommu tlb entries
404 * @obj: target iommu
405 **/
6c32df43 406static void flush_iotlb_all(struct omap_iommu *obj)
a9dcad5e
HD
407{
408 struct iotlb_lock l;
409
ebf7cda0 410 pm_runtime_get_sync(obj->dev);
a9dcad5e
HD
411
412 l.base = 0;
413 l.vict = 0;
414 iotlb_lock_set(obj, &l);
415
416 iommu_write_reg(obj, 1, MMU_GFLUSH);
417
ebf7cda0 418 pm_runtime_put_sync(obj->dev);
a9dcad5e 419}
ddfa975a 420
e4efd94b 421#if defined(CONFIG_OMAP_IOMMU_DEBUG) || defined(CONFIG_OMAP_IOMMU_DEBUG_MODULE)
a9dcad5e 422
6c32df43 423ssize_t omap_iommu_dump_ctx(struct omap_iommu *obj, char *buf, ssize_t bytes)
a9dcad5e 424{
a9dcad5e
HD
425 if (!obj || !buf)
426 return -EINVAL;
427
ebf7cda0 428 pm_runtime_get_sync(obj->dev);
a9dcad5e 429
14e0e679 430 bytes = arch_iommu->dump_ctx(obj, buf, bytes);
a9dcad5e 431
ebf7cda0 432 pm_runtime_put_sync(obj->dev);
a9dcad5e
HD
433
434 return bytes;
435}
6c32df43 436EXPORT_SYMBOL_GPL(omap_iommu_dump_ctx);
a9dcad5e 437
6c32df43
OBC
438static int
439__dump_tlb_entries(struct omap_iommu *obj, struct cr_regs *crs, int num)
a9dcad5e
HD
440{
441 int i;
37c2836c
HD
442 struct iotlb_lock saved;
443 struct cr_regs tmp;
a9dcad5e
HD
444 struct cr_regs *p = crs;
445
ebf7cda0 446 pm_runtime_get_sync(obj->dev);
a9dcad5e 447 iotlb_lock_get(obj, &saved);
a9dcad5e 448
37c2836c 449 for_each_iotlb_cr(obj, num, i, tmp) {
a9dcad5e
HD
450 if (!iotlb_cr_valid(&tmp))
451 continue;
a9dcad5e
HD
452 *p++ = tmp;
453 }
37c2836c 454
a9dcad5e 455 iotlb_lock_set(obj, &saved);
ebf7cda0 456 pm_runtime_put_sync(obj->dev);
a9dcad5e
HD
457
458 return p - crs;
459}
460
461/**
6c32df43 462 * omap_dump_tlb_entries - dump cr arrays to given buffer
a9dcad5e
HD
463 * @obj: target iommu
464 * @buf: output buffer
465 **/
6c32df43 466size_t omap_dump_tlb_entries(struct omap_iommu *obj, char *buf, ssize_t bytes)
a9dcad5e 467{
14e0e679 468 int i, num;
a9dcad5e
HD
469 struct cr_regs *cr;
470 char *p = buf;
471
14e0e679
HD
472 num = bytes / sizeof(*cr);
473 num = min(obj->nr_tlb_entries, num);
474
475 cr = kcalloc(num, sizeof(*cr), GFP_KERNEL);
a9dcad5e
HD
476 if (!cr)
477 return 0;
478
14e0e679
HD
479 num = __dump_tlb_entries(obj, cr, num);
480 for (i = 0; i < num; i++)
a9dcad5e
HD
481 p += iotlb_dump_cr(obj, cr + i, p);
482 kfree(cr);
483
484 return p - buf;
485}
6c32df43 486EXPORT_SYMBOL_GPL(omap_dump_tlb_entries);
a9dcad5e 487
6c32df43 488int omap_foreach_iommu_device(void *data, int (*fn)(struct device *, void *))
a9dcad5e
HD
489{
490 return driver_for_each_device(&omap_iommu_driver.driver,
491 NULL, data, fn);
492}
6c32df43 493EXPORT_SYMBOL_GPL(omap_foreach_iommu_device);
a9dcad5e
HD
494
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 */
e28045ab
ZZ
523 if (iopte)
524 kmem_cache_free(iopte_cachep, iopte);
a9dcad5e
HD
525}
526
6c32df43 527static u32 *iopte_alloc(struct omap_iommu *obj, u32 *iopgd, u32 da)
a9dcad5e
HD
528{
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
6c32df43 565static int iopgd_alloc_section(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
a9dcad5e
HD
566{
567 u32 *iopgd = iopgd_offset(obj, da);
568
4abb7617
HD
569 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
a9dcad5e
HD
575 *iopgd = (pa & IOSECTION_MASK) | prot | IOPGD_SECTION;
576 flush_iopgd_range(iopgd, iopgd);
577 return 0;
578}
579
6c32df43 580static int iopgd_alloc_super(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
a9dcad5e
HD
581{
582 u32 *iopgd = iopgd_offset(obj, da);
583 int i;
584
4abb7617
HD
585 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
a9dcad5e
HD
591 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
6c32df43 597static int iopte_alloc_page(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
a9dcad5e
HD
598{
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
6c32df43 614static int iopte_alloc_large(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
a9dcad5e
HD
615{
616 u32 *iopgd = iopgd_offset(obj, da);
617 u32 *iopte = iopte_alloc(obj, iopgd, da);
618 int i;
619
4abb7617
HD
620 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
a9dcad5e
HD
626 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
6c32df43
OBC
635static int
636iopgtable_store_entry_core(struct omap_iommu *obj, struct iotlb_entry *e)
a9dcad5e 637{
6c32df43 638 int (*fn)(struct omap_iommu *, u32, u32, u32);
a9dcad5e
HD
639 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/**
6c32df43 674 * omap_iopgtable_store_entry - Make an iommu pte entry
a9dcad5e
HD
675 * @obj: target iommu
676 * @e: an iommu tlb entry info
677 **/
6c32df43 678int omap_iopgtable_store_entry(struct omap_iommu *obj, struct iotlb_entry *e)
a9dcad5e
HD
679{
680 int err;
681
682 flush_iotlb_page(obj, e->da);
683 err = iopgtable_store_entry_core(obj, e);
a9dcad5e 684 if (!err)
5da14a47 685 prefetch_iotlb_entry(obj, e);
a9dcad5e
HD
686 return err;
687}
6c32df43 688EXPORT_SYMBOL_GPL(omap_iopgtable_store_entry);
a9dcad5e
HD
689
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 **/
e1f23813
OBC
697static void
698iopgtable_lookup_entry(struct omap_iommu *obj, u32 da, u32 **ppgd, u32 **ppte)
a9dcad5e
HD
699{
700 u32 *iopgd, *iopte = NULL;
701
702 iopgd = iopgd_offset(obj, da);
703 if (!*iopgd)
704 goto out;
705
a1a54456 706 if (iopgd_is_table(*iopgd))
a9dcad5e
HD
707 iopte = iopte_offset(iopgd, da);
708out:
709 *ppgd = iopgd;
710 *ppte = iopte;
711}
a9dcad5e 712
6c32df43 713static size_t iopgtable_clear_entry_core(struct omap_iommu *obj, u32 da)
a9dcad5e
HD
714{
715 size_t bytes;
716 u32 *iopgd = iopgd_offset(obj, da);
717 int nent = 1;
718
719 if (!*iopgd)
720 return 0;
721
a1a54456 722 if (iopgd_is_table(*iopgd)) {
a9dcad5e
HD
723 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 */
c127c7dc 730 iopte = iopte_offset(iopgd, (da & IOLARGE_MASK));
a9dcad5e
HD
731 }
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;
dcc730dc 748 if ((*iopgd & IOPGD_SUPER) == IOPGD_SUPER) {
a9dcad5e
HD
749 nent *= 16;
750 /* rewind to the 1st entry */
8d33ea58 751 iopgd = iopgd_offset(obj, (da & IOSUPER_MASK));
a9dcad5e
HD
752 }
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 **/
6c32df43 766static size_t iopgtable_clear_entry(struct omap_iommu *obj, u32 da)
a9dcad5e
HD
767{
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}
a9dcad5e 779
6c32df43 780static void iopgtable_clear_entry_all(struct omap_iommu *obj)
a9dcad5e
HD
781{
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
a1a54456 796 if (iopgd_is_table(*iopgd))
a9dcad5e
HD
797 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{
d594f1f3 813 u32 da, errs;
a9dcad5e 814 u32 *iopgd, *iopte;
6c32df43 815 struct omap_iommu *obj = data;
e7f10f02 816 struct iommu_domain *domain = obj->domain;
a9dcad5e
HD
817
818 if (!obj->refcount)
819 return IRQ_NONE;
820
d594f1f3 821 errs = iommu_report_fault(obj, &da);
c56b2ddd
LP
822 if (errs == 0)
823 return IRQ_HANDLED;
d594f1f3
DC
824
825 /* Fault callback or TLB/PTE Dynamic loading */
e7f10f02 826 if (!report_iommu_fault(domain, obj->dev, da, 0))
a9dcad5e
HD
827 return IRQ_HANDLED;
828
37b29810
HD
829 iommu_disable(obj);
830
a9dcad5e
HD
831 iopgd = iopgd_offset(obj, da);
832
a1a54456 833 if (!iopgd_is_table(*iopgd)) {
b6c2e09f
SA
834 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);
a9dcad5e
HD
836 return IRQ_NONE;
837 }
838
839 iopte = iopte_offset(iopgd, da);
840
b6c2e09f
SA
841 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);
a9dcad5e
HD
843
844 return IRQ_NONE;
845}
846
847static int device_match_by_alias(struct device *dev, void *data)
848{
6c32df43 849 struct omap_iommu *obj = to_iommu(dev);
a9dcad5e
HD
850 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/**
f626b52d 858 * omap_iommu_attach() - attach iommu device to an iommu domain
fabdbca8 859 * @name: name of target omap iommu device
f626b52d 860 * @iopgd: page table
a9dcad5e 861 **/
fabdbca8 862static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)
a9dcad5e 863{
7ee08b9e 864 int err;
fabdbca8
OBC
865 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)
7ee08b9e 872 return ERR_PTR(-ENODEV);
fabdbca8
OBC
873
874 obj = to_iommu(dev);
a9dcad5e 875
f626b52d 876 spin_lock(&obj->iommu_lock);
a9dcad5e 877
f626b52d
OBC
878 /* 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;
a9dcad5e
HD
883 }
884
f626b52d
OBC
885 obj->iopgd = iopgd;
886 err = iommu_enable(obj);
887 if (err)
888 goto err_enable;
889 flush_iotlb_all(obj);
890
7ee08b9e
SA
891 if (!try_module_get(obj->owner)) {
892 err = -ENODEV;
a9dcad5e 893 goto err_module;
7ee08b9e 894 }
a9dcad5e 895
f626b52d 896 spin_unlock(&obj->iommu_lock);
a9dcad5e
HD
897
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--;
f626b52d 906 spin_unlock(&obj->iommu_lock);
a9dcad5e
HD
907 return ERR_PTR(err);
908}
a9dcad5e
HD
909
910/**
f626b52d 911 * omap_iommu_detach - release iommu device
a9dcad5e
HD
912 * @obj: target iommu
913 **/
6c32df43 914static void omap_iommu_detach(struct omap_iommu *obj)
a9dcad5e 915{
acf9d467 916 if (!obj || IS_ERR(obj))
a9dcad5e
HD
917 return;
918
f626b52d 919 spin_lock(&obj->iommu_lock);
a9dcad5e
HD
920
921 if (--obj->refcount == 0)
922 iommu_disable(obj);
923
924 module_put(obj->owner);
925
f626b52d 926 obj->iopgd = NULL;
d594f1f3 927
f626b52d 928 spin_unlock(&obj->iommu_lock);
d594f1f3 929
a9dcad5e 930 dev_dbg(obj->dev, "%s: %s\n", __func__, obj->name);
d594f1f3 931}
d594f1f3 932
a9dcad5e
HD
933/*
934 * OMAP Device MMU(IOMMU) detection
935 */
d34d6517 936static int omap_iommu_probe(struct platform_device *pdev)
a9dcad5e
HD
937{
938 int err = -ENODEV;
a9dcad5e 939 int irq;
6c32df43 940 struct omap_iommu *obj;
a9dcad5e
HD
941 struct resource *res;
942 struct iommu_platform_data *pdata = pdev->dev.platform_data;
3c92748d 943 struct device_node *of = pdev->dev.of_node;
a9dcad5e 944
f129b3df 945 obj = devm_kzalloc(&pdev->dev, sizeof(*obj) + MMU_REG_SIZE, GFP_KERNEL);
a9dcad5e
HD
946 if (!obj)
947 return -ENOMEM;
948
3c92748d
FV
949 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;
b148d5fb
SA
965 if (of_find_property(of, "ti,iommu-bus-err-back", NULL))
966 obj->has_bus_err_back = MMU_GP_REG_BUS_ERR_BACK_EN;
3c92748d
FV
967 } 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
a9dcad5e
HD
976 obj->dev = &pdev->dev;
977 obj->ctx = (void *)obj + sizeof(*obj);
978
f626b52d 979 spin_lock_init(&obj->iommu_lock);
a9dcad5e
HD
980 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);
f129b3df
SA
985 obj->regbase = devm_ioremap_resource(obj->dev, res);
986 if (IS_ERR(obj->regbase))
987 return PTR_ERR(obj->regbase);
da4a0f76 988
a9dcad5e 989 irq = platform_get_irq(pdev, 0);
f129b3df
SA
990 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);
a9dcad5e 995 if (err < 0)
f129b3df 996 return err;
a9dcad5e
HD
997 platform_set_drvdata(pdev, obj);
998
ebf7cda0
ORL
999 pm_runtime_irq_safe(obj->dev);
1000 pm_runtime_enable(obj->dev);
1001
a9dcad5e
HD
1002 dev_info(&pdev->dev, "%s registered\n", obj->name);
1003 return 0;
a9dcad5e
HD
1004}
1005
d34d6517 1006static int omap_iommu_remove(struct platform_device *pdev)
a9dcad5e 1007{
6c32df43 1008 struct omap_iommu *obj = platform_get_drvdata(pdev);
a9dcad5e 1009
a9dcad5e 1010 iopgtable_clear_entry_all(obj);
a9dcad5e 1011
ebf7cda0
ORL
1012 pm_runtime_disable(obj->dev);
1013
a9dcad5e 1014 dev_info(&pdev->dev, "%s removed\n", obj->name);
a9dcad5e
HD
1015 return 0;
1016}
1017
3c92748d
FV
1018static 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
a9dcad5e
HD
1026static struct platform_driver omap_iommu_driver = {
1027 .probe = omap_iommu_probe,
d34d6517 1028 .remove = omap_iommu_remove,
a9dcad5e
HD
1029 .driver = {
1030 .name = "omap-iommu",
3c92748d 1031 .of_match_table = of_match_ptr(omap_iommu_of_match),
a9dcad5e
HD
1032 },
1033};
1034
1035static void iopte_cachep_ctor(void *iopte)
1036{
1037 clean_dcache_area(iopte, IOPTE_TABLE_SIZE);
1038}
1039
ed1c7de2
TL
1040static 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
f626b52d 1057static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,
5009065d 1058 phys_addr_t pa, size_t bytes, int prot)
f626b52d
OBC
1059{
1060 struct omap_iommu_domain *omap_domain = domain->priv;
6c32df43 1061 struct omap_iommu *oiommu = omap_domain->iommu_dev;
f626b52d 1062 struct device *dev = oiommu->dev;
f626b52d
OBC
1063 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
6c32df43 1080 ret = omap_iopgtable_store_entry(oiommu, &e);
b4550d41 1081 if (ret)
6c32df43 1082 dev_err(dev, "omap_iopgtable_store_entry failed: %d\n", ret);
f626b52d 1083
b4550d41 1084 return ret;
f626b52d
OBC
1085}
1086
5009065d
OBC
1087static size_t omap_iommu_unmap(struct iommu_domain *domain, unsigned long da,
1088 size_t size)
f626b52d
OBC
1089{
1090 struct omap_iommu_domain *omap_domain = domain->priv;
6c32df43 1091 struct omap_iommu *oiommu = omap_domain->iommu_dev;
f626b52d 1092 struct device *dev = oiommu->dev;
f626b52d 1093
5009065d 1094 dev_dbg(dev, "unmapping da 0x%lx size %u\n", da, size);
f626b52d 1095
5009065d 1096 return iopgtable_clear_entry(oiommu, da);
f626b52d
OBC
1097}
1098
1099static int
1100omap_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
1101{
1102 struct omap_iommu_domain *omap_domain = domain->priv;
6c32df43 1103 struct omap_iommu *oiommu;
fabdbca8 1104 struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
f626b52d
OBC
1105 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 */
fabdbca8 1117 oiommu = omap_iommu_attach(arch_data->name, omap_domain->pgtable);
f626b52d
OBC
1118 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
fabdbca8 1124 omap_domain->iommu_dev = arch_data->iommu_dev = oiommu;
803b5277 1125 omap_domain->dev = dev;
e7f10f02 1126 oiommu->domain = domain;
f626b52d
OBC
1127
1128out:
1129 spin_unlock(&omap_domain->lock);
1130 return ret;
1131}
1132
803b5277
ORL
1133static void _omap_iommu_detach_dev(struct omap_iommu_domain *omap_domain,
1134 struct device *dev)
f626b52d 1135{
fabdbca8 1136 struct omap_iommu *oiommu = dev_to_omap_iommu(dev);
803b5277 1137 struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
f626b52d
OBC
1138
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");
803b5277 1142 return;
f626b52d
OBC
1143 }
1144
1145 iopgtable_clear_entry_all(oiommu);
1146
1147 omap_iommu_detach(oiommu);
1148
fabdbca8 1149 omap_domain->iommu_dev = arch_data->iommu_dev = NULL;
803b5277
ORL
1150 omap_domain->dev = NULL;
1151}
f626b52d 1152
803b5277
ORL
1153static 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);
f626b52d
OBC
1160 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
2c6edb0c
JR
1190 domain->geometry.aperture_start = 0;
1191 domain->geometry.aperture_end = (1ULL << 32) - 1;
1192 domain->geometry.force_aperture = true;
1193
f626b52d
OBC
1194 return 0;
1195
1196fail_nomem:
1197 kfree(omap_domain);
1198out:
1199 return -ENOMEM;
1200}
1201
f626b52d
OBC
1202static 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
803b5277
ORL
1208 /*
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
f626b52d
OBC
1215 kfree(omap_domain->pgtable);
1216 kfree(omap_domain);
1217}
1218
1219static phys_addr_t omap_iommu_iova_to_phys(struct iommu_domain *domain,
bb5547ac 1220 dma_addr_t da)
f626b52d
OBC
1221{
1222 struct omap_iommu_domain *omap_domain = domain->priv;
6c32df43 1223 struct omap_iommu *oiommu = omap_domain->iommu_dev;
f626b52d
OBC
1224 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
2abfcfbc
SA
1236 dev_err(dev, "bogus pte 0x%x, da 0x%llx", *pte,
1237 (unsigned long long)da);
f626b52d
OBC
1238 } 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
2abfcfbc
SA
1244 dev_err(dev, "bogus pgd 0x%x, da 0x%llx", *pgd,
1245 (unsigned long long)da);
f626b52d
OBC
1246 }
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
07a02030
LP
1257static 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
f626b52d
OBC
1300static 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,
07a02030
LP
1309 .add_device = omap_iommu_add_device,
1310 .remove_device = omap_iommu_remove_device,
66bc8cf3 1311 .pgsize_bitmap = OMAP_IOMMU_PGSIZES,
f626b52d
OBC
1312};
1313
a9dcad5e
HD
1314static 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
a65bc64f 1326 bus_set_iommu(&platform_bus_type, &omap_iommu_ops);
f626b52d 1327
a9dcad5e
HD
1328 return platform_driver_register(&omap_iommu_driver);
1329}
435792d9
OBC
1330/* must be ready before omap3isp is probed */
1331subsys_initcall(omap_iommu_init);
a9dcad5e
HD
1332
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");
This page took 0.340323 seconds and 5 git commands to generate.