blob: 80def5201f96d068013667b66ee208ca1798a470 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk20e0e232002-09-08 16:09:41 +00002/*
3 * (C) Copyright 2000-2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk20e0e232002-09-08 16:09:41 +00005 */
6
7#include <common.h>
Simon Glass90606da2020-06-07 20:33:00 -06008#include <compiler.h>
Simon Glass24b852a2015-11-08 23:47:45 -07009#include <console.h>
Simon Glass4e4bf942022-07-31 12:28:48 -060010#include <display_options.h>
Simon Glass33eac2d2015-04-29 07:56:43 -060011#include <div64.h>
Pali Rohárbdfb6d72021-08-02 15:18:31 +020012#include <version_string.h>
Grant Likelyc95c4282007-02-20 09:05:00 +010013#include <linux/ctype.h>
14#include <asm/io.h>
wdenk20e0e232002-09-08 16:09:41 +000015
Simon Glass6c519f22017-06-16 12:51:42 -060016char *display_options_get_banner_priv(bool newlines, const char *build_tag,
17 char *buf, int size)
wdenk20e0e232002-09-08 16:09:41 +000018{
Simon Glass6c519f22017-06-16 12:51:42 -060019 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 Schuchardt6c74e942019-04-26 18:39:00 +020028 if (len < 0)
29 len = 0;
30 snprintf(buf + len, size - len, "\n\n");
Simon Glass6c519f22017-06-16 12:51:42 -060031
32 return buf;
33}
34
35#ifndef BUILD_TAG
36#define BUILD_TAG NULL
wdenk20e0e232002-09-08 16:09:41 +000037#endif
Simon Glass6c519f22017-06-16 12:51:42 -060038
39char *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
44int 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
wdenk20e0e232002-09-08 16:09:41 +000051 return 0;
52}
53
Simon Glass33eac2d2015-04-29 07:56:43 -060054void print_freq(uint64_t freq, const char *s)
55{
Heiko Schocher80402f32015-06-29 09:10:46 +020056 unsigned long m = 0;
Simon Glass33eac2d2015-04-29 07:56:43 -060057 uint32_t f;
Heinrich Schuchardtdcf16722020-10-08 22:23:23 +020058 static const char names[] = {'G', 'M', 'k'};
Simon Glass33eac2d2015-04-29 07:56:43 -060059 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 Yamadadee37fc2018-08-06 20:47:40 +090071 printf("%llu Hz%s", freq, s);
Simon Glass33eac2d2015-04-29 07:56:43 -060072 return;
73 }
74
75 f = do_div(freq, d);
Simon Glass33eac2d2015-04-29 07:56:43 -060076
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 Ramasamie9015b32015-08-18 09:25:33 -070088 printf("%lu", (unsigned long) freq);
Simon Glass33eac2d2015-04-29 07:56:43 -060089 if (m)
90 printf(".%ld", m);
91 printf(" %cHz%s", c, s);
92}
93
Simon Glassc6da9ae2014-10-15 04:38:35 -060094void print_size(uint64_t size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000095{
Timur Tabi52dbac62010-04-13 13:16:02 -050096 unsigned long m = 0, n;
Simon Glassc6da9ae2014-10-15 04:38:35 -060097 uint64_t f;
Timur Tabi4b42c902010-04-13 13:16:03 -050098 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010099 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -0500100 char c = 0;
101 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +0000102
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100103 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
104 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -0500105 c = names[i];
106 break;
Becky Bruce417faf22008-07-09 11:09:41 -0500107 }
wdenk20e0e232002-09-08 16:09:41 +0000108 }
109
Timur Tabi4b42c902010-04-13 13:16:03 -0500110 if (!c) {
Matwey V. Kornilovf52352f2021-08-06 00:22:58 +0300111 /*
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 Tabi4b42c902010-04-13 13:16:03 -0500117 return;
118 }
119
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100120 n = size >> d;
121 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +0000122
Becky Bruce417faf22008-07-09 11:09:41 -0500123 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100124 if (f) {
125 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +0000126
Becky Bruce417faf22008-07-09 11:09:41 -0500127 if (m >= 10) {
128 m -= 10;
129 n += 1;
Pali Rohárd1790182022-09-12 21:02:27 +0200130
131 if (n == 1024 && i > 0) {
132 n = 1;
133 m = 0;
134 c = names[i - 1];
135 }
Becky Bruce417faf22008-07-09 11:09:41 -0500136 }
wdenk0d498392003-07-01 21:06:45 +0000137 }
138
Timur Tabi4b42c902010-04-13 13:16:03 -0500139 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +0000140 if (m) {
141 printf (".%ld", m);
142 }
Timur Tabi4b42c902010-04-13 13:16:03 -0500143 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +0000144}
Grant Likelyc95c4282007-02-20 09:05:00 +0100145
Simon Glass0cceb992021-05-08 07:00:05 -0600146#define MAX_LINE_LENGTH_BYTES 64
147#define DEFAULT_LINE_LENGTH_BYTES 16
148
149int hexdump_line(ulong addr, const void *data, uint width, uint count,
150 uint linelen, char *out, int size)
Grant Likelyc95c4282007-02-20 09:05:00 +0100151{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200152 /* linebuf as a union causes proper alignment */
153 union linebuf {
York Sun4d1fd7f2014-02-26 17:03:19 -0800154 uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1];
Reinhard Meyer150f7232010-09-08 12:25:40 +0200155 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 Glass0cceb992021-05-08 07:00:05 -0600159 uint thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100160 int i;
Simon Glass677dbf52020-06-02 19:26:47 -0600161 ulong x;
Grant Likelyc95c4282007-02-20 09:05:00 +0100162
Simon Glass0cceb992021-05-08 07:00:05 -0600163 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
214int print_buffer(ulong addr, const void *data, uint width, uint count,
215 uint linelen)
216{
Grant Likelyc95c4282007-02-20 09:05:00 +0100217 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 Glass0cceb992021-05-08 07:00:05 -0600223 uint thislinelen;
224 char buf[HEXDUMP_MAX_BUF_LENGTH(width * linelen)];
Grant Likelyc95c4282007-02-20 09:05:00 +0100225
Simon Glass0cceb992021-05-08 07:00:05 -0600226 thislinelen = hexdump_line(addr, data, width, count, linelen,
227 buf, sizeof(buf));
228 assert(thislinelen >= 0);
229 puts(buf);
230 putc('\n');
Grant Likelyc95c4282007-02-20 09:05:00 +0100231
232 /* update references */
Simon Glass0cceb992021-05-08 07:00:05 -0600233 data += thislinelen * width;
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000234 addr += thislinelen * width;
235 count -= thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100236
Simon Glass0cceb992021-05-08 07:00:05 -0600237 if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc())
238 return -EINTR;
Grant Likelyc95c4282007-02-20 09:05:00 +0100239 }
240
241 return 0;
242}