123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- // SPDX-License-Identifier: GPL-2.0-only
- #include <linux/sched.h>
- #include <linux/wait.h>
- #define SYS_TPIDR2 "S3_3_C13_C0_5"
- #define EXPECTED_TESTS 5
- static void putstr(const char *str)
- {
- write(1, str, strlen(str));
- }
- static void putnum(unsigned int num)
- {
- char c;
- if (num / 10)
- putnum(num / 10);
- c = '0' + (num % 10);
- write(1, &c, 1);
- }
- static int tests_run;
- static int tests_passed;
- static int tests_failed;
- static int tests_skipped;
- static void set_tpidr2(uint64_t val)
- {
- asm volatile (
- "msr " SYS_TPIDR2 ", %0\n"
- :
- : "r"(val)
- : "cc");
- }
- static uint64_t get_tpidr2(void)
- {
- uint64_t val;
- asm volatile (
- "mrs %0, " SYS_TPIDR2 "\n"
- : "=r"(val)
- :
- : "cc");
- return val;
- }
- static void print_summary(void)
- {
- if (tests_passed + tests_failed + tests_skipped != EXPECTED_TESTS)
- putstr("# UNEXPECTED TEST COUNT: ");
- putstr("# Totals: pass:");
- putnum(tests_passed);
- putstr(" fail:");
- putnum(tests_failed);
- putstr(" xfail:0 xpass:0 skip:");
- putnum(tests_skipped);
- putstr(" error:0\n");
- }
- /* Processes should start with TPIDR2 == 0 */
- static int default_value(void)
- {
- return get_tpidr2() == 0;
- }
- /* If we set TPIDR2 we should read that value */
- static int write_read(void)
- {
- set_tpidr2(getpid());
- return getpid() == get_tpidr2();
- }
- /* If we set a value we should read the same value after scheduling out */
- static int write_sleep_read(void)
- {
- set_tpidr2(getpid());
- msleep(100);
- return getpid() == get_tpidr2();
- }
- /*
- * If we fork the value in the parent should be unchanged and the
- * child should start with the same value and be able to set its own
- * value.
- */
- static int write_fork_read(void)
- {
- pid_t newpid, waiting, oldpid;
- int status;
- set_tpidr2(getpid());
- oldpid = getpid();
- newpid = fork();
- if (newpid == 0) {
- /* In child */
- if (get_tpidr2() != oldpid) {
- putstr("# TPIDR2 changed in child: ");
- putnum(get_tpidr2());
- putstr("\n");
- exit(0);
- }
- set_tpidr2(getpid());
- if (get_tpidr2() == getpid()) {
- exit(1);
- } else {
- putstr("# Failed to set TPIDR2 in child\n");
- exit(0);
- }
- }
- if (newpid < 0) {
- putstr("# fork() failed: -");
- putnum(-newpid);
- putstr("\n");
- return 0;
- }
- for (;;) {
- waiting = waitpid(newpid, &status, 0);
- if (waiting < 0) {
- if (errno == EINTR)
- continue;
- putstr("# waitpid() failed: ");
- putnum(errno);
- putstr("\n");
- return 0;
- }
- if (waiting != newpid) {
- putstr("# waitpid() returned wrong PID\n");
- return 0;
- }
- if (!WIFEXITED(status)) {
- putstr("# child did not exit\n");
- return 0;
- }
- if (getpid() != get_tpidr2()) {
- putstr("# TPIDR2 corrupted in parent\n");
- return 0;
- }
- return WEXITSTATUS(status);
- }
- }
- /*
- * sys_clone() has a lot of per architecture variation so just define
- * it here rather than adding it to nolibc, plus the raw API is a
- * little more convenient for this test.
- */
- static int sys_clone(unsigned long clone_flags, unsigned long newsp,
- int *parent_tidptr, unsigned long tls,
- int *child_tidptr)
- {
- return my_syscall5(__NR_clone, clone_flags, newsp, parent_tidptr, tls,
- child_tidptr);
- }
- /*
- * If we clone with CLONE_SETTLS then the value in the parent should
- * be unchanged and the child should start with zero and be able to
- * set its own value.
- */
- static int write_clone_read(void)
- {
- int parent_tid, child_tid;
- pid_t parent, waiting;
- int ret, status;
- parent = getpid();
- set_tpidr2(parent);
- ret = sys_clone(CLONE_SETTLS, 0, &parent_tid, 0, &child_tid);
- if (ret == -1) {
- putstr("# clone() failed\n");
- putnum(errno);
- putstr("\n");
- return 0;
- }
- if (ret == 0) {
- /* In child */
- if (get_tpidr2() != 0) {
- putstr("# TPIDR2 non-zero in child: ");
- putnum(get_tpidr2());
- putstr("\n");
- exit(0);
- }
- if (gettid() == 0)
- putstr("# Child TID==0\n");
- set_tpidr2(gettid());
- if (get_tpidr2() == gettid()) {
- exit(1);
- } else {
- putstr("# Failed to set TPIDR2 in child\n");
- exit(0);
- }
- }
- for (;;) {
- waiting = wait4(ret, &status, __WCLONE, NULL);
- if (waiting < 0) {
- if (errno == EINTR)
- continue;
- putstr("# wait4() failed: ");
- putnum(errno);
- putstr("\n");
- return 0;
- }
- if (waiting != ret) {
- putstr("# wait4() returned wrong PID ");
- putnum(waiting);
- putstr("\n");
- return 0;
- }
- if (!WIFEXITED(status)) {
- putstr("# child did not exit\n");
- return 0;
- }
- if (parent != get_tpidr2()) {
- putstr("# TPIDR2 corrupted in parent\n");
- return 0;
- }
- return WEXITSTATUS(status);
- }
- }
- #define run_test(name) \
- if (name()) { \
- tests_passed++; \
- } else { \
- tests_failed++; \
- putstr("not "); \
- } \
- putstr("ok "); \
- putnum(++tests_run); \
- putstr(" " #name "\n");
- int main(int argc, char **argv)
- {
- int ret, i;
- putstr("TAP version 13\n");
- putstr("1..");
- putnum(EXPECTED_TESTS);
- putstr("\n");
- putstr("# PID: ");
- putnum(getpid());
- putstr("\n");
- /*
- * This test is run with nolibc which doesn't support hwcap and
- * it's probably disproportionate to implement so instead check
- * for the default vector length configuration in /proc.
- */
- ret = open("/proc/sys/abi/sme_default_vector_length", O_RDONLY, 0);
- if (ret >= 0) {
- run_test(default_value);
- run_test(write_read);
- run_test(write_sleep_read);
- run_test(write_fork_read);
- run_test(write_clone_read);
- } else {
- putstr("# SME support not present\n");
- for (i = 0; i < EXPECTED_TESTS; i++) {
- putstr("ok ");
- putnum(i);
- putstr(" skipped, TPIDR2 not supported\n");
- }
- tests_skipped += EXPECTED_TESTS;
- }
- print_summary();
- return 0;
- }
|