From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Cc: Kai Assman <kai.assmann@de.bosch.com>
Subject: [PATCH] clk: zynq: eval ps-clock-frequency from DT
Date: Mon, 8 May 2023 09:24:31 +0200 [thread overview]
Message-ID: <20230508072431.94874-1-s.trumtrar@pengutronix.de> (raw)
From: Kai Assman <kai.assmann@de.bosch.com>
Currently the ps_clk_rate is locked to 33.3MHz. The devicetree
provides a property "ps-clock-frequency" that specifies this clock.
If the property is found, overwrite ps_clk_rate otherwise stay at the
default 33.3MHz
Signed-off-by: Kai Assmann <kai.assmann@de.bosch.com>
Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
---
drivers/clk/zynq/clkc.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/clk/zynq/clkc.c b/drivers/clk/zynq/clkc.c
index 8e4beda295..37a0fbadb5 100644
--- a/drivers/clk/zynq/clkc.c
+++ b/drivers/clk/zynq/clkc.c
@@ -388,6 +388,9 @@ static int zynq_clock_probe(struct device *dev)
return PTR_ERR(parent_res);
slcr_offset = parent_res->start;
+
+ of_property_read_u32(dev->device_node, "ps-clock-frequency",
+ (u32 *)&ps_clk_rate);
}
iores = request_iomem_region(dev_name(dev), iores->start + slcr_offset,
--
2.39.0
next reply other threads:[~2023-05-08 10:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-08 7:24 Steffen Trumtrar [this message]
2023-05-08 11:17 ` Ahmad Fatoum
2023-05-09 6:09 ` Steffen Trumtrar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230508072431.94874-1-s.trumtrar@pengutronix.de \
--to=s.trumtrar@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=kai.assmann@de.bosch.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox