]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
mtd: nand: add driver for diskonchip g4 nand flash
authorMike Dunn <mikedunn@newsguy.com>
Fri, 12 Apr 2013 18:59:18 +0000 (11:59 -0700)
committerMarek Vasut <marex@denx.de>
Sun, 5 May 2013 21:47:05 +0000 (23:47 +0200)
commit956b03e180b5d0a780a9f48707beb264a5e57426
tree5a08bebe0557c395fa9f65d7b640d98848722a9b
parente0e89e236f9692eb0af034c59607e2db2e333c1d
mtd: nand: add driver for diskonchip g4 nand flash

This patch adds a driver for the diskonchip G4 nand flash device.  It is based
on the driver from the linux kernel.

This also includes a separate SPL driver.  A separate SPL driver is used because
the device operates in a different mode (reliable mode) when loading a boot
image, and also because the storage format of the boot image is different from
normal data (pages are stored redundantly).  The SPL driver basically mimics how
a typical IPL reads data from the device.  The special operating mode and
storage format are used to compensate for the fact that the IPL does not contain
the BCH ecc decoding algorithm (due to size constraints).  Although the u-boot
SPL *could* use ecc, it operates like an IPL for the sake of simplicity and
uniformity, since the IPL and SPL share the task of loading the u-boot image.
As a side benefit, the SPL driver is very small.

[port from linux kernel 3.4 commit 570469f3bde7f71cc1ece07a18d54a05b6a8775d]

Signed-off-by: Mike Dunn <mikedunn@newsguy.com>
drivers/mtd/nand/Makefile
drivers/mtd/nand/docg4.c [new file with mode: 0644]
drivers/mtd/nand/docg4_spl.c [new file with mode: 0644]
include/linux/mtd/docg4.h [new file with mode: 0644]