linux-mtd.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM NOR chips
@ 2010-12-17  9:59 Guillaume LECERF
  2010-12-17  9:59 ` [PATCH v5 2/2] mtd: cfi_cmdset_0002: add support for Samsung K8D3x16UxC " Guillaume LECERF
  2010-12-19 17:05 ` [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM " Artem Bityutskiy
  0 siblings, 2 replies; 3+ messages in thread
From: Guillaume LECERF @ 2010-12-17  9:59 UTC (permalink / raw)
  To: linux-mtd
  Cc: Matthias Buecher / Germany, David Woodhouse, Wolfram Sang,
	Artem Bityutskiy

These chips report CFI v0.0 [1], so extend cfi_fixup_major_minor()
to patch all Samsung chips from 0.0 to 1.0.
Discussed and tested by the OpenWRT people [2].

[1] http://www.samsung.com/global/system/business/semiconductor/product/2007/6/11/NORFlash/64Mbit/K8D6316UTM/ds_K8D6x16UxM_rev16.pdf
[2] https://dev.openwrt.org/ticket/7348

Signed-off-by: Guillaume LECERF <glecerf@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
---
 drivers/mtd/chips/cfi_cmdset_0002.c |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/drivers/mtd/chips/cfi_cmdset_0002.c b/drivers/mtd/chips/cfi_cmdset_0002.c
index 9d68ab9..324fee4 100644
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
@@ -392,9 +392,19 @@ static struct cfi_fixup fixup_table[] = {
 static void cfi_fixup_major_minor(struct cfi_private *cfi,
 				  struct cfi_pri_amdstd *extp)
 {
-	if (cfi->mfr == CFI_MFR_SAMSUNG && cfi->id == 0x257e &&
-	    extp->MajorVersion == '0')
-		extp->MajorVersion = '1';
+	if (cfi->mfr == CFI_MFR_SAMSUNG) {
+		if (extp->MajorVersion == '0' && extp->MinorVersion == '0') {
+			/*
+			 * Samsung K8P2815UQB and K8D6x16UxM chips
+			 * report major=0 / minor=0.
+			 */
+			printk(KERN_NOTICE "  Fixing Samsung's Amd/Fujitsu"
+			       " Extended Query version to 1.%c\n",
+			       extp->MinorVersion);
+			extp->MajorVersion = '1';
+		}
+	}
+
 	/*
 	 * SST 38VF640x chips report major=0xFF / minor=0xFF.
 	 */

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

* [PATCH v5 2/2] mtd: cfi_cmdset_0002: add support for Samsung K8D3x16UxC NOR chips
  2010-12-17  9:59 [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM NOR chips Guillaume LECERF
@ 2010-12-17  9:59 ` Guillaume LECERF
  2010-12-19 17:05 ` [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM " Artem Bityutskiy
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume LECERF @ 2010-12-17  9:59 UTC (permalink / raw)
  To: linux-mtd
  Cc: Matthias Buecher / Germany, David Woodhouse, Wolfram Sang,
	Artem Bityutskiy

These chips report CFI v3.3 [1], so patch them on the fly to the more
correct v1.3.
Discussed and tested by the OpenWRT people [2].

[1] http://www.samsung.com/global/system/business/semiconductor/product/2007/6/11/NORFlash/32Mbit/K8D3216UBC/ds_K8D3x16UxC_rev17.pdf
[2] https://dev.openwrt.org/ticket/866

Signed-off-by: Guillaume LECERF <glecerf@gmail.com>
---
 drivers/mtd/chips/cfi_cmdset_0002.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/chips/cfi_cmdset_0002.c b/drivers/mtd/chips/cfi_cmdset_0002.c
index 324fee4..a43ab45 100644
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
@@ -393,10 +393,12 @@ static void cfi_fixup_major_minor(struct cfi_private *cfi,
 				  struct cfi_pri_amdstd *extp)
 {
 	if (cfi->mfr == CFI_MFR_SAMSUNG) {
-		if (extp->MajorVersion == '0' && extp->MinorVersion == '0') {
+		if ((extp->MajorVersion == '0' && extp->MinorVersion == '0') ||
+		    (extp->MajorVersion == '3' && extp->MinorVersion == '3')) {
 			/*
 			 * Samsung K8P2815UQB and K8D6x16UxM chips
 			 * report major=0 / minor=0.
+			 * K8D3x16UxC chips report major=3 / minor=3.
 			 */
 			printk(KERN_NOTICE "  Fixing Samsung's Amd/Fujitsu"
 			       " Extended Query version to 1.%c\n",

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

* Re: [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM NOR chips
  2010-12-17  9:59 [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM NOR chips Guillaume LECERF
  2010-12-17  9:59 ` [PATCH v5 2/2] mtd: cfi_cmdset_0002: add support for Samsung K8D3x16UxC " Guillaume LECERF
@ 2010-12-19 17:05 ` Artem Bityutskiy
  1 sibling, 0 replies; 3+ messages in thread
From: Artem Bityutskiy @ 2010-12-19 17:05 UTC (permalink / raw)
  To: Guillaume LECERF
  Cc: Matthias Buecher / Germany, linux-mtd, David Woodhouse,
	Wolfram Sang

On Fri, 2010-12-17 at 10:59 +0100, Guillaume LECERF wrote:
> These chips report CFI v0.0 [1], so extend cfi_fixup_major_minor()
> to patch all Samsung chips from 0.0 to 1.0.
> Discussed and tested by the OpenWRT people [2].
> 
> [1] http://www.samsung.com/global/system/business/semiconductor/product/2007/6/11/NORFlash/64Mbit/K8D6316UTM/ds_K8D6x16UxM_rev16.pdf
> [2] https://dev.openwrt.org/ticket/7348
> 
> Signed-off-by: Guillaume LECERF <glecerf@gmail.com>
> Acked-by: Wolfram Sang <w.sang@pengutronix.de>

Pushed both patches to l2-mtd-2.6.git, thank you!

-- 
Best Regards,
Artem Bityutskiy (Битюцкий Артём)

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

end of thread, other threads:[~2010-12-19 17:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-17  9:59 [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM NOR chips Guillaume LECERF
2010-12-17  9:59 ` [PATCH v5 2/2] mtd: cfi_cmdset_0002: add support for Samsung K8D3x16UxC " Guillaume LECERF
2010-12-19 17:05 ` [PATCH v5 1/2] mtd: cfi_cmdset_0002: add support for Samsung K8D6x16UxM " Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).