1 // SPDX-License-Identifier: LGPL-2.1+
3 * Tiny printf version for SPL
6 * http://www.sparetimelabs.com/printfrevisited/printfrevisited.php
8 * Copyright (C) 2004,2008 Kustaa Nyholm
15 #include <linux/ctype.h>
18 char *bf; /* Digit buffer */
19 char zs; /* non-zero if a digit has been written */
20 char *outstr; /* Next output position for sprintf() */
22 /* Output a character */
23 void (*putc)(struct printf_info *info, char ch);
26 static void out(struct printf_info *info, char c)
31 static void out_dgt(struct printf_info *info, char dgt)
33 out(info, dgt + (dgt < 10 ? '0' : 'a' - 10));
37 static void div_out(struct printf_info *info, unsigned long *num,
40 unsigned char dgt = 0;
47 if (info->zs || dgt > 0)
52 static void string(struct printf_info *info, char *s)
60 static 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]
64 static inline char *pack_hex_byte(char *buf, u8 byte)
66 *buf++ = hex_asc_hi(byte);
67 *buf++ = hex_asc_lo(byte);
71 static void mac_address_string(struct printf_info *info, u8 *addr,
74 /* (6 * 2 hex digits), 5 colons and trailing zero */
79 for (i = 0; i < 6; i++) {
80 p = pack_hex_byte(p, addr[i]);
81 if (separator && i != 5)
86 string(info, mac_addr);
89 static char *put_dec_trunc(char *buf, unsigned int q)
91 unsigned int d3, d2, d1, d0;
96 d0 = 6 * (d3 + d2 + d1) + (q & 0xf);
97 q = (d0 * 0xcd) >> 11;
99 *buf++ = d0 + '0'; /* least significant digit */
100 d1 = q + 9 * d3 + 5 * d2 + d1;
102 q = (d1 * 0xcd) >> 11;
104 *buf++ = d1 + '0'; /* next digit */
107 if ((d2 != 0) || (d3 != 0)) {
110 *buf++ = d2 + '0'; /* next digit */
114 q = (d3 * 0xcd) >> 11;
116 *buf++ = d3 + '0'; /* next digit */
118 *buf++ = q + '0'; /* most sign. digit */
125 static void ip4_addr_string(struct printf_info *info, u8 *addr)
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 */
133 for (i = 0; i < 4; i++) {
134 digits = put_dec_trunc(temp, addr[i]) - temp;
135 /* reverse the digits in the quad */
143 string(info, ip4_addr);
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
152 * Right now we handle:
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
161 static void __maybe_unused pointer(struct printf_info *info, const char *fmt,
165 unsigned long num = (uintptr_t)ptr;
176 num = *(phys_addr_t *)ptr;
181 #ifdef CONFIG_SPL_NET
183 return mac_address_string(info, ptr, false);
185 return mac_address_string(info, ptr, true);
188 return ip4_addr_string(info, ptr);
194 div = 1UL << (sizeof(long) * 8 - 4);
195 for (; div; div /= 0x10)
196 div_out(info, &num, div);
200 static int _vprintf(struct printf_info *info, const char *fmt, va_list va)
208 while ((ch = *(fmt++))) {
210 info->putc(info, ch);
225 if (ch >= '0' && ch <= '9') {
227 while (ch >= '0' && ch <= '9') {
228 width = (width * 10) + ch - '0';
249 num = va_arg(va, unsigned long);
250 if (sizeof(long) > 4)
253 num = va_arg(va, unsigned int);
257 if (islong && (long)num < 0) {
260 } else if (!islong && (int)num < 0) {
268 for (; div; div /= 10)
269 div_out(info, &num, div);
273 if (CONFIG_IS_ENABLED(NET) || _DEBUG) {
274 pointer(info, fmt, va_arg(va, void *));
276 * Skip this because it pulls in _ctype which is
277 * 256 bytes, and we don't generally implement
280 while (isalnum(fmt[0]))
288 num = va_arg(va, unsigned long);
289 div = 1UL << (sizeof(long) * 8 - 4);
291 num = va_arg(va, unsigned int);
297 for (; div; div /= 0x10)
298 div_out(info, &num, div);
302 out(info, (char)(va_arg(va, int)));
305 p = va_arg(va, char*);
315 while (*info->bf++ && width > 0)
318 info->putc(info, lz ? '0' : ' ');
321 info->putc(info, ch);
330 #if CONFIG_IS_ENABLED(PRINTF)
331 static void putc_normal(struct printf_info *info, char ch)
336 int vprintf(const char *fmt, va_list va)
338 struct printf_info info;
340 info.putc = putc_normal;
341 return _vprintf(&info, fmt, va);
344 int printf(const char *fmt, ...)
346 struct printf_info info;
351 info.putc = putc_normal;
353 ret = _vprintf(&info, fmt, va);
360 static void putc_outstr(struct printf_info *info, char ch)
362 *info->outstr++ = ch;
365 int sprintf(char *buf, const char *fmt, ...)
367 struct printf_info info;
373 info.putc = putc_outstr;
374 ret = _vprintf(&info, fmt, va);
381 #if CONFIG_IS_ENABLED(LOG)
382 /* Note that size is ignored */
383 int vsnprintf(char *buf, size_t size, const char *fmt, va_list va)
385 struct printf_info info;
389 info.putc = putc_outstr;
390 ret = _vprintf(&info, fmt, va);
397 /* Note that size is ignored */
398 int snprintf(char *buf, size_t size, const char *fmt, ...)
400 struct printf_info info;
406 info.putc = putc_outstr;
407 ret = _vprintf(&info, fmt, va);
414 void print_grouped_ull(unsigned long long int_val, int digits)
416 /* Don't try to print the upper 32-bits */
417 printf("%ld ", (ulong)int_val);