Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #ifndef __UM_PROCESSOR_GENERIC_H |
| 7 | #define __UM_PROCESSOR_GENERIC_H |
| 8 | |
| 9 | struct pt_regs; |
| 10 | |
| 11 | struct task_struct; |
| 12 | |
Al Viro | 37185b3 | 2012-10-08 03:27:32 +0100 | [diff] [blame] | 13 | #include <asm/ptrace.h> |
| 14 | #include <registers.h> |
| 15 | #include <sysdep/archsetjmp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Richard Weinberger | 607647a | 2011-05-24 17:13:03 -0700 | [diff] [blame] | 17 | #include <linux/prefetch.h> |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | struct mm_struct; |
| 20 | |
| 21 | struct thread_struct { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | struct pt_regs regs; |
Richard Weinberger | f72c22e | 2013-09-23 17:38:02 +0200 | [diff] [blame] | 23 | struct pt_regs *segv_regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | int singlestep_syscall; |
| 25 | void *fault_addr; |
Jeff Dike | fab95c5 | 2007-10-16 01:27:05 -0700 | [diff] [blame] | 26 | jmp_buf *fault_catcher; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | struct task_struct *prev_sched; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | struct arch_thread arch; |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 29 | jmp_buf switch_buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct { |
| 31 | int op; |
| 32 | union { |
| 33 | struct { |
| 34 | int pid; |
| 35 | } fork, exec; |
| 36 | struct { |
| 37 | int (*proc)(void *); |
| 38 | void *arg; |
| 39 | } thread; |
| 40 | struct { |
| 41 | void (*proc)(void *); |
| 42 | void *arg; |
| 43 | } cb; |
| 44 | } u; |
| 45 | } request; |
| 46 | }; |
| 47 | |
| 48 | #define INIT_THREAD \ |
| 49 | { \ |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 50 | .regs = EMPTY_REGS, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | .fault_addr = NULL, \ |
| 52 | .prev_sched = NULL, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | .arch = INIT_ARCH_THREAD, \ |
| 54 | .request = { 0 } \ |
| 55 | } |
| 56 | |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 57 | static inline void release_thread(struct task_struct *task) |
| 58 | { |
| 59 | } |
| 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | static inline void mm_copy_segments(struct mm_struct *from_mm, |
| 62 | struct mm_struct *new_mm) |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | #define init_stack (init_thread_union.stack) |
| 67 | |
| 68 | /* |
| 69 | * User space process size: 3GB (default). |
| 70 | */ |
Jeff Dike | 536788f | 2008-02-08 04:22:07 -0800 | [diff] [blame] | 71 | extern unsigned long task_size; |
| 72 | |
| 73 | #define TASK_SIZE (task_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 75 | #undef STACK_TOP |
| 76 | #undef STACK_TOP_MAX |
| 77 | |
| 78 | extern unsigned long stacksizelim; |
| 79 | |
| 80 | #define STACK_ROOM (stacksizelim) |
| 81 | #define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE) |
| 82 | #define STACK_TOP_MAX STACK_TOP |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* This decides where the kernel will search for a free chunk of vm |
| 85 | * space during mmap's. |
| 86 | */ |
| 87 | #define TASK_UNMAPPED_BASE (0x40000000) |
| 88 | |
| 89 | extern void start_thread(struct pt_regs *regs, unsigned long entry, |
| 90 | unsigned long stack); |
| 91 | |
| 92 | struct cpuinfo_um { |
| 93 | unsigned long loops_per_jiffy; |
| 94 | int ipi_pipe[2]; |
| 95 | }; |
| 96 | |
| 97 | extern struct cpuinfo_um boot_cpu_data; |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | #define cpu_data (&boot_cpu_data) |
| 100 | #define current_cpu_data boot_cpu_data |
Allan Graves | fad1c45 | 2005-10-04 14:53:52 -0400 | [diff] [blame] | 101 | |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 102 | #define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf) |
Jeff Dike | c112746 | 2008-02-04 22:30:36 -0800 | [diff] [blame] | 103 | extern unsigned long get_wchan(struct task_struct *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 105 | #endif |