]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib/vsprintf.c
mmc: dw_mmc: support the DDR mode
[people/ms/u-boot.git] / lib / vsprintf.c
CommitLineData
153d511e
WD
1/*
2 * linux/lib/vsprintf.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
8/*
9 * Wirzenius wrote this portably, Torvalds fucked it up :-)
3cce8a54
SG
10 *
11 * from hush: simple_itoa() was lifted from boa-0.93.15
153d511e
WD
12 */
13
14#include <stdarg.h>
15#include <linux/types.h>
16#include <linux/string.h>
17#include <linux/ctype.h>
a7fd0d9f 18#include <errno.h>
153d511e
WD
19
20#include <common.h>
8acdae68 21#if !defined(CONFIG_PANIC_HANG)
153d511e 22#include <command.h>
153d511e
WD
23#endif
24
47910506 25#include <div64.h>
47910506
DB
26#define noinline __attribute__((noinline))
27
046a37bd
SR
28/* some reluctance to put this into a new limits.h, so it is here */
29#define INT_MAX ((int)(~0U>>1))
30
0eb25768 31static const char hex_asc[] = "0123456789abcdef";
6c6166f5
MF
32#define hex_asc_lo(x) hex_asc[((x) & 0x0f)]
33#define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4]
34
35static inline char *pack_hex_byte(char *buf, u8 byte)
36{
37 *buf++ = hex_asc_hi(byte);
38 *buf++ = hex_asc_lo(byte);
39 return buf;
40}
41
8acdae68
DS
42unsigned long simple_strtoul(const char *cp, char **endp,
43 unsigned int base)
153d511e 44{
8acdae68
DS
45 unsigned long result = 0;
46 unsigned long value;
153d511e
WD
47
48 if (*cp == '0') {
49 cp++;
50 if ((*cp == 'x') && isxdigit(cp[1])) {
51 base = 16;
52 cp++;
53 }
8acdae68
DS
54
55 if (!base)
153d511e 56 base = 8;
153d511e 57 }
8acdae68
DS
58
59 if (!base)
153d511e 60 base = 10;
8acdae68 61
153d511e
WD
62 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp)
63 ? toupper(*cp) : *cp)-'A'+10) < base) {
64 result = result*base + value;
65 cp++;
66 }
8acdae68 67
153d511e
WD
68 if (endp)
69 *endp = (char *)cp;
8acdae68 70
153d511e
WD
71 return result;
72}
73
a7fd0d9f
HS
74int strict_strtoul(const char *cp, unsigned int base, unsigned long *res)
75{
76 char *tail;
77 unsigned long val;
78 size_t len;
79
80 *res = 0;
81 len = strlen(cp);
82 if (len == 0)
83 return -EINVAL;
84
85 val = simple_strtoul(cp, &tail, base);
86 if (tail == cp)
87 return -EINVAL;
88
89 if ((*tail == '\0') ||
90 ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {
91 *res = val;
92 return 0;
93 }
94
95 return -EINVAL;
96}
97
8acdae68 98long simple_strtol(const char *cp, char **endp, unsigned int base)
153d511e 99{
8acdae68
DS
100 if (*cp == '-')
101 return -simple_strtoul(cp + 1, endp, base);
102
103 return simple_strtoul(cp, endp, base);
153d511e
WD
104}
105
3ec44111 106unsigned long ustrtoul(const char *cp, char **endp, unsigned int base)
7e6ee7ad
KP
107{
108 unsigned long result = simple_strtoul(cp, endp, base);
109 switch (**endp) {
8acdae68 110 case 'G':
7e6ee7ad
KP
111 result *= 1024;
112 /* fall through */
113 case 'M':
114 result *= 1024;
115 /* fall through */
116 case 'K':
117 case 'k':
118 result *= 1024;
119 if ((*endp)[1] == 'i') {
120 if ((*endp)[2] == 'B')
121 (*endp) += 3;
122 else
123 (*endp) += 2;
124 }
125 }
126 return result;
127}
128
7df54d31
PW
129unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base)
130{
131 unsigned long long result = simple_strtoull(cp, endp, base);
132 switch (**endp) {
133 case 'G':
134 result *= 1024;
135 /* fall through */
136 case 'M':
137 result *= 1024;
138 /* fall through */
139 case 'K':
140 case 'k':
141 result *= 1024;
142 if ((*endp)[1] == 'i') {
143 if ((*endp)[2] == 'B')
144 (*endp) += 3;
145 else
146 (*endp) += 2;
147 }
148 }
149 return result;
150}
151
8acdae68
DS
152unsigned long long simple_strtoull(const char *cp, char **endp,
153 unsigned int base)
c40b2956
WD
154{
155 unsigned long long result = 0, value;
156
157 if (*cp == '0') {
158 cp++;
8acdae68 159 if ((*cp == 'x') && isxdigit(cp[1])) {
c40b2956
WD
160 base = 16;
161 cp++;
162 }
8acdae68
DS
163
164 if (!base)
c40b2956 165 base = 8;
c40b2956 166 }
8acdae68
DS
167
168 if (!base)
c40b2956 169 base = 10;
8acdae68
DS
170
171 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp - '0'
172 : (islower(*cp) ? toupper(*cp) : *cp) - 'A' + 10) < base) {
c40b2956
WD
173 result = result * base + value;
174 cp++;
175 }
8acdae68 176
c40b2956
WD
177 if (endp)
178 *endp = (char *) cp;
8acdae68 179
c40b2956
WD
180 return result;
181}
c40b2956 182
153d511e
WD
183/* we use this so that we can do without the ctype library */
184#define is_digit(c) ((c) >= '0' && (c) <= '9')
185
186static int skip_atoi(const char **s)
187{
8acdae68 188 int i = 0;
153d511e
WD
189
190 while (is_digit(**s))
8acdae68
DS
191 i = i * 10 + *((*s)++) - '0';
192
153d511e
WD
193 return i;
194}
195
6c6166f5
MF
196/* Decimal conversion is by far the most typical, and is used
197 * for /proc and /sys data. This directly impacts e.g. top performance
198 * with many processes running. We optimize it for speed
199 * using code from
200 * http://www.cs.uiowa.edu/~jones/bcd/decimal.html
201 * (with permission from the author, Douglas W. Jones). */
202
203/* Formats correctly any integer in [0,99999].
204 * Outputs from one to five digits depending on input.
205 * On i386 gcc 4.1.2 -O2: ~250 bytes of code. */
8acdae68 206static char *put_dec_trunc(char *buf, unsigned q)
6c6166f5
MF
207{
208 unsigned d3, d2, d1, d0;
209 d1 = (q>>4) & 0xf;
210 d2 = (q>>8) & 0xf;
211 d3 = (q>>12);
212
213 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
214 q = (d0 * 0xcd) >> 11;
215 d0 = d0 - 10*q;
216 *buf++ = d0 + '0'; /* least significant digit */
217 d1 = q + 9*d3 + 5*d2 + d1;
218 if (d1 != 0) {
219 q = (d1 * 0xcd) >> 11;
220 d1 = d1 - 10*q;
221 *buf++ = d1 + '0'; /* next digit */
222
223 d2 = q + 2*d2;
224 if ((d2 != 0) || (d3 != 0)) {
225 q = (d2 * 0xd) >> 7;
226 d2 = d2 - 10*q;
227 *buf++ = d2 + '0'; /* next digit */
228
229 d3 = q + 4*d3;
230 if (d3 != 0) {
231 q = (d3 * 0xcd) >> 11;
232 d3 = d3 - 10*q;
233 *buf++ = d3 + '0'; /* next digit */
234 if (q != 0)
8acdae68 235 *buf++ = q + '0'; /* most sign. digit */
6c6166f5
MF
236 }
237 }
238 }
239 return buf;
240}
241/* Same with if's removed. Always emits five digits */
8acdae68 242static char *put_dec_full(char *buf, unsigned q)
6c6166f5
MF
243{
244 /* BTW, if q is in [0,9999], 8-bit ints will be enough, */
245 /* but anyway, gcc produces better code with full-sized ints */
246 unsigned d3, d2, d1, d0;
247 d1 = (q>>4) & 0xf;
248 d2 = (q>>8) & 0xf;
249 d3 = (q>>12);
250
c0a14aed
WD
251 /*
252 * Possible ways to approx. divide by 10
253 * gcc -O2 replaces multiply with shifts and adds
254 * (x * 0xcd) >> 11: 11001101 - shorter code than * 0x67 (on i386)
255 * (x * 0x67) >> 10: 1100111
256 * (x * 0x34) >> 9: 110100 - same
257 * (x * 0x1a) >> 8: 11010 - same
258 * (x * 0x0d) >> 7: 1101 - same, shortest code (on i386)
259 */
6c6166f5
MF
260
261 d0 = 6*(d3 + d2 + d1) + (q & 0xf);
262 q = (d0 * 0xcd) >> 11;
263 d0 = d0 - 10*q;
264 *buf++ = d0 + '0';
265 d1 = q + 9*d3 + 5*d2 + d1;
266 q = (d1 * 0xcd) >> 11;
267 d1 = d1 - 10*q;
268 *buf++ = d1 + '0';
269
270 d2 = q + 2*d2;
271 q = (d2 * 0xd) >> 7;
272 d2 = d2 - 10*q;
273 *buf++ = d2 + '0';
274
275 d3 = q + 4*d3;
276 q = (d3 * 0xcd) >> 11; /* - shorter code */
277 /* q = (d3 * 0x67) >> 10; - would also work */
278 d3 = d3 - 10*q;
279 *buf++ = d3 + '0';
280 *buf++ = q + '0';
281 return buf;
282}
283/* No inlining helps gcc to use registers better */
7b64f66c 284static noinline char *put_dec(char *buf, u64 num)
6c6166f5
MF
285{
286 while (1) {
287 unsigned rem;
288 if (num < 100000)
289 return put_dec_trunc(buf, num);
290 rem = do_div(num, 100000);
291 buf = put_dec_full(buf, rem);
292 }
293}
294
153d511e
WD
295#define ZEROPAD 1 /* pad with zero */
296#define SIGN 2 /* unsigned/signed long */
297#define PLUS 4 /* show plus */
298#define SPACE 8 /* space if plus */
299#define LEFT 16 /* left justified */
6c6166f5
MF
300#define SMALL 32 /* Must be 32 == 0x20 */
301#define SPECIAL 64 /* 0x */
153d511e 302
046a37bd
SR
303#ifdef CONFIG_SYS_VSNPRINTF
304/*
305 * Macro to add a new character to our output string, but only if it will
306 * fit. The macro moves to the next character position in the output string.
307 */
308#define ADDCH(str, ch) do { \
309 if ((str) < end) \
310 *(str) = (ch); \
311 ++str; \
312 } while (0)
313#else
314#define ADDCH(str, ch) (*(str)++ = (ch))
315#endif
316
7b64f66c 317static char *number(char *buf, char *end, u64 num,
046a37bd 318 int base, int size, int precision, int type)
153d511e 319{
6c6166f5 320 /* we are called with base 8, 10 or 16, only, thus don't need "G..." */
8acdae68 321 static const char digits[16] = "0123456789ABCDEF";
6c6166f5
MF
322
323 char tmp[66];
324 char sign;
325 char locase;
326 int need_pfx = ((type & SPECIAL) && base != 10);
153d511e
WD
327 int i;
328
6c6166f5
MF
329 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
330 * produces same digits or (maybe lowercased) letters */
331 locase = (type & SMALL);
153d511e
WD
332 if (type & LEFT)
333 type &= ~ZEROPAD;
153d511e
WD
334 sign = 0;
335 if (type & SIGN) {
7b64f66c 336 if ((s64) num < 0) {
153d511e 337 sign = '-';
7b64f66c 338 num = -(s64) num;
153d511e
WD
339 size--;
340 } else if (type & PLUS) {
341 sign = '+';
342 size--;
343 } else if (type & SPACE) {
344 sign = ' ';
345 size--;
346 }
347 }
6c6166f5
MF
348 if (need_pfx) {
349 size--;
153d511e 350 if (base == 16)
153d511e
WD
351 size--;
352 }
6c6166f5
MF
353
354 /* generate full string in tmp[], in reverse order */
153d511e
WD
355 i = 0;
356 if (num == 0)
6c6166f5
MF
357 tmp[i++] = '0';
358 /* Generic code, for any base:
359 else do {
360 tmp[i++] = (digits[do_div(num,base)] | locase);
361 } while (num != 0);
362 */
363 else if (base != 10) { /* 8 or 16 */
364 int mask = base - 1;
365 int shift = 3;
8acdae68
DS
366
367 if (base == 16)
368 shift = 4;
369
6c6166f5 370 do {
8acdae68
DS
371 tmp[i++] = (digits[((unsigned char)num) & mask]
372 | locase);
6c6166f5
MF
373 num >>= shift;
374 } while (num);
375 } else { /* base 10 */
376 i = put_dec(tmp, num) - tmp;
377 }
378
379 /* printing 100 using %2d gives "100", not "00" */
153d511e
WD
380 if (i > precision)
381 precision = i;
6c6166f5 382 /* leading space padding */
153d511e 383 size -= precision;
046a37bd
SR
384 if (!(type & (ZEROPAD + LEFT))) {
385 while (--size >= 0)
386 ADDCH(buf, ' ');
387 }
6c6166f5 388 /* sign */
153d511e 389 if (sign)
046a37bd 390 ADDCH(buf, sign);
6c6166f5
MF
391 /* "0x" / "0" prefix */
392 if (need_pfx) {
046a37bd 393 ADDCH(buf, '0');
6c6166f5 394 if (base == 16)
046a37bd 395 ADDCH(buf, 'X' | locase);
6c6166f5
MF
396 }
397 /* zero or space padding */
398 if (!(type & LEFT)) {
399 char c = (type & ZEROPAD) ? '0' : ' ';
046a37bd 400
6c6166f5 401 while (--size >= 0)
046a37bd 402 ADDCH(buf, c);
153d511e 403 }
6c6166f5
MF
404 /* hmm even more zero padding? */
405 while (i <= --precision)
046a37bd 406 ADDCH(buf, '0');
6c6166f5
MF
407 /* actual digits of result */
408 while (--i >= 0)
046a37bd 409 ADDCH(buf, tmp[i]);
6c6166f5
MF
410 /* trailing space padding */
411 while (--size >= 0)
046a37bd 412 ADDCH(buf, ' ');
6c6166f5 413 return buf;
153d511e
WD
414}
415
046a37bd
SR
416static char *string(char *buf, char *end, char *s, int field_width,
417 int precision, int flags)
6c6166f5
MF
418{
419 int len, i;
153d511e 420
0eb25768 421 if (s == NULL)
6c6166f5
MF
422 s = "<NULL>";
423
424 len = strnlen(s, precision);
425
426 if (!(flags & LEFT))
427 while (len < field_width--)
046a37bd 428 ADDCH(buf, ' ');
6c6166f5 429 for (i = 0; i < len; ++i)
046a37bd 430 ADDCH(buf, *s++);
6c6166f5 431 while (len < field_width--)
046a37bd 432 ADDCH(buf, ' ');
6c6166f5
MF
433 return buf;
434}
435
436#ifdef CONFIG_CMD_NET
046a37bd 437static char *mac_address_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5 438 int precision, int flags)
153d511e 439{
8acdae68
DS
440 /* (6 * 2 hex digits), 5 colons and trailing zero */
441 char mac_addr[6 * 3];
6c6166f5
MF
442 char *p = mac_addr;
443 int i;
444
445 for (i = 0; i < 6; i++) {
446 p = pack_hex_byte(p, addr[i]);
447 if (!(flags & SPECIAL) && i != 5)
448 *p++ = ':';
449 }
450 *p = '\0';
451
046a37bd
SR
452 return string(buf, end, mac_addr, field_width, precision,
453 flags & ~SPECIAL);
6c6166f5
MF
454}
455
046a37bd 456static char *ip6_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
457 int precision, int flags)
458{
8acdae68
DS
459 /* (8 * 4 hex digits), 7 colons and trailing zero */
460 char ip6_addr[8 * 5];
6c6166f5
MF
461 char *p = ip6_addr;
462 int i;
463
464 for (i = 0; i < 8; i++) {
465 p = pack_hex_byte(p, addr[2 * i]);
466 p = pack_hex_byte(p, addr[2 * i + 1]);
467 if (!(flags & SPECIAL) && i != 7)
468 *p++ = ':';
469 }
470 *p = '\0';
471
046a37bd
SR
472 return string(buf, end, ip6_addr, field_width, precision,
473 flags & ~SPECIAL);
6c6166f5
MF
474}
475
046a37bd 476static char *ip4_addr_string(char *buf, char *end, u8 *addr, int field_width,
6c6166f5
MF
477 int precision, int flags)
478{
8acdae68
DS
479 /* (4 * 3 decimal digits), 3 dots and trailing zero */
480 char ip4_addr[4 * 4];
6c6166f5
MF
481 char temp[3]; /* hold each IP quad in reverse order */
482 char *p = ip4_addr;
483 int i, digits;
484
485 for (i = 0; i < 4; i++) {
486 digits = put_dec_trunc(temp, addr[i]) - temp;
487 /* reverse the digits in the quad */
488 while (digits--)
489 *p++ = temp[digits];
490 if (i != 3)
491 *p++ = '.';
492 }
493 *p = '\0';
494
046a37bd
SR
495 return string(buf, end, ip4_addr, field_width, precision,
496 flags & ~SPECIAL);
6c6166f5 497}
c40b2956 498#endif
6c6166f5
MF
499
500/*
501 * Show a '%p' thing. A kernel extension is that the '%p' is followed
502 * by an extra set of alphanumeric characters that are extended format
503 * specifiers.
504 *
505 * Right now we handle:
506 *
507 * - 'M' For a 6-byte MAC address, it prints the address in the
508 * usual colon-separated hex notation
509 * - 'I' [46] for IPv4/IPv6 addresses printed in the usual way (dot-separated
510 * decimal for v4 and colon separated network-order 16 bit hex for v6)
511 * - 'i' [46] for 'raw' IPv4/IPv6 addresses, IPv6 omits the colons, IPv4 is
512 * currently the same
513 *
514 * Note: The difference between 'S' and 'F' is that on ia64 and ppc64
515 * function pointers are really function descriptors, which contain a
516 * pointer to the real address.
517 */
046a37bd
SR
518static char *pointer(const char *fmt, char *buf, char *end, void *ptr,
519 int field_width, int precision, int flags)
6c6166f5 520{
d266f669
WD
521 /*
522 * Being a boot loader, we explicitly allow pointers to
523 * (physical) address null.
524 */
525#if 0
6c6166f5 526 if (!ptr)
046a37bd
SR
527 return string(buf, end, "(null)", field_width, precision,
528 flags);
d266f669 529#endif
6c6166f5
MF
530
531#ifdef CONFIG_CMD_NET
532 switch (*fmt) {
533 case 'm':
534 flags |= SPECIAL;
535 /* Fallthrough */
536 case 'M':
046a37bd
SR
537 return mac_address_string(buf, end, ptr, field_width,
538 precision, flags);
6c6166f5
MF
539 case 'i':
540 flags |= SPECIAL;
541 /* Fallthrough */
542 case 'I':
543 if (fmt[1] == '6')
046a37bd
SR
544 return ip6_addr_string(buf, end, ptr, field_width,
545 precision, flags);
6c6166f5 546 if (fmt[1] == '4')
046a37bd
SR
547 return ip4_addr_string(buf, end, ptr, field_width,
548 precision, flags);
6c6166f5
MF
549 flags &= ~SPECIAL;
550 break;
551 }
552#endif
553 flags |= SMALL;
554 if (field_width == -1) {
555 field_width = 2*sizeof(void *);
556 flags |= ZEROPAD;
557 }
046a37bd
SR
558 return number(buf, end, (unsigned long)ptr, 16, field_width,
559 precision, flags);
6c6166f5
MF
560}
561
046a37bd
SR
562static int vsnprintf_internal(char *buf, size_t size, const char *fmt,
563 va_list args)
6c6166f5 564{
7b64f66c 565 u64 num;
6c6166f5
MF
566 int base;
567 char *str;
153d511e
WD
568
569 int flags; /* flags to number() */
570
571 int field_width; /* width of output field */
572 int precision; /* min. # of digits for integers; max
573 number of chars for from string */
6c6166f5
MF
574 int qualifier; /* 'h', 'l', or 'L' for integer fields */
575 /* 'z' support added 23/7/1999 S.H. */
576 /* 'z' changed to 'Z' --davidm 1/25/99 */
577 /* 't' added for ptrdiff_t */
046a37bd 578 char *end = buf + size;
6c6166f5 579
046a37bd
SR
580#ifdef CONFIG_SYS_VSNPRINTF
581 /* Make sure end is always >= buf - do we want this in U-Boot? */
582 if (end < buf) {
583 end = ((void *)-1);
584 size = end - buf;
585 }
586#endif
6c6166f5 587 str = buf;
153d511e 588
6c6166f5 589 for (; *fmt ; ++fmt) {
153d511e 590 if (*fmt != '%') {
046a37bd 591 ADDCH(str, *fmt);
153d511e
WD
592 continue;
593 }
594
595 /* process flags */
596 flags = 0;
8acdae68 597repeat:
153d511e
WD
598 ++fmt; /* this also skips first '%' */
599 switch (*fmt) {
8acdae68
DS
600 case '-':
601 flags |= LEFT;
602 goto repeat;
603 case '+':
604 flags |= PLUS;
605 goto repeat;
606 case ' ':
607 flags |= SPACE;
608 goto repeat;
609 case '#':
610 flags |= SPECIAL;
611 goto repeat;
612 case '0':
613 flags |= ZEROPAD;
614 goto repeat;
6c6166f5 615 }
153d511e
WD
616
617 /* get field width */
618 field_width = -1;
619 if (is_digit(*fmt))
620 field_width = skip_atoi(&fmt);
621 else if (*fmt == '*') {
622 ++fmt;
623 /* it's the next argument */
624 field_width = va_arg(args, int);
625 if (field_width < 0) {
626 field_width = -field_width;
627 flags |= LEFT;
628 }
629 }
630
631 /* get the precision */
632 precision = -1;
633 if (*fmt == '.') {
634 ++fmt;
635 if (is_digit(*fmt))
636 precision = skip_atoi(&fmt);
637 else if (*fmt == '*') {
638 ++fmt;
639 /* it's the next argument */
640 precision = va_arg(args, int);
641 }
642 if (precision < 0)
643 precision = 0;
644 }
645
646 /* get the conversion qualifier */
647 qualifier = -1;
f354b73e 648 if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L' ||
6c6166f5 649 *fmt == 'Z' || *fmt == 'z' || *fmt == 't') {
153d511e 650 qualifier = *fmt;
6c6166f5
MF
651 ++fmt;
652 if (qualifier == 'l' && *fmt == 'l') {
653 qualifier = 'L';
bf052939
JY
654 ++fmt;
655 }
153d511e
WD
656 }
657
658 /* default base */
659 base = 10;
660
661 switch (*fmt) {
662 case 'c':
046a37bd 663 if (!(flags & LEFT)) {
153d511e 664 while (--field_width > 0)
046a37bd
SR
665 ADDCH(str, ' ');
666 }
667 ADDCH(str, (unsigned char) va_arg(args, int));
153d511e 668 while (--field_width > 0)
046a37bd 669 ADDCH(str, ' ');
153d511e
WD
670 continue;
671
672 case 's':
046a37bd
SR
673 str = string(str, end, va_arg(args, char *),
674 field_width, precision, flags);
153d511e
WD
675 continue;
676
677 case 'p':
8acdae68 678 str = pointer(fmt + 1, str, end,
6c6166f5
MF
679 va_arg(args, void *),
680 field_width, precision, flags);
681 /* Skip all alphanumeric pointer suffixes */
682 while (isalnum(fmt[1]))
683 fmt++;
153d511e
WD
684 continue;
685
153d511e
WD
686 case 'n':
687 if (qualifier == 'l') {
8acdae68 688 long *ip = va_arg(args, long *);
153d511e
WD
689 *ip = (str - buf);
690 } else {
8acdae68 691 int *ip = va_arg(args, int *);
153d511e
WD
692 *ip = (str - buf);
693 }
694 continue;
695
696 case '%':
046a37bd 697 ADDCH(str, '%');
153d511e
WD
698 continue;
699
700 /* integer number formats - set up the flags and "break" */
701 case 'o':
702 base = 8;
703 break;
704
153d511e 705 case 'x':
6c6166f5
MF
706 flags |= SMALL;
707 case 'X':
153d511e
WD
708 base = 16;
709 break;
710
711 case 'd':
712 case 'i':
713 flags |= SIGN;
714 case 'u':
715 break;
716
717 default:
046a37bd 718 ADDCH(str, '%');
153d511e 719 if (*fmt)
046a37bd 720 ADDCH(str, *fmt);
153d511e
WD
721 else
722 --fmt;
723 continue;
724 }
6c6166f5 725 if (qualifier == 'L') /* "quad" for 64 bit variables */
c40b2956 726 num = va_arg(args, unsigned long long);
4b142feb 727 else if (qualifier == 'l') {
153d511e 728 num = va_arg(args, unsigned long);
6c6166f5
MF
729 if (flags & SIGN)
730 num = (signed long) num;
f354b73e
JCPV
731 } else if (qualifier == 'Z' || qualifier == 'z') {
732 num = va_arg(args, size_t);
733 } else if (qualifier == 't') {
734 num = va_arg(args, ptrdiff_t);
735 } else if (qualifier == 'h') {
153d511e
WD
736 num = (unsigned short) va_arg(args, int);
737 if (flags & SIGN)
6c6166f5
MF
738 num = (signed short) num;
739 } else {
153d511e 740 num = va_arg(args, unsigned int);
6c6166f5
MF
741 if (flags & SIGN)
742 num = (signed int) num;
743 }
046a37bd
SR
744 str = number(str, end, num, base, field_width, precision,
745 flags);
746 }
747
748#ifdef CONFIG_SYS_VSNPRINTF
749 if (size > 0) {
750 ADDCH(str, '\0');
751 if (str > end)
752 end[-1] = '\0';
686f60f5 753 --str;
153d511e 754 }
046a37bd 755#else
153d511e 756 *str = '\0';
046a37bd
SR
757#endif
758 /* the trailing null byte doesn't count towards the total */
8acdae68 759 return str - buf;
153d511e
WD
760}
761
046a37bd
SR
762#ifdef CONFIG_SYS_VSNPRINTF
763int vsnprintf(char *buf, size_t size, const char *fmt,
764 va_list args)
765{
766 return vsnprintf_internal(buf, size, fmt, args);
767}
768
046a37bd
SR
769int vscnprintf(char *buf, size_t size, const char *fmt, va_list args)
770{
771 int i;
772
773 i = vsnprintf(buf, size, fmt, args);
774
775 if (likely(i < size))
776 return i;
777 if (size != 0)
778 return size - 1;
779 return 0;
780}
781
046a37bd
SR
782int snprintf(char *buf, size_t size, const char *fmt, ...)
783{
784 va_list args;
785 int i;
786
787 va_start(args, fmt);
788 i = vsnprintf(buf, size, fmt, args);
789 va_end(args);
790
791 return i;
792}
793
046a37bd
SR
794int scnprintf(char *buf, size_t size, const char *fmt, ...)
795{
796 va_list args;
797 int i;
798
799 va_start(args, fmt);
800 i = vscnprintf(buf, size, fmt, args);
801 va_end(args);
802
803 return i;
804}
805#endif /* CONFIG_SYS_VSNPRINT */
806
807/**
808 * Format a string and place it in a buffer (va_list version)
809 *
810 * @param buf The buffer to place the result into
811 * @param fmt The format string to use
812 * @param args Arguments for the format string
813 *
814 * The function returns the number of characters written
815 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
816 * buffer overflows.
817 *
818 * If you're not already dealing with a va_list consider using sprintf().
819 */
820int vsprintf(char *buf, const char *fmt, va_list args)
821{
822 return vsnprintf_internal(buf, INT_MAX, fmt, args);
823}
824
8acdae68 825int sprintf(char *buf, const char *fmt, ...)
153d511e
WD
826{
827 va_list args;
828 int i;
829
830 va_start(args, fmt);
8acdae68 831 i = vsprintf(buf, fmt, args);
153d511e
WD
832 va_end(args);
833 return i;
834}
835
836void panic(const char *fmt, ...)
837{
8acdae68 838 va_list args;
153d511e 839 va_start(args, fmt);
6dd652fa 840 vprintf(fmt, args);
153d511e
WD
841 putc('\n');
842 va_end(args);
8acdae68 843#if defined(CONFIG_PANIC_HANG)
153d511e
WD
844 hang();
845#else
8acdae68
DS
846 udelay(100000); /* allow messages to go out */
847 do_reset(NULL, 0, 0, NULL);
153d511e 848#endif
40e01881
HS
849 while (1)
850 ;
153d511e 851}
21726a7a
SG
852
853void __assert_fail(const char *assertion, const char *file, unsigned line,
854 const char *function)
855{
856 /* This will not return */
857 panic("%s:%u: %s: Assertion `%s' failed.", file, line, function,
858 assertion);
859}
3cce8a54
SG
860
861char *simple_itoa(ulong i)
862{
863 /* 21 digits plus null terminator, good for 64-bit or smaller ints */
864 static char local[22];
865 char *p = &local[21];
866
867 *p-- = '\0';
868 do {
869 *p-- = '0' + i % 10;
870 i /= 10;
871 } while (i > 0);
872 return p + 1;
873}
b8bcaa3a
SG
874
875/* We don't seem to have %'d in U-Boot */
876void print_grouped_ull(unsigned long long int_val, int digits)
877{
878 char str[21], *s;
879 int grab = 3;
880
881 digits = (digits + 2) / 3;
882 sprintf(str, "%*llu", digits * 3, int_val);
883 for (s = str; *s; s += grab) {
884 if (s != str)
885 putc(s[-1] != ' ' ? ',' : ' ');
886 printf("%.*s", grab, s);
887 grab = 3;
888 }
889}