blob: a48d512579880fcb7d6795603a367ec7c1133b3f [file] [log] [blame]
Alexander Shishkinc5d6c772009-12-01 14:00:51 +01001/*
2 * linux/arch/arm/kernel/etm.c
3 *
4 * Driver for ARM's Embedded Trace Macrocell and Embedded Trace Buffer.
5 *
6 * Copyright (C) 2009 Nokia Corporation.
7 * Alexander Shishkin
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/kernel.h>
15#include <linux/init.h>
16#include <linux/types.h>
17#include <linux/io.h>
18#include <linux/sysrq.h>
19#include <linux/device.h>
20#include <linux/clk.h>
21#include <linux/amba/bus.h>
22#include <linux/fs.h>
23#include <linux/uaccess.h>
24#include <linux/miscdevice.h>
25#include <linux/vmalloc.h>
26#include <linux/mutex.h>
27#include <asm/hardware/coresight.h>
28#include <asm/sections.h>
29
30MODULE_LICENSE("GPL");
31MODULE_AUTHOR("Alexander Shishkin");
32
Alexander Shishkin8234eae2010-08-04 11:22:43 +010033/*
34 * ETM tracer state
35 */
36struct tracectx {
37 unsigned int etb_bufsz;
38 void __iomem *etb_regs;
39 void __iomem *etm_regs;
40 unsigned long flags;
41 int ncmppairs;
42 int etm_portsz;
43 struct device *dev;
44 struct clk *emu_clk;
45 struct mutex mutex;
46};
47
Alexander Shishkinc5d6c772009-12-01 14:00:51 +010048static struct tracectx tracer;
49
50static inline bool trace_isrunning(struct tracectx *t)
51{
52 return !!(t->flags & TRACER_RUNNING);
53}
54
55static int etm_setup_address_range(struct tracectx *t, int n,
56 unsigned long start, unsigned long end, int exclude, int data)
57{
58 u32 flags = ETMAAT_ARM | ETMAAT_IGNCONTEXTID | ETMAAT_NSONLY | \
59 ETMAAT_NOVALCMP;
60
61 if (n < 1 || n > t->ncmppairs)
62 return -EINVAL;
63
64 /* comparators and ranges are numbered starting with 1 as opposed
65 * to bits in a word */
66 n--;
67
68 if (data)
69 flags |= ETMAAT_DLOADSTORE;
70 else
71 flags |= ETMAAT_IEXEC;
72
73 /* first comparator for the range */
74 etm_writel(t, flags, ETMR_COMP_ACC_TYPE(n * 2));
75 etm_writel(t, start, ETMR_COMP_VAL(n * 2));
76
77 /* second comparator is right next to it */
78 etm_writel(t, flags, ETMR_COMP_ACC_TYPE(n * 2 + 1));
79 etm_writel(t, end, ETMR_COMP_VAL(n * 2 + 1));
80
81 flags = exclude ? ETMTE_INCLEXCL : 0;
82 etm_writel(t, flags | (1 << n), ETMR_TRACEENCTRL);
83
84 return 0;
85}
86
87static int trace_start(struct tracectx *t)
88{
89 u32 v;
90 unsigned long timeout = TRACER_TIMEOUT;
91
92 etb_unlock(t);
93
94 etb_writel(t, 0, ETBR_FORMATTERCTRL);
95 etb_writel(t, 1, ETBR_CTRL);
96
97 etb_lock(t);
98
99 /* configure etm */
100 v = ETMCTRL_OPTS | ETMCTRL_PROGRAM | ETMCTRL_PORTSIZE(t->etm_portsz);
101
102 if (t->flags & TRACER_CYCLE_ACC)
103 v |= ETMCTRL_CYCLEACCURATE;
104
105 etm_unlock(t);
106
107 etm_writel(t, v, ETMR_CTRL);
108
109 while (!(etm_readl(t, ETMR_CTRL) & ETMCTRL_PROGRAM) && --timeout)
110 ;
111 if (!timeout) {
112 dev_dbg(t->dev, "Waiting for progbit to assert timed out\n");
113 etm_lock(t);
114 return -EFAULT;
115 }
116
117 etm_setup_address_range(t, 1, (unsigned long)_stext,
118 (unsigned long)_etext, 0, 0);
119 etm_writel(t, 0, ETMR_TRACEENCTRL2);
120 etm_writel(t, 0, ETMR_TRACESSCTRL);
121 etm_writel(t, 0x6f, ETMR_TRACEENEVT);
122
123 v &= ~ETMCTRL_PROGRAM;
124 v |= ETMCTRL_PORTSEL;
125
126 etm_writel(t, v, ETMR_CTRL);
127
128 timeout = TRACER_TIMEOUT;
129 while (etm_readl(t, ETMR_CTRL) & ETMCTRL_PROGRAM && --timeout)
130 ;
131 if (!timeout) {
132 dev_dbg(t->dev, "Waiting for progbit to deassert timed out\n");
133 etm_lock(t);
134 return -EFAULT;
135 }
136
137 etm_lock(t);
138
139 t->flags |= TRACER_RUNNING;
140
141 return 0;
142}
143
144static int trace_stop(struct tracectx *t)
145{
146 unsigned long timeout = TRACER_TIMEOUT;
147
148 etm_unlock(t);
149
150 etm_writel(t, 0x440, ETMR_CTRL);
151 while (!(etm_readl(t, ETMR_CTRL) & ETMCTRL_PROGRAM) && --timeout)
152 ;
153 if (!timeout) {
154 dev_dbg(t->dev, "Waiting for progbit to assert timed out\n");
155 etm_lock(t);
156 return -EFAULT;
157 }
158
159 etm_lock(t);
160
161 etb_unlock(t);
162 etb_writel(t, ETBFF_MANUAL_FLUSH, ETBR_FORMATTERCTRL);
163
164 timeout = TRACER_TIMEOUT;
165 while (etb_readl(t, ETBR_FORMATTERCTRL) &
166 ETBFF_MANUAL_FLUSH && --timeout)
167 ;
168 if (!timeout) {
169 dev_dbg(t->dev, "Waiting for formatter flush to commence "
170 "timed out\n");
171 etb_lock(t);
172 return -EFAULT;
173 }
174
175 etb_writel(t, 0, ETBR_CTRL);
176
177 etb_lock(t);
178
179 t->flags &= ~TRACER_RUNNING;
180
181 return 0;
182}
183
184static int etb_getdatalen(struct tracectx *t)
185{
186 u32 v;
187 int rp, wp;
188
189 v = etb_readl(t, ETBR_STATUS);
190
191 if (v & 1)
192 return t->etb_bufsz;
193
194 rp = etb_readl(t, ETBR_READADDR);
195 wp = etb_readl(t, ETBR_WRITEADDR);
196
197 if (rp > wp) {
198 etb_writel(t, 0, ETBR_READADDR);
199 etb_writel(t, 0, ETBR_WRITEADDR);
200
201 return 0;
202 }
203
204 return wp - rp;
205}
206
207/* sysrq+v will always stop the running trace and leave it at that */
208static void etm_dump(void)
209{
210 struct tracectx *t = &tracer;
211 u32 first = 0;
212 int length;
213
214 if (!t->etb_regs) {
215 printk(KERN_INFO "No tracing hardware found\n");
216 return;
217 }
218
219 if (trace_isrunning(t))
220 trace_stop(t);
221
222 etb_unlock(t);
223
224 length = etb_getdatalen(t);
225
226 if (length == t->etb_bufsz)
227 first = etb_readl(t, ETBR_WRITEADDR);
228
229 etb_writel(t, first, ETBR_READADDR);
230
231 printk(KERN_INFO "Trace buffer contents length: %d\n", length);
232 printk(KERN_INFO "--- ETB buffer begin ---\n");
233 for (; length; length--)
234 printk("%08x", cpu_to_be32(etb_readl(t, ETBR_READMEM)));
235 printk(KERN_INFO "\n--- ETB buffer end ---\n");
236
237 /* deassert the overflow bit */
238 etb_writel(t, 1, ETBR_CTRL);
239 etb_writel(t, 0, ETBR_CTRL);
240
241 etb_writel(t, 0, ETBR_TRIGGERCOUNT);
242 etb_writel(t, 0, ETBR_READADDR);
243 etb_writel(t, 0, ETBR_WRITEADDR);
244
245 etb_lock(t);
246}
247
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700248static void sysrq_etm_dump(int key)
Alexander Shishkinc5d6c772009-12-01 14:00:51 +0100249{
250 dev_dbg(tracer.dev, "Dumping ETB buffer\n");
251 etm_dump();
252}
253
254static struct sysrq_key_op sysrq_etm_op = {
255 .handler = sysrq_etm_dump,
256 .help_msg = "ETM buffer dump",
257 .action_msg = "etm",
258};
259
260static int etb_open(struct inode *inode, struct file *file)
261{
262 if (!tracer.etb_regs)
263 return -ENODEV;
264
265 file->private_data = &tracer;
266
267 return nonseekable_open(inode, file);
268}
269
270static ssize_t etb_read(struct file *file, char __user *data,
271 size_t len, loff_t *ppos)
272{
273 int total, i;
274 long length;
275 struct tracectx *t = file->private_data;
276 u32 first = 0;
277 u32 *buf;
278
279 mutex_lock(&t->mutex);
280
281 if (trace_isrunning(t)) {
282 length = 0;
283 goto out;
284 }
285
286 etb_unlock(t);
287
288 total = etb_getdatalen(t);
289 if (total == t->etb_bufsz)
290 first = etb_readl(t, ETBR_WRITEADDR);
291
292 etb_writel(t, first, ETBR_READADDR);
293
294 length = min(total * 4, (int)len);
295 buf = vmalloc(length);
296
297 dev_dbg(t->dev, "ETB buffer length: %d\n", total);
298 dev_dbg(t->dev, "ETB status reg: %x\n", etb_readl(t, ETBR_STATUS));
299 for (i = 0; i < length / 4; i++)
300 buf[i] = etb_readl(t, ETBR_READMEM);
301
302 /* the only way to deassert overflow bit in ETB status is this */
303 etb_writel(t, 1, ETBR_CTRL);
304 etb_writel(t, 0, ETBR_CTRL);
305
306 etb_writel(t, 0, ETBR_WRITEADDR);
307 etb_writel(t, 0, ETBR_READADDR);
308 etb_writel(t, 0, ETBR_TRIGGERCOUNT);
309
310 etb_lock(t);
311
312 length -= copy_to_user(data, buf, length);
313 vfree(buf);
314
315out:
316 mutex_unlock(&t->mutex);
317
318 return length;
319}
320
321static int etb_release(struct inode *inode, struct file *file)
322{
323 /* there's nothing to do here, actually */
324 return 0;
325}
326
327static const struct file_operations etb_fops = {
328 .owner = THIS_MODULE,
329 .read = etb_read,
330 .open = etb_open,
331 .release = etb_release,
332};
333
334static struct miscdevice etb_miscdev = {
335 .name = "tracebuf",
336 .minor = 0,
337 .fops = &etb_fops,
338};
339
340static int __init etb_probe(struct amba_device *dev, struct amba_id *id)
341{
342 struct tracectx *t = &tracer;
343 int ret = 0;
344
345 ret = amba_request_regions(dev, NULL);
346 if (ret)
347 goto out;
348
349 t->etb_regs = ioremap_nocache(dev->res.start, resource_size(&dev->res));
350 if (!t->etb_regs) {
351 ret = -ENOMEM;
352 goto out_release;
353 }
354
355 amba_set_drvdata(dev, t);
356
357 etb_miscdev.parent = &dev->dev;
358
359 ret = misc_register(&etb_miscdev);
360 if (ret)
361 goto out_unmap;
362
363 t->emu_clk = clk_get(&dev->dev, "emu_src_ck");
364 if (IS_ERR(t->emu_clk)) {
365 dev_dbg(&dev->dev, "Failed to obtain emu_src_ck.\n");
366 return -EFAULT;
367 }
368
369 clk_enable(t->emu_clk);
370
371 etb_unlock(t);
372 t->etb_bufsz = etb_readl(t, ETBR_DEPTH);
373 dev_dbg(&dev->dev, "Size: %x\n", t->etb_bufsz);
374
375 /* make sure trace capture is disabled */
376 etb_writel(t, 0, ETBR_CTRL);
377 etb_writel(t, 0x1000, ETBR_FORMATTERCTRL);
378 etb_lock(t);
379
380 dev_dbg(&dev->dev, "ETB AMBA driver initialized.\n");
381
382out:
383 return ret;
384
385out_unmap:
386 amba_set_drvdata(dev, NULL);
387 iounmap(t->etb_regs);
388
389out_release:
390 amba_release_regions(dev);
391
392 return ret;
393}
394
395static int etb_remove(struct amba_device *dev)
396{
397 struct tracectx *t = amba_get_drvdata(dev);
398
399 amba_set_drvdata(dev, NULL);
400
401 iounmap(t->etb_regs);
402 t->etb_regs = NULL;
403
404 clk_disable(t->emu_clk);
405 clk_put(t->emu_clk);
406
407 amba_release_regions(dev);
408
409 return 0;
410}
411
412static struct amba_id etb_ids[] = {
413 {
414 .id = 0x0003b907,
415 .mask = 0x0007ffff,
416 },
417 { 0, 0 },
418};
419
420static struct amba_driver etb_driver = {
421 .drv = {
422 .name = "etb",
423 .owner = THIS_MODULE,
424 },
425 .probe = etb_probe,
426 .remove = etb_remove,
427 .id_table = etb_ids,
428};
429
430/* use a sysfs file "trace_running" to start/stop tracing */
431static ssize_t trace_running_show(struct kobject *kobj,
432 struct kobj_attribute *attr,
433 char *buf)
434{
435 return sprintf(buf, "%x\n", trace_isrunning(&tracer));
436}
437
438static ssize_t trace_running_store(struct kobject *kobj,
439 struct kobj_attribute *attr,
440 const char *buf, size_t n)
441{
442 unsigned int value;
443 int ret;
444
445 if (sscanf(buf, "%u", &value) != 1)
446 return -EINVAL;
447
448 mutex_lock(&tracer.mutex);
449 ret = value ? trace_start(&tracer) : trace_stop(&tracer);
450 mutex_unlock(&tracer.mutex);
451
452 return ret ? : n;
453}
454
455static struct kobj_attribute trace_running_attr =
456 __ATTR(trace_running, 0644, trace_running_show, trace_running_store);
457
458static ssize_t trace_info_show(struct kobject *kobj,
459 struct kobj_attribute *attr,
460 char *buf)
461{
462 u32 etb_wa, etb_ra, etb_st, etb_fc, etm_ctrl, etm_st;
463 int datalen;
464
465 etb_unlock(&tracer);
466 datalen = etb_getdatalen(&tracer);
467 etb_wa = etb_readl(&tracer, ETBR_WRITEADDR);
468 etb_ra = etb_readl(&tracer, ETBR_READADDR);
469 etb_st = etb_readl(&tracer, ETBR_STATUS);
470 etb_fc = etb_readl(&tracer, ETBR_FORMATTERCTRL);
471 etb_lock(&tracer);
472
473 etm_unlock(&tracer);
474 etm_ctrl = etm_readl(&tracer, ETMR_CTRL);
475 etm_st = etm_readl(&tracer, ETMR_STATUS);
476 etm_lock(&tracer);
477
478 return sprintf(buf, "Trace buffer len: %d\nComparator pairs: %d\n"
479 "ETBR_WRITEADDR:\t%08x\n"
480 "ETBR_READADDR:\t%08x\n"
481 "ETBR_STATUS:\t%08x\n"
482 "ETBR_FORMATTERCTRL:\t%08x\n"
483 "ETMR_CTRL:\t%08x\n"
484 "ETMR_STATUS:\t%08x\n",
485 datalen,
486 tracer.ncmppairs,
487 etb_wa,
488 etb_ra,
489 etb_st,
490 etb_fc,
491 etm_ctrl,
492 etm_st
493 );
494}
495
496static struct kobj_attribute trace_info_attr =
497 __ATTR(trace_info, 0444, trace_info_show, NULL);
498
499static ssize_t trace_mode_show(struct kobject *kobj,
500 struct kobj_attribute *attr,
501 char *buf)
502{
503 return sprintf(buf, "%d %d\n",
504 !!(tracer.flags & TRACER_CYCLE_ACC),
505 tracer.etm_portsz);
506}
507
508static ssize_t trace_mode_store(struct kobject *kobj,
509 struct kobj_attribute *attr,
510 const char *buf, size_t n)
511{
512 unsigned int cycacc, portsz;
513
514 if (sscanf(buf, "%u %u", &cycacc, &portsz) != 2)
515 return -EINVAL;
516
517 mutex_lock(&tracer.mutex);
518 if (cycacc)
519 tracer.flags |= TRACER_CYCLE_ACC;
520 else
521 tracer.flags &= ~TRACER_CYCLE_ACC;
522
523 tracer.etm_portsz = portsz & 0x0f;
524 mutex_unlock(&tracer.mutex);
525
526 return n;
527}
528
529static struct kobj_attribute trace_mode_attr =
530 __ATTR(trace_mode, 0644, trace_mode_show, trace_mode_store);
531
532static int __init etm_probe(struct amba_device *dev, struct amba_id *id)
533{
534 struct tracectx *t = &tracer;
535 int ret = 0;
536
537 if (t->etm_regs) {
538 dev_dbg(&dev->dev, "ETM already initialized\n");
539 ret = -EBUSY;
540 goto out;
541 }
542
543 ret = amba_request_regions(dev, NULL);
544 if (ret)
545 goto out;
546
547 t->etm_regs = ioremap_nocache(dev->res.start, resource_size(&dev->res));
548 if (!t->etm_regs) {
549 ret = -ENOMEM;
550 goto out_release;
551 }
552
553 amba_set_drvdata(dev, t);
554
555 mutex_init(&t->mutex);
556 t->dev = &dev->dev;
557 t->flags = TRACER_CYCLE_ACC;
558 t->etm_portsz = 1;
559
560 etm_unlock(t);
Alexander Shishkin988257c2010-08-04 11:27:33 +0100561 (void)etm_readl(t, ETMMR_PDSR);
562 /* dummy first read */
563 (void)etm_readl(&tracer, ETMMR_OSSRR);
Alexander Shishkinc5d6c772009-12-01 14:00:51 +0100564
565 t->ncmppairs = etm_readl(t, ETMR_CONFCODE) & 0xf;
566 etm_writel(t, 0x440, ETMR_CTRL);
567 etm_lock(t);
568
569 ret = sysfs_create_file(&dev->dev.kobj,
570 &trace_running_attr.attr);
571 if (ret)
572 goto out_unmap;
573
574 /* failing to create any of these two is not fatal */
575 ret = sysfs_create_file(&dev->dev.kobj, &trace_info_attr.attr);
576 if (ret)
577 dev_dbg(&dev->dev, "Failed to create trace_info in sysfs\n");
578
579 ret = sysfs_create_file(&dev->dev.kobj, &trace_mode_attr.attr);
580 if (ret)
581 dev_dbg(&dev->dev, "Failed to create trace_mode in sysfs\n");
582
583 dev_dbg(t->dev, "ETM AMBA driver initialized.\n");
584
585out:
586 return ret;
587
588out_unmap:
589 amba_set_drvdata(dev, NULL);
590 iounmap(t->etm_regs);
591
592out_release:
593 amba_release_regions(dev);
594
595 return ret;
596}
597
598static int etm_remove(struct amba_device *dev)
599{
600 struct tracectx *t = amba_get_drvdata(dev);
601
602 amba_set_drvdata(dev, NULL);
603
604 iounmap(t->etm_regs);
605 t->etm_regs = NULL;
606
607 amba_release_regions(dev);
608
609 sysfs_remove_file(&dev->dev.kobj, &trace_running_attr.attr);
610 sysfs_remove_file(&dev->dev.kobj, &trace_info_attr.attr);
611 sysfs_remove_file(&dev->dev.kobj, &trace_mode_attr.attr);
612
613 return 0;
614}
615
616static struct amba_id etm_ids[] = {
617 {
618 .id = 0x0003b921,
619 .mask = 0x0007ffff,
620 },
621 { 0, 0 },
622};
623
624static struct amba_driver etm_driver = {
625 .drv = {
626 .name = "etm",
627 .owner = THIS_MODULE,
628 },
629 .probe = etm_probe,
630 .remove = etm_remove,
631 .id_table = etm_ids,
632};
633
634static int __init etm_init(void)
635{
636 int retval;
637
638 retval = amba_driver_register(&etb_driver);
639 if (retval) {
640 printk(KERN_ERR "Failed to register etb\n");
641 return retval;
642 }
643
644 retval = amba_driver_register(&etm_driver);
645 if (retval) {
646 amba_driver_unregister(&etb_driver);
647 printk(KERN_ERR "Failed to probe etm\n");
648 return retval;
649 }
650
651 /* not being able to install this handler is not fatal */
652 (void)register_sysrq_key('v', &sysrq_etm_op);
653
654 return 0;
655}
656
657device_initcall(etm_init);
658