1 // SPDX-License-Identifier: GPL-2.0
3 * Zynq UltraScale+ MPSoC clock controller
5 * Copyright (C) 2016-2018 Xilinx
7 * Gated clock implementation
10 #include <linux/clk-provider.h>
11 #include <linux/slab.h>
12 #include "clk-zynqmp.h"
15 * struct clk_gate - gating clock
16 * @hw: handle between common and hardware-specific interfaces
17 * @flags: hardware-specific flags
18 * @clk_id: Id of clock
20 struct zynqmp_clk_gate
{
26 #define to_zynqmp_clk_gate(_hw) container_of(_hw, struct zynqmp_clk_gate, hw)
29 * zynqmp_clk_gate_enable() - Enable clock
30 * @hw: handle between common and hardware-specific interfaces
32 * Return: 0 on success else error code
34 static int zynqmp_clk_gate_enable(struct clk_hw
*hw
)
36 struct zynqmp_clk_gate
*gate
= to_zynqmp_clk_gate(hw
);
37 const char *clk_name
= clk_hw_get_name(hw
);
38 u32 clk_id
= gate
->clk_id
;
41 ret
= zynqmp_pm_clock_enable(clk_id
);
44 pr_warn_once("%s() clock enabled failed for %s, ret = %d\n",
45 __func__
, clk_name
, ret
);
51 * zynqmp_clk_gate_disable() - Disable clock
52 * @hw: handle between common and hardware-specific interfaces
54 static void zynqmp_clk_gate_disable(struct clk_hw
*hw
)
56 struct zynqmp_clk_gate
*gate
= to_zynqmp_clk_gate(hw
);
57 const char *clk_name
= clk_hw_get_name(hw
);
58 u32 clk_id
= gate
->clk_id
;
61 ret
= zynqmp_pm_clock_disable(clk_id
);
64 pr_warn_once("%s() clock disable failed for %s, ret = %d\n",
65 __func__
, clk_name
, ret
);
69 * zynqmp_clk_gate_is_enable() - Check clock state
70 * @hw: handle between common and hardware-specific interfaces
72 * Return: 1 if enabled, 0 if disabled else error code
74 static int zynqmp_clk_gate_is_enabled(struct clk_hw
*hw
)
76 struct zynqmp_clk_gate
*gate
= to_zynqmp_clk_gate(hw
);
77 const char *clk_name
= clk_hw_get_name(hw
);
78 u32 clk_id
= gate
->clk_id
;
81 ret
= zynqmp_pm_clock_getstate(clk_id
, &state
);
83 pr_warn_once("%s() clock get state failed for %s, ret = %d\n",
84 __func__
, clk_name
, ret
);
91 static const struct clk_ops zynqmp_clk_gate_ops
= {
92 .enable
= zynqmp_clk_gate_enable
,
93 .disable
= zynqmp_clk_gate_disable
,
94 .is_enabled
= zynqmp_clk_gate_is_enabled
,
98 * zynqmp_clk_register_gate() - Register a gate clock with the clock framework
99 * @name: Name of this clock
100 * @clk_id: Id of this clock
101 * @parents: Name of this clock's parents
102 * @num_parents: Number of parents
103 * @nodes: Clock topology node
105 * Return: clock hardware of the registered clock gate
107 struct clk_hw
*zynqmp_clk_register_gate(const char *name
, u32 clk_id
,
108 const char * const *parents
,
110 const struct clock_topology
*nodes
)
112 struct zynqmp_clk_gate
*gate
;
115 struct clk_init_data init
;
117 /* allocate the gate */
118 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
120 return ERR_PTR(-ENOMEM
);
123 init
.ops
= &zynqmp_clk_gate_ops
;
124 init
.flags
= nodes
->flag
;
125 init
.parent_names
= parents
;
126 init
.num_parents
= 1;
128 /* struct clk_gate assignments */
129 gate
->flags
= nodes
->type_flag
;
130 gate
->hw
.init
= &init
;
131 gate
->clk_id
= clk_id
;
134 ret
= clk_hw_register(NULL
, hw
);