Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
4 *
5 * Description: CoreSight Replicator driver
6 */
7
8#include <linux/acpi.h>
9#include <linux/amba/bus.h>
10#include <linux/kernel.h>
11#include <linux/device.h>
12#include <linux/platform_device.h>
13#include <linux/io.h>
14#include <linux/err.h>
15#include <linux/slab.h>
16#include <linux/pm_runtime.h>
17#include <linux/property.h>
18#include <linux/clk.h>
19#include <linux/of.h>
20#include <linux/coresight.h>
21
22#include "coresight-priv.h"
23
24#define REPLICATOR_IDFILTER0 0x000
25#define REPLICATOR_IDFILTER1 0x004
26
27DEFINE_CORESIGHT_DEVLIST(replicator_devs, "replicator");
28
29/**
30 * struct replicator_drvdata - specifics associated to a replicator component
31 * @base: memory mapped base address for this component. Also indicates
32 * whether this one is programmable or not.
33 * @atclk: optional clock for the core parts of the replicator.
34 * @pclk: APB clock if present, otherwise NULL
35 * @csdev: component vitals needed by the framework
36 * @spinlock: serialize enable/disable operations.
37 * @check_idfilter_val: check if the context is lost upon clock removal.
38 */
39struct replicator_drvdata {
40 void __iomem *base;
41 struct clk *atclk;
42 struct clk *pclk;
43 struct coresight_device *csdev;
44 spinlock_t spinlock;
45 bool check_idfilter_val;
46};
47
48static void dynamic_replicator_reset(struct replicator_drvdata *drvdata)
49{
50 struct coresight_device *csdev = drvdata->csdev;
51
52 CS_UNLOCK(drvdata->base);
53
54 if (!coresight_claim_device_unlocked(csdev)) {
55 writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER0);
56 writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER1);
57 coresight_disclaim_device_unlocked(csdev);
58 }
59
60 CS_LOCK(drvdata->base);
61}
62
63/*
64 * replicator_reset : Reset the replicator configuration to sane values.
65 */
66static inline void replicator_reset(struct replicator_drvdata *drvdata)
67{
68 if (drvdata->base)
69 dynamic_replicator_reset(drvdata);
70}
71
72static int dynamic_replicator_enable(struct replicator_drvdata *drvdata,
73 int inport, int outport)
74{
75 int rc = 0;
76 u32 id0val, id1val;
77 struct coresight_device *csdev = drvdata->csdev;
78
79 CS_UNLOCK(drvdata->base);
80
81 id0val = readl_relaxed(drvdata->base + REPLICATOR_IDFILTER0);
82 id1val = readl_relaxed(drvdata->base + REPLICATOR_IDFILTER1);
83
84 /*
85 * Some replicator designs lose context when AMBA clocks are removed,
86 * so have a check for this.
87 */
88 if (drvdata->check_idfilter_val && id0val == 0x0 && id1val == 0x0)
89 id0val = id1val = 0xff;
90
91 if (id0val == 0xff && id1val == 0xff)
92 rc = coresight_claim_device_unlocked(csdev);
93
94 if (!rc) {
95 switch (outport) {
96 case 0:
97 id0val = 0x0;
98 break;
99 case 1:
100 id1val = 0x0;
101 break;
102 default:
103 WARN_ON(1);
104 rc = -EINVAL;
105 }
106 }
107
108 /* Ensure that the outport is enabled. */
109 if (!rc) {
110 writel_relaxed(id0val, drvdata->base + REPLICATOR_IDFILTER0);
111 writel_relaxed(id1val, drvdata->base + REPLICATOR_IDFILTER1);
112 }
113
114 CS_LOCK(drvdata->base);
115
116 return rc;
117}
118
119static int replicator_enable(struct coresight_device *csdev,
120 struct coresight_connection *in,
121 struct coresight_connection *out)
122{
123 int rc = 0;
124 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
125 unsigned long flags;
126 bool first_enable = false;
127
128 spin_lock_irqsave(&drvdata->spinlock, flags);
129 if (atomic_read(&out->src_refcnt) == 0) {
130 if (drvdata->base)
131 rc = dynamic_replicator_enable(drvdata, in->dest_port,
132 out->src_port);
133 if (!rc)
134 first_enable = true;
135 }
136 if (!rc)
137 atomic_inc(&out->src_refcnt);
138 spin_unlock_irqrestore(&drvdata->spinlock, flags);
139
140 if (first_enable)
141 dev_dbg(&csdev->dev, "REPLICATOR enabled\n");
142 return rc;
143}
144
145static void dynamic_replicator_disable(struct replicator_drvdata *drvdata,
146 int inport, int outport)
147{
148 u32 reg;
149 struct coresight_device *csdev = drvdata->csdev;
150
151 switch (outport) {
152 case 0:
153 reg = REPLICATOR_IDFILTER0;
154 break;
155 case 1:
156 reg = REPLICATOR_IDFILTER1;
157 break;
158 default:
159 WARN_ON(1);
160 return;
161 }
162
163 CS_UNLOCK(drvdata->base);
164
165 /* disable the flow of ATB data through port */
166 writel_relaxed(0xff, drvdata->base + reg);
167
168 if ((readl_relaxed(drvdata->base + REPLICATOR_IDFILTER0) == 0xff) &&
169 (readl_relaxed(drvdata->base + REPLICATOR_IDFILTER1) == 0xff))
170 coresight_disclaim_device_unlocked(csdev);
171 CS_LOCK(drvdata->base);
172}
173
174static void replicator_disable(struct coresight_device *csdev,
175 struct coresight_connection *in,
176 struct coresight_connection *out)
177{
178 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
179 unsigned long flags;
180 bool last_disable = false;
181
182 spin_lock_irqsave(&drvdata->spinlock, flags);
183 if (atomic_dec_return(&out->src_refcnt) == 0) {
184 if (drvdata->base)
185 dynamic_replicator_disable(drvdata, in->dest_port,
186 out->src_port);
187 last_disable = true;
188 }
189 spin_unlock_irqrestore(&drvdata->spinlock, flags);
190
191 if (last_disable)
192 dev_dbg(&csdev->dev, "REPLICATOR disabled\n");
193}
194
195static const struct coresight_ops_link replicator_link_ops = {
196 .enable = replicator_enable,
197 .disable = replicator_disable,
198};
199
200static const struct coresight_ops replicator_cs_ops = {
201 .link_ops = &replicator_link_ops,
202};
203
204static struct attribute *replicator_mgmt_attrs[] = {
205 coresight_simple_reg32(idfilter0, REPLICATOR_IDFILTER0),
206 coresight_simple_reg32(idfilter1, REPLICATOR_IDFILTER1),
207 NULL,
208};
209
210static const struct attribute_group replicator_mgmt_group = {
211 .attrs = replicator_mgmt_attrs,
212 .name = "mgmt",
213};
214
215static const struct attribute_group *replicator_groups[] = {
216 &replicator_mgmt_group,
217 NULL,
218};
219
220static int replicator_probe(struct device *dev, struct resource *res)
221{
222 int ret = 0;
223 struct coresight_platform_data *pdata = NULL;
224 struct replicator_drvdata *drvdata;
225 struct coresight_desc desc = { 0 };
226 void __iomem *base;
227
228 if (is_of_node(dev_fwnode(dev)) &&
229 of_device_is_compatible(dev->of_node, "arm,coresight-replicator"))
230 dev_warn_once(dev,
231 "Uses OBSOLETE CoreSight replicator binding\n");
232
233 desc.name = coresight_alloc_device_name(&replicator_devs, dev);
234 if (!desc.name)
235 return -ENOMEM;
236
237 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
238 if (!drvdata)
239 return -ENOMEM;
240
241 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
242 if (!IS_ERR(drvdata->atclk)) {
243 ret = clk_prepare_enable(drvdata->atclk);
244 if (ret)
245 return ret;
246 }
247
248 drvdata->pclk = coresight_get_enable_apb_pclk(dev);
249 if (IS_ERR(drvdata->pclk))
250 return -ENODEV;
251
252 /*
253 * Map the device base for dynamic-replicator, which has been
254 * validated by AMBA core
255 */
256 if (res) {
257 base = devm_ioremap_resource(dev, res);
258 if (IS_ERR(base)) {
259 ret = PTR_ERR(base);
260 goto out_disable_clk;
261 }
262 drvdata->base = base;
263 desc.groups = replicator_groups;
264 desc.access = CSDEV_ACCESS_IOMEM(base);
265 }
266
267 if (fwnode_property_present(dev_fwnode(dev),
268 "qcom,replicator-loses-context"))
269 drvdata->check_idfilter_val = true;
270
271 dev_set_drvdata(dev, drvdata);
272
273 pdata = coresight_get_platform_data(dev);
274 if (IS_ERR(pdata)) {
275 ret = PTR_ERR(pdata);
276 goto out_disable_clk;
277 }
278 dev->platform_data = pdata;
279
280 spin_lock_init(&drvdata->spinlock);
281 desc.type = CORESIGHT_DEV_TYPE_LINK;
282 desc.subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_SPLIT;
283 desc.ops = &replicator_cs_ops;
284 desc.pdata = dev->platform_data;
285 desc.dev = dev;
286
287 drvdata->csdev = coresight_register(&desc);
288 if (IS_ERR(drvdata->csdev)) {
289 ret = PTR_ERR(drvdata->csdev);
290 goto out_disable_clk;
291 }
292
293 replicator_reset(drvdata);
294
295out_disable_clk:
296 if (ret && !IS_ERR_OR_NULL(drvdata->atclk))
297 clk_disable_unprepare(drvdata->atclk);
298 if (ret && !IS_ERR_OR_NULL(drvdata->pclk))
299 clk_disable_unprepare(drvdata->pclk);
300 return ret;
301}
302
303static int replicator_remove(struct device *dev)
304{
305 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
306
307 coresight_unregister(drvdata->csdev);
308 return 0;
309}
310
311static int replicator_platform_probe(struct platform_device *pdev)
312{
313 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
314 int ret;
315
316 pm_runtime_get_noresume(&pdev->dev);
317 pm_runtime_set_active(&pdev->dev);
318 pm_runtime_enable(&pdev->dev);
319
320 ret = replicator_probe(&pdev->dev, res);
321 pm_runtime_put(&pdev->dev);
322 if (ret)
323 pm_runtime_disable(&pdev->dev);
324
325 return ret;
326}
327
328static void replicator_platform_remove(struct platform_device *pdev)
329{
330 struct replicator_drvdata *drvdata = dev_get_drvdata(&pdev->dev);
331
332 if (WARN_ON(!drvdata))
333 return;
334
335 replicator_remove(&pdev->dev);
336 pm_runtime_disable(&pdev->dev);
337 if (!IS_ERR_OR_NULL(drvdata->pclk))
338 clk_put(drvdata->pclk);
339}
340
341#ifdef CONFIG_PM
342static int replicator_runtime_suspend(struct device *dev)
343{
344 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
345
346 if (drvdata && !IS_ERR(drvdata->atclk))
347 clk_disable_unprepare(drvdata->atclk);
348
349 if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
350 clk_disable_unprepare(drvdata->pclk);
351 return 0;
352}
353
354static int replicator_runtime_resume(struct device *dev)
355{
356 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
357
358 if (drvdata && !IS_ERR(drvdata->atclk))
359 clk_prepare_enable(drvdata->atclk);
360
361 if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
362 clk_prepare_enable(drvdata->pclk);
363 return 0;
364}
365#endif
366
367static const struct dev_pm_ops replicator_dev_pm_ops = {
368 SET_RUNTIME_PM_OPS(replicator_runtime_suspend,
369 replicator_runtime_resume, NULL)
370};
371
372static const struct of_device_id replicator_match[] = {
373 {.compatible = "arm,coresight-replicator"},
374 {.compatible = "arm,coresight-static-replicator"},
375 {}
376};
377
378MODULE_DEVICE_TABLE(of, replicator_match);
379
380#ifdef CONFIG_ACPI
381static const struct acpi_device_id replicator_acpi_ids[] = {
382 {"ARMHC985", 0, 0, 0}, /* ARM CoreSight Static Replicator */
383 {"ARMHC98D", 0, 0, 0}, /* ARM CoreSight Dynamic Replicator */
384 {}
385};
386
387MODULE_DEVICE_TABLE(acpi, replicator_acpi_ids);
388#endif
389
390static struct platform_driver replicator_driver = {
391 .probe = replicator_platform_probe,
392 .remove = replicator_platform_remove,
393 .driver = {
394 .name = "coresight-replicator",
395 /* THIS_MODULE is taken care of by platform_driver_register() */
396 .of_match_table = of_match_ptr(replicator_match),
397 .acpi_match_table = ACPI_PTR(replicator_acpi_ids),
398 .pm = &replicator_dev_pm_ops,
399 .suppress_bind_attrs = true,
400 },
401};
402
403static int dynamic_replicator_probe(struct amba_device *adev,
404 const struct amba_id *id)
405{
406 int ret;
407
408 ret = replicator_probe(&adev->dev, &adev->res);
409 if (!ret)
410 pm_runtime_put(&adev->dev);
411
412 return ret;
413}
414
415static void dynamic_replicator_remove(struct amba_device *adev)
416{
417 replicator_remove(&adev->dev);
418}
419
420static const struct amba_id dynamic_replicator_ids[] = {
421 CS_AMBA_ID(0x000bb909),
422 CS_AMBA_ID(0x000bb9ec), /* Coresight SoC-600 */
423 {},
424};
425
426MODULE_DEVICE_TABLE(amba, dynamic_replicator_ids);
427
428static struct amba_driver dynamic_replicator_driver = {
429 .drv = {
430 .name = "coresight-dynamic-replicator",
431 .pm = &replicator_dev_pm_ops,
432 .suppress_bind_attrs = true,
433 },
434 .probe = dynamic_replicator_probe,
435 .remove = dynamic_replicator_remove,
436 .id_table = dynamic_replicator_ids,
437};
438
439static int __init replicator_init(void)
440{
441 return coresight_init_driver("replicator", &dynamic_replicator_driver, &replicator_driver);
442}
443
444static void __exit replicator_exit(void)
445{
446 coresight_remove_driver(&dynamic_replicator_driver, &replicator_driver);
447}
448
449module_init(replicator_init);
450module_exit(replicator_exit);
451
452MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
453MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
454MODULE_DESCRIPTION("Arm CoreSight Replicator Driver");
455MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2011-2015, The Linux Foundation. All rights reserved.
4 *
5 * Description: CoreSight Replicator driver
6 */
7
8#include <linux/acpi.h>
9#include <linux/amba/bus.h>
10#include <linux/kernel.h>
11#include <linux/device.h>
12#include <linux/platform_device.h>
13#include <linux/io.h>
14#include <linux/err.h>
15#include <linux/slab.h>
16#include <linux/pm_runtime.h>
17#include <linux/property.h>
18#include <linux/clk.h>
19#include <linux/of.h>
20#include <linux/coresight.h>
21
22#include "coresight-priv.h"
23
24#define REPLICATOR_IDFILTER0 0x000
25#define REPLICATOR_IDFILTER1 0x004
26
27DEFINE_CORESIGHT_DEVLIST(replicator_devs, "replicator");
28
29/**
30 * struct replicator_drvdata - specifics associated to a replicator component
31 * @base: memory mapped base address for this component. Also indicates
32 * whether this one is programmable or not.
33 * @atclk: optional clock for the core parts of the replicator.
34 * @csdev: component vitals needed by the framework
35 * @spinlock: serialize enable/disable operations.
36 * @check_idfilter_val: check if the context is lost upon clock removal.
37 */
38struct replicator_drvdata {
39 void __iomem *base;
40 struct clk *atclk;
41 struct coresight_device *csdev;
42 spinlock_t spinlock;
43 bool check_idfilter_val;
44};
45
46static void dynamic_replicator_reset(struct replicator_drvdata *drvdata)
47{
48 struct coresight_device *csdev = drvdata->csdev;
49
50 CS_UNLOCK(drvdata->base);
51
52 if (!coresight_claim_device_unlocked(csdev)) {
53 writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER0);
54 writel_relaxed(0xff, drvdata->base + REPLICATOR_IDFILTER1);
55 coresight_disclaim_device_unlocked(csdev);
56 }
57
58 CS_LOCK(drvdata->base);
59}
60
61/*
62 * replicator_reset : Reset the replicator configuration to sane values.
63 */
64static inline void replicator_reset(struct replicator_drvdata *drvdata)
65{
66 if (drvdata->base)
67 dynamic_replicator_reset(drvdata);
68}
69
70static int dynamic_replicator_enable(struct replicator_drvdata *drvdata,
71 int inport, int outport)
72{
73 int rc = 0;
74 u32 id0val, id1val;
75 struct coresight_device *csdev = drvdata->csdev;
76
77 CS_UNLOCK(drvdata->base);
78
79 id0val = readl_relaxed(drvdata->base + REPLICATOR_IDFILTER0);
80 id1val = readl_relaxed(drvdata->base + REPLICATOR_IDFILTER1);
81
82 /*
83 * Some replicator designs lose context when AMBA clocks are removed,
84 * so have a check for this.
85 */
86 if (drvdata->check_idfilter_val && id0val == 0x0 && id1val == 0x0)
87 id0val = id1val = 0xff;
88
89 if (id0val == 0xff && id1val == 0xff)
90 rc = coresight_claim_device_unlocked(csdev);
91
92 if (!rc) {
93 switch (outport) {
94 case 0:
95 id0val = 0x0;
96 break;
97 case 1:
98 id1val = 0x0;
99 break;
100 default:
101 WARN_ON(1);
102 rc = -EINVAL;
103 }
104 }
105
106 /* Ensure that the outport is enabled. */
107 if (!rc) {
108 writel_relaxed(id0val, drvdata->base + REPLICATOR_IDFILTER0);
109 writel_relaxed(id1val, drvdata->base + REPLICATOR_IDFILTER1);
110 }
111
112 CS_LOCK(drvdata->base);
113
114 return rc;
115}
116
117static int replicator_enable(struct coresight_device *csdev,
118 struct coresight_connection *in,
119 struct coresight_connection *out)
120{
121 int rc = 0;
122 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
123 unsigned long flags;
124 bool first_enable = false;
125
126 spin_lock_irqsave(&drvdata->spinlock, flags);
127 if (atomic_read(&out->src_refcnt) == 0) {
128 if (drvdata->base)
129 rc = dynamic_replicator_enable(drvdata, in->dest_port,
130 out->src_port);
131 if (!rc)
132 first_enable = true;
133 }
134 if (!rc)
135 atomic_inc(&out->src_refcnt);
136 spin_unlock_irqrestore(&drvdata->spinlock, flags);
137
138 if (first_enable)
139 dev_dbg(&csdev->dev, "REPLICATOR enabled\n");
140 return rc;
141}
142
143static void dynamic_replicator_disable(struct replicator_drvdata *drvdata,
144 int inport, int outport)
145{
146 u32 reg;
147 struct coresight_device *csdev = drvdata->csdev;
148
149 switch (outport) {
150 case 0:
151 reg = REPLICATOR_IDFILTER0;
152 break;
153 case 1:
154 reg = REPLICATOR_IDFILTER1;
155 break;
156 default:
157 WARN_ON(1);
158 return;
159 }
160
161 CS_UNLOCK(drvdata->base);
162
163 /* disable the flow of ATB data through port */
164 writel_relaxed(0xff, drvdata->base + reg);
165
166 if ((readl_relaxed(drvdata->base + REPLICATOR_IDFILTER0) == 0xff) &&
167 (readl_relaxed(drvdata->base + REPLICATOR_IDFILTER1) == 0xff))
168 coresight_disclaim_device_unlocked(csdev);
169 CS_LOCK(drvdata->base);
170}
171
172static void replicator_disable(struct coresight_device *csdev,
173 struct coresight_connection *in,
174 struct coresight_connection *out)
175{
176 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
177 unsigned long flags;
178 bool last_disable = false;
179
180 spin_lock_irqsave(&drvdata->spinlock, flags);
181 if (atomic_dec_return(&out->src_refcnt) == 0) {
182 if (drvdata->base)
183 dynamic_replicator_disable(drvdata, in->dest_port,
184 out->src_port);
185 last_disable = true;
186 }
187 spin_unlock_irqrestore(&drvdata->spinlock, flags);
188
189 if (last_disable)
190 dev_dbg(&csdev->dev, "REPLICATOR disabled\n");
191}
192
193static const struct coresight_ops_link replicator_link_ops = {
194 .enable = replicator_enable,
195 .disable = replicator_disable,
196};
197
198static const struct coresight_ops replicator_cs_ops = {
199 .link_ops = &replicator_link_ops,
200};
201
202static struct attribute *replicator_mgmt_attrs[] = {
203 coresight_simple_reg32(idfilter0, REPLICATOR_IDFILTER0),
204 coresight_simple_reg32(idfilter1, REPLICATOR_IDFILTER1),
205 NULL,
206};
207
208static const struct attribute_group replicator_mgmt_group = {
209 .attrs = replicator_mgmt_attrs,
210 .name = "mgmt",
211};
212
213static const struct attribute_group *replicator_groups[] = {
214 &replicator_mgmt_group,
215 NULL,
216};
217
218static int replicator_probe(struct device *dev, struct resource *res)
219{
220 int ret = 0;
221 struct coresight_platform_data *pdata = NULL;
222 struct replicator_drvdata *drvdata;
223 struct coresight_desc desc = { 0 };
224 void __iomem *base;
225
226 if (is_of_node(dev_fwnode(dev)) &&
227 of_device_is_compatible(dev->of_node, "arm,coresight-replicator"))
228 dev_warn_once(dev,
229 "Uses OBSOLETE CoreSight replicator binding\n");
230
231 desc.name = coresight_alloc_device_name(&replicator_devs, dev);
232 if (!desc.name)
233 return -ENOMEM;
234
235 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
236 if (!drvdata)
237 return -ENOMEM;
238
239 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
240 if (!IS_ERR(drvdata->atclk)) {
241 ret = clk_prepare_enable(drvdata->atclk);
242 if (ret)
243 return ret;
244 }
245
246 /*
247 * Map the device base for dynamic-replicator, which has been
248 * validated by AMBA core
249 */
250 if (res) {
251 base = devm_ioremap_resource(dev, res);
252 if (IS_ERR(base)) {
253 ret = PTR_ERR(base);
254 goto out_disable_clk;
255 }
256 drvdata->base = base;
257 desc.groups = replicator_groups;
258 desc.access = CSDEV_ACCESS_IOMEM(base);
259 }
260
261 if (fwnode_property_present(dev_fwnode(dev),
262 "qcom,replicator-loses-context"))
263 drvdata->check_idfilter_val = true;
264
265 dev_set_drvdata(dev, drvdata);
266
267 pdata = coresight_get_platform_data(dev);
268 if (IS_ERR(pdata)) {
269 ret = PTR_ERR(pdata);
270 goto out_disable_clk;
271 }
272 dev->platform_data = pdata;
273
274 spin_lock_init(&drvdata->spinlock);
275 desc.type = CORESIGHT_DEV_TYPE_LINK;
276 desc.subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_SPLIT;
277 desc.ops = &replicator_cs_ops;
278 desc.pdata = dev->platform_data;
279 desc.dev = dev;
280
281 drvdata->csdev = coresight_register(&desc);
282 if (IS_ERR(drvdata->csdev)) {
283 ret = PTR_ERR(drvdata->csdev);
284 goto out_disable_clk;
285 }
286
287 replicator_reset(drvdata);
288 pm_runtime_put(dev);
289
290out_disable_clk:
291 if (ret && !IS_ERR_OR_NULL(drvdata->atclk))
292 clk_disable_unprepare(drvdata->atclk);
293 return ret;
294}
295
296static int replicator_remove(struct device *dev)
297{
298 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
299
300 coresight_unregister(drvdata->csdev);
301 return 0;
302}
303
304static int static_replicator_probe(struct platform_device *pdev)
305{
306 int ret;
307
308 pm_runtime_get_noresume(&pdev->dev);
309 pm_runtime_set_active(&pdev->dev);
310 pm_runtime_enable(&pdev->dev);
311
312 /* Static replicators do not have programming base */
313 ret = replicator_probe(&pdev->dev, NULL);
314
315 if (ret) {
316 pm_runtime_put_noidle(&pdev->dev);
317 pm_runtime_disable(&pdev->dev);
318 }
319
320 return ret;
321}
322
323static void static_replicator_remove(struct platform_device *pdev)
324{
325 replicator_remove(&pdev->dev);
326 pm_runtime_disable(&pdev->dev);
327}
328
329#ifdef CONFIG_PM
330static int replicator_runtime_suspend(struct device *dev)
331{
332 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
333
334 if (drvdata && !IS_ERR(drvdata->atclk))
335 clk_disable_unprepare(drvdata->atclk);
336
337 return 0;
338}
339
340static int replicator_runtime_resume(struct device *dev)
341{
342 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
343
344 if (drvdata && !IS_ERR(drvdata->atclk))
345 clk_prepare_enable(drvdata->atclk);
346
347 return 0;
348}
349#endif
350
351static const struct dev_pm_ops replicator_dev_pm_ops = {
352 SET_RUNTIME_PM_OPS(replicator_runtime_suspend,
353 replicator_runtime_resume, NULL)
354};
355
356static const struct of_device_id static_replicator_match[] = {
357 {.compatible = "arm,coresight-replicator"},
358 {.compatible = "arm,coresight-static-replicator"},
359 {}
360};
361
362MODULE_DEVICE_TABLE(of, static_replicator_match);
363
364#ifdef CONFIG_ACPI
365static const struct acpi_device_id static_replicator_acpi_ids[] = {
366 {"ARMHC985", 0}, /* ARM CoreSight Static Replicator */
367 {}
368};
369
370MODULE_DEVICE_TABLE(acpi, static_replicator_acpi_ids);
371#endif
372
373static struct platform_driver static_replicator_driver = {
374 .probe = static_replicator_probe,
375 .remove_new = static_replicator_remove,
376 .driver = {
377 .name = "coresight-static-replicator",
378 /* THIS_MODULE is taken care of by platform_driver_register() */
379 .of_match_table = of_match_ptr(static_replicator_match),
380 .acpi_match_table = ACPI_PTR(static_replicator_acpi_ids),
381 .pm = &replicator_dev_pm_ops,
382 .suppress_bind_attrs = true,
383 },
384};
385
386static int dynamic_replicator_probe(struct amba_device *adev,
387 const struct amba_id *id)
388{
389 return replicator_probe(&adev->dev, &adev->res);
390}
391
392static void dynamic_replicator_remove(struct amba_device *adev)
393{
394 replicator_remove(&adev->dev);
395}
396
397static const struct amba_id dynamic_replicator_ids[] = {
398 CS_AMBA_ID(0x000bb909),
399 CS_AMBA_ID(0x000bb9ec), /* Coresight SoC-600 */
400 {},
401};
402
403MODULE_DEVICE_TABLE(amba, dynamic_replicator_ids);
404
405static struct amba_driver dynamic_replicator_driver = {
406 .drv = {
407 .name = "coresight-dynamic-replicator",
408 .pm = &replicator_dev_pm_ops,
409 .owner = THIS_MODULE,
410 .suppress_bind_attrs = true,
411 },
412 .probe = dynamic_replicator_probe,
413 .remove = dynamic_replicator_remove,
414 .id_table = dynamic_replicator_ids,
415};
416
417static int __init replicator_init(void)
418{
419 int ret;
420
421 ret = platform_driver_register(&static_replicator_driver);
422 if (ret) {
423 pr_info("Error registering platform driver\n");
424 return ret;
425 }
426
427 ret = amba_driver_register(&dynamic_replicator_driver);
428 if (ret) {
429 pr_info("Error registering amba driver\n");
430 platform_driver_unregister(&static_replicator_driver);
431 }
432
433 return ret;
434}
435
436static void __exit replicator_exit(void)
437{
438 platform_driver_unregister(&static_replicator_driver);
439 amba_driver_unregister(&dynamic_replicator_driver);
440}
441
442module_init(replicator_init);
443module_exit(replicator_exit);
444
445MODULE_AUTHOR("Pratik Patel <pratikp@codeaurora.org>");
446MODULE_AUTHOR("Mathieu Poirier <mathieu.poirier@linaro.org>");
447MODULE_DESCRIPTION("Arm CoreSight Replicator Driver");
448MODULE_LICENSE("GPL v2");