Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 332756
b: refs/heads/master
c: 200ab84
h: refs/heads/master
v: v3
  • Loading branch information
Akinobu Mita authored and David Woodhouse committed Sep 29, 2012
1 parent 648897a commit c05623b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ccaa67956cfef80776d72d134467235f0055c863
refs/heads/master: 200ab8454c42c607efd281b2c2398624eccdd2cc
37 changes: 37 additions & 0 deletions trunk/drivers/mtd/tests/mtd_nandecctest.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,31 @@ static void single_bit_error_data(void *error_data, void *correct_data,
__change_bit_le(offset, error_data);
}

static unsigned int random_ecc_bit(size_t size)
{
unsigned int offset = random32() % (3 * BITS_PER_BYTE);

if (size == 256) {
/*
* Don't inject a bit error into the insignificant bits (16th
* and 17th bit) in ECC code for 256 byte data block
*/
while (offset == 16 || offset == 17)
offset = random32() % (3 * BITS_PER_BYTE);
}

return offset;
}

static void single_bit_error_ecc(void *error_ecc, void *correct_ecc,
size_t size)
{
unsigned int offset = random_ecc_bit(size);

memcpy(error_ecc, correct_ecc, 3);
__change_bit_le(offset, error_ecc);
}

static void no_bit_error(void *error_data, void *error_ecc,
void *correct_data, void *correct_ecc, const size_t size)
{
Expand Down Expand Up @@ -76,6 +101,13 @@ static void single_bit_error_in_data(void *error_data, void *error_ecc,
memcpy(error_ecc, correct_ecc, 3);
}

static void single_bit_error_in_ecc(void *error_data, void *error_ecc,
void *correct_data, void *correct_ecc, const size_t size)
{
memcpy(error_data, correct_data, size);
single_bit_error_ecc(error_ecc, correct_ecc, size);
}

static int single_bit_error_correct(void *error_data, void *error_ecc,
void *correct_data, const size_t size)
{
Expand All @@ -101,6 +133,11 @@ static const struct nand_ecc_test nand_ecc_test[] = {
.prepare = single_bit_error_in_data,
.verify = single_bit_error_correct,
},
{
.name = "single-bit-error-in-ecc-correct",
.prepare = single_bit_error_in_ecc,
.verify = single_bit_error_correct,
},
};

static void dump_data_ecc(void *error_data, void *error_ecc, void *correct_data,
Expand Down

0 comments on commit c05623b

Please sign in to comment.