All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] mtd: spi-nor: aspeed: set the decoding size to at least 2MB for AST2600
@ 2022-03-04 17:07 Potin Lai
  2022-03-04 17:29 ` [SPAM] " Cédric Le Goater
  0 siblings, 1 reply; 8+ messages in thread
From: Potin Lai @ 2022-03-04 17:07 UTC (permalink / raw)
  To: Joel Stanley, Cedric Le Goater, linux-aspeed, openbmc, Patrick Williams
  Cc: Potin Lai

In AST2600, the unit of SPI CEx decoding range register is 1MB, and end
address offset is set to the acctual offset - 1MB. If the flash only has
1MB, the end address will has same value as start address, which will
causing unexpected errors.

This patch set the decoding size to at least 2MB to avoid decoding errors.

Tested:
root@bletchley:~# dmesg | grep "aspeed-smc 1e631000.spi: CE0 window"
[   59.328134] aspeed-smc 1e631000.spi: CE0 window resized to 2MB (AST2600 Decoding)
[   59.343001] aspeed-smc 1e631000.spi: CE0 window [ 0x50000000 - 0x50200000 ] 2MB
root@bletchley:~# devmem 0x1e631030
0x00100000

Signed-off-by: Potin Lai <potin.lai@quantatw.com>
---
 drivers/mtd/spi-nor/controllers/aspeed-smc.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/mtd/spi-nor/controllers/aspeed-smc.c b/drivers/mtd/spi-nor/controllers/aspeed-smc.c
index 416ea247f843..6db35732c0fb 100644
--- a/drivers/mtd/spi-nor/controllers/aspeed-smc.c
+++ b/drivers/mtd/spi-nor/controllers/aspeed-smc.c
@@ -781,6 +781,17 @@ static u32 aspeed_smc_chip_set_segment(struct aspeed_smc_chip *chip)
 			 chip->cs, size >> 20);
 	}
 
+	/*
+	 * The decoding size of AST2600 SPI controller should set at
+	 * least 2MB.
+	 */
+	if (controller->info == &spi_2600_info && size < SZ_2M) {
+		size = SZ_2M;
+		dev_info(chip->nor.dev,
+			 "CE%d window resized to %dMB (AST2600 Decoding)",
+			 chip->cs, size >> 20);
+	}
+
 	ahb_base_phy = controller->ahb_base_phy;
 
 	/*
-- 
2.17.1


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

end of thread, other threads:[~2022-03-08  7:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-04 17:07 [PATCH 1/1] mtd: spi-nor: aspeed: set the decoding size to at least 2MB for AST2600 Potin Lai
2022-03-04 17:29 ` [SPAM] " Cédric Le Goater
2022-03-04 18:00   ` Cédric Le Goater
2022-03-07  5:13     ` Potin Lai (賴柏廷)
2022-03-07  7:57       ` Cédric Le Goater
2022-03-07 18:28         ` Cédric Le Goater
2022-03-08  1:14           ` Potin Lai (賴柏廷)
2022-03-08  6:26             ` Cédric Le Goater

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.