Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 2 | * Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 5 | */ |
Soby Mathew | 0691d97 | 2016-05-05 12:34:41 +0100 | [diff] [blame] | 6 | #include <assert.h> |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 7 | #include <debug.h> |
| 8 | #include <stdarg.h> |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 9 | #include <stdbool.h> |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 10 | #include <stdint.h> |
| 11 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 12 | #define get_num_va_args(_args, _lcount) \ |
| 13 | (((_lcount) > 1) ? va_arg(_args, long long int) : \ |
| 14 | (((_lcount) == 1) ? va_arg(_args, long int) : \ |
| 15 | va_arg(_args, int))) |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 16 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 17 | #define get_unum_va_args(_args, _lcount) \ |
| 18 | (((_lcount) > 1) ? va_arg(_args, unsigned long long int) : \ |
| 19 | (((_lcount) == 1) ? va_arg(_args, unsigned long int) : \ |
| 20 | va_arg(_args, unsigned int))) |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 21 | |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 22 | static int string_print(const char *str) |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 23 | { |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 24 | int count = 0; |
| 25 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 26 | assert(str != NULL); |
Soby Mathew | f583a06 | 2017-09-04 11:45:52 +0100 | [diff] [blame] | 27 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 28 | for ( ; *str != '\0'; str++) { |
| 29 | (void)putchar(*str); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 30 | count++; |
| 31 | } |
| 32 | |
| 33 | return count; |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 34 | } |
| 35 | |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 36 | static int unsigned_num_print(unsigned long long int unum, unsigned int radix, |
| 37 | char padc, int padn) |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 38 | { |
| 39 | /* Just need enough space to store 64 bit decimal integer */ |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 40 | char num_buf[20]; |
| 41 | int i = 0, count = 0; |
| 42 | unsigned int rem; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 43 | |
| 44 | do { |
| 45 | rem = unum % radix; |
| 46 | if (rem < 0xa) |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 47 | num_buf[i] = '0' + rem; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 48 | else |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 49 | num_buf[i] = 'a' + (rem - 0xa); |
| 50 | i++; |
| 51 | unum /= radix; |
| 52 | } while (unum > 0U); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 53 | |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 54 | if (padn > 0) { |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 55 | while (i < padn) { |
| 56 | (void)putchar(padc); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 57 | count++; |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 58 | padn--; |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 59 | } |
| 60 | } |
| 61 | |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 62 | while (--i >= 0) { |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 63 | (void)putchar(num_buf[i]); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 64 | count++; |
| 65 | } |
| 66 | |
| 67 | return count; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 68 | } |
| 69 | |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 70 | /******************************************************************* |
| 71 | * Reduced format print for Trusted firmware. |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 72 | * The following type specifiers are supported by this print |
| 73 | * %x - hexadecimal format |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 74 | * %s - string format |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 75 | * %d or %i - signed decimal format |
| 76 | * %u - unsigned decimal format |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 77 | * %p - pointer format |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 78 | * |
| 79 | * The following length specifiers are supported by this print |
| 80 | * %l - long int (64-bit on AArch64) |
| 81 | * %ll - long long int (64-bit on AArch64) |
| 82 | * %z - size_t sized integer formats (64 bit on AArch64) |
| 83 | * |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 84 | * The following padding specifiers are supported by this print |
| 85 | * %0NN - Left-pad the number with 0s (NN is a decimal number) |
| 86 | * |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 87 | * The print exits on all other formats specifiers other than valid |
| 88 | * combinations of the above specifiers. |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 89 | *******************************************************************/ |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 90 | int vprintf(const char *fmt, va_list args) |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 91 | { |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 92 | int l_count; |
| 93 | long long int num; |
| 94 | unsigned long long int unum; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 95 | char *str; |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 96 | char padc = '\0'; /* Padding character */ |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 97 | int padn; /* Number of characters to pad */ |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 98 | int count = 0; /* Number of printed characters */ |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 99 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 100 | while (*fmt != '\0') { |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 101 | l_count = 0; |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 102 | padn = 0; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 103 | |
| 104 | if (*fmt == '%') { |
| 105 | fmt++; |
| 106 | /* Check the format specifier */ |
| 107 | loop: |
| 108 | switch (*fmt) { |
| 109 | case 'i': /* Fall through to next one */ |
| 110 | case 'd': |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 111 | num = get_num_va_args(args, l_count); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 112 | if (num < 0) { |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 113 | (void)putchar('-'); |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 114 | unum = (unsigned long long int)-num; |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 115 | padn--; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 116 | } else |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 117 | unum = (unsigned long long int)num; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 118 | |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 119 | count += unsigned_num_print(unum, 10, |
| 120 | padc, padn); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 121 | break; |
| 122 | case 's': |
| 123 | str = va_arg(args, char *); |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 124 | count += string_print(str); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 125 | break; |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 126 | case 'p': |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 127 | unum = (uintptr_t)va_arg(args, void *); |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 128 | if (unum > 0U) { |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 129 | count += string_print("0x"); |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 130 | padn -= 2; |
| 131 | } |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 132 | |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 133 | count += unsigned_num_print(unum, 16, |
| 134 | padc, padn); |
Antonio Nino Diaz | b3a0a7b | 2016-02-02 12:03:38 +0000 | [diff] [blame] | 135 | break; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 136 | case 'x': |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 137 | unum = get_unum_va_args(args, l_count); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 138 | count += unsigned_num_print(unum, 16, |
| 139 | padc, padn); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 140 | break; |
Scott Branden | 57bd75c | 2016-03-23 13:37:33 -0700 | [diff] [blame] | 141 | case 'z': |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 142 | if (sizeof(size_t) == 8U) |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 143 | l_count = 2; |
| 144 | |
Scott Branden | 57bd75c | 2016-03-23 13:37:33 -0700 | [diff] [blame] | 145 | fmt++; |
| 146 | goto loop; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 147 | case 'l': |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 148 | l_count++; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 149 | fmt++; |
| 150 | goto loop; |
| 151 | case 'u': |
Soby Mathew | f62d546 | 2016-03-22 17:38:00 +0000 | [diff] [blame] | 152 | unum = get_unum_va_args(args, l_count); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 153 | count += unsigned_num_print(unum, 10, |
| 154 | padc, padn); |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 155 | break; |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 156 | case '0': |
| 157 | padc = '0'; |
| 158 | padn = 0; |
| 159 | fmt++; |
| 160 | |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 161 | for (;;) { |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 162 | char ch = *fmt; |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 163 | if ((ch < '0') || (ch > '9')) { |
Antonio Nino Diaz | 18c7353 | 2017-12-15 10:36:20 +0000 | [diff] [blame] | 164 | goto loop; |
| 165 | } |
| 166 | padn = (padn * 10) + (ch - '0'); |
| 167 | fmt++; |
| 168 | } |
Daniel Boulby | 8942a1b | 2018-06-22 14:16:03 +0100 | [diff] [blame] | 169 | assert(0); /* Unreachable */ |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 170 | default: |
| 171 | /* Exit on any other format specifier */ |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 172 | return -1; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 173 | } |
| 174 | fmt++; |
| 175 | continue; |
| 176 | } |
Antonio Nino Diaz | 2e74f9b | 2018-08-23 15:11:46 +0100 | [diff] [blame] | 177 | (void)putchar(*fmt); |
| 178 | fmt++; |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 179 | count++; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 180 | } |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 181 | |
| 182 | return count; |
Soby Mathew | f583a06 | 2017-09-04 11:45:52 +0100 | [diff] [blame] | 183 | } |
| 184 | |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 185 | int printf(const char *fmt, ...) |
Soby Mathew | f583a06 | 2017-09-04 11:45:52 +0100 | [diff] [blame] | 186 | { |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 187 | int count; |
Soby Mathew | f583a06 | 2017-09-04 11:45:52 +0100 | [diff] [blame] | 188 | va_list va; |
| 189 | |
| 190 | va_start(va, fmt); |
Antonio Nino Diaz | c0c8eb6 | 2018-08-15 17:02:28 +0100 | [diff] [blame] | 191 | count = vprintf(fmt, va); |
Soby Mathew | f583a06 | 2017-09-04 11:45:52 +0100 | [diff] [blame] | 192 | va_end(va); |
Antonio Nino Diaz | f440708 | 2018-08-15 16:52:32 +0100 | [diff] [blame] | 193 | |
| 194 | return count; |
Soby Mathew | afe7e2f | 2014-06-12 17:23:58 +0100 | [diff] [blame] | 195 | } |