summaryrefslogtreecommitdiff
path: root/i386/i386/percpu.h
blob: 637d2ca6b4261cb87af8347a1062d92bcfbf971b (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
/*
 * Copyright (c) 2023 Free Software Foundation, Inc.
 *
 * 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 2 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/>.
 */

#ifndef _PERCPU_H_
#define _PERCPU_H_

struct percpu;

#if NCPUS > 1

#define percpu_assign(stm, val)     \
    asm("mov %[src], %%gs:%c[offs]" \
         : /* No outputs */         \
         : [src] "r" (val), [offs] "e" (__builtin_offsetof(struct percpu, stm)) \
         : );

#define percpu_get(typ, stm)        \
MACRO_BEGIN                         \
    typ val_;                       \
                                    \
    asm("mov %%gs:%c[offs], %[dst]" \
         : [dst] "=r" (val_)        \
         : [offs] "e" (__builtin_offsetof(struct percpu, stm)) \
         : );                       \
                                    \
    val_;                           \
MACRO_END

#define percpu_ptr(typ, stm)        \
MACRO_BEGIN                         \
    typ *ptr_ = (typ *)__builtin_offsetof(struct percpu, stm); \
                                    \
    asm("add %%gs:0, %[pointer]"    \
         : [pointer] "+r" (ptr_)    \
         : /* No inputs */          \
         : );                       \
                                    \
    ptr_;                           \
MACRO_END

#else

#define percpu_assign(stm, val)     \
MACRO_BEGIN                         \
        percpu_array[0].stm = val;  \
MACRO_END
#define percpu_get(typ, stm)        \
        (percpu_array[0].stm)
#define percpu_ptr(typ, stm)        \
        (&percpu_array[0].stm)

#endif

#include <kern/processor.h>
#include <mach/mach_types.h>

struct percpu {
    struct percpu	*self;
    int			apic_id;
    int			cpu_id;
    struct processor	processor;
    thread_t		active_thread;
    vm_offset_t		active_stack;
/*
    struct machine_slot	machine_slot;
    struct mp_desc_table mp_desc_table;
    vm_offset_t		int_stack_top;
    vm_offset_t		int_stack_base;
    ast_t		need_ast;
    ipc_kmsg_t		ipc_kmsg_cache;
    pmap_update_list	cpu_update_list;
    spl_t		saved_ipl;
    spl_t		curr_ipl;
    timer_data_t	kernel_timer;
    timer_t		current_timer;
    unsigned long	in_interrupt;
*/
};

extern struct percpu percpu_array[NCPUS];

void init_percpu(int cpu);

#endif /* _PERCPU_H_ */