1 #include <sysdep/kernel-offsets.h> !! 1 // SPDX-License-Identifier: GPL-2.0 >> 2 /* >> 3 * asm-offsets.c: Calculate pt_regs and task_struct offsets. >> 4 * >> 5 * Copyright (C) 1996 David S. Miller >> 6 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Ralf Baechle >> 7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc. >> 8 * >> 9 * Kevin Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com >> 10 * Copyright (C) 2000 MIPS Technologies, Inc. >> 11 */ >> 12 #include <linux/compat.h> >> 13 #include <linux/types.h> >> 14 #include <linux/sched.h> >> 15 #include <linux/mm.h> >> 16 #include <linux/kbuild.h> >> 17 #include <linux/suspend.h> >> 18 #include <asm/cpu-info.h> >> 19 #include <asm/pm.h> >> 20 #include <asm/ptrace.h> >> 21 #include <asm/processor.h> >> 22 #include <asm/smp-cps.h> >> 23 >> 24 #include <linux/kvm_host.h> >> 25 >> 26 void output_ptreg_defines(void) >> 27 { >> 28 COMMENT("MIPS pt_regs offsets."); >> 29 OFFSET(PT_R0, pt_regs, regs[0]); >> 30 OFFSET(PT_R1, pt_regs, regs[1]); >> 31 OFFSET(PT_R2, pt_regs, regs[2]); >> 32 OFFSET(PT_R3, pt_regs, regs[3]); >> 33 OFFSET(PT_R4, pt_regs, regs[4]); >> 34 OFFSET(PT_R5, pt_regs, regs[5]); >> 35 OFFSET(PT_R6, pt_regs, regs[6]); >> 36 OFFSET(PT_R7, pt_regs, regs[7]); >> 37 OFFSET(PT_R8, pt_regs, regs[8]); >> 38 OFFSET(PT_R9, pt_regs, regs[9]); >> 39 OFFSET(PT_R10, pt_regs, regs[10]); >> 40 OFFSET(PT_R11, pt_regs, regs[11]); >> 41 OFFSET(PT_R12, pt_regs, regs[12]); >> 42 OFFSET(PT_R13, pt_regs, regs[13]); >> 43 OFFSET(PT_R14, pt_regs, regs[14]); >> 44 OFFSET(PT_R15, pt_regs, regs[15]); >> 45 OFFSET(PT_R16, pt_regs, regs[16]); >> 46 OFFSET(PT_R17, pt_regs, regs[17]); >> 47 OFFSET(PT_R18, pt_regs, regs[18]); >> 48 OFFSET(PT_R19, pt_regs, regs[19]); >> 49 OFFSET(PT_R20, pt_regs, regs[20]); >> 50 OFFSET(PT_R21, pt_regs, regs[21]); >> 51 OFFSET(PT_R22, pt_regs, regs[22]); >> 52 OFFSET(PT_R23, pt_regs, regs[23]); >> 53 OFFSET(PT_R24, pt_regs, regs[24]); >> 54 OFFSET(PT_R25, pt_regs, regs[25]); >> 55 OFFSET(PT_R26, pt_regs, regs[26]); >> 56 OFFSET(PT_R27, pt_regs, regs[27]); >> 57 OFFSET(PT_R28, pt_regs, regs[28]); >> 58 OFFSET(PT_R29, pt_regs, regs[29]); >> 59 OFFSET(PT_R30, pt_regs, regs[30]); >> 60 OFFSET(PT_R31, pt_regs, regs[31]); >> 61 OFFSET(PT_LO, pt_regs, lo); >> 62 OFFSET(PT_HI, pt_regs, hi); >> 63 #ifdef CONFIG_CPU_HAS_SMARTMIPS >> 64 OFFSET(PT_ACX, pt_regs, acx); >> 65 #endif >> 66 OFFSET(PT_EPC, pt_regs, cp0_epc); >> 67 OFFSET(PT_BVADDR, pt_regs, cp0_badvaddr); >> 68 OFFSET(PT_STATUS, pt_regs, cp0_status); >> 69 OFFSET(PT_CAUSE, pt_regs, cp0_cause); >> 70 #ifdef CONFIG_CPU_CAVIUM_OCTEON >> 71 OFFSET(PT_MPL, pt_regs, mpl); >> 72 OFFSET(PT_MTP, pt_regs, mtp); >> 73 #endif /* CONFIG_CPU_CAVIUM_OCTEON */ >> 74 DEFINE(PT_SIZE, sizeof(struct pt_regs)); >> 75 BLANK(); >> 76 } >> 77 >> 78 void output_task_defines(void) >> 79 { >> 80 COMMENT("MIPS task_struct offsets."); >> 81 OFFSET(TASK_THREAD_INFO, task_struct, stack); >> 82 OFFSET(TASK_FLAGS, task_struct, flags); >> 83 OFFSET(TASK_MM, task_struct, mm); >> 84 OFFSET(TASK_PID, task_struct, pid); >> 85 #if defined(CONFIG_STACKPROTECTOR) >> 86 OFFSET(TASK_STACK_CANARY, task_struct, stack_canary); >> 87 #endif >> 88 DEFINE(TASK_STRUCT_SIZE, sizeof(struct task_struct)); >> 89 BLANK(); >> 90 } >> 91 >> 92 void output_thread_info_defines(void) >> 93 { >> 94 COMMENT("MIPS thread_info offsets."); >> 95 OFFSET(TI_TASK, thread_info, task); >> 96 OFFSET(TI_FLAGS, thread_info, flags); >> 97 OFFSET(TI_TP_VALUE, thread_info, tp_value); >> 98 OFFSET(TI_CPU, thread_info, cpu); >> 99 OFFSET(TI_PRE_COUNT, thread_info, preempt_count); >> 100 OFFSET(TI_REGS, thread_info, regs); >> 101 OFFSET(TI_SYSCALL, thread_info, syscall); >> 102 DEFINE(_THREAD_SIZE, THREAD_SIZE); >> 103 DEFINE(_THREAD_MASK, THREAD_MASK); >> 104 DEFINE(_IRQ_STACK_SIZE, IRQ_STACK_SIZE); >> 105 DEFINE(_IRQ_STACK_START, IRQ_STACK_START); >> 106 BLANK(); >> 107 } >> 108 >> 109 void output_thread_defines(void) >> 110 { >> 111 COMMENT("MIPS specific thread_struct offsets."); >> 112 OFFSET(THREAD_REG16, task_struct, thread.reg16); >> 113 OFFSET(THREAD_REG17, task_struct, thread.reg17); >> 114 OFFSET(THREAD_REG18, task_struct, thread.reg18); >> 115 OFFSET(THREAD_REG19, task_struct, thread.reg19); >> 116 OFFSET(THREAD_REG20, task_struct, thread.reg20); >> 117 OFFSET(THREAD_REG21, task_struct, thread.reg21); >> 118 OFFSET(THREAD_REG22, task_struct, thread.reg22); >> 119 OFFSET(THREAD_REG23, task_struct, thread.reg23); >> 120 OFFSET(THREAD_REG29, task_struct, thread.reg29); >> 121 OFFSET(THREAD_REG30, task_struct, thread.reg30); >> 122 OFFSET(THREAD_REG31, task_struct, thread.reg31); >> 123 OFFSET(THREAD_STATUS, task_struct, >> 124 thread.cp0_status); >> 125 >> 126 OFFSET(THREAD_BVADDR, task_struct, \ >> 127 thread.cp0_badvaddr); >> 128 OFFSET(THREAD_BUADDR, task_struct, \ >> 129 thread.cp0_baduaddr); >> 130 OFFSET(THREAD_ECODE, task_struct, \ >> 131 thread.error_code); >> 132 OFFSET(THREAD_TRAPNO, task_struct, thread.trap_nr); >> 133 BLANK(); >> 134 } >> 135 >> 136 #ifdef CONFIG_MIPS_FP_SUPPORT >> 137 void output_thread_fpu_defines(void) >> 138 { >> 139 OFFSET(THREAD_FPU, task_struct, thread.fpu); >> 140 >> 141 OFFSET(THREAD_FPR0, task_struct, thread.fpu.fpr[0]); >> 142 OFFSET(THREAD_FPR1, task_struct, thread.fpu.fpr[1]); >> 143 OFFSET(THREAD_FPR2, task_struct, thread.fpu.fpr[2]); >> 144 OFFSET(THREAD_FPR3, task_struct, thread.fpu.fpr[3]); >> 145 OFFSET(THREAD_FPR4, task_struct, thread.fpu.fpr[4]); >> 146 OFFSET(THREAD_FPR5, task_struct, thread.fpu.fpr[5]); >> 147 OFFSET(THREAD_FPR6, task_struct, thread.fpu.fpr[6]); >> 148 OFFSET(THREAD_FPR7, task_struct, thread.fpu.fpr[7]); >> 149 OFFSET(THREAD_FPR8, task_struct, thread.fpu.fpr[8]); >> 150 OFFSET(THREAD_FPR9, task_struct, thread.fpu.fpr[9]); >> 151 OFFSET(THREAD_FPR10, task_struct, thread.fpu.fpr[10]); >> 152 OFFSET(THREAD_FPR11, task_struct, thread.fpu.fpr[11]); >> 153 OFFSET(THREAD_FPR12, task_struct, thread.fpu.fpr[12]); >> 154 OFFSET(THREAD_FPR13, task_struct, thread.fpu.fpr[13]); >> 155 OFFSET(THREAD_FPR14, task_struct, thread.fpu.fpr[14]); >> 156 OFFSET(THREAD_FPR15, task_struct, thread.fpu.fpr[15]); >> 157 OFFSET(THREAD_FPR16, task_struct, thread.fpu.fpr[16]); >> 158 OFFSET(THREAD_FPR17, task_struct, thread.fpu.fpr[17]); >> 159 OFFSET(THREAD_FPR18, task_struct, thread.fpu.fpr[18]); >> 160 OFFSET(THREAD_FPR19, task_struct, thread.fpu.fpr[19]); >> 161 OFFSET(THREAD_FPR20, task_struct, thread.fpu.fpr[20]); >> 162 OFFSET(THREAD_FPR21, task_struct, thread.fpu.fpr[21]); >> 163 OFFSET(THREAD_FPR22, task_struct, thread.fpu.fpr[22]); >> 164 OFFSET(THREAD_FPR23, task_struct, thread.fpu.fpr[23]); >> 165 OFFSET(THREAD_FPR24, task_struct, thread.fpu.fpr[24]); >> 166 OFFSET(THREAD_FPR25, task_struct, thread.fpu.fpr[25]); >> 167 OFFSET(THREAD_FPR26, task_struct, thread.fpu.fpr[26]); >> 168 OFFSET(THREAD_FPR27, task_struct, thread.fpu.fpr[27]); >> 169 OFFSET(THREAD_FPR28, task_struct, thread.fpu.fpr[28]); >> 170 OFFSET(THREAD_FPR29, task_struct, thread.fpu.fpr[29]); >> 171 OFFSET(THREAD_FPR30, task_struct, thread.fpu.fpr[30]); >> 172 OFFSET(THREAD_FPR31, task_struct, thread.fpu.fpr[31]); >> 173 >> 174 OFFSET(THREAD_FCR31, task_struct, thread.fpu.fcr31); >> 175 OFFSET(THREAD_MSA_CSR, task_struct, thread.fpu.msacsr); >> 176 BLANK(); >> 177 } >> 178 #endif >> 179 >> 180 void output_mm_defines(void) >> 181 { >> 182 COMMENT("Size of struct page"); >> 183 DEFINE(STRUCT_PAGE_SIZE, sizeof(struct page)); >> 184 BLANK(); >> 185 COMMENT("Linux mm_struct offsets."); >> 186 OFFSET(MM_USERS, mm_struct, mm_users); >> 187 OFFSET(MM_PGD, mm_struct, pgd); >> 188 OFFSET(MM_CONTEXT, mm_struct, context); >> 189 BLANK(); >> 190 DEFINE(_PGD_T_SIZE, sizeof(pgd_t)); >> 191 DEFINE(_PMD_T_SIZE, sizeof(pmd_t)); >> 192 DEFINE(_PTE_T_SIZE, sizeof(pte_t)); >> 193 BLANK(); >> 194 DEFINE(_PGD_T_LOG2, PGD_T_LOG2); >> 195 #ifndef __PAGETABLE_PMD_FOLDED >> 196 DEFINE(_PMD_T_LOG2, PMD_T_LOG2); >> 197 #endif >> 198 DEFINE(_PTE_T_LOG2, PTE_T_LOG2); >> 199 BLANK(); >> 200 BLANK(); >> 201 DEFINE(_PMD_SHIFT, PMD_SHIFT); >> 202 DEFINE(_PGDIR_SHIFT, PGDIR_SHIFT); >> 203 BLANK(); >> 204 DEFINE(_PTRS_PER_PGD, PTRS_PER_PGD); >> 205 DEFINE(_PTRS_PER_PMD, PTRS_PER_PMD); >> 206 DEFINE(_PTRS_PER_PTE, PTRS_PER_PTE); >> 207 BLANK(); >> 208 DEFINE(_PAGE_SHIFT, PAGE_SHIFT); >> 209 DEFINE(_PAGE_SIZE, PAGE_SIZE); >> 210 BLANK(); >> 211 } >> 212 >> 213 #ifdef CONFIG_32BIT >> 214 void output_sc_defines(void) >> 215 { >> 216 COMMENT("Linux sigcontext offsets."); >> 217 OFFSET(SC_REGS, sigcontext, sc_regs); >> 218 OFFSET(SC_FPREGS, sigcontext, sc_fpregs); >> 219 OFFSET(SC_ACX, sigcontext, sc_acx); >> 220 OFFSET(SC_MDHI, sigcontext, sc_mdhi); >> 221 OFFSET(SC_MDLO, sigcontext, sc_mdlo); >> 222 OFFSET(SC_PC, sigcontext, sc_pc); >> 223 OFFSET(SC_FPC_CSR, sigcontext, sc_fpc_csr); >> 224 OFFSET(SC_FPC_EIR, sigcontext, sc_fpc_eir); >> 225 OFFSET(SC_HI1, sigcontext, sc_hi1); >> 226 OFFSET(SC_LO1, sigcontext, sc_lo1); >> 227 OFFSET(SC_HI2, sigcontext, sc_hi2); >> 228 OFFSET(SC_LO2, sigcontext, sc_lo2); >> 229 OFFSET(SC_HI3, sigcontext, sc_hi3); >> 230 OFFSET(SC_LO3, sigcontext, sc_lo3); >> 231 BLANK(); >> 232 } >> 233 #endif >> 234 >> 235 #ifdef CONFIG_64BIT >> 236 void output_sc_defines(void) >> 237 { >> 238 COMMENT("Linux sigcontext offsets."); >> 239 OFFSET(SC_REGS, sigcontext, sc_regs); >> 240 OFFSET(SC_FPREGS, sigcontext, sc_fpregs); >> 241 OFFSET(SC_MDHI, sigcontext, sc_mdhi); >> 242 OFFSET(SC_MDLO, sigcontext, sc_mdlo); >> 243 OFFSET(SC_PC, sigcontext, sc_pc); >> 244 OFFSET(SC_FPC_CSR, sigcontext, sc_fpc_csr); >> 245 BLANK(); >> 246 } >> 247 #endif >> 248 >> 249 void output_signal_defined(void) >> 250 { >> 251 COMMENT("Linux signal numbers."); >> 252 DEFINE(_SIGHUP, SIGHUP); >> 253 DEFINE(_SIGINT, SIGINT); >> 254 DEFINE(_SIGQUIT, SIGQUIT); >> 255 DEFINE(_SIGILL, SIGILL); >> 256 DEFINE(_SIGTRAP, SIGTRAP); >> 257 DEFINE(_SIGIOT, SIGIOT); >> 258 DEFINE(_SIGABRT, SIGABRT); >> 259 DEFINE(_SIGEMT, SIGEMT); >> 260 DEFINE(_SIGFPE, SIGFPE); >> 261 DEFINE(_SIGKILL, SIGKILL); >> 262 DEFINE(_SIGBUS, SIGBUS); >> 263 DEFINE(_SIGSEGV, SIGSEGV); >> 264 DEFINE(_SIGSYS, SIGSYS); >> 265 DEFINE(_SIGPIPE, SIGPIPE); >> 266 DEFINE(_SIGALRM, SIGALRM); >> 267 DEFINE(_SIGTERM, SIGTERM); >> 268 DEFINE(_SIGUSR1, SIGUSR1); >> 269 DEFINE(_SIGUSR2, SIGUSR2); >> 270 DEFINE(_SIGCHLD, SIGCHLD); >> 271 DEFINE(_SIGPWR, SIGPWR); >> 272 DEFINE(_SIGWINCH, SIGWINCH); >> 273 DEFINE(_SIGURG, SIGURG); >> 274 DEFINE(_SIGIO, SIGIO); >> 275 DEFINE(_SIGSTOP, SIGSTOP); >> 276 DEFINE(_SIGTSTP, SIGTSTP); >> 277 DEFINE(_SIGCONT, SIGCONT); >> 278 DEFINE(_SIGTTIN, SIGTTIN); >> 279 DEFINE(_SIGTTOU, SIGTTOU); >> 280 DEFINE(_SIGVTALRM, SIGVTALRM); >> 281 DEFINE(_SIGPROF, SIGPROF); >> 282 DEFINE(_SIGXCPU, SIGXCPU); >> 283 DEFINE(_SIGXFSZ, SIGXFSZ); >> 284 BLANK(); >> 285 } >> 286 >> 287 #ifdef CONFIG_CPU_CAVIUM_OCTEON >> 288 void output_octeon_cop2_state_defines(void) >> 289 { >> 290 COMMENT("Octeon specific octeon_cop2_state offsets."); >> 291 OFFSET(OCTEON_CP2_CRC_IV, octeon_cop2_state, cop2_crc_iv); >> 292 OFFSET(OCTEON_CP2_CRC_LENGTH, octeon_cop2_state, cop2_crc_length); >> 293 OFFSET(OCTEON_CP2_CRC_POLY, octeon_cop2_state, cop2_crc_poly); >> 294 OFFSET(OCTEON_CP2_LLM_DAT, octeon_cop2_state, cop2_llm_dat); >> 295 OFFSET(OCTEON_CP2_3DES_IV, octeon_cop2_state, cop2_3des_iv); >> 296 OFFSET(OCTEON_CP2_3DES_KEY, octeon_cop2_state, cop2_3des_key); >> 297 OFFSET(OCTEON_CP2_3DES_RESULT, octeon_cop2_state, cop2_3des_result); >> 298 OFFSET(OCTEON_CP2_AES_INP0, octeon_cop2_state, cop2_aes_inp0); >> 299 OFFSET(OCTEON_CP2_AES_IV, octeon_cop2_state, cop2_aes_iv); >> 300 OFFSET(OCTEON_CP2_AES_KEY, octeon_cop2_state, cop2_aes_key); >> 301 OFFSET(OCTEON_CP2_AES_KEYLEN, octeon_cop2_state, cop2_aes_keylen); >> 302 OFFSET(OCTEON_CP2_AES_RESULT, octeon_cop2_state, cop2_aes_result); >> 303 OFFSET(OCTEON_CP2_GFM_MULT, octeon_cop2_state, cop2_gfm_mult); >> 304 OFFSET(OCTEON_CP2_GFM_POLY, octeon_cop2_state, cop2_gfm_poly); >> 305 OFFSET(OCTEON_CP2_GFM_RESULT, octeon_cop2_state, cop2_gfm_result); >> 306 OFFSET(OCTEON_CP2_HSH_DATW, octeon_cop2_state, cop2_hsh_datw); >> 307 OFFSET(OCTEON_CP2_HSH_IVW, octeon_cop2_state, cop2_hsh_ivw); >> 308 OFFSET(OCTEON_CP2_SHA3, octeon_cop2_state, cop2_sha3); >> 309 OFFSET(THREAD_CP2, task_struct, thread.cp2); >> 310 OFFSET(THREAD_CVMSEG, task_struct, thread.cvmseg.cvmseg); >> 311 BLANK(); >> 312 } >> 313 #endif >> 314 >> 315 #ifdef CONFIG_HIBERNATION >> 316 void output_pbe_defines(void) >> 317 { >> 318 COMMENT(" Linux struct pbe offsets. "); >> 319 OFFSET(PBE_ADDRESS, pbe, address); >> 320 OFFSET(PBE_ORIG_ADDRESS, pbe, orig_address); >> 321 OFFSET(PBE_NEXT, pbe, next); >> 322 DEFINE(PBE_SIZE, sizeof(struct pbe)); >> 323 BLANK(); >> 324 } >> 325 #endif >> 326 >> 327 #ifdef CONFIG_CPU_PM >> 328 void output_pm_defines(void) >> 329 { >> 330 COMMENT(" PM offsets. "); >> 331 #ifdef CONFIG_EVA >> 332 OFFSET(SSS_SEGCTL0, mips_static_suspend_state, segctl[0]); >> 333 OFFSET(SSS_SEGCTL1, mips_static_suspend_state, segctl[1]); >> 334 OFFSET(SSS_SEGCTL2, mips_static_suspend_state, segctl[2]); >> 335 #endif >> 336 OFFSET(SSS_SP, mips_static_suspend_state, sp); >> 337 BLANK(); >> 338 } >> 339 #endif >> 340 >> 341 #ifdef CONFIG_MIPS_FP_SUPPORT >> 342 void output_kvm_defines(void) >> 343 { >> 344 COMMENT(" KVM/MIPS Specific offsets. "); >> 345 >> 346 OFFSET(VCPU_FPR0, kvm_vcpu_arch, fpu.fpr[0]); >> 347 OFFSET(VCPU_FPR1, kvm_vcpu_arch, fpu.fpr[1]); >> 348 OFFSET(VCPU_FPR2, kvm_vcpu_arch, fpu.fpr[2]); >> 349 OFFSET(VCPU_FPR3, kvm_vcpu_arch, fpu.fpr[3]); >> 350 OFFSET(VCPU_FPR4, kvm_vcpu_arch, fpu.fpr[4]); >> 351 OFFSET(VCPU_FPR5, kvm_vcpu_arch, fpu.fpr[5]); >> 352 OFFSET(VCPU_FPR6, kvm_vcpu_arch, fpu.fpr[6]); >> 353 OFFSET(VCPU_FPR7, kvm_vcpu_arch, fpu.fpr[7]); >> 354 OFFSET(VCPU_FPR8, kvm_vcpu_arch, fpu.fpr[8]); >> 355 OFFSET(VCPU_FPR9, kvm_vcpu_arch, fpu.fpr[9]); >> 356 OFFSET(VCPU_FPR10, kvm_vcpu_arch, fpu.fpr[10]); >> 357 OFFSET(VCPU_FPR11, kvm_vcpu_arch, fpu.fpr[11]); >> 358 OFFSET(VCPU_FPR12, kvm_vcpu_arch, fpu.fpr[12]); >> 359 OFFSET(VCPU_FPR13, kvm_vcpu_arch, fpu.fpr[13]); >> 360 OFFSET(VCPU_FPR14, kvm_vcpu_arch, fpu.fpr[14]); >> 361 OFFSET(VCPU_FPR15, kvm_vcpu_arch, fpu.fpr[15]); >> 362 OFFSET(VCPU_FPR16, kvm_vcpu_arch, fpu.fpr[16]); >> 363 OFFSET(VCPU_FPR17, kvm_vcpu_arch, fpu.fpr[17]); >> 364 OFFSET(VCPU_FPR18, kvm_vcpu_arch, fpu.fpr[18]); >> 365 OFFSET(VCPU_FPR19, kvm_vcpu_arch, fpu.fpr[19]); >> 366 OFFSET(VCPU_FPR20, kvm_vcpu_arch, fpu.fpr[20]); >> 367 OFFSET(VCPU_FPR21, kvm_vcpu_arch, fpu.fpr[21]); >> 368 OFFSET(VCPU_FPR22, kvm_vcpu_arch, fpu.fpr[22]); >> 369 OFFSET(VCPU_FPR23, kvm_vcpu_arch, fpu.fpr[23]); >> 370 OFFSET(VCPU_FPR24, kvm_vcpu_arch, fpu.fpr[24]); >> 371 OFFSET(VCPU_FPR25, kvm_vcpu_arch, fpu.fpr[25]); >> 372 OFFSET(VCPU_FPR26, kvm_vcpu_arch, fpu.fpr[26]); >> 373 OFFSET(VCPU_FPR27, kvm_vcpu_arch, fpu.fpr[27]); >> 374 OFFSET(VCPU_FPR28, kvm_vcpu_arch, fpu.fpr[28]); >> 375 OFFSET(VCPU_FPR29, kvm_vcpu_arch, fpu.fpr[29]); >> 376 OFFSET(VCPU_FPR30, kvm_vcpu_arch, fpu.fpr[30]); >> 377 OFFSET(VCPU_FPR31, kvm_vcpu_arch, fpu.fpr[31]); >> 378 >> 379 OFFSET(VCPU_FCR31, kvm_vcpu_arch, fpu.fcr31); >> 380 OFFSET(VCPU_MSA_CSR, kvm_vcpu_arch, fpu.msacsr); >> 381 BLANK(); >> 382 } >> 383 #endif >> 384 >> 385 #ifdef CONFIG_MIPS_CPS >> 386 void output_cps_defines(void) >> 387 { >> 388 COMMENT(" MIPS CPS offsets. "); >> 389 >> 390 OFFSET(COREBOOTCFG_VPEMASK, core_boot_config, vpe_mask); >> 391 OFFSET(COREBOOTCFG_VPECONFIG, core_boot_config, vpe_config); >> 392 DEFINE(COREBOOTCFG_SIZE, sizeof(struct core_boot_config)); >> 393 >> 394 OFFSET(VPEBOOTCFG_PC, vpe_boot_config, pc); >> 395 OFFSET(VPEBOOTCFG_SP, vpe_boot_config, sp); >> 396 OFFSET(VPEBOOTCFG_GP, vpe_boot_config, gp); >> 397 DEFINE(VPEBOOTCFG_SIZE, sizeof(struct vpe_boot_config)); >> 398 } >> 399 #endif 2 400
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.