mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Stanley J. Johnson" <userm57@yahoo.com>
To: Finn Thain <fthain@linux-m68k.org>, Jens Axboe <axboe@kernel.dk>,
	Laurent Vivier <laurent@vivier.eu>
Cc: Joshua Thompson <funaho@jurai.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	linux-block@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-m68k@lists.linux-m68k.org, Omar Sandoval <osandov@fb.com>
Subject: Re: [PATCH v3 00/33] block/swim: Fixes and improvements
Date: Wed, 23 Sep 2026 02:26:48 -0600	[thread overview]
Message-ID: <cdb86fe1-8e5f-4781-8773-3e199e79a770@yahoo.com> (raw)
In-Reply-To: <cover.1788513996.git.fthain@linux-m68k.org>

Tested-by: Stan Johnson <userm57@yahoo.com>

This patch series was successfully tested on a Mac IIci.

On 9/4/26 3:26 AM, Finn Thain wrote:
> I recently had a need for the 'swim' driver but found that it was too buggy
> to be useful for my purposes. I had two aims in mind--
> 
> Firstly, I needed this driver to help me test my new BMoW Floppy Emu for
> emulation correctness. Being that Linux is open source and MacOS is not,
> this driver should be ideal for that.
> 
> Secondly, I needed to realign the heads in some disk drives. The swim driver
> has most of the code needed for a feedback loop for manual re-alignment, so
> I wrote the remaining code and pushed it to a repo here:
> https://github.com/fthain/linux/commits/swim/
> 
> These patches fix all the bugs I found. They improve stability,
> compatibility and performance. Additional patches improve source code
> quality by removing redundant code and cleaning up a bit.
> 
> This patch series was successfully tested on the following systems.
> 
> Mac Quadra 650 - SWIM 2 with Mitsubishi FDD
> Mac LC III     - SWIM 2 with Mitsubishi FDD and Sony FDD
> Mac Quadra 700 - SWIM with Sony FDD
> Mac IIvx       - SWIM with Sony FDD
> 
> ---
> 
> Changed since v1:
>   - Patches 1/31, 19/31, 23/31 were revised as per Laurent's remarks.
>   - Some minor improvements to patches 9/31, 13/31 and 16/31.
>   - Added patch 24/32 to fix a bug causing silent IO corruption instead
>     of an IO error.
> 
> Changed since v2:
>   - Reviewed-by tags were dropped from patches 1/32, 9/32, 13/32 and 16/32
>     because of unreviewed changes.
>   - Better assembly code in patch 13/32.
>   - Patch 23/32 improved upon to reduce excessive interrupt latency when
>     medium errors are encountered.
>   - Patch 7/32 was split in two, and readability was improved as requested
>     by Geert.
>   - Geert's acked-by tag was added.
> 
> ---
> 
> Finn Thain (33):
>    swim: Assert strobe with stable outputs
>    swim: Select appropriate drive once only
>    swim: Enable the drive when probing
>    swim: Don't disable drive after every sector
>    swim: Perform ISM/IWM mode switching according to specs
>    swim: Configure parameter memory
>    swim: Refactor SWIM setup
>    swim: Enable clock divider only where appropriate
>    swim: Don't start motor until medium is present
>    swim: Recalibrate when drive is probed
>    swim: Add track zero recalibration delay
>    swim: Handle FIFO timeout error
>    swim: Simplify return value initialization
>    swim: Check for CRC errors
>    swim: Check error register during sector read
>    swim: Don't use the mark register to read data
>    swim: Fix buffer overflow
>    swim: Convert to blocking queue
>    swim: Remove redundant RELAX actions
>    swim: Deduplicate polling loops
>    swim: Check drive ready bit
>    swim: Revisit delays
>    swim: Remove pointless mode0 register write
>    swim: Don't needlessly re-read sectors
>    swim: Don't search beyond the first data mark
>    swim: Remove pointless specifiers
>    swim: Move swd initialization
>    swim: Add some helpful references
>    swim: Remove unused macro definitions
>    swim: Clean up whitespace
>    swim: Define macros for constants
>    swim: Define symbols for constants
>    swim: Unexport global symbols
> 
>   arch/m68k/mac/config.c   |  31 ++-
>   drivers/block/swim.c     | 451 ++++++++++++++++++++-------------------
>   drivers/block/swim_asm.S | 356 +++++++++++++++---------------
>   3 files changed, 452 insertions(+), 386 deletions(-)
> 

  parent reply	other threads:[~2026-09-23  8:47 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  9:26 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 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 10/33] swim: Recalibrate when drive is probed Finn Thain
2026-09-04  9:26 ` [PATCH v3 22/33] swim: Revisit delays Finn Thain
2026-09-04  9:26 ` [PATCH v3 30/33] swim: Clean up whitespace 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 02/33] swim: Select appropriate drive once only 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 27/33] swim: Move swd initialization 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 14/33] swim: Check for CRC errors Finn Thain
2026-09-04  9:26 ` [PATCH v3 06/33] swim: Configure parameter memory 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 25/33] swim: Don't search beyond the first data mark 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 01/33] swim: Assert strobe with stable outputs 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 16/33] swim: Don't use the mark register to read data Finn Thain
2026-09-04  9:26 ` [PATCH v3 33/33] swim: Unexport global symbols 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 32/33] swim: Define symbols " 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 17/33] swim: Fix buffer overflow Finn Thain
2026-09-04  9:26 ` [PATCH v3 20/33] swim: Deduplicate polling loops 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 24/33] swim: Don't needlessly re-read sectors Finn Thain
2026-09-04  9:26 ` [PATCH v3 26/33] swim: Remove pointless specifiers 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 04/33] swim: Don't disable drive after every sector 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 09/33] swim: Don't start motor until medium is present Finn Thain
2026-09-04  9:26 ` [PATCH v3 28/33] swim: Add some helpful references Finn Thain
2026-09-23  8:26 ` Stanley J. Johnson [this message]
2026-09-23 11:15 ` [PATCH v3 00/33] block/swim: Fixes and improvements Jens Axboe

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=cdb86fe1-8e5f-4781-8773-3e199e79a770@yahoo.com \
    --to=userm57@yahoo.com \
    --cc=axboe@kernel.dk \
    --cc=fthain@linux-m68k.org \
    --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 \
    --cc=osandov@fb.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

all inboxes | Powered by JetHome®