Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 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 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 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__ |
Chris Metcalf | 9a55fed | 2013-08-13 14:42:36 -0400 | [diff] [blame] | 27 | # error Can not build TILEPro configurations with tilegx compiler |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 28 | # endif |
| 29 | #endif |
| 30 | |
Chris Metcalf | 9a55fed | 2013-08-13 14:42:36 -0400 | [diff] [blame] | 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 | |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 38 | void foo(void) |
| 39 | { |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 40 | DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 41 | offsetof(struct single_step_state, buffer)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 42 | DEFINE(SINGLESTEP_STATE_FLAGS_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 43 | offsetof(struct single_step_state, flags)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 44 | DEFINE(SINGLESTEP_STATE_ORIG_PC_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 45 | offsetof(struct single_step_state, orig_pc)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 46 | DEFINE(SINGLESTEP_STATE_NEXT_PC_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 47 | offsetof(struct single_step_state, next_pc)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 48 | DEFINE(SINGLESTEP_STATE_BRANCH_NEXT_PC_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 49 | offsetof(struct single_step_state, branch_next_pc)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 50 | DEFINE(SINGLESTEP_STATE_UPDATE_VALUE_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 51 | offsetof(struct single_step_state, update_value)); |
| 52 | |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 53 | DEFINE(THREAD_INFO_TASK_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 54 | offsetof(struct thread_info, task)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 55 | DEFINE(THREAD_INFO_FLAGS_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 56 | offsetof(struct thread_info, flags)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 57 | DEFINE(THREAD_INFO_STATUS_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 58 | offsetof(struct thread_info, status)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 59 | DEFINE(THREAD_INFO_HOMECACHE_CPU_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 60 | offsetof(struct thread_info, homecache_cpu)); |
Chris Metcalf | bc1a298 | 2013-08-07 11:36:54 -0400 | [diff] [blame] | 61 | DEFINE(THREAD_INFO_PREEMPT_COUNT_OFFSET, |
| 62 | offsetof(struct thread_info, preempt_count)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 63 | DEFINE(THREAD_INFO_STEP_STATE_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 64 | offsetof(struct thread_info, step_state)); |
Chris Metcalf | 2f9ac29 | 2013-08-06 16:04:13 -0400 | [diff] [blame] | 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 |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 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 | |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 77 | DEFINE(HV_TOPOLOGY_WIDTH_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 78 | offsetof(HV_Topology, width)); |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 79 | DEFINE(HV_TOPOLOGY_HEIGHT_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 80 | offsetof(HV_Topology, height)); |
| 81 | |
Chris Metcalf | f10da54 | 2013-08-07 10:34:10 -0400 | [diff] [blame] | 82 | DEFINE(IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET, |
Chris Metcalf | 867e359 | 2010-05-28 23:09:12 -0400 | [diff] [blame] | 83 | offsetof(irq_cpustat_t, irq_syscall_count)); |
| 84 | } |