Linux Audio

Check our new training course

Loading...
v4.6
  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;
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 = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL);
158	if (!desc)
159		return -ENOMEM;
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	if (IS_ERR(drvdata->csdev))
168		return PTR_ERR(drvdata->csdev);
169
170	dev_info(dev, "TPIU initialized\n");
171	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172}
173
174#ifdef CONFIG_PM
175static int tpiu_runtime_suspend(struct device *dev)
176{
177	struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
178
179	if (drvdata && !IS_ERR(drvdata->atclk))
180		clk_disable_unprepare(drvdata->atclk);
181
 
 
182	return 0;
183}
184
185static int tpiu_runtime_resume(struct device *dev)
186{
187	struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
188
189	if (drvdata && !IS_ERR(drvdata->atclk))
190		clk_prepare_enable(drvdata->atclk);
191
 
 
192	return 0;
193}
194#endif
195
196static const struct dev_pm_ops tpiu_dev_pm_ops = {
197	SET_RUNTIME_PM_OPS(tpiu_runtime_suspend, tpiu_runtime_resume, NULL)
198};
199
200static struct amba_id tpiu_ids[] = {
201	{
202		.id	= 0x0003b912,
203		.mask	= 0x0003ffff,
204	},
205	{
206		.id	= 0x0004b912,
207		.mask	= 0x0007ffff,
208	},
209	{ 0, 0},
 
 
 
 
 
210};
211
 
 
212static struct amba_driver tpiu_driver = {
213	.drv = {
214		.name	= "coresight-tpiu",
215		.owner	= THIS_MODULE,
216		.pm	= &tpiu_dev_pm_ops,
217		.suppress_bind_attrs = true,
218	},
219	.probe		= tpiu_probe,
 
220	.id_table	= tpiu_ids,
221};
222builtin_amba_driver(tpiu_driver);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
v6.13.7
  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/acpi.h>
  9#include <linux/amba/bus.h>
 10#include <linux/atomic.h>
 11#include <linux/clk.h>
 12#include <linux/coresight.h>
 13#include <linux/device.h>
 
 14#include <linux/err.h>
 15#include <linux/init.h>
 16#include <linux/io.h>
 17#include <linux/kernel.h>
 18#include <linux/platform_device.h>
 19#include <linux/pm_runtime.h>
 20#include <linux/slab.h>
 
 
 21
 22#include "coresight-priv.h"
 23
 24#define TPIU_SUPP_PORTSZ	0x000
 25#define TPIU_CURR_PORTSZ	0x004
 26#define TPIU_SUPP_TRIGMODES	0x100
 27#define TPIU_TRIG_CNTRVAL	0x104
 28#define TPIU_TRIG_MULT		0x108
 29#define TPIU_SUPP_TESTPATM	0x200
 30#define TPIU_CURR_TESTPATM	0x204
 31#define TPIU_TEST_PATREPCNTR	0x208
 32#define TPIU_FFSR		0x300
 33#define TPIU_FFCR		0x304
 34#define TPIU_FSYNC_CNTR		0x308
 35#define TPIU_EXTCTL_INPORT	0x400
 36#define TPIU_EXTCTL_OUTPORT	0x404
 37#define TPIU_ITTRFLINACK	0xee4
 38#define TPIU_ITTRFLIN		0xee8
 39#define TPIU_ITATBDATA0		0xeec
 40#define TPIU_ITATBCTR2		0xef0
 41#define TPIU_ITATBCTR1		0xef4
 42#define TPIU_ITATBCTR0		0xef8
 43
 44/** register definition **/
 45/* FFSR - 0x300 */
 46#define FFSR_FT_STOPPED_BIT	1
 47/* FFCR - 0x304 */
 48#define FFCR_FON_MAN_BIT	6
 49#define FFCR_FON_MAN		BIT(6)
 50#define FFCR_STOP_FI		BIT(12)
 51
 52DEFINE_CORESIGHT_DEVLIST(tpiu_devs, "tpiu");
 53
 54/*
 55 * @base:	memory mapped base address for this component.
 
 56 * @atclk:	optional clock for the core parts of the TPIU.
 57 * @pclk:	APB clock if present, otherwise NULL
 58 * @csdev:	component vitals needed by the framework.
 59 */
 60struct tpiu_drvdata {
 61	void __iomem		*base;
 
 62	struct clk		*atclk;
 63	struct clk		*pclk;
 64	struct coresight_device	*csdev;
 65	spinlock_t		spinlock;
 66};
 67
 68static void tpiu_enable_hw(struct csdev_access *csa)
 69{
 70	CS_UNLOCK(csa->base);
 71
 72	/* TODO: fill this up */
 73
 74	CS_LOCK(csa->base);
 75}
 76
 77static int tpiu_enable(struct coresight_device *csdev, enum cs_mode mode,
 78		       void *__unused)
 79{
 80	struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
 81
 82	guard(spinlock)(&drvdata->spinlock);
 83	tpiu_enable_hw(&csdev->access);
 84	csdev->refcnt++;
 85	dev_dbg(&csdev->dev, "TPIU enabled\n");
 86	return 0;
 87}
 88
 89static void tpiu_disable_hw(struct csdev_access *csa)
 90{
 91	CS_UNLOCK(csa->base);
 92
 93	/* Clear formatter and stop on flush */
 94	csdev_access_relaxed_write32(csa, FFCR_STOP_FI, TPIU_FFCR);
 95	/* Generate manual flush */
 96	csdev_access_relaxed_write32(csa, FFCR_STOP_FI | FFCR_FON_MAN, TPIU_FFCR);
 97	/* Wait for flush to complete */
 98	coresight_timeout(csa, TPIU_FFCR, FFCR_FON_MAN_BIT, 0);
 99	/* Wait for formatter to stop */
100	coresight_timeout(csa, TPIU_FFSR, FFSR_FT_STOPPED_BIT, 1);
101
102	CS_LOCK(csa->base);
103}
104
105static int tpiu_disable(struct coresight_device *csdev)
106{
107	struct tpiu_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
108
109	guard(spinlock)(&drvdata->spinlock);
110	csdev->refcnt--;
111	if (csdev->refcnt)
112		return -EBUSY;
113
114	tpiu_disable_hw(&csdev->access);
115
116	dev_dbg(&csdev->dev, "TPIU disabled\n");
117	return 0;
118}
119
120static const struct coresight_ops_sink tpiu_sink_ops = {
121	.enable		= tpiu_enable,
122	.disable	= tpiu_disable,
123};
124
125static const struct coresight_ops tpiu_cs_ops = {
126	.sink_ops	= &tpiu_sink_ops,
127};
128
129static int __tpiu_probe(struct device *dev, struct resource *res)
130{
131	int ret;
132	void __iomem *base;
 
133	struct coresight_platform_data *pdata = NULL;
134	struct tpiu_drvdata *drvdata;
135	struct coresight_desc desc = { 0 };
136
137	desc.name = coresight_alloc_device_name(&tpiu_devs, dev);
138	if (!desc.name)
139		return -ENOMEM;
 
 
 
 
 
140
141	drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
142	if (!drvdata)
143		return -ENOMEM;
144
145	spin_lock_init(&drvdata->spinlock);
146
147	drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
148	if (!IS_ERR(drvdata->atclk)) {
149		ret = clk_prepare_enable(drvdata->atclk);
150		if (ret)
151			return ret;
152	}
153
154	drvdata->pclk = coresight_get_enable_apb_pclk(dev);
155	if (IS_ERR(drvdata->pclk))
156		return -ENODEV;
157	dev_set_drvdata(dev, drvdata);
158
159	/* Validity for the resource is already checked by the AMBA core */
160	base = devm_ioremap_resource(dev, res);
161	if (IS_ERR(base))
162		return PTR_ERR(base);
163
164	drvdata->base = base;
165	desc.access = CSDEV_ACCESS_IOMEM(base);
166
167	/* Disable tpiu to support older devices */
168	tpiu_disable_hw(&desc.access);
169
170	pdata = coresight_get_platform_data(dev);
171	if (IS_ERR(pdata))
172		return PTR_ERR(pdata);
173	dev->platform_data = pdata;
174
175	desc.type = CORESIGHT_DEV_TYPE_SINK;
176	desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_PORT;
177	desc.ops = &tpiu_cs_ops;
178	desc.pdata = pdata;
179	desc.dev = dev;
180	drvdata->csdev = coresight_register(&desc);
181
182	if (!IS_ERR(drvdata->csdev))
183		return 0;
 
184
185	return PTR_ERR(drvdata->csdev);
186}
 
 
 
 
 
 
187
188static int tpiu_probe(struct amba_device *adev, const struct amba_id *id)
189{
190	int ret;
191
192	ret = __tpiu_probe(&adev->dev, &adev->res);
193	if (!ret)
194		pm_runtime_put(&adev->dev);
195	return ret;
196}
197
198static void __tpiu_remove(struct device *dev)
199{
200	struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
201
202	coresight_unregister(drvdata->csdev);
203}
204
205static void tpiu_remove(struct amba_device *adev)
206{
207	__tpiu_remove(&adev->dev);
208}
209
210#ifdef CONFIG_PM
211static int tpiu_runtime_suspend(struct device *dev)
212{
213	struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
214
215	if (drvdata && !IS_ERR(drvdata->atclk))
216		clk_disable_unprepare(drvdata->atclk);
217
218	if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
219		clk_disable_unprepare(drvdata->pclk);
220	return 0;
221}
222
223static int tpiu_runtime_resume(struct device *dev)
224{
225	struct tpiu_drvdata *drvdata = dev_get_drvdata(dev);
226
227	if (drvdata && !IS_ERR(drvdata->atclk))
228		clk_prepare_enable(drvdata->atclk);
229
230	if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
231		clk_prepare_enable(drvdata->pclk);
232	return 0;
233}
234#endif
235
236static const struct dev_pm_ops tpiu_dev_pm_ops = {
237	SET_RUNTIME_PM_OPS(tpiu_runtime_suspend, tpiu_runtime_resume, NULL)
238};
239
240static const struct amba_id tpiu_ids[] = {
241	{
242		.id	= 0x000bb912,
243		.mask	= 0x000fffff,
244	},
245	{
246		.id	= 0x0004b912,
247		.mask	= 0x0007ffff,
248	},
249	{
250		/* Coresight SoC-600 */
251		.id	= 0x000bb9e7,
252		.mask	= 0x000fffff,
253	},
254	{ 0, 0, NULL },
255};
256
257MODULE_DEVICE_TABLE(amba, tpiu_ids);
258
259static struct amba_driver tpiu_driver = {
260	.drv = {
261		.name	= "coresight-tpiu",
 
262		.pm	= &tpiu_dev_pm_ops,
263		.suppress_bind_attrs = true,
264	},
265	.probe		= tpiu_probe,
266	.remove         = tpiu_remove,
267	.id_table	= tpiu_ids,
268};
269
270static int tpiu_platform_probe(struct platform_device *pdev)
271{
272	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
273	int ret;
274
275	pm_runtime_get_noresume(&pdev->dev);
276	pm_runtime_set_active(&pdev->dev);
277	pm_runtime_enable(&pdev->dev);
278
279	ret = __tpiu_probe(&pdev->dev, res);
280	pm_runtime_put(&pdev->dev);
281	if (ret)
282		pm_runtime_disable(&pdev->dev);
283
284	return ret;
285}
286
287static void tpiu_platform_remove(struct platform_device *pdev)
288{
289	struct tpiu_drvdata *drvdata = dev_get_drvdata(&pdev->dev);
290
291	if (WARN_ON(!drvdata))
292		return;
293
294	__tpiu_remove(&pdev->dev);
295	pm_runtime_disable(&pdev->dev);
296	if (!IS_ERR_OR_NULL(drvdata->pclk))
297		clk_put(drvdata->pclk);
298}
299
300#ifdef CONFIG_ACPI
301static const struct acpi_device_id tpiu_acpi_ids[] = {
302	{"ARMHC979", 0, 0, 0}, /* ARM CoreSight TPIU */
303	{}
304};
305MODULE_DEVICE_TABLE(acpi, tpiu_acpi_ids);
306#endif
307
308static struct platform_driver tpiu_platform_driver = {
309	.probe	= tpiu_platform_probe,
310	.remove = tpiu_platform_remove,
311	.driver = {
312		.name			= "coresight-tpiu-platform",
313		.acpi_match_table	= ACPI_PTR(tpiu_acpi_ids),
314		.suppress_bind_attrs	= true,
315		.pm			= &tpiu_dev_pm_ops,
316	},
317};
318
319static int __init tpiu_init(void)
320{
321	return coresight_init_driver("tpiu", &tpiu_driver, &tpiu_platform_driver);
322}
323
324static void __exit tpiu_exit(void)
325{
326	coresight_remove_driver(&tpiu_driver, &tpiu_platform_driver);
327}
328module_init(tpiu_init);
329module_exit(tpiu_exit);
330
331MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
332MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
333MODULE_DESCRIPTION("Arm CoreSight TPIU (Trace Port Interface Unit) driver");
334MODULE_LICENSE("GPL v2");