2 * Parallel NOR Flash tests
4 * Copyright (c) 2005-2011 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #if CFG_POST & CFG_SYS_POST_FLASH
17 * This code will walk over the declared sectors erasing them,
18 * then programming them, then verifying the written contents.
19 * Possible future work:
20 * - verify sectors before/after are not erased/written
21 * - verify partial writes (e.g. programming only middle of sector)
22 * - verify the contents of the erased sector
23 * - better seed pattern than 0x00..0xff
26 #ifndef CFG_SYS_POST_FLASH_NUM
27 # define CFG_SYS_POST_FLASH_NUM 0
29 #if CFG_SYS_POST_FLASH_START >= CFG_SYS_POST_FLASH_END
30 # error "invalid flash block start/end"
33 static void *seed_src_data(void *ptr, ulong *old_len, ulong new_len)
38 p = ptr = realloc(ptr, new_len);
42 for (i = *old_len; i < new_len; ++i)
50 int flash_post_test(int flags)
54 int ret, n, n_start, n_end;
57 /* the output from the common flash layers needs help */
62 info = &flash_info[CFG_SYS_POST_FLASH_NUM];
63 n_start = CFG_SYS_POST_FLASH_START;
64 n_end = CFG_SYS_POST_FLASH_END;
66 for (n = n_start; n < n_end; ++n) {
67 ulong s_start, s_len, s_off;
69 s_start = info->start[n];
70 s_len = flash_sector_size(info, n);
71 s_off = s_start - info->start[0];
73 src = seed_src_data(src, &len, s_len);
75 printf("malloc(%#lx) failed\n", s_len);
79 printf("\tsector %i: %#lx +%#lx", n, s_start, s_len);
81 ret = flash_erase(info, n, n + 1);
87 ret = write_buff(info, src, s_start, s_len);
93 ret = memcmp(src, (void *)s_start, s_len);
95 printf(" verify failed with %i\n", ret);