wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 9 | #include <console.h> |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 10 | #include <div64.h> |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 11 | #include <inttypes.h> |
Andreas Bießmann | 09c2e90 | 2011-07-18 20:24:04 +0200 | [diff] [blame] | 12 | #include <version.h> |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 13 | #include <linux/ctype.h> |
| 14 | #include <asm/io.h> |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 15 | |
| 16 | int display_options (void) |
| 17 | { |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 18 | #if defined(BUILD_TAG) |
| 19 | printf ("\n\n%s, Build: %s\n\n", version_string, BUILD_TAG); |
| 20 | #else |
| 21 | printf ("\n\n%s\n\n", version_string); |
| 22 | #endif |
| 23 | return 0; |
| 24 | } |
| 25 | |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 26 | void print_freq(uint64_t freq, const char *s) |
| 27 | { |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 28 | unsigned long m = 0; |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 29 | uint32_t f; |
| 30 | static const char names[] = {'G', 'M', 'K'}; |
| 31 | unsigned long d = 1e9; |
| 32 | char c = 0; |
| 33 | unsigned int i; |
| 34 | |
| 35 | for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) { |
| 36 | if (freq >= d) { |
| 37 | c = names[i]; |
| 38 | break; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | if (!c) { |
| 43 | printf("%" PRIu64 " Hz%s", freq, s); |
| 44 | return; |
| 45 | } |
| 46 | |
| 47 | f = do_div(freq, d); |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 48 | |
| 49 | /* If there's a remainder, show the first few digits */ |
| 50 | if (f) { |
| 51 | m = f; |
| 52 | while (m > 1000) |
| 53 | m /= 10; |
| 54 | while (m && !(m % 10)) |
| 55 | m /= 10; |
| 56 | if (m >= 100) |
| 57 | m = (m / 10) + (m % 100 >= 50); |
| 58 | } |
| 59 | |
Suriyan Ramasami | e9015b3 | 2015-08-18 09:25:33 -0700 | [diff] [blame] | 60 | printf("%lu", (unsigned long) freq); |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 61 | if (m) |
| 62 | printf(".%ld", m); |
| 63 | printf(" %cHz%s", c, s); |
| 64 | } |
| 65 | |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 66 | void print_size(uint64_t size, const char *s) |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 67 | { |
Timur Tabi | 52dbac6 | 2010-04-13 13:16:02 -0500 | [diff] [blame] | 68 | unsigned long m = 0, n; |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 69 | uint64_t f; |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 70 | static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'}; |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 71 | unsigned long d = 10 * ARRAY_SIZE(names); |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 72 | char c = 0; |
| 73 | unsigned int i; |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 74 | |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 75 | for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) { |
| 76 | if (size >> d) { |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 77 | c = names[i]; |
| 78 | break; |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 79 | } |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 80 | } |
| 81 | |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 82 | if (!c) { |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 83 | printf("%" PRIu64 " Bytes%s", size, s); |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 84 | return; |
| 85 | } |
| 86 | |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 87 | n = size >> d; |
| 88 | f = size & ((1ULL << d) - 1); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 89 | |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 90 | /* If there's a remainder, deal with it */ |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 91 | if (f) { |
| 92 | m = (10ULL * f + (1ULL << (d - 1))) >> d; |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 93 | |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 94 | if (m >= 10) { |
| 95 | m -= 10; |
| 96 | n += 1; |
| 97 | } |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 100 | printf ("%lu", n); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 101 | if (m) { |
| 102 | printf (".%ld", m); |
| 103 | } |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 104 | printf (" %ciB%s", c, s); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 105 | } |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 106 | |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 107 | #define MAX_LINE_LENGTH_BYTES (64) |
| 108 | #define DEFAULT_LINE_LENGTH_BYTES (16) |
Simon Glass | bda32ff | 2013-02-24 17:33:12 +0000 | [diff] [blame] | 109 | int print_buffer(ulong addr, const void *data, uint width, uint count, |
| 110 | uint linelen) |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 111 | { |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 112 | /* linebuf as a union causes proper alignment */ |
| 113 | union linebuf { |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 114 | #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA |
| 115 | uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1]; |
| 116 | #endif |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 117 | uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1]; |
| 118 | uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1]; |
| 119 | uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1]; |
| 120 | } lb; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 121 | int i; |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 122 | #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 123 | uint64_t __maybe_unused x; |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 124 | #else |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 125 | uint32_t __maybe_unused x; |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 126 | #endif |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 127 | |
| 128 | if (linelen*width > MAX_LINE_LENGTH_BYTES) |
| 129 | linelen = MAX_LINE_LENGTH_BYTES / width; |
| 130 | if (linelen < 1) |
| 131 | linelen = DEFAULT_LINE_LENGTH_BYTES / width; |
| 132 | |
| 133 | while (count) { |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 134 | uint thislinelen = linelen; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 135 | printf("%08lx:", addr); |
| 136 | |
| 137 | /* check for overflow condition */ |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 138 | if (count < thislinelen) |
| 139 | thislinelen = count; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 140 | |
| 141 | /* Copy from memory into linebuf and print hex values */ |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 142 | for (i = 0; i < thislinelen; i++) { |
Mike Frysinger | 64419e4 | 2010-07-23 06:17:30 -0400 | [diff] [blame] | 143 | if (width == 4) |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 144 | x = lb.ui[i] = *(volatile uint32_t *)data; |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 145 | #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA |
| 146 | else if (width == 8) |
| 147 | x = lb.uq[i] = *(volatile uint64_t *)data; |
| 148 | #endif |
Mike Frysinger | 64419e4 | 2010-07-23 06:17:30 -0400 | [diff] [blame] | 149 | else if (width == 2) |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 150 | x = lb.us[i] = *(volatile uint16_t *)data; |
Mike Frysinger | 64419e4 | 2010-07-23 06:17:30 -0400 | [diff] [blame] | 151 | else |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 152 | x = lb.uc[i] = *(volatile uint8_t *)data; |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 153 | #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA |
Simon Glass | 66da9be | 2015-05-04 11:31:11 -0600 | [diff] [blame] | 154 | printf(" %0*llx", width * 2, (long long)x); |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 155 | #else |
Mike Frysinger | 64419e4 | 2010-07-23 06:17:30 -0400 | [diff] [blame] | 156 | printf(" %0*x", width * 2, x); |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 157 | #endif |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 158 | data += width; |
| 159 | } |
| 160 | |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 161 | while (thislinelen < linelen) { |
| 162 | /* fill line with whitespace for nice ASCII print */ |
| 163 | for (i=0; i<width*2+1; i++) |
| 164 | puts(" "); |
| 165 | linelen--; |
| 166 | } |
| 167 | |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 168 | /* Print data in ASCII characters */ |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 169 | for (i = 0; i < thislinelen * width; i++) { |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 170 | if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80) |
| 171 | lb.uc[i] = '.'; |
| 172 | } |
| 173 | lb.uc[i] = '\0'; |
| 174 | printf(" %s\n", lb.uc); |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 175 | |
| 176 | /* update references */ |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 177 | addr += thislinelen * width; |
| 178 | count -= thislinelen; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 179 | |
| 180 | if (ctrlc()) |
| 181 | return -1; |
| 182 | } |
| 183 | |
| 184 | return 0; |
| 185 | } |