blob: 873ceb8a2ab7df9358eeecd721c1bd70a2b6db1c [file] [log] [blame]
Dario Binacchib96e8972020-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
Dario Binacchib96e8972020-12-30 00:06:36 +010010#include <dm.h>
11#include <dm/device_compat.h>
12#include <clk-uclass.h>
13#include <asm/io.h>
14#include <linux/clk-provider.h>
Dario Binacchi36934602021-05-01 17:05:24 +020015#include "clk.h"
Dario Binacchib96e8972020-12-30 00:06:36 +010016
17struct clk_ti_gate_priv {
Dario Binacchi36934602021-05-01 17:05:24 +020018 struct clk_ti_reg reg;
Dario Binacchib96e8972020-12-30 00:06:36 +010019 u8 enable_bit;
20 u32 flags;
21 bool invert_enable;
22};
23
24static int clk_ti_gate_disable(struct clk *clk)
25{
26 struct clk_ti_gate_priv *priv = dev_get_priv(clk->dev);
27 u32 v;
28
Dario Binacchi36934602021-05-01 17:05:24 +020029 v = clk_ti_readl(&priv->reg);
Dario Binacchib96e8972020-12-30 00:06:36 +010030 if (priv->invert_enable)
31 v |= (1 << priv->enable_bit);
32 else
33 v &= ~(1 << priv->enable_bit);
34
Dario Binacchi36934602021-05-01 17:05:24 +020035 clk_ti_writel(v, &priv->reg);
Dario Binacchib96e8972020-12-30 00:06:36 +010036 /* No OCP barrier needed here since it is a disable operation */
37 return 0;
38}
39
40static int clk_ti_gate_enable(struct clk *clk)
41{
42 struct clk_ti_gate_priv *priv = dev_get_priv(clk->dev);
43 u32 v;
44
Dario Binacchi36934602021-05-01 17:05:24 +020045 v = clk_ti_readl(&priv->reg);
Dario Binacchib96e8972020-12-30 00:06:36 +010046 if (priv->invert_enable)
47 v &= ~(1 << priv->enable_bit);
48 else
49 v |= (1 << priv->enable_bit);
50
Dario Binacchi36934602021-05-01 17:05:24 +020051 clk_ti_writel(v, &priv->reg);
Dario Binacchib96e8972020-12-30 00:06:36 +010052 /* OCP barrier */
Dario Binacchi36934602021-05-01 17:05:24 +020053 v = clk_ti_readl(&priv->reg);
Dario Binacchib96e8972020-12-30 00:06:36 +010054 return 0;
55}
56
57static int clk_ti_gate_of_to_plat(struct udevice *dev)
58{
59 struct clk_ti_gate_priv *priv = dev_get_priv(dev);
Dario Binacchi36934602021-05-01 17:05:24 +020060 int err;
Dario Binacchib96e8972020-12-30 00:06:36 +010061
Dario Binacchi36934602021-05-01 17:05:24 +020062 err = clk_ti_get_reg_addr(dev, 0, &priv->reg);
63 if (err) {
64 dev_err(dev, "failed to get control register address\n");
65 return err;
Dario Binacchib96e8972020-12-30 00:06:36 +010066 }
67
Dario Binacchib96e8972020-12-30 00:06:36 +010068 priv->enable_bit = dev_read_u32_default(dev, "ti,bit-shift", 0);
69 if (dev_read_bool(dev, "ti,set-rate-parent"))
70 priv->flags |= CLK_SET_RATE_PARENT;
71
72 priv->invert_enable = dev_read_bool(dev, "ti,set-bit-to-disable");
73 return 0;
74}
75
76static struct clk_ops clk_ti_gate_ops = {
77 .enable = clk_ti_gate_enable,
78 .disable = clk_ti_gate_disable,
79};
80
81static const struct udevice_id clk_ti_gate_of_match[] = {
82 { .compatible = "ti,gate-clock" },
83 { },
84};
85
86U_BOOT_DRIVER(clk_ti_gate) = {
87 .name = "ti_gate_clock",
88 .id = UCLASS_CLK,
89 .of_match = clk_ti_gate_of_match,
Dario Binacchif686e4d2021-01-15 09:10:26 +010090 .of_to_plat = clk_ti_gate_of_to_plat,
Dario Binacchib96e8972020-12-30 00:06:36 +010091 .priv_auto = sizeof(struct clk_ti_gate_priv),
92 .ops = &clk_ti_gate_ops,
93};