blob: ebbdae262f78a8a09914b966da31cce55176e5b2 [file] [log] [blame]
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +02001/*
2 * omap iommu: omap2/3 architecture specific functions
3 *
4 * Copyright (C) 2008-2009 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/device.h>
16#include <linux/jiffies.h>
17#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +020019#include <linux/stringify.h>
20
Tony Lindgrence491cf2009-10-20 09:40:47 -070021#include <plat/iommu.h>
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +020022
23/*
24 * omap2 architecture specific register bit definitions
25 */
26#define IOMMU_ARCH_VERSION 0x00000011
27
28/* SYSCONF */
29#define MMU_SYS_IDLE_SHIFT 3
30#define MMU_SYS_IDLE_FORCE (0 << MMU_SYS_IDLE_SHIFT)
31#define MMU_SYS_IDLE_NONE (1 << MMU_SYS_IDLE_SHIFT)
32#define MMU_SYS_IDLE_SMART (2 << MMU_SYS_IDLE_SHIFT)
33#define MMU_SYS_IDLE_MASK (3 << MMU_SYS_IDLE_SHIFT)
34
35#define MMU_SYS_SOFTRESET (1 << 1)
36#define MMU_SYS_AUTOIDLE 1
37
38/* SYSSTATUS */
39#define MMU_SYS_RESETDONE 1
40
41/* IRQSTATUS & IRQENABLE */
42#define MMU_IRQ_MULTIHITFAULT (1 << 4)
43#define MMU_IRQ_TABLEWALKFAULT (1 << 3)
44#define MMU_IRQ_EMUMISS (1 << 2)
45#define MMU_IRQ_TRANSLATIONFAULT (1 << 1)
46#define MMU_IRQ_TLBMISS (1 << 0)
Kanigeri, Hari993dd172010-05-24 02:01:50 +000047
48#define __MMU_IRQ_FAULT \
49 (MMU_IRQ_MULTIHITFAULT | MMU_IRQ_EMUMISS | MMU_IRQ_TRANSLATIONFAULT)
50#define MMU_IRQ_MASK \
51 (__MMU_IRQ_FAULT | MMU_IRQ_TABLEWALKFAULT | MMU_IRQ_TLBMISS)
52#define MMU_IRQ_TWL_MASK (__MMU_IRQ_FAULT | MMU_IRQ_TABLEWALKFAULT)
53#define MMU_IRQ_TLB_MISS_MASK (__MMU_IRQ_FAULT | MMU_IRQ_TLBMISS)
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +020054
55/* MMU_CNTL */
56#define MMU_CNTL_SHIFT 1
57#define MMU_CNTL_MASK (7 << MMU_CNTL_SHIFT)
58#define MMU_CNTL_EML_TLB (1 << 3)
59#define MMU_CNTL_TWL_EN (1 << 2)
60#define MMU_CNTL_MMU_EN (1 << 1)
61
62#define get_cam_va_mask(pgsz) \
63 (((pgsz) == MMU_CAM_PGSZ_16M) ? 0xff000000 : \
64 ((pgsz) == MMU_CAM_PGSZ_1M) ? 0xfff00000 : \
65 ((pgsz) == MMU_CAM_PGSZ_64K) ? 0xffff0000 : \
66 ((pgsz) == MMU_CAM_PGSZ_4K) ? 0xfffff000 : 0)
67
68static int omap2_iommu_enable(struct iommu *obj)
69{
70 u32 l, pa;
71 unsigned long timeout;
72
73 if (!obj->iopgd || !IS_ALIGNED((u32)obj->iopgd, SZ_16K))
74 return -EINVAL;
75
76 pa = virt_to_phys(obj->iopgd);
77 if (!IS_ALIGNED(pa, SZ_16K))
78 return -EINVAL;
79
80 iommu_write_reg(obj, MMU_SYS_SOFTRESET, MMU_SYSCONFIG);
81
82 timeout = jiffies + msecs_to_jiffies(20);
83 do {
84 l = iommu_read_reg(obj, MMU_SYSSTATUS);
85 if (l & MMU_SYS_RESETDONE)
86 break;
Hiroshi DOYU055c49d2009-09-28 09:21:26 -070087 } while (!time_after(jiffies, timeout));
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +020088
89 if (!(l & MMU_SYS_RESETDONE)) {
90 dev_err(obj->dev, "can't take mmu out of reset\n");
91 return -ENODEV;
92 }
93
94 l = iommu_read_reg(obj, MMU_REVISION);
95 dev_info(obj->dev, "%s: version %d.%d\n", obj->name,
96 (l >> 4) & 0xf, l & 0xf);
97
98 l = iommu_read_reg(obj, MMU_SYSCONFIG);
99 l &= ~MMU_SYS_IDLE_MASK;
100 l |= (MMU_SYS_IDLE_SMART | MMU_SYS_AUTOIDLE);
101 iommu_write_reg(obj, l, MMU_SYSCONFIG);
102
Kanigeri, Hari993dd172010-05-24 02:01:50 +0000103 iommu_write_reg(obj, MMU_IRQ_TWL_MASK, MMU_IRQENABLE);
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200104 iommu_write_reg(obj, pa, MMU_TTB);
105
106 l = iommu_read_reg(obj, MMU_CNTL);
107 l &= ~MMU_CNTL_MASK;
108 l |= (MMU_CNTL_MMU_EN | MMU_CNTL_TWL_EN);
109 iommu_write_reg(obj, l, MMU_CNTL);
110
111 return 0;
112}
113
114static void omap2_iommu_disable(struct iommu *obj)
115{
116 u32 l = iommu_read_reg(obj, MMU_CNTL);
117
118 l &= ~MMU_CNTL_MASK;
119 iommu_write_reg(obj, l, MMU_CNTL);
120 iommu_write_reg(obj, MMU_SYS_IDLE_FORCE, MMU_SYSCONFIG);
121
122 dev_dbg(obj->dev, "%s is shutting down\n", obj->name);
123}
124
125static u32 omap2_iommu_fault_isr(struct iommu *obj, u32 *ra)
126{
127 int i;
128 u32 stat, da;
129 const char *err_msg[] = {
130 "tlb miss",
131 "translation fault",
132 "emulation miss",
133 "table walk fault",
134 "multi hit fault",
135 };
136
137 stat = iommu_read_reg(obj, MMU_IRQSTATUS);
138 stat &= MMU_IRQ_MASK;
139 if (!stat)
140 return 0;
141
142 da = iommu_read_reg(obj, MMU_FAULT_AD);
143 *ra = da;
144
145 dev_err(obj->dev, "%s:\tda:%08x ", __func__, da);
146
147 for (i = 0; i < ARRAY_SIZE(err_msg); i++) {
148 if (stat & (1 << i))
149 printk("%s ", err_msg[i]);
150 }
151 printk("\n");
152
153 iommu_write_reg(obj, stat, MMU_IRQSTATUS);
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000154 omap2_iommu_disable(obj);
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200155 return stat;
156}
157
158static void omap2_tlb_read_cr(struct iommu *obj, struct cr_regs *cr)
159{
160 cr->cam = iommu_read_reg(obj, MMU_READ_CAM);
161 cr->ram = iommu_read_reg(obj, MMU_READ_RAM);
162}
163
164static void omap2_tlb_load_cr(struct iommu *obj, struct cr_regs *cr)
165{
166 iommu_write_reg(obj, cr->cam | MMU_CAM_V, MMU_CAM);
167 iommu_write_reg(obj, cr->ram, MMU_RAM);
168}
169
170static u32 omap2_cr_to_virt(struct cr_regs *cr)
171{
172 u32 page_size = cr->cam & MMU_CAM_PGSZ_MASK;
173 u32 mask = get_cam_va_mask(cr->cam & page_size);
174
175 return cr->cam & mask;
176}
177
178static struct cr_regs *omap2_alloc_cr(struct iommu *obj, struct iotlb_entry *e)
179{
180 struct cr_regs *cr;
181
182 if (e->da & ~(get_cam_va_mask(e->pgsz))) {
183 dev_err(obj->dev, "%s:\twrong alignment: %08x\n", __func__,
184 e->da);
185 return ERR_PTR(-EINVAL);
186 }
187
188 cr = kmalloc(sizeof(*cr), GFP_KERNEL);
189 if (!cr)
190 return ERR_PTR(-ENOMEM);
191
Kanigeri, Hari77bc5ab2010-04-22 23:26:10 +0000192 cr->cam = (e->da & MMU_CAM_VATAG_MASK) | e->prsvd | e->pgsz | e->valid;
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200193 cr->ram = e->pa | e->endian | e->elsz | e->mixed;
194
195 return cr;
196}
197
198static inline int omap2_cr_valid(struct cr_regs *cr)
199{
200 return cr->cam & MMU_CAM_V;
201}
202
203static u32 omap2_get_pte_attr(struct iotlb_entry *e)
204{
205 u32 attr;
206
207 attr = e->mixed << 5;
208 attr |= e->endian;
209 attr |= e->elsz >> 3;
210 attr <<= ((e->pgsz & MMU_CAM_PGSZ_4K) ? 0 : 6);
211
212 return attr;
213}
214
215static ssize_t omap2_dump_cr(struct iommu *obj, struct cr_regs *cr, char *buf)
216{
217 char *p = buf;
218
219 /* FIXME: Need more detail analysis of cam/ram */
Kanigeri, Haribe6d8022010-04-22 23:26:11 +0000220 p += sprintf(p, "%08x %08x %01x\n", cr->cam, cr->ram,
221 (cr->cam & MMU_CAM_P) ? 1 : 0);
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200222
223 return p - buf;
224}
225
226#define pr_reg(name) \
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700227 do { \
228 ssize_t bytes; \
229 const char *str = "%20s: %08x\n"; \
230 const int maxcol = 32; \
231 bytes = snprintf(p, maxcol, str, __stringify(name), \
232 iommu_read_reg(obj, MMU_##name)); \
233 p += bytes; \
234 len -= bytes; \
235 if (len < maxcol) \
236 goto out; \
237 } while (0)
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200238
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700239static ssize_t omap2_iommu_dump_ctx(struct iommu *obj, char *buf, ssize_t len)
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200240{
241 char *p = buf;
242
243 pr_reg(REVISION);
244 pr_reg(SYSCONFIG);
245 pr_reg(SYSSTATUS);
246 pr_reg(IRQSTATUS);
247 pr_reg(IRQENABLE);
248 pr_reg(WALKING_ST);
249 pr_reg(CNTL);
250 pr_reg(FAULT_AD);
251 pr_reg(TTB);
252 pr_reg(LOCK);
253 pr_reg(LD_TLB);
254 pr_reg(CAM);
255 pr_reg(RAM);
256 pr_reg(GFLUSH);
257 pr_reg(FLUSH_ENTRY);
258 pr_reg(READ_CAM);
259 pr_reg(READ_RAM);
260 pr_reg(EMU_FAULT_AD);
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700261out:
Hiroshi DOYU2bcb5732009-01-26 15:13:45 +0200262 return p - buf;
263}
264
265static void omap2_iommu_save_ctx(struct iommu *obj)
266{
267 int i;
268 u32 *p = obj->ctx;
269
270 for (i = 0; i < (MMU_REG_SIZE / sizeof(u32)); i++) {
271 p[i] = iommu_read_reg(obj, i * sizeof(u32));
272 dev_dbg(obj->dev, "%s\t[%02d] %08x\n", __func__, i, p[i]);
273 }
274
275 BUG_ON(p[0] != IOMMU_ARCH_VERSION);
276}
277
278static void omap2_iommu_restore_ctx(struct iommu *obj)
279{
280 int i;
281 u32 *p = obj->ctx;
282
283 for (i = 0; i < (MMU_REG_SIZE / sizeof(u32)); i++) {
284 iommu_write_reg(obj, p[i], i * sizeof(u32));
285 dev_dbg(obj->dev, "%s\t[%02d] %08x\n", __func__, i, p[i]);
286 }
287
288 BUG_ON(p[0] != IOMMU_ARCH_VERSION);
289}
290
291static void omap2_cr_to_e(struct cr_regs *cr, struct iotlb_entry *e)
292{
293 e->da = cr->cam & MMU_CAM_VATAG_MASK;
294 e->pa = cr->ram & MMU_RAM_PADDR_MASK;
295 e->valid = cr->cam & MMU_CAM_V;
296 e->pgsz = cr->cam & MMU_CAM_PGSZ_MASK;
297 e->endian = cr->ram & MMU_RAM_ENDIAN_MASK;
298 e->elsz = cr->ram & MMU_RAM_ELSZ_MASK;
299 e->mixed = cr->ram & MMU_RAM_MIXED;
300}
301
302static const struct iommu_functions omap2_iommu_ops = {
303 .version = IOMMU_ARCH_VERSION,
304
305 .enable = omap2_iommu_enable,
306 .disable = omap2_iommu_disable,
307 .fault_isr = omap2_iommu_fault_isr,
308
309 .tlb_read_cr = omap2_tlb_read_cr,
310 .tlb_load_cr = omap2_tlb_load_cr,
311
312 .cr_to_e = omap2_cr_to_e,
313 .cr_to_virt = omap2_cr_to_virt,
314 .alloc_cr = omap2_alloc_cr,
315 .cr_valid = omap2_cr_valid,
316 .dump_cr = omap2_dump_cr,
317
318 .get_pte_attr = omap2_get_pte_attr,
319
320 .save_ctx = omap2_iommu_save_ctx,
321 .restore_ctx = omap2_iommu_restore_ctx,
322 .dump_ctx = omap2_iommu_dump_ctx,
323};
324
325static int __init omap2_iommu_init(void)
326{
327 return install_iommu_arch(&omap2_iommu_ops);
328}
329module_init(omap2_iommu_init);
330
331static void __exit omap2_iommu_exit(void)
332{
333 uninstall_iommu_arch(&omap2_iommu_ops);
334}
335module_exit(omap2_iommu_exit);
336
337MODULE_AUTHOR("Hiroshi DOYU, Paul Mundt and Toshihiro Kobayashi");
338MODULE_DESCRIPTION("omap iommu: omap2/3 architecture specific functions");
339MODULE_LICENSE("GPL v2");