summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2019-07-31 10:02:05 +0300
committerLukasz Majewski <lukma@denx.de>2019-07-31 10:20:51 +0300
commit4f895988adc021d96c02cbcbb7b899c57ecbae4a (patch)
tree7d503483816465042983b9c88d5eee961a247760 /test
parent8f611dc71cb58f2a6a81fbb29e15c0cf3f393965 (diff)
downloadu-boot-4f895988adc021d96c02cbcbb7b899c57ecbae4a.tar.xz
test: dm: clk_ccf: test composite clk
Test composite clk with dm ccf Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'test')
-rw-r--r--test/dm/clk_ccf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/dm/clk_ccf.c b/test/dm/clk_ccf.c
index 8d397593a3..bbc4b500e8 100644
--- a/test/dm/clk_ccf.c
+++ b/test/dm/clk_ccf.c
@@ -56,6 +56,14 @@ static int dm_test_clk_ccf(struct unit_test_state *uts)
pclk = clk_get_parent(clk);
ut_asserteq_str("pll3_80m", pclk->dev->name);
+ /* Test the composite of CCF */
+ ret = clk_get_by_id(SANDBOX_CLK_I2C, &clk);
+ ut_assertok(ret);
+ ut_asserteq_str("i2c", clk->dev->name);
+
+ rate = clk_get_rate(clk);
+ ut_asserteq(rate, 60000000);
+
return 1;
}