All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: parsers: bcm47xxpart: Fix halfblock reads
@ 2022-10-13 22:28 Linus Walleij
  2022-10-17 22:18 ` Florian Fainelli
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2022-10-13 22:28 UTC (permalink / raw)
  To: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra
  Cc: linux-mtd, Linus Walleij, Rafał Miłecki

There is some code in the parser that tries to read 0x8000
bytes into a block to "read in the middle" of the block. Well
that only works if the block is also 0x10000 bytes all the time,
else we get these parse errors as we reach the end of the flash:

spi-nor spi0.0: mx25l1606e (2048 Kbytes)
mtd_read error while parsing (offset: 0x200000): -22
mtd_read error while parsing (offset: 0x201000): -22
(...)

Fix the code to do what I think was intended.

Cc: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/mtd/parsers/bcm47xxpart.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/parsers/bcm47xxpart.c b/drivers/mtd/parsers/bcm47xxpart.c
index 50fcf4c2174b..13daf9bffd08 100644
--- a/drivers/mtd/parsers/bcm47xxpart.c
+++ b/drivers/mtd/parsers/bcm47xxpart.c
@@ -233,11 +233,11 @@ static int bcm47xxpart_parse(struct mtd_info *master,
 		}
 
 		/* Read middle of the block */
-		err = mtd_read(master, offset + 0x8000, 0x4, &bytes_read,
+		err = mtd_read(master, offset + (blocksize / 2), 0x4, &bytes_read,
 			       (uint8_t *)buf);
 		if (err && !mtd_is_bitflip(err)) {
 			pr_err("mtd_read error while parsing (offset: 0x%X): %d\n",
-			       offset + 0x8000, err);
+			       offset + (blocksize / 2), err);
 			continue;
 		}
 
-- 
2.34.1


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: parsers: bcm47xxpart: Fix halfblock reads
  2022-10-13 22:28 [PATCH] mtd: parsers: bcm47xxpart: Fix halfblock reads Linus Walleij
@ 2022-10-17 22:18 ` Florian Fainelli
  2022-10-18  8:15   ` Miquel Raynal
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Fainelli @ 2022-10-17 22:18 UTC (permalink / raw)
  To: Linus Walleij, Miquel Raynal, Richard Weinberger, Vignesh Raghavendra
  Cc: linux-mtd, Rafał Miłecki

On 10/13/22 15:28, Linus Walleij wrote:
> There is some code in the parser that tries to read 0x8000
> bytes into a block to "read in the middle" of the block. Well
> that only works if the block is also 0x10000 bytes all the time,
> else we get these parse errors as we reach the end of the flash:
> 
> spi-nor spi0.0: mx25l1606e (2048 Kbytes)
> mtd_read error while parsing (offset: 0x200000): -22

Is it worth a Fixes: tag so it reaches stable eventually and we have 
this reach OpenWrt directly where it is presumably the most useful?
-- 
Florian

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mtd: parsers: bcm47xxpart: Fix halfblock reads
  2022-10-17 22:18 ` Florian Fainelli
@ 2022-10-18  8:15   ` Miquel Raynal
  0 siblings, 0 replies; 3+ messages in thread
From: Miquel Raynal @ 2022-10-18  8:15 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: Linus Walleij, Richard Weinberger, Vignesh Raghavendra,
	linux-mtd, Rafał Miłecki

Hi Florian, Linus,

f.fainelli@gmail.com wrote on Mon, 17 Oct 2022 15:18:15 -0700:

> On 10/13/22 15:28, Linus Walleij wrote:
> > There is some code in the parser that tries to read 0x8000
> > bytes into a block to "read in the middle" of the block. Well
> > that only works if the block is also 0x10000 bytes all the time,
> > else we get these parse errors as we reach the end of the flash:
> > 
> > spi-nor spi0.0: mx25l1606e (2048 Kbytes)
> > mtd_read error while parsing (offset: 0x200000): -22  
> 
> Is it worth a Fixes: tag so it reaches stable eventually and we have this reach OpenWrt directly where it is presumably the most useful?

Agreed. Linus, can you resend with Fixes: tag? I'll apply it right away
to mtd/fixes.

Thanks,
Miquèl

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-18  8:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-13 22:28 [PATCH] mtd: parsers: bcm47xxpart: Fix halfblock reads Linus Walleij
2022-10-17 22:18 ` Florian Fainelli
2022-10-18  8:15   ` Miquel Raynal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.