diff options
author | Jason <r64343@freescale.com> | 2009-11-30 17:35:50 +0800 |
---|---|---|
committer | Jason <r64343@freescale.com> | 2009-12-08 18:11:50 +0800 |
commit | a012066c0996d8b79b815470aded18e266733e2b (patch) | |
tree | f2c908671b70a642baa09650dfff05b45053287c /include/linux | |
parent | d8667412a8b7e1ad96979bc2191b4e3fa90c8254 (diff) | |
download | u-boot-imx-a012066c0996d8b79b815470aded18e266733e2b.zip u-boot-imx-a012066c0996d8b79b815470aded18e266733e2b.tar.gz u-boot-imx-a012066c0996d8b79b815470aded18e266733e2b.tar.bz2 |
ENGR00118789 Uboot:Update NAND scan scheme to support new nand type
Update NAND scan scheme to support new nand type. With this
patch uboot can support new NAND flash on mx25/mx35 board
while compatible with old NAND on old boards.
Signed-off-by: Jason Liu <r64343@freescale.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/nand.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 7d5196a..ea90961 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -437,6 +437,8 @@ struct nand_chip { #define NAND_MFR_HYNIX 0xad #define NAND_MFR_MICRON 0x2c #define NAND_MFR_AMD 0x01 +#define NAND_MFR_SANDISK 0x45 +#define NAND_MFR_INTEL 0x89 /** * struct nand_flash_dev - NAND Flash Device ID Structure |