README.nand 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. NAND FLASH commands and notes
  2. See NOTE below!!!
  3. # (C) Copyright 2003
  4. # Dave Ellis, SIXNET, dge@sixnetio.com
  5. #
  6. # See file CREDITS for list of people who contributed to this
  7. # project.
  8. #
  9. # This program is free software; you can redistribute it and/or
  10. # modify it under the terms of the GNU General Public License as
  11. # published by the Free Software Foundation; either version 2 of
  12. # the License, or (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. # MA 02111-1307 USA
  23. Commands:
  24. nand bad
  25. Print a list of all of the bad blocks in the current device.
  26. nand device
  27. Print information about the current NAND device.
  28. nand device num
  29. Make device `num' the current device and print information about it.
  30. nand erase off|partition size
  31. nand erase clean [off|partition size]
  32. Erase `size' bytes starting at offset `off'. Alternatively partition
  33. name can be specified, in this case size will be eventually limited
  34. to not exceed partition size (this behaviour applies also to read
  35. and write commands). Only complete erase blocks can be erased.
  36. If `erase' is specified without an offset or size, the entire flash
  37. is erased. If `erase' is specified with partition but without an
  38. size, the entire partition is erased.
  39. If `clean' is specified, a JFFS2-style clean marker is written to
  40. each block after it is erased.
  41. This command will not erase blocks that are marked bad. There is
  42. a debug option in cmd_nand.c to allow bad blocks to be erased.
  43. Please read the warning there before using it, as blocks marked
  44. bad by the manufacturer must _NEVER_ be erased.
  45. nand info
  46. Print information about all of the NAND devices found.
  47. nand read addr ofs|partition size
  48. Read `size' bytes from `ofs' in NAND flash to `addr'. Blocks that
  49. are marked bad are skipped. If a page cannot be read because an
  50. uncorrectable data error is found, the command stops with an error.
  51. nand read.oob addr ofs|partition size
  52. Read `size' bytes from the out-of-band data area corresponding to
  53. `ofs' in NAND flash to `addr'. This is limited to the 16 bytes of
  54. data for one 512-byte page or 2 256-byte pages. There is no check
  55. for bad blocks or ECC errors.
  56. nand write addr ofs|partition size
  57. Write `size' bytes from `addr' to `ofs' in NAND flash. Blocks that
  58. are marked bad are skipped. If a page cannot be read because an
  59. uncorrectable data error is found, the command stops with an error.
  60. As JFFS2 skips blocks similarly, this allows writing a JFFS2 image,
  61. as long as the image is short enough to fit even after skipping the
  62. bad blocks. Compact images, such as those produced by mkfs.jffs2
  63. should work well, but loading an image copied from another flash is
  64. going to be trouble if there are any bad blocks.
  65. nand write.trimffs addr ofs|partition size
  66. Enabled by the CONFIG_CMD_NAND_TRIMFFS macro. This command will write to
  67. the NAND flash in a manner identical to the 'nand write' command
  68. described above -- with the additional check that all pages at the end
  69. of eraseblocks which contain only 0xff data will not be written to the
  70. NAND flash. This behaviour is required when flashing UBI images
  71. containing UBIFS volumes as per the UBI FAQ[1].
  72. [1] http://www.linux-mtd.infradead.org/doc/ubi.html#L_flasher_algo
  73. nand write.oob addr ofs|partition size
  74. Write `size' bytes from `addr' to the out-of-band data area
  75. corresponding to `ofs' in NAND flash. This is limited to the 16 bytes
  76. of data for one 512-byte page or 2 256-byte pages. There is no check
  77. for bad blocks.
  78. nand read.raw addr ofs|partition [count]
  79. nand write.raw addr ofs|partition [count]
  80. Read or write one or more pages at "ofs" in NAND flash, from or to
  81. "addr" in memory. This is a raw access, so ECC is avoided and the
  82. OOB area is transferred as well. If count is absent, it is assumed
  83. to be one page. As with .yaffs2 accesses, the data is formatted as
  84. a packed sequence of "data, oob, data, oob, ..." -- no alignment of
  85. individual pages is maintained.
  86. Configuration Options:
  87. CONFIG_CMD_NAND
  88. Enables NAND support and commmands.
  89. CONFIG_CMD_NAND_TORTURE
  90. Enables the torture command (see description of this command below).
  91. CONFIG_MTD_NAND_ECC_JFFS2
  92. Define this if you want the Error Correction Code information in
  93. the out-of-band data to be formatted to match the JFFS2 file system.
  94. CONFIG_MTD_NAND_ECC_YAFFS would be another useful choice for
  95. someone to implement.
  96. CONFIG_SYS_MAX_NAND_DEVICE
  97. The maximum number of NAND devices you want to support.
  98. CONFIG_SYS_NAND_MAX_CHIPS
  99. The maximum number of NAND chips per device to be supported.
  100. CONFIG_SYS_NAND_SELF_INIT
  101. Traditionally, glue code in drivers/mtd/nand/nand.c has driven
  102. the initialization process -- it provides the mtd and nand
  103. structs, calls a board init function for a specific device,
  104. calls nand_scan(), and registers with mtd.
  105. This arrangement does not provide drivers with the flexibility to
  106. run code between nand_scan_ident() and nand_scan_tail(), or other
  107. deviations from the "normal" flow.
  108. If a board defines CONFIG_SYS_NAND_SELF_INIT, drivers/mtd/nand/nand.c
  109. will make one call to board_nand_init(), with no arguments. That
  110. function is responsible for calling a driver init function for
  111. each NAND device on the board, that performs all initialization
  112. tasks except setting mtd->name, and registering with the rest of
  113. U-Boot. Those last tasks are accomplished by calling nand_register()
  114. on the new mtd device.
  115. Example of new init to be added to the end of an existing driver
  116. init:
  117. /*
  118. * devnum is the device number to be used in nand commands
  119. * and in mtd->name. Must be less than
  120. * CONFIG_SYS_NAND_MAX_DEVICE.
  121. */
  122. mtd = &nand_info[devnum];
  123. /* chip is struct nand_chip, and is now provided by the driver. */
  124. mtd->priv = &chip;
  125. /*
  126. * Fill in appropriate values if this driver uses these fields,
  127. * or uses the standard read_byte/write_buf/etc. functions from
  128. * nand_base.c that use these fields.
  129. */
  130. chip.IO_ADDR_R = ...;
  131. chip.IO_ADDR_W = ...;
  132. if (nand_scan_ident(mtd, CONFIG_SYS_MAX_NAND_CHIPS, NULL))
  133. error out
  134. /*
  135. * Insert here any code you wish to run after the chip has been
  136. * identified, but before any other I/O is done.
  137. */
  138. if (nand_scan_tail(mtd))
  139. error out
  140. if (nand_register(devnum))
  141. error out
  142. In addition to providing more flexibility to the driver, it reduces
  143. the difference between a U-Boot driver and its Linux counterpart.
  144. nand_init() is now reduced to calling board_nand_init() once, and
  145. printing a size summary. This should also make it easier to
  146. transition to delayed NAND initialization.
  147. Please convert your driver even if you don't need the extra
  148. flexibility, so that one day we can eliminate the old mechanism.
  149. NOTE:
  150. =====
  151. The current NAND implementation is based on what is in recent
  152. Linux kernels. The old legacy implementation has been removed.
  153. If you have board code which used CONFIG_NAND_LEGACY, you'll need
  154. to convert to the current NAND interface for it to continue to work.
  155. The Disk On Chip driver is currently broken and has been for some time.
  156. There is a driver in drivers/mtd/nand, taken from Linux, that works with
  157. the current NAND system but has not yet been adapted to the u-boot
  158. environment.
  159. Additional improvements to the NAND subsystem by Guido Classen, 10-10-2006
  160. JFFS2 related commands:
  161. implement "nand erase clean" and old "nand erase"
  162. using both the new code which is able to skip bad blocks
  163. "nand erase clean" additionally writes JFFS2-cleanmarkers in the oob.
  164. Miscellaneous and testing commands:
  165. "markbad [offset]"
  166. create an artificial bad block (for testing bad block handling)
  167. "scrub [offset length]"
  168. like "erase" but don't skip bad block. Instead erase them.
  169. DANGEROUS!!! Factory set bad blocks will be lost. Use only
  170. to remove artificial bad blocks created with the "markbad" command.
  171. "torture offset"
  172. Torture block to determine if it is still reliable.
  173. Enabled by the CONFIG_CMD_NAND_TORTURE configuration option.
  174. This command returns 0 if the block is still reliable, else 1.
  175. If the block is detected as unreliable, it is up to the user to decide to
  176. mark this block as bad.
  177. The analyzed block is put through 3 erase / write cycles (or less if the block
  178. is detected as unreliable earlier).
  179. This command can be used in scripts, e.g. together with the markbad command to
  180. automate retries and handling of possibly newly detected bad blocks if the
  181. nand write command fails.
  182. It can also be used manually by users having seen some NAND errors in logs to
  183. search the root cause of these errors.
  184. The underlying nand_torture() function is also useful for code willing to
  185. automate actions following a nand->write() error. This would e.g. be required
  186. in order to program or update safely firmware to NAND, especially for the UBI
  187. part of such firmware.
  188. NAND locking command (for chips with active LOCKPRE pin)
  189. "nand lock"
  190. set NAND chip to lock state (all pages locked)
  191. "nand lock tight"
  192. set NAND chip to lock tight state (software can't change locking anymore)
  193. "nand lock status"
  194. displays current locking status of all pages
  195. "nand unlock [offset] [size]"
  196. unlock consecutive area (can be called multiple times for different areas)
  197. "nand unlock.allexcept [offset] [size]"
  198. unlock all except specified consecutive area
  199. I have tested the code with board containing 128MiB NAND large page chips
  200. and 32MiB small page chips.