public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Lorenzo Bianconi <lorenzo@kernel.org>,
	Ray Liu <ray.liu@airoha.com>,  Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	 Conor Dooley <conor+dt@kernel.org>,
	 Matthias Brugger <matthias.bgg@gmail.com>,
	 AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	 Andy Shevchenko <andy@kernel.org>,
	linux-arm-kernel@lists.infradead.org,  linux-spi@vger.kernel.org,
	devicetree@vger.kernel.org,  linux-kernel@vger.kernel.org,
	linux-mediatek@lists.infradead.org,
	 Mikhail Kshevetskiy <mikhail.kshevetskiy@iopsys.eu>
Cc: Andreas Gnau <andreas.gnau@iopsys.eu>
Subject: Re: (subset) [PATCH v10 00/16] spi: airoha: driver fixes & improvements
Date: Fri, 17 Oct 2025 20:01:17 +0100	[thread overview]
Message-ID: <176072767774.228540.4249472913716298629.b4-ty@kernel.org> (raw)
In-Reply-To: <20251012121707.2296160-1-mikhail.kshevetskiy@iopsys.eu>

On Sun, 12 Oct 2025 15:16:51 +0300, Mikhail Kshevetskiy wrote:
> This patch series greatly improve airoha snfi driver and fix a
> number of serious bugs.
> 
> Fixed bugs:
>  * Fix reading/writing of flashes with more than one plane per lun
>  * Fill the buffer with 0xff before writing
>  * Fix reading of flashes supporting continuous reading mode
>  * Fix error paths
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[02/16] spi: airoha: remove unnecessary restriction length
        commit: 661856ca131c8bf6724905966e02149805660abe
[04/16] spi: airoha: remove unnecessary switch to non-dma mode
        commit: 7350f8dc15bfbb7abf1ce4babea6fcace1c574c5
[07/16] spi: airoha: unify dirmap read/write code
        commit: 233a22687411ea053a4b169c07324ee6aa33bf38
[08/16] spi: airoha: support of dualio/quadio flash reading commands
        commit: 80b09137aeab27e59004383058f8cc696a9ee048
[09/16] spi: airoha: avoid setting of page/oob sizes in REG_SPI_NFI_PAGEFMT
        commit: 70eec454f2d6cdfab547c262781acd38328e11a1
[10/16] spi: airoha: reduce the number of modification of REG_SPI_NFI_CNFG and REG_SPI_NFI_SECCUS_SIZE registers
        commit: d1ff30df1d9a4eb4c067795abb5e2a66910fd108
[11/16] spi: airoha: set custom sector size equal to flash page size
        commit: fb81b5cecb8553e3ca2b45288cf340d43c9c2991
[12/16] spi: airoha: avoid reading flash page settings from SNFI registers during driver startup
        commit: 902c0ea18a97b1a6eeee5799cb1fd9a79ef9208e
[13/16] spi: airoha: buffer must be 0xff-ed before writing
        commit: 0743acf746a81e0460a56fd5ff847d97fa7eb370

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


      parent reply	other threads:[~2025-10-17 19:01 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-12 12:16 [PATCH v10 00/16] spi: airoha: driver fixes & improvements Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 01/16] spi: airoha: return an error for continuous mode dirmap creation cases Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 02/16] spi: airoha: remove unnecessary restriction length Mikhail Kshevetskiy
2025-10-16 12:04   ` Mark Brown
2025-10-16 13:39     ` Mikhail Kshevetskiy
2025-10-16 15:07       ` Mark Brown
2025-10-16 15:30         ` Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 03/16] spi: airoha: add support of dual/quad wires spi modes to exec_op() handler Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 04/16] spi: airoha: remove unnecessary switch to non-dma mode Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 05/16] spi: airoha: switch back to non-dma mode in the case of error Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 06/16] spi: airoha: fix reading/writing of flashes with more than one plane per lun Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 07/16] spi: airoha: unify dirmap read/write code Mikhail Kshevetskiy
2025-10-12 12:16 ` [PATCH v10 08/16] spi: airoha: support of dualio/quadio flash reading commands Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 09/16] spi: airoha: avoid setting of page/oob sizes in REG_SPI_NFI_PAGEFMT Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 10/16] spi: airoha: reduce the number of modification of REG_SPI_NFI_CNFG and REG_SPI_NFI_SECCUS_SIZE registers Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 11/16] spi: airoha: set custom sector size equal to flash page size Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 12/16] spi: airoha: avoid reading flash page settings from SNFI registers during driver startup Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 13/16] spi: airoha: buffer must be 0xff-ed before writing Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 14/16] spi: airoha-snfi: en7523: workaround flash damaging if UART_TXD was short to GND Mikhail Kshevetskiy
2025-10-12 12:17 ` [PATCH v10 15/16] dt-bindings: spi: airoha: add compatible for EN7523 Mikhail Kshevetskiy
2025-10-13  0:16   ` Krzysztof Kozlowski
2025-10-12 12:17 ` [PATCH v10 16/16] arm: dts: airoha: en7523: add SNAND node Mikhail Kshevetskiy
2025-10-13  7:34   ` AngeloGioacchino Del Regno
2025-10-16 18:49 ` (subset) [PATCH v10 00/16] spi: airoha: driver fixes & improvements Mark Brown
2025-10-16 20:01   ` Mikhail Kshevetskiy
2025-10-16 20:07     ` Mark Brown
2025-10-17 19:01 ` Mark Brown [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=176072767774.228540.4249472913716298629.b4-ty@kernel.org \
    --to=broonie@kernel.org \
    --cc=andreas.gnau@iopsys.eu \
    --cc=andy@kernel.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-spi@vger.kernel.org \
    --cc=lorenzo@kernel.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mikhail.kshevetskiy@iopsys.eu \
    --cc=ray.liu@airoha.com \
    --cc=robh@kernel.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