blob: bed668824b5f94529c8d28e7209078d181f87d4b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Dikeba180fd2007-10-16 01:27:00 -07002 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Licensed under the GPL
4 */
5
6#ifndef __UM_PROCESSOR_GENERIC_H
7#define __UM_PROCESSOR_GENERIC_H
8
9struct pt_regs;
10
11struct task_struct;
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "asm/ptrace.h"
Allan Gravesfad1c452005-10-04 14:53:52 -040014#include "registers.h"
Jeff Dike3c917352006-09-27 01:50:40 -070015#include "sysdep/archsetjmp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17struct mm_struct;
18
19struct thread_struct {
Jeff Dikeba180fd2007-10-16 01:27:00 -070020 struct task_struct *saved_task;
21 /*
22 * This flag is set to 1 before calling do_fork (and analyzed in
Paolo 'Blaisorblade' Giarrussoacef2e52005-05-01 08:58:56 -070023 * copy_thread) to mark that we are begin called from userspace (fork /
24 * vfork / clone), and reset to 0 after. It is left to 0 when called
Jeff Dikeba180fd2007-10-16 01:27:00 -070025 * from kernelspace (i.e. kernel_thread() or fork_idle(),
26 * as of 2.6.11).
27 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 int forking;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 struct pt_regs regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 int singlestep_syscall;
31 void *fault_addr;
Jeff Dikefab95c52007-10-16 01:27:05 -070032 jmp_buf *fault_catcher;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct task_struct *prev_sched;
34 unsigned long temp_stack;
Jeff Dikefab95c52007-10-16 01:27:05 -070035 jmp_buf *exec_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct arch_thread arch;
Jeff Dike77bf4402007-10-16 01:26:58 -070037 jmp_buf switch_buf;
38 int mm_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct {
40 int op;
41 union {
42 struct {
43 int pid;
44 } fork, exec;
45 struct {
46 int (*proc)(void *);
47 void *arg;
48 } thread;
49 struct {
50 void (*proc)(void *);
51 void *arg;
52 } cb;
53 } u;
54 } request;
55};
56
57#define INIT_THREAD \
58{ \
59 .forking = 0, \
Jeff Dikeba180fd2007-10-16 01:27:00 -070060 .regs = EMPTY_REGS, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 .fault_addr = NULL, \
62 .prev_sched = NULL, \
63 .temp_stack = 0, \
64 .exec_buf = NULL, \
65 .arch = INIT_ARCH_THREAD, \
66 .request = { 0 } \
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069extern struct task_struct *alloc_task_struct(void);
70
Jeff Dike77bf4402007-10-16 01:26:58 -070071static inline void release_thread(struct task_struct *task)
72{
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
Paolo 'Blaisorblade' Giarrussoc16993d2005-05-01 08:58:54 -070076
77static inline void prepare_to_copy(struct task_struct *tsk)
78{
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82extern unsigned long thread_saved_pc(struct task_struct *t);
83
84static inline void mm_copy_segments(struct mm_struct *from_mm,
85 struct mm_struct *new_mm)
86{
87}
88
89#define init_stack (init_thread_union.stack)
90
91/*
92 * User space process size: 3GB (default).
93 */
Jeff Dike536788f2008-02-08 04:22:07 -080094extern unsigned long task_size;
95
96#define TASK_SIZE (task_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David Howells922a70d2008-02-08 04:19:26 -080098#undef STACK_TOP
99#undef STACK_TOP_MAX
100
101extern unsigned long stacksizelim;
102
103#define STACK_ROOM (stacksizelim)
104#define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE)
105#define STACK_TOP_MAX STACK_TOP
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* This decides where the kernel will search for a free chunk of vm
108 * space during mmap's.
109 */
110#define TASK_UNMAPPED_BASE (0x40000000)
111
112extern void start_thread(struct pt_regs *regs, unsigned long entry,
113 unsigned long stack);
114
115struct cpuinfo_um {
116 unsigned long loops_per_jiffy;
117 int ipi_pipe[2];
118};
119
120extern struct cpuinfo_um boot_cpu_data;
121
122#define my_cpu_data cpu_data[smp_processor_id()]
123
124#ifdef CONFIG_SMP
125extern struct cpuinfo_um cpu_data[];
126#define current_cpu_data cpu_data[smp_processor_id()]
127#else
128#define cpu_data (&boot_cpu_data)
129#define current_cpu_data boot_cpu_data
130#endif
131
Allan Gravesfad1c452005-10-04 14:53:52 -0400132
Jeff Dike77bf4402007-10-16 01:26:58 -0700133#define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf)
Jeff Dikec1127462008-02-04 22:30:36 -0800134extern unsigned long get_wchan(struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136#endif