2 * omap iommu: main structures
4 * Copyright (C) 2008-2009 Nokia Corporation
6 * Written by Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #ifndef __MACH_IOMMU_H
14 #define __MACH_IOMMU_H
19 u32 pgsz
, prsvd
, valid
;
23 u32 endian
, elsz
, mixed
;
32 void __iomem
*regbase
;
35 struct iommu_domain
*domain
;
37 unsigned int refcount
;
38 spinlock_t iommu_lock
; /* global for this whole object */
41 * We don't change iopgd for a situation like pgd for a task,
42 * but share it globally for each iommu.
45 spinlock_t page_table_lock
; /* protect iopgd */
49 struct list_head mmap
;
50 struct mutex mmap_lock
; /* protect mmap */
52 void *ctx
; /* iommu context: registres saved area */
79 /* architecture specific functions */
80 struct iommu_functions
{
81 unsigned long version
;
83 int (*enable
)(struct omap_iommu
*obj
);
84 void (*disable
)(struct omap_iommu
*obj
);
85 void (*set_twl
)(struct omap_iommu
*obj
, bool on
);
86 u32 (*fault_isr
)(struct omap_iommu
*obj
, u32
*ra
);
88 void (*tlb_read_cr
)(struct omap_iommu
*obj
, struct cr_regs
*cr
);
89 void (*tlb_load_cr
)(struct omap_iommu
*obj
, struct cr_regs
*cr
);
91 struct cr_regs
*(*alloc_cr
)(struct omap_iommu
*obj
,
92 struct iotlb_entry
*e
);
93 int (*cr_valid
)(struct cr_regs
*cr
);
94 u32 (*cr_to_virt
)(struct cr_regs
*cr
);
95 void (*cr_to_e
)(struct cr_regs
*cr
, struct iotlb_entry
*e
);
96 ssize_t (*dump_cr
)(struct omap_iommu
*obj
, struct cr_regs
*cr
,
99 u32 (*get_pte_attr
)(struct iotlb_entry
*e
);
101 void (*save_ctx
)(struct omap_iommu
*obj
);
102 void (*restore_ctx
)(struct omap_iommu
*obj
);
103 ssize_t (*dump_ctx
)(struct omap_iommu
*obj
, char *buf
, ssize_t len
);
106 struct iommu_platform_data
{
108 const char *clk_name
;
109 const int nr_tlb_entries
;
115 * struct iommu_arch_data - omap iommu private data
116 * @name: name of the iommu device
117 * @iommu_dev: handle of the iommu device
119 * This is an omap iommu private data object, which binds an iommu user
120 * to its iommu device. This object should be placed at the iommu user's
121 * dev_archdata so generic IOMMU API can be used without having to
122 * utilize omap-specific plumbing anymore.
124 struct omap_iommu_arch_data
{
126 struct omap_iommu
*iommu_dev
;
130 * dev_to_omap_iommu() - retrieves an omap iommu object from a user device
131 * @dev: iommu client device
133 static inline struct omap_iommu
*dev_to_omap_iommu(struct device
*dev
)
135 struct omap_iommu_arch_data
*arch_data
= dev
->archdata
.iommu
;
137 return arch_data
->iommu_dev
;
141 #define OMAP_IOMMU_ERR_TLB_MISS (1 << 0)
142 #define OMAP_IOMMU_ERR_TRANS_FAULT (1 << 1)
143 #define OMAP_IOMMU_ERR_EMU_MISS (1 << 2)
144 #define OMAP_IOMMU_ERR_TBLWALK_FAULT (1 << 3)
145 #define OMAP_IOMMU_ERR_MULTIHIT_FAULT (1 << 4)
147 #if defined(CONFIG_ARCH_OMAP1)
148 #error "iommu for this processor not implemented yet"
150 #include <plat/iommu2.h>
154 * utilities for super page(16MB, 1MB, 64KB and 4KB)
157 #define iopgsz_max(bytes) \
158 (((bytes) >= SZ_16M) ? SZ_16M : \
159 ((bytes) >= SZ_1M) ? SZ_1M : \
160 ((bytes) >= SZ_64K) ? SZ_64K : \
161 ((bytes) >= SZ_4K) ? SZ_4K : 0)
163 #define bytes_to_iopgsz(bytes) \
164 (((bytes) == SZ_16M) ? MMU_CAM_PGSZ_16M : \
165 ((bytes) == SZ_1M) ? MMU_CAM_PGSZ_1M : \
166 ((bytes) == SZ_64K) ? MMU_CAM_PGSZ_64K : \
167 ((bytes) == SZ_4K) ? MMU_CAM_PGSZ_4K : -1)
169 #define iopgsz_to_bytes(iopgsz) \
170 (((iopgsz) == MMU_CAM_PGSZ_16M) ? SZ_16M : \
171 ((iopgsz) == MMU_CAM_PGSZ_1M) ? SZ_1M : \
172 ((iopgsz) == MMU_CAM_PGSZ_64K) ? SZ_64K : \
173 ((iopgsz) == MMU_CAM_PGSZ_4K) ? SZ_4K : 0)
175 #define iopgsz_ok(bytes) (bytes_to_iopgsz(bytes) >= 0)
180 extern u32
omap_iommu_arch_version(void);
182 extern void omap_iotlb_cr_to_e(struct cr_regs
*cr
, struct iotlb_entry
*e
);
185 omap_iopgtable_store_entry(struct omap_iommu
*obj
, struct iotlb_entry
*e
);
187 extern int omap_iommu_set_isr(const char *name
,
188 int (*isr
)(struct omap_iommu
*obj
, u32 da
, u32 iommu_errs
,
192 extern void omap_iommu_save_ctx(struct device
*dev
);
193 extern void omap_iommu_restore_ctx(struct device
*dev
);
195 extern int omap_install_iommu_arch(const struct iommu_functions
*ops
);
196 extern void omap_uninstall_iommu_arch(const struct iommu_functions
*ops
);
198 extern int omap_foreach_iommu_device(void *data
,
199 int (*fn
)(struct device
*, void *));
202 omap_iommu_dump_ctx(struct omap_iommu
*obj
, char *buf
, ssize_t len
);
204 omap_dump_tlb_entries(struct omap_iommu
*obj
, char *buf
, ssize_t len
);
206 #endif /* __MACH_IOMMU_H */