blob: 89aaa8547710b3d970d78174a95c1746213297f4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: LGPL-2.1+
Stefan Roese7d9cde12015-11-23 07:00:22 +01002/*
3 * Tiny printf version for SPL
4 *
5 * Copied from:
6 * http://www.sparetimelabs.com/printfrevisited/printfrevisited.php
7 *
8 * Copyright (C) 2004,2008 Kustaa Nyholm
Stefan Roese7d9cde12015-11-23 07:00:22 +01009 */
10
11#include <common.h>
Matwey V. Kornilovc091f652021-08-05 22:06:05 +030012#include <log.h>
Stefan Roese7d9cde12015-11-23 07:00:22 +010013#include <serial.h>
Matwey V. Kornilovc091f652021-08-05 22:06:05 +030014#include <stdarg.h>
Vignesh Rcdce1f72017-04-10 12:23:22 +053015#include <linux/ctype.h>
Stefan Roese7d9cde12015-11-23 07:00:22 +010016
Simon Glass45313e82016-08-04 21:58:14 -060017struct printf_info {
18 char *bf; /* Digit buffer */
19 char zs; /* non-zero if a digit has been written */
20 char *outstr; /* Next output position for sprintf() */
Stefan Roese7d9cde12015-11-23 07:00:22 +010021
Simon Glass45313e82016-08-04 21:58:14 -060022 /* Output a character */
23 void (*putc)(struct printf_info *info, char ch);
24};
Simon Glass5c411d82016-05-14 14:02:53 -060025
Simon Glass45313e82016-08-04 21:58:14 -060026static void out(struct printf_info *info, char c)
Stefan Roese7d9cde12015-11-23 07:00:22 +010027{
Simon Glass45313e82016-08-04 21:58:14 -060028 *info->bf++ = c;
Stefan Roese7d9cde12015-11-23 07:00:22 +010029}
30
Simon Glass45313e82016-08-04 21:58:14 -060031static void out_dgt(struct printf_info *info, char dgt)
32{
33 out(info, dgt + (dgt < 10 ? '0' : 'a' - 10));
34 info->zs = 1;
35}
36
Andre Przywaraa28e1d92017-01-02 11:48:28 +000037static void div_out(struct printf_info *info, unsigned long *num,
38 unsigned long div)
Stefan Roese7d9cde12015-11-23 07:00:22 +010039{
40 unsigned char dgt = 0;
41
Stefan Roesea5ecdd02015-11-16 15:26:34 +010042 while (*num >= div) {
43 *num -= div;
Stefan Roese7d9cde12015-11-23 07:00:22 +010044 dgt++;
45 }
46
Simon Glass45313e82016-08-04 21:58:14 -060047 if (info->zs || dgt > 0)
48 out_dgt(info, dgt);
Stefan Roese7d9cde12015-11-23 07:00:22 +010049}
50
Vignesh Rcdce1f72017-04-10 12:23:22 +053051#ifdef CONFIG_SPL_NET_SUPPORT
52static void string(struct printf_info *info, char *s)
53{
54 char ch;
55
56 while ((ch = *s++))
57 out(info, ch);
58}
59
60static const char hex_asc[] = "0123456789abcdef";
61#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
62#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
63
64static inline char *pack_hex_byte(char *buf, u8 byte)
65{
66 *buf++ = hex_asc_hi(byte);
67 *buf++ = hex_asc_lo(byte);
68 return buf;
69}
70
71static void mac_address_string(struct printf_info *info, u8 *addr,
72 bool separator)
73{
74 /* (6 * 2 hex digits), 5 colons and trailing zero */
75 char mac_addr[6 * 3];
76 char *p = mac_addr;
77 int i;
78
79 for (i = 0; i < 6; i++) {
80 p = pack_hex_byte(p, addr[i]);
81 if (separator && i != 5)
82 *p++ = ':';
83 }
84 *p = '\0';
85
86 string(info, mac_addr);
87}
88
89static char *put_dec_trunc(char *buf, unsigned int q)
90{
91 unsigned int d3, d2, d1, d0;
92 d1 = (q >> 4) & 0xf;
93 d2 = (q >> 8) & 0xf;
94 d3 = (q >> 12);
95
96 d0 = 6 * (d3 + d2 + d1) + (q & 0xf);
97 q = (d0 * 0xcd) >> 11;
98 d0 = d0 - 10 * q;
99 *buf++ = d0 + '0'; /* least significant digit */
100 d1 = q + 9 * d3 + 5 * d2 + d1;
101 if (d1 != 0) {
102 q = (d1 * 0xcd) >> 11;
103 d1 = d1 - 10 * q;
104 *buf++ = d1 + '0'; /* next digit */
105
106 d2 = q + 2 * d2;
107 if ((d2 != 0) || (d3 != 0)) {
108 q = (d2 * 0xd) >> 7;
109 d2 = d2 - 10 * q;
110 *buf++ = d2 + '0'; /* next digit */
111
112 d3 = q + 4 * d3;
113 if (d3 != 0) {
114 q = (d3 * 0xcd) >> 11;
115 d3 = d3 - 10 * q;
116 *buf++ = d3 + '0'; /* next digit */
117 if (q != 0)
118 *buf++ = q + '0'; /* most sign. digit */
119 }
120 }
121 }
122 return buf;
123}
124
125static void ip4_addr_string(struct printf_info *info, u8 *addr)
126{
127 /* (4 * 3 decimal digits), 3 dots and trailing zero */
128 char ip4_addr[4 * 4];
129 char temp[3]; /* hold each IP quad in reverse order */
130 char *p = ip4_addr;
131 int i, digits;
132
133 for (i = 0; i < 4; i++) {
134 digits = put_dec_trunc(temp, addr[i]) - temp;
135 /* reverse the digits in the quad */
136 while (digits--)
137 *p++ = temp[digits];
138 if (i != 3)
139 *p++ = '.';
140 }
141 *p = '\0';
142
143 string(info, ip4_addr);
144}
145#endif
146
147/*
148 * Show a '%p' thing. A kernel extension is that the '%p' is followed
149 * by an extra set of characters that are extended format
150 * specifiers.
151 *
152 * Right now we handle:
153 *
154 * - 'M' For a 6-byte MAC address, it prints the address in the
155 * usual colon-separated hex notation.
156 * - 'm' Same as above except there is no colon-separator.
157 * - 'I4'for IPv4 addresses printed in the usual way (dot-separated
158 * decimal).
159 */
160
Simon Glass831c1612019-10-21 17:26:45 -0600161static void __maybe_unused pointer(struct printf_info *info, const char *fmt,
162 void *ptr)
Vignesh Rcdce1f72017-04-10 12:23:22 +0530163{
164#ifdef DEBUG
165 unsigned long num = (uintptr_t)ptr;
166 unsigned long div;
167#endif
168
169 switch (*fmt) {
170#ifdef DEBUG
171 case 'a':
172
173 switch (fmt[1]) {
174 case 'p':
175 default:
176 num = *(phys_addr_t *)ptr;
177 break;
178 }
179 break;
180#endif
181#ifdef CONFIG_SPL_NET_SUPPORT
182 case 'm':
183 return mac_address_string(info, ptr, false);
184 case 'M':
185 return mac_address_string(info, ptr, true);
186 case 'I':
187 if (fmt[1] == '4')
188 return ip4_addr_string(info, ptr);
189#endif
190 default:
191 break;
192 }
193#ifdef DEBUG
194 div = 1UL << (sizeof(long) * 8 - 4);
195 for (; div; div /= 0x10)
196 div_out(info, &num, div);
197#endif
198}
199
Masahiro Yamada433cbfb2017-02-12 18:08:43 +0900200static int _vprintf(struct printf_info *info, const char *fmt, va_list va)
Stefan Roese7d9cde12015-11-23 07:00:22 +0100201{
Stefan Roese7d9cde12015-11-23 07:00:22 +0100202 char ch;
203 char *p;
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000204 unsigned long num;
Stefan Roesea5ecdd02015-11-16 15:26:34 +0100205 char buf[12];
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000206 unsigned long div;
Stefan Roese7d9cde12015-11-23 07:00:22 +0100207
Stefan Roese7d9cde12015-11-23 07:00:22 +0100208 while ((ch = *(fmt++))) {
209 if (ch != '%') {
Simon Glass45313e82016-08-04 21:58:14 -0600210 info->putc(info, ch);
Stefan Roese7d9cde12015-11-23 07:00:22 +0100211 } else {
Simon Glass1fb67602016-05-14 14:02:52 -0600212 bool lz = false;
213 int width = 0;
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000214 bool islong = false;
Stefan Roese7d9cde12015-11-23 07:00:22 +0100215
216 ch = *(fmt++);
Andre Przywara1c853622017-01-02 11:48:29 +0000217 if (ch == '-')
218 ch = *(fmt++);
219
Stefan Roese7d9cde12015-11-23 07:00:22 +0100220 if (ch == '0') {
221 ch = *(fmt++);
222 lz = 1;
223 }
224
225 if (ch >= '0' && ch <= '9') {
Simon Glass1fb67602016-05-14 14:02:52 -0600226 width = 0;
Stefan Roese7d9cde12015-11-23 07:00:22 +0100227 while (ch >= '0' && ch <= '9') {
Simon Glass1fb67602016-05-14 14:02:52 -0600228 width = (width * 10) + ch - '0';
Stefan Roese7d9cde12015-11-23 07:00:22 +0100229 ch = *fmt++;
230 }
231 }
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000232 if (ch == 'l') {
233 ch = *(fmt++);
234 islong = true;
235 }
236
Simon Glass45313e82016-08-04 21:58:14 -0600237 info->bf = buf;
238 p = info->bf;
239 info->zs = 0;
Stefan Roese7d9cde12015-11-23 07:00:22 +0100240
241 switch (ch) {
Simon Glass1fb67602016-05-14 14:02:52 -0600242 case '\0':
Stefan Roese7d9cde12015-11-23 07:00:22 +0100243 goto abort;
244 case 'u':
245 case 'd':
Marek Vasute7882f62020-04-10 20:54:49 +0200246 case 'i':
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000247 div = 1000000000;
248 if (islong) {
249 num = va_arg(va, unsigned long);
250 if (sizeof(long) > 4)
251 div *= div * 10;
252 } else {
253 num = va_arg(va, unsigned int);
254 }
255
Marek Vasute7882f62020-04-10 20:54:49 +0200256 if (ch != 'u') {
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000257 if (islong && (long)num < 0) {
258 num = -(long)num;
259 out(info, '-');
260 } else if (!islong && (int)num < 0) {
261 num = -(int)num;
262 out(info, '-');
263 }
Stefan Roese7d9cde12015-11-23 07:00:22 +0100264 }
Simon Glass74b13202016-01-05 09:30:57 -0700265 if (!num) {
Simon Glass45313e82016-08-04 21:58:14 -0600266 out_dgt(info, 0);
Simon Glass74b13202016-01-05 09:30:57 -0700267 } else {
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000268 for (; div; div /= 10)
Simon Glass45313e82016-08-04 21:58:14 -0600269 div_out(info, &num, div);
Simon Glass74b13202016-01-05 09:30:57 -0700270 }
Stefan Roese7d9cde12015-11-23 07:00:22 +0100271 break;
Simon Glass831c1612019-10-21 17:26:45 -0600272 case 'p':
Matwey V. Kornilovc091f652021-08-05 22:06:05 +0300273 if (CONFIG_IS_ENABLED(NET_SUPPORT) || _DEBUG) {
274 pointer(info, fmt, va_arg(va, void *));
275 /*
276 * Skip this because it pulls in _ctype which is
277 * 256 bytes, and we don't generally implement
278 * pointer anyway
279 */
280 while (isalnum(fmt[0]))
281 fmt++;
282 break;
283 }
Simon Glass831c1612019-10-21 17:26:45 -0600284 islong = true;
285 /* no break */
Stefan Roese7d9cde12015-11-23 07:00:22 +0100286 case 'x':
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000287 if (islong) {
288 num = va_arg(va, unsigned long);
289 div = 1UL << (sizeof(long) * 8 - 4);
290 } else {
291 num = va_arg(va, unsigned int);
292 div = 0x10000000;
293 }
Simon Glass74b13202016-01-05 09:30:57 -0700294 if (!num) {
Simon Glass45313e82016-08-04 21:58:14 -0600295 out_dgt(info, 0);
Simon Glass74b13202016-01-05 09:30:57 -0700296 } else {
Andre Przywaraa28e1d92017-01-02 11:48:28 +0000297 for (; div; div /= 0x10)
Simon Glass45313e82016-08-04 21:58:14 -0600298 div_out(info, &num, div);
Simon Glass74b13202016-01-05 09:30:57 -0700299 }
Stefan Roese7d9cde12015-11-23 07:00:22 +0100300 break;
301 case 'c':
Simon Glass45313e82016-08-04 21:58:14 -0600302 out(info, (char)(va_arg(va, int)));
Stefan Roese7d9cde12015-11-23 07:00:22 +0100303 break;
304 case 's':
305 p = va_arg(va, char*);
306 break;
307 case '%':
Simon Glass45313e82016-08-04 21:58:14 -0600308 out(info, '%');
Stefan Roese7d9cde12015-11-23 07:00:22 +0100309 default:
310 break;
311 }
312
Simon Glass45313e82016-08-04 21:58:14 -0600313 *info->bf = 0;
314 info->bf = p;
315 while (*info->bf++ && width > 0)
Simon Glass1fb67602016-05-14 14:02:52 -0600316 width--;
317 while (width-- > 0)
Simon Glass45313e82016-08-04 21:58:14 -0600318 info->putc(info, lz ? '0' : ' ');
Simon Glass8e316812015-12-29 05:22:46 -0700319 if (p) {
320 while ((ch = *p++))
Simon Glass45313e82016-08-04 21:58:14 -0600321 info->putc(info, ch);
Simon Glass8e316812015-12-29 05:22:46 -0700322 }
Stefan Roese7d9cde12015-11-23 07:00:22 +0100323 }
324 }
325
326abort:
Stefan Roese7d9cde12015-11-23 07:00:22 +0100327 return 0;
328}
Sjoerd Simons962a43c2015-12-04 23:27:37 +0100329
Alex Kiernan4f1eed72018-04-19 04:32:55 +0000330#if CONFIG_IS_ENABLED(PRINTF)
331static void putc_normal(struct printf_info *info, char ch)
332{
333 putc(ch);
334}
335
Hans de Goededa70b4d2016-06-10 21:03:34 +0200336int vprintf(const char *fmt, va_list va)
337{
Simon Glass45313e82016-08-04 21:58:14 -0600338 struct printf_info info;
339
340 info.putc = putc_normal;
341 return _vprintf(&info, fmt, va);
Hans de Goededa70b4d2016-06-10 21:03:34 +0200342}
343
Sjoerd Simons962a43c2015-12-04 23:27:37 +0100344int printf(const char *fmt, ...)
345{
Simon Glass45313e82016-08-04 21:58:14 -0600346 struct printf_info info;
347
Sjoerd Simons962a43c2015-12-04 23:27:37 +0100348 va_list va;
349 int ret;
350
Simon Glass45313e82016-08-04 21:58:14 -0600351 info.putc = putc_normal;
Sjoerd Simons962a43c2015-12-04 23:27:37 +0100352 va_start(va, fmt);
Simon Glass45313e82016-08-04 21:58:14 -0600353 ret = _vprintf(&info, fmt, va);
Sjoerd Simons962a43c2015-12-04 23:27:37 +0100354 va_end(va);
355
356 return ret;
357}
Alex Kiernan4f1eed72018-04-19 04:32:55 +0000358#endif
Simon Glass5c411d82016-05-14 14:02:53 -0600359
Simon Glass45313e82016-08-04 21:58:14 -0600360static void putc_outstr(struct printf_info *info, char ch)
Simon Glass5c411d82016-05-14 14:02:53 -0600361{
Simon Glass45313e82016-08-04 21:58:14 -0600362 *info->outstr++ = ch;
Simon Glass5c411d82016-05-14 14:02:53 -0600363}
364
Marek Vasutabeb2722016-05-31 23:12:46 +0200365int sprintf(char *buf, const char *fmt, ...)
Simon Glass5c411d82016-05-14 14:02:53 -0600366{
Simon Glass45313e82016-08-04 21:58:14 -0600367 struct printf_info info;
Simon Glass5c411d82016-05-14 14:02:53 -0600368 va_list va;
369 int ret;
370
371 va_start(va, fmt);
Simon Glass45313e82016-08-04 21:58:14 -0600372 info.outstr = buf;
373 info.putc = putc_outstr;
374 ret = _vprintf(&info, fmt, va);
Simon Glass5c411d82016-05-14 14:02:53 -0600375 va_end(va);
Simon Glass45313e82016-08-04 21:58:14 -0600376 *info.outstr = '\0';
Simon Glass5c411d82016-05-14 14:02:53 -0600377
378 return ret;
379}
Marek Vasutabeb2722016-05-31 23:12:46 +0200380
Simon South9b3fbb22019-10-02 10:55:07 -0400381#if CONFIG_IS_ENABLED(LOG)
382/* Note that size is ignored */
383int vsnprintf(char *buf, size_t size, const char *fmt, va_list va)
384{
385 struct printf_info info;
386 int ret;
387
388 info.outstr = buf;
389 info.putc = putc_outstr;
390 ret = _vprintf(&info, fmt, va);
391 *info.outstr = '\0';
392
393 return ret;
394}
395#endif
396
Marek Vasutabeb2722016-05-31 23:12:46 +0200397/* Note that size is ignored */
398int snprintf(char *buf, size_t size, const char *fmt, ...)
399{
Simon Glass45313e82016-08-04 21:58:14 -0600400 struct printf_info info;
Marek Vasutabeb2722016-05-31 23:12:46 +0200401 va_list va;
402 int ret;
403
404 va_start(va, fmt);
Simon Glass45313e82016-08-04 21:58:14 -0600405 info.outstr = buf;
406 info.putc = putc_outstr;
407 ret = _vprintf(&info, fmt, va);
Marek Vasutabeb2722016-05-31 23:12:46 +0200408 va_end(va);
Simon Glass45313e82016-08-04 21:58:14 -0600409 *info.outstr = '\0';
Marek Vasutabeb2722016-05-31 23:12:46 +0200410
411 return ret;
412}
Simon Glassdee74e62019-10-21 17:26:44 -0600413
414void print_grouped_ull(unsigned long long int_val, int digits)
415{
416 /* Don't try to print the upper 32-bits */
417 printf("%ld ", (ulong)int_val);
418}