blob: eb15f6243f2046ece233ea49a5c854e7c6848f71 [file] [log] [blame]
Dario Binacchi58e1af92020-12-30 00:06:36 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * TI gate clock support
4 *
5 * Copyright (C) 2020 Dario Binacchi <dariobin@libero.it>
6 *
7 * Loosely based on Linux kernel drivers/clk/ti/gate.c
8 */
9
10#include <common.h>
11#include <dm.h>
12#include <dm/device_compat.h>
13#include <clk-uclass.h>
14#include <asm/io.h>
15#include <linux/clk-provider.h>
Dario Binacchib178e1f2021-05-01 17:05:24 +020016#include "clk.h"
Dario Binacchi58e1af92020-12-30 00:06:36 +010017
18struct clk_ti_gate_priv {
Dario Binacchib178e1f2021-05-01 17:05:24 +020019 struct clk_ti_reg reg;
Dario Binacchi58e1af92020-12-30 00:06:36 +010020 u8 enable_bit;
21 u32 flags;
22 bool invert_enable;
23};
24
25static int clk_ti_gate_disable(struct clk *clk)
26{
27 struct clk_ti_gate_priv *priv = dev_get_priv(clk->dev);
28 u32 v;
29
Dario Binacchib178e1f2021-05-01 17:05:24 +020030 v = clk_ti_readl(&priv->reg);
Dario Binacchi58e1af92020-12-30 00:06:36 +010031 if (priv->invert_enable)
32 v |= (1 << priv->enable_bit);
33 else
34 v &= ~(1 << priv->enable_bit);
35
Dario Binacchib178e1f2021-05-01 17:05:24 +020036 clk_ti_writel(v, &priv->reg);
Dario Binacchi58e1af92020-12-30 00:06:36 +010037 /* No OCP barrier needed here since it is a disable operation */
38 return 0;
39}
40
41static int clk_ti_gate_enable(struct clk *clk)
42{
43 struct clk_ti_gate_priv *priv = dev_get_priv(clk->dev);
44 u32 v;
45
Dario Binacchib178e1f2021-05-01 17:05:24 +020046 v = clk_ti_readl(&priv->reg);
Dario Binacchi58e1af92020-12-30 00:06:36 +010047 if (priv->invert_enable)
48 v &= ~(1 << priv->enable_bit);
49 else
50 v |= (1 << priv->enable_bit);
51
Dario Binacchib178e1f2021-05-01 17:05:24 +020052 clk_ti_writel(v, &priv->reg);
Dario Binacchi58e1af92020-12-30 00:06:36 +010053 /* OCP barrier */
Dario Binacchib178e1f2021-05-01 17:05:24 +020054 v = clk_ti_readl(&priv->reg);
Dario Binacchi58e1af92020-12-30 00:06:36 +010055 return 0;
56}
57
58static int clk_ti_gate_of_to_plat(struct udevice *dev)
59{
60 struct clk_ti_gate_priv *priv = dev_get_priv(dev);
Dario Binacchib178e1f2021-05-01 17:05:24 +020061 int err;
Dario Binacchi58e1af92020-12-30 00:06:36 +010062
Dario Binacchib178e1f2021-05-01 17:05:24 +020063 err = clk_ti_get_reg_addr(dev, 0, &priv->reg);
64 if (err) {
65 dev_err(dev, "failed to get control register address\n");
66 return err;
Dario Binacchi58e1af92020-12-30 00:06:36 +010067 }
68
Dario Binacchi58e1af92020-12-30 00:06:36 +010069 priv->enable_bit = dev_read_u32_default(dev, "ti,bit-shift", 0);
70 if (dev_read_bool(dev, "ti,set-rate-parent"))
71 priv->flags |= CLK_SET_RATE_PARENT;
72
73 priv->invert_enable = dev_read_bool(dev, "ti,set-bit-to-disable");
74 return 0;
75}
76
77static struct clk_ops clk_ti_gate_ops = {
78 .enable = clk_ti_gate_enable,
79 .disable = clk_ti_gate_disable,
80};
81
82static const struct udevice_id clk_ti_gate_of_match[] = {
83 { .compatible = "ti,gate-clock" },
84 { },
85};
86
87U_BOOT_DRIVER(clk_ti_gate) = {
88 .name = "ti_gate_clock",
89 .id = UCLASS_CLK,
90 .of_match = clk_ti_gate_of_match,
Dario Binacchib0db69b2021-01-15 09:10:26 +010091 .of_to_plat = clk_ti_gate_of_to_plat,
Dario Binacchi58e1af92020-12-30 00:06:36 +010092 .priv_auto = sizeof(struct clk_ti_gate_priv),
93 .ops = &clk_ti_gate_ops,
94};