Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
4 *
5 * Description: CoreSight Trace Port Interface Unit driver
6 */
7
8#include <linux/atomic.h>
9#include <linux/kernel.h>
10#include <linux/init.h>
11#include <linux/device.h>
12#include <linux/io.h>
13#include <linux/err.h>
14#include <linux/slab.h>
15#include <linux/pm_runtime.h>
16#include <linux/coresight.h>
17#include <linux/amba/bus.h>
18#include <linux/clk.h>
19
20#include "coresight-priv.h"
21
22#define TPIU_SUPP_PORTSZ 0x000
23#define TPIU_CURR_PORTSZ 0x004
24#define TPIU_SUPP_TRIGMODES 0x100
25#define TPIU_TRIG_CNTRVAL 0x104
26#define TPIU_TRIG_MULT 0x108
27#define TPIU_SUPP_TESTPATM 0x200
28#define TPIU_CURR_TESTPATM 0x204
29#define TPIU_TEST_PATREPCNTR 0x208
30#define TPIU_FFSR 0x300
31#define TPIU_FFCR 0x304
32#define TPIU_FSYNC_CNTR 0x308
33#define TPIU_EXTCTL_INPORT 0x400
34#define TPIU_EXTCTL_OUTPORT 0x404
35#define TPIU_ITTRFLINACK 0xee4
36#define TPIU_ITTRFLIN 0xee8
37#define TPIU_ITATBDATA0 0xeec
38#define TPIU_ITATBCTR2 0xef0
39#define TPIU_ITATBCTR1 0xef4
40#define TPIU_ITATBCTR0 0xef8
41
42/** register definition **/
43/* FFSR - 0x300 */
44#define FFSR_FT_STOPPED_BIT 1
45/* FFCR - 0x304 */
46#define FFCR_FON_MAN_BIT 6
47#define FFCR_FON_MAN BIT(6)
48#define FFCR_STOP_FI BIT(12)
49
50DEFINE_CORESIGHT_DEVLIST(tpiu_devs, "tpiu");
51
52/**
53 * @base: memory mapped base address for this component.
54 * @atclk: optional clock for the core parts of the TPIU.
55 * @csdev: component vitals needed by the framework.
56 */
57struct tpiu_drvdata {
58 void __iomem *base;
59 struct clk *atclk;
60 struct coresight_device *csdev;
61};
62
63static void tpiu_enable_hw(struct tpiu_drvdata *drvdata)
64{
65 CS_UNLOCK(drvdata->base);
66
67 /* TODO: fill this up */
68
69 CS_LOCK(drvdata->base);
70}
71
72static int tpiu_enable(struct coresight_device *csdev, u32 mode, void *__unused)
73{
74 struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
75
76 tpiu_enable_hw(drvdata);
77 atomic_inc(csdev->refcnt);
78 dev_dbg(&csdev->dev, "TPIU enabled\n");
79 return 0;
80}
81
82static void tpiu_disable_hw(struct tpiu_drvdata *drvdata)
83{
84 CS_UNLOCK(drvdata->base);
85
86 /* Clear formatter and stop on flush */
87 writel_relaxed(FFCR_STOP_FI, drvdata->base + TPIU_FFCR);
88 /* Generate manual flush */
89 writel_relaxed(FFCR_STOP_FI | FFCR_FON_MAN, drvdata->base + TPIU_FFCR);
90 /* Wait for flush to complete */
91 coresight_timeout(drvdata->base, TPIU_FFCR, FFCR_FON_MAN_BIT, 0);
92 /* Wait for formatter to stop */
93 coresight_timeout(drvdata->base, TPIU_FFSR, FFSR_FT_STOPPED_BIT, 1);
94
95 CS_LOCK(drvdata->base);
96}
97
98static int tpiu_disable(struct coresight_device *csdev)
99{
100 struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
101
102 if (atomic_dec_return(csdev->refcnt))
103 return -EBUSY;
104
105 tpiu_disable_hw(drvdata);
106
107 dev_dbg(&csdev->dev, "TPIU disabled\n");
108 return 0;
109}
110
111static const struct coresight_ops_sink tpiu_sink_ops = {
112 .enable = tpiu_enable,
113 .disable = tpiu_disable,
114};
115
116static const struct coresight_ops tpiu_cs_ops = {
117 .sink_ops = &tpiu_sink_ops,
118};
119
120static int tpiu_probe(struct amba_device *adev, const struct amba_id *id)
121{
122 int ret;
123 void __iomem *base;
124 struct device *dev = &adev->dev;
125 struct coresight_platform_data *pdata = NULL;
126 struct tpiu_drvdata *drvdata;
127 struct resource *res = &adev->res;
128 struct coresight_desc desc = { 0 };
129
130 desc.name = coresight_alloc_device_name(&tpiu_devs, dev);
131 if (!desc.name)
132 return -ENOMEM;
133
134 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
135 if (!drvdata)
136 return -ENOMEM;
137
138 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */
139 if (!IS_ERR(drvdata->atclk)) {
140 ret = clk_prepare_enable(drvdata->atclk);
141 if (ret)
142 return ret;
143 }
144 dev_set_drvdata(dev, drvdata);
145
146 /* Validity for the resource is already checked by the AMBA core */
147 base = devm_ioremap_resource(dev, res);
148 if (IS_ERR(base))
149 return PTR_ERR(base);
150
151 drvdata->base = base;
152
153 /* Disable tpiu to support older devices */
154 tpiu_disable_hw(drvdata);
155
156 pdata = coresight_get_platform_data(dev);
157 if (IS_ERR(pdata))
158 return PTR_ERR(pdata);
159 dev->platform_data = pdata;
160
161 desc.type = CORESIGHT_DEV_TYPE_SINK;
162 desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_PORT;
163 desc.ops = &tpiu_cs_ops;
164 desc.pdata = pdata;
165 desc.dev = dev;
166 drvdata->csdev = coresight_register(&desc);
167
168 if (!IS_ERR(drvdata->csdev)) {
169 pm_runtime_put(&adev->dev);
170 return 0;
171 }
172
173 return PTR_ERR(drvdata->csdev);
174}
175
176#ifdef CONFIG_PM
177static int tpiu_runtime_suspend(struct device *dev)
178{
179 struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
180
181 if (drvdata && !IS_ERR(drvdata->atclk))
182 clk_disable_unprepare(drvdata->atclk);
183
184 return 0;
185}
186
187static int tpiu_runtime_resume(struct device *dev)
188{
189 struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
190
191 if (drvdata && !IS_ERR(drvdata->atclk))
192 clk_prepare_enable(drvdata->atclk);
193
194 return 0;
195}
196#endif
197
198static const struct dev_pm_ops tpiu_dev_pm_ops = {
199 SET_RUNTIME_PM_OPS(tpiu_runtime_suspend, tpiu_runtime_resume, NULL)
200};
201
202static const struct amba_id tpiu_ids[] = {
203 {
204 .id = 0x000bb912,
205 .mask = 0x000fffff,
206 },
207 {
208 .id = 0x0004b912,
209 .mask = 0x0007ffff,
210 },
211 {
212 /* Coresight SoC-600 */
213 .id = 0x000bb9e7,
214 .mask = 0x000fffff,
215 },
216 { 0, 0},
217};
218
219static struct amba_driver tpiu_driver = {
220 .drv = {
221 .name = "coresight-tpiu",
222 .owner = THIS_MODULE,
223 .pm = &tpiu_dev_pm_ops,
224 .suppress_bind_attrs = true,
225 },
226 .probe = tpiu_probe,
227 .id_table = tpiu_ids,
228};
229builtin_amba_driver(tpiu_driver);
1/* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
2 *
3 * Description: CoreSight Trace Port Interface Unit driver
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/device.h>
18#include <linux/io.h>
19#include <linux/err.h>
20#include <linux/slab.h>
21#include <linux/pm_runtime.h>
22#include <linux/coresight.h>
23#include <linux/amba/bus.h>
24#include <linux/clk.h>
25
26#include "coresight-priv.h"
27
28#define TPIU_SUPP_PORTSZ 0x000
29#define TPIU_CURR_PORTSZ 0x004
30#define TPIU_SUPP_TRIGMODES 0x100
31#define TPIU_TRIG_CNTRVAL 0x104
32#define TPIU_TRIG_MULT 0x108
33#define TPIU_SUPP_TESTPATM 0x200
34#define TPIU_CURR_TESTPATM 0x204
35#define TPIU_TEST_PATREPCNTR 0x208
36#define TPIU_FFSR 0x300
37#define TPIU_FFCR 0x304
38#define TPIU_FSYNC_CNTR 0x308
39#define TPIU_EXTCTL_INPORT 0x400
40#define TPIU_EXTCTL_OUTPORT 0x404
41#define TPIU_ITTRFLINACK 0xee4
42#define TPIU_ITTRFLIN 0xee8
43#define TPIU_ITATBDATA0 0xeec
44#define TPIU_ITATBCTR2 0xef0
45#define TPIU_ITATBCTR1 0xef4
46#define TPIU_ITATBCTR0 0xef8
47
48/** register definition **/
49/* FFCR - 0x304 */
50#define FFCR_FON_MAN BIT(6)
51
52/**
53 * @base: memory mapped base address for this component.
54 * @dev: the device entity associated to this component.
55 * @atclk: optional clock for the core parts of the TPIU.
56 * @csdev: component vitals needed by the framework.
57 */
58struct tpiu_drvdata {
59 void __iomem *base;
60 struct device *dev;
61 struct clk *atclk;
62 struct coresight_device *csdev;
63};
64
65static void tpiu_enable_hw(struct tpiu_drvdata *drvdata)
66{
67 CS_UNLOCK(drvdata->base);
68
69 /* TODO: fill this up */
70
71 CS_LOCK(drvdata->base);
72}
73
74static int tpiu_enable(struct coresight_device *csdev, u32 mode)
75{
76 struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
77
78 tpiu_enable_hw(drvdata);
79
80 dev_info(drvdata->dev, "TPIU enabled\n");
81 return 0;
82}
83
84static void tpiu_disable_hw(struct tpiu_drvdata *drvdata)
85{
86 CS_UNLOCK(drvdata->base);
87
88 /* Clear formatter controle reg. */
89 writel_relaxed(0x0, drvdata->base + TPIU_FFCR);
90 /* Generate manual flush */
91 writel_relaxed(FFCR_FON_MAN, drvdata->base + TPIU_FFCR);
92
93 CS_LOCK(drvdata->base);
94}
95
96static void tpiu_disable(struct coresight_device *csdev)
97{
98 struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
99
100 tpiu_disable_hw(drvdata);
101
102 dev_info(drvdata->dev, "TPIU disabled\n");
103}
104
105static const struct coresight_ops_sink tpiu_sink_ops = {
106 .enable = tpiu_enable,
107 .disable = tpiu_disable,
108};
109
110static const struct coresight_ops tpiu_cs_ops = {
111 .sink_ops = &tpiu_sink_ops,
112};
113
114static int tpiu_probe(struct amba_device *adev, const struct amba_id *id)
115{
116 int ret;
117 void __iomem *base;
118 struct device *dev = &adev->dev;
119 struct coresight_platform_data *pdata = NULL;
120 struct tpiu_drvdata *drvdata;
121 struct resource *res = &adev->res;
122 struct coresight_desc desc = { 0 };
123 struct device_node *np = adev->dev.of_node;
124
125 if (np) {
126 pdata = of_get_coresight_platform_data(dev, np);
127 if (IS_ERR(pdata))
128 return PTR_ERR(pdata);
129 adev->dev.platform_data = pdata;
130 }
131
132 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
133 if (!drvdata)
134 return -ENOMEM;
135
136 drvdata->dev = &adev->dev;
137 drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */
138 if (!IS_ERR(drvdata->atclk)) {
139 ret = clk_prepare_enable(drvdata->atclk);
140 if (ret)
141 return ret;
142 }
143 dev_set_drvdata(dev, drvdata);
144
145 /* Validity for the resource is already checked by the AMBA core */
146 base = devm_ioremap_resource(dev, res);
147 if (IS_ERR(base))
148 return PTR_ERR(base);
149
150 drvdata->base = base;
151
152 /* Disable tpiu to support older devices */
153 tpiu_disable_hw(drvdata);
154
155 pm_runtime_put(&adev->dev);
156
157 desc.type = CORESIGHT_DEV_TYPE_SINK;
158 desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_PORT;
159 desc.ops = &tpiu_cs_ops;
160 desc.pdata = pdata;
161 desc.dev = dev;
162 drvdata->csdev = coresight_register(&desc);
163 if (IS_ERR(drvdata->csdev))
164 return PTR_ERR(drvdata->csdev);
165
166 return 0;
167}
168
169#ifdef CONFIG_PM
170static int tpiu_runtime_suspend(struct device *dev)
171{
172 struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
173
174 if (drvdata && !IS_ERR(drvdata->atclk))
175 clk_disable_unprepare(drvdata->atclk);
176
177 return 0;
178}
179
180static int tpiu_runtime_resume(struct device *dev)
181{
182 struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
183
184 if (drvdata && !IS_ERR(drvdata->atclk))
185 clk_prepare_enable(drvdata->atclk);
186
187 return 0;
188}
189#endif
190
191static const struct dev_pm_ops tpiu_dev_pm_ops = {
192 SET_RUNTIME_PM_OPS(tpiu_runtime_suspend, tpiu_runtime_resume, NULL)
193};
194
195static struct amba_id tpiu_ids[] = {
196 {
197 .id = 0x0003b912,
198 .mask = 0x0003ffff,
199 },
200 {
201 .id = 0x0004b912,
202 .mask = 0x0007ffff,
203 },
204 { 0, 0},
205};
206
207static struct amba_driver tpiu_driver = {
208 .drv = {
209 .name = "coresight-tpiu",
210 .owner = THIS_MODULE,
211 .pm = &tpiu_dev_pm_ops,
212 .suppress_bind_attrs = true,
213 },
214 .probe = tpiu_probe,
215 .id_table = tpiu_ids,
216};
217builtin_amba_driver(tpiu_driver);