blob: da264d0f7f4b6655aa1129e7b5acd3174d81f151 [file] [log] [blame]
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +08001/*
2 * Copyright 2015 Chen-Yu Tsai
3 *
4 * Chen-Yu Tsai <wens@csie.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
Stephen Boyd9dfefe82015-06-19 15:00:46 -070017#include <linux/clk.h>
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +080018#include <linux/clk-provider.h>
Chen-Yu Tsai61d2f2a2017-12-18 11:57:51 +080019#include <linux/delay.h>
Paul Gortmaker439a36d2016-07-04 17:12:18 -040020#include <linux/init.h>
Stephen Boyd62e59c42019-04-18 15:20:22 -070021#include <linux/io.h>
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +080022#include <linux/of.h>
23#include <linux/of_device.h>
24#include <linux/reset.h>
25#include <linux/platform_device.h>
26#include <linux/reset-controller.h>
Stephen Boyd9dfefe82015-06-19 15:00:46 -070027#include <linux/slab.h>
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +080028#include <linux/spinlock.h>
29
30#define SUN9I_MMC_WIDTH 4
31
32#define SUN9I_MMC_GATE_BIT 16
33#define SUN9I_MMC_RESET_BIT 18
34
35struct sun9i_mmc_clk_data {
36 spinlock_t lock;
37 void __iomem *membase;
38 struct clk *clk;
39 struct reset_control *reset;
40 struct clk_onecell_data clk_data;
41 struct reset_controller_dev rcdev;
42};
43
44static int sun9i_mmc_reset_assert(struct reset_controller_dev *rcdev,
45 unsigned long id)
46{
47 struct sun9i_mmc_clk_data *data = container_of(rcdev,
48 struct sun9i_mmc_clk_data,
49 rcdev);
50 unsigned long flags;
51 void __iomem *reg = data->membase + SUN9I_MMC_WIDTH * id;
52 u32 val;
53
54 clk_prepare_enable(data->clk);
55 spin_lock_irqsave(&data->lock, flags);
56
57 val = readl(reg);
58 writel(val & ~BIT(SUN9I_MMC_RESET_BIT), reg);
59
60 spin_unlock_irqrestore(&data->lock, flags);
61 clk_disable_unprepare(data->clk);
62
63 return 0;
64}
65
66static int sun9i_mmc_reset_deassert(struct reset_controller_dev *rcdev,
67 unsigned long id)
68{
69 struct sun9i_mmc_clk_data *data = container_of(rcdev,
70 struct sun9i_mmc_clk_data,
71 rcdev);
72 unsigned long flags;
73 void __iomem *reg = data->membase + SUN9I_MMC_WIDTH * id;
74 u32 val;
75
76 clk_prepare_enable(data->clk);
77 spin_lock_irqsave(&data->lock, flags);
78
79 val = readl(reg);
80 writel(val | BIT(SUN9I_MMC_RESET_BIT), reg);
81
82 spin_unlock_irqrestore(&data->lock, flags);
83 clk_disable_unprepare(data->clk);
84
85 return 0;
86}
87
Chen-Yu Tsai61d2f2a2017-12-18 11:57:51 +080088static int sun9i_mmc_reset_reset(struct reset_controller_dev *rcdev,
89 unsigned long id)
90{
91 sun9i_mmc_reset_assert(rcdev, id);
92 udelay(10);
93 sun9i_mmc_reset_deassert(rcdev, id);
94
95 return 0;
96}
97
Philipp Zabel5e7bc9c2016-02-25 10:45:10 +010098static const struct reset_control_ops sun9i_mmc_reset_ops = {
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +080099 .assert = sun9i_mmc_reset_assert,
100 .deassert = sun9i_mmc_reset_deassert,
Chen-Yu Tsai61d2f2a2017-12-18 11:57:51 +0800101 .reset = sun9i_mmc_reset_reset,
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800102};
103
104static int sun9i_a80_mmc_config_clk_probe(struct platform_device *pdev)
105{
106 struct device_node *np = pdev->dev.of_node;
107 struct sun9i_mmc_clk_data *data;
108 struct clk_onecell_data *clk_data;
109 const char *clk_name = np->name;
110 const char *clk_parent;
111 struct resource *r;
112 int count, i, ret;
113
114 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
115 if (!data)
116 return -ENOMEM;
117
118 spin_lock_init(&data->lock);
119
120 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
121 /* one clock/reset pair per word */
Vaishali Thakkarf4b9ef62016-04-11 10:23:03 +0530122 count = DIV_ROUND_UP((resource_size(r)), SUN9I_MMC_WIDTH);
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800123 data->membase = devm_ioremap_resource(&pdev->dev, r);
124 if (IS_ERR(data->membase))
125 return PTR_ERR(data->membase);
126
127 clk_data = &data->clk_data;
128 clk_data->clk_num = count;
129 clk_data->clks = devm_kcalloc(&pdev->dev, count, sizeof(struct clk *),
130 GFP_KERNEL);
131 if (!clk_data->clks)
132 return -ENOMEM;
133
134 data->clk = devm_clk_get(&pdev->dev, NULL);
135 if (IS_ERR(data->clk)) {
136 dev_err(&pdev->dev, "Could not get clock\n");
137 return PTR_ERR(data->clk);
138 }
139
Philipp Zabelcb92a192017-07-19 17:25:13 +0200140 data->reset = devm_reset_control_get_exclusive(&pdev->dev, NULL);
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800141 if (IS_ERR(data->reset)) {
142 dev_err(&pdev->dev, "Could not get reset control\n");
143 return PTR_ERR(data->reset);
144 }
145
146 ret = reset_control_deassert(data->reset);
147 if (ret) {
148 dev_err(&pdev->dev, "Reset deassert err %d\n", ret);
149 return ret;
150 }
151
152 clk_parent = __clk_get_name(data->clk);
153 for (i = 0; i < count; i++) {
154 of_property_read_string_index(np, "clock-output-names",
155 i, &clk_name);
156
157 clk_data->clks[i] = clk_register_gate(&pdev->dev, clk_name,
158 clk_parent, 0,
159 data->membase + SUN9I_MMC_WIDTH * i,
160 SUN9I_MMC_GATE_BIT, 0,
161 &data->lock);
162
163 if (IS_ERR(clk_data->clks[i])) {
164 ret = PTR_ERR(clk_data->clks[i]);
165 goto err_clk_register;
166 }
167 }
168
169 ret = of_clk_add_provider(np, of_clk_src_onecell_get, clk_data);
170 if (ret)
171 goto err_clk_provider;
172
173 data->rcdev.owner = THIS_MODULE;
174 data->rcdev.nr_resets = count;
175 data->rcdev.ops = &sun9i_mmc_reset_ops;
176 data->rcdev.of_node = pdev->dev.of_node;
177
178 ret = reset_controller_register(&data->rcdev);
179 if (ret)
180 goto err_rc_reg;
181
182 platform_set_drvdata(pdev, data);
183
184 return 0;
185
186err_rc_reg:
187 of_clk_del_provider(np);
188
189err_clk_provider:
190 for (i = 0; i < count; i++)
191 clk_unregister(clk_data->clks[i]);
192
193err_clk_register:
194 reset_control_assert(data->reset);
195
196 return ret;
197}
198
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800199static const struct of_device_id sun9i_a80_mmc_config_clk_dt_ids[] = {
200 { .compatible = "allwinner,sun9i-a80-mmc-config-clk" },
201 { /* sentinel */ }
202};
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800203
204static struct platform_driver sun9i_a80_mmc_config_clk_driver = {
205 .driver = {
206 .name = "sun9i-a80-mmc-config-clk",
Paul Gortmaker439a36d2016-07-04 17:12:18 -0400207 .suppress_bind_attrs = true,
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800208 .of_match_table = sun9i_a80_mmc_config_clk_dt_ids,
209 },
210 .probe = sun9i_a80_mmc_config_clk_probe,
Chen-Yu Tsai7a6fca82015-01-20 23:46:31 +0800211};
Paul Gortmaker439a36d2016-07-04 17:12:18 -0400212builtin_platform_driver(sun9i_a80_mmc_config_clk_driver);