blob: df134cd23a9671841dbff7d0361265d350106c83 [file] [log] [blame]
wdenk20e0e232002-09-08 16:09:41 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk20e0e232002-09-08 16:09:41 +00006 */
7
Grant Likelyc95c4282007-02-20 09:05:00 +01008#include <config.h>
wdenk20e0e232002-09-08 16:09:41 +00009#include <common.h>
Simon Glass33eac2d2015-04-29 07:56:43 -060010#include <div64.h>
Simon Glassc6da9ae2014-10-15 04:38:35 -060011#include <inttypes.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020012#include <version.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
16int display_options (void)
17{
wdenk20e0e232002-09-08 16:09:41 +000018#if defined(BUILD_TAG)
19 printf ("\n\n%s, Build: %s\n\n", version_string, BUILD_TAG);
20#else
21 printf ("\n\n%s\n\n", version_string);
22#endif
23 return 0;
24}
25
Simon Glass33eac2d2015-04-29 07:56:43 -060026void print_freq(uint64_t freq, const char *s)
27{
Heiko Schocher80402f32015-06-29 09:10:46 +020028 unsigned long m = 0;
29#if defined(CONFIG_SPL_SERIAL_SUPPORT)
30 unsigned long n;
31#endif
Simon Glass33eac2d2015-04-29 07:56:43 -060032 uint32_t f;
33 static const char names[] = {'G', 'M', 'K'};
34 unsigned long d = 1e9;
35 char c = 0;
36 unsigned int i;
37
38 for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) {
39 if (freq >= d) {
40 c = names[i];
41 break;
42 }
43 }
44
45 if (!c) {
46 printf("%" PRIu64 " Hz%s", freq, s);
47 return;
48 }
49
50 f = do_div(freq, d);
Heiko Schocher80402f32015-06-29 09:10:46 +020051#if defined(CONFIG_SPL_SERIAL_SUPPORT)
Simon Glass33eac2d2015-04-29 07:56:43 -060052 n = freq;
Heiko Schocher80402f32015-06-29 09:10:46 +020053#endif
Simon Glass33eac2d2015-04-29 07:56:43 -060054
55 /* If there's a remainder, show the first few digits */
56 if (f) {
57 m = f;
58 while (m > 1000)
59 m /= 10;
60 while (m && !(m % 10))
61 m /= 10;
62 if (m >= 100)
63 m = (m / 10) + (m % 100 >= 50);
64 }
65
Heiko Schocher80402f32015-06-29 09:10:46 +020066#if defined(CONFIG_SPL_SERIAL_SUPPORT)
Simon Glass33eac2d2015-04-29 07:56:43 -060067 printf("%lu", n);
Heiko Schocher80402f32015-06-29 09:10:46 +020068#endif
Simon Glass33eac2d2015-04-29 07:56:43 -060069 if (m)
70 printf(".%ld", m);
71 printf(" %cHz%s", c, s);
72}
73
Simon Glassc6da9ae2014-10-15 04:38:35 -060074void print_size(uint64_t size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000075{
Timur Tabi52dbac62010-04-13 13:16:02 -050076 unsigned long m = 0, n;
Simon Glassc6da9ae2014-10-15 04:38:35 -060077 uint64_t f;
Timur Tabi4b42c902010-04-13 13:16:03 -050078 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010079 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -050080 char c = 0;
81 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +000082
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010083 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
84 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -050085 c = names[i];
86 break;
Becky Bruce417faf22008-07-09 11:09:41 -050087 }
wdenk20e0e232002-09-08 16:09:41 +000088 }
89
Timur Tabi4b42c902010-04-13 13:16:03 -050090 if (!c) {
Simon Glassc6da9ae2014-10-15 04:38:35 -060091 printf("%" PRIu64 " Bytes%s", size, s);
Timur Tabi4b42c902010-04-13 13:16:03 -050092 return;
93 }
94
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010095 n = size >> d;
96 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +000097
Becky Bruce417faf22008-07-09 11:09:41 -050098 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010099 if (f) {
100 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +0000101
Becky Bruce417faf22008-07-09 11:09:41 -0500102 if (m >= 10) {
103 m -= 10;
104 n += 1;
105 }
wdenk0d498392003-07-01 21:06:45 +0000106 }
107
Timur Tabi4b42c902010-04-13 13:16:03 -0500108 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +0000109 if (m) {
110 printf (".%ld", m);
111 }
Timur Tabi4b42c902010-04-13 13:16:03 -0500112 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +0000113}
Grant Likelyc95c4282007-02-20 09:05:00 +0100114
Grant Likelyc95c4282007-02-20 09:05:00 +0100115#define MAX_LINE_LENGTH_BYTES (64)
116#define DEFAULT_LINE_LENGTH_BYTES (16)
Simon Glassbda32ff2013-02-24 17:33:12 +0000117int print_buffer(ulong addr, const void *data, uint width, uint count,
118 uint linelen)
Grant Likelyc95c4282007-02-20 09:05:00 +0100119{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200120 /* linebuf as a union causes proper alignment */
121 union linebuf {
York Sun4d1fd7f2014-02-26 17:03:19 -0800122#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
123 uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1];
124#endif
Reinhard Meyer150f7232010-09-08 12:25:40 +0200125 uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1];
126 uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1];
127 uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1];
128 } lb;
Grant Likelyc95c4282007-02-20 09:05:00 +0100129 int i;
York Sun4d1fd7f2014-02-26 17:03:19 -0800130#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Heiko Schocher80402f32015-06-29 09:10:46 +0200131 uint64_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800132#else
Heiko Schocher80402f32015-06-29 09:10:46 +0200133 uint32_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800134#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100135
136 if (linelen*width > MAX_LINE_LENGTH_BYTES)
137 linelen = MAX_LINE_LENGTH_BYTES / width;
138 if (linelen < 1)
139 linelen = DEFAULT_LINE_LENGTH_BYTES / width;
140
141 while (count) {
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000142 uint thislinelen = linelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100143 printf("%08lx:", addr);
144
145 /* check for overflow condition */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000146 if (count < thislinelen)
147 thislinelen = count;
Grant Likelyc95c4282007-02-20 09:05:00 +0100148
149 /* Copy from memory into linebuf and print hex values */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000150 for (i = 0; i < thislinelen; i++) {
Mike Frysinger64419e42010-07-23 06:17:30 -0400151 if (width == 4)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200152 x = lb.ui[i] = *(volatile uint32_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800153#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
154 else if (width == 8)
155 x = lb.uq[i] = *(volatile uint64_t *)data;
156#endif
Mike Frysinger64419e42010-07-23 06:17:30 -0400157 else if (width == 2)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200158 x = lb.us[i] = *(volatile uint16_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400159 else
Reinhard Meyer150f7232010-09-08 12:25:40 +0200160 x = lb.uc[i] = *(volatile uint8_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800161#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Simon Glass66da9be2015-05-04 11:31:11 -0600162 printf(" %0*llx", width * 2, (long long)x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800163#else
Mike Frysinger64419e42010-07-23 06:17:30 -0400164 printf(" %0*x", width * 2, x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800165#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100166 data += width;
167 }
168
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000169 while (thislinelen < linelen) {
170 /* fill line with whitespace for nice ASCII print */
171 for (i=0; i<width*2+1; i++)
172 puts(" ");
173 linelen--;
174 }
175
Grant Likelyc95c4282007-02-20 09:05:00 +0100176 /* Print data in ASCII characters */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000177 for (i = 0; i < thislinelen * width; i++) {
Reinhard Meyer150f7232010-09-08 12:25:40 +0200178 if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80)
179 lb.uc[i] = '.';
180 }
181 lb.uc[i] = '\0';
182 printf(" %s\n", lb.uc);
Grant Likelyc95c4282007-02-20 09:05:00 +0100183
184 /* update references */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000185 addr += thislinelen * width;
186 count -= thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100187
188 if (ctrlc())
189 return -1;
190 }
191
192 return 0;
193}