blob: 196a14be4b3da95306ff0a8994e9ecdaad86162b [file] [log] [blame]
Pratik Patela06ae862014-11-03 11:07:35 -07001/* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#ifndef _CORESIGHT_PRIV_H
14#define _CORESIGHT_PRIV_H
15
16#include <linux/bitops.h>
17#include <linux/io.h>
18#include <linux/coresight.h>
Mathieu Poiriercd9e3472016-08-25 15:19:02 -060019#include <linux/pm_runtime.h>
Pratik Patela06ae862014-11-03 11:07:35 -070020
21/*
22 * Coresight management registers (0xf00-0xfcc)
23 * 0xfa0 - 0xfa4: Management registers in PFTv1.0
24 * Trace registers in PFTv1.1
25 */
26#define CORESIGHT_ITCTRL 0xf00
27#define CORESIGHT_CLAIMSET 0xfa0
28#define CORESIGHT_CLAIMCLR 0xfa4
29#define CORESIGHT_LAR 0xfb0
30#define CORESIGHT_LSR 0xfb4
31#define CORESIGHT_AUTHSTATUS 0xfb8
32#define CORESIGHT_DEVID 0xfc8
33#define CORESIGHT_DEVTYPE 0xfcc
34
35#define TIMEOUT_US 100
36#define BMVAL(val, lsb, msb) ((val & GENMASK(msb, lsb)) >> lsb)
37
Mathieu Poirier21271542016-02-17 17:51:56 -070038#define ETM_MODE_EXCL_KERN BIT(30)
39#define ETM_MODE_EXCL_USER BIT(31)
40
Sudeep Holla3224dcc2016-08-25 15:19:09 -060041typedef u32 (*coresight_read_fn)(const struct device *, u32 offset);
42#define coresight_simple_func(type, func, name, offset) \
Mathieu Poirier154f35202016-04-05 11:53:50 -060043static ssize_t name##_show(struct device *_dev, \
44 struct device_attribute *attr, char *buf) \
45{ \
46 type *drvdata = dev_get_drvdata(_dev->parent); \
Sudeep Holla3224dcc2016-08-25 15:19:09 -060047 coresight_read_fn fn = func; \
Mathieu Poiriercd9e3472016-08-25 15:19:02 -060048 u32 val; \
49 pm_runtime_get_sync(_dev->parent); \
Sudeep Holla3224dcc2016-08-25 15:19:09 -060050 if (fn) \
51 val = fn(_dev->parent, offset); \
52 else \
53 val = readl_relaxed(drvdata->base + offset); \
Mathieu Poiriercd9e3472016-08-25 15:19:02 -060054 pm_runtime_put_sync(_dev->parent); \
55 return scnprintf(buf, PAGE_SIZE, "0x%x\n", val); \
Mathieu Poirier154f35202016-04-05 11:53:50 -060056} \
57static DEVICE_ATTR_RO(name)
58
Mathieu Poirier2b7adc42016-08-25 15:19:11 -060059enum etm_addr_type {
60 ETM_ADDR_TYPE_NONE,
61 ETM_ADDR_TYPE_SINGLE,
62 ETM_ADDR_TYPE_RANGE,
63 ETM_ADDR_TYPE_START,
64 ETM_ADDR_TYPE_STOP,
65};
66
Mathieu Poirier22fd5322016-02-17 17:51:52 -070067enum cs_mode {
68 CS_MODE_DISABLED,
69 CS_MODE_SYSFS,
70 CS_MODE_PERF,
71};
72
Mathieu Poiriera02e81f2016-05-03 11:33:58 -060073/**
74 * struct cs_buffer - keep track of a recording session' specifics
75 * @cur: index of the current buffer
76 * @nr_pages: max number of pages granted to us
77 * @offset: offset within the current buffer
78 * @data_size: how much we collected in this run
79 * @lost: other than zero if we had a HW buffer wrap around
80 * @snapshot: is this run in snapshot mode
81 * @data_pages: a handle the ring buffer
82 */
83struct cs_buffers {
84 unsigned int cur;
85 unsigned int nr_pages;
86 unsigned long offset;
87 local_t data_size;
88 local_t lost;
89 bool snapshot;
90 void **data_pages;
91};
92
Pratik Patela06ae862014-11-03 11:07:35 -070093static inline void CS_LOCK(void __iomem *addr)
94{
95 do {
96 /* Wait for things to settle */
97 mb();
98 writel_relaxed(0x0, addr + CORESIGHT_LAR);
99 } while (0);
100}
101
102static inline void CS_UNLOCK(void __iomem *addr)
103{
104 do {
105 writel_relaxed(CORESIGHT_UNLOCK, addr + CORESIGHT_LAR);
Pankaj Dubey84b763d2014-11-13 14:12:47 +0530106 /* Make sure everyone has seen this */
Pratik Patela06ae862014-11-03 11:07:35 -0700107 mb();
108 } while (0);
109}
110
Mathieu Poirierb3e94402016-02-17 17:51:45 -0700111void coresight_disable_path(struct list_head *path);
Mathieu Poiriere827d452016-02-17 17:51:59 -0700112int coresight_enable_path(struct list_head *path, u32 mode);
Mathieu Poirierb6404e22016-02-17 17:51:46 -0700113struct coresight_device *coresight_get_sink(struct list_head *path);
Mathieu Poirierb3e94402016-02-17 17:51:45 -0700114struct list_head *coresight_build_path(struct coresight_device *csdev);
115void coresight_release_path(struct list_head *path);
116
Pratik Patela06ae862014-11-03 11:07:35 -0700117#ifdef CONFIG_CORESIGHT_SOURCE_ETM3X
118extern int etm_readl_cp14(u32 off, unsigned int *val);
119extern int etm_writel_cp14(u32 off, u32 val);
120#else
121static inline int etm_readl_cp14(u32 off, unsigned int *val) { return 0; }
Kaixu Xia5fb31cd2015-01-26 09:22:25 -0700122static inline int etm_writel_cp14(u32 off, u32 val) { return 0; }
Pratik Patela06ae862014-11-03 11:07:35 -0700123#endif
124
125#endif