blob: 375e7c321eef542f1ccc9ce41f17298bee09925d [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
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
Chris Metcalf867e3592010-05-28 23:09:12 -040017/* 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__
Chris Metcalf9a55fed2013-08-13 14:42:36 -040027# error Can not build TILEPro configurations with tilegx compiler
Chris Metcalf867e3592010-05-28 23:09:12 -040028# endif
29#endif
30
Chris Metcalf9a55fed2013-08-13 14:42:36 -040031#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
Chris Metcalf867e3592010-05-28 23:09:12 -040038void foo(void)
39{
Chris Metcalff10da542013-08-07 10:34:10 -040040 DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040041 offsetof(struct single_step_state, buffer));
Chris Metcalff10da542013-08-07 10:34:10 -040042 DEFINE(SINGLESTEP_STATE_FLAGS_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040043 offsetof(struct single_step_state, flags));
Chris Metcalff10da542013-08-07 10:34:10 -040044 DEFINE(SINGLESTEP_STATE_ORIG_PC_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040045 offsetof(struct single_step_state, orig_pc));
Chris Metcalff10da542013-08-07 10:34:10 -040046 DEFINE(SINGLESTEP_STATE_NEXT_PC_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040047 offsetof(struct single_step_state, next_pc));
Chris Metcalff10da542013-08-07 10:34:10 -040048 DEFINE(SINGLESTEP_STATE_BRANCH_NEXT_PC_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040049 offsetof(struct single_step_state, branch_next_pc));
Chris Metcalff10da542013-08-07 10:34:10 -040050 DEFINE(SINGLESTEP_STATE_UPDATE_VALUE_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040051 offsetof(struct single_step_state, update_value));
52
Chris Metcalff10da542013-08-07 10:34:10 -040053 DEFINE(THREAD_INFO_TASK_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040054 offsetof(struct thread_info, task));
Chris Metcalff10da542013-08-07 10:34:10 -040055 DEFINE(THREAD_INFO_FLAGS_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040056 offsetof(struct thread_info, flags));
Chris Metcalff10da542013-08-07 10:34:10 -040057 DEFINE(THREAD_INFO_STATUS_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040058 offsetof(struct thread_info, status));
Chris Metcalff10da542013-08-07 10:34:10 -040059 DEFINE(THREAD_INFO_HOMECACHE_CPU_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040060 offsetof(struct thread_info, homecache_cpu));
Chris Metcalfbc1a2982013-08-07 11:36:54 -040061 DEFINE(THREAD_INFO_PREEMPT_COUNT_OFFSET,
62 offsetof(struct thread_info, preempt_count));
Chris Metcalff10da542013-08-07 10:34:10 -040063 DEFINE(THREAD_INFO_STEP_STATE_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040064 offsetof(struct thread_info, step_state));
Chris Metcalf2f9ac292013-08-06 16:04:13 -040065#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
Chris Metcalf867e3592010-05-28 23:09:12 -040071
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
Chris Metcalff10da542013-08-07 10:34:10 -040077 DEFINE(HV_TOPOLOGY_WIDTH_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040078 offsetof(HV_Topology, width));
Chris Metcalff10da542013-08-07 10:34:10 -040079 DEFINE(HV_TOPOLOGY_HEIGHT_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040080 offsetof(HV_Topology, height));
81
Chris Metcalff10da542013-08-07 10:34:10 -040082 DEFINE(IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET,
Chris Metcalf867e3592010-05-28 23:09:12 -040083 offsetof(irq_cpustat_t, irq_syscall_count));
84}