1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
5 * Description: CoreSight Funnel driver
8 #include <linux/acpi.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/types.h>
12 #include <linux/device.h>
13 #include <linux/err.h>
15 #include <linux/slab.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/coresight.h>
20 #include <linux/amba/bus.h>
21 #include <linux/clk.h>
23 #include "coresight-priv.h"
25 #define FUNNEL_FUNCTL 0x000
26 #define FUNNEL_PRICTL 0x004
28 #define FUNNEL_HOLDTIME_MASK 0xf00
29 #define FUNNEL_HOLDTIME_SHFT 0x8
30 #define FUNNEL_HOLDTIME (0x7 << FUNNEL_HOLDTIME_SHFT)
31 #define FUNNEL_ENSx_MASK 0xff
33 DEFINE_CORESIGHT_DEVLIST(funnel_devs, "funnel");
36 * struct funnel_drvdata - specifics associated to a funnel component
37 * @base: memory mapped base address for this component.
38 * @atclk: optional clock for the core parts of the funnel.
39 * @csdev: component vitals needed by the framework.
40 * @priority: port selection order.
41 * @spinlock: serialize enable/disable operations.
43 struct funnel_drvdata {
46 struct coresight_device *csdev;
47 unsigned long priority;
51 static int dynamic_funnel_enable_hw(struct funnel_drvdata *drvdata, int port)
55 struct coresight_device *csdev = drvdata->csdev;
57 CS_UNLOCK(drvdata->base);
59 functl = readl_relaxed(drvdata->base + FUNNEL_FUNCTL);
60 /* Claim the device only when we enable the first slave */
61 if (!(functl & FUNNEL_ENSx_MASK)) {
62 rc = coresight_claim_device_unlocked(csdev);
67 functl &= ~FUNNEL_HOLDTIME_MASK;
68 functl |= FUNNEL_HOLDTIME;
69 functl |= (1 << port);
70 writel_relaxed(functl, drvdata->base + FUNNEL_FUNCTL);
71 writel_relaxed(drvdata->priority, drvdata->base + FUNNEL_PRICTL);
73 CS_LOCK(drvdata->base);
77 static int funnel_enable(struct coresight_device *csdev, int inport,
81 struct funnel_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
83 bool first_enable = false;
85 spin_lock_irqsave(&drvdata->spinlock, flags);
86 if (atomic_read(&csdev->refcnt[inport]) == 0) {
88 rc = dynamic_funnel_enable_hw(drvdata, inport);
93 atomic_inc(&csdev->refcnt[inport]);
94 spin_unlock_irqrestore(&drvdata->spinlock, flags);
97 dev_dbg(&csdev->dev, "FUNNEL inport %d enabled\n", inport);
101 static void dynamic_funnel_disable_hw(struct funnel_drvdata *drvdata,
105 struct coresight_device *csdev = drvdata->csdev;
107 CS_UNLOCK(drvdata->base);
109 functl = readl_relaxed(drvdata->base + FUNNEL_FUNCTL);
110 functl &= ~(1 << inport);
111 writel_relaxed(functl, drvdata->base + FUNNEL_FUNCTL);
113 /* Disclaim the device if none of the slaves are now active */
114 if (!(functl & FUNNEL_ENSx_MASK))
115 coresight_disclaim_device_unlocked(csdev);
117 CS_LOCK(drvdata->base);
120 static void funnel_disable(struct coresight_device *csdev, int inport,
123 struct funnel_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
125 bool last_disable = false;
127 spin_lock_irqsave(&drvdata->spinlock, flags);
128 if (atomic_dec_return(&csdev->refcnt[inport]) == 0) {
130 dynamic_funnel_disable_hw(drvdata, inport);
133 spin_unlock_irqrestore(&drvdata->spinlock, flags);
136 dev_dbg(&csdev->dev, "FUNNEL inport %d disabled\n", inport);
139 static const struct coresight_ops_link funnel_link_ops = {
140 .enable = funnel_enable,
141 .disable = funnel_disable,
144 static const struct coresight_ops funnel_cs_ops = {
145 .link_ops = &funnel_link_ops,
148 static ssize_t priority_show(struct device *dev,
149 struct device_attribute *attr, char *buf)
151 struct funnel_drvdata *drvdata = dev_get_drvdata(dev->parent);
152 unsigned long val = drvdata->priority;
154 return sprintf(buf, "%#lx\n", val);
157 static ssize_t priority_store(struct device *dev,
158 struct device_attribute *attr,
159 const char *buf, size_t size)
163 struct funnel_drvdata *drvdata = dev_get_drvdata(dev->parent);
165 ret = kstrtoul(buf, 16, &val);
169 drvdata->priority = val;
172 static DEVICE_ATTR_RW(priority);
174 static u32 get_funnel_ctrl_hw(struct funnel_drvdata *drvdata)
178 CS_UNLOCK(drvdata->base);
179 functl = readl_relaxed(drvdata->base + FUNNEL_FUNCTL);
180 CS_LOCK(drvdata->base);
185 static ssize_t funnel_ctrl_show(struct device *dev,
186 struct device_attribute *attr, char *buf)
189 struct funnel_drvdata *drvdata = dev_get_drvdata(dev->parent);
191 pm_runtime_get_sync(dev->parent);
193 val = get_funnel_ctrl_hw(drvdata);
195 pm_runtime_put(dev->parent);
197 return sprintf(buf, "%#x\n", val);
199 static DEVICE_ATTR_RO(funnel_ctrl);
201 static struct attribute *coresight_funnel_attrs[] = {
202 &dev_attr_funnel_ctrl.attr,
203 &dev_attr_priority.attr,
206 ATTRIBUTE_GROUPS(coresight_funnel);
208 static int funnel_probe(struct device *dev, struct resource *res)
212 struct coresight_platform_data *pdata = NULL;
213 struct funnel_drvdata *drvdata;
214 struct coresight_desc desc = { 0 };
216 if (is_of_node(dev_fwnode(dev)) &&
217 of_device_is_compatible(dev->of_node, "arm,coresight-funnel"))
218 dev_warn_once(dev, "Uses OBSOLETE CoreSight funnel binding\n");
220 desc.name = coresight_alloc_device_name(&funnel_devs, dev);
224 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
228 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
229 if (!IS_ERR(drvdata->atclk)) {
230 ret = clk_prepare_enable(drvdata->atclk);
236 * Map the device base for dynamic-funnel, which has been
237 * validated by AMBA core.
240 base = devm_ioremap_resource(dev, res);
243 goto out_disable_clk;
245 drvdata->base = base;
246 desc.groups = coresight_funnel_groups;
247 desc.access = CSDEV_ACCESS_IOMEM(base);
250 dev_set_drvdata(dev, drvdata);
252 pdata = coresight_get_platform_data(dev);
254 ret = PTR_ERR(pdata);
255 goto out_disable_clk;
257 dev->platform_data = pdata;
259 spin_lock_init(&drvdata->spinlock);
260 desc.type = CORESIGHT_DEV_TYPE_LINK;
261 desc.subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_MERG;
262 desc.ops = &funnel_cs_ops;
265 drvdata->csdev = coresight_register(&desc);
266 if (IS_ERR(drvdata->csdev)) {
267 ret = PTR_ERR(drvdata->csdev);
268 goto out_disable_clk;
275 if (ret && !IS_ERR_OR_NULL(drvdata->atclk))
276 clk_disable_unprepare(drvdata->atclk);
280 static int funnel_remove(struct device *dev)
282 struct funnel_drvdata *drvdata = dev_get_drvdata(dev);
284 coresight_unregister(drvdata->csdev);
290 static int funnel_runtime_suspend(struct device *dev)
292 struct funnel_drvdata *drvdata = dev_get_drvdata(dev);
294 if (drvdata && !IS_ERR(drvdata->atclk))
295 clk_disable_unprepare(drvdata->atclk);
300 static int funnel_runtime_resume(struct device *dev)
302 struct funnel_drvdata *drvdata = dev_get_drvdata(dev);
304 if (drvdata && !IS_ERR(drvdata->atclk))
305 clk_prepare_enable(drvdata->atclk);
311 static const struct dev_pm_ops funnel_dev_pm_ops = {
312 SET_RUNTIME_PM_OPS(funnel_runtime_suspend, funnel_runtime_resume, NULL)
315 static int static_funnel_probe(struct platform_device *pdev)
319 pm_runtime_get_noresume(&pdev->dev);
320 pm_runtime_set_active(&pdev->dev);
321 pm_runtime_enable(&pdev->dev);
323 /* Static funnel do not have programming base */
324 ret = funnel_probe(&pdev->dev, NULL);
327 pm_runtime_put_noidle(&pdev->dev);
328 pm_runtime_disable(&pdev->dev);
334 static int static_funnel_remove(struct platform_device *pdev)
336 funnel_remove(&pdev->dev);
337 pm_runtime_disable(&pdev->dev);
341 static const struct of_device_id static_funnel_match[] = {
342 {.compatible = "arm,coresight-static-funnel"},
346 MODULE_DEVICE_TABLE(of, static_funnel_match);
349 static const struct acpi_device_id static_funnel_ids[] = {
354 MODULE_DEVICE_TABLE(acpi, static_funnel_ids);
357 static struct platform_driver static_funnel_driver = {
358 .probe = static_funnel_probe,
359 .remove = static_funnel_remove,
361 .name = "coresight-static-funnel",
362 /* THIS_MODULE is taken care of by platform_driver_register() */
363 .of_match_table = static_funnel_match,
364 .acpi_match_table = ACPI_PTR(static_funnel_ids),
365 .pm = &funnel_dev_pm_ops,
366 .suppress_bind_attrs = true,
370 static int dynamic_funnel_probe(struct amba_device *adev,
371 const struct amba_id *id)
373 return funnel_probe(&adev->dev, &adev->res);
376 static void dynamic_funnel_remove(struct amba_device *adev)
378 funnel_remove(&adev->dev);
381 static const struct amba_id dynamic_funnel_ids[] = {
387 /* Coresight SoC-600 */
394 MODULE_DEVICE_TABLE(amba, dynamic_funnel_ids);
396 static struct amba_driver dynamic_funnel_driver = {
398 .name = "coresight-dynamic-funnel",
399 .owner = THIS_MODULE,
400 .pm = &funnel_dev_pm_ops,
401 .suppress_bind_attrs = true,
403 .probe = dynamic_funnel_probe,
404 .remove = dynamic_funnel_remove,
405 .id_table = dynamic_funnel_ids,
408 static int __init funnel_init(void)
412 ret = platform_driver_register(&static_funnel_driver);
414 pr_info("Error registering platform driver\n");
418 ret = amba_driver_register(&dynamic_funnel_driver);
420 pr_info("Error registering amba driver\n");
421 platform_driver_unregister(&static_funnel_driver);
427 static void __exit funnel_exit(void)
429 platform_driver_unregister(&static_funnel_driver);
430 amba_driver_unregister(&dynamic_funnel_driver);
433 module_init(funnel_init);
434 module_exit(funnel_exit);
438 MODULE_DESCRIPTION("Arm CoreSight Funnel Driver");
439 MODULE_LICENSE("GPL v2");