diff options
| author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-08 06:37:48 -0500 |
|---|---|---|
| committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2008-12-08 06:56:14 -0500 |
| commit | bf60862a58f7cd881cfe86a3b2aceaea4a22b3b0 (patch) | |
| tree | 622e85be4854a4ba65524d0caa4140ab1da9b108 /drivers/mtd | |
| parent | 7163cea15f7b362795b858e7c130cd617aecc0aa (diff) | |
MTD: tests: add mtd_subpagetest
This tests makes sure sub-pages on NAND MTD device work fine.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
| -rw-r--r-- | drivers/mtd/tests/mtd_subpagetest.c | 525 |
1 files changed, 525 insertions, 0 deletions
diff --git a/drivers/mtd/tests/mtd_subpagetest.c b/drivers/mtd/tests/mtd_subpagetest.c new file mode 100644 index 000000000000..4c5e04d0b328 --- /dev/null +++ b/drivers/mtd/tests/mtd_subpagetest.c | |||
| @@ -0,0 +1,525 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2006-2007 Nokia Corporation | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms of the GNU General Public License version 2 as published by | ||
| 6 | * the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 11 | * more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License along with | ||
| 14 | * this program; see the file COPYING. If not, write to the Free Software | ||
| 15 | * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
| 16 | * | ||
| 17 | * Test sub-page read and write on MTD device. | ||
| 18 | * Author: Adrian Hunter <ext-adrian.hunter@nokia.com> | ||
| 19 | * | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include <linux/init.h> | ||
| 23 | #include <linux/module.h> | ||
| 24 | #include <linux/moduleparam.h> | ||
| 25 | #include <linux/err.h> | ||
| 26 | #include <linux/mtd/mtd.h> | ||
| 27 | #include <linux/sched.h> | ||
| 28 | |||
| 29 | #define PRINT_PREF KERN_INFO "mtd_subpagetest: " | ||
| 30 | |||
| 31 | static int dev; | ||
| 32 | module_param(dev, int, S_IRUGO); | ||
| 33 | MODULE_PARM_DESC(dev, "MTD device number to use"); | ||
| 34 | |||
| 35 | static struct mtd_info *mtd; | ||
| 36 | static unsigned char *writebuf; | ||
| 37 | static unsigned char *readbuf; | ||
| 38 | static unsigned char *bbt; | ||
| 39 | |||
| 40 | static int subpgsize; | ||
| 41 | static int bufsize; | ||
| 42 | static int ebcnt; | ||
| 43 | static int pgcnt; | ||
| 44 | static int errcnt; | ||
| 45 | static unsigned long next = 1; | ||
| 46 | |||
| 47 | static inline unsigned int simple_rand(void) | ||
| 48 | { | ||
| 49 | next = next * 1103515245 + 12345; | ||
| 50 | return (unsigned int)((next / 65536) % 32768); | ||
| 51 | } | ||
| 52 | |||
| 53 | static inline void simple_srand(unsigned long seed) | ||
| 54 | { | ||
| 55 | next = seed; | ||
| 56 | } | ||
| 57 | |||
| 58 | static void set_random_data(unsigned char *buf, size_t len) | ||
| 59 | { | ||
| 60 | size_t i; | ||
| 61 | |||
| 62 | for (i = 0; i < len; ++i) | ||
| 63 | buf[i] = simple_rand(); | ||
| 64 | } | ||
| 65 | |||
| 66 | static inline void clear_data(unsigned char *buf, size_t len) | ||
| 67 | { | ||
| 68 | memset(buf, 0, len); | ||
| 69 | } | ||
| 70 | |||
| 71 | static int erase_eraseblock(int ebnum) | ||
| 72 | { | ||
| 73 | int err; | ||
| 74 | struct erase_info ei; | ||
| 75 | loff_t addr = ebnum * mtd->erasesize; | ||
| 76 | |||
| 77 | memset(&ei, 0, sizeof(struct erase_info)); | ||
| 78 | ei.mtd = mtd; | ||
| 79 | ei.addr = addr; | ||
| 80 | ei.len = mtd->erasesize; | ||
| 81 | |||
| 82 | err = mtd->erase(mtd, &ei); | ||
| 83 | if (err) { | ||
| 84 | printk(PRINT_PREF "error %d while erasing EB %d\n", err, ebnum); | ||
| 85 | return err; | ||
| 86 | } | ||
| 87 | |||
| 88 | if (ei.state == MTD_ERASE_FAILED) { | ||
| 89 | printk(PRINT_PREF "some erase error occurred at EB %d\n", | ||
| 90 | ebnum); | ||
| 91 | return -EIO; | ||
| 92 | } | ||
| 93 | |||
| 94 | return 0; | ||
| 95 | } | ||
| 96 | |||
| 97 | static int erase_whole_device(void) | ||
| 98 | { | ||
| 99 | int err; | ||
| 100 | unsigned int i; | ||
| 101 | |||
| 102 | printk(PRINT_PREF "erasing whole device\n"); | ||
| 103 | for (i = 0; i < ebcnt; ++i) { | ||
| 104 | if (bbt[i]) | ||
| 105 | continue; | ||
| 106 | err = erase_eraseblock(i); | ||
| 107 | if (err) | ||
| 108 | return err; | ||
| 109 | cond_resched(); | ||
| 110 | } | ||
| 111 | printk(PRINT_PREF "erased %u eraseblocks\n", i); | ||
| 112 | return 0; | ||
| 113 | } | ||
| 114 | |||
| 115 | static int write_eraseblock(int ebnum) | ||
| 116 | { | ||
| 117 | size_t written = 0; | ||
| 118 | int err = 0; | ||
| 119 | loff_t addr = ebnum * mtd->erasesize; | ||
| 120 | |||
| 121 | set_random_data(writebuf, subpgsize); | ||
| 122 | err = mtd->write(mtd, addr, subpgsize, &written, writebuf); | ||
| 123 | if (unlikely(err || written != subpgsize)) { | ||
| 124 | printk(PRINT_PREF "error: write failed at %#llx\n", | ||
| 125 | (long long)addr); | ||
| 126 | if (written != subpgsize) { | ||
| 127 | printk(PRINT_PREF " write size: %#x\n", subpgsize); | ||
| 128 | printk(PRINT_PREF " written: %#x\n", written); | ||
| 129 | } | ||
| 130 | return err ? err : -1; | ||
| 131 | } | ||
| 132 | |||
| 133 | addr += subpgsize; | ||
| 134 | |||
| 135 | set_random_data(writebuf, subpgsize); | ||
| 136 | err = mtd->write(mtd, addr, subpgsize, &written, writebuf); | ||
| 137 | if (unlikely(err || written != subpgsize)) { | ||
| 138 | printk(PRINT_PREF "error: write failed at %#llx\n", | ||
| 139 | (long long)addr); | ||
| 140 | if (written != subpgsize) { | ||
| 141 | printk(PRINT_PREF " write size: %#x\n", subpgsize); | ||
| 142 | printk(PRINT_PREF " written: %#x\n", written); | ||
| 143 | } | ||
| 144 | return err ? err : -1; | ||
| 145 | } | ||
| 146 | |||
| 147 | return err; | ||
| 148 | } | ||
| 149 | |||
| 150 | static int write_eraseblock2(int ebnum) | ||
| 151 | { | ||
| 152 | size_t written = 0; | ||
| 153 | int err = 0, k; | ||
| 154 | loff_t addr = ebnum * mtd->erasesize; | ||
| 155 | |||
| 156 | for (k = 1; k < 33; ++k) { | ||
| 157 | if (addr + (subpgsize * k) > (ebnum + 1) * mtd->erasesize) | ||
| 158 | break; | ||
| 159 | set_random_data(writebuf, subpgsize * k); | ||
| 160 | err = mtd->write(mtd, addr, subpgsize * k, &written, writebuf); | ||
| 161 | if (unlikely(err || written != subpgsize * k)) { | ||
| 162 | printk(PRINT_PREF "error: write failed at %#llx\n", | ||
| 163 | (long long)addr); | ||
| 164 | if (written != subpgsize) { | ||
| 165 | printk(PRINT_PREF " write size: %#x\n", | ||
| 166 | subpgsize * k); | ||
| 167 | printk(PRINT_PREF " written: %#08x\n", | ||
| 168 | written); | ||
| 169 | } | ||
| 170 | return err ? err : -1; | ||
| 171 | } | ||
| 172 | addr += subpgsize * k; | ||
| 173 | } | ||
| 174 | |||
| 175 | return err; | ||
| 176 | } | ||
| 177 | |||
| 178 | static void print_subpage(unsigned char *p) | ||
| 179 | { | ||
| 180 | int i, j; | ||
| 181 | |||
| 182 | for (i = 0; i < subpgsize; ) { | ||
| 183 | for (j = 0; i < subpgsize && j < 32; ++i, ++j) | ||
| 184 | printk("%02x", *p++); | ||
| 185 | printk("\n"); | ||
| 186 | } | ||
| 187 | } | ||
| 188 | |||
| 189 | static int verify_eraseblock(int ebnum) | ||
| 190 | { | ||
| 191 | size_t read = 0; | ||
| 192 | int err = 0; | ||
| 19 | |||
