bbm.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * linux/include/linux/mtd/bbm.h
  3. *
  4. * NAND family Bad Block Management (BBM) header file
  5. * - Bad Block Table (BBT) implementation
  6. *
  7. * Copyright (c) 2005-2007 Samsung Electronics
  8. * Kyungmin Park <kyungmin.park@samsung.com>
  9. *
  10. * Copyright (c) 2000-2005
  11. * Thomas Gleixner <tglx@linuxtronix.de>
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  26. *
  27. */
  28. #ifndef __LINUX_MTD_BBM_H
  29. #define __LINUX_MTD_BBM_H
  30. /* The maximum number of NAND chips in an array */
  31. #ifndef CONFIG_SYS_NAND_MAX_CHIPS
  32. #define CONFIG_SYS_NAND_MAX_CHIPS 1
  33. #endif
  34. /**
  35. * struct nand_bbt_descr - bad block table descriptor
  36. * @param options options for this descriptor
  37. * @param pages the page(s) where we find the bbt, used with
  38. * option BBT_ABSPAGE when bbt is searched,
  39. * then we store the found bbts pages here.
  40. * Its an array and supports up to 8 chips now
  41. * @param offs offset of the pattern in the oob area of the page
  42. * @param veroffs offset of the bbt version counter in the oob are of the page
  43. * @param version version read from the bbt page during scan
  44. * @param len length of the pattern, if 0 no pattern check is performed
  45. * @param maxblocks maximum number of blocks to search for a bbt. This number of
  46. * blocks is reserved at the end of the device
  47. * where the tables are written.
  48. * @param reserved_block_code if non-0, this pattern denotes a reserved
  49. * (rather than bad) block in the stored bbt
  50. * @param pattern pattern to identify bad block table or factory marked
  51. * good / bad blocks, can be NULL, if len = 0
  52. *
  53. * Descriptor for the bad block table marker and the descriptor for the
  54. * pattern which identifies good and bad blocks. The assumption is made
  55. * that the pattern and the version count are always located in the oob area
  56. * of the first block.
  57. */
  58. struct nand_bbt_descr {
  59. int options;
  60. int pages[CONFIG_SYS_NAND_MAX_CHIPS];
  61. int offs;
  62. int veroffs;
  63. uint8_t version[CONFIG_SYS_NAND_MAX_CHIPS];
  64. int len;
  65. int maxblocks;
  66. int reserved_block_code;
  67. uint8_t *pattern;
  68. };
  69. /* Options for the bad block table descriptors */
  70. /* The number of bits used per block in the bbt on the device */
  71. #define NAND_BBT_NRBITS_MSK 0x0000000F
  72. #define NAND_BBT_1BIT 0x00000001
  73. #define NAND_BBT_2BIT 0x00000002
  74. #define NAND_BBT_4BIT 0x00000004
  75. #define NAND_BBT_8BIT 0x00000008
  76. /* The bad block table is in the last good block of the device */
  77. #define NAND_BBT_LASTBLOCK 0x00000010
  78. /* The bbt is at the given page, else we must scan for the bbt */
  79. #define NAND_BBT_ABSPAGE 0x00000020
  80. /* The bbt is at the given page, else we must scan for the bbt */
  81. #define NAND_BBT_SEARCH 0x00000040
  82. /* bbt is stored per chip on multichip devices */
  83. #define NAND_BBT_PERCHIP 0x00000080
  84. /* bbt has a version counter at offset veroffs */
  85. #define NAND_BBT_VERSION 0x00000100
  86. /* Create a bbt if none exists */
  87. #define NAND_BBT_CREATE 0x00000200
  88. /* Search good / bad pattern through all pages of a block */
  89. #define NAND_BBT_SCANALLPAGES 0x00000400
  90. /* Scan block empty during good / bad block scan */
  91. #define NAND_BBT_SCANEMPTY 0x00000800
  92. /* Write bbt if neccecary */
  93. #define NAND_BBT_WRITE 0x00001000
  94. /* Read and write back block contents when writing bbt */
  95. #define NAND_BBT_SAVECONTENT 0x00002000
  96. /* Search good / bad pattern on the first and the second page */
  97. #define NAND_BBT_SCAN2NDPAGE 0x00004000
  98. /* Search good / bad pattern on the last page of the eraseblock */
  99. #define NAND_BBT_SCANLASTPAGE 0x00008000
  100. /* Chip stores bad block marker on BOTH 1st and 6th bytes of OOB */
  101. #define NAND_BBT_SCANBYTE1AND6 0x00100000
  102. /* The nand_bbt_descr was created dynamicaly and must be freed */
  103. #define NAND_BBT_DYNAMICSTRUCT 0x00200000
  104. /* The bad block table does not OOB for marker */
  105. #define NAND_BBT_NO_OOB 0x00400000
  106. /* The maximum number of blocks to scan for a bbt */
  107. #define NAND_BBT_SCAN_MAXBLOCKS 4
  108. /*
  109. * Constants for oob configuration
  110. */
  111. #define ONENAND_BADBLOCK_POS 0
  112. /*
  113. * Bad block scanning errors
  114. */
  115. #define ONENAND_BBT_READ_ERROR 1
  116. #define ONENAND_BBT_READ_ECC_ERROR 2
  117. #define ONENAND_BBT_READ_FATAL_ERROR 4
  118. /**
  119. * struct bbt_info - [GENERIC] Bad Block Table data structure
  120. * @param bbt_erase_shift [INTERN] number of address bits in a bbt entry
  121. * @param badblockpos [INTERN] position of the bad block marker in the oob area
  122. * @param bbt [INTERN] bad block table pointer
  123. * @param badblock_pattern [REPLACEABLE] bad block scan pattern used for initial bad block scan
  124. * @param priv [OPTIONAL] pointer to private bbm date
  125. */
  126. struct bbm_info {
  127. int bbt_erase_shift;
  128. int badblockpos;
  129. int options;
  130. uint8_t *bbt;
  131. int (*isbad_bbt) (struct mtd_info * mtd, loff_t ofs, int allowbbt);
  132. /* TODO Add more NAND specific fileds */
  133. struct nand_bbt_descr *badblock_pattern;
  134. void *priv;
  135. };
  136. /* OneNAND BBT interface */
  137. extern int onenand_scan_bbt (struct mtd_info *mtd, struct nand_bbt_descr *bd);
  138. extern int onenand_default_bbt (struct mtd_info *mtd);
  139. #endif /* __LINUX_MTD_BBM_H */