blob: f1c930463e9a22c4bcb361ad33724f296e8d2719 [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 Glass24b852a2015-11-08 23:47:45 -07008#include <console.h>
Simon Glass33eac2d2015-04-29 07:56:43 -06009#include <div64.h>
Simon Glassc6da9ae2014-10-15 04:38:35 -060010#include <inttypes.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020011#include <version.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;
27 strcpy(buf + len, "\n\n");
28
29 return buf;
30}
31
32#ifndef BUILD_TAG
33#define BUILD_TAG NULL
wdenk20e0e232002-09-08 16:09:41 +000034#endif
Simon Glass6c519f22017-06-16 12:51:42 -060035
36char *display_options_get_banner(bool newlines, char *buf, int size)
37{
38 return display_options_get_banner_priv(newlines, BUILD_TAG, buf, size);
39}
40
41int display_options(void)
42{
43 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
44
45 display_options_get_banner(true, buf, sizeof(buf));
46 printf("%s", buf);
47
wdenk20e0e232002-09-08 16:09:41 +000048 return 0;
49}
50
Simon Glass33eac2d2015-04-29 07:56:43 -060051void print_freq(uint64_t freq, const char *s)
52{
Heiko Schocher80402f32015-06-29 09:10:46 +020053 unsigned long m = 0;
Simon Glass33eac2d2015-04-29 07:56:43 -060054 uint32_t f;
55 static const char names[] = {'G', 'M', 'K'};
56 unsigned long d = 1e9;
57 char c = 0;
58 unsigned int i;
59
60 for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) {
61 if (freq >= d) {
62 c = names[i];
63 break;
64 }
65 }
66
67 if (!c) {
68 printf("%" PRIu64 " Hz%s", freq, s);
69 return;
70 }
71
72 f = do_div(freq, d);
Simon Glass33eac2d2015-04-29 07:56:43 -060073
74 /* If there's a remainder, show the first few digits */
75 if (f) {
76 m = f;
77 while (m > 1000)
78 m /= 10;
79 while (m && !(m % 10))
80 m /= 10;
81 if (m >= 100)
82 m = (m / 10) + (m % 100 >= 50);
83 }
84
Suriyan Ramasamie9015b32015-08-18 09:25:33 -070085 printf("%lu", (unsigned long) freq);
Simon Glass33eac2d2015-04-29 07:56:43 -060086 if (m)
87 printf(".%ld", m);
88 printf(" %cHz%s", c, s);
89}
90
Simon Glassc6da9ae2014-10-15 04:38:35 -060091void print_size(uint64_t size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000092{
Timur Tabi52dbac62010-04-13 13:16:02 -050093 unsigned long m = 0, n;
Simon Glassc6da9ae2014-10-15 04:38:35 -060094 uint64_t f;
Timur Tabi4b42c902010-04-13 13:16:03 -050095 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010096 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -050097 char c = 0;
98 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +000099
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100100 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
101 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -0500102 c = names[i];
103 break;
Becky Bruce417faf22008-07-09 11:09:41 -0500104 }
wdenk20e0e232002-09-08 16:09:41 +0000105 }
106
Timur Tabi4b42c902010-04-13 13:16:03 -0500107 if (!c) {
Simon Glassc6da9ae2014-10-15 04:38:35 -0600108 printf("%" PRIu64 " Bytes%s", size, s);
Timur Tabi4b42c902010-04-13 13:16:03 -0500109 return;
110 }
111
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100112 n = size >> d;
113 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +0000114
Becky Bruce417faf22008-07-09 11:09:41 -0500115 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +0100116 if (f) {
117 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +0000118
Becky Bruce417faf22008-07-09 11:09:41 -0500119 if (m >= 10) {
120 m -= 10;
121 n += 1;
122 }
wdenk0d498392003-07-01 21:06:45 +0000123 }
124
Timur Tabi4b42c902010-04-13 13:16:03 -0500125 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +0000126 if (m) {
127 printf (".%ld", m);
128 }
Timur Tabi4b42c902010-04-13 13:16:03 -0500129 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +0000130}
Grant Likelyc95c4282007-02-20 09:05:00 +0100131
Grant Likelyc95c4282007-02-20 09:05:00 +0100132#define MAX_LINE_LENGTH_BYTES (64)
133#define DEFAULT_LINE_LENGTH_BYTES (16)
Simon Glassbda32ff2013-02-24 17:33:12 +0000134int print_buffer(ulong addr, const void *data, uint width, uint count,
135 uint linelen)
Grant Likelyc95c4282007-02-20 09:05:00 +0100136{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200137 /* linebuf as a union causes proper alignment */
138 union linebuf {
York Sun4d1fd7f2014-02-26 17:03:19 -0800139#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
140 uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1];
141#endif
Reinhard Meyer150f7232010-09-08 12:25:40 +0200142 uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1];
143 uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1];
144 uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1];
145 } lb;
Grant Likelyc95c4282007-02-20 09:05:00 +0100146 int i;
York Sun4d1fd7f2014-02-26 17:03:19 -0800147#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Heiko Schocher80402f32015-06-29 09:10:46 +0200148 uint64_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800149#else
Heiko Schocher80402f32015-06-29 09:10:46 +0200150 uint32_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800151#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100152
153 if (linelen*width > MAX_LINE_LENGTH_BYTES)
154 linelen = MAX_LINE_LENGTH_BYTES / width;
155 if (linelen < 1)
156 linelen = DEFAULT_LINE_LENGTH_BYTES / width;
157
158 while (count) {
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000159 uint thislinelen = linelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100160 printf("%08lx:", addr);
161
162 /* check for overflow condition */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000163 if (count < thislinelen)
164 thislinelen = count;
Grant Likelyc95c4282007-02-20 09:05:00 +0100165
166 /* Copy from memory into linebuf and print hex values */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000167 for (i = 0; i < thislinelen; i++) {
Mike Frysinger64419e42010-07-23 06:17:30 -0400168 if (width == 4)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200169 x = lb.ui[i] = *(volatile uint32_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800170#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
171 else if (width == 8)
172 x = lb.uq[i] = *(volatile uint64_t *)data;
173#endif
Mike Frysinger64419e42010-07-23 06:17:30 -0400174 else if (width == 2)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200175 x = lb.us[i] = *(volatile uint16_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400176 else
Reinhard Meyer150f7232010-09-08 12:25:40 +0200177 x = lb.uc[i] = *(volatile uint8_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800178#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Simon Glass66da9be2015-05-04 11:31:11 -0600179 printf(" %0*llx", width * 2, (long long)x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800180#else
Mike Frysinger64419e42010-07-23 06:17:30 -0400181 printf(" %0*x", width * 2, x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800182#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100183 data += width;
184 }
185
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000186 while (thislinelen < linelen) {
187 /* fill line with whitespace for nice ASCII print */
188 for (i=0; i<width*2+1; i++)
189 puts(" ");
190 linelen--;
191 }
192
Grant Likelyc95c4282007-02-20 09:05:00 +0100193 /* Print data in ASCII characters */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000194 for (i = 0; i < thislinelen * width; i++) {
Reinhard Meyer150f7232010-09-08 12:25:40 +0200195 if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80)
196 lb.uc[i] = '.';
197 }
198 lb.uc[i] = '\0';
199 printf(" %s\n", lb.uc);
Grant Likelyc95c4282007-02-20 09:05:00 +0100200
201 /* update references */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000202 addr += thislinelen * width;
203 count -= thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100204
205 if (ctrlc())
206 return -1;
207 }
208
209 return 0;
210}