Path: blob/master/arch/powerpc/kernel/asm-offsets.c
10817 views
/*1* This program is used to generate definitions needed by2* assembly language modules.3*4* We use the technique used in the OSF Mach kernel code:5* generate asm statements containing #defines,6* compile this file to assembler, and then extract the7* #defines from the assembly-language output.8*9* This program is free software; you can redistribute it and/or10* modify it under the terms of the GNU General Public License11* as published by the Free Software Foundation; either version12* 2 of the License, or (at your option) any later version.13*/1415#include <linux/signal.h>16#include <linux/sched.h>17#include <linux/kernel.h>18#include <linux/errno.h>19#include <linux/string.h>20#include <linux/types.h>21#include <linux/mman.h>22#include <linux/mm.h>23#include <linux/suspend.h>24#include <linux/hrtimer.h>25#ifdef CONFIG_PPC6426#include <linux/time.h>27#include <linux/hardirq.h>28#endif29#include <linux/kbuild.h>3031#include <asm/io.h>32#include <asm/page.h>33#include <asm/pgtable.h>34#include <asm/processor.h>35#include <asm/cputable.h>36#include <asm/thread_info.h>37#include <asm/rtas.h>38#include <asm/vdso_datapage.h>39#ifdef CONFIG_PPC6440#include <asm/paca.h>41#include <asm/lppaca.h>42#include <asm/cache.h>43#include <asm/compat.h>44#include <asm/mmu.h>45#include <asm/hvcall.h>46#endif47#ifdef CONFIG_PPC_ISERIES48#include <asm/iseries/alpaca.h>49#endif50#if defined(CONFIG_KVM) || defined(CONFIG_KVM_GUEST)51#include <linux/kvm_host.h>52#endif53#if defined(CONFIG_KVM) && defined(CONFIG_PPC_BOOK3S)54#include <asm/kvm_book3s.h>55#endif5657#ifdef CONFIG_PPC3258#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)59#include "head_booke.h"60#endif61#endif6263#if defined(CONFIG_PPC_FSL_BOOK3E)64#include "../mm/mmu_decl.h"65#endif6667int main(void)68{69DEFINE(THREAD, offsetof(struct task_struct, thread));70DEFINE(MM, offsetof(struct task_struct, mm));71DEFINE(MMCONTEXTID, offsetof(struct mm_struct, context.id));72#ifdef CONFIG_PPC6473DEFINE(AUDITCONTEXT, offsetof(struct task_struct, audit_context));74DEFINE(SIGSEGV, SIGSEGV);75DEFINE(NMI_MASK, NMI_MASK);76DEFINE(THREAD_DSCR, offsetof(struct thread_struct, dscr));77#else78DEFINE(THREAD_INFO, offsetof(struct task_struct, stack));79#endif /* CONFIG_PPC64 */8081DEFINE(KSP, offsetof(struct thread_struct, ksp));82DEFINE(KSP_LIMIT, offsetof(struct thread_struct, ksp_limit));83DEFINE(PT_REGS, offsetof(struct thread_struct, regs));84DEFINE(THREAD_FPEXC_MODE, offsetof(struct thread_struct, fpexc_mode));85DEFINE(THREAD_FPR0, offsetof(struct thread_struct, fpr[0]));86DEFINE(THREAD_FPSCR, offsetof(struct thread_struct, fpscr));87#ifdef CONFIG_ALTIVEC88DEFINE(THREAD_VR0, offsetof(struct thread_struct, vr[0]));89DEFINE(THREAD_VRSAVE, offsetof(struct thread_struct, vrsave));90DEFINE(THREAD_VSCR, offsetof(struct thread_struct, vscr));91DEFINE(THREAD_USED_VR, offsetof(struct thread_struct, used_vr));92#endif /* CONFIG_ALTIVEC */93#ifdef CONFIG_VSX94DEFINE(THREAD_VSR0, offsetof(struct thread_struct, fpr));95DEFINE(THREAD_USED_VSR, offsetof(struct thread_struct, used_vsr));96#endif /* CONFIG_VSX */97#ifdef CONFIG_PPC6498DEFINE(KSP_VSID, offsetof(struct thread_struct, ksp_vsid));99#else /* CONFIG_PPC64 */100DEFINE(PGDIR, offsetof(struct thread_struct, pgdir));101#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)102DEFINE(THREAD_DBCR0, offsetof(struct thread_struct, dbcr0));103#endif104#ifdef CONFIG_SPE105DEFINE(THREAD_EVR0, offsetof(struct thread_struct, evr[0]));106DEFINE(THREAD_ACC, offsetof(struct thread_struct, acc));107DEFINE(THREAD_SPEFSCR, offsetof(struct thread_struct, spefscr));108DEFINE(THREAD_USED_SPE, offsetof(struct thread_struct, used_spe));109#endif /* CONFIG_SPE */110#endif /* CONFIG_PPC64 */111#ifdef CONFIG_KVM_BOOK3S_32_HANDLER112DEFINE(THREAD_KVM_SVCPU, offsetof(struct thread_struct, kvm_shadow_vcpu));113#endif114115DEFINE(TI_FLAGS, offsetof(struct thread_info, flags));116DEFINE(TI_LOCAL_FLAGS, offsetof(struct thread_info, local_flags));117DEFINE(TI_PREEMPT, offsetof(struct thread_info, preempt_count));118DEFINE(TI_TASK, offsetof(struct thread_info, task));119DEFINE(TI_CPU, offsetof(struct thread_info, cpu));120121#ifdef CONFIG_PPC64122DEFINE(DCACHEL1LINESIZE, offsetof(struct ppc64_caches, dline_size));123DEFINE(DCACHEL1LOGLINESIZE, offsetof(struct ppc64_caches, log_dline_size));124DEFINE(DCACHEL1LINESPERPAGE, offsetof(struct ppc64_caches, dlines_per_page));125DEFINE(ICACHEL1LINESIZE, offsetof(struct ppc64_caches, iline_size));126DEFINE(ICACHEL1LOGLINESIZE, offsetof(struct ppc64_caches, log_iline_size));127DEFINE(ICACHEL1LINESPERPAGE, offsetof(struct ppc64_caches, ilines_per_page));128/* paca */129DEFINE(PACA_SIZE, sizeof(struct paca_struct));130DEFINE(PACAPACAINDEX, offsetof(struct paca_struct, paca_index));131DEFINE(PACAPROCSTART, offsetof(struct paca_struct, cpu_start));132DEFINE(PACAKSAVE, offsetof(struct paca_struct, kstack));133DEFINE(PACACURRENT, offsetof(struct paca_struct, __current));134DEFINE(PACASAVEDMSR, offsetof(struct paca_struct, saved_msr));135DEFINE(PACASTABRR, offsetof(struct paca_struct, stab_rr));136DEFINE(PACAR1, offsetof(struct paca_struct, saved_r1));137DEFINE(PACATOC, offsetof(struct paca_struct, kernel_toc));138DEFINE(PACAKBASE, offsetof(struct paca_struct, kernelbase));139DEFINE(PACAKMSR, offsetof(struct paca_struct, kernel_msr));140DEFINE(PACASOFTIRQEN, offsetof(struct paca_struct, soft_enabled));141DEFINE(PACAHARDIRQEN, offsetof(struct paca_struct, hard_enabled));142DEFINE(PACACONTEXTID, offsetof(struct paca_struct, context.id));143#ifdef CONFIG_PPC_MM_SLICES144DEFINE(PACALOWSLICESPSIZE, offsetof(struct paca_struct,145context.low_slices_psize));146DEFINE(PACAHIGHSLICEPSIZE, offsetof(struct paca_struct,147context.high_slices_psize));148DEFINE(MMUPSIZEDEFSIZE, sizeof(struct mmu_psize_def));149#endif /* CONFIG_PPC_MM_SLICES */150151#ifdef CONFIG_PPC_BOOK3E152DEFINE(PACAPGD, offsetof(struct paca_struct, pgd));153DEFINE(PACA_KERNELPGD, offsetof(struct paca_struct, kernel_pgd));154DEFINE(PACA_EXGEN, offsetof(struct paca_struct, exgen));155DEFINE(PACA_EXTLB, offsetof(struct paca_struct, extlb));156DEFINE(PACA_EXMC, offsetof(struct paca_struct, exmc));157DEFINE(PACA_EXCRIT, offsetof(struct paca_struct, excrit));158DEFINE(PACA_EXDBG, offsetof(struct paca_struct, exdbg));159DEFINE(PACA_MC_STACK, offsetof(struct paca_struct, mc_kstack));160DEFINE(PACA_CRIT_STACK, offsetof(struct paca_struct, crit_kstack));161DEFINE(PACA_DBG_STACK, offsetof(struct paca_struct, dbg_kstack));162#endif /* CONFIG_PPC_BOOK3E */163164#ifdef CONFIG_PPC_STD_MMU_64165DEFINE(PACASTABREAL, offsetof(struct paca_struct, stab_real));166DEFINE(PACASTABVIRT, offsetof(struct paca_struct, stab_addr));167DEFINE(PACASLBCACHE, offsetof(struct paca_struct, slb_cache));168DEFINE(PACASLBCACHEPTR, offsetof(struct paca_struct, slb_cache_ptr));169DEFINE(PACAVMALLOCSLLP, offsetof(struct paca_struct, vmalloc_sllp));170#ifdef CONFIG_PPC_MM_SLICES171DEFINE(MMUPSIZESLLP, offsetof(struct mmu_psize_def, sllp));172#else173DEFINE(PACACONTEXTSLLP, offsetof(struct paca_struct, context.sllp));174#endif /* CONFIG_PPC_MM_SLICES */175DEFINE(PACA_EXGEN, offsetof(struct paca_struct, exgen));176DEFINE(PACA_EXMC, offsetof(struct paca_struct, exmc));177DEFINE(PACA_EXSLB, offsetof(struct paca_struct, exslb));178DEFINE(PACALPPACAPTR, offsetof(struct paca_struct, lppaca_ptr));179DEFINE(PACA_SLBSHADOWPTR, offsetof(struct paca_struct, slb_shadow_ptr));180DEFINE(SLBSHADOW_STACKVSID,181offsetof(struct slb_shadow, save_area[SLB_NUM_BOLTED - 1].vsid));182DEFINE(SLBSHADOW_STACKESID,183offsetof(struct slb_shadow, save_area[SLB_NUM_BOLTED - 1].esid));184DEFINE(SLBSHADOW_SAVEAREA, offsetof(struct slb_shadow, save_area));185DEFINE(LPPACASRR0, offsetof(struct lppaca, saved_srr0));186DEFINE(LPPACASRR1, offsetof(struct lppaca, saved_srr1));187DEFINE(LPPACAANYINT, offsetof(struct lppaca, int_dword.any_int));188DEFINE(LPPACADECRINT, offsetof(struct lppaca, int_dword.fields.decr_int));189DEFINE(LPPACA_DTLIDX, offsetof(struct lppaca, dtl_idx));190DEFINE(PACA_DTL_RIDX, offsetof(struct paca_struct, dtl_ridx));191#endif /* CONFIG_PPC_STD_MMU_64 */192DEFINE(PACAEMERGSP, offsetof(struct paca_struct, emergency_sp));193DEFINE(PACAHWCPUID, offsetof(struct paca_struct, hw_cpu_id));194DEFINE(PACAKEXECSTATE, offsetof(struct paca_struct, kexec_state));195DEFINE(PACA_STARTTIME, offsetof(struct paca_struct, starttime));196DEFINE(PACA_STARTTIME_USER, offsetof(struct paca_struct, starttime_user));197DEFINE(PACA_USER_TIME, offsetof(struct paca_struct, user_time));198DEFINE(PACA_SYSTEM_TIME, offsetof(struct paca_struct, system_time));199DEFINE(PACA_TRAP_SAVE, offsetof(struct paca_struct, trap_save));200#ifdef CONFIG_KVM_BOOK3S_64_HANDLER201DEFINE(PACA_KVM_SVCPU, offsetof(struct paca_struct, shadow_vcpu));202DEFINE(SVCPU_SLB, offsetof(struct kvmppc_book3s_shadow_vcpu, slb));203DEFINE(SVCPU_SLB_MAX, offsetof(struct kvmppc_book3s_shadow_vcpu, slb_max));204#endif205#endif /* CONFIG_PPC64 */206207/* RTAS */208DEFINE(RTASBASE, offsetof(struct rtas_t, base));209DEFINE(RTASENTRY, offsetof(struct rtas_t, entry));210211/* Interrupt register frame */212DEFINE(INT_FRAME_SIZE, STACK_INT_FRAME_SIZE);213DEFINE(SWITCH_FRAME_SIZE, STACK_FRAME_OVERHEAD + sizeof(struct pt_regs));214#ifdef CONFIG_PPC64215/* Create extra stack space for SRR0 and SRR1 when calling prom/rtas. */216DEFINE(PROM_FRAME_SIZE, STACK_FRAME_OVERHEAD + sizeof(struct pt_regs) + 16);217DEFINE(RTAS_FRAME_SIZE, STACK_FRAME_OVERHEAD + sizeof(struct pt_regs) + 16);218219/* hcall statistics */220DEFINE(HCALL_STAT_SIZE, sizeof(struct hcall_stats));221DEFINE(HCALL_STAT_CALLS, offsetof(struct hcall_stats, num_calls));222DEFINE(HCALL_STAT_TB, offsetof(struct hcall_stats, tb_total));223DEFINE(HCALL_STAT_PURR, offsetof(struct hcall_stats, purr_total));224#endif /* CONFIG_PPC64 */225DEFINE(GPR0, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[0]));226DEFINE(GPR1, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[1]));227DEFINE(GPR2, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[2]));228DEFINE(GPR3, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[3]));229DEFINE(GPR4, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[4]));230DEFINE(GPR5, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[5]));231DEFINE(GPR6, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[6]));232DEFINE(GPR7, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[7]));233DEFINE(GPR8, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[8]));234DEFINE(GPR9, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[9]));235DEFINE(GPR10, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[10]));236DEFINE(GPR11, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[11]));237DEFINE(GPR12, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[12]));238DEFINE(GPR13, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[13]));239#ifndef CONFIG_PPC64240DEFINE(GPR14, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[14]));241DEFINE(GPR15, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[15]));242DEFINE(GPR16, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[16]));243DEFINE(GPR17, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[17]));244DEFINE(GPR18, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[18]));245DEFINE(GPR19, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[19]));246DEFINE(GPR20, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[20]));247DEFINE(GPR21, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[21]));248DEFINE(GPR22, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[22]));249DEFINE(GPR23, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[23]));250DEFINE(GPR24, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[24]));251DEFINE(GPR25, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[25]));252DEFINE(GPR26, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[26]));253DEFINE(GPR27, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[27]));254DEFINE(GPR28, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[28]));255DEFINE(GPR29, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[29]));256DEFINE(GPR30, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[30]));257DEFINE(GPR31, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, gpr[31]));258#endif /* CONFIG_PPC64 */259/*260* Note: these symbols include _ because they overlap with special261* register names262*/263DEFINE(_NIP, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, nip));264DEFINE(_MSR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, msr));265DEFINE(_CTR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, ctr));266DEFINE(_LINK, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, link));267DEFINE(_CCR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, ccr));268DEFINE(_XER, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, xer));269DEFINE(_DAR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, dar));270DEFINE(_DSISR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, dsisr));271DEFINE(ORIG_GPR3, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, orig_gpr3));272DEFINE(RESULT, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, result));273DEFINE(_TRAP, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, trap));274#ifndef CONFIG_PPC64275DEFINE(_MQ, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, mq));276/*277* The PowerPC 400-class & Book-E processors have neither the DAR278* nor the DSISR SPRs. Hence, we overload them to hold the similar279* DEAR and ESR SPRs for such processors. For critical interrupts280* we use them to hold SRR0 and SRR1.281*/282DEFINE(_DEAR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, dar));283DEFINE(_ESR, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, dsisr));284#else /* CONFIG_PPC64 */285DEFINE(SOFTE, STACK_FRAME_OVERHEAD+offsetof(struct pt_regs, softe));286287/* These _only_ to be used with {PROM,RTAS}_FRAME_SIZE!!! */288DEFINE(_SRR0, STACK_FRAME_OVERHEAD+sizeof(struct pt_regs));289DEFINE(_SRR1, STACK_FRAME_OVERHEAD+sizeof(struct pt_regs)+8);290#endif /* CONFIG_PPC64 */291292#if defined(CONFIG_PPC32)293#if defined(CONFIG_BOOKE) || defined(CONFIG_40x)294DEFINE(EXC_LVL_SIZE, STACK_EXC_LVL_FRAME_SIZE);295DEFINE(MAS0, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas0));296/* we overload MMUCR for 44x on MAS0 since they are mutually exclusive */297DEFINE(MMUCR, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas0));298DEFINE(MAS1, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas1));299DEFINE(MAS2, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas2));300DEFINE(MAS3, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas3));301DEFINE(MAS6, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas6));302DEFINE(MAS7, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, mas7));303DEFINE(_SRR0, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, srr0));304DEFINE(_SRR1, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, srr1));305DEFINE(_CSRR0, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, csrr0));306DEFINE(_CSRR1, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, csrr1));307DEFINE(_DSRR0, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, dsrr0));308DEFINE(_DSRR1, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, dsrr1));309DEFINE(SAVED_KSP_LIMIT, STACK_INT_FRAME_SIZE+offsetof(struct exception_regs, saved_ksp_limit));310#endif311#endif312DEFINE(CLONE_VM, CLONE_VM);313DEFINE(CLONE_UNTRACED, CLONE_UNTRACED);314315#ifndef CONFIG_PPC64316DEFINE(MM_PGD, offsetof(struct mm_struct, pgd));317#endif /* ! CONFIG_PPC64 */318319/* About the CPU features table */320DEFINE(CPU_SPEC_FEATURES, offsetof(struct cpu_spec, cpu_features));321DEFINE(CPU_SPEC_SETUP, offsetof(struct cpu_spec, cpu_setup));322DEFINE(CPU_SPEC_RESTORE, offsetof(struct cpu_spec, cpu_restore));323324DEFINE(pbe_address, offsetof(struct pbe, address));325DEFINE(pbe_orig_address, offsetof(struct pbe, orig_address));326DEFINE(pbe_next, offsetof(struct pbe, next));327328#ifndef CONFIG_PPC64329DEFINE(TASK_SIZE, TASK_SIZE);330DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28);331#endif /* ! CONFIG_PPC64 */332333/* datapage offsets for use by vdso */334DEFINE(CFG_TB_ORIG_STAMP, offsetof(struct vdso_data, tb_orig_stamp));335DEFINE(CFG_TB_TICKS_PER_SEC, offsetof(struct vdso_data, tb_ticks_per_sec));336DEFINE(CFG_TB_TO_XS, offsetof(struct vdso_data, tb_to_xs));337DEFINE(CFG_STAMP_XSEC, offsetof(struct vdso_data, stamp_xsec));338DEFINE(CFG_TB_UPDATE_COUNT, offsetof(struct vdso_data, tb_update_count));339DEFINE(CFG_TZ_MINUTEWEST, offsetof(struct vdso_data, tz_minuteswest));340DEFINE(CFG_TZ_DSTTIME, offsetof(struct vdso_data, tz_dsttime));341DEFINE(CFG_SYSCALL_MAP32, offsetof(struct vdso_data, syscall_map_32));342DEFINE(WTOM_CLOCK_SEC, offsetof(struct vdso_data, wtom_clock_sec));343DEFINE(WTOM_CLOCK_NSEC, offsetof(struct vdso_data, wtom_clock_nsec));344DEFINE(STAMP_XTIME, offsetof(struct vdso_data, stamp_xtime));345DEFINE(STAMP_SEC_FRAC, offsetof(struct vdso_data, stamp_sec_fraction));346DEFINE(CFG_ICACHE_BLOCKSZ, offsetof(struct vdso_data, icache_block_size));347DEFINE(CFG_DCACHE_BLOCKSZ, offsetof(struct vdso_data, dcache_block_size));348DEFINE(CFG_ICACHE_LOGBLOCKSZ, offsetof(struct vdso_data, icache_log_block_size));349DEFINE(CFG_DCACHE_LOGBLOCKSZ, offsetof(struct vdso_data, dcache_log_block_size));350#ifdef CONFIG_PPC64351DEFINE(CFG_SYSCALL_MAP64, offsetof(struct vdso_data, syscall_map_64));352DEFINE(TVAL64_TV_SEC, offsetof(struct timeval, tv_sec));353DEFINE(TVAL64_TV_USEC, offsetof(struct timeval, tv_usec));354DEFINE(TVAL32_TV_SEC, offsetof(struct compat_timeval, tv_sec));355DEFINE(TVAL32_TV_USEC, offsetof(struct compat_timeval, tv_usec));356DEFINE(TSPC64_TV_SEC, offsetof(struct timespec, tv_sec));357DEFINE(TSPC64_TV_NSEC, offsetof(struct timespec, tv_nsec));358DEFINE(TSPC32_TV_SEC, offsetof(struct compat_timespec, tv_sec));359DEFINE(TSPC32_TV_NSEC, offsetof(struct compat_timespec, tv_nsec));360#else361DEFINE(TVAL32_TV_SEC, offsetof(struct timeval, tv_sec));362DEFINE(TVAL32_TV_USEC, offsetof(struct timeval, tv_usec));363DEFINE(TSPC32_TV_SEC, offsetof(struct timespec, tv_sec));364DEFINE(TSPC32_TV_NSEC, offsetof(struct timespec, tv_nsec));365#endif366/* timeval/timezone offsets for use by vdso */367DEFINE(TZONE_TZ_MINWEST, offsetof(struct timezone, tz_minuteswest));368DEFINE(TZONE_TZ_DSTTIME, offsetof(struct timezone, tz_dsttime));369370/* Other bits used by the vdso */371DEFINE(CLOCK_REALTIME, CLOCK_REALTIME);372DEFINE(CLOCK_MONOTONIC, CLOCK_MONOTONIC);373DEFINE(NSEC_PER_SEC, NSEC_PER_SEC);374DEFINE(CLOCK_REALTIME_RES, MONOTONIC_RES_NSEC);375376#ifdef CONFIG_BUG377DEFINE(BUG_ENTRY_SIZE, sizeof(struct bug_entry));378#endif379380#ifdef CONFIG_PPC_ISERIES381/* the assembler miscalculates the VSID values */382DEFINE(PAGE_OFFSET_ESID, GET_ESID(PAGE_OFFSET));383DEFINE(PAGE_OFFSET_VSID, KERNEL_VSID(PAGE_OFFSET));384DEFINE(VMALLOC_START_ESID, GET_ESID(VMALLOC_START));385DEFINE(VMALLOC_START_VSID, KERNEL_VSID(VMALLOC_START));386387/* alpaca */388DEFINE(ALPACA_SIZE, sizeof(struct alpaca));389#endif390391DEFINE(PGD_TABLE_SIZE, PGD_TABLE_SIZE);392DEFINE(PTE_SIZE, sizeof(pte_t));393394#ifdef CONFIG_KVM395DEFINE(VCPU_HOST_STACK, offsetof(struct kvm_vcpu, arch.host_stack));396DEFINE(VCPU_HOST_PID, offsetof(struct kvm_vcpu, arch.host_pid));397DEFINE(VCPU_GPRS, offsetof(struct kvm_vcpu, arch.gpr));398DEFINE(VCPU_VRSAVE, offsetof(struct kvm_vcpu, arch.vrsave));399DEFINE(VCPU_SPRG4, offsetof(struct kvm_vcpu, arch.sprg4));400DEFINE(VCPU_SPRG5, offsetof(struct kvm_vcpu, arch.sprg5));401DEFINE(VCPU_SPRG6, offsetof(struct kvm_vcpu, arch.sprg6));402DEFINE(VCPU_SPRG7, offsetof(struct kvm_vcpu, arch.sprg7));403DEFINE(VCPU_SHADOW_PID, offsetof(struct kvm_vcpu, arch.shadow_pid));404DEFINE(VCPU_SHARED, offsetof(struct kvm_vcpu, arch.shared));405DEFINE(VCPU_SHARED_MSR, offsetof(struct kvm_vcpu_arch_shared, msr));406407/* book3s */408#ifdef CONFIG_PPC_BOOK3S409DEFINE(VCPU_HOST_RETIP, offsetof(struct kvm_vcpu, arch.host_retip));410DEFINE(VCPU_HOST_MSR, offsetof(struct kvm_vcpu, arch.host_msr));411DEFINE(VCPU_SHADOW_MSR, offsetof(struct kvm_vcpu, arch.shadow_msr));412DEFINE(VCPU_TRAMPOLINE_LOWMEM, offsetof(struct kvm_vcpu, arch.trampoline_lowmem));413DEFINE(VCPU_TRAMPOLINE_ENTER, offsetof(struct kvm_vcpu, arch.trampoline_enter));414DEFINE(VCPU_HIGHMEM_HANDLER, offsetof(struct kvm_vcpu, arch.highmem_handler));415DEFINE(VCPU_RMCALL, offsetof(struct kvm_vcpu, arch.rmcall));416DEFINE(VCPU_HFLAGS, offsetof(struct kvm_vcpu, arch.hflags));417DEFINE(VCPU_SVCPU, offsetof(struct kvmppc_vcpu_book3s, shadow_vcpu) -418offsetof(struct kvmppc_vcpu_book3s, vcpu));419DEFINE(SVCPU_CR, offsetof(struct kvmppc_book3s_shadow_vcpu, cr));420DEFINE(SVCPU_XER, offsetof(struct kvmppc_book3s_shadow_vcpu, xer));421DEFINE(SVCPU_CTR, offsetof(struct kvmppc_book3s_shadow_vcpu, ctr));422DEFINE(SVCPU_LR, offsetof(struct kvmppc_book3s_shadow_vcpu, lr));423DEFINE(SVCPU_PC, offsetof(struct kvmppc_book3s_shadow_vcpu, pc));424DEFINE(SVCPU_R0, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[0]));425DEFINE(SVCPU_R1, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[1]));426DEFINE(SVCPU_R2, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[2]));427DEFINE(SVCPU_R3, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[3]));428DEFINE(SVCPU_R4, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[4]));429DEFINE(SVCPU_R5, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[5]));430DEFINE(SVCPU_R6, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[6]));431DEFINE(SVCPU_R7, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[7]));432DEFINE(SVCPU_R8, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[8]));433DEFINE(SVCPU_R9, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[9]));434DEFINE(SVCPU_R10, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[10]));435DEFINE(SVCPU_R11, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[11]));436DEFINE(SVCPU_R12, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[12]));437DEFINE(SVCPU_R13, offsetof(struct kvmppc_book3s_shadow_vcpu, gpr[13]));438DEFINE(SVCPU_HOST_R1, offsetof(struct kvmppc_book3s_shadow_vcpu, host_r1));439DEFINE(SVCPU_HOST_R2, offsetof(struct kvmppc_book3s_shadow_vcpu, host_r2));440DEFINE(SVCPU_VMHANDLER, offsetof(struct kvmppc_book3s_shadow_vcpu,441vmhandler));442DEFINE(SVCPU_SCRATCH0, offsetof(struct kvmppc_book3s_shadow_vcpu,443scratch0));444DEFINE(SVCPU_SCRATCH1, offsetof(struct kvmppc_book3s_shadow_vcpu,445scratch1));446DEFINE(SVCPU_IN_GUEST, offsetof(struct kvmppc_book3s_shadow_vcpu,447in_guest));448DEFINE(SVCPU_FAULT_DSISR, offsetof(struct kvmppc_book3s_shadow_vcpu,449fault_dsisr));450DEFINE(SVCPU_FAULT_DAR, offsetof(struct kvmppc_book3s_shadow_vcpu,451fault_dar));452DEFINE(SVCPU_LAST_INST, offsetof(struct kvmppc_book3s_shadow_vcpu,453last_inst));454DEFINE(SVCPU_SHADOW_SRR1, offsetof(struct kvmppc_book3s_shadow_vcpu,455shadow_srr1));456#ifdef CONFIG_PPC_BOOK3S_32457DEFINE(SVCPU_SR, offsetof(struct kvmppc_book3s_shadow_vcpu, sr));458#endif459#else460DEFINE(VCPU_CR, offsetof(struct kvm_vcpu, arch.cr));461DEFINE(VCPU_XER, offsetof(struct kvm_vcpu, arch.xer));462DEFINE(VCPU_LR, offsetof(struct kvm_vcpu, arch.lr));463DEFINE(VCPU_CTR, offsetof(struct kvm_vcpu, arch.ctr));464DEFINE(VCPU_PC, offsetof(struct kvm_vcpu, arch.pc));465DEFINE(VCPU_LAST_INST, offsetof(struct kvm_vcpu, arch.last_inst));466DEFINE(VCPU_FAULT_DEAR, offsetof(struct kvm_vcpu, arch.fault_dear));467DEFINE(VCPU_FAULT_ESR, offsetof(struct kvm_vcpu, arch.fault_esr));468#endif /* CONFIG_PPC_BOOK3S */469#endif470471#ifdef CONFIG_KVM_GUEST472DEFINE(KVM_MAGIC_SCRATCH1, offsetof(struct kvm_vcpu_arch_shared,473scratch1));474DEFINE(KVM_MAGIC_SCRATCH2, offsetof(struct kvm_vcpu_arch_shared,475scratch2));476DEFINE(KVM_MAGIC_SCRATCH3, offsetof(struct kvm_vcpu_arch_shared,477scratch3));478DEFINE(KVM_MAGIC_INT, offsetof(struct kvm_vcpu_arch_shared,479int_pending));480DEFINE(KVM_MAGIC_MSR, offsetof(struct kvm_vcpu_arch_shared, msr));481DEFINE(KVM_MAGIC_CRITICAL, offsetof(struct kvm_vcpu_arch_shared,482critical));483DEFINE(KVM_MAGIC_SR, offsetof(struct kvm_vcpu_arch_shared, sr));484#endif485486#ifdef CONFIG_44x487DEFINE(PGD_T_LOG2, PGD_T_LOG2);488DEFINE(PTE_T_LOG2, PTE_T_LOG2);489#endif490#ifdef CONFIG_PPC_FSL_BOOK3E491DEFINE(TLBCAM_SIZE, sizeof(struct tlbcam));492DEFINE(TLBCAM_MAS0, offsetof(struct tlbcam, MAS0));493DEFINE(TLBCAM_MAS1, offsetof(struct tlbcam, MAS1));494DEFINE(TLBCAM_MAS2, offsetof(struct tlbcam, MAS2));495DEFINE(TLBCAM_MAS3, offsetof(struct tlbcam, MAS3));496DEFINE(TLBCAM_MAS7, offsetof(struct tlbcam, MAS7));497#endif498499#ifdef CONFIG_KVM_EXIT_TIMING500DEFINE(VCPU_TIMING_EXIT_TBU, offsetof(struct kvm_vcpu,501arch.timing_exit.tv32.tbu));502DEFINE(VCPU_TIMING_EXIT_TBL, offsetof(struct kvm_vcpu,503arch.timing_exit.tv32.tbl));504DEFINE(VCPU_TIMING_LAST_ENTER_TBU, offsetof(struct kvm_vcpu,505arch.timing_last_enter.tv32.tbu));506DEFINE(VCPU_TIMING_LAST_ENTER_TBL, offsetof(struct kvm_vcpu,507arch.timing_last_enter.tv32.tbl));508#endif509510return 0;511}512513514