summaryrefslogtreecommitdiff
path: root/include/clk.h
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2019-06-24 16:50:38 +0300
committerStefano Babic <sbabic@denx.de>2019-07-19 15:50:30 +0300
commit105db9593eb53ab85a48bcc2187ff8770b7958ec (patch)
tree1cb7fbe26eac81fab7f3d4a35278f5480fb777c7 /include/clk.h
parentec8f1c02dd0c2e8b7302072b3956a9c56139a139 (diff)
downloadu-boot-105db9593eb53ab85a48bcc2187ff8770b7958ec.tar.xz
clk: Extend struct clk to provide information regarding clock rate
This commit extends the struct clk to provide information regarding the clock rate. As a result the clock tree traversal is performed at most once, and further reads are using the cached value. Signed-off-by: Lukasz Majewski <lukma@denx.de>
Diffstat (limited to 'include/clk.h')
-rw-r--r--include/clk.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clk.h b/include/clk.h
index a909b71f1a..d7b937ca7b 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -40,6 +40,7 @@ struct udevice;
* other clock APIs to identify which clock signal to operate upon.
*
* @dev: The device which implements the clock signal.
+ * @rate: The clock rate (in HZ).
* @id: The clock signal ID within the provider.
* @data: An optional data field for scenarios where a single integer ID is not
* sufficient. If used, it can be populated through an .of_xlate op and
@@ -55,6 +56,7 @@ struct udevice;
*/
struct clk {
struct udevice *dev;
+ long long rate; /* in HZ */
/*
* Written by of_xlate. In the future, we might add more fields here.
*/