blob: f44305bfcfa78d98e409ac0c9f9061016b747ad9 [file] [log] [blame]
Simon Glassd1389402015-06-23 15:38:23 -06001/*
2 * (C) Copyright 2015 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <command.h>
Simon Glassf2152872016-03-16 07:44:35 -06009#include <div64.h>
Simon Glassd1389402015-06-23 15:38:23 -060010#include "dhry.h"
11
12static int do_dhry(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
13{
Simon Glassf2152872016-03-16 07:44:35 -060014 ulong start, duration, vax_mips;
15 u64 dhry_per_sec;
Simon Glassd1389402015-06-23 15:38:23 -060016 int iterations = 1000000;
17
18 if (argc > 1)
19 iterations = simple_strtoul(argv[1], NULL, 10);
20
21 start = get_timer(0);
22 dhry(iterations);
23 duration = get_timer(start);
Simon Glassf2152872016-03-16 07:44:35 -060024 dhry_per_sec = lldiv(iterations * 1000ULL, duration);
Tom Rinif23baa52016-03-17 10:14:25 -040025 vax_mips = lldiv(dhry_per_sec, 1757);
Simon Glassd1389402015-06-23 15:38:23 -060026 printf("%d iterations in %lu ms: %lu/s, %lu DMIPS\n", iterations,
Simon Glassf2152872016-03-16 07:44:35 -060027 duration, (ulong)dhry_per_sec, vax_mips);
Simon Glassd1389402015-06-23 15:38:23 -060028
29 return 0;
30}
31
32U_BOOT_CMD(
33 dhry, 2, 1, do_dhry,
34 "[iterations] - run dhrystone benchmark",
35 "\n - run the Dhrystone 2.1 benchmark, a rough measure of CPU speed\n"
36);