Commit c902467c authored by Frieder Schrempf's avatar Frieder Schrempf Committed by Miquel Raynal

mtd: nand: Cleanup flags and fields for bad block marker position

Now that we have moved the information to the chip level, let's
remove all the unused flags and fields.
Signed-off-by: default avatarFrieder Schrempf <frieder.schrempf@kontron.de>
Reviewed-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
parent bfd15c90
...@@ -93,10 +93,7 @@ struct nand_bbt_descr { ...@@ -93,10 +93,7 @@ struct nand_bbt_descr {
#define NAND_BBT_WRITE 0x00002000 #define NAND_BBT_WRITE 0x00002000
/* Read and write back block contents when writing bbt */ /* Read and write back block contents when writing bbt */
#define NAND_BBT_SAVECONTENT 0x00004000 #define NAND_BBT_SAVECONTENT 0x00004000
/* Search good / bad pattern on the first and the second page */
#define NAND_BBT_SCAN2NDPAGE 0x00008000
/* Search good / bad pattern on the last page of the eraseblock */
#define NAND_BBT_SCANLASTPAGE 0x00010000
/* /*
* Use a flash based bad block table. By default, OOB identifier is saved in * Use a flash based bad block table. By default, OOB identifier is saved in
* OOB area. This option is passed to the default bad block table function. * OOB area. This option is passed to the default bad block table function.
...@@ -123,13 +120,6 @@ struct nand_bbt_descr { ...@@ -123,13 +120,6 @@ struct nand_bbt_descr {
/* The maximum number of blocks to scan for a bbt */ /* The maximum number of blocks to scan for a bbt */
#define NAND_BBT_SCAN_MAXBLOCKS 4 #define NAND_BBT_SCAN_MAXBLOCKS 4
/*
* Constants for oob configuration
*/
#define NAND_SMALL_BADBLOCK_POS 5
#define NAND_LARGE_BADBLOCK_POS 0
#define ONENAND_BADBLOCK_POS 0
/* /*
* Bad block scanning errors * Bad block scanning errors
*/ */
...@@ -140,7 +130,6 @@ struct nand_bbt_descr { ...@@ -140,7 +130,6 @@ struct nand_bbt_descr {
/** /**
* struct bbm_info - [GENERIC] Bad Block Table data structure * struct bbm_info - [GENERIC] Bad Block Table data structure
* @bbt_erase_shift: [INTERN] number of address bits in a bbt entry * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry
* @badblockpos: [INTERN] position of the bad block marker in the oob area
* @options: options for this descriptor * @options: options for this descriptor
* @bbt: [INTERN] bad block table pointer * @bbt: [INTERN] bad block table pointer
* @isbad_bbt: function to determine if a block is bad * @isbad_bbt: function to determine if a block is bad
...@@ -150,7 +139,6 @@ struct nand_bbt_descr { ...@@ -150,7 +139,6 @@ struct nand_bbt_descr {
*/ */
struct bbm_info { struct bbm_info {
int bbt_erase_shift; int bbt_erase_shift;
int badblockpos;
int options; int options;
uint8_t *bbt; uint8_t *bbt;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment