1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2014 Sony Mobile Communications Inc.
5 * Selftest for runtime system size
7 * Prints the amount of RAM that the currently running system is using.
9 * This program tries to be as small as possible itself, to
10 * avoid perturbing the system memory utilization with its
11 * own execution. It also attempts to have as few dependencies
12 * on kernel features as possible.
14 * It should be statically linked, with startup libs avoided. It uses
15 * no library calls except the syscall() function for the following 3
17 * sysinfo(), write(), and _exit()
19 * For output, it avoids printf (which in some C libraries
20 * has large external dependencies) by implementing it's own
21 * number output and print routines, and using __builtin_strlen()
23 * The test may crash if any of the above syscalls fails because in some
24 * libc implementations (e.g. the GNU C Library) errno is saved in
25 * thread-local storage, which does not get initialized due to avoiding
29 #include <sys/sysinfo.h>
31 #include <sys/syscall.h>
33 #define STDOUT_FILENO 1
35 static int print(const char *s
)
39 while (s
[len
] != '\0')
42 return syscall(SYS_write
, STDOUT_FILENO
, s
, len
);
45 static inline char *num_to_str(unsigned long num
, char *buf
, int len
)
49 /* put digits in buffer from back to front */
54 *(--buf
) = digit
+ '0';
61 static int print_num(unsigned long num
)
65 return print(num_to_str(num
, num_buf
, sizeof(num_buf
)));
68 static int print_k_value(const char *s
, unsigned long num
, unsigned long units
)
70 unsigned long long temp
;
76 temp
= (temp
* units
)/1024;
78 ccode
= print_num(num
);
83 /* this program has no main(), as startup libraries are not used */
89 static const char *test_name
= " get runtime memory use\n";
91 print("TAP version 13\n");
92 print("# Testing system size.\n");
94 ccode
= syscall(SYS_sysinfo
, &info
);
98 print(" ---\n reason: \"could not get sysinfo\"\n ...\n");
99 syscall(SYS_exit
, ccode
);
104 /* ignore cache complexities for now */
105 used
= info
.totalram
- info
.freeram
- info
.bufferram
;
106 print("# System runtime memory report (units in Kilobytes):\n");
108 print_k_value(" Total: ", info
.totalram
, info
.mem_unit
);
109 print_k_value(" Free: ", info
.freeram
, info
.mem_unit
);
110 print_k_value(" Buffer: ", info
.bufferram
, info
.mem_unit
);
111 print_k_value(" In use: ", used
, info
.mem_unit
);
115 syscall(SYS_exit
, 0);