xref: /linux/include/kunit/clk.h (revision c8d430db8eec7d4fd13a6bea27b7086a54eda6da)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _CLK_KUNIT_H
3 #define _CLK_KUNIT_H
4 
5 struct clk;
6 struct clk_hw;
7 struct device;
8 struct device_node;
9 struct kunit;
10 
11 struct clk *
12 clk_get_kunit(struct kunit *test, struct device *dev, const char *con_id);
13 struct clk *
14 of_clk_get_kunit(struct kunit *test, struct device_node *np, int index);
15 
16 struct clk *
17 clk_hw_get_clk_kunit(struct kunit *test, struct clk_hw *hw, const char *con_id);
18 struct clk *
19 clk_hw_get_clk_prepared_enabled_kunit(struct kunit *test, struct clk_hw *hw,
20 				      const char *con_id);
21 
22 int clk_prepare_enable_kunit(struct kunit *test, struct clk *clk);
23 
24 int clk_hw_register_kunit(struct kunit *test, struct device *dev, struct clk_hw *hw);
25 int of_clk_hw_register_kunit(struct kunit *test, struct device_node *node,
26 			     struct clk_hw *hw);
27 
28 #endif
29