a282a04538
All modifications made by update_kernel.sh run in a fresh clone without any existing toolchains. Build system: x86_64 Build-tested: ipq806x/R7800, ath79/generic, bcm27xx/bcm2711 Run-tested: ipq806x/R7800 No dmesg regressions, everything functional Signed-off-by: John Audia <graysky@archlinux.us>
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From: Nick Hainke <vincent@systemli.org>
|
|
Date: Sun, 25 Oct 2020 00:52:47 +0200
|
|
Subject: [PATCH] ath79: fix block protection clearing
|
|
|
|
The block protection bits of macronix do not match the implementation.
|
|
The chip has 3 BP bits. Bit 5 is actually the third BP but here the
|
|
5th bit is SR_TB. Therefore the patch adds SR_TB to the mask. In the
|
|
4.19er kernel the whole register was simply set to 0.
|
|
|
|
The wrong implementation did not remove the block protection. This led
|
|
to jffs2 errors in the form of:
|
|
"jffs2: Newly-erased block contained word 0x19852003 at offset 0x..."
|
|
This caused inconsistent memory and other errors.
|
|
|
|
Suggested-by: David Bauer <mail@david-bauer.net>
|
|
Signed-off-by: Nick Hainke <vincent@systemli.org>
|
|
|
|
--- a/drivers/mtd/spi-nor/spi-nor.c
|
|
+++ b/drivers/mtd/spi-nor/spi-nor.c
|
|
@@ -1985,7 +1985,7 @@ static int sr2_bit7_quad_enable(struct s
|
|
static int spi_nor_clear_sr_bp(struct spi_nor *nor)
|
|
{
|
|
int ret;
|
|
- u8 mask = SR_BP2 | SR_BP1 | SR_BP0;
|
|
+ u8 mask = SR_TB | SR_BP2 | SR_BP1 | SR_BP0;
|
|
|
|
if (nor->flags & SNOR_F_HAS_4BIT_BP)
|
|
mask |= SR_BP3;
|