]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
20e0e233 WD |
2 | /* |
3 | * (C) Copyright 2000-2002 | |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
20e0e233 WD |
5 | */ |
6 | ||
7 | #include <common.h> | |
24b852a7 | 8 | #include <console.h> |
33eac2dc | 9 | #include <div64.h> |
09c2e90c | 10 | #include <version.h> |
c95c4280 GL |
11 | #include <linux/ctype.h> |
12 | #include <asm/io.h> | |
20e0e233 | 13 | |
6c519f2d SG |
14 | char *display_options_get_banner_priv(bool newlines, const char *build_tag, |
15 | char *buf, int size) | |
20e0e233 | 16 | { |
6c519f2d SG |
17 | int len; |
18 | ||
19 | len = snprintf(buf, size, "%s%s", newlines ? "\n\n" : "", | |
20 | version_string); | |
21 | if (build_tag && len < size) | |
22 | len += snprintf(buf + len, size - len, ", Build: %s", | |
23 | build_tag); | |
24 | if (len > size - 3) | |
25 | len = size - 3; | |
6c74e94a HS |
26 | if (len < 0) |
27 | len = 0; | |
28 | snprintf(buf + len, size - len, "\n\n"); | |
6c519f2d SG |
29 | |
30 | return buf; | |
31 | } | |
32 | ||
33 | #ifndef BUILD_TAG | |
34 | #define BUILD_TAG NULL | |
20e0e233 | 35 | #endif |
6c519f2d SG |
36 | |
37 | char *display_options_get_banner(bool newlines, char *buf, int size) | |
38 | { | |
39 | return display_options_get_banner_priv(newlines, BUILD_TAG, buf, size); | |
40 | } | |
41 | ||
42 | int display_options(void) | |
43 | { | |
44 | char buf[DISPLAY_OPTIONS_BANNER_LENGTH]; | |
45 | ||
46 | display_options_get_banner(true, buf, sizeof(buf)); | |
47 | printf("%s", buf); | |
48 | ||
20e0e233 WD |
49 | return 0; |
50 | } | |
51 | ||
33eac2dc SG |
52 | void print_freq(uint64_t freq, const char *s) |
53 | { | |
80402f34 | 54 | unsigned long m = 0; |
33eac2dc SG |
55 | uint32_t f; |
56 | static const char names[] = {'G', 'M', 'K'}; | |
57 | unsigned long d = 1e9; | |
58 | char c = 0; | |
59 | unsigned int i; | |
60 | ||
61 | for (i = 0; i < ARRAY_SIZE(names); i++, d /= 1000) { | |
62 | if (freq >= d) { | |
63 | c = names[i]; | |
64 | break; | |
65 | } | |
66 | } | |
67 | ||
68 | if (!c) { | |
dee37fc9 | 69 | printf("%llu Hz%s", freq, s); |
33eac2dc SG |
70 | return; |
71 | } | |
72 | ||
73 | f = do_div(freq, d); | |
33eac2dc SG |
74 | |
75 | /* If there's a remainder, show the first few digits */ | |
76 | if (f) { | |
77 | m = f; | |
78 | while (m > 1000) | |
79 | m /= 10; | |
80 | while (m && !(m % 10)) | |
81 | m /= 10; | |
82 | if (m >= 100) | |
83 | m = (m / 10) + (m % 100 >= 50); | |
84 | } | |
85 | ||
e9015b30 | 86 | printf("%lu", (unsigned long) freq); |
33eac2dc SG |
87 | if (m) |
88 | printf(".%ld", m); | |
89 | printf(" %cHz%s", c, s); | |
90 | } | |
91 | ||
c6da9ae8 | 92 | void print_size(uint64_t size, const char *s) |
20e0e233 | 93 | { |
52dbac69 | 94 | unsigned long m = 0, n; |
c6da9ae8 | 95 | uint64_t f; |
4b42c905 | 96 | static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'}; |
f2d76ae4 | 97 | unsigned long d = 10 * ARRAY_SIZE(names); |
4b42c905 TT |
98 | char c = 0; |
99 | unsigned int i; | |
20e0e233 | 100 | |
f2d76ae4 NT |
101 | for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) { |
102 | if (size >> d) { | |
4b42c905 TT |
103 | c = names[i]; |
104 | break; | |
417faf28 | 105 | } |
20e0e233 WD |
106 | } |
107 | ||
4b42c905 | 108 | if (!c) { |
dee37fc9 | 109 | printf("%llu Bytes%s", size, s); |
4b42c905 TT |
110 | return; |
111 | } | |
112 | ||
f2d76ae4 NT |
113 | n = size >> d; |
114 | f = size & ((1ULL << d) - 1); | |
20e0e233 | 115 | |
417faf28 | 116 | /* If there's a remainder, deal with it */ |
f2d76ae4 NT |
117 | if (f) { |
118 | m = (10ULL * f + (1ULL << (d - 1))) >> d; | |
20e0e233 | 119 | |
417faf28 BB |
120 | if (m >= 10) { |
121 | m -= 10; | |
122 | n += 1; | |
123 | } | |
0d498393 WD |
124 | } |
125 | ||
4b42c905 | 126 | printf ("%lu", n); |
20e0e233 WD |
127 | if (m) { |
128 | printf (".%ld", m); | |
129 | } | |
4b42c905 | 130 | printf (" %ciB%s", c, s); |
20e0e233 | 131 | } |
c95c4280 | 132 | |
c95c4280 GL |
133 | #define MAX_LINE_LENGTH_BYTES (64) |
134 | #define DEFAULT_LINE_LENGTH_BYTES (16) | |
bda32ffc SG |
135 | int print_buffer(ulong addr, const void *data, uint width, uint count, |
136 | uint linelen) | |
c95c4280 | 137 | { |
150f7236 RM |
138 | /* linebuf as a union causes proper alignment */ |
139 | union linebuf { | |
4d979bfd | 140 | #ifdef MEM_SUPPORT_64BIT_DATA |
4d1fd7f1 YS |
141 | uint64_t uq[MAX_LINE_LENGTH_BYTES/sizeof(uint64_t) + 1]; |
142 | #endif | |
150f7236 RM |
143 | uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1]; |
144 | uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1]; | |
145 | uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1]; | |
146 | } lb; | |
c95c4280 | 147 | int i; |
4d979bfd | 148 | #ifdef MEM_SUPPORT_64BIT_DATA |
80402f34 | 149 | uint64_t __maybe_unused x; |
4d1fd7f1 | 150 | #else |
80402f34 | 151 | uint32_t __maybe_unused x; |
4d1fd7f1 | 152 | #endif |
c95c4280 GL |
153 | |
154 | if (linelen*width > MAX_LINE_LENGTH_BYTES) | |
155 | linelen = MAX_LINE_LENGTH_BYTES / width; | |
156 | if (linelen < 1) | |
157 | linelen = DEFAULT_LINE_LENGTH_BYTES / width; | |
158 | ||
159 | while (count) { | |
efd7c114 | 160 | uint thislinelen = linelen; |
c95c4280 GL |
161 | printf("%08lx:", addr); |
162 | ||
163 | /* check for overflow condition */ | |
efd7c114 AB |
164 | if (count < thislinelen) |
165 | thislinelen = count; | |
c95c4280 GL |
166 | |
167 | /* Copy from memory into linebuf and print hex values */ | |
efd7c114 | 168 | for (i = 0; i < thislinelen; i++) { |
64419e47 | 169 | if (width == 4) |
150f7236 | 170 | x = lb.ui[i] = *(volatile uint32_t *)data; |
4d979bfd | 171 | #ifdef MEM_SUPPORT_64BIT_DATA |
4d1fd7f1 YS |
172 | else if (width == 8) |
173 | x = lb.uq[i] = *(volatile uint64_t *)data; | |
174 | #endif | |
64419e47 | 175 | else if (width == 2) |
150f7236 | 176 | x = lb.us[i] = *(volatile uint16_t *)data; |
64419e47 | 177 | else |
150f7236 | 178 | x = lb.uc[i] = *(volatile uint8_t *)data; |
f60662de SG |
179 | #if defined(CONFIG_SPL_BUILD) |
180 | printf(" %x", (uint)x); | |
4d979bfd | 181 | #elif defined(MEM_SUPPORT_64BIT_DATA) |
66da9beb | 182 | printf(" %0*llx", width * 2, (long long)x); |
4d1fd7f1 | 183 | #else |
64419e47 | 184 | printf(" %0*x", width * 2, x); |
4d1fd7f1 | 185 | #endif |
c95c4280 GL |
186 | data += width; |
187 | } | |
188 | ||
efd7c114 AB |
189 | while (thislinelen < linelen) { |
190 | /* fill line with whitespace for nice ASCII print */ | |
191 | for (i=0; i<width*2+1; i++) | |
192 | puts(" "); | |
193 | linelen--; | |
194 | } | |
195 | ||
c95c4280 | 196 | /* Print data in ASCII characters */ |
efd7c114 | 197 | for (i = 0; i < thislinelen * width; i++) { |
150f7236 RM |
198 | if (!isprint(lb.uc[i]) || lb.uc[i] >= 0x80) |
199 | lb.uc[i] = '.'; | |
200 | } | |
201 | lb.uc[i] = '\0'; | |
202 | printf(" %s\n", lb.uc); | |
c95c4280 GL |
203 | |
204 | /* update references */ | |
efd7c114 AB |
205 | addr += thislinelen * width; |
206 | count -= thislinelen; | |
c95c4280 | 207 | |
9bb746d8 | 208 | #ifndef CONFIG_SPL_BUILD |
c95c4280 GL |
209 | if (ctrlc()) |
210 | return -1; | |
9bb746d8 | 211 | #endif |
c95c4280 GL |
212 | } |
213 | ||
214 | return 0; | |
215 | } |