aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nand_base.c
diff options
context:
space:
mode:
authorBrian Norris <norris@broadcom.com>2010-08-20 15:36:12 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2010-10-24 18:38:30 -0400
commit13ed7aed45e370f30a746e49e674144297a92e16 (patch)
tree8f559b677e3629263ef5d3bd5cfc26bc540c8155 /drivers/mtd/nand/nand_base.c
parent5c709ee9f33da4a07d94e3d48b297eb6f003fc61 (diff)
mtd: nand: support new Toshiba SLC
Toshiba does not use ONFI for their NAND flash. So we have to continue to add new IDs used by Toshiba devices as well as heuristic detection for scanning the 2nd page for a BBM. This is a relatively harmless start at supporting many of them. These chips mostly follow the same ID fields of previous generations, but there is a need for a tweak. These chips introduce a strange 576 byte OOB (that's 36 bytes per 512 bytes of page). In the preliminary data, Toshiba has not defined exactly how their ID strings should decode. In the future, a new tweak must be added. Data is taken from, among others, Toshiba TC58TxG4S2FBAxx Signed-off-by: Brian Norris <norris@broadcom.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand/nand_base.c')
-rw-r--r--drivers/mtd/nand/nand_base.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index b0f091aca097..1ae953c4eccc 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -2972,8 +2972,8 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
2972 * Bad block marker is stored in the last page of each block 2972 * Bad block marker is stored in the last page of each block
2973 * on Samsung and Hynix MLC devices; stored in first two pages 2973 * on Samsung and Hynix MLC devices; stored in first two pages
2974 * of each block on Micron devices with 2KiB pages and on 2974 * of each block on Micron devices with 2KiB pages and on
2975 * SLC Samsung, Hynix, and AMD/Spansion. All others scan only 2975 * SLC Samsung, Hynix, Toshiba and AMD/Spansion. All others scan
2976 * the first page. 2976 * only the first page.
2977 */ 2977 */
2978 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) && 2978 if ((chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
2979 (*maf_id == NAND_MFR_SAMSUNG || 2979 (*maf_id == NAND_MFR_SAMSUNG ||
@@ -2982,6 +2982,7 @@ static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd,
2982 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) && 2982 else if ((!(chip->cellinfo & NAND_CI_CELLTYPE_MSK) &&
2983 (*maf_id == NAND_MFR_SAMSUNG || 2983 (*maf_id == NAND_MFR_SAMSUNG ||
2984 *maf_id == NAND_MFR_HYNIX || 2984 *maf_id == NAND_MFR_HYNIX ||
2985 *maf_id == NAND_MFR_TOSHIBA ||
2985 *maf_id == NAND_MFR_AMD)) || 2986 *maf_id == NAND_MFR_AMD)) ||
2986 (mtd->writesize == 2048 && 2987 (mtd->writesize == 2048 &&
2987 *maf_id == NAND_MFR_MICRON)) 2988 *maf_id == NAND_MFR_MICRON))