blob: 0148529e04f0edf691b8e27001cb49637d0725b5 [file] [log] [blame]
Marek Szyprowskib1cddab2020-12-16 08:51:53 +01001// SPDX-License-Identifier: GPL-2.0+
2
3#include <common.h>
4#include <log.h>
5#include <asm/io.h>
6#include <clk-uclass.h>
7#include <dm.h>
8#include <regmap.h>
9#include <syscon.h>
10#include <dt-bindings/clock/g12a-aoclkc.h>
11
12#include "clk_meson.h"
13
14struct meson_clk {
15 struct regmap *map;
16};
17
18#define AO_CLK_GATE0 0x4c
19#define AO_SAR_CLK 0x90
20
21static struct meson_gate gates[] = {
22 MESON_GATE(CLKID_AO_SAR_ADC, AO_CLK_GATE0, 8),
23 MESON_GATE(CLKID_AO_SAR_ADC_CLK, AO_SAR_CLK, 8),
24};
25
26static int meson_set_gate(struct clk *clk, bool on)
27{
28 struct meson_clk *priv = dev_get_priv(clk->dev);
29 struct meson_gate *gate;
30
31 if (clk->id >= ARRAY_SIZE(gates))
32 return -ENOENT;
33
34 gate = &gates[clk->id];
35
36 if (gate->reg == 0)
37 return 0;
38
39 regmap_update_bits(priv->map, gate->reg,
40 BIT(gate->bit), on ? BIT(gate->bit) : 0);
41
42 return 0;
43}
44
45static int meson_clk_enable(struct clk *clk)
46{
47 return meson_set_gate(clk, true);
48}
49
50static int meson_clk_disable(struct clk *clk)
51{
52 return meson_set_gate(clk, false);
53}
54
55static int meson_clk_probe(struct udevice *dev)
56{
57 struct meson_clk *priv = dev_get_priv(dev);
58
Tom Rini0542b012021-01-12 15:46:52 -050059 priv->map = syscon_node_to_regmap(dev_ofnode(dev_get_parent(dev)));
Marek Szyprowskib1cddab2020-12-16 08:51:53 +010060 if (IS_ERR(priv->map))
61 return PTR_ERR(priv->map);
62
63 return 0;
64}
65
66static struct clk_ops meson_clk_ops = {
67 .disable = meson_clk_disable,
68 .enable = meson_clk_enable,
69};
70
71static const struct udevice_id meson_clk_ids[] = {
72 { .compatible = "amlogic,meson-g12a-aoclkc" },
73 { }
74};
75
76U_BOOT_DRIVER(meson_clk_axg) = {
77 .name = "meson_clk_g12a_ao",
78 .id = UCLASS_CLK,
79 .of_match = meson_clk_ids,
Tom Rini0542b012021-01-12 15:46:52 -050080 .priv_auto = sizeof(struct meson_clk),
Marek Szyprowskib1cddab2020-12-16 08:51:53 +010081 .ops = &meson_clk_ops,
82 .probe = meson_clk_probe,
83};