summaryrefslogtreecommitdiff
path: root/test/test_xcall.c
blob: 60f085cd6bc90a95a84f6a83cdcfe218a095799e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
 * Copyright (c) 2014-2018 Richard Braun.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *
 * This test creates a thread that tests cross-calls for all combinations
 * of processors. This thread sequentially creates other threads that are
 * bound to a single processor, and perform cross-calls to all processors,
 * including the local one.
 */

#include <assert.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>

#include <kern/cpumap.h>
#include <kern/error.h>
#include <kern/init.h>
#include <kern/log.h>
#include <kern/panic.h>
#include <kern/thread.h>
#include <kern/xcall.h>
#include <test/test.h>

struct test_data {
    unsigned int cpu;
    bool done;
};

static void
test_fn(void *arg)
{
    struct test_data *data;

    assert(thread_interrupted());

    data = arg;

    if (data->cpu != cpu_id()) {
        panic("test: invalid cpu");
    }

    log_info("function called, running on cpu%u\n", cpu_id());
    data->done = true;
}

static void
test_once(unsigned int cpu)
{
    struct test_data data;

    data.cpu = cpu;
    data.done = false;

    log_info("cross-call: cpu%u -> cpu%u:\n", cpu_id(), cpu);
    xcall_call(test_fn, &data, cpu);

    if (!data.done) {
        panic("test: xcall failed");
    }
}

static void
test_run_cpu(void *arg)
{
    (void)arg;

    for (unsigned int i = (cpu_count() - 1); i < cpu_count(); i--) {
        test_once(i);
    }
}

static void
test_run(void *arg)
{
    char name[THREAD_NAME_SIZE];
    struct thread_attr attr;
    struct thread *thread;
    struct cpumap *cpumap;
    unsigned int cpu;
    int error;

    (void)arg;

    error = cpumap_create(&cpumap);
    error_check(error, "cpumap_create");

    for (unsigned int i = 0; i < cpu_count(); i++) {
        /*
         * Send IPIs from CPU 1 first, in order to better trigger any
         * initialization race that may prevent correct IPI transmission.
         * This assumes CPUs are initialized sequentially, and that CPU 1
         * may have finished initialization much earlier than the last CPU.
         * CPU 0 isn't used since it's the one normally initializing remote
         * CPUs.
         */
        cpu = (1 + i) % cpu_count();

        cpumap_zero(cpumap);
        cpumap_set(cpumap, cpu);
        snprintf(name, sizeof(name), THREAD_KERNEL_PREFIX "test_run/%u", cpu);
        thread_attr_init(&attr, name);
        thread_attr_set_cpumap(&attr, cpumap);
        error = thread_create(&thread, &attr, test_run_cpu, NULL);
        error_check(error, "thread_create");
        thread_join(thread);
    }

    cpumap_destroy(cpumap);

    log_info("done\n");
}

void __init
test_setup(void)
{
    struct thread_attr attr;
    struct thread *thread;
    int error;

    thread_attr_init(&attr, THREAD_KERNEL_PREFIX "test_run");
    thread_attr_set_detached(&attr);
    error = thread_create(&thread, &attr, test_run, NULL);
    error_check(error, "thread_create");
}