1 /* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
3 * Description: CoreSight Funnel driver
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.
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.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/types.h>
18 #include <linux/device.h>
19 #include <linux/err.h>
21 #include <linux/slab.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/coresight.h>
24 #include <linux/amba/bus.h>
25 #include <linux/clk.h>
27 #include "coresight-priv.h"
29 #define FUNNEL_FUNCTL 0x000
30 #define FUNNEL_PRICTL 0x004
32 #define FUNNEL_HOLDTIME_MASK 0xf00
33 #define FUNNEL_HOLDTIME_SHFT 0x8
34 #define FUNNEL_HOLDTIME (0x7 << FUNNEL_HOLDTIME_SHFT)
37 * struct funnel_drvdata - specifics associated to a funnel component
38 * @base: memory mapped base address for this component.
39 * @dev: the device entity associated to this component.
40 * @atclk: optional clock for the core parts of the funnel.
41 * @csdev: component vitals needed by the framework.
42 * @priority: port selection order.
44 struct funnel_drvdata
{
48 struct coresight_device
*csdev
;
49 unsigned long priority
;
52 static void funnel_enable_hw(struct funnel_drvdata
*drvdata
, int port
)
56 CS_UNLOCK(drvdata
->base
);
58 functl
= readl_relaxed(drvdata
->base
+ FUNNEL_FUNCTL
);
59 functl
&= ~FUNNEL_HOLDTIME_MASK
;
60 functl
|= FUNNEL_HOLDTIME
;
61 functl
|= (1 << port
);
62 writel_relaxed(functl
, drvdata
->base
+ FUNNEL_FUNCTL
);
63 writel_relaxed(drvdata
->priority
, drvdata
->base
+ FUNNEL_PRICTL
);
65 CS_LOCK(drvdata
->base
);
68 static int funnel_enable(struct coresight_device
*csdev
, int inport
,
71 struct funnel_drvdata
*drvdata
= dev_get_drvdata(csdev
->dev
.parent
);
73 funnel_enable_hw(drvdata
, inport
);
75 dev_info(drvdata
->dev
, "FUNNEL inport %d enabled\n", inport
);
79 static void funnel_disable_hw(struct funnel_drvdata
*drvdata
, int inport
)
83 CS_UNLOCK(drvdata
->base
);
85 functl
= readl_relaxed(drvdata
->base
+ FUNNEL_FUNCTL
);
86 functl
&= ~(1 << inport
);
87 writel_relaxed(functl
, drvdata
->base
+ FUNNEL_FUNCTL
);
89 CS_LOCK(drvdata
->base
);
92 static void funnel_disable(struct coresight_device
*csdev
, int inport
,
95 struct funnel_drvdata
*drvdata
= dev_get_drvdata(csdev
->dev
.parent
);
97 funnel_disable_hw(drvdata
, inport
);
99 dev_info(drvdata
->dev
, "FUNNEL inport %d disabled\n", inport
);
102 static const struct coresight_ops_link funnel_link_ops
= {
103 .enable
= funnel_enable
,
104 .disable
= funnel_disable
,
107 static const struct coresight_ops funnel_cs_ops
= {
108 .link_ops
= &funnel_link_ops
,
111 static ssize_t
priority_show(struct device
*dev
,
112 struct device_attribute
*attr
, char *buf
)
114 struct funnel_drvdata
*drvdata
= dev_get_drvdata(dev
->parent
);
115 unsigned long val
= drvdata
->priority
;
117 return sprintf(buf
, "%#lx\n", val
);
120 static ssize_t
priority_store(struct device
*dev
,
121 struct device_attribute
*attr
,
122 const char *buf
, size_t size
)
126 struct funnel_drvdata
*drvdata
= dev_get_drvdata(dev
->parent
);
128 ret
= kstrtoul(buf
, 16, &val
);
132 drvdata
->priority
= val
;
135 static DEVICE_ATTR_RW(priority
);
137 static u32
get_funnel_ctrl_hw(struct funnel_drvdata
*drvdata
)
141 CS_UNLOCK(drvdata
->base
);
142 functl
= readl_relaxed(drvdata
->base
+ FUNNEL_FUNCTL
);
143 CS_LOCK(drvdata
->base
);
148 static ssize_t
funnel_ctrl_show(struct device
*dev
,
149 struct device_attribute
*attr
, char *buf
)
152 struct funnel_drvdata
*drvdata
= dev_get_drvdata(dev
->parent
);
154 pm_runtime_get_sync(drvdata
->dev
);
156 val
= get_funnel_ctrl_hw(drvdata
);
158 pm_runtime_put(drvdata
->dev
);
160 return sprintf(buf
, "%#x\n", val
);
162 static DEVICE_ATTR_RO(funnel_ctrl
);
164 static struct attribute
*coresight_funnel_attrs
[] = {
165 &dev_attr_funnel_ctrl
.attr
,
166 &dev_attr_priority
.attr
,
169 ATTRIBUTE_GROUPS(coresight_funnel
);
171 static int funnel_probe(struct amba_device
*adev
, const struct amba_id
*id
)
175 struct device
*dev
= &adev
->dev
;
176 struct coresight_platform_data
*pdata
= NULL
;
177 struct funnel_drvdata
*drvdata
;
178 struct resource
*res
= &adev
->res
;
179 struct coresight_desc
*desc
;
180 struct device_node
*np
= adev
->dev
.of_node
;
183 pdata
= of_get_coresight_platform_data(dev
, np
);
185 return PTR_ERR(pdata
);
186 adev
->dev
.platform_data
= pdata
;
189 drvdata
= devm_kzalloc(dev
, sizeof(*drvdata
), GFP_KERNEL
);
193 drvdata
->dev
= &adev
->dev
;
194 drvdata
->atclk
= devm_clk_get(&adev
->dev
, "atclk"); /* optional */
195 if (!IS_ERR(drvdata
->atclk
)) {
196 ret
= clk_prepare_enable(drvdata
->atclk
);
200 dev_set_drvdata(dev
, drvdata
);
202 /* Validity for the resource is already checked by the AMBA core */
203 base
= devm_ioremap_resource(dev
, res
);
205 return PTR_ERR(base
);
207 drvdata
->base
= base
;
208 pm_runtime_put(&adev
->dev
);
210 desc
= devm_kzalloc(dev
, sizeof(*desc
), GFP_KERNEL
);
214 desc
->type
= CORESIGHT_DEV_TYPE_LINK
;
215 desc
->subtype
.link_subtype
= CORESIGHT_DEV_SUBTYPE_LINK_MERG
;
216 desc
->ops
= &funnel_cs_ops
;
219 desc
->groups
= coresight_funnel_groups
;
220 drvdata
->csdev
= coresight_register(desc
);
221 if (IS_ERR(drvdata
->csdev
))
222 return PTR_ERR(drvdata
->csdev
);
228 static int funnel_runtime_suspend(struct device
*dev
)
230 struct funnel_drvdata
*drvdata
= dev_get_drvdata(dev
);
232 if (drvdata
&& !IS_ERR(drvdata
->atclk
))
233 clk_disable_unprepare(drvdata
->atclk
);
238 static int funnel_runtime_resume(struct device
*dev
)
240 struct funnel_drvdata
*drvdata
= dev_get_drvdata(dev
);
242 if (drvdata
&& !IS_ERR(drvdata
->atclk
))
243 clk_prepare_enable(drvdata
->atclk
);
249 static const struct dev_pm_ops funnel_dev_pm_ops
= {
250 SET_RUNTIME_PM_OPS(funnel_runtime_suspend
, funnel_runtime_resume
, NULL
)
253 static struct amba_id funnel_ids
[] = {
261 static struct amba_driver funnel_driver
= {
263 .name
= "coresight-funnel",
264 .owner
= THIS_MODULE
,
265 .pm
= &funnel_dev_pm_ops
,
266 .suppress_bind_attrs
= true,
268 .probe
= funnel_probe
,
269 .id_table
= funnel_ids
,
271 builtin_amba_driver(funnel_driver
);