blob: 29343fc00e3f070debd0a749541083bee59a096c [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
8#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -07009#include <console.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;
Simon Glass33eac2d2015-04-29 07:56:43 -060029 uint32_t f;
30 static const char names[] = {'G', 'M', 'K'};
31 unsigned long d = 1e9;
32 char c = 0;
33 unsigned int i;
34
35 for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) {
36 if (freq >= d) {
37 c = names[i];
38 break;
39 }
40 }
41
42 if (!c) {
43 printf("%" PRIu64 " Hz%s", freq, s);
44 return;
45 }
46
47 f = do_div(freq, d);
Simon Glass33eac2d2015-04-29 07:56:43 -060048
49 /* If there's a remainder, show the first few digits */
50 if (f) {
51 m = f;
52 while (m > 1000)
53 m /= 10;
54 while (m && !(m % 10))
55 m /= 10;
56 if (m >= 100)
57 m = (m / 10) + (m % 100 >= 50);
58 }
59
Suriyan Ramasamie9015b32015-08-18 09:25:33 -070060 printf("%lu", (unsigned long) freq);
Simon Glass33eac2d2015-04-29 07:56:43 -060061 if (m)
62 printf(".%ld", m);
63 printf(" %cHz%s", c, s);
64}
65
Simon Glassc6da9ae2014-10-15 04:38:35 -060066void print_size(uint64_t size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000067{
Timur Tabi52dbac62010-04-13 13:16:02 -050068 unsigned long m = 0, n;
Simon Glassc6da9ae2014-10-15 04:38:35 -060069 uint64_t f;
Timur Tabi4b42c902010-04-13 13:16:03 -050070 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010071 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -050072 char c = 0;
73 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +000074
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010075 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
76 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -050077 c = names[i];
78 break;
Becky Bruce417faf22008-07-09 11:09:41 -050079 }
wdenk20e0e232002-09-08 16:09:41 +000080 }
81
Timur Tabi4b42c902010-04-13 13:16:03 -050082 if (!c) {
Simon Glassc6da9ae2014-10-15 04:38:35 -060083 printf("%" PRIu64 " Bytes%s", size, s);
Timur Tabi4b42c902010-04-13 13:16:03 -050084 return;
85 }
86
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010087 n = size >> d;
88 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +000089
Becky Bruce417faf22008-07-09 11:09:41 -050090 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010091 if (f) {
92 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +000093
Becky Bruce417faf22008-07-09 11:09:41 -050094 if (m >= 10) {
95 m -= 10;
96 n += 1;
97 }
wdenk0d498392003-07-01 21:06:45 +000098 }
99
Timur Tabi4b42c902010-04-13 13:16:03 -0500100 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +0000101 if (m) {
102 printf (".%ld", m);
103 }
Timur Tabi4b42c902010-04-13 13:16:03 -0500104 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +0000105}
Grant Likelyc95c4282007-02-20 09:05:00 +0100106
Grant Likelyc95c4282007-02-20 09:05:00 +0100107#define MAX_LINE_LENGTH_BYTES (64)
108#define DEFAULT_LINE_LENGTH_BYTES (16)
Simon Glassbda32ff2013-02-24 17:33:12 +0000109int print_buffer(ulong addr, const void *data, uint width, uint count,
110 uint linelen)
Grant Likelyc95c4282007-02-20 09:05:00 +0100111{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200112 /* linebuf as a union causes proper alignment */
113 union linebuf {
York Sun4d1fd7f2014-02-26 17:03:19 -0800114#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
115 uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1];
116#endif
Reinhard Meyer150f7232010-09-08 12:25:40 +0200117 uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1];
118 uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1];
119 uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1];
120 } lb;
Grant Likelyc95c4282007-02-20 09:05:00 +0100121 int i;
York Sun4d1fd7f2014-02-26 17:03:19 -0800122#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Heiko Schocher80402f32015-06-29 09:10:46 +0200123 uint64_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800124#else
Heiko Schocher80402f32015-06-29 09:10:46 +0200125 uint32_t __maybe_unused x;
York Sun4d1fd7f2014-02-26 17:03:19 -0800126#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100127
128 if (linelen*width > MAX_LINE_LENGTH_BYTES)
129 linelen = MAX_LINE_LENGTH_BYTES / width;
130 if (linelen < 1)
131 linelen = DEFAULT_LINE_LENGTH_BYTES / width;
132
133 while (count) {
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000134 uint thislinelen = linelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100135 printf("%08lx:", addr);
136
137 /* check for overflow condition */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000138 if (count < thislinelen)
139 thislinelen = count;
Grant Likelyc95c4282007-02-20 09:05:00 +0100140
141 /* Copy from memory into linebuf and print hex values */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000142 for (i = 0; i < thislinelen; i++) {
Mike Frysinger64419e42010-07-23 06:17:30 -0400143 if (width == 4)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200144 x = lb.ui[i] = *(volatile uint32_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800145#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
146 else if (width == 8)
147 x = lb.uq[i] = *(volatile uint64_t *)data;
148#endif
Mike Frysinger64419e42010-07-23 06:17:30 -0400149 else if (width == 2)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200150 x = lb.us[i] = *(volatile uint16_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400151 else
Reinhard Meyer150f7232010-09-08 12:25:40 +0200152 x = lb.uc[i] = *(volatile uint8_t *)data;
York Sun4d1fd7f2014-02-26 17:03:19 -0800153#ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
Simon Glass66da9be2015-05-04 11:31:11 -0600154 printf(" %0*llx", width * 2, (long long)x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800155#else
Mike Frysinger64419e42010-07-23 06:17:30 -0400156 printf(" %0*x", width * 2, x);
York Sun4d1fd7f2014-02-26 17:03:19 -0800157#endif
Grant Likelyc95c4282007-02-20 09:05:00 +0100158 data += width;
159 }
160
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000161 while (thislinelen < linelen) {
162 /* fill line with whitespace for nice ASCII print */
163 for (i=0; i<width*2+1; i++)
164 puts(" ");
165 linelen--;
166 }
167
Grant Likelyc95c4282007-02-20 09:05:00 +0100168 /* Print data in ASCII characters */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000169 for (i = 0; i < thislinelen * width; i++) {
Reinhard Meyer150f7232010-09-08 12:25:40 +0200170 if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80)
171 lb.uc[i] = '.';
172 }
173 lb.uc[i] = '\0';
174 printf(" %s\n", lb.uc);
Grant Likelyc95c4282007-02-20 09:05:00 +0100175
176 /* update references */
Andreas Bießmannefd7c112013-02-07 04:58:19 +0000177 addr += thislinelen * width;
178 count -= thislinelen;
Grant Likelyc95c4282007-02-20 09:05:00 +0100179
180 if (ctrlc())
181 return -1;
182 }
183
184 return 0;
185}