* [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID
@ 2012-05-22 14:30 Brian Norris
2012-05-22 14:30 ` [PATCH 2/2] mtd: nand: remove NAND_BBT_SEARCH option Brian Norris
2012-05-23 12:49 ` [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID Artem Bityutskiy
0 siblings, 2 replies; 3+ messages in thread
From: Brian Norris @ 2012-05-22 14:30 UTC (permalink / raw)
To: Artem Bityutskiy; +Cc: linux-mtd, Brian Norris, David Woodhouse
Eon's new NAND flash: EN27LN1G08.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
---
drivers/mtd/nand/nand_ids.c | 1 +
include/linux/mtd/nand.h | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/mtd/nand/nand_ids.c b/drivers/mtd/nand/nand_ids.c
index 621b70b..509a9f6 100644
--- a/drivers/mtd/nand/nand_ids.c
+++ b/drivers/mtd/nand/nand_ids.c
@@ -176,6 +176,7 @@ struct nand_manufacturers nand_manuf_ids[] = {
{NAND_MFR_MICRON, "Micron"},
{NAND_MFR_AMD, "AMD"},
{NAND_MFR_MACRONIX, "Macronix"},
+ {NAND_MFR_EON, "Eon"},
{0x0, "Unknown"}
};
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h
index 57977c6..53dcf49 100644
--- a/include/linux/mtd/nand.h
+++ b/include/linux/mtd/nand.h
@@ -559,6 +559,7 @@ struct nand_chip {
#define NAND_MFR_MICRON 0x2c
#define NAND_MFR_AMD 0x01
#define NAND_MFR_MACRONIX 0xc2
+#define NAND_MFR_EON 0x92
/**
* struct nand_flash_dev - NAND Flash Device ID Structure
--
1.7.5.4.2.g519b1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] mtd: nand: remove NAND_BBT_SEARCH option
2012-05-22 14:30 [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID Brian Norris
@ 2012-05-22 14:30 ` Brian Norris
2012-05-23 12:49 ` [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID Artem Bityutskiy
1 sibling, 0 replies; 3+ messages in thread
From: Brian Norris @ 2012-05-22 14:30 UTC (permalink / raw)
To: Artem Bityutskiy; +Cc: linux-mtd, Brian Norris, David Woodhouse
This option was never used and isn't currently used.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
---
Documentation/DocBook/mtdnand.tmpl | 2 --
include/linux/mtd/bbm.h | 2 --
2 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/Documentation/DocBook/mtdnand.tmpl b/Documentation/DocBook/mtdnand.tmpl
index e0aedb7..fe122d6 100644
--- a/Documentation/DocBook/mtdnand.tmpl
+++ b/Documentation/DocBook/mtdnand.tmpl
@@ -1216,8 +1216,6 @@ in this page</entry>
#define NAND_BBT_LASTBLOCK 0x00000010
/* The bbt is at the given page, else we must scan for the bbt */
#define NAND_BBT_ABSPAGE 0x00000020
-/* The bbt is at the given page, else we must scan for the bbt */
-#define NAND_BBT_SEARCH 0x00000040
/* bbt is stored per chip on multichip devices */
#define NAND_BBT_PERCHIP 0x00000080
/* bbt has a version counter at offset veroffs */
diff --git a/include/linux/mtd/bbm.h b/include/linux/mtd/bbm.h
index 650ef35..5d9fcb7 100644
--- a/include/linux/mtd/bbm.h
+++ b/include/linux/mtd/bbm.h
@@ -78,8 +78,6 @@ struct nand_bbt_descr {
#define NAND_BBT_LASTBLOCK 0x00000010
/* The bbt is at the given page, else we must scan for the bbt */
#define NAND_BBT_ABSPAGE 0x00000020
-/* The bbt is at the given page, else we must scan for the bbt */
-#define NAND_BBT_SEARCH 0x00000040
/* bbt is stored per chip on multichip devices */
#define NAND_BBT_PERCHIP 0x00000080
/* bbt has a version counter at offset veroffs */
--
1.7.5.4.2.g519b1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID
2012-05-22 14:30 [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID Brian Norris
2012-05-22 14:30 ` [PATCH 2/2] mtd: nand: remove NAND_BBT_SEARCH option Brian Norris
@ 2012-05-23 12:49 ` Artem Bityutskiy
1 sibling, 0 replies; 3+ messages in thread
From: Artem Bityutskiy @ 2012-05-23 12:49 UTC (permalink / raw)
To: Brian Norris; +Cc: linux-mtd, David Woodhouse
[-- Attachment #1: Type: text/plain, Size: 263 bytes --]
On Tue, 2012-05-22 at 07:30 -0700, Brian Norris wrote:
> Eon's new NAND flash: EN27LN1G08.
>
> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Pushed the 3 patches you recently sent to l2-mtd.git, thanks!
--
Best Regards,
Artem Bityutskiy
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-05-23 12:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-22 14:30 [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID Brian Norris
2012-05-22 14:30 ` [PATCH 2/2] mtd: nand: remove NAND_BBT_SEARCH option Brian Norris
2012-05-23 12:49 ` [PATCH 1/2] mtd: nand: add Eon Silicon Solutions manufacturer ID 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).