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