2 * omap iommu: tlb and pagetable primitives
4 * Copyright (C) 2008-2010 Nokia Corporation
6 * Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>,
7 * Paul Mundt and Toshihiro Kobayashi
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.
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/clk.h>
20 #include <linux/platform_device.h>
22 #include <asm/cacheflush.h>
24 #include <plat/iommu.h>
26 #include "iopgtable.h"
28 #define for_each_iotlb_cr(obj, n, __i, cr) \
30 (__i < (n)) && (cr = __iotlb_read_cr((obj), __i), true); \
33 /* accommodate the difference between omap1 and omap2/3 */
34 static const struct iommu_functions
*arch_iommu
;
36 static struct platform_driver omap_iommu_driver
;
37 static struct kmem_cache
*iopte_cachep
;
40 * install_iommu_arch - Install archtecure specific iommu functions
41 * @ops: a pointer to architecture specific iommu functions
43 * There are several kind of iommu algorithm(tlb, pagetable) among
44 * omap series. This interface installs such an iommu algorighm.
46 int install_iommu_arch(const struct iommu_functions
*ops
)
54 EXPORT_SYMBOL_GPL(install_iommu_arch
);
57 * uninstall_iommu_arch - Uninstall archtecure specific iommu functions
58 * @ops: a pointer to architecture specific iommu functions
60 * This interface uninstalls the iommu algorighm installed previously.
62 void uninstall_iommu_arch(const struct iommu_functions
*ops
)
64 if (arch_iommu
!= ops
)
65 pr_err("%s: not your arch\n", __func__
);
69 EXPORT_SYMBOL_GPL(uninstall_iommu_arch
);
72 * iommu_save_ctx - Save registers for pm off-mode support
75 void iommu_save_ctx(struct iommu
*obj
)
77 arch_iommu
->save_ctx(obj
);
79 EXPORT_SYMBOL_GPL(iommu_save_ctx
);
82 * iommu_restore_ctx - Restore registers for pm off-mode support
85 void iommu_restore_ctx(struct iommu
*obj
)
87 arch_iommu
->restore_ctx(obj
);
89 EXPORT_SYMBOL_GPL(iommu_restore_ctx
);
92 * iommu_arch_version - Return running iommu arch version
94 u32
iommu_arch_version(void)
96 return arch_iommu
->version
;
98 EXPORT_SYMBOL_GPL(iommu_arch_version
);
100 static int iommu_enable(struct iommu
*obj
)
107 clk_enable(obj
->clk
);
109 err
= arch_iommu
->enable(obj
);
111 clk_disable(obj
->clk
);
115 static void iommu_disable(struct iommu
*obj
)
120 clk_enable(obj
->clk
);
122 arch_iommu
->disable(obj
);
124 clk_disable(obj
->clk
);
130 void iotlb_cr_to_e(struct cr_regs
*cr
, struct iotlb_entry
*e
)
134 arch_iommu
->cr_to_e(cr
, e
);
136 EXPORT_SYMBOL_GPL(iotlb_cr_to_e
);
138 static inline int iotlb_cr_valid(struct cr_regs
*cr
)
143 return arch_iommu
->cr_valid(cr
);
146 static inline struct cr_regs
*iotlb_alloc_cr(struct iommu
*obj
,
147 struct iotlb_entry
*e
)
152 return arch_iommu
->alloc_cr(obj
, e
);
155 u32
iotlb_cr_to_virt(struct cr_regs
*cr
)
157 return arch_iommu
->cr_to_virt(cr
);
159 EXPORT_SYMBOL_GPL(iotlb_cr_to_virt
);
161 static u32
get_iopte_attr(struct iotlb_entry
*e
)
163 return arch_iommu
->get_pte_attr(e
);
166 static u32
iommu_report_fault(struct iommu
*obj
, u32
*da
)
168 return arch_iommu
->fault_isr(obj
, da
);
171 static void iotlb_lock_get(struct iommu
*obj
, struct iotlb_lock
*l
)
175 val
= iommu_read_reg(obj
, MMU_LOCK
);
177 l
->base
= MMU_LOCK_BASE(val
);
178 l
->vict
= MMU_LOCK_VICT(val
);
182 static void iotlb_lock_set(struct iommu
*obj
, struct iotlb_lock
*l
)
186 val
= (l
->base
<< MMU_LOCK_BASE_SHIFT
);
187 val
|= (l
->vict
<< MMU_LOCK_VICT_SHIFT
);
189 iommu_write_reg(obj
, val
, MMU_LOCK
);
192 static void iotlb_read_cr(struct iommu
*obj
, struct cr_regs
*cr
)
194 arch_iommu
->tlb_read_cr(obj
, cr
);
197 static void iotlb_load_cr(struct iommu
*obj
, struct cr_regs
*cr
)
199 arch_iommu
->tlb_load_cr(obj
, cr
);
201 iommu_write_reg(obj
, 1, MMU_FLUSH_ENTRY
);
202 iommu_write_reg(obj
, 1, MMU_LD_TLB
);
206 * iotlb_dump_cr - Dump an iommu tlb entry into buf
208 * @cr: contents of cam and ram register
209 * @buf: output buffer
211 static inline ssize_t
iotlb_dump_cr(struct iommu
*obj
, struct cr_regs
*cr
,
216 return arch_iommu
->dump_cr(obj
, cr
, buf
);
219 /* only used in iotlb iteration for-loop */
220 static struct cr_regs
__iotlb_read_cr(struct iommu
*obj
, int n
)
225 iotlb_lock_get(obj
, &l
);
227 iotlb_lock_set(obj
, &l
);
228 iotlb_read_cr(obj
, &cr
);
234 * load_iotlb_entry - Set an iommu tlb entry
236 * @e: an iommu tlb entry info
238 int load_iotlb_entry(struct iommu
*obj
, struct iotlb_entry
*e
)
244 if (!obj
|| !obj
->nr_tlb_entries
|| !e
)
247 clk_enable(obj
->clk
);
249 iotlb_lock_get(obj
, &l
);
250 if (l
.base
== obj
->nr_tlb_entries
) {
251 dev_warn(obj
->dev
, "%s: preserve entries full\n", __func__
);
259 for_each_iotlb_cr(obj
, obj
->nr_tlb_entries
, i
, tmp
)
260 if (!iotlb_cr_valid(&tmp
))
263 if (i
== obj
->nr_tlb_entries
) {
264 dev_dbg(obj
->dev
, "%s: full: no entry\n", __func__
);
269 iotlb_lock_get(obj
, &l
);
272 iotlb_lock_set(obj
, &l
);
275 cr
= iotlb_alloc_cr(obj
, e
);
277 clk_disable(obj
->clk
);
281 iotlb_load_cr(obj
, cr
);
286 /* increment victim for next tlb load */
287 if (++l
.vict
== obj
->nr_tlb_entries
)
289 iotlb_lock_set(obj
, &l
);
291 clk_disable(obj
->clk
);
294 EXPORT_SYMBOL_GPL(load_iotlb_entry
);
297 * flush_iotlb_page - Clear an iommu tlb entry
299 * @da: iommu device virtual address
301 * Clear an iommu tlb entry which includes 'da' address.
303 void flush_iotlb_page(struct iommu
*obj
, u32 da
)
308 clk_enable(obj
->clk
);
310 for_each_iotlb_cr(obj
, obj
->nr_tlb_entries
, i
, cr
) {
314 if (!iotlb_cr_valid(&cr
))
317 start
= iotlb_cr_to_virt(&cr
);
318 bytes
= iopgsz_to_bytes(cr
.cam
& 3);
320 if ((start
<= da
) && (da
< start
+ bytes
)) {
321 dev_dbg(obj
->dev
, "%s: %08x<=%08x(%x)\n",
322 __func__
, start
, da
, bytes
);
323 iotlb_load_cr(obj
, &cr
);
324 iommu_write_reg(obj
, 1, MMU_FLUSH_ENTRY
);
327 clk_disable(obj
->clk
);
329 if (i
== obj
->nr_tlb_entries
)
330 dev_dbg(obj
->dev
, "%s: no page for %08x\n", __func__
, da
);
332 EXPORT_SYMBOL_GPL(flush_iotlb_page
);
335 * flush_iotlb_range - Clear an iommu tlb entries
337 * @start: iommu device virtual address(start)
338 * @end: iommu device virtual address(end)
340 * Clear an iommu tlb entry which includes 'da' address.
342 void flush_iotlb_range(struct iommu
*obj
, u32 start
, u32 end
)
347 flush_iotlb_page(obj
, da
);
348 /* FIXME: Optimize for multiple page size */
352 EXPORT_SYMBOL_GPL(flush_iotlb_range
);
355 * flush_iotlb_all - Clear all iommu tlb entries
358 void flush_iotlb_all(struct iommu
*obj
)
362 clk_enable(obj
->clk
);
366 iotlb_lock_set(obj
, &l
);
368 iommu_write_reg(obj
, 1, MMU_GFLUSH
);
370 clk_disable(obj
->clk
);
372 EXPORT_SYMBOL_GPL(flush_iotlb_all
);
375 * iommu_set_twl - enable/disable table walking logic
377 * @on: enable/disable
379 * Function used to enable/disable TWL. If one wants to work
380 * exclusively with locked TLB entries and receive notifications
381 * for TLB miss then call this function to disable TWL.
383 void iommu_set_twl(struct iommu
*obj
, bool on
)
385 clk_enable(obj
->clk
);
386 arch_iommu
->set_twl(obj
, on
);
387 clk_disable(obj
->clk
);
389 EXPORT_SYMBOL_GPL(iommu_set_twl
);
391 #if defined(CONFIG_OMAP_IOMMU_DEBUG_MODULE)
393 ssize_t
iommu_dump_ctx(struct iommu
*obj
, char *buf
, ssize_t bytes
)
398 clk_enable(obj
->clk
);
400 bytes
= arch_iommu
->dump_ctx(obj
, buf
, bytes
);
402 clk_disable(obj
->clk
);
406 EXPORT_SYMBOL_GPL(iommu_dump_ctx
);
408 static int __dump_tlb_entries(struct iommu
*obj
, struct cr_regs
*crs
, int num
)
411 struct iotlb_lock saved
;
413 struct cr_regs
*p
= crs
;
415 clk_enable(obj
->clk
);
416 iotlb_lock_get(obj
, &saved
);
418 for_each_iotlb_cr(obj
, num
, i
, tmp
) {
419 if (!iotlb_cr_valid(&tmp
))
424 iotlb_lock_set(obj
, &saved
);
425 clk_disable(obj
->clk
);
431 * dump_tlb_entries - dump cr arrays to given buffer
433 * @buf: output buffer
435 size_t dump_tlb_entries(struct iommu
*obj
, char *buf
, ssize_t bytes
)
441 num
= bytes
/ sizeof(*cr
);
442 num
= min(obj
->nr_tlb_entries
, num
);
444 cr
= kcalloc(num
, sizeof(*cr
), GFP_KERNEL
);
448 num
= __dump_tlb_entries(obj
, cr
, num
);
449 for (i
= 0; i
< num
; i
++)
450 p
+= iotlb_dump_cr(obj
, cr
+ i
, p
);
455 EXPORT_SYMBOL_GPL(dump_tlb_entries
);
457 int foreach_iommu_device(void *data
, int (*fn
)(struct device
*, void *))
459 return driver_for_each_device(&omap_iommu_driver
.driver
,
462 EXPORT_SYMBOL_GPL(foreach_iommu_device
);
464 #endif /* CONFIG_OMAP_IOMMU_DEBUG_MODULE */
467 * H/W pagetable operations
469 static void flush_iopgd_range(u32
*first
, u32
*last
)
471 /* FIXME: L2 cache should be taken care of if it exists */
473 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pgd"
475 first
+= L1_CACHE_BYTES
/ sizeof(*first
);
476 } while (first
<= last
);
479 static void flush_iopte_range(u32
*first
, u32
*last
)
481 /* FIXME: L2 cache should be taken care of if it exists */
483 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pte"
485 first
+= L1_CACHE_BYTES
/ sizeof(*first
);
486 } while (first
<= last
);
489 static void iopte_free(u32
*iopte
)
491 /* Note: freed iopte's must be clean ready for re-use */
492 kmem_cache_free(iopte_cachep
, iopte
);
495 static u32
*iopte_alloc(struct iommu
*obj
, u32
*iopgd
, u32 da
)
499 /* a table has already existed */
504 * do the allocation outside the page table lock
506 spin_unlock(&obj
->page_table_lock
);
507 iopte
= kmem_cache_zalloc(iopte_cachep
, GFP_KERNEL
);
508 spin_lock(&obj
->page_table_lock
);
512 return ERR_PTR(-ENOMEM
);
514 *iopgd
= virt_to_phys(iopte
) | IOPGD_TABLE
;
515 flush_iopgd_range(iopgd
, iopgd
);
517 dev_vdbg(obj
->dev
, "%s: a new pte:%p\n", __func__
, iopte
);
519 /* We raced, free the reduniovant table */
524 iopte
= iopte_offset(iopgd
, da
);
527 "%s: da:%08x pgd:%p *pgd:%08x pte:%p *pte:%08x\n",
528 __func__
, da
, iopgd
, *iopgd
, iopte
, *iopte
);
533 static int iopgd_alloc_section(struct iommu
*obj
, u32 da
, u32 pa
, u32 prot
)
535 u32
*iopgd
= iopgd_offset(obj
, da
);
537 if ((da
| pa
) & ~IOSECTION_MASK
) {
538 dev_err(obj
->dev
, "%s: %08x:%08x should aligned on %08lx\n",
539 __func__
, da
, pa
, IOSECTION_SIZE
);
543 *iopgd
= (pa
& IOSECTION_MASK
) | prot
| IOPGD_SECTION
;
544 flush_iopgd_range(iopgd
, iopgd
);
548 static int iopgd_alloc_super(struct iommu
*obj
, u32 da
, u32 pa
, u32 prot
)
550 u32
*iopgd
= iopgd_offset(obj
, da
);
553 if ((da
| pa
) & ~IOSUPER_MASK
) {
554 dev_err(obj
->dev
, "%s: %08x:%08x should aligned on %08lx\n",
555 __func__
, da
, pa
, IOSUPER_SIZE
);
559 for (i
= 0; i
< 16; i
++)
560 *(iopgd
+ i
) = (pa
& IOSUPER_MASK
) | prot
| IOPGD_SUPER
;
561 flush_iopgd_range(iopgd
, iopgd
+ 15);
565 static int iopte_alloc_page(struct iommu
*obj
, u32 da
, u32 pa
, u32 prot
)
567 u32
*iopgd
= iopgd_offset(obj
, da
);
568 u32
*iopte
= iopte_alloc(obj
, iopgd
, da
);
571 return PTR_ERR(iopte
);
573 *iopte
= (pa
& IOPAGE_MASK
) | prot
| IOPTE_SMALL
;
574 flush_iopte_range(iopte
, iopte
);
576 dev_vdbg(obj
->dev
, "%s: da:%08x pa:%08x pte:%p *pte:%08x\n",
577 __func__
, da
, pa
, iopte
, *iopte
);
582 static int iopte_alloc_large(struct iommu
*obj
, u32 da
, u32 pa
, u32 prot
)
584 u32
*iopgd
= iopgd_offset(obj
, da
);
585 u32
*iopte
= iopte_alloc(obj
, iopgd
, da
);
588 if ((da
| pa
) & ~IOLARGE_MASK
) {
589 dev_err(obj
->dev
, "%s: %08x:%08x should aligned on %08lx\n",
590 __func__
, da
, pa
, IOLARGE_SIZE
);
595 return PTR_ERR(iopte
);
597 for (i
= 0; i
< 16; i
++)
598 *(iopte
+ i
) = (pa
& IOLARGE_MASK
) | prot
| IOPTE_LARGE
;
599 flush_iopte_range(iopte
, iopte
+ 15);
603 static int iopgtable_store_entry_core(struct iommu
*obj
, struct iotlb_entry
*e
)
605 int (*fn
)(struct iommu
*, u32
, u32
, u32
);
613 case MMU_CAM_PGSZ_16M
:
614 fn
= iopgd_alloc_super
;
616 case MMU_CAM_PGSZ_1M
:
617 fn
= iopgd_alloc_section
;
619 case MMU_CAM_PGSZ_64K
:
620 fn
= iopte_alloc_large
;
622 case MMU_CAM_PGSZ_4K
:
623 fn
= iopte_alloc_page
;
631 prot
= get_iopte_attr(e
);
633 spin_lock(&obj
->page_table_lock
);
634 err
= fn(obj
, e
->da
, e
->pa
, prot
);
635 spin_unlock(&obj
->page_table_lock
);
641 * iopgtable_store_entry - Make an iommu pte entry
643 * @e: an iommu tlb entry info
645 int iopgtable_store_entry(struct iommu
*obj
, struct iotlb_entry
*e
)
649 flush_iotlb_page(obj
, e
->da
);
650 err
= iopgtable_store_entry_core(obj
, e
);
651 #ifdef PREFETCH_IOTLB
653 load_iotlb_entry(obj
, e
);
657 EXPORT_SYMBOL_GPL(iopgtable_store_entry
);
660 * iopgtable_lookup_entry - Lookup an iommu pte entry
662 * @da: iommu device virtual address
663 * @ppgd: iommu pgd entry pointer to be returned
664 * @ppte: iommu pte entry pointer to be returned
666 void iopgtable_lookup_entry(struct iommu
*obj
, u32 da
, u32
**ppgd
, u32
**ppte
)
668 u32
*iopgd
, *iopte
= NULL
;
670 iopgd
= iopgd_offset(obj
, da
);
674 if (iopgd_is_table(*iopgd
))
675 iopte
= iopte_offset(iopgd
, da
);
680 EXPORT_SYMBOL_GPL(iopgtable_lookup_entry
);
682 static size_t iopgtable_clear_entry_core(struct iommu
*obj
, u32 da
)
685 u32
*iopgd
= iopgd_offset(obj
, da
);
691 if (iopgd_is_table(*iopgd
)) {
693 u32
*iopte
= iopte_offset(iopgd
, da
);
696 if (*iopte
& IOPTE_LARGE
) {
698 /* rewind to the 1st entry */
699 iopte
= iopte_offset(iopgd
, (da
& IOLARGE_MASK
));
702 memset(iopte
, 0, nent
* sizeof(*iopte
));
703 flush_iopte_range(iopte
, iopte
+ (nent
- 1) * sizeof(*iopte
));
706 * do table walk to check if this table is necessary or not
708 iopte
= iopte_offset(iopgd
, 0);
709 for (i
= 0; i
< PTRS_PER_IOPTE
; i
++)
714 nent
= 1; /* for the next L1 entry */
717 if ((*iopgd
& IOPGD_SUPER
) == IOPGD_SUPER
) {
719 /* rewind to the 1st entry */
720 iopgd
= iopgd_offset(obj
, (da
& IOSUPER_MASK
));
724 memset(iopgd
, 0, nent
* sizeof(*iopgd
));
725 flush_iopgd_range(iopgd
, iopgd
+ (nent
- 1) * sizeof(*iopgd
));
731 * iopgtable_clear_entry - Remove an iommu pte entry
733 * @da: iommu device virtual address
735 size_t iopgtable_clear_entry(struct iommu
*obj
, u32 da
)
739 spin_lock(&obj
->page_table_lock
);
741 bytes
= iopgtable_clear_entry_core(obj
, da
);
742 flush_iotlb_page(obj
, da
);
744 spin_unlock(&obj
->page_table_lock
);
748 EXPORT_SYMBOL_GPL(iopgtable_clear_entry
);
750 static void iopgtable_clear_entry_all(struct iommu
*obj
)
754 spin_lock(&obj
->page_table_lock
);
756 for (i
= 0; i
< PTRS_PER_IOPGD
; i
++) {
760 da
= i
<< IOPGD_SHIFT
;
761 iopgd
= iopgd_offset(obj
, da
);
766 if (iopgd_is_table(*iopgd
))
767 iopte_free(iopte_offset(iopgd
, 0));
770 flush_iopgd_range(iopgd
, iopgd
);
773 flush_iotlb_all(obj
);
775 spin_unlock(&obj
->page_table_lock
);
779 * Device IOMMU generic operations
781 static irqreturn_t
iommu_fault_handler(int irq
, void *data
)
786 struct iommu
*obj
= data
;
791 /* Dynamic loading TLB or PTE */
798 clk_enable(obj
->clk
);
799 stat
= iommu_report_fault(obj
, &da
);
800 clk_disable(obj
->clk
);
806 iopgd
= iopgd_offset(obj
, da
);
808 if (!iopgd_is_table(*iopgd
)) {
809 dev_err(obj
->dev
, "%s: da:%08x pgd:%p *pgd:%08x\n", __func__
,
814 iopte
= iopte_offset(iopgd
, da
);
816 dev_err(obj
->dev
, "%s: da:%08x pgd:%p *pgd:%08x pte:%p *pte:%08x\n",
817 __func__
, da
, iopgd
, *iopgd
, iopte
, *iopte
);
822 static int device_match_by_alias(struct device
*dev
, void *data
)
824 struct iommu
*obj
= to_iommu(dev
);
825 const char *name
= data
;
827 pr_debug("%s: %s %s\n", __func__
, obj
->name
, name
);
829 return strcmp(obj
->name
, name
) == 0;
833 * iommu_set_da_range - Set a valid device address range
835 * @start Start of valid range
836 * @end End of valid range
838 int iommu_set_da_range(struct iommu
*obj
, u32 start
, u32 end
)
844 if (end
< start
|| !PAGE_ALIGN(start
| end
))
847 obj
->da_start
= start
;
852 EXPORT_SYMBOL_GPL(iommu_set_da_range
);
855 * iommu_get - Get iommu handler
856 * @name: target iommu name
858 struct iommu
*iommu_get(const char *name
)
864 dev
= driver_find_device(&omap_iommu_driver
.driver
, NULL
, (void *)name
,
865 device_match_by_alias
);
867 return ERR_PTR(-ENODEV
);
871 mutex_lock(&obj
->iommu_lock
);
873 if (obj
->refcount
++ == 0) {
874 err
= iommu_enable(obj
);
877 flush_iotlb_all(obj
);
880 if (!try_module_get(obj
->owner
))
883 mutex_unlock(&obj
->iommu_lock
);
885 dev_dbg(obj
->dev
, "%s: %s\n", __func__
, obj
->name
);
889 if (obj
->refcount
== 1)
893 mutex_unlock(&obj
->iommu_lock
);
896 EXPORT_SYMBOL_GPL(iommu_get
);
899 * iommu_put - Put back iommu handler
902 void iommu_put(struct iommu
*obj
)
904 if (!obj
|| IS_ERR(obj
))
907 mutex_lock(&obj
->iommu_lock
);
909 if (--obj
->refcount
== 0)
912 module_put(obj
->owner
);
914 mutex_unlock(&obj
->iommu_lock
);
916 dev_dbg(obj
->dev
, "%s: %s\n", __func__
, obj
->name
);
918 EXPORT_SYMBOL_GPL(iommu_put
);
921 * OMAP Device MMU(IOMMU) detection
923 static int __devinit
omap_iommu_probe(struct platform_device
*pdev
)
929 struct resource
*res
;
930 struct iommu_platform_data
*pdata
= pdev
->dev
.platform_data
;
932 if (pdev
->num_resources
!= 2)
935 obj
= kzalloc(sizeof(*obj
) + MMU_REG_SIZE
, GFP_KERNEL
);
939 obj
->clk
= clk_get(&pdev
->dev
, pdata
->clk_name
);
940 if (IS_ERR(obj
->clk
))
943 obj
->nr_tlb_entries
= pdata
->nr_tlb_entries
;
944 obj
->name
= pdata
->name
;
945 obj
->dev
= &pdev
->dev
;
946 obj
->ctx
= (void *)obj
+ sizeof(*obj
);
947 obj
->da_start
= pdata
->da_start
;
948 obj
->da_end
= pdata
->da_end
;
950 mutex_init(&obj
->iommu_lock
);
951 mutex_init(&obj
->mmap_lock
);
952 spin_lock_init(&obj
->page_table_lock
);
953 INIT_LIST_HEAD(&obj
->mmap
);
955 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
960 obj
->regbase
= ioremap(res
->start
, resource_size(res
));
966 res
= request_mem_region(res
->start
, resource_size(res
),
967 dev_name(&pdev
->dev
));
973 irq
= platform_get_irq(pdev
, 0);
978 err
= request_irq(irq
, iommu_fault_handler
, IRQF_SHARED
,
979 dev_name(&pdev
->dev
), obj
);
982 platform_set_drvdata(pdev
, obj
);
984 p
= (void *)__get_free_pages(GFP_KERNEL
, get_order(IOPGD_TABLE_SIZE
));
989 memset(p
, 0, IOPGD_TABLE_SIZE
);
990 clean_dcache_area(p
, IOPGD_TABLE_SIZE
);
993 BUG_ON(!IS_ALIGNED((unsigned long)obj
->iopgd
, IOPGD_TABLE_SIZE
));
995 dev_info(&pdev
->dev
, "%s registered\n", obj
->name
);
1001 release_mem_region(res
->start
, resource_size(res
));
1002 iounmap(obj
->regbase
);
1010 static int __devexit
omap_iommu_remove(struct platform_device
*pdev
)
1013 struct resource
*res
;
1014 struct iommu
*obj
= platform_get_drvdata(pdev
);
1016 platform_set_drvdata(pdev
, NULL
);
1018 iopgtable_clear_entry_all(obj
);
1019 free_pages((unsigned long)obj
->iopgd
, get_order(IOPGD_TABLE_SIZE
));
1021 irq
= platform_get_irq(pdev
, 0);
1023 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1024 release_mem_region(res
->start
, resource_size(res
));
1025 iounmap(obj
->regbase
);
1028 dev_info(&pdev
->dev
, "%s removed\n", obj
->name
);
1033 static struct platform_driver omap_iommu_driver
= {
1034 .probe
= omap_iommu_probe
,
1035 .remove
= __devexit_p(omap_iommu_remove
),
1037 .name
= "omap-iommu",
1041 static void iopte_cachep_ctor(void *iopte
)
1043 clean_dcache_area(iopte
, IOPTE_TABLE_SIZE
);
1046 static int __init
omap_iommu_init(void)
1048 struct kmem_cache
*p
;
1049 const unsigned long flags
= SLAB_HWCACHE_ALIGN
;
1050 size_t align
= 1 << 10; /* L2 pagetable alignement */
1052 p
= kmem_cache_create("iopte_cache", IOPTE_TABLE_SIZE
, align
, flags
,
1058 return platform_driver_register(&omap_iommu_driver
);
1060 module_init(omap_iommu_init
);
1062 static void __exit
omap_iommu_exit(void)
1064 kmem_cache_destroy(iopte_cachep
);
1066 platform_driver_unregister(&omap_iommu_driver
);
1068 module_exit(omap_iommu_exit
);
1070 MODULE_DESCRIPTION("omap iommu: tlb and pagetable primitives");
1071 MODULE_ALIAS("platform:omap-iommu");
1072 MODULE_AUTHOR("Hiroshi DOYU, Paul Mundt and Toshihiro Kobayashi");
1073 MODULE_LICENSE("GPL v2");