blob: 694d2f22e89ec574f9db84d75de143c52fbf9507 [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 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
Grant Likelyc95c4282007-02-20 09:05:00 +010024#include <config.h>
wdenk20e0e232002-09-08 16:09:41 +000025#include <common.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020026#include <version.h>
Grant Likelyc95c4282007-02-20 09:05:00 +010027#include <linux/ctype.h>
28#include <asm/io.h>
wdenk20e0e232002-09-08 16:09:41 +000029
30int display_options (void)
31{
wdenk20e0e232002-09-08 16:09:41 +000032#if defined(BUILD_TAG)
33 printf ("\n\n%s, Build: %s\n\n", version_string, BUILD_TAG);
34#else
35 printf ("\n\n%s\n\n", version_string);
36#endif
37 return 0;
38}
39
40/*
Timur Tabi4b42c902010-04-13 13:16:03 -050041 * print sizes as "xxx KiB", "xxx.y KiB", "xxx MiB", "xxx.y MiB",
42 * xxx GiB, xxx.y GiB, etc as needed; allow for optional trailing string
Becky Bruce417faf22008-07-09 11:09:41 -050043 * (like "\n")
wdenk20e0e232002-09-08 16:09:41 +000044 */
Timur Tabi4b42c902010-04-13 13:16:03 -050045void print_size(unsigned long long size, const char *s)
wdenk20e0e232002-09-08 16:09:41 +000046{
Timur Tabi52dbac62010-04-13 13:16:02 -050047 unsigned long m = 0, n;
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010048 unsigned long long f;
Timur Tabi4b42c902010-04-13 13:16:03 -050049 static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010050 unsigned long d = 10 * ARRAY_SIZE(names);
Timur Tabi4b42c902010-04-13 13:16:03 -050051 char c = 0;
52 unsigned int i;
wdenk20e0e232002-09-08 16:09:41 +000053
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010054 for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
55 if (size >> d) {
Timur Tabi4b42c902010-04-13 13:16:03 -050056 c = names[i];
57 break;
Becky Bruce417faf22008-07-09 11:09:41 -050058 }
wdenk20e0e232002-09-08 16:09:41 +000059 }
60
Timur Tabi4b42c902010-04-13 13:16:03 -050061 if (!c) {
62 printf("%llu Bytes%s", size, s);
63 return;
64 }
65
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010066 n = size >> d;
67 f = size & ((1ULL << d) - 1);
wdenk20e0e232002-09-08 16:09:41 +000068
Becky Bruce417faf22008-07-09 11:09:41 -050069 /* If there's a remainder, deal with it */
Nick Thompsonf2d76ae2010-05-11 11:29:52 +010070 if (f) {
71 m = (10ULL * f + (1ULL << (d - 1))) >> d;
wdenk20e0e232002-09-08 16:09:41 +000072
Becky Bruce417faf22008-07-09 11:09:41 -050073 if (m >= 10) {
74 m -= 10;
75 n += 1;
76 }
wdenk0d498392003-07-01 21:06:45 +000077 }
78
Timur Tabi4b42c902010-04-13 13:16:03 -050079 printf ("%lu", n);
wdenk20e0e232002-09-08 16:09:41 +000080 if (m) {
81 printf (".%ld", m);
82 }
Timur Tabi4b42c902010-04-13 13:16:03 -050083 printf (" %ciB%s", c, s);
wdenk20e0e232002-09-08 16:09:41 +000084}
Grant Likelyc95c4282007-02-20 09:05:00 +010085
86/*
87 * Print data buffer in hex and ascii form to the terminal.
88 *
89 * data reads are buffered so that each memory address is only read once.
90 * Useful when displaying the contents of volatile registers.
91 *
92 * parameters:
93 * addr: Starting address to display at start of line
94 * data: pointer to data buffer
95 * width: data value width. May be 1, 2, or 4.
96 * count: number of values to display
97 * linelen: Number of values to print per line; specify 0 for default length
98 */
99#define MAX_LINE_LENGTH_BYTES (64)
100#define DEFAULT_LINE_LENGTH_BYTES (16)
101int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen)
102{
Reinhard Meyer150f7232010-09-08 12:25:40 +0200103 /* linebuf as a union causes proper alignment */
104 union linebuf {
105 uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1];
106 uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1];
107 uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1];
108 } lb;
Grant Likelyc95c4282007-02-20 09:05:00 +0100109 int i;
110
111 if (linelen*width > MAX_LINE_LENGTH_BYTES)
112 linelen = MAX_LINE_LENGTH_BYTES / width;
113 if (linelen < 1)
114 linelen = DEFAULT_LINE_LENGTH_BYTES / width;
115
116 while (count) {
117 printf("%08lx:", addr);
118
119 /* check for overflow condition */
120 if (count < linelen)
121 linelen = count;
122
123 /* Copy from memory into linebuf and print hex values */
124 for (i = 0; i < linelen; i++) {
Mike Frysinger64419e42010-07-23 06:17:30 -0400125 uint32_t x;
126 if (width == 4)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200127 x = lb.ui[i] = *(volatile uint32_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400128 else if (width == 2)
Reinhard Meyer150f7232010-09-08 12:25:40 +0200129 x = lb.us[i] = *(volatile uint16_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400130 else
Reinhard Meyer150f7232010-09-08 12:25:40 +0200131 x = lb.uc[i] = *(volatile uint8_t *)data;
Mike Frysinger64419e42010-07-23 06:17:30 -0400132 printf(" %0*x", width * 2, x);
Grant Likelyc95c4282007-02-20 09:05:00 +0100133 data += width;
134 }
135
136 /* Print data in ASCII characters */
Reinhard Meyer150f7232010-09-08 12:25:40 +0200137 for (i = 0; i < linelen * width; i++) {
138 if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80)
139 lb.uc[i] = '.';
140 }
141 lb.uc[i] = '\0';
142 printf(" %s\n", lb.uc);
Grant Likelyc95c4282007-02-20 09:05:00 +0100143
144 /* update references */
145 addr += linelen * width;
146 count -= linelen;
147
148 if (ctrlc())
149 return -1;
150 }
151
152 return 0;
153}