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