1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) Peter Wemm <peter@netplex.com.au> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #ifdef __i386__ 32 #include <i386/pcpu.h> 33 #else /* !__i386__ */ 34 35 #ifndef _MACHINE_PCPU_H_ 36 #define _MACHINE_PCPU_H_ 37 38 #include <machine/segments.h> 39 #include <machine/tss.h> 40 41 #define PC_PTI_STACK_SZ 16 42 43 struct monitorbuf { 44 int idle_state; /* Used by cpu_idle_mwait. */ 45 int stop_state; /* Used by cpustop_handler. */ 46 char padding[128 - (2 * sizeof(int))]; 47 }; 48 _Static_assert(sizeof(struct monitorbuf) == 128, "2x cache line"); 49 50 /* 51 * The SMP parts are setup in pmap.c and locore.s for the BSP, and 52 * mp_machdep.c sets up the data for the AP's to "see" when they awake. 53 * The reason for doing it via a struct is so that an array of pointers 54 * to each CPU's data can be set up for things like "check curproc on all 55 * other processors" 56 */ 57 #define PCPU_MD_FIELDS \ 58 struct monitorbuf pc_monitorbuf __aligned(128); /* cache line */\ 59 struct pcpu *pc_prvspace; /* Self-reference */ \ 60 struct pmap *pc_curpmap; \ 61 struct amd64tss *pc_tssp; /* TSS segment active on CPU */ \ 62 void *pc_pad0; \ 63 uint64_t pc_kcr3; \ 64 uint64_t pc_ucr3; \ 65 uint64_t pc_saved_ucr3; \ 66 register_t pc_rsp0; \ 67 register_t pc_scratch_rsp; /* User %rsp in syscall */ \ 68 register_t pc_scratch_rax; \ 69 u_int pc_apic_id; \ 70 u_int pc_acpi_id; /* ACPI CPU id */ \ 71 /* Pointer to the CPU %fs descriptor */ \ 72 struct user_segment_descriptor *pc_fs32p; \ 73 /* Pointer to the CPU %gs descriptor */ \ 74 struct user_segment_descriptor *pc_gs32p; \ 75 /* Pointer to the CPU LDT descriptor */ \ 76 struct system_segment_descriptor *pc_ldt; \ 77 /* Pointer to the CPU TSS descriptor */ \ 78 struct system_segment_descriptor *pc_tss; \ 79 u_int pc_cmci_mask; /* MCx banks for CMCI */ \ 80 uint64_t pc_dbreg[16]; /* ddb debugging regs */ \ 81 uint64_t pc_pti_stack[PC_PTI_STACK_SZ]; \ 82 register_t pc_pti_rsp0; \ 83 int pc_dbreg_cmd; /* ddb debugging reg cmd */ \ 84 u_int pc_vcpu_id; /* Xen vCPU ID */ \ 85 uint32_t pc_pcid_next; \ 86 uint32_t pc_pcid_gen; \ 87 uint32_t pc_unused; \ 88 uint32_t pc_ibpb_set; \ 89 void *pc_mds_buf; \ 90 void *pc_mds_buf64; \ 91 uint32_t pc_pad[4]; \ 92 uint8_t pc_mds_tmp[64]; \ 93 u_int pc_ipi_bitmap; \ 94 struct amd64tss pc_common_tss; \ 95 struct user_segment_descriptor pc_gdt[NGDT]; \ 96 void *pc_smp_tlb_pmap; \ 97 uint64_t pc_smp_tlb_addr1; \ 98 uint64_t pc_smp_tlb_addr2; \ 99 uint32_t pc_smp_tlb_gen; \ 100 u_int pc_smp_tlb_op; \ 101 uint64_t pc_ucr3_load_mask; \ 102 u_int pc_small_core; \ 103 char __pad[2912] /* pad to UMA_PCPU_ALLOC_SIZE */ 104 105 #define PC_DBREG_CMD_NONE 0 106 #define PC_DBREG_CMD_LOAD 1 107 108 #ifdef _KERNEL 109 110 #define MONITOR_STOPSTATE_RUNNING 0 111 #define MONITOR_STOPSTATE_STOPPED 1 112 113 /* 114 * Evaluates to the byte offset of the per-cpu variable name. 115 */ 116 #define __pcpu_offset(name) \ 117 __offsetof(struct pcpu, name) 118 119 /* 120 * Evaluates to the type of the per-cpu variable name. 121 */ 122 #define __pcpu_type(name) \ 123 __typeof(((struct pcpu *)0)->name) 124 125 /* 126 * Evaluates to the address of the per-cpu variable name. 127 */ 128 #define __PCPU_PTR(name) __extension__ ({ \ 129 __pcpu_type(name) *__p; \ 130 \ 131 __asm __volatile("movq %%gs:%1,%0; addq %2,%0" \ 132 : "=r" (__p) \ 133 : "m" (*(struct pcpu *)(__pcpu_offset(pc_prvspace))), \ 134 "i" (__pcpu_offset(name))); \ 135 \ 136 __p; \ 137 }) 138 139 /* 140 * Evaluates to the value of the per-cpu variable name. 141 */ 142 #define __PCPU_GET(name) __extension__ ({ \ 143 __pcpu_type(name) __res; \ 144 struct __s { \ 145 u_char __b[MIN(sizeof(__pcpu_type(name)), 8)]; \ 146 } __s; \ 147 \ 148 if (sizeof(__res) == 1 || sizeof(__res) == 2 || \ 149 sizeof(__res) == 4 || sizeof(__res) == 8) { \ 150 __asm __volatile("mov %%gs:%1,%0" \ 151 : "=r" (__s) \ 152 : "m" (*(struct __s *)(__pcpu_offset(name)))); \ 153 *(struct __s *)(void *)&__res = __s; \ 154 } else { \ 155 __res = *__PCPU_PTR(name); \ 156 } \ 157 __res; \ 158 }) 159 160 /* 161 * Adds the value to the per-cpu counter name. The implementation 162 * must be atomic with respect to interrupts. 163 */ 164 #define __PCPU_ADD(name, val) do { \ 165 __pcpu_type(name) __val; \ 166 struct __s { \ 167 u_char __b[MIN(sizeof(__pcpu_type(name)), 8)]; \ 168 } __s; \ 169 \ 170 __val = (val); \ 171 if (sizeof(__val) == 1 || sizeof(__val) == 2 || \ 172 sizeof(__val) == 4 || sizeof(__val) == 8) { \ 173 __s = *(struct __s *)(void *)&__val; \ 174 __asm __volatile("add %1,%%gs:%0" \ 175 : "=m" (*(struct __s *)(__pcpu_offset(name))) \ 176 : "r" (__s)); \ 177 } else \ 178 *__PCPU_PTR(name) += __val; \ 179 } while (0) 180 181 /* 182 * Sets the value of the per-cpu variable name to value val. 183 */ 184 #define __PCPU_SET(name, val) { \ 185 __pcpu_type(name) __val; \ 186 struct __s { \ 187 u_char __b[MIN(sizeof(__pcpu_type(name)), 8)]; \ 188 } __s; \ 189 \ 190 __val = (val); \ 191 if (sizeof(__val) == 1 || sizeof(__val) == 2 || \ 192 sizeof(__val) == 4 || sizeof(__val) == 8) { \ 193 __s = *(struct __s *)(void *)&__val; \ 194 __asm __volatile("mov %1,%%gs:%0" \ 195 : "=m" (*(struct __s *)(__pcpu_offset(name))) \ 196 : "r" (__s)); \ 197 } else { \ 198 *__PCPU_PTR(name) = __val; \ 199 } \ 200 } 201 202 #define get_pcpu() __extension__ ({ \ 203 struct pcpu *__pc; \ 204 \ 205 __asm __volatile("movq %%gs:%1,%0" \ 206 : "=r" (__pc) \ 207 : "m" (*(struct pcpu *)(__pcpu_offset(pc_prvspace)))); \ 208 __pc; \ 209 }) 210 211 #define PCPU_GET(member) __PCPU_GET(pc_ ## member) 212 #define PCPU_ADD(member, val) __PCPU_ADD(pc_ ## member, val) 213 #define PCPU_PTR(member) __PCPU_PTR(pc_ ## member) 214 #define PCPU_SET(member, val) __PCPU_SET(pc_ ## member, val) 215 216 #define IS_BSP() (PCPU_GET(cpuid) == 0) 217 218 #define zpcpu_offset_cpu(cpu) ((uintptr_t)&__pcpu[0] + UMA_PCPU_ALLOC_SIZE * cpu) 219 #define zpcpu_base_to_offset(base) (void *)((uintptr_t)(base) - (uintptr_t)&__pcpu[0]) 220 #define zpcpu_offset_to_base(base) (void *)((uintptr_t)(base) + (uintptr_t)&__pcpu[0]) 221 222 #define zpcpu_sub_protected(base, n) do { \ 223 ZPCPU_ASSERT_PROTECTED(); \ 224 zpcpu_sub(base, n); \ 225 } while (0) 226 227 #define zpcpu_set_protected(base, n) do { \ 228 __typeof(*base) __n = (n); \ 229 ZPCPU_ASSERT_PROTECTED(); \ 230 switch (sizeof(*base)) { \ 231 case 4: \ 232 __asm __volatile("movl\t%1,%%gs:(%0)" \ 233 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 234 break; \ 235 case 8: \ 236 __asm __volatile("movq\t%1,%%gs:(%0)" \ 237 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 238 break; \ 239 default: \ 240 *zpcpu_get(base) = __n; \ 241 } \ 242 } while (0); 243 244 #define zpcpu_add(base, n) do { \ 245 __typeof(*base) __n = (n); \ 246 CTASSERT(sizeof(*base) == 4 || sizeof(*base) == 8); \ 247 switch (sizeof(*base)) { \ 248 case 4: \ 249 __asm __volatile("addl\t%1,%%gs:(%0)" \ 250 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 251 break; \ 252 case 8: \ 253 __asm __volatile("addq\t%1,%%gs:(%0)" \ 254 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 255 break; \ 256 } \ 257 } while (0) 258 259 #define zpcpu_add_protected(base, n) do { \ 260 ZPCPU_ASSERT_PROTECTED(); \ 261 zpcpu_add(base, n); \ 262 } while (0) 263 264 #define zpcpu_sub(base, n) do { \ 265 __typeof(*base) __n = (n); \ 266 CTASSERT(sizeof(*base) == 4 || sizeof(*base) == 8); \ 267 switch (sizeof(*base)) { \ 268 case 4: \ 269 __asm __volatile("subl\t%1,%%gs:(%0)" \ 270 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 271 break; \ 272 case 8: \ 273 __asm __volatile("subq\t%1,%%gs:(%0)" \ 274 : : "r" (base), "ri" (__n) : "memory", "cc"); \ 275 break; \ 276 } \ 277 } while (0); 278 279 #endif /* _KERNEL */ 280 281 #endif /* !_MACHINE_PCPU_H_ */ 282 283 #endif /* __i386__ */ 284