]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/iommu/omap-iommu.c
iommu/omap: Fix iommu archdata name for DT-based devices
[karo-tx-linux.git] / drivers / iommu / omap-iommu.c
1 /*
2  * omap iommu: tlb and pagetable primitives
3  *
4  * Copyright (C) 2008-2010 Nokia Corporation
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>
16 #include <linux/slab.h>
17 #include <linux/interrupt.h>
18 #include <linux/ioport.h>
19 #include <linux/platform_device.h>
20 #include <linux/iommu.h>
21 #include <linux/omap-iommu.h>
22 #include <linux/mutex.h>
23 #include <linux/spinlock.h>
24 #include <linux/io.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/of.h>
27 #include <linux/of_iommu.h>
28 #include <linux/of_irq.h>
29 #include <linux/of_platform.h>
30
31 #include <asm/cacheflush.h>
32
33 #include <linux/platform_data/iommu-omap.h>
34
35 #include "omap-iopgtable.h"
36 #include "omap-iommu.h"
37
38 #define to_iommu(dev)                                                   \
39         ((struct omap_iommu *)platform_get_drvdata(to_platform_device(dev)))
40
41 #define for_each_iotlb_cr(obj, n, __i, cr)                              \
42         for (__i = 0;                                                   \
43              (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true);   \
44              __i++)
45
46 /* bitmap of the page sizes currently supported */
47 #define OMAP_IOMMU_PGSIZES      (SZ_4K | SZ_64K | SZ_1M | SZ_16M)
48
49 /**
50  * struct omap_iommu_domain - omap iommu domain
51  * @pgtable:    the page table
52  * @iommu_dev:  an omap iommu device attached to this domain. only a single
53  *              iommu device can be attached for now.
54  * @dev:        Device using this domain.
55  * @lock:       domain lock, should be taken when attaching/detaching
56  */
57 struct omap_iommu_domain {
58         u32 *pgtable;
59         struct omap_iommu *iommu_dev;
60         struct device *dev;
61         spinlock_t lock;
62 };
63
64 #define MMU_LOCK_BASE_SHIFT     10
65 #define MMU_LOCK_BASE_MASK      (0x1f << MMU_LOCK_BASE_SHIFT)
66 #define MMU_LOCK_BASE(x)        \
67         ((x & MMU_LOCK_BASE_MASK) >> MMU_LOCK_BASE_SHIFT)
68
69 #define MMU_LOCK_VICT_SHIFT     4
70 #define MMU_LOCK_VICT_MASK      (0x1f << MMU_LOCK_VICT_SHIFT)
71 #define MMU_LOCK_VICT(x)        \
72         ((x & MMU_LOCK_VICT_MASK) >> MMU_LOCK_VICT_SHIFT)
73
74 struct iotlb_lock {
75         short base;
76         short vict;
77 };
78
79 /* accommodate the difference between omap1 and omap2/3 */
80 static const struct iommu_functions *arch_iommu;
81
82 static struct platform_driver omap_iommu_driver;
83 static struct kmem_cache *iopte_cachep;
84
85 /**
86  * omap_install_iommu_arch - Install archtecure specific iommu functions
87  * @ops:        a pointer to architecture specific iommu functions
88  *
89  * There are several kind of iommu algorithm(tlb, pagetable) among
90  * omap series. This interface installs such an iommu algorighm.
91  **/
92 int omap_install_iommu_arch(const struct iommu_functions *ops)
93 {
94         if (arch_iommu)
95                 return -EBUSY;
96
97         arch_iommu = ops;
98         return 0;
99 }
100 EXPORT_SYMBOL_GPL(omap_install_iommu_arch);
101
102 /**
103  * omap_uninstall_iommu_arch - Uninstall archtecure specific iommu functions
104  * @ops:        a pointer to architecture specific iommu functions
105  *
106  * This interface uninstalls the iommu algorighm installed previously.
107  **/
108 void omap_uninstall_iommu_arch(const struct iommu_functions *ops)
109 {
110         if (arch_iommu != ops)
111                 pr_err("%s: not your arch\n", __func__);
112
113         arch_iommu = NULL;
114 }
115 EXPORT_SYMBOL_GPL(omap_uninstall_iommu_arch);
116
117 /**
118  * omap_iommu_save_ctx - Save registers for pm off-mode support
119  * @dev:        client device
120  **/
121 void omap_iommu_save_ctx(struct device *dev)
122 {
123         struct omap_iommu *obj = dev_to_omap_iommu(dev);
124
125         arch_iommu->save_ctx(obj);
126 }
127 EXPORT_SYMBOL_GPL(omap_iommu_save_ctx);
128
129 /**
130  * omap_iommu_restore_ctx - Restore registers for pm off-mode support
131  * @dev:        client device
132  **/
133 void omap_iommu_restore_ctx(struct device *dev)
134 {
135         struct omap_iommu *obj = dev_to_omap_iommu(dev);
136
137         arch_iommu->restore_ctx(obj);
138 }
139 EXPORT_SYMBOL_GPL(omap_iommu_restore_ctx);
140
141 /**
142  * omap_iommu_arch_version - Return running iommu arch version
143  **/
144 u32 omap_iommu_arch_version(void)
145 {
146         return arch_iommu->version;
147 }
148 EXPORT_SYMBOL_GPL(omap_iommu_arch_version);
149
150 static int iommu_enable(struct omap_iommu *obj)
151 {
152         int err;
153         struct platform_device *pdev = to_platform_device(obj->dev);
154         struct iommu_platform_data *pdata = pdev->dev.platform_data;
155
156         if (!arch_iommu)
157                 return -ENODEV;
158
159         if (pdata && pdata->deassert_reset) {
160                 err = pdata->deassert_reset(pdev, pdata->reset_name);
161                 if (err) {
162                         dev_err(obj->dev, "deassert_reset failed: %d\n", err);
163                         return err;
164                 }
165         }
166
167         pm_runtime_get_sync(obj->dev);
168
169         err = arch_iommu->enable(obj);
170
171         return err;
172 }
173
174 static void iommu_disable(struct omap_iommu *obj)
175 {
176         struct platform_device *pdev = to_platform_device(obj->dev);
177         struct iommu_platform_data *pdata = pdev->dev.platform_data;
178
179         arch_iommu->disable(obj);
180
181         pm_runtime_put_sync(obj->dev);
182
183         if (pdata && pdata->assert_reset)
184                 pdata->assert_reset(pdev, pdata->reset_name);
185 }
186
187 /*
188  *      TLB operations
189  */
190 void omap_iotlb_cr_to_e(struct cr_regs *cr, struct iotlb_entry *e)
191 {
192         BUG_ON(!cr || !e);
193
194         arch_iommu->cr_to_e(cr, e);
195 }
196 EXPORT_SYMBOL_GPL(omap_iotlb_cr_to_e);
197
198 static inline int iotlb_cr_valid(struct cr_regs *cr)
199 {
200         if (!cr)
201                 return -EINVAL;
202
203         return arch_iommu->cr_valid(cr);
204 }
205
206 static inline struct cr_regs *iotlb_alloc_cr(struct omap_iommu *obj,
207                                              struct iotlb_entry *e)
208 {
209         if (!e)
210                 return NULL;
211
212         return arch_iommu->alloc_cr(obj, e);
213 }
214
215 static u32 iotlb_cr_to_virt(struct cr_regs *cr)
216 {
217         return arch_iommu->cr_to_virt(cr);
218 }
219
220 static u32 get_iopte_attr(struct iotlb_entry *e)
221 {
222         return arch_iommu->get_pte_attr(e);
223 }
224
225 static u32 iommu_report_fault(struct omap_iommu *obj, u32 *da)
226 {
227         return arch_iommu->fault_isr(obj, da);
228 }
229
230 static void iotlb_lock_get(struct omap_iommu *obj, struct iotlb_lock *l)
231 {
232         u32 val;
233
234         val = iommu_read_reg(obj, MMU_LOCK);
235
236         l->base = MMU_LOCK_BASE(val);
237         l->vict = MMU_LOCK_VICT(val);
238
239 }
240
241 static void iotlb_lock_set(struct omap_iommu *obj, struct iotlb_lock *l)
242 {
243         u32 val;
244
245         val = (l->base << MMU_LOCK_BASE_SHIFT);
246         val |= (l->vict << MMU_LOCK_VICT_SHIFT);
247
248         iommu_write_reg(obj, val, MMU_LOCK);
249 }
250
251 static void iotlb_read_cr(struct omap_iommu *obj, struct cr_regs *cr)
252 {
253         arch_iommu->tlb_read_cr(obj, cr);
254 }
255
256 static void iotlb_load_cr(struct omap_iommu *obj, struct cr_regs *cr)
257 {
258         arch_iommu->tlb_load_cr(obj, cr);
259
260         iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY);
261         iommu_write_reg(obj, 1, MMU_LD_TLB);
262 }
263
264 /**
265  * iotlb_dump_cr - Dump an iommu tlb entry into buf
266  * @obj:        target iommu
267  * @cr:         contents of cam and ram register
268  * @buf:        output buffer
269  **/
270 static inline ssize_t iotlb_dump_cr(struct omap_iommu *obj, struct cr_regs *cr,
271                                     char *buf)
272 {
273         BUG_ON(!cr || !buf);
274
275         return arch_iommu->dump_cr(obj, cr, buf);
276 }
277
278 /* only used in iotlb iteration for-loop */
279 static struct cr_regs __iotlb_read_cr(struct omap_iommu *obj, int n)
280 {
281         struct cr_regs cr;
282         struct iotlb_lock l;
283
284         iotlb_lock_get(obj, &l);
285         l.vict = n;
286         iotlb_lock_set(obj, &l);
287         iotlb_read_cr(obj, &cr);
288
289         return cr;
290 }
291
292 /**
293  * load_iotlb_entry - Set an iommu tlb entry
294  * @obj:        target iommu
295  * @e:          an iommu tlb entry info
296  **/
297 #ifdef PREFETCH_IOTLB
298 static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
299 {
300         int err = 0;
301         struct iotlb_lock l;
302         struct cr_regs *cr;
303
304         if (!obj || !obj->nr_tlb_entries || !e)
305                 return -EINVAL;
306
307         pm_runtime_get_sync(obj->dev);
308
309         iotlb_lock_get(obj, &l);
310         if (l.base == obj->nr_tlb_entries) {
311                 dev_warn(obj->dev, "%s: preserve entries full\n", __func__);
312                 err = -EBUSY;
313                 goto out;
314         }
315         if (!e->prsvd) {
316                 int i;
317                 struct cr_regs tmp;
318
319                 for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, tmp)
320                         if (!iotlb_cr_valid(&tmp))
321                                 break;
322
323                 if (i == obj->nr_tlb_entries) {
324                         dev_dbg(obj->dev, "%s: full: no entry\n", __func__);
325                         err = -EBUSY;
326                         goto out;
327                 }
328
329                 iotlb_lock_get(obj, &l);
330         } else {
331                 l.vict = l.base;
332                 iotlb_lock_set(obj, &l);
333         }
334
335         cr = iotlb_alloc_cr(obj, e);
336         if (IS_ERR(cr)) {
337                 pm_runtime_put_sync(obj->dev);
338                 return PTR_ERR(cr);
339         }
340
341         iotlb_load_cr(obj, cr);
342         kfree(cr);
343
344         if (e->prsvd)
345                 l.base++;
346         /* increment victim for next tlb load */
347         if (++l.vict == obj->nr_tlb_entries)
348                 l.vict = l.base;
349         iotlb_lock_set(obj, &l);
350 out:
351         pm_runtime_put_sync(obj->dev);
352         return err;
353 }
354
355 #else /* !PREFETCH_IOTLB */
356
357 static int load_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
358 {
359         return 0;
360 }
361
362 #endif /* !PREFETCH_IOTLB */
363
364 static int prefetch_iotlb_entry(struct omap_iommu *obj, struct iotlb_entry *e)
365 {
366         return load_iotlb_entry(obj, e);
367 }
368
369 /**
370  * flush_iotlb_page - Clear an iommu tlb entry
371  * @obj:        target iommu
372  * @da:         iommu device virtual address
373  *
374  * Clear an iommu tlb entry which includes 'da' address.
375  **/
376 static void flush_iotlb_page(struct omap_iommu *obj, u32 da)
377 {
378         int i;
379         struct cr_regs cr;
380
381         pm_runtime_get_sync(obj->dev);
382
383         for_each_iotlb_cr(obj, obj->nr_tlb_entries, i, cr) {
384                 u32 start;
385                 size_t bytes;
386
387                 if (!iotlb_cr_valid(&cr))
388                         continue;
389
390                 start = iotlb_cr_to_virt(&cr);
391                 bytes = iopgsz_to_bytes(cr.cam & 3);
392
393                 if ((start <= da) && (da < start + bytes)) {
394                         dev_dbg(obj->dev, "%s: %08x<=%08x(%x)\n",
395                                 __func__, start, da, bytes);
396                         iotlb_load_cr(obj, &cr);
397                         iommu_write_reg(obj, 1, MMU_FLUSH_ENTRY);
398                         break;
399                 }
400         }
401         pm_runtime_put_sync(obj->dev);
402
403         if (i == obj->nr_tlb_entries)
404                 dev_dbg(obj->dev, "%s: no page for %08x\n", __func__, da);
405 }
406
407 /**
408  * flush_iotlb_all - Clear all iommu tlb entries
409  * @obj:        target iommu
410  **/
411 static void flush_iotlb_all(struct omap_iommu *obj)
412 {
413         struct iotlb_lock l;
414
415         pm_runtime_get_sync(obj->dev);
416
417         l.base = 0;
418         l.vict = 0;
419         iotlb_lock_set(obj, &l);
420
421         iommu_write_reg(obj, 1, MMU_GFLUSH);
422
423         pm_runtime_put_sync(obj->dev);
424 }
425
426 #if defined(CONFIG_OMAP_IOMMU_DEBUG) || defined(CONFIG_OMAP_IOMMU_DEBUG_MODULE)
427
428 ssize_t omap_iommu_dump_ctx(struct omap_iommu *obj, char *buf, ssize_t bytes)
429 {
430         if (!obj || !buf)
431                 return -EINVAL;
432
433         pm_runtime_get_sync(obj->dev);
434
435         bytes = arch_iommu->dump_ctx(obj, buf, bytes);
436
437         pm_runtime_put_sync(obj->dev);
438
439         return bytes;
440 }
441 EXPORT_SYMBOL_GPL(omap_iommu_dump_ctx);
442
443 static int
444 __dump_tlb_entries(struct omap_iommu *obj, struct cr_regs *crs, int num)
445 {
446         int i;
447         struct iotlb_lock saved;
448         struct cr_regs tmp;
449         struct cr_regs *p = crs;
450
451         pm_runtime_get_sync(obj->dev);
452         iotlb_lock_get(obj, &saved);
453
454         for_each_iotlb_cr(obj, num, i, tmp) {
455                 if (!iotlb_cr_valid(&tmp))
456                         continue;
457                 *p++ = tmp;
458         }
459
460         iotlb_lock_set(obj, &saved);
461         pm_runtime_put_sync(obj->dev);
462
463         return  p - crs;
464 }
465
466 /**
467  * omap_dump_tlb_entries - dump cr arrays to given buffer
468  * @obj:        target iommu
469  * @buf:        output buffer
470  **/
471 size_t omap_dump_tlb_entries(struct omap_iommu *obj, char *buf, ssize_t bytes)
472 {
473         int i, num;
474         struct cr_regs *cr;
475         char *p = buf;
476
477         num = bytes / sizeof(*cr);
478         num = min(obj->nr_tlb_entries, num);
479
480         cr = kcalloc(num, sizeof(*cr), GFP_KERNEL);
481         if (!cr)
482                 return 0;
483
484         num = __dump_tlb_entries(obj, cr, num);
485         for (i = 0; i < num; i++)
486                 p += iotlb_dump_cr(obj, cr + i, p);
487         kfree(cr);
488
489         return p - buf;
490 }
491 EXPORT_SYMBOL_GPL(omap_dump_tlb_entries);
492
493 int omap_foreach_iommu_device(void *data, int (*fn)(struct device *, void *))
494 {
495         return driver_for_each_device(&omap_iommu_driver.driver,
496                                       NULL, data, fn);
497 }
498 EXPORT_SYMBOL_GPL(omap_foreach_iommu_device);
499
500 #endif /* CONFIG_OMAP_IOMMU_DEBUG_MODULE */
501
502 /*
503  *      H/W pagetable operations
504  */
505 static void flush_iopgd_range(u32 *first, u32 *last)
506 {
507         /* FIXME: L2 cache should be taken care of if it exists */
508         do {
509                 asm("mcr        p15, 0, %0, c7, c10, 1 @ flush_pgd"
510                     : : "r" (first));
511                 first += L1_CACHE_BYTES / sizeof(*first);
512         } while (first <= last);
513 }
514
515 static void flush_iopte_range(u32 *first, u32 *last)
516 {
517         /* FIXME: L2 cache should be taken care of if it exists */
518         do {
519                 asm("mcr        p15, 0, %0, c7, c10, 1 @ flush_pte"
520                     : : "r" (first));
521                 first += L1_CACHE_BYTES / sizeof(*first);
522         } while (first <= last);
523 }
524
525 static void iopte_free(u32 *iopte)
526 {
527         /* Note: freed iopte's must be clean ready for re-use */
528         if (iopte)
529                 kmem_cache_free(iopte_cachep, iopte);
530 }
531
532 static u32 *iopte_alloc(struct omap_iommu *obj, u32 *iopgd, u32 da)
533 {
534         u32 *iopte;
535
536         /* a table has already existed */
537         if (*iopgd)
538                 goto pte_ready;
539
540         /*
541          * do the allocation outside the page table lock
542          */
543         spin_unlock(&obj->page_table_lock);
544         iopte = kmem_cache_zalloc(iopte_cachep, GFP_KERNEL);
545         spin_lock(&obj->page_table_lock);
546
547         if (!*iopgd) {
548                 if (!iopte)
549                         return ERR_PTR(-ENOMEM);
550
551                 *iopgd = virt_to_phys(iopte) | IOPGD_TABLE;
552                 flush_iopgd_range(iopgd, iopgd);
553
554                 dev_vdbg(obj->dev, "%s: a new pte:%p\n", __func__, iopte);
555         } else {
556                 /* We raced, free the reduniovant table */
557                 iopte_free(iopte);
558         }
559
560 pte_ready:
561         iopte = iopte_offset(iopgd, da);
562
563         dev_vdbg(obj->dev,
564                  "%s: da:%08x pgd:%p *pgd:%08x pte:%p *pte:%08x\n",
565                  __func__, da, iopgd, *iopgd, iopte, *iopte);
566
567         return iopte;
568 }
569
570 static int iopgd_alloc_section(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
571 {
572         u32 *iopgd = iopgd_offset(obj, da);
573
574         if ((da | pa) & ~IOSECTION_MASK) {
575                 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
576                         __func__, da, pa, IOSECTION_SIZE);
577                 return -EINVAL;
578         }
579
580         *iopgd = (pa & IOSECTION_MASK) | prot | IOPGD_SECTION;
581         flush_iopgd_range(iopgd, iopgd);
582         return 0;
583 }
584
585 static int iopgd_alloc_super(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
586 {
587         u32 *iopgd = iopgd_offset(obj, da);
588         int i;
589
590         if ((da | pa) & ~IOSUPER_MASK) {
591                 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
592                         __func__, da, pa, IOSUPER_SIZE);
593                 return -EINVAL;
594         }
595
596         for (i = 0; i < 16; i++)
597                 *(iopgd + i) = (pa & IOSUPER_MASK) | prot | IOPGD_SUPER;
598         flush_iopgd_range(iopgd, iopgd + 15);
599         return 0;
600 }
601
602 static int iopte_alloc_page(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
603 {
604         u32 *iopgd = iopgd_offset(obj, da);
605         u32 *iopte = iopte_alloc(obj, iopgd, da);
606
607         if (IS_ERR(iopte))
608                 return PTR_ERR(iopte);
609
610         *iopte = (pa & IOPAGE_MASK) | prot | IOPTE_SMALL;
611         flush_iopte_range(iopte, iopte);
612
613         dev_vdbg(obj->dev, "%s: da:%08x pa:%08x pte:%p *pte:%08x\n",
614                  __func__, da, pa, iopte, *iopte);
615
616         return 0;
617 }
618
619 static int iopte_alloc_large(struct omap_iommu *obj, u32 da, u32 pa, u32 prot)
620 {
621         u32 *iopgd = iopgd_offset(obj, da);
622         u32 *iopte = iopte_alloc(obj, iopgd, da);
623         int i;
624
625         if ((da | pa) & ~IOLARGE_MASK) {
626                 dev_err(obj->dev, "%s: %08x:%08x should aligned on %08lx\n",
627                         __func__, da, pa, IOLARGE_SIZE);
628                 return -EINVAL;
629         }
630
631         if (IS_ERR(iopte))
632                 return PTR_ERR(iopte);
633
634         for (i = 0; i < 16; i++)
635                 *(iopte + i) = (pa & IOLARGE_MASK) | prot | IOPTE_LARGE;
636         flush_iopte_range(iopte, iopte + 15);
637         return 0;
638 }
639
640 static int
641 iopgtable_store_entry_core(struct omap_iommu *obj, struct iotlb_entry *e)
642 {
643         int (*fn)(struct omap_iommu *, u32, u32, u32);
644         u32 prot;
645         int err;
646
647         if (!obj || !e)
648                 return -EINVAL;
649
650         switch (e->pgsz) {
651         case MMU_CAM_PGSZ_16M:
652                 fn = iopgd_alloc_super;
653                 break;
654         case MMU_CAM_PGSZ_1M:
655                 fn = iopgd_alloc_section;
656                 break;
657         case MMU_CAM_PGSZ_64K:
658                 fn = iopte_alloc_large;
659                 break;
660         case MMU_CAM_PGSZ_4K:
661                 fn = iopte_alloc_page;
662                 break;
663         default:
664                 fn = NULL;
665                 BUG();
666                 break;
667         }
668
669         prot = get_iopte_attr(e);
670
671         spin_lock(&obj->page_table_lock);
672         err = fn(obj, e->da, e->pa, prot);
673         spin_unlock(&obj->page_table_lock);
674
675         return err;
676 }
677
678 /**
679  * omap_iopgtable_store_entry - Make an iommu pte entry
680  * @obj:        target iommu
681  * @e:          an iommu tlb entry info
682  **/
683 int omap_iopgtable_store_entry(struct omap_iommu *obj, struct iotlb_entry *e)
684 {
685         int err;
686
687         flush_iotlb_page(obj, e->da);
688         err = iopgtable_store_entry_core(obj, e);
689         if (!err)
690                 prefetch_iotlb_entry(obj, e);
691         return err;
692 }
693 EXPORT_SYMBOL_GPL(omap_iopgtable_store_entry);
694
695 /**
696  * iopgtable_lookup_entry - Lookup an iommu pte entry
697  * @obj:        target iommu
698  * @da:         iommu device virtual address
699  * @ppgd:       iommu pgd entry pointer to be returned
700  * @ppte:       iommu pte entry pointer to be returned
701  **/
702 static void
703 iopgtable_lookup_entry(struct omap_iommu *obj, u32 da, u32 **ppgd, u32 **ppte)
704 {
705         u32 *iopgd, *iopte = NULL;
706
707         iopgd = iopgd_offset(obj, da);
708         if (!*iopgd)
709                 goto out;
710
711         if (iopgd_is_table(*iopgd))
712                 iopte = iopte_offset(iopgd, da);
713 out:
714         *ppgd = iopgd;
715         *ppte = iopte;
716 }
717
718 static size_t iopgtable_clear_entry_core(struct omap_iommu *obj, u32 da)
719 {
720         size_t bytes;
721         u32 *iopgd = iopgd_offset(obj, da);
722         int nent = 1;
723
724         if (!*iopgd)
725                 return 0;
726
727         if (iopgd_is_table(*iopgd)) {
728                 int i;
729                 u32 *iopte = iopte_offset(iopgd, da);
730
731                 bytes = IOPTE_SIZE;
732                 if (*iopte & IOPTE_LARGE) {
733                         nent *= 16;
734                         /* rewind to the 1st entry */
735                         iopte = iopte_offset(iopgd, (da & IOLARGE_MASK));
736                 }
737                 bytes *= nent;
738                 memset(iopte, 0, nent * sizeof(*iopte));
739                 flush_iopte_range(iopte, iopte + (nent - 1) * sizeof(*iopte));
740
741                 /*
742                  * do table walk to check if this table is necessary or not
743                  */
744                 iopte = iopte_offset(iopgd, 0);
745                 for (i = 0; i < PTRS_PER_IOPTE; i++)
746                         if (iopte[i])
747                                 goto out;
748
749                 iopte_free(iopte);
750                 nent = 1; /* for the next L1 entry */
751         } else {
752                 bytes = IOPGD_SIZE;
753                 if ((*iopgd & IOPGD_SUPER) == IOPGD_SUPER) {
754                         nent *= 16;
755                         /* rewind to the 1st entry */
756                         iopgd = iopgd_offset(obj, (da & IOSUPER_MASK));
757                 }
758                 bytes *= nent;
759         }
760         memset(iopgd, 0, nent * sizeof(*iopgd));
761         flush_iopgd_range(iopgd, iopgd + (nent - 1) * sizeof(*iopgd));
762 out:
763         return bytes;
764 }
765
766 /**
767  * iopgtable_clear_entry - Remove an iommu pte entry
768  * @obj:        target iommu
769  * @da:         iommu device virtual address
770  **/
771 static size_t iopgtable_clear_entry(struct omap_iommu *obj, u32 da)
772 {
773         size_t bytes;
774
775         spin_lock(&obj->page_table_lock);
776
777         bytes = iopgtable_clear_entry_core(obj, da);
778         flush_iotlb_page(obj, da);
779
780         spin_unlock(&obj->page_table_lock);
781
782         return bytes;
783 }
784
785 static void iopgtable_clear_entry_all(struct omap_iommu *obj)
786 {
787         int i;
788
789         spin_lock(&obj->page_table_lock);
790
791         for (i = 0; i < PTRS_PER_IOPGD; i++) {
792                 u32 da;
793                 u32 *iopgd;
794
795                 da = i << IOPGD_SHIFT;
796                 iopgd = iopgd_offset(obj, da);
797
798                 if (!*iopgd)
799                         continue;
800
801                 if (iopgd_is_table(*iopgd))
802                         iopte_free(iopte_offset(iopgd, 0));
803
804                 *iopgd = 0;
805                 flush_iopgd_range(iopgd, iopgd);
806         }
807
808         flush_iotlb_all(obj);
809
810         spin_unlock(&obj->page_table_lock);
811 }
812
813 /*
814  *      Device IOMMU generic operations
815  */
816 static irqreturn_t iommu_fault_handler(int irq, void *data)
817 {
818         u32 da, errs;
819         u32 *iopgd, *iopte;
820         struct omap_iommu *obj = data;
821         struct iommu_domain *domain = obj->domain;
822
823         if (!obj->refcount)
824                 return IRQ_NONE;
825
826         errs = iommu_report_fault(obj, &da);
827         if (errs == 0)
828                 return IRQ_HANDLED;
829
830         /* Fault callback or TLB/PTE Dynamic loading */
831         if (!report_iommu_fault(domain, obj->dev, da, 0))
832                 return IRQ_HANDLED;
833
834         iommu_disable(obj);
835
836         iopgd = iopgd_offset(obj, da);
837
838         if (!iopgd_is_table(*iopgd)) {
839                 dev_err(obj->dev, "%s: errs:0x%08x da:0x%08x pgd:0x%p *pgd:px%08x\n",
840                                 obj->name, errs, da, iopgd, *iopgd);
841                 return IRQ_NONE;
842         }
843
844         iopte = iopte_offset(iopgd, da);
845
846         dev_err(obj->dev, "%s: errs:0x%08x da:0x%08x pgd:0x%p *pgd:0x%08x pte:0x%p *pte:0x%08x\n",
847                         obj->name, errs, da, iopgd, *iopgd, iopte, *iopte);
848
849         return IRQ_NONE;
850 }
851
852 static int device_match_by_alias(struct device *dev, void *data)
853 {
854         struct omap_iommu *obj = to_iommu(dev);
855         const char *name = data;
856
857         pr_debug("%s: %s %s\n", __func__, obj->name, name);
858
859         return strcmp(obj->name, name) == 0;
860 }
861
862 /**
863  * omap_iommu_attach() - attach iommu device to an iommu domain
864  * @name:       name of target omap iommu device
865  * @iopgd:      page table
866  **/
867 static struct omap_iommu *omap_iommu_attach(const char *name, u32 *iopgd)
868 {
869         int err;
870         struct device *dev;
871         struct omap_iommu *obj;
872
873         dev = driver_find_device(&omap_iommu_driver.driver, NULL,
874                                 (void *)name,
875                                 device_match_by_alias);
876         if (!dev)
877                 return ERR_PTR(-ENODEV);
878
879         obj = to_iommu(dev);
880
881         spin_lock(&obj->iommu_lock);
882
883         /* an iommu device can only be attached once */
884         if (++obj->refcount > 1) {
885                 dev_err(dev, "%s: already attached!\n", obj->name);
886                 err = -EBUSY;
887                 goto err_enable;
888         }
889
890         obj->iopgd = iopgd;
891         err = iommu_enable(obj);
892         if (err)
893                 goto err_enable;
894         flush_iotlb_all(obj);
895
896         if (!try_module_get(obj->owner)) {
897                 err = -ENODEV;
898                 goto err_module;
899         }
900
901         spin_unlock(&obj->iommu_lock);
902
903         dev_dbg(obj->dev, "%s: %s\n", __func__, obj->name);
904         return obj;
905
906 err_module:
907         if (obj->refcount == 1)
908                 iommu_disable(obj);
909 err_enable:
910         obj->refcount--;
911         spin_unlock(&obj->iommu_lock);
912         return ERR_PTR(err);
913 }
914
915 /**
916  * omap_iommu_detach - release iommu device
917  * @obj:        target iommu
918  **/
919 static void omap_iommu_detach(struct omap_iommu *obj)
920 {
921         if (!obj || IS_ERR(obj))
922                 return;
923
924         spin_lock(&obj->iommu_lock);
925
926         if (--obj->refcount == 0)
927                 iommu_disable(obj);
928
929         module_put(obj->owner);
930
931         obj->iopgd = NULL;
932
933         spin_unlock(&obj->iommu_lock);
934
935         dev_dbg(obj->dev, "%s: %s\n", __func__, obj->name);
936 }
937
938 /*
939  *      OMAP Device MMU(IOMMU) detection
940  */
941 static int omap_iommu_probe(struct platform_device *pdev)
942 {
943         int err = -ENODEV;
944         int irq;
945         struct omap_iommu *obj;
946         struct resource *res;
947         struct iommu_platform_data *pdata = pdev->dev.platform_data;
948         struct device_node *of = pdev->dev.of_node;
949
950         obj = devm_kzalloc(&pdev->dev, sizeof(*obj) + MMU_REG_SIZE, GFP_KERNEL);
951         if (!obj)
952                 return -ENOMEM;
953
954         if (of) {
955                 obj->name = dev_name(&pdev->dev);
956                 obj->nr_tlb_entries = 32;
957                 err = of_property_read_u32(of, "ti,#tlb-entries",
958                                            &obj->nr_tlb_entries);
959                 if (err && err != -EINVAL)
960                         return err;
961                 if (obj->nr_tlb_entries != 32 && obj->nr_tlb_entries != 8)
962                         return -EINVAL;
963                 if (of_find_property(of, "ti,iommu-bus-err-back", NULL))
964                         obj->has_bus_err_back = MMU_GP_REG_BUS_ERR_BACK_EN;
965         } else {
966                 obj->nr_tlb_entries = pdata->nr_tlb_entries;
967                 obj->name = pdata->name;
968         }
969
970         obj->dev = &pdev->dev;
971         obj->ctx = (void *)obj + sizeof(*obj);
972
973         spin_lock_init(&obj->iommu_lock);
974         spin_lock_init(&obj->page_table_lock);
975
976         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
977         obj->regbase = devm_ioremap_resource(obj->dev, res);
978         if (IS_ERR(obj->regbase))
979                 return PTR_ERR(obj->regbase);
980
981         irq = platform_get_irq(pdev, 0);
982         if (irq < 0)
983                 return -ENODEV;
984
985         err = devm_request_irq(obj->dev, irq, iommu_fault_handler, IRQF_SHARED,
986                                dev_name(obj->dev), obj);
987         if (err < 0)
988                 return err;
989         platform_set_drvdata(pdev, obj);
990
991         pm_runtime_irq_safe(obj->dev);
992         pm_runtime_enable(obj->dev);
993
994         dev_info(&pdev->dev, "%s registered\n", obj->name);
995         return 0;
996 }
997
998 static int omap_iommu_remove(struct platform_device *pdev)
999 {
1000         struct omap_iommu *obj = platform_get_drvdata(pdev);
1001
1002         iopgtable_clear_entry_all(obj);
1003
1004         pm_runtime_disable(obj->dev);
1005
1006         dev_info(&pdev->dev, "%s removed\n", obj->name);
1007         return 0;
1008 }
1009
1010 static struct of_device_id omap_iommu_of_match[] = {
1011         { .compatible = "ti,omap2-iommu" },
1012         { .compatible = "ti,omap4-iommu" },
1013         { .compatible = "ti,dra7-iommu" },
1014         {},
1015 };
1016 MODULE_DEVICE_TABLE(of, omap_iommu_of_match);
1017
1018 static struct platform_driver omap_iommu_driver = {
1019         .probe  = omap_iommu_probe,
1020         .remove = omap_iommu_remove,
1021         .driver = {
1022                 .name   = "omap-iommu",
1023                 .of_match_table = of_match_ptr(omap_iommu_of_match),
1024         },
1025 };
1026
1027 static void iopte_cachep_ctor(void *iopte)
1028 {
1029         clean_dcache_area(iopte, IOPTE_TABLE_SIZE);
1030 }
1031
1032 static u32 iotlb_init_entry(struct iotlb_entry *e, u32 da, u32 pa, int pgsz)
1033 {
1034         memset(e, 0, sizeof(*e));
1035
1036         e->da           = da;
1037         e->pa           = pa;
1038         e->valid        = MMU_CAM_V;
1039         /* FIXME: add OMAP1 support */
1040         e->pgsz         = pgsz;
1041         e->endian       = MMU_RAM_ENDIAN_LITTLE;
1042         e->elsz         = MMU_RAM_ELSZ_8;
1043         e->mixed        = 0;
1044
1045         return iopgsz_to_bytes(e->pgsz);
1046 }
1047
1048 static int omap_iommu_map(struct iommu_domain *domain, unsigned long da,
1049                          phys_addr_t pa, size_t bytes, int prot)
1050 {
1051         struct omap_iommu_domain *omap_domain = domain->priv;
1052         struct omap_iommu *oiommu = omap_domain->iommu_dev;
1053         struct device *dev = oiommu->dev;
1054         struct iotlb_entry e;
1055         int omap_pgsz;
1056         u32 ret;
1057
1058         omap_pgsz = bytes_to_iopgsz(bytes);
1059         if (omap_pgsz < 0) {
1060                 dev_err(dev, "invalid size to map: %d\n", bytes);
1061                 return -EINVAL;
1062         }
1063
1064         dev_dbg(dev, "mapping da 0x%lx to pa 0x%x size 0x%x\n", da, pa, bytes);
1065
1066         iotlb_init_entry(&e, da, pa, omap_pgsz);
1067
1068         ret = omap_iopgtable_store_entry(oiommu, &e);
1069         if (ret)
1070                 dev_err(dev, "omap_iopgtable_store_entry failed: %d\n", ret);
1071
1072         return ret;
1073 }
1074
1075 static size_t omap_iommu_unmap(struct iommu_domain *domain, unsigned long da,
1076                             size_t size)
1077 {
1078         struct omap_iommu_domain *omap_domain = domain->priv;
1079         struct omap_iommu *oiommu = omap_domain->iommu_dev;
1080         struct device *dev = oiommu->dev;
1081
1082         dev_dbg(dev, "unmapping da 0x%lx size %u\n", da, size);
1083
1084         return iopgtable_clear_entry(oiommu, da);
1085 }
1086
1087 static int
1088 omap_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
1089 {
1090         struct omap_iommu_domain *omap_domain = domain->priv;
1091         struct omap_iommu *oiommu;
1092         struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
1093         int ret = 0;
1094
1095         if (!arch_data || !arch_data->name) {
1096                 dev_err(dev, "device doesn't have an associated iommu\n");
1097                 return -EINVAL;
1098         }
1099
1100         spin_lock(&omap_domain->lock);
1101
1102         /* only a single device is supported per domain for now */
1103         if (omap_domain->iommu_dev) {
1104                 dev_err(dev, "iommu domain is already attached\n");
1105                 ret = -EBUSY;
1106                 goto out;
1107         }
1108
1109         /* get a handle to and enable the omap iommu */
1110         oiommu = omap_iommu_attach(arch_data->name, omap_domain->pgtable);
1111         if (IS_ERR(oiommu)) {
1112                 ret = PTR_ERR(oiommu);
1113                 dev_err(dev, "can't get omap iommu: %d\n", ret);
1114                 goto out;
1115         }
1116
1117         omap_domain->iommu_dev = arch_data->iommu_dev = oiommu;
1118         omap_domain->dev = dev;
1119         oiommu->domain = domain;
1120
1121 out:
1122         spin_unlock(&omap_domain->lock);
1123         return ret;
1124 }
1125
1126 static void _omap_iommu_detach_dev(struct omap_iommu_domain *omap_domain,
1127                         struct device *dev)
1128 {
1129         struct omap_iommu *oiommu = dev_to_omap_iommu(dev);
1130         struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
1131
1132         /* only a single device is supported per domain for now */
1133         if (omap_domain->iommu_dev != oiommu) {
1134                 dev_err(dev, "invalid iommu device\n");
1135                 return;
1136         }
1137
1138         iopgtable_clear_entry_all(oiommu);
1139
1140         omap_iommu_detach(oiommu);
1141
1142         omap_domain->iommu_dev = arch_data->iommu_dev = NULL;
1143         omap_domain->dev = NULL;
1144 }
1145
1146 static void omap_iommu_detach_dev(struct iommu_domain *domain,
1147                                  struct device *dev)
1148 {
1149         struct omap_iommu_domain *omap_domain = domain->priv;
1150
1151         spin_lock(&omap_domain->lock);
1152         _omap_iommu_detach_dev(omap_domain, dev);
1153         spin_unlock(&omap_domain->lock);
1154 }
1155
1156 static int omap_iommu_domain_init(struct iommu_domain *domain)
1157 {
1158         struct omap_iommu_domain *omap_domain;
1159
1160         omap_domain = kzalloc(sizeof(*omap_domain), GFP_KERNEL);
1161         if (!omap_domain) {
1162                 pr_err("kzalloc failed\n");
1163                 goto out;
1164         }
1165
1166         omap_domain->pgtable = kzalloc(IOPGD_TABLE_SIZE, GFP_KERNEL);
1167         if (!omap_domain->pgtable) {
1168                 pr_err("kzalloc failed\n");
1169                 goto fail_nomem;
1170         }
1171
1172         /*
1173          * should never fail, but please keep this around to ensure
1174          * we keep the hardware happy
1175          */
1176         BUG_ON(!IS_ALIGNED((long)omap_domain->pgtable, IOPGD_TABLE_SIZE));
1177
1178         clean_dcache_area(omap_domain->pgtable, IOPGD_TABLE_SIZE);
1179         spin_lock_init(&omap_domain->lock);
1180
1181         domain->priv = omap_domain;
1182
1183         domain->geometry.aperture_start = 0;
1184         domain->geometry.aperture_end   = (1ULL << 32) - 1;
1185         domain->geometry.force_aperture = true;
1186
1187         return 0;
1188
1189 fail_nomem:
1190         kfree(omap_domain);
1191 out:
1192         return -ENOMEM;
1193 }
1194
1195 static void omap_iommu_domain_destroy(struct iommu_domain *domain)
1196 {
1197         struct omap_iommu_domain *omap_domain = domain->priv;
1198
1199         domain->priv = NULL;
1200
1201         /*
1202          * An iommu device is still attached
1203          * (currently, only one device can be attached) ?
1204          */
1205         if (omap_domain->iommu_dev)
1206                 _omap_iommu_detach_dev(omap_domain, omap_domain->dev);
1207
1208         kfree(omap_domain->pgtable);
1209         kfree(omap_domain);
1210 }
1211
1212 static phys_addr_t omap_iommu_iova_to_phys(struct iommu_domain *domain,
1213                                           dma_addr_t da)
1214 {
1215         struct omap_iommu_domain *omap_domain = domain->priv;
1216         struct omap_iommu *oiommu = omap_domain->iommu_dev;
1217         struct device *dev = oiommu->dev;
1218         u32 *pgd, *pte;
1219         phys_addr_t ret = 0;
1220
1221         iopgtable_lookup_entry(oiommu, da, &pgd, &pte);
1222
1223         if (pte) {
1224                 if (iopte_is_small(*pte))
1225                         ret = omap_iommu_translate(*pte, da, IOPTE_MASK);
1226                 else if (iopte_is_large(*pte))
1227                         ret = omap_iommu_translate(*pte, da, IOLARGE_MASK);
1228                 else
1229                         dev_err(dev, "bogus pte 0x%x, da 0x%llx", *pte,
1230                                                         (unsigned long long)da);
1231         } else {
1232                 if (iopgd_is_section(*pgd))
1233                         ret = omap_iommu_translate(*pgd, da, IOSECTION_MASK);
1234                 else if (iopgd_is_super(*pgd))
1235                         ret = omap_iommu_translate(*pgd, da, IOSUPER_MASK);
1236                 else
1237                         dev_err(dev, "bogus pgd 0x%x, da 0x%llx", *pgd,
1238                                                         (unsigned long long)da);
1239         }
1240
1241         return ret;
1242 }
1243
1244 static int omap_iommu_add_device(struct device *dev)
1245 {
1246         struct omap_iommu_arch_data *arch_data;
1247         struct device_node *np;
1248         struct platform_device *pdev;
1249
1250         /*
1251          * Allocate the archdata iommu structure for DT-based devices.
1252          *
1253          * TODO: Simplify this when removing non-DT support completely from the
1254          * IOMMU users.
1255          */
1256         if (!dev->of_node)
1257                 return 0;
1258
1259         np = of_parse_phandle(dev->of_node, "iommus", 0);
1260         if (!np)
1261                 return 0;
1262
1263         pdev = of_find_device_by_node(np);
1264         if (WARN_ON(!pdev)) {
1265                 of_node_put(np);
1266                 return -EINVAL;
1267         }
1268
1269         arch_data = kzalloc(sizeof(*arch_data), GFP_KERNEL);
1270         if (!arch_data) {
1271                 of_node_put(np);
1272                 return -ENOMEM;
1273         }
1274
1275         arch_data->name = kstrdup(dev_name(&pdev->dev), GFP_KERNEL);
1276         dev->archdata.iommu = arch_data;
1277
1278         of_node_put(np);
1279
1280         return 0;
1281 }
1282
1283 static void omap_iommu_remove_device(struct device *dev)
1284 {
1285         struct omap_iommu_arch_data *arch_data = dev->archdata.iommu;
1286
1287         if (!dev->of_node || !arch_data)
1288                 return;
1289
1290         kfree(arch_data->name);
1291         kfree(arch_data);
1292 }
1293
1294 static const struct iommu_ops omap_iommu_ops = {
1295         .domain_init    = omap_iommu_domain_init,
1296         .domain_destroy = omap_iommu_domain_destroy,
1297         .attach_dev     = omap_iommu_attach_dev,
1298         .detach_dev     = omap_iommu_detach_dev,
1299         .map            = omap_iommu_map,
1300         .unmap          = omap_iommu_unmap,
1301         .iova_to_phys   = omap_iommu_iova_to_phys,
1302         .add_device     = omap_iommu_add_device,
1303         .remove_device  = omap_iommu_remove_device,
1304         .pgsize_bitmap  = OMAP_IOMMU_PGSIZES,
1305 };
1306
1307 static int __init omap_iommu_init(void)
1308 {
1309         struct kmem_cache *p;
1310         const unsigned long flags = SLAB_HWCACHE_ALIGN;
1311         size_t align = 1 << 10; /* L2 pagetable alignement */
1312
1313         p = kmem_cache_create("iopte_cache", IOPTE_TABLE_SIZE, align, flags,
1314                               iopte_cachep_ctor);
1315         if (!p)
1316                 return -ENOMEM;
1317         iopte_cachep = p;
1318
1319         bus_set_iommu(&platform_bus_type, &omap_iommu_ops);
1320
1321         return platform_driver_register(&omap_iommu_driver);
1322 }
1323 /* must be ready before omap3isp is probed */
1324 subsys_initcall(omap_iommu_init);
1325
1326 static void __exit omap_iommu_exit(void)
1327 {
1328         kmem_cache_destroy(iopte_cachep);
1329
1330         platform_driver_unregister(&omap_iommu_driver);
1331 }
1332 module_exit(omap_iommu_exit);
1333
1334 MODULE_DESCRIPTION("omap iommu: tlb and pagetable primitives");
1335 MODULE_ALIAS("platform:omap-iommu");
1336 MODULE_AUTHOR("Hiroshi DOYU, Paul Mundt and Toshihiro Kobayashi");
1337 MODULE_LICENSE("GPL v2");