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