summaryrefslogtreecommitdiff
path: root/kern/xcall.h
blob: df364870a11a580667dba267fb31bd9c63ea7315 (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
/*
 * Copyright (c) 2014 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/>.
 *
 *
 * Cross-processor function calls.
 *
 * This module provides the ability to run functions, called cross-calls,
 * on specific processors.
 */

#ifndef _KERN_XCALL_H
#define _KERN_XCALL_H

/*
 * Type for cross-call functions.
 */
typedef void (*xcall_fn_t)(void *arg);

/*
 * Run the given cross-call function on a specific processor.
 *
 * The operation is completely synchronous, returning only when the function
 * has finished running on the target processor, with the side effects of
 * the function visible.
 *
 * The function is run in interrupt context. Interrupts must be enabled
 * when calling this function.
 */
void xcall_call(xcall_fn_t fn, void *arg, unsigned int cpu);

/*
 * Report a cross-call interrupt from a remote processor.
 *
 * Called from interrupt context.
 */
void xcall_intr(void);

#endif /* _KERN_XCALL_H */