From: Finn Thain <fthain@linux-m68k.org>
To: Jens Axboe <axboe@kernel.dk>, Laurent Vivier <laurent@vivier.eu>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>,
Joshua Thompson <funaho@jurai.org>,
linux-block@vger.kernel.org, linux-m68k@lists.linux-m68k.org,
linux-kernel@vger.kernel.org
Subject: [PATCH v3 20/33] swim: Deduplicate polling loops
Date: Fri, 04 Sep 2026 19:26:36 +1000 [thread overview]
Message-ID: <0ea2d3313dea26f8b4c2abc4d29055ac95aeb74b.1788513997.git.fthain@linux-m68k.org> (raw)
In-Reply-To: <cover.1788513996.git.fthain@linux-m68k.org>
Replace duplicated polling loops with poll_timeout_us(). Change the
interruptible sleep to uninterruptible because signal delivery shouldn't
be allowed to shorten delays required by the drive hardware.
Change the timeout for the !STEP transition to 20 ms in accordance with
the maximum interval required by the UPD72070 spec. The existing 1 second
timeout is impractical considering the number of steps in a typical seek.
Change the return type of swim_readbit() to bool because that way the
bit names make sense i.e. the reader doesn't have to remember to invert
the active-low logic used for drive signals.
Fixes: 8852ecd97488 ("m68k: mac - Add SWIM floppy support")
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Finn Thain <fthain@linux-m68k.org>
---
Changed since v1:
- Dropped swim_readbit_timeout_atomic() as it's no longer needed.
---
drivers/block/swim.c | 39 ++++++++-------------------------------
1 file changed, 8 insertions(+), 31 deletions(-)
diff --git a/drivers/block/swim.c b/drivers/block/swim.c
index ea4663945505..59e00fb2bff5 100644
--- a/drivers/block/swim.c
+++ b/drivers/block/swim.c
@@ -19,6 +19,7 @@
#include <linux/major.h>
#include <linux/mutex.h>
#include <linux/hdreg.h>
+#include <linux/iopoll.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
@@ -296,7 +297,7 @@ static inline void swim_action(struct swim __iomem *base, int action)
local_irq_restore(flags);
}
-static inline int swim_readbit(struct swim __iomem *base, int bit)
+static inline bool swim_readbit(struct swim __iomem *base, int bit)
{
int stat;
@@ -309,6 +310,9 @@ static inline int swim_readbit(struct swim __iomem *base, int bit)
return (stat & SENSE) == 0;
}
+#define swim_readbit_timeout(base, bit, val, timeout_us) \
+ poll_timeout_us(, swim_readbit(base, bit) == val, 1000, timeout_us, false)
+
static inline void swim_drive(struct swim __iomem *base,
enum drive_location location)
{
@@ -331,16 +335,8 @@ static inline void swim_motor(struct swim __iomem *base,
enum motor_action action)
{
if (action == ON) {
- int i;
-
swim_action(base, MOTOR_ON);
-
- for (i = 0; i < 2*HZ; i++) {
- if (swim_readbit(base, MOTOR_ON))
- break;
- set_current_state(TASK_INTERRUPTIBLE);
- schedule_timeout(1);
- }
+ swim_readbit_timeout(base, MOTOR_ON, true, 2000 * 1000);
} else if (action == OFF) {
swim_action(base, MOTOR_OFF);
swim_write(base, phase, RELAX | PHASE_PIN_DIR);
@@ -349,16 +345,8 @@ static inline void swim_motor(struct swim __iomem *base,
static inline void swim_eject(struct swim __iomem *base)
{
- int i;
-
swim_action(base, EJECT);
-
- for (i = 0; i < 2*HZ; i++) {
- if (!swim_readbit(base, DISK_IN))
- break;
- set_current_state(TASK_INTERRUPTIBLE);
- schedule_timeout(1);
- }
+ swim_readbit_timeout(base, DISK_IN, false, 2000 * 1000);
}
static inline void swim_head(struct swim __iomem *base, enum head head)
@@ -373,19 +361,8 @@ static inline void swim_head(struct swim __iomem *base, enum head head)
static inline int swim_step(struct swim __iomem *base)
{
- int wait;
-
swim_action(base, STEP);
-
- for (wait = 0; wait < HZ; wait++) {
-
- set_current_state(TASK_INTERRUPTIBLE);
- schedule_timeout(1);
-
- if (!swim_readbit(base, STEP))
- return 0;
- }
- return -1;
+ return swim_readbit_timeout(base, STEP, false, 20 * 1000);
}
static inline int swim_track00(struct swim __iomem *base)
--
2.52.0
prev parent reply other threads:[~2026-09-04 9:34 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-04 9:26 [PATCH v3 00/33] block/swim: Fixes and improvements Finn Thain
2026-09-04 9:26 ` [PATCH v3 16/33] swim: Don't use the mark register to read data Finn Thain
2026-09-04 9:26 ` [PATCH v3 30/33] swim: Clean up whitespace Finn Thain
2026-09-04 9:26 ` [PATCH v3 33/33] swim: Unexport global symbols Finn Thain
2026-09-04 9:26 ` [PATCH v3 01/33] swim: Assert strobe with stable outputs Finn Thain
2026-09-04 9:26 ` [PATCH v3 14/33] swim: Check for CRC errors Finn Thain
2026-09-04 9:26 ` [PATCH v3 23/33] swim: Remove pointless mode0 register write Finn Thain
2026-09-04 9:26 ` [PATCH v3 07/33] swim: Refactor SWIM setup Finn Thain
2026-09-04 9:26 ` [PATCH v3 15/33] swim: Check error register during sector read Finn Thain
2026-09-04 9:26 ` [PATCH v3 28/33] swim: Add some helpful references Finn Thain
2026-09-04 9:26 ` [PATCH v3 21/33] swim: Check drive ready bit Finn Thain
2026-09-04 9:26 ` [PATCH v3 31/33] swim: Define macros for constants Finn Thain
2026-09-04 9:26 ` [PATCH v3 26/33] swim: Remove pointless specifiers Finn Thain
2026-09-04 9:26 ` [PATCH v3 13/33] swim: Simplify return value initialization Finn Thain
2026-09-04 9:26 ` [PATCH v3 22/33] swim: Revisit delays Finn Thain
2026-09-04 9:26 ` [PATCH v3 32/33] swim: Define symbols for constants Finn Thain
2026-09-04 9:26 ` [PATCH v3 08/33] swim: Enable clock divider only where appropriate Finn Thain
2026-09-04 9:26 ` [PATCH v3 29/33] swim: Remove unused macro definitions Finn Thain
2026-09-04 9:26 ` [PATCH v3 17/33] swim: Fix buffer overflow Finn Thain
2026-09-04 9:26 ` [PATCH v3 19/33] swim: Remove redundant RELAX actions Finn Thain
2026-09-04 9:26 ` [PATCH v3 25/33] swim: Don't search beyond the first data mark Finn Thain
2026-09-04 9:26 ` [PATCH v3 09/33] swim: Don't start motor until medium is present Finn Thain
2026-09-04 9:26 ` [PATCH v3 12/33] swim: Handle FIFO timeout error Finn Thain
2026-09-04 9:26 ` [PATCH v3 10/33] swim: Recalibrate when drive is probed Finn Thain
2026-09-04 9:26 ` [PATCH v3 27/33] swim: Move swd initialization Finn Thain
2026-09-04 9:26 ` [PATCH v3 18/33] swim: Convert to blocking queue Finn Thain
2026-09-04 9:26 ` [PATCH v3 05/33] swim: Perform ISM/IWM mode switching according to specs Finn Thain
2026-09-04 9:26 ` [PATCH v3 02/33] swim: Select appropriate drive once only Finn Thain
2026-09-04 9:26 ` [PATCH v3 11/33] swim: Add track zero recalibration delay Finn Thain
2026-09-04 9:26 ` [PATCH v3 06/33] swim: Configure parameter memory Finn Thain
2026-09-04 9:26 ` [PATCH v3 03/33] swim: Enable the drive when probing Finn Thain
2026-09-04 9:26 ` [PATCH v3 24/33] swim: Don't needlessly re-read sectors Finn Thain
2026-09-04 9:26 ` [PATCH v3 04/33] swim: Don't disable drive after every sector Finn Thain
2026-09-04 9:26 ` Finn Thain [this message]
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=0ea2d3313dea26f8b4c2abc4d29055ac95aeb74b.1788513997.git.fthain@linux-m68k.org \
--to=fthain@linux-m68k.org \
--cc=axboe@kernel.dk \
--cc=funaho@jurai.org \
--cc=geert@linux-m68k.org \
--cc=laurent@vivier.eu \
--cc=linux-block@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-m68k@lists.linux-m68k.org \
/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