Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2002 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 90606da | 2020-06-07 20:33:00 -0600 | [diff] [blame] | 8 | #include <compiler.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> |
Pali Rohár | bdfb6d7 | 2021-08-02 15:18:31 +0200 | [diff] [blame] | 11 | #include <version_string.h> |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 12 | #include <linux/ctype.h> |
| 13 | #include <asm/io.h> |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 14 | |
Simon Glass | 6c519f2 | 2017-06-16 12:51:42 -0600 | [diff] [blame] | 15 | char *display_options_get_banner_priv(bool newlines, const char *build_tag, |
| 16 | char *buf, int size) |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 17 | { |
Simon Glass | 6c519f2 | 2017-06-16 12:51:42 -0600 | [diff] [blame] | 18 | int len; |
| 19 | |
| 20 | len = snprintf(buf, size, "%s%s", newlines ? "\n\n" : "", |
| 21 | version_string); |
| 22 | if (build_tag && len < size) |
| 23 | len += snprintf(buf + len, size - len, ", Build: %s", |
| 24 | build_tag); |
| 25 | if (len > size - 3) |
| 26 | len = size - 3; |
Heinrich Schuchardt | 6c74e94 | 2019-04-26 18:39:00 +0200 | [diff] [blame] | 27 | if (len < 0) |
| 28 | len = 0; |
| 29 | snprintf(buf + len, size - len, "\n\n"); |
Simon Glass | 6c519f2 | 2017-06-16 12:51:42 -0600 | [diff] [blame] | 30 | |
| 31 | return buf; |
| 32 | } |
| 33 | |
| 34 | #ifndef BUILD_TAG |
| 35 | #define BUILD_TAG NULL |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 36 | #endif |
Simon Glass | 6c519f2 | 2017-06-16 12:51:42 -0600 | [diff] [blame] | 37 | |
| 38 | char *display_options_get_banner(bool newlines, char *buf, int size) |
| 39 | { |
| 40 | return display_options_get_banner_priv(newlines, BUILD_TAG, buf, size); |
| 41 | } |
| 42 | |
| 43 | int display_options(void) |
| 44 | { |
| 45 | char buf[DISPLAY_OPTIONS_BANNER_LENGTH]; |
| 46 | |
| 47 | display_options_get_banner(true, buf, sizeof(buf)); |
| 48 | printf("%s", buf); |
| 49 | |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 50 | return 0; |
| 51 | } |
| 52 | |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 53 | void print_freq(uint64_t freq, const char *s) |
| 54 | { |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 55 | unsigned long m = 0; |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 56 | uint32_t f; |
Heinrich Schuchardt | dcf1672 | 2020-10-08 22:23:23 +0200 | [diff] [blame] | 57 | static const char names[] = {'G', 'M', 'k'}; |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 58 | unsigned long d = 1e9; |
| 59 | char c = 0; |
| 60 | unsigned int i; |
| 61 | |
| 62 | for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) { |
| 63 | if (freq >= d) { |
| 64 | c = names[i]; |
| 65 | break; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | if (!c) { |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 70 | printf("%llu Hz%s", freq, s); |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 71 | return; |
| 72 | } |
| 73 | |
| 74 | f = do_div(freq, d); |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 75 | |
| 76 | /* If there's a remainder, show the first few digits */ |
| 77 | if (f) { |
| 78 | m = f; |
| 79 | while (m > 1000) |
| 80 | m /= 10; |
| 81 | while (m && !(m % 10)) |
| 82 | m /= 10; |
| 83 | if (m >= 100) |
| 84 | m = (m / 10) + (m % 100 >= 50); |
| 85 | } |
| 86 | |
Suriyan Ramasami | e9015b3 | 2015-08-18 09:25:33 -0700 | [diff] [blame] | 87 | printf("%lu", (unsigned long) freq); |
Simon Glass | 33eac2d | 2015-04-29 07:56:43 -0600 | [diff] [blame] | 88 | if (m) |
| 89 | printf(".%ld", m); |
| 90 | printf(" %cHz%s", c, s); |
| 91 | } |
| 92 | |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 93 | void print_size(uint64_t size, const char *s) |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 94 | { |
Timur Tabi | 52dbac6 | 2010-04-13 13:16:02 -0500 | [diff] [blame] | 95 | unsigned long m = 0, n; |
Simon Glass | c6da9ae | 2014-10-15 04:38:35 -0600 | [diff] [blame] | 96 | uint64_t f; |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 97 | static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'}; |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 98 | unsigned long d = 10 * ARRAY_SIZE(names); |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 99 | char c = 0; |
| 100 | unsigned int i; |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 101 | |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 102 | for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) { |
| 103 | if (size >> d) { |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 104 | c = names[i]; |
| 105 | break; |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 106 | } |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 109 | if (!c) { |
Matwey V. Kornilov | f52352f | 2021-08-06 00:22:58 +0300 | [diff] [blame] | 110 | /* |
| 111 | * SPL tiny-printf is not capable for printing uint64_t. |
| 112 | * We have just checked that the size is small enought to fit |
| 113 | * unsigned int safely. |
| 114 | */ |
| 115 | printf("%u Bytes%s", (unsigned int)size, s); |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 116 | return; |
| 117 | } |
| 118 | |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 119 | n = size >> d; |
| 120 | f = size & ((1ULL << d) - 1); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 121 | |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 122 | /* If there's a remainder, deal with it */ |
Nick Thompson | f2d76ae | 2010-05-11 11:29:52 +0100 | [diff] [blame] | 123 | if (f) { |
| 124 | m = (10ULL * f + (1ULL << (d - 1))) >> d; |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 125 | |
Becky Bruce | 417faf2 | 2008-07-09 11:09:41 -0500 | [diff] [blame] | 126 | if (m >= 10) { |
| 127 | m -= 10; |
| 128 | n += 1; |
| 129 | } |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 132 | printf ("%lu", n); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 133 | if (m) { |
| 134 | printf (".%ld", m); |
| 135 | } |
Timur Tabi | 4b42c90 | 2010-04-13 13:16:03 -0500 | [diff] [blame] | 136 | printf (" %ciB%s", c, s); |
wdenk | 20e0e23 | 2002-09-08 16:09:41 +0000 | [diff] [blame] | 137 | } |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 138 | |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 139 | #define MAX_LINE_LENGTH_BYTES 64 |
| 140 | #define DEFAULT_LINE_LENGTH_BYTES 16 |
| 141 | |
| 142 | int hexdump_line(ulong addr, const void *data, uint width, uint count, |
| 143 | uint linelen, char *out, int size) |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 144 | { |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 145 | /* linebuf as a union causes proper alignment */ |
| 146 | union linebuf { |
York Sun | 4d1fd7f | 2014-02-26 17:03:19 -0800 | [diff] [blame] | 147 | uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1]; |
Reinhard Meyer | 150f723 | 2010-09-08 12:25:40 +0200 | [diff] [blame] | 148 | uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1]; |
| 149 | uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1]; |
| 150 | uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1]; |
| 151 | } lb; |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 152 | uint thislinelen; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 153 | int i; |
Simon Glass | 677dbf5 | 2020-06-02 19:26:47 -0600 | [diff] [blame] | 154 | ulong x; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 155 | |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 156 | if (linelen * width > MAX_LINE_LENGTH_BYTES) |
| 157 | linelen = MAX_LINE_LENGTH_BYTES / width; |
| 158 | if (linelen < 1) |
| 159 | linelen = DEFAULT_LINE_LENGTH_BYTES / width; |
| 160 | |
| 161 | /* |
| 162 | * Check the size here so that we don't need to use snprintf(). This |
| 163 | * helps to reduce code size |
| 164 | */ |
| 165 | if (size < HEXDUMP_MAX_BUF_LENGTH(linelen * width)) |
| 166 | return -ENOSPC; |
| 167 | |
| 168 | thislinelen = linelen; |
| 169 | out += sprintf(out, "%08lx:", addr); |
| 170 | |
| 171 | /* check for overflow condition */ |
| 172 | if (count < thislinelen) |
| 173 | thislinelen = count; |
| 174 | |
| 175 | /* Copy from memory into linebuf and print hex values */ |
| 176 | for (i = 0; i < thislinelen; i++) { |
| 177 | if (width == 4) |
| 178 | x = lb.ui[i] = *(volatile uint32_t *)data; |
| 179 | else if (MEM_SUPPORT_64BIT_DATA && width == 8) |
| 180 | x = lb.uq[i] = *(volatile ulong *)data; |
| 181 | else if (width == 2) |
| 182 | x = lb.us[i] = *(volatile uint16_t *)data; |
| 183 | else |
| 184 | x = lb.uc[i] = *(volatile uint8_t *)data; |
| 185 | if (CONFIG_IS_ENABLED(USE_TINY_PRINTF)) |
| 186 | out += sprintf(out, " %x", (uint)x); |
| 187 | else |
| 188 | out += sprintf(out, " %0*lx", width * 2, x); |
| 189 | data += width; |
| 190 | } |
| 191 | |
| 192 | /* fill line with whitespace for nice ASCII print */ |
| 193 | for (i = 0; i < (linelen - thislinelen) * (width * 2 + 1); i++) |
| 194 | *out++ = ' '; |
| 195 | |
| 196 | /* Print data in ASCII characters */ |
| 197 | for (i = 0; i < thislinelen * width; i++) { |
| 198 | if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80) |
| 199 | lb.uc[i] = '.'; |
| 200 | } |
| 201 | lb.uc[i] = '\0'; |
| 202 | out += sprintf(out, " %s", lb.uc); |
| 203 | |
| 204 | return thislinelen; |
| 205 | } |
| 206 | |
| 207 | int print_buffer(ulong addr, const void *data, uint width, uint count, |
| 208 | uint linelen) |
| 209 | { |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 210 | if (linelen*width > MAX_LINE_LENGTH_BYTES) |
| 211 | linelen = MAX_LINE_LENGTH_BYTES / width; |
| 212 | if (linelen < 1) |
| 213 | linelen = DEFAULT_LINE_LENGTH_BYTES / width; |
| 214 | |
| 215 | while (count) { |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 216 | uint thislinelen; |
| 217 | char buf[HEXDUMP_MAX_BUF_LENGTH(width * linelen)]; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 218 | |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 219 | thislinelen = hexdump_line(addr, data, width, count, linelen, |
| 220 | buf, sizeof(buf)); |
| 221 | assert(thislinelen >= 0); |
| 222 | puts(buf); |
| 223 | putc('\n'); |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 224 | |
| 225 | /* update references */ |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 226 | data += thislinelen * width; |
Andreas Bießmann | efd7c11 | 2013-02-07 04:58:19 +0000 | [diff] [blame] | 227 | addr += thislinelen * width; |
| 228 | count -= thislinelen; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 229 | |
Simon Glass | 0cceb99 | 2021-05-08 07:00:05 -0600 | [diff] [blame] | 230 | if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc()) |
| 231 | return -EINTR; |
Grant Likely | c95c428 | 2007-02-20 09:05:00 +0100 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | return 0; |
| 235 | } |