Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
[deliverable/linux.git] / arch / tile / kernel / asm-offsets.c
CommitLineData
867e359b
CM
1/*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 *
14 * Generates definitions from c-type structures used by assembly sources.
15 */
16
867e359b
CM
17/* Check for compatible compiler early in the build. */
18#ifdef CONFIG_TILEGX
19# ifndef __tilegx__
20# error Can only build TILE-Gx configurations with tilegx compiler
21# endif
22# ifndef __LP64__
23# error Must not specify -m32 when building the TILE-Gx kernel
24# endif
25#else
26# ifdef __tilegx__
9a55fed4 27# error Can not build TILEPro configurations with tilegx compiler
867e359b
CM
28# endif
29#endif
30
9a55fed4
CM
31#include <linux/kbuild.h>
32#include <linux/thread_info.h>
33#include <linux/sched.h>
34#include <linux/hardirq.h>
35#include <linux/ptrace.h>
36#include <hv/hypervisor.h>
37
867e359b
CM
38void foo(void)
39{
f10da547 40 DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET,
867e359b 41 offsetof(struct single_step_state, buffer));
f10da547 42 DEFINE(SINGLESTEP_STATE_FLAGS_OFFSET,
867e359b 43 offsetof(struct single_step_state, flags));
f10da547 44 DEFINE(SINGLESTEP_STATE_ORIG_PC_OFFSET,
867e359b 45 offsetof(struct single_step_state, orig_pc));
f10da547 46 DEFINE(SINGLESTEP_STATE_NEXT_PC_OFFSET,
867e359b 47 offsetof(struct single_step_state, next_pc));
f10da547 48 DEFINE(SINGLESTEP_STATE_BRANCH_NEXT_PC_OFFSET,
867e359b 49 offsetof(struct single_step_state, branch_next_pc));
f10da547 50 DEFINE(SINGLESTEP_STATE_UPDATE_VALUE_OFFSET,
867e359b
CM
51 offsetof(struct single_step_state, update_value));
52
f10da547 53 DEFINE(THREAD_INFO_TASK_OFFSET,
867e359b 54 offsetof(struct thread_info, task));
f10da547 55 DEFINE(THREAD_INFO_FLAGS_OFFSET,
867e359b 56 offsetof(struct thread_info, flags));
f10da547 57 DEFINE(THREAD_INFO_STATUS_OFFSET,
867e359b 58 offsetof(struct thread_info, status));
f10da547 59 DEFINE(THREAD_INFO_HOMECACHE_CPU_OFFSET,
867e359b 60 offsetof(struct thread_info, homecache_cpu));
bc1a298f
CM
61 DEFINE(THREAD_INFO_PREEMPT_COUNT_OFFSET,
62 offsetof(struct thread_info, preempt_count));
f10da547 63 DEFINE(THREAD_INFO_STEP_STATE_OFFSET,
867e359b 64 offsetof(struct thread_info, step_state));
2f9ac29e
CM
65#ifdef __tilegx__
66 DEFINE(THREAD_INFO_UNALIGN_JIT_BASE_OFFSET,
67 offsetof(struct thread_info, unalign_jit_base));
68 DEFINE(THREAD_INFO_UNALIGN_JIT_TMP_OFFSET,
69 offsetof(struct thread_info, unalign_jit_tmp));
70#endif
867e359b
CM
71
72 DEFINE(TASK_STRUCT_THREAD_KSP_OFFSET,
73 offsetof(struct task_struct, thread.ksp));
74 DEFINE(TASK_STRUCT_THREAD_PC_OFFSET,
75 offsetof(struct task_struct, thread.pc));
76
f10da547 77 DEFINE(HV_TOPOLOGY_WIDTH_OFFSET,
867e359b 78 offsetof(HV_Topology, width));
f10da547 79 DEFINE(HV_TOPOLOGY_HEIGHT_OFFSET,
867e359b
CM
80 offsetof(HV_Topology, height));
81
f10da547 82 DEFINE(IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET,
867e359b
CM
83 offsetof(irq_cpustat_t, irq_syscall_count));
84}
This page took 0.323001 seconds and 5 git commands to generate.