* [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S
@ 2011-04-11 13:53 Gernot Hoyler
2011-04-11 14:36 ` Guillaume LECERF
2011-04-13 4:07 ` Artem Bityutskiy
0 siblings, 2 replies; 5+ messages in thread
From: Gernot Hoyler @ 2011-04-11 13:53 UTC (permalink / raw)
To: linux-mtd
This patch adds CFI 1.5 support for the new Spansion S29GL-S device family.
For details, see the data sheet on the Spansion web site:
http://www.spansion.com/Support/Datasheets/S29GL_128S_01GS_00_02_e.pdf
Signed-off-by: Gernot Hoyler <Gernot.Hoyler@spansion.com>
---
drivers/mtd/chips/cfi_cmdset_0002.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/chips/cfi_cmdset_0002.c b/drivers/mtd/chips/cfi_cmdset_0002.c
index f9a5331..b216510 100644
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
@@ -462,13 +462,14 @@ struct mtd_info *cfi_cmdset_0002(struct map_info *map, int primary)
cfi_fixup_major_minor(cfi, extp);
/*
- * Valid primary extension versions are: 1.0, 1.1, 1.2, 1.3, 1.4
+ * Valid primary extension versions are: 1.0, 1.1, 1.2, 1.3, 1.4, 1.5
* see: http://cs.ozerki.net/zap/pub/axim-x5/docs/cfi_r20.pdf, page 19
* http://www.spansion.com/Support/AppNotes/cfi_100_20011201.pdf
* http://www.spansion.com/Support/Datasheets/s29ws-p_00_a12_e.pdf
+ * http://www.spansion.com/Support/Datasheets/S29GL_128S_01GS_00_02_e.pdf
*/
if (extp->MajorVersion != '1' ||
- (extp->MajorVersion == '1' && (extp->MinorVersion < '0' || extp->MinorVersion > '4'))) {
+ (extp->MajorVersion == '1' && (extp->MinorVersion < '0' || extp->MinorVersion > '5'))) {
printk(KERN_ERR " Unknown Amd/Fujitsu Extended Query "
"version %c.%c (%#02x/%#02x).\n",
extp->MajorVersion, extp->MinorVersion,
--
1.6.2.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S
2011-04-11 13:53 [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S Gernot Hoyler
@ 2011-04-11 14:36 ` Guillaume LECERF
2011-04-13 4:07 ` Artem Bityutskiy
1 sibling, 0 replies; 5+ messages in thread
From: Guillaume LECERF @ 2011-04-11 14:36 UTC (permalink / raw)
To: Gernot Hoyler; +Cc: linux-mtd
2011/4/11 Gernot Hoyler <Gernot.Hoyler@spansion.com>:
> This patch adds CFI 1.5 support for the new Spansion S29GL-S device family.
> For details, see the data sheet on the Spansion web site:
> http://www.spansion.com/Support/Datasheets/S29GL_128S_01GS_00_02_e.pdf
>
> Signed-off-by: Gernot Hoyler <Gernot.Hoyler@spansion.com>
Acked-by: Guillaume LECERF <glecerf@gmail.com>
--
Guillaume LECERF
GeeXboX developer - www.geexbox.org
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S
2011-04-11 13:53 [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S Gernot Hoyler
2011-04-11 14:36 ` Guillaume LECERF
@ 2011-04-13 4:07 ` Artem Bityutskiy
2011-04-13 9:24 ` Guillaume LECERF
1 sibling, 1 reply; 5+ messages in thread
From: Artem Bityutskiy @ 2011-04-13 4:07 UTC (permalink / raw)
To: Gernot Hoyler; +Cc: linux-mtd
On Mon, 2011-04-11 at 15:53 +0200, Gernot Hoyler wrote:
> This patch adds CFI 1.5 support for the new Spansion S29GL-S device family.
> For details, see the data sheet on the Spansion web site:
> http://www.spansion.com/Support/Datasheets/S29GL_128S_01GS_00_02_e.pdf
>
> Signed-off-by: Gernot Hoyler <Gernot.Hoyler@spansion.com>
Pushed to l2-mtd-2.6.git, thanks.
--
Best Regards,
Artem Bityutskiy (Битюцкий Артём)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S
2011-04-13 4:07 ` Artem Bityutskiy
@ 2011-04-13 9:24 ` Guillaume LECERF
2011-04-13 10:06 ` Artem Bityutskiy
0 siblings, 1 reply; 5+ messages in thread
From: Guillaume LECERF @ 2011-04-13 9:24 UTC (permalink / raw)
To: dedekind1; +Cc: Gernot Hoyler, linux-mtd
2011/4/13 Artem Bityutskiy <dedekind1@gmail.com>:
> Pushed to l2-mtd-2.6.git, thanks.
Where ?
Can't find it on http://git.infradead.org/users/dedekind/l2-mtd-2.6.git ...
--
Guillaume LECERF
GeeXboX developer - www.geexbox.org
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S
2011-04-13 9:24 ` Guillaume LECERF
@ 2011-04-13 10:06 ` Artem Bityutskiy
0 siblings, 0 replies; 5+ messages in thread
From: Artem Bityutskiy @ 2011-04-13 10:06 UTC (permalink / raw)
To: Guillaume LECERF; +Cc: Gernot Hoyler, linux-mtd
On Wed, 2011-04-13 at 11:24 +0200, Guillaume LECERF wrote:
> 2011/4/13 Artem Bityutskiy <dedekind1@gmail.com>:
> > Pushed to l2-mtd-2.6.git, thanks.
>
> Where ?
> Can't find it on http://git.infradead.org/users/dedekind/l2-mtd-2.6.git ...
Sorry, it is there now.
--
Best Regards,
Artem Bityutskiy (Артём Битюцкий)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-04-13 10:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-11 13:53 [PATCH] cfi_cmdset_0002.c: Add CFI 1.5 support for S29GL-S Gernot Hoyler
2011-04-11 14:36 ` Guillaume LECERF
2011-04-13 4:07 ` Artem Bityutskiy
2011-04-13 9:24 ` Guillaume LECERF
2011-04-13 10:06 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox