drm/ssd130x: Set SPI .id_table to prevent an SPI core warning
[drm/drm-misc.git] / drivers / clk / nxp / clk-lpc18xx-creg.c
blob3d3982e9c661a5c277eb69fe90e896b06ebcbdf6
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Clk driver for NXP LPC18xx/43xx Configuration Registers (CREG)
5 * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com>
6 */
8 #include <linux/clk-provider.h>
9 #include <linux/delay.h>
10 #include <linux/kernel.h>
11 #include <linux/mfd/syscon.h>
12 #include <linux/of.h>
13 #include <linux/platform_device.h>
14 #include <linux/regmap.h>
16 #define LPC18XX_CREG_CREG0 0x004
17 #define LPC18XX_CREG_CREG0_EN1KHZ BIT(0)
18 #define LPC18XX_CREG_CREG0_EN32KHZ BIT(1)
19 #define LPC18XX_CREG_CREG0_RESET32KHZ BIT(2)
20 #define LPC18XX_CREG_CREG0_PD32KHZ BIT(3)
22 #define to_clk_creg(_hw) container_of(_hw, struct clk_creg_data, hw)
24 enum {
25 CREG_CLK_1KHZ,
26 CREG_CLK_32KHZ,
27 CREG_CLK_MAX,
30 struct clk_creg_data {
31 struct clk_hw hw;
32 const char *name;
33 struct regmap *reg;
34 unsigned int en_mask;
35 const struct clk_ops *ops;
38 #define CREG_CLK(_name, _emask, _ops) \
39 { \
40 .name = _name, \
41 .en_mask = LPC18XX_CREG_CREG0_##_emask, \
42 .ops = &_ops, \
45 static int clk_creg_32k_prepare(struct clk_hw *hw)
47 struct clk_creg_data *creg = to_clk_creg(hw);
48 int ret;
50 ret = regmap_update_bits(creg->reg, LPC18XX_CREG_CREG0,
51 LPC18XX_CREG_CREG0_PD32KHZ |
52 LPC18XX_CREG_CREG0_RESET32KHZ, 0);
55 * Powering up the 32k oscillator takes a long while
56 * and sadly there aren't any status bit to poll.
58 msleep(2500);
60 return ret;
63 static void clk_creg_32k_unprepare(struct clk_hw *hw)
65 struct clk_creg_data *creg = to_clk_creg(hw);
67 regmap_update_bits(creg->reg, LPC18XX_CREG_CREG0,
68 LPC18XX_CREG_CREG0_PD32KHZ,
69 LPC18XX_CREG_CREG0_PD32KHZ);
72 static int clk_creg_32k_is_prepared(struct clk_hw *hw)
74 struct clk_creg_data *creg = to_clk_creg(hw);
75 u32 reg;
77 regmap_read(creg->reg, LPC18XX_CREG_CREG0, &reg);
79 return !(reg & LPC18XX_CREG_CREG0_PD32KHZ) &&
80 !(reg & LPC18XX_CREG_CREG0_RESET32KHZ);
83 static unsigned long clk_creg_1k_recalc_rate(struct clk_hw *hw,
84 unsigned long parent_rate)
86 return parent_rate / 32;
89 static int clk_creg_enable(struct clk_hw *hw)
91 struct clk_creg_data *creg = to_clk_creg(hw);
93 return regmap_update_bits(creg->reg, LPC18XX_CREG_CREG0,
94 creg->en_mask, creg->en_mask);
97 static void clk_creg_disable(struct clk_hw *hw)
99 struct clk_creg_data *creg = to_clk_creg(hw);
101 regmap_update_bits(creg->reg, LPC18XX_CREG_CREG0,
102 creg->en_mask, 0);
105 static int clk_creg_is_enabled(struct clk_hw *hw)
107 struct clk_creg_data *creg = to_clk_creg(hw);
108 u32 reg;
110 regmap_read(creg->reg, LPC18XX_CREG_CREG0, &reg);
112 return !!(reg & creg->en_mask);
115 static const struct clk_ops clk_creg_32k = {
116 .enable = clk_creg_enable,
117 .disable = clk_creg_disable,
118 .is_enabled = clk_creg_is_enabled,
119 .prepare = clk_creg_32k_prepare,
120 .unprepare = clk_creg_32k_unprepare,
121 .is_prepared = clk_creg_32k_is_prepared,
124 static const struct clk_ops clk_creg_1k = {
125 .enable = clk_creg_enable,
126 .disable = clk_creg_disable,
127 .is_enabled = clk_creg_is_enabled,
128 .recalc_rate = clk_creg_1k_recalc_rate,
131 static struct clk_creg_data clk_creg_clocks[] = {
132 [CREG_CLK_1KHZ] = CREG_CLK("1khz_clk", EN1KHZ, clk_creg_1k),
133 [CREG_CLK_32KHZ] = CREG_CLK("32khz_clk", EN32KHZ, clk_creg_32k),
136 static struct clk *clk_register_creg_clk(struct device *dev,
137 struct clk_creg_data *creg_clk,
138 const char **parent_name,
139 struct regmap *syscon)
141 struct clk_init_data init;
143 init.ops = creg_clk->ops;
144 init.name = creg_clk->name;
145 init.parent_names = parent_name;
146 init.num_parents = 1;
147 init.flags = 0;
149 creg_clk->reg = syscon;
150 creg_clk->hw.init = &init;
152 if (dev)
153 return devm_clk_register(dev, &creg_clk->hw);
155 return clk_register(NULL, &creg_clk->hw);
158 static struct clk *clk_creg_early[CREG_CLK_MAX];
159 static struct clk_onecell_data clk_creg_early_data = {
160 .clks = clk_creg_early,
161 .clk_num = CREG_CLK_MAX,
164 static void __init lpc18xx_creg_clk_init(struct device_node *np)
166 const char *clk_32khz_parent;
167 struct regmap *syscon;
169 syscon = syscon_node_to_regmap(np->parent);
170 if (IS_ERR(syscon)) {
171 pr_err("%s: syscon lookup failed\n", __func__);
172 return;
175 clk_32khz_parent = of_clk_get_parent_name(np, 0);
177 clk_creg_early[CREG_CLK_32KHZ] =
178 clk_register_creg_clk(NULL, &clk_creg_clocks[CREG_CLK_32KHZ],
179 &clk_32khz_parent, syscon);
180 clk_creg_early[CREG_CLK_1KHZ] = ERR_PTR(-EPROBE_DEFER);
182 of_clk_add_provider(np, of_clk_src_onecell_get, &clk_creg_early_data);
184 CLK_OF_DECLARE_DRIVER(lpc18xx_creg_clk, "nxp,lpc1850-creg-clk",
185 lpc18xx_creg_clk_init);
187 static struct clk *clk_creg[CREG_CLK_MAX];
188 static struct clk_onecell_data clk_creg_data = {
189 .clks = clk_creg,
190 .clk_num = CREG_CLK_MAX,
193 static int lpc18xx_creg_clk_probe(struct platform_device *pdev)
195 struct device_node *np = pdev->dev.of_node;
196 struct regmap *syscon;
198 syscon = syscon_node_to_regmap(np->parent);
199 if (IS_ERR(syscon)) {
200 dev_err(&pdev->dev, "syscon lookup failed\n");
201 return PTR_ERR(syscon);
204 clk_creg[CREG_CLK_32KHZ] = clk_creg_early[CREG_CLK_32KHZ];
205 clk_creg[CREG_CLK_1KHZ] =
206 clk_register_creg_clk(NULL, &clk_creg_clocks[CREG_CLK_1KHZ],
207 &clk_creg_clocks[CREG_CLK_32KHZ].name,
208 syscon);
210 return of_clk_add_provider(np, of_clk_src_onecell_get, &clk_creg_data);
213 static const struct of_device_id lpc18xx_creg_clk_of_match[] = {
214 { .compatible = "nxp,lpc1850-creg-clk" },
218 static struct platform_driver lpc18xx_creg_clk_driver = {
219 .probe = lpc18xx_creg_clk_probe,
220 .driver = {
221 .name = "lpc18xx-creg-clk",
222 .of_match_table = lpc18xx_creg_clk_of_match,
225 builtin_platform_driver(lpc18xx_creg_clk_driver);