]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
spi: airoha: fix dirmap_{read,write} operations
authorLorenzo Bianconi <lorenzo@kernel.org>
Fri, 13 Sep 2024 21:07:13 +0000 (23:07 +0200)
committerMark Brown <broonie@kernel.org>
Wed, 18 Sep 2024 13:10:32 +0000 (15:10 +0200)
commit2e6bbfe7b0c0607001b784082c2685b134174fac
tree490d4bc8fd167f20c7d61b022fb5c8241867e2ff
parent07f1eb718db281c3e0cdb068ea7d73c30921a81c
spi: airoha: fix dirmap_{read,write} operations

SPI_NFI_READ_FROM_CACHE_DONE bit must be written at the end of
dirmap_read operation even if it is already set.
In the same way, SPI_NFI_LOAD_TO_CACHE_DONE bit must be written at the
end of dirmap_write operation even if it is already set.
For this reason use regmap_write_bits() instead of regmap_set_bits().
This patch fixes mtd_pagetest kernel module test.

Fixes: a403997c1201 ("spi: airoha: add SPI-NAND Flash controller driver")
Tested-by: Christian Marangi <ansuelsmth@gmail.com>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Link: https://patch.msgid.link/20240913-airoha-spi-fixes-v1-1-de2e74ed4664@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-airoha-snfi.c