]> Git Repo - linux.git/blob - include/kunit/clk.h
Linux 6.14-rc3
[linux.git] / include / kunit / clk.h
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 int of_clk_add_hw_provider_kunit(struct kunit *test, struct device_node *np,
29                                  struct clk_hw *(*get)(struct of_phandle_args *clkspec, void *data),
30                                  void *data);
31
32 #endif
This page took 0.030445 seconds and 4 git commands to generate.