blob: c6982e312e156892eda2126ad061d23a73522939 [file] [log] [blame]
Pratik Patelceacc1d2014-11-03 11:07:40 -07001/* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
2 *
Paul Gortmaker941943c2016-02-17 17:52:03 -07003 * Description: CoreSight Replicator driver
4 *
Pratik Patelceacc1d2014-11-03 11:07:40 -07005 * 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>
Pratik Patelceacc1d2014-11-03 11:07:40 -070016#include <linux/device.h>
17#include <linux/platform_device.h>
18#include <linux/io.h>
19#include <linux/err.h>
20#include <linux/slab.h>
Linus Walleij9875cd92015-05-19 10:55:18 -060021#include <linux/pm_runtime.h>
Pratik Patelceacc1d2014-11-03 11:07:40 -070022#include <linux/clk.h>
23#include <linux/of.h>
24#include <linux/coresight.h>
25
26#include "coresight-priv.h"
27
28/**
29 * struct replicator_drvdata - specifics associated to a replicator component
30 * @dev: the device entity associated with this component
Linus Walleij9875cd92015-05-19 10:55:18 -060031 * @atclk: optional clock for the core parts of the replicator.
Pratik Patelceacc1d2014-11-03 11:07:40 -070032 * @csdev: component vitals needed by the framework
33 */
34struct replicator_drvdata {
35 struct device *dev;
Linus Walleij9875cd92015-05-19 10:55:18 -060036 struct clk *atclk;
Pratik Patelceacc1d2014-11-03 11:07:40 -070037 struct coresight_device *csdev;
38};
39
40static int replicator_enable(struct coresight_device *csdev, int inport,
41 int outport)
42{
43 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
44
45 dev_info(drvdata->dev, "REPLICATOR enabled\n");
46 return 0;
47}
48
49static void replicator_disable(struct coresight_device *csdev, int inport,
50 int outport)
51{
52 struct replicator_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
53
54 dev_info(drvdata->dev, "REPLICATOR disabled\n");
55}
56
57static const struct coresight_ops_link replicator_link_ops = {
58 .enable = replicator_enable,
59 .disable = replicator_disable,
60};
61
62static const struct coresight_ops replicator_cs_ops = {
63 .link_ops = &replicator_link_ops,
64};
65
66static int replicator_probe(struct platform_device *pdev)
67{
Linus Walleij9875cd92015-05-19 10:55:18 -060068 int ret;
Pratik Patelceacc1d2014-11-03 11:07:40 -070069 struct device *dev = &pdev->dev;
70 struct coresight_platform_data *pdata = NULL;
71 struct replicator_drvdata *drvdata;
72 struct coresight_desc *desc;
73 struct device_node *np = pdev->dev.of_node;
74
75 if (np) {
76 pdata = of_get_coresight_platform_data(dev, np);
77 if (IS_ERR(pdata))
78 return PTR_ERR(pdata);
79 pdev->dev.platform_data = pdata;
80 }
81
82 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
83 if (!drvdata)
84 return -ENOMEM;
85
86 drvdata->dev = &pdev->dev;
Linus Walleij9875cd92015-05-19 10:55:18 -060087 drvdata->atclk = devm_clk_get(&pdev->dev, "atclk"); /* optional */
88 if (!IS_ERR(drvdata->atclk)) {
89 ret = clk_prepare_enable(drvdata->atclk);
90 if (ret)
91 return ret;
92 }
93 pm_runtime_get_noresume(&pdev->dev);
94 pm_runtime_set_active(&pdev->dev);
95 pm_runtime_enable(&pdev->dev);
Pratik Patelceacc1d2014-11-03 11:07:40 -070096 platform_set_drvdata(pdev, drvdata);
97
98 desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL);
Linus Walleij9875cd92015-05-19 10:55:18 -060099 if (!desc) {
100 ret = -ENOMEM;
101 goto out_disable_pm;
102 }
Pratik Patelceacc1d2014-11-03 11:07:40 -0700103
104 desc->type = CORESIGHT_DEV_TYPE_LINK;
Kaixu Xia410d8412015-01-26 09:22:17 -0700105 desc->subtype.link_subtype = CORESIGHT_DEV_SUBTYPE_LINK_SPLIT;
Pratik Patelceacc1d2014-11-03 11:07:40 -0700106 desc->ops = &replicator_cs_ops;
107 desc->pdata = pdev->dev.platform_data;
108 desc->dev = &pdev->dev;
109 drvdata->csdev = coresight_register(desc);
Linus Walleij9875cd92015-05-19 10:55:18 -0600110 if (IS_ERR(drvdata->csdev)) {
111 ret = PTR_ERR(drvdata->csdev);
112 goto out_disable_pm;
113 }
114
115 pm_runtime_put(&pdev->dev);
Pratik Patelceacc1d2014-11-03 11:07:40 -0700116
Pratik Patelceacc1d2014-11-03 11:07:40 -0700117 return 0;
Linus Walleij9875cd92015-05-19 10:55:18 -0600118
119out_disable_pm:
120 if (!IS_ERR(drvdata->atclk))
121 clk_disable_unprepare(drvdata->atclk);
122 pm_runtime_put_noidle(&pdev->dev);
123 pm_runtime_disable(&pdev->dev);
124
125 return ret;
Pratik Patelceacc1d2014-11-03 11:07:40 -0700126}
127
Linus Walleij9875cd92015-05-19 10:55:18 -0600128#ifdef CONFIG_PM
129static int replicator_runtime_suspend(struct device *dev)
130{
131 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
132
133 if (drvdata && !IS_ERR(drvdata->atclk))
134 clk_disable_unprepare(drvdata->atclk);
135
136 return 0;
137}
138
139static int replicator_runtime_resume(struct device *dev)
140{
141 struct replicator_drvdata *drvdata = dev_get_drvdata(dev);
142
143 if (drvdata && !IS_ERR(drvdata->atclk))
144 clk_prepare_enable(drvdata->atclk);
145
146 return 0;
147}
148#endif
149
150static const struct dev_pm_ops replicator_dev_pm_ops = {
151 SET_RUNTIME_PM_OPS(replicator_runtime_suspend,
152 replicator_runtime_resume, NULL)
153};
154
Fabian Frederick160b7da2015-03-16 20:20:33 +0100155static const struct of_device_id replicator_match[] = {
Pratik Patelceacc1d2014-11-03 11:07:40 -0700156 {.compatible = "arm,coresight-replicator"},
157 {}
158};
159
160static struct platform_driver replicator_driver = {
161 .probe = replicator_probe,
Pratik Patelceacc1d2014-11-03 11:07:40 -0700162 .driver = {
163 .name = "coresight-replicator",
Pratik Patelceacc1d2014-11-03 11:07:40 -0700164 .of_match_table = replicator_match,
Linus Walleij9875cd92015-05-19 10:55:18 -0600165 .pm = &replicator_dev_pm_ops,
Mathieu Poirierb15f0fb2016-02-02 14:14:00 -0700166 .suppress_bind_attrs = true,
Pratik Patelceacc1d2014-11-03 11:07:40 -0700167 },
168};
Vaishali Thakkarc35aaa12015-07-31 09:37:23 -0600169builtin_platform_driver(replicator_driver);