1// SPDX-License-Identifier: GPL-2.0
2/dts-v1/;
3/plugin/;
4
5#include "clk-fixed-rate_test.h"
6
7&{/} {
8	fixed_50MHz: kunit-clock {
9		compatible = "fixed-clock";
10		#clock-cells = <0>;
11		clock-frequency = <TEST_FIXED_FREQUENCY>;
12		clock-accuracy = <TEST_FIXED_ACCURACY>;
13	};
14
15	kunit-clock-consumer {
16		compatible = "test,single-clk-consumer";
17		clocks = <&fixed_50MHz>;
18	};
19};
20