mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add unit tests for the two types of assigned rate properties. Test different combinations of assigned clocks and make sure that rates aren't assigned when the DT properties are malformed or are zero. Cc: Peng Fan <peng.fan@nxp.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org> Link: https://lore.kernel.org/r/20240822002433.1163814-4-sboyd@kernel.org
16 lines
347 B
Text
16 lines
347 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include "kunit_clk_assigned_rates.h"
|
|
|
|
&{/} {
|
|
clk: kunit-clock {
|
|
compatible = "test,clk-assigned-rates";
|
|
#clock-cells = <1>;
|
|
assigned-clocks = <&clk 0>,
|
|
<&clk 1>;
|
|
assigned-clock-rates-u64 = /bits/ 64 <ASSIGNED_RATES_0_RATE>,
|
|
/bits/ 64 <ASSIGNED_RATES_1_RATE>;
|
|
};
|
|
};
|