diff options
author | Ezequiel García <ezequiel@vanguardiasur.com.ar> | 2014-09-11 12:02:08 -0300 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-09-17 01:02:48 -0700 |
commit | fef775caa705255358cdf7bbaf9bbc2fd1111761 (patch) | |
tree | ed080f0f7c339f4b51cbc3e19fa98b73c161c4a3 /include/linux/platform_data/mtd-nand-omap2.h | |
parent | 2d405ec5fdd5b6848beb820301d4fcaa3e2c4159 (diff) | |
download | talos-obmc-linux-fef775caa705255358cdf7bbaf9bbc2fd1111761.tar.gz talos-obmc-linux-fef775caa705255358cdf7bbaf9bbc2fd1111761.zip |
nand: omap2: Add support for flash-based bad block table
This commit adds a new platform-data boolean property that enables use
of a flash-based bad block table. This can also be enabled by setting
the 'nand-on-flash-bbt' devicetree property.
If the flash BBT is not enabled, the driver falls back to use OOB
bad block markers only, as before. If the flash BBT is enabled the
kernel will keep track of bad blocks using a BBT, in addition to
the OOB markers.
As explained by Brian Norris the reasons for using a BBT are:
""
The primary reason would be that NAND datasheets specify it these days.
A better argument is that nobody guarantees that you can write a
bad block marker to a worn out block; you may just get program failures.
This has been acknowledged by several developers over the last several
years.
Additionally, you get a boot-time performance improvement if you only
have to read a few pages, instead of a page or two from every block on
the flash.
""
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Acked-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'include/linux/platform_data/mtd-nand-omap2.h')
-rw-r--r-- | include/linux/platform_data/mtd-nand-omap2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/platform_data/mtd-nand-omap2.h b/include/linux/platform_data/mtd-nand-omap2.h index 16ec262dfcc8..090bbab0130a 100644 --- a/include/linux/platform_data/mtd-nand-omap2.h +++ b/include/linux/platform_data/mtd-nand-omap2.h @@ -71,6 +71,7 @@ struct omap_nand_platform_data { struct mtd_partition *parts; int nr_parts; bool dev_ready; + bool flash_bbt; enum nand_io xfer_type; int devsize; enum omap_ecc ecc_opt; |