9
0
Fork 0
barebox/board/ipe337/cmd_alternate.c

60 lines
1.0 KiB
C
Raw Normal View History

2007-09-27 14:34:00 +00:00
#include <common.h>
#include <command.h>
#include <linux/stat.h>
#include <malloc.h>
#include <fs.h>
#define MAGIC 0x19691228
2007-09-27 14:34:00 +00:00
static int do_alternate (cmd_tbl_t *cmdtp, int argc, char *argv[])
{
void *buf;
size_t size;
ulong *ptr, val = 0, bitcount = 0;
if (argc != 2) {
u_boot_cmd_usage(cmdtp);
return 0;
2007-09-27 14:34:00 +00:00
}
buf = read_file(argv[1], &size);
if (!buf)
return 1;
ptr = buf;
if ((*ptr) != MAGIC) {
printf("Wrong magic! Expected 0x%08x, got 0x%08x.\n", MAGIC, *ptr);
return 1;
}
ptr++;
2007-09-27 14:34:00 +00:00
while ((ulong)ptr <= (ulong)buf + size && !(val = *ptr++))
bitcount += 32;
if (val) {
do {
if (val & 1)
break;
bitcount++;
} while (val >>= 1);
}
printf("Bitcount : %d\n", bitcount);
2007-09-27 14:34:00 +00:00
free(buf);
return (bitcount & 1) ? 3 : 2;
2007-09-27 14:34:00 +00:00
}
static const __maybe_unused char cmd_alternate_help[] =
"Usage: alternate <file>"
2007-09-27 14:34:00 +00:00
"\n";
U_BOOT_CMD_START(alternate)
.maxargs = CONFIG_MAXARGS,
.cmd = do_alternate,
.usage = "count zero bits in a file",
U_BOOT_CMD_HELP(cmd_alternate_help)
U_BOOT_CMD_END