Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 165474
b: refs/heads/master
c: 71b7d0d
h: refs/heads/master
v: v3
  • Loading branch information
Eric Benard authored and David Woodhouse committed Sep 19, 2009
1 parent 0158fcb commit afa26d5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 64da392ab08a88ad83f4c3f60283711ee090c9ef
refs/heads/master: 71b7d0d90d536ae4e70929cc59a1a9f6ba457c6c
16 changes: 15 additions & 1 deletion trunk/drivers/mtd/nand/mxc_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,17 @@ static void mxc_nand_command(struct mtd_info *mtd, unsigned command,
}
}

/* Define some generic bad / good block scan pattern which are used
* while scanning a device for factory marked good / bad blocks. */
static uint8_t scan_ff_pattern[] = { 0xff, 0xff };

static struct nand_bbt_descr smallpage_memorybased = {
.options = NAND_BBT_SCAN2NDPAGE,
.offs = 5,
.len = 1,
.pattern = scan_ff_pattern
};

static int __init mxcnd_probe(struct platform_device *pdev)
{
struct nand_chip *this;
Expand Down Expand Up @@ -973,7 +984,10 @@ static int __init mxcnd_probe(struct platform_device *pdev)
goto escan;
}

host->pagesize_2k = (mtd->writesize == 2048) ? 1 : 0;
if (mtd->writesize == 2048) {
host->pagesize_2k = 1;
this->badblock_pattern = &smallpage_memorybased;
}

if (this->ecc.mode == NAND_ECC_HW) {
switch (mtd->oobsize) {
Expand Down

0 comments on commit afa26d5

Please sign in to comment.