blob: 360b01bcf5ffd62e2f821a7bf83478426171293a [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 Glass33eac2d2015-04-29 07:56:43 -060010#include <div64.h>
Pali Rohárbdfb6d72021-08-02 15:18:31 +020011#include <version_string.h>
Grant Likelyc95c4282007-02-20 09:05:00 +010012#include <linux/ctype.h>
13#include <asm/io.h>
wdenk20e0e232002-09-08 16:09:41 +000014
Simon Glass6c519f22017-06-16 12:51:42 -060015char *display_options_get_banner_priv(bool newlines, const char *build_tag,
16 char *buf, int size)
wdenk20e0e232002-09-08 16:09:41 +000017{
Simon Glass6c519f22017-06-16 12:51:42 -060018 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 Schuchardt6c74e942019-04-26 18:39:00 +020027 if (len < 0)
28 len = 0;
29 snprintf(buf + len, size - len, "\n\n");
Simon Glass6c519f22017-06-16 12:51:42 -060030
31 return buf;
32}
33
34#ifndef BUILD_TAG
35#define BUILD_TAG NULL
wdenk20e0e232002-09-08 16:09:41 +000036#endif
Simon Glass6c519f22017-06-16 12:51:42 -060037
38char *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
43int 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
wdenk20e0e232002-09-08 16:09:41 +000050 return 0;
51}
52
Simon Glass33eac2d2015-04-29 07:56:43 -060053void print_freq(uint64_t freq, const char *s)
54{
Heiko Schocher80402f32015-06-29 09:10:46 +020055 unsigned long m = 0;
Simon Glass33eac2d2015-04-29 07:56:43 -060056 uint32_t f;
Heinrich Schuchardtdcf16722020-10-08 22:23:23 +020057 static const char names[] = {'G', 'M', 'k'};
Simon Glass33eac2d2015-04-29 07:56:43 -060058 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 Yamadadee37fc2018-08-06 20:47:40 +090070 printf("%llu Hz%s", freq, s);
Simon Glass33eac2d2015-04-29 07:56:43 -060071 return;
72 }
73
74 f = do_div(freq, d);
Simon Glass33eac2d2015-04-29 07:56:43 -060075
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 Ramasamie9015b32015-08-18 09:25:33 -070087 printf("%lu", (unsigned long) freq);
Simon Glass33eac2d2015-04-29 07:56:43 -060088 if (m)
89 printf(".%ld", m);
90 printf(" %cHz%s", c, s);
91}
92
Simon Glassc6da9ae2014-10-15 04:38:35 -060093void print_size(uint64_t size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000094{
Timur Tabi52dbac62010-04-13 13:16:02 -050095 unsigned long m = 0, n;
Simon Glassc6da9ae2014-10-15 04:38:35 -060096 uint64_t f;
Timur Tabi4b42c902010-04-13 13:16:03 -050097 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010098 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -050099 char c = 0;
100 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +0000101
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100102 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
103 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -0500104 c = names[i];
105 break;
Becky Bruce417faf22008-07-09 11:09:41 -0500106 }
wdenk20e0e232002-09-08 16:09:41 +0000107 }
108
Timur Tabi4b42c902010-04-13 13:16:03 -0500109 if (!c) {
Matwey V. Kornilovf52352f2021-08-06 00:22:58 +0300110 /*
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 Tabi4b42c902010-04-13 13:16:03 -0500116 return;
117 }
118
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100119 n = size >> d;
120 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +0000121
Becky Bruce417faf22008-07-09 11:09:41 -0500122 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100123 if (f) {
124 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +0000125
Becky Bruce417faf22008-07-09 11:09:41 -0500126 if (m >= 10) {
127 m -= 10;
128 n += 1;
129 }
wdenk0d498392003-07-01 21:06:45 +0000130 }
131
Timur Tabi4b42c902010-04-13 13:16:03 -0500132 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +0000133 if (m) {
134 printf (".%ld", m);
135 }
Timur Tabi4b42c902010-04-13 13:16:03 -0500136 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +0000137}
Grant Likelyc95c4282007-02-20 09:05:00 +0100138
Simon Glass0cceb992021-05-08 07:00:05 -0600139#define MAX_LINE_LENGTH_BYTES 64
140#define DEFAULT_LINE_LENGTH_BYTES 16
141
142int hexdump_line(ulong addr, const void *data, uint width, uint count,
143 uint linelen, char *out, int size)
Grant Likelyc95c4282007-02-20 09:05:00 +0100144{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200145 /* linebuf as a union causes proper alignment */
146 union linebuf {
York Sun4d1fd7f2014-02-26 17:03:19 -0800147 uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1];
Reinhard Meyer150f7232010-09-08 12:25:40 +0200148 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 Glass0cceb992021-05-08 07:00:05 -0600152 uint thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100153 int i;
Simon Glass677dbf52020-06-02 19:26:47 -0600154 ulong x;
Grant Likelyc95c4282007-02-20 09:05:00 +0100155
Simon Glass0cceb992021-05-08 07:00:05 -0600156 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
207int print_buffer(ulong addr, const void *data, uint width, uint count,
208 uint linelen)
209{
Grant Likelyc95c4282007-02-20 09:05:00 +0100210 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 Glass0cceb992021-05-08 07:00:05 -0600216 uint thislinelen;
217 char buf[HEXDUMP_MAX_BUF_LENGTH(width * linelen)];
Grant Likelyc95c4282007-02-20 09:05:00 +0100218
Simon Glass0cceb992021-05-08 07:00:05 -0600219 thislinelen = hexdump_line(addr, data, width, count, linelen,
220 buf, sizeof(buf));
221 assert(thislinelen >= 0);
222 puts(buf);
223 putc('\n');
Grant Likelyc95c4282007-02-20 09:05:00 +0100224
225 /* update references */
Simon Glass0cceb992021-05-08 07:00:05 -0600226 data += thislinelen * width;
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000227 addr += thislinelen * width;
228 count -= thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100229
Simon Glass0cceb992021-05-08 07:00:05 -0600230 if (!IS_ENABLED(CONFIG_SPL_BUILD) && ctrlc())
231 return -EINTR;
Grant Likelyc95c4282007-02-20 09:05:00 +0100232 }
233
234 return 0;
235}