Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1561950

[PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation

From Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Newsgroups linux.kernel
Subject [PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation
Date 2017-01-18 17:50 +0100
Message-ID <t11AS-6ss-23@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


The page calculation under spi_nor_s3an_addr_convert() was wrong. On
Default Address Mode we need to perform a divide by page_size.

Fixes: 61cba34bd6c1 ("mtd: spi-nor: Add support for S3AN spi-nor devices")
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---

v2: Suggested by Marek Vasut <marek.vasut@gmail.com>
  -Use more descriptive name for page

 drivers/mtd/spi-nor/spi-nor.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c
index 2a643a1bb45e..f5c3ce8ac48b 100644
--- a/drivers/mtd/spi-nor/spi-nor.c
+++ b/drivers/mtd/spi-nor/spi-nor.c
@@ -431,11 +431,14 @@ static void spi_nor_unlock_and_unprep(struct spi_nor *nor, enum spi_nor_ops ops)
  */
 static loff_t spi_nor_s3an_addr_convert(struct spi_nor *nor, unsigned int addr)
 {
-	unsigned int offset = addr;
+	unsigned int offset;
+	unsigned int page;
 
-	offset %= nor->page_size;
+	offset = addr % nor->page_size;
+	page = addr / nor->page_size;
+	page <<= (nor->page_size > 512) ? 10 : 9;
 
-	return ((addr - offset) << 1) | offset;
+	return page | offset;
 }
 
 /*
-- 
2.11.0

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> - 2017-01-18 17:50 +0100
  Re: [PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation Cyrille Pitchen <cyrille.pitchen@atmel.com> - 2017-01-20 14:30 +0100
    Re: [PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation Marek Vasut <marek.vasut@gmail.com> - 2017-01-20 15:00 +0100
      Re: [PATCH v2] mtd: spi-nor: Fix S3AN addressing calculation Cyrille Pitchen <cyrille.pitchen@atmel.com> - 2017-01-20 15:50 +0100

csiph-web