0c94eab96031b79eef59b3bbf60ab798504a1f87
[dragonfly.git] / sys / platform / pc64 / include / smp.h
1 /*
2  * ----------------------------------------------------------------------------
3  * "THE BEER-WARE LICENSE" (Revision 42):
4  * <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
5  * can do whatever you want with this stuff. If we meet some day, and you think
6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7  * ----------------------------------------------------------------------------
8  *
9  * $FreeBSD: src/sys/i386/include/smp.h,v 1.50.2.5 2001/02/13 22:32:45 tegge Exp $
10  * $DragonFly: src/sys/platform/pc32/include/smp.h,v 1.20 2006/11/07 06:43:24 dillon Exp $
11  *
12  */
13
14 #ifndef _MACHINE_SMP_H_
15 #define _MACHINE_SMP_H_
16
17 #ifdef _KERNEL
18
19 #ifndef LOCORE
20
21 /* XXX wrong header */
22 void    initializecpu(void);
23
24 #endif  /* LOCORE */
25
26 /*
27  * Size of APIC ID list.
28  * Also used a MAX size of various other arrays.
29  */
30 #define NAPICID         256
31
32 #if defined(SMP)
33
34 #ifndef LOCORE
35
36 /*
37  * For sending values to POST displays.
38  * XXX FIXME: where does this really belong, isa.h/isa.c perhaps?
39  */
40 extern int current_postcode;  /** XXX currently in mp_machdep.c */
41 #define POSTCODE(X)     current_postcode = (X), \
42                         outb(0x80, current_postcode)
43 #define POSTCODE_LO(X)  current_postcode &= 0xf0, \
44                         current_postcode |= ((X) & 0x0f), \
45                         outb(0x80, current_postcode)
46 #define POSTCODE_HI(X)  current_postcode &= 0x0f, \
47                         current_postcode |= (((X) << 4) & 0xf0), \
48                         outb(0x80, current_postcode)
49
50
51 #include <machine_base/apic/apicreg.h>
52 #include <machine/pcb.h>
53
54 /* global symbols in mpboot.S */
55 extern char                     mptramp_start[];
56 extern char                     mptramp_end[];
57 extern u_int32_t                mptramp_pagetables;
58
59 /* functions in mpboot.s */
60 void    bootMP                  (void);
61
62 /* global data in apic_vector.s */
63 extern volatile cpumask_t       stopped_cpus;
64 extern volatile cpumask_t       started_cpus;
65
66 extern volatile u_int           checkstate_probed_cpus;
67 extern void (*cpustop_restartfunc) (void);
68
69 /* global data in mp_machdep.c */
70 extern int                      imcr_present;
71 extern int                      apic_io_enable;
72 extern int                      mp_naps;
73 extern u_int32_t                cpu_apic_versions[];
74 extern int                      cpu_num_to_apic_id[];
75 extern int                      apic_id_to_logical[];
76
77 #define APIC_INTMAPSIZE 192
78 /*
79  * NOTE:
80  * - Keep size of apic_intmapinfo power of 2
81  * - Update IOAPIC_IM_SZSHIFT after changing apic_intmapinfo size
82  */
83 struct apic_intmapinfo {
84         int ioapic;
85         int int_pin;
86         volatile void *apic_address;
87         int redirindex;
88         uint32_t flags;         /* IOAPIC_IM_FLAG_ */
89         uint32_t pad[2];
90 };
91 #define IOAPIC_IM_SZSHIFT       5
92
93 #define IOAPIC_IM_FLAG_LEVEL    0x1     /* default to edge trigger */
94 #define IOAPIC_IM_FLAG_MASKED   0x2
95
96 extern struct apic_intmapinfo   int_to_apicintpin[];
97 extern struct pcb               stoppcbs[];
98
99 /* functions in mp_machdep.c */
100 void    *ioapic_map(vm_paddr_t);
101 u_int   mp_bootaddress          (u_int);
102 void    mp_start                (void);
103 void    mp_announce             (void);
104 void    mp_set_cpuids           (int, int);
105 void    init_secondary          (void);
106 int     stop_cpus               (cpumask_t);
107 void    ap_init                 (void);
108 int     restart_cpus            (cpumask_t);
109 void    forward_signal          (struct proc *);
110 int     mptable_pci_int_route(int, int, int, int);
111 void    mptable_pci_int_dump(void);
112
113 #if defined(READY)
114 void    clr_io_apic_mask24      (int, u_int32_t);
115 void    set_io_apic_mask24      (int, u_int32_t);
116 #endif /* READY */
117
118 void    cpu_send_ipiq           (int);
119 int     cpu_send_ipiq_passive   (int);
120
121 /* global data in init_smp.c */
122 extern cpumask_t                smp_active_mask;
123
124 #endif /* !LOCORE */
125 #else   /* !SMP */
126
127 #define smp_active_mask 1       /* smp_active_mask always 1 on UP machines */
128
129 #endif
130
131 #endif /* _KERNEL */
132 #endif /* _MACHINE_SMP_H_ */