From: Michael Tretter <m.tretter@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
BAREBOX <barebox@lists.infradead.org>
Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>,
Michael Tretter <m.tretter@pengutronix.de>
Subject: [PATCH 2/6] arm: socfpga: iossm: use readl_poll_timeout
Date: Thu, 16 Apr 2026 17:25:47 +0200 [thread overview]
Message-ID: <20260416-socfpga-agilex5-iossm-cleanup-v1-2-ca9aae003c84@pengutronix.de> (raw)
In-Reply-To: <20260416-socfpga-agilex5-iossm-cleanup-v1-0-ca9aae003c84@pengutronix.de>
Avoid the custom wait_for_timeout() polling function, but use the
standard readl_poll_timeout() instead.
Actually, the timeout isn't used, because the code is executed in the
PBL. Since this is the SDRAM setup, this doesn't matter since the boot
can't continue in case of a timeout, anyway.
The 10 seconds timeout is the same as used before by the custom
wait_for_timeout() function. U-Boot uses 120 seconds as timeout.
readl_poll_timeout() has the additional advantage that we may reuse the
read register value afterwards.
Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
---
arch/arm/mach-socfpga/iossm_mailbox.c | 41 +++++++++++++++--------------------
1 file changed, 17 insertions(+), 24 deletions(-)
diff --git a/arch/arm/mach-socfpga/iossm_mailbox.c b/arch/arm/mach-socfpga/iossm_mailbox.c
index b8c1fcf68c09..7ec79dec4534 100644
--- a/arch/arm/mach-socfpga/iossm_mailbox.c
+++ b/arch/arm/mach-socfpga/iossm_mailbox.c
@@ -9,6 +9,7 @@
#include <common.h>
#include <io.h>
#include <linux/bitfield.h>
+#include <linux/iopoll.h>
#include <linux/sizes.h>
#include "iossm_mailbox.h"
#include <mach/socfpga/generic.h>
@@ -48,30 +49,13 @@ static const char *ddr_type_list[7] = {
"DDR4", "DDR5", "DDR5_RDIMM", "LPDDR4", "LPDDR5", "QDRIV", "UNKNOWN"
};
-static int wait_for_timeout(const void __iomem *reg, u32 mask, bool set)
-{
- int timeout = 1000000;
- int val;
-
- while (timeout > 0) {
- val = readl(IOMEM(reg));
- if (!set)
- val = ~val;
-
- if ((val & mask) == mask)
- return 0;
- __udelay(10);
- timeout--;
- }
-
- return -ETIMEDOUT;
-}
-
static int is_ddr_csr_clkgen_locked(u32 clkgen_mask, u8 num_port)
{
int ret;
+ u32 tmp;
- ret = wait_for_timeout(IOMEM(ECC_INTSTATUS_SERR), clkgen_mask, true);
+ ret = readl_poll_timeout(IOMEM(ECC_INTSTATUS_SERR),
+ tmp, tmp & clkgen_mask, 10 * USEC_PER_SEC);
if (ret) {
pr_debug("%s: ddr csr clkgena locked is timeout\n", __func__);
return ret;
@@ -105,7 +89,9 @@ int io96b_mb_req(phys_addr_t io96b_csr_addr, u32 ip_type, u32 instance_id,
memset(resp, 0x0, sizeof(*resp));
/* Ensure CMD_REQ is cleared before write any command request */
- ret = wait_for_timeout((IOMEM(io96b_csr_addr) + IOSSM_CMD_REQ_OFFSET), GENMASK(31, 0), false);
+ ret = readl_poll_timeout(IOMEM(io96b_csr_addr) + IOSSM_CMD_REQ_OFFSET,
+ cmd_req, !(cmd_req & GENMASK(31, 0)),
+ 10 * USEC_PER_SEC);
if (ret) {
pr_err("%s: CMD_REQ not ready\n", __func__);
return -1;
@@ -135,8 +121,10 @@ int io96b_mb_req(phys_addr_t io96b_csr_addr, u32 ip_type, u32 instance_id,
cmd_req, io96b_csr_addr + IOSSM_CMD_REQ_OFFSET);
/* Read CMD_RESPONSE_READY in CMD_RESPONSE_STATUS*/
- ret = wait_for_timeout((IOMEM(io96b_csr_addr) + IOSSM_CMD_RESPONSE_STATUS_OFFSET),
- IOSSM_STATUS_COMMAND_RESPONSE_READY, true);
+ ret = readl_poll_timeout(IOMEM(io96b_csr_addr) + IOSSM_CMD_RESPONSE_STATUS_OFFSET,
+ resp->cmd_resp_status,
+ resp->cmd_resp_status & IOSSM_STATUS_COMMAND_RESPONSE_READY,
+ 10 * USEC_PER_SEC);
if (ret) {
pr_err("%s: CMD_RESPONSE ERROR:\n", __func__);
cmd_resp = readl(io96b_csr_addr + IOSSM_CMD_RESPONSE_STATUS_OFFSET);
@@ -262,9 +250,14 @@ static int io96b_cal_status(phys_addr_t addr)
{
int ret;
u32 cal_success, cal_fail;
+ u32 cal_status;
phys_addr_t status_addr = addr + IOSSM_STATUS_OFFSET;
+
/* Ensure calibration completed */
- ret = wait_for_timeout(IOMEM(status_addr), IOSSM_STATUS_CAL_BUSY, false);
+ ret = readl_poll_timeout(IOMEM(status_addr),
+ cal_status,
+ !(cal_status & IOSSM_STATUS_CAL_BUSY),
+ 10 * USEC_PER_SEC);
if (ret) {
pr_err("%s: SDRAM calibration IO96b instance 0x%llx timeout\n",
__func__, status_addr);
--
2.47.3
next prev parent reply other threads:[~2026-04-16 15:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-16 15:25 [PATCH 0/6] arm: socfpga: iossm: code cleanup Michael Tretter
2026-04-16 15:25 ` [PATCH 1/6] arm: socfpga: iossm: make io96b_cal_status static Michael Tretter
2026-04-16 15:25 ` Michael Tretter [this message]
2026-04-16 15:25 ` [PATCH 3/6] arm: socfpga: iossm: remove duplicate read of response status Michael Tretter
2026-04-16 15:25 ` [PATCH 4/6] arm: socfpga: iossm: remove multiple read of status_addr Michael Tretter
2026-04-16 15:25 ` [PATCH 5/6] arm: socfpga: iossm: change io96b_csr_addr to void * Michael Tretter
2026-04-16 15:25 ` [PATCH 6/6] arm: socfpga: iossm: extract io96b_mb_init_instance Michael Tretter
2026-04-17 8:14 ` [PATCH 0/6] arm: socfpga: iossm: code cleanup Sascha Hauer
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=20260416-socfpga-agilex5-iossm-cleanup-v1-2-ca9aae003c84@pengutronix.de \
--to=m.tretter@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
--cc=s.trumtrar@pengutronix.de \
/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