Lines Matching full:fixed

3  * KUnit test for clk fixed rate basic type
17 #include "clk-fixed-rate_test.h"
30 * @clk_fixed_flags: fixed rate specific clk flags
81 * Return: Registered fixed rate clk_hw or ERR_PTR on failure
102 * @hw: fixed rate clk to unregister upon test completion
120 * Test that clk_get_rate() on a fixed rate clk registered with
129 hw = clk_hw_register_fixed_rate(NULL, "test-fixed-rate", NULL, 0, fixed_rate); in clk_fixed_rate_rate_test()
140 * Test that clk_get_accuracy() on a fixed rate clk registered via
149 hw = clk_hw_register_fixed_rate_with_accuracy(NULL, "test-fixed-rate", in clk_fixed_rate_accuracy_test()
161 /* Test suite for a fixed rate clk without any parent */
174 * Test that clk_get_parent() on a fixed rate clk gets the proper parent.
181 const char *parent_name = "test-fixed-rate-parent"; in clk_fixed_rate_parent_test()
193 hw = clk_hw_register_fixed_rate(NULL, "test-fixed-rate", parent_name, 0, 0); in clk_fixed_rate_parent_test()
205 * Test that clk_get_rate() on a fixed rate clk ignores the parent rate.
213 const char *parent_name = "test-fixed-rate-parent"; in clk_fixed_rate_parent_rate_test()
223 hw = clk_hw_register_fixed_rate(NULL, "test-fixed-rate", parent_name, 0, in clk_fixed_rate_parent_rate_test()
235 * Test that clk_get_accuracy() on a fixed rate clk ignores the parent accuracy.
243 const char *parent_name = "test-fixed-rate-parent"; in clk_fixed_rate_parent_accuracy_test()
253 hw = clk_hw_register_fixed_rate_with_accuracy(NULL, "test-fixed-rate", in clk_fixed_rate_parent_accuracy_test()
265 /* Test suite for a fixed rate clk with a parent */
293 * Test that of_fixed_clk_setup() registers a fixed rate clk with the proper
310 * Test that of_fixed_clk_setup() registers a fixed rate clk with the proper
380 MODULE_DESCRIPTION("KUnit test for clk fixed rate basic type");