blob: 7b2e7bb152c53976c5b3c2f28276c56cfd2ffb53 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasse5a9d272017-06-15 21:37:51 -06002/*
3 * Copyright (c) 2012, The Chromium Authors
Simon Glasse5a9d272017-06-15 21:37:51 -06004 */
5
Simon Glasse5a9d272017-06-15 21:37:51 -06006#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -06007#include <command.h>
Heinrich Schuchardt256060e2018-01-10 18:06:08 +01008#include <efi_api.h>
Simon Glasse5a9d272017-06-15 21:37:51 -06009#include <display_options.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glassc614ddf2021-05-08 06:59:59 -060011#include <mapmem.h>
Pali Rohárbdfb6d72021-08-02 15:18:31 +020012#include <version_string.h>
Simon Glass3bfb0f72021-10-14 12:48:06 -060013#include <vsprintf.h>
Simon Glassfbb99dc2021-05-08 06:59:58 -060014#include <test/suites.h>
15#include <test/test.h>
16#include <test/ut.h>
Simon Glasse5a9d272017-06-15 21:37:51 -060017
Simon Glassc614ddf2021-05-08 06:59:59 -060018#define BUF_SIZE 0x100
19
Simon Glasse5a9d272017-06-15 21:37:51 -060020#define FAKE_BUILD_TAG "jenkins-u-boot-denx_uboot_dm-master-build-aarch64" \
21 "and a lot more text to come"
22
Simon Glassfbb99dc2021-05-08 06:59:58 -060023/* Declare a new print test */
24#define PRINT_TEST(_name, _flags) UNIT_TEST(_name, _flags, print_test)
25
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020026#if CONFIG_IS_ENABLED(LIB_UUID)
Simon Glassfbb99dc2021-05-08 06:59:58 -060027/* Test printing GUIDs */
28static int print_guid(struct unit_test_state *uts)
29{
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020030 unsigned char guid[16] = {
31 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16
32 };
33 char str[40];
Heinrich Schuchardt0c9e8bf2021-11-15 19:06:55 +010034 int ret;
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020035
36 sprintf(str, "%pUb", guid);
Simon Glassfbb99dc2021-05-08 06:59:58 -060037 ut_assertok(strcmp("01020304-0506-0708-090a-0b0c0d0e0f10", str));
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020038 sprintf(str, "%pUB", guid);
Simon Glassfbb99dc2021-05-08 06:59:58 -060039 ut_assertok(strcmp("01020304-0506-0708-090A-0B0C0D0E0F10", str));
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020040 sprintf(str, "%pUl", guid);
Simon Glassfbb99dc2021-05-08 06:59:58 -060041 ut_assertok(strcmp("04030201-0605-0807-090a-0b0c0d0e0f10", str));
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020042 sprintf(str, "%pUL", guid);
Simon Glassfbb99dc2021-05-08 06:59:58 -060043 ut_assertok(strcmp("04030201-0605-0807-090A-0B0C0D0E0F10", str));
Heinrich Schuchardt0c9e8bf2021-11-15 19:06:55 +010044 ret = snprintf(str, 4, "%pUL", guid);
45 ut_asserteq(0, str[3]);
46 ut_asserteq(36, ret);
Heinrich Schuchardt3bad2562019-04-29 08:08:43 +020047
Simon Glassfbb99dc2021-05-08 06:59:58 -060048 return 0;
49}
50PRINT_TEST(print_guid, 0);
51#endif
52
Heinrich Schuchardt7a9e6ee2018-08-31 21:31:24 +020053#if CONFIG_IS_ENABLED(EFI_LOADER) && !defined(API_BUILD)
Simon Glassfbb99dc2021-05-08 06:59:58 -060054/* Test efi_loader specific printing */
55static int print_efi_ut(struct unit_test_state *uts)
56{
Heinrich Schuchardt256060e2018-01-10 18:06:08 +010057 char str[10];
58 u8 buf[sizeof(struct efi_device_path_sd_mmc_path) +
59 sizeof(struct efi_device_path)];
60 u8 *pos = buf;
61 struct efi_device_path *dp_end;
62 struct efi_device_path_sd_mmc_path *dp_sd =
63 (struct efi_device_path_sd_mmc_path *)pos;
64
65 /* Create a device path for an SD card */
66 dp_sd->dp.type = DEVICE_PATH_TYPE_MESSAGING_DEVICE;
67 dp_sd->dp.sub_type = DEVICE_PATH_SUB_TYPE_MSG_SD;
68 dp_sd->dp.length = sizeof(struct efi_device_path_sd_mmc_path);
69 dp_sd->slot_number = 3;
70 pos += sizeof(struct efi_device_path_sd_mmc_path);
71 /* Append end node */
72 dp_end = (struct efi_device_path *)pos;
73 dp_end->type = DEVICE_PATH_TYPE_END;
74 dp_end->sub_type = DEVICE_PATH_SUB_TYPE_END;
75 dp_end->length = sizeof(struct efi_device_path);
76
77 snprintf(str, sizeof(str), "_%pD_", buf);
Simon Glassfbb99dc2021-05-08 06:59:58 -060078 ut_assertok(strcmp("_/SD(3)_", str));
Heinrich Schuchardt5f1ce1d2018-01-26 06:30:30 +010079
80 /* NULL device path */
81 snprintf(str, sizeof(str), "_%pD_", NULL);
Simon Glassfbb99dc2021-05-08 06:59:58 -060082 ut_assertok(strcmp("_<NULL>_", str));
Heinrich Schuchardt256060e2018-01-10 18:06:08 +010083
Simon Glassfbb99dc2021-05-08 06:59:58 -060084 return 0;
85}
86PRINT_TEST(print_efi_ut, 0);
87#endif
88
89static int print_printf(struct unit_test_state *uts)
Simon Glasse5a9d272017-06-15 21:37:51 -060090{
91 char big_str[400];
92 int big_str_len;
93 char str[10], *s;
94 int len;
95
Simon Glasse5a9d272017-06-15 21:37:51 -060096 snprintf(str, sizeof(str), "testing");
Simon Glassfbb99dc2021-05-08 06:59:58 -060097 ut_assertok(strcmp("testing", str));
Simon Glasse5a9d272017-06-15 21:37:51 -060098
99 snprintf(str, sizeof(str), "testing but too long");
Simon Glassfbb99dc2021-05-08 06:59:58 -0600100 ut_assertok(strcmp("testing b", str));
Simon Glasse5a9d272017-06-15 21:37:51 -0600101
102 snprintf(str, 1, "testing none");
Simon Glassfbb99dc2021-05-08 06:59:58 -0600103 ut_assertok(strcmp("", str));
Simon Glasse5a9d272017-06-15 21:37:51 -0600104
105 *str = 'x';
106 snprintf(str, 0, "testing none");
Simon Glassfbb99dc2021-05-08 06:59:58 -0600107 ut_asserteq('x', *str);
Simon Glasse5a9d272017-06-15 21:37:51 -0600108
Rob Clark085391b2017-09-13 18:46:54 -0400109 sprintf(big_str, "_%ls_", L"foo");
Simon Glassfbb99dc2021-05-08 06:59:58 -0600110 ut_assertok(strcmp("_foo_", big_str));
Rob Clark085391b2017-09-13 18:46:54 -0400111
Simon Glasse5a9d272017-06-15 21:37:51 -0600112 /* Test the banner function */
113 s = display_options_get_banner(true, str, sizeof(str));
Simon Glassfbb99dc2021-05-08 06:59:58 -0600114 ut_asserteq_ptr(str, s);
115 ut_assertok(strcmp("\n\nU-Boo\n\n", s));
Simon Glasse5a9d272017-06-15 21:37:51 -0600116
Heinrich Schuchardt6c74e942019-04-26 18:39:00 +0200117 /* Assert that we do not overwrite memory before the buffer */
118 str[0] = '`';
119 s = display_options_get_banner(true, str + 1, 1);
Simon Glassfbb99dc2021-05-08 06:59:58 -0600120 ut_asserteq_ptr(str + 1, s);
121 ut_assertok(strcmp("`", str));
Simon Glasse5a9d272017-06-15 21:37:51 -0600122
Heinrich Schuchardt6c74e942019-04-26 18:39:00 +0200123 str[0] = '~';
124 s = display_options_get_banner(true, str + 1, 2);
Simon Glassfbb99dc2021-05-08 06:59:58 -0600125 ut_asserteq_ptr(str + 1, s);
126 ut_assertok(strcmp("~\n", str));
Simon Glasse5a9d272017-06-15 21:37:51 -0600127
Heinrich Schuchardt6c74e942019-04-26 18:39:00 +0200128 /* The last two characters are set to \n\n for all buffer sizes > 2 */
Simon Glasse5a9d272017-06-15 21:37:51 -0600129 s = display_options_get_banner(false, str, sizeof(str));
Simon Glassfbb99dc2021-05-08 06:59:58 -0600130 ut_asserteq_ptr(str, s);
131 ut_assertok(strcmp("U-Boot \n\n", s));
Simon Glasse5a9d272017-06-15 21:37:51 -0600132
133 /* Give it enough space for some of the version */
134 big_str_len = strlen(version_string) - 5;
135 s = display_options_get_banner_priv(false, FAKE_BUILD_TAG, big_str,
136 big_str_len);
Simon Glassfbb99dc2021-05-08 06:59:58 -0600137 ut_asserteq_ptr(big_str, s);
138 ut_assertok(strncmp(version_string, s, big_str_len - 3));
139 ut_assertok(strcmp("\n\n", s + big_str_len - 3));
Simon Glasse5a9d272017-06-15 21:37:51 -0600140
141 /* Give it enough space for the version and some of the build tag */
142 big_str_len = strlen(version_string) + 9 + 20;
143 s = display_options_get_banner_priv(false, FAKE_BUILD_TAG, big_str,
144 big_str_len);
Simon Glassfbb99dc2021-05-08 06:59:58 -0600145 ut_asserteq_ptr(big_str, s);
Simon Glasse5a9d272017-06-15 21:37:51 -0600146 len = strlen(version_string);
Simon Glassfbb99dc2021-05-08 06:59:58 -0600147 ut_assertok(strncmp(version_string, s, len));
148 ut_assertok(strncmp(", Build: ", s + len, 9));
149 ut_assertok(strncmp(FAKE_BUILD_TAG, s + 9 + len, 12));
150 ut_assertok(strcmp("\n\n", s + big_str_len - 3));
Simon Glasse5a9d272017-06-15 21:37:51 -0600151
Simon Glasse5a9d272017-06-15 21:37:51 -0600152 return 0;
153}
Simon Glassfbb99dc2021-05-08 06:59:58 -0600154PRINT_TEST(print_printf, 0);
Simon Glasse5a9d272017-06-15 21:37:51 -0600155
Simon Glassc614ddf2021-05-08 06:59:59 -0600156static int print_display_buffer(struct unit_test_state *uts)
157{
158 u8 *buf;
159 int i;
160
161 buf = map_sysmem(0, BUF_SIZE);
162 memset(buf, '\0', BUF_SIZE);
163 for (i = 0; i < 0x11; i++)
164 buf[i] = i * 0x11;
165
166 /* bytes */
167 console_record_reset();
168 print_buffer(0, buf, 1, 0x12, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600169 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff ..\"3DUfw........");
170 ut_assert_nextline("00000010: 10 00 ..");
Simon Glassc614ddf2021-05-08 06:59:59 -0600171 ut_assert_console_end();
172
173 /* line length */
174 console_record_reset();
175 print_buffer(0, buf, 1, 0x12, 8);
Simon Glassc7b16d82021-05-08 07:00:00 -0600176 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 ..\"3DUfw");
177 ut_assert_nextline("00000008: 88 99 aa bb cc dd ee ff ........");
178 ut_assert_nextline("00000010: 10 00 ..");
Simon Glassc614ddf2021-05-08 06:59:59 -0600179 ut_assert_console_end();
180
181 /* long line */
182 console_record_reset();
183 buf[0x41] = 0x41;
184 print_buffer(0, buf, 1, 0x42, 0x40);
Simon Glassc7b16d82021-05-08 07:00:00 -0600185 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ..\"3DUfw........................................................");
186 ut_assert_nextline("00000040: 00 41 .A");
Simon Glassc614ddf2021-05-08 06:59:59 -0600187 ut_assert_console_end();
188
189 /* address */
190 console_record_reset();
191 print_buffer(0x12345678, buf, 1, 0x12, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600192 ut_assert_nextline("12345678: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff ..\"3DUfw........");
193 ut_assert_nextline("12345688: 10 00 ..");
Simon Glassc614ddf2021-05-08 06:59:59 -0600194 ut_assert_console_end();
195
196 /* 16-bit */
197 console_record_reset();
198 print_buffer(0, buf, 2, 9, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600199 ut_assert_nextline("00000000: 1100 3322 5544 7766 9988 bbaa ddcc ffee ..\"3DUfw........");
200 ut_assert_nextline("00000010: 0010 ..");
Simon Glassc614ddf2021-05-08 06:59:59 -0600201 ut_assert_console_end();
202
203 /* 32-bit */
204 console_record_reset();
205 print_buffer(0, buf, 4, 5, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600206 ut_assert_nextline("00000000: 33221100 77665544 bbaa9988 ffeeddcc ..\"3DUfw........");
207 ut_assert_nextline("00000010: 00000010 ....");
Simon Glassc614ddf2021-05-08 06:59:59 -0600208 ut_assert_console_end();
209
210 /* 64-bit */
211 console_record_reset();
212 print_buffer(0, buf, 8, 3, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600213 ut_assert_nextline("00000000: 7766554433221100 ffeeddccbbaa9988 ..\"3DUfw........");
214 ut_assert_nextline("00000010: 0000000000000010 ........");
Simon Glassc614ddf2021-05-08 06:59:59 -0600215 ut_assert_console_end();
216
217 /* ASCII */
218 console_record_reset();
219 buf[1] = 31;
220 buf[2] = 32;
221 buf[3] = 33;
222 for (i = 0; i < 4; i++)
223 buf[4 + i] = 126 + i;
224 buf[8] = 255;
225 print_buffer(0, buf, 1, 10, 0);
Simon Glassc7b16d82021-05-08 07:00:00 -0600226 ut_assert_nextline("00000000: 00 1f 20 21 7e 7f 80 81 ff 99 .. !~.....");
Simon Glassc614ddf2021-05-08 06:59:59 -0600227 ut_assert_console_end();
228
229 unmap_sysmem(buf);
230
231 return 0;
232}
233PRINT_TEST(print_display_buffer, UT_TESTF_CONSOLE_REC);
234
Simon Glass0cceb992021-05-08 07:00:05 -0600235static int print_hexdump_line(struct unit_test_state *uts)
236{
237 char *linebuf;
238 u8 *buf;
239 int i;
240
241 buf = map_sysmem(0, BUF_SIZE);
242 memset(buf, '\0', BUF_SIZE);
243 for (i = 0; i < 0x11; i++)
244 buf[i] = i * 0x11;
245
246 /* Check buffer size calculations */
247 linebuf = map_sysmem(0x400, BUF_SIZE);
248 memset(linebuf, '\xff', BUF_SIZE);
249 ut_asserteq(-ENOSPC, hexdump_line(0, buf, 1, 0x10, 0, linebuf, 75));
250 ut_asserteq(-1, linebuf[0]);
251 ut_asserteq(0x10, hexdump_line(0, buf, 1, 0x10, 0, linebuf, 76));
252 ut_asserteq(0, linebuf[75]);
253 ut_asserteq(-1, linebuf[76]);
254
255 unmap_sysmem(buf);
256
257 return 0;
258}
259PRINT_TEST(print_hexdump_line, UT_TESTF_CONSOLE_REC);
260
Simon Glass19edf132021-05-08 07:00:02 -0600261static int print_do_hex_dump(struct unit_test_state *uts)
262{
263 u8 *buf;
264 int i;
265
266 buf = map_sysmem(0, BUF_SIZE);
267 memset(buf, '\0', BUF_SIZE);
268 for (i = 0; i < 0x11; i++)
269 buf[i] = i * 0x11;
270
271 /* bytes */
272 console_record_reset();
273 print_hex_dump_bytes("", DUMP_PREFIX_ADDRESS, buf, 0x12);
274 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff ..\"3DUfw........");
275 ut_assert_nextline("00000010: 10 00 ..");
276 ut_assert_console_end();
277
Simon Glass5d6d2b82021-05-08 07:00:03 -0600278 /* line length */
279 console_record_reset();
280 print_hex_dump("", DUMP_PREFIX_ADDRESS, 8, 1, buf, 0x12, true);
281 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 ..\"3DUfw");
282 ut_assert_nextline("00000008: 88 99 aa bb cc dd ee ff ........");
283 ut_assert_nextline("00000010: 10 00 ..");
284 ut_assert_console_end();
285 unmap_sysmem(buf);
286
287 /* long line */
288 console_record_reset();
289 buf[0x41] = 0x41;
290 print_hex_dump("", DUMP_PREFIX_ADDRESS, 0x40, 1, buf, 0x42, true);
291 ut_assert_nextline("00000000: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ..\"3DUfw........................................................");
292 ut_assert_nextline("00000040: 00 41 .A");
293 ut_assert_console_end();
294
Simon Glass19edf132021-05-08 07:00:02 -0600295 /* 16-bit */
296 console_record_reset();
Simon Glass5d6d2b82021-05-08 07:00:03 -0600297 print_hex_dump("", DUMP_PREFIX_ADDRESS, 0, 2, buf, 0x12, true);
Simon Glass19edf132021-05-08 07:00:02 -0600298 ut_assert_nextline("00000000: 1100 3322 5544 7766 9988 bbaa ddcc ffee ..\"3DUfw........");
299 ut_assert_nextline("00000010: 0010 ..");
300 ut_assert_console_end();
301 unmap_sysmem(buf);
302
303 /* 32-bit */
304 console_record_reset();
Simon Glass5d6d2b82021-05-08 07:00:03 -0600305 print_hex_dump("", DUMP_PREFIX_ADDRESS, 0, 4, buf, 0x14, true);
Simon Glass19edf132021-05-08 07:00:02 -0600306 ut_assert_nextline("00000000: 33221100 77665544 bbaa9988 ffeeddcc ..\"3DUfw........");
307 ut_assert_nextline("00000010: 00000010 ....");
308 ut_assert_console_end();
309 unmap_sysmem(buf);
310
311 /* 64-bit */
312 console_record_reset();
313 print_hex_dump("", DUMP_PREFIX_ADDRESS, 16, 8, buf, 0x18, true);
314 ut_assert_nextline("00000000: 7766554433221100 ffeeddccbbaa9988 ..\"3DUfw........");
315 ut_assert_nextline("00000010: 0000000000000010 ........");
316 ut_assert_console_end();
317 unmap_sysmem(buf);
318
319 /* ASCII */
320 console_record_reset();
321 buf[1] = 31;
322 buf[2] = 32;
323 buf[3] = 33;
324 for (i = 0; i < 4; i++)
325 buf[4 + i] = 126 + i;
326 buf[8] = 255;
Simon Glass5d6d2b82021-05-08 07:00:03 -0600327 print_hex_dump("", DUMP_PREFIX_ADDRESS, 0, 1, buf, 10, true);
Simon Glass19edf132021-05-08 07:00:02 -0600328 ut_assert_nextline("00000000: 00 1f 20 21 7e 7f 80 81 ff 99 .. !~.....");
329 ut_assert_console_end();
330 unmap_sysmem(buf);
331
332 return 0;
333}
334PRINT_TEST(print_do_hex_dump, UT_TESTF_CONSOLE_REC);
335
Simon Glass3bfb0f72021-10-14 12:48:06 -0600336static int print_itoa(struct unit_test_state *uts)
337{
338 ut_asserteq_str("123", simple_itoa(123));
339 ut_asserteq_str("0", simple_itoa(0));
340 ut_asserteq_str("2147483647", simple_itoa(0x7fffffff));
341 ut_asserteq_str("4294967295", simple_itoa(0xffffffff));
Simon Glass4a255ea2021-10-14 12:48:07 -0600342
343 /* Use #ifdef here to avoid a compiler warning on 32-bit machines */
344#ifdef CONFIG_PHYS_64BIT
Simon Glass3bfb0f72021-10-14 12:48:06 -0600345 if (sizeof(ulong) == 8) {
346 ut_asserteq_str("9223372036854775807",
347 simple_itoa((1UL << 63) - 1));
348 ut_asserteq_str("18446744073709551615", simple_itoa(-1));
349 }
Simon Glass4a255ea2021-10-14 12:48:07 -0600350#endif /* CONFIG_PHYS_64BIT */
Simon Glass3bfb0f72021-10-14 12:48:06 -0600351
352 return 0;
353}
354PRINT_TEST(print_itoa, 0);
355
Heinrich Schuchardt0c9e8bf2021-11-15 19:06:55 +0100356static int snprint(struct unit_test_state *uts)
357{
358 char buf[10] = "xxxxxxxxx";
359 int ret;
360
361 ret = snprintf(buf, 4, "%s:%s", "abc", "def");
362 ut_asserteq(0, buf[3]);
363 ut_asserteq(7, ret);
364 ret = snprintf(buf, 4, "%s:%d", "abc", 9999);
365 ut_asserteq(8, ret);
366 return 0;
367}
368PRINT_TEST(snprint, 0);
369
Simon Glass4a255ea2021-10-14 12:48:07 -0600370static int print_xtoa(struct unit_test_state *uts)
371{
372 ut_asserteq_str("7f", simple_xtoa(127));
373 ut_asserteq_str("00", simple_xtoa(0));
374 ut_asserteq_str("7fffffff", simple_xtoa(0x7fffffff));
375 ut_asserteq_str("ffffffff", simple_xtoa(0xffffffff));
376
377 /* Use #ifdef here to avoid a compiler warning on 32-bit machines */
378#ifdef CONFIG_PHYS_64BIT
379 if (sizeof(ulong) == 8) {
380 ut_asserteq_str("7fffffffffffffff",
381 simple_xtoa((1UL << 63) - 1));
382 ut_asserteq_str("ffffffffffffffff", simple_xtoa(-1));
383 }
384#endif /* CONFIG_PHYS_64BIT */
385
386 return 0;
387}
388PRINT_TEST(print_xtoa, 0);
389
Simon Glassfbb99dc2021-05-08 06:59:58 -0600390int do_ut_print(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
391{
392 struct unit_test *tests = UNIT_TEST_SUITE_START(print_test);
393 const int n_ents = UNIT_TEST_SUITE_COUNT(print_test);
394
395 return cmd_ut_category("print", "print_", tests, n_ents, argc, argv);
396}