From 772f5e08faa9d2b5677aa6e01fce06860186a49f Mon Sep 17 00:00:00 2001 From: Enric Balletbo i Serra Date: Tue, 18 May 2010 11:53:59 +0200 Subject: mtd-utils: support 4096+64 page sizes Add support for oobsize 64 and writesize 4096 in nanddump & nandwrite. Artem: some more info from further e-mail exchange: > Are there flashes with the 4096 page / 64 spare combination? Could you > refer to one? May be any URL? I thought 4096 comes with 128. Much to my regret I can't provide a URL because is not public. IGEP v2 board has a Onenand with two dice of 2048/64 spare combination but mtd views 4096/64. The minimal write page is 4K (2K from first dice and 2K from second dice). Signed-off-by: Enric Balletbo i Serra Signed-off-by: Artem Bityutskiy --- nanddump.c | 1 + 1 file changed, 1 insertion(+) (limited to 'nanddump.c') diff --git a/nanddump.c b/nanddump.c index ae0e425..e44ab36 100644 --- a/nanddump.c +++ b/nanddump.c @@ -212,6 +212,7 @@ int main(int argc, char * const argv[]) if (!(meminfo.oobsize == 224 && meminfo.writesize == 4096) && !(meminfo.oobsize == 218 && meminfo.writesize == 4096) && !(meminfo.oobsize == 128 && meminfo.writesize == 4096) && + !(meminfo.oobsize == 64 && meminfo.writesize == 4096) && !(meminfo.oobsize == 64 && meminfo.writesize == 2048) && !(meminfo.oobsize == 32 && meminfo.writesize == 1024) && !(meminfo.oobsize == 16 && meminfo.writesize == 512) && -- cgit v1.2.3